From f5a0d549d3f888cdcc3cc732d45064ec99d2a97a Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Fri, 21 Jul 2023 21:48:10 +0400 Subject: [PATCH 001/346] knxd: init at 0.14.59 --- pkgs/servers/knxd/default.nix | 54 +++++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 56 insertions(+) create mode 100644 pkgs/servers/knxd/default.nix diff --git a/pkgs/servers/knxd/default.nix b/pkgs/servers/knxd/default.nix new file mode 100644 index 000000000000..ad484a181c4e --- /dev/null +++ b/pkgs/servers/knxd/default.nix @@ -0,0 +1,54 @@ +{ lib +, stdenv +, fetchFromGitHub +, autoreconfHook +, pkg-config +, indent +, perl +, argp-standalone +, fmt_9 +, libev +, withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd, systemd +, withUsb ? stdenv.isLinux, libusb1 +}: + +stdenv.mkDerivation rec { + pname = "knxd"; + version = "0.14.59"; + + src = fetchFromGitHub { + owner = "knxd"; + repo = "knxd"; + rev = version; + hash = "sha256-m3119aD23XTViQJ2s7hwnJZ1ct4bcEFWuyUQajmqySQ="; + }; + + postPatch = '' + sed -i '2i echo ${version}; exit' tools/version.sh + sed -i '2i exit' tools/get_libfmt + ''; + + nativeBuildInputs = [ autoreconfHook pkg-config indent perl ]; + + buildInputs = [ fmt_9 libev ] + ++ lib.optional withSystemd systemd + ++ lib.optional withUsb libusb1 + ++ lib.optional stdenv.isDarwin argp-standalone; + + configureFlags = lib.optional (!withSystemd) "--disable-systemd" + ++ lib.optional (!withUsb) "--disable-usb"; + + installFlags = lib.optionals withSystemd [ + "systemdsystemunitdir=$(out)/lib/systemd/system" + "systemdsysusersdir=$(out)/lib/sysusers.d" + ]; + + meta = with lib; { + description = "Advanced router/gateway for KNX"; + homepage = "https://github.com/knxd/knxd"; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ sikmir ]; + platforms = platforms.unix; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0dc16d75b44c..2b11e5e17149 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5553,6 +5553,8 @@ with pkgs; klog = qt5.callPackage ../applications/radio/klog { }; + knxd = callPackage ../servers/knxd { }; + komga = callPackage ../servers/komga { }; komorebi = callPackage ../applications/graphics/komorebi { }; From aaf518fdfb89af632dfad7edef83d7481d7ff6a6 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Tue, 1 Aug 2023 16:58:16 +0800 Subject: [PATCH 002/346] matcha-rss-digest: init at 0.6 --- .../misc/matcha-rss-digest/default.nix | 27 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/applications/misc/matcha-rss-digest/default.nix diff --git a/pkgs/applications/misc/matcha-rss-digest/default.nix b/pkgs/applications/misc/matcha-rss-digest/default.nix new file mode 100644 index 000000000000..2a9c118d77a1 --- /dev/null +++ b/pkgs/applications/misc/matcha-rss-digest/default.nix @@ -0,0 +1,27 @@ +{ stdenv +, lib +, buildGoModule +, fetchFromGitHub +}: + +buildGoModule rec { + pname = "matcha-rss-digest"; + version = "0.6"; + + src = fetchFromGitHub { + owner = "piqoni"; + repo = "matcha"; + rev = "v${version}"; + hash = "sha256-Zk85k2SllPR9zznLGevwH6hS1EEW2qEa9YXbSguRVeM="; + }; + + vendorHash = "sha256-Dw1z23DRG0OtakJfrgpTfd71F58KfGsqz215zK0XOdI="; + + meta = with lib; { + homepage = "https://github.com/piqoni/matcha"; + description = "Daily digest generator from a list of RSS feeds"; + license = licenses.mit; + mainProgram = "matcha"; + maintainers = with maintainers; [ foo-dogsquared ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2a9362c02dcf..e1708b8a48cf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -32144,6 +32144,8 @@ with pkgs; marker = callPackage ../applications/editors/marker { }; + matcha-rss-digest = callPackage ../applications/misc/matcha-rss-digest { }; + meek = callPackage ../tools/networking/meek { }; meerk40t = callPackage ../applications/misc/meerk40t { }; From 8d374cebcd8736d19c289e6d1166ab0b7428adc7 Mon Sep 17 00:00:00 2001 From: emilylange Date: Sun, 6 Aug 2023 18:40:02 +0200 Subject: [PATCH 003/346] nixos/forgejo: init Following a decicion from both the gitea and forgejo maintainers in nixpkgs. This means, that forgejo will no longer co-use the nixos/gitea module via `services.gitea.package = pkgs.forgejo`. --- nixos/modules/module-list.nix | 1 + nixos/modules/services/misc/forgejo.nix | 668 ++++++++++++++++++++++++ 2 files changed, 669 insertions(+) create mode 100644 nixos/modules/services/misc/forgejo.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 29fcabaefad5..6ea859b201e4 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -640,6 +640,7 @@ ./services/misc/etesync-dav.nix ./services/misc/evdevremapkeys.nix ./services/misc/felix.nix + ./services/misc/forgejo.nix ./services/misc/freeswitch.nix ./services/misc/fstrim.nix ./services/misc/gammu-smsd.nix diff --git a/nixos/modules/services/misc/forgejo.nix b/nixos/modules/services/misc/forgejo.nix new file mode 100644 index 000000000000..f26658b7bcb4 --- /dev/null +++ b/nixos/modules/services/misc/forgejo.nix @@ -0,0 +1,668 @@ +{ config, lib, options, pkgs, ... }: + +let + cfg = config.services.forgejo; + opt = options.services.forgejo; + format = pkgs.formats.ini { }; + + exe = lib.getExe cfg.package; + + pg = config.services.postgresql; + useMysql = cfg.database.type == "mysql"; + usePostgresql = cfg.database.type == "postgres"; + useSqlite = cfg.database.type == "sqlite3"; + + inherit (lib) + literalExpression + mdDoc + mkChangedOptionModule + mkDefault + mkEnableOption + mkIf + mkMerge + mkOption + mkPackageOptionMD + mkRemovedOptionModule + mkRenamedOptionModule + optionalAttrs + optionals + optionalString + types + ; +in +{ + imports = [ + (mkRenamedOptionModule [ "services" "forgejo" "appName" ] [ "services" "forgejo" "settings" "DEFAULT" "APP_NAME" ]) + (mkRemovedOptionModule [ "services" "forgejo" "extraConfig" ] "services.forgejo.extraConfig has been removed. Please use the freeform services.forgejo.settings option instead") + (mkRemovedOptionModule [ "services" "forgejo" "database" "password" ] "services.forgejo.database.password has been removed. Please use services.forgejo.database.passwordFile instead") + + # copied from services.gitea; remove at some point + (mkRenamedOptionModule [ "services" "forgejo" "cookieSecure" ] [ "services" "forgejo" "settings" "session" "COOKIE_SECURE" ]) + (mkRenamedOptionModule [ "services" "forgejo" "disableRegistration" ] [ "services" "forgejo" "settings" "service" "DISABLE_REGISTRATION" ]) + (mkRenamedOptionModule [ "services" "forgejo" "domain" ] [ "services" "forgejo" "settings" "server" "DOMAIN" ]) + (mkRenamedOptionModule [ "services" "forgejo" "httpAddress" ] [ "services" "forgejo" "settings" "server" "HTTP_ADDR" ]) + (mkRenamedOptionModule [ "services" "forgejo" "httpPort" ] [ "services" "forgejo" "settings" "server" "HTTP_PORT" ]) + (mkRenamedOptionModule [ "services" "forgejo" "log" "level" ] [ "services" "forgejo" "settings" "log" "LEVEL" ]) + (mkRenamedOptionModule [ "services" "forgejo" "log" "rootPath" ] [ "services" "forgejo" "settings" "log" "ROOT_PATH" ]) + (mkRenamedOptionModule [ "services" "forgejo" "rootUrl" ] [ "services" "forgejo" "settings" "server" "ROOT_URL" ]) + (mkRenamedOptionModule [ "services" "forgejo" "ssh" "clonePort" ] [ "services" "forgejo" "settings" "server" "SSH_PORT" ]) + (mkRenamedOptionModule [ "services" "forgejo" "staticRootPath" ] [ "services" "forgejo" "settings" "server" "STATIC_ROOT_PATH" ]) + (mkChangedOptionModule [ "services" "forgejo" "enableUnixSocket" ] [ "services" "forgejo" "settings" "server" "PROTOCOL" ] ( + config: if config.services.forgejo.enableUnixSocket then "http+unix" else "http" + )) + (mkRemovedOptionModule [ "services" "forgejo" "ssh" "enable" ] "services.forgejo.ssh.enable has been migrated into freeform setting services.forgejo.settings.server.DISABLE_SSH. Keep in mind that the setting is inverted") + ]; + + options = { + services.forgejo = { + enable = mkEnableOption (mdDoc "Forgejo"); + + package = mkPackageOptionMD pkgs "forgejo" { }; + + useWizard = mkOption { + default = false; + type = types.bool; + description = mdDoc '' + Whether to use the built-in installation wizard instead of + declaratively managing the {file}`app.ini` config file in nix. + ''; + }; + + stateDir = mkOption { + default = "/var/lib/forgejo"; + type = types.str; + description = mdDoc "Forgejo data directory."; + }; + + customDir = mkOption { + default = "${cfg.stateDir}/custom"; + defaultText = literalExpression ''"''${config.${opt.stateDir}}/custom"''; + type = types.str; + description = mdDoc '' + Base directory for custom templates and other options. + + If {option}`${opt.useWizard}` is disabled (default), this directory will also + hold secrets and the resulting {file}`app.ini` config at runtime. + ''; + }; + + user = mkOption { + type = types.str; + default = "forgejo"; + description = mdDoc "User account under which Forgejo runs."; + }; + + group = mkOption { + type = types.str; + default = "forgejo"; + description = mdDoc "Group under which Forgejo runs."; + }; + + database = { + type = mkOption { + type = types.enum [ "sqlite3" "mysql" "postgres" ]; + example = "mysql"; + default = "sqlite3"; + description = mdDoc "Database engine to use."; + }; + + host = mkOption { + type = types.str; + default = "127.0.0.1"; + description = mdDoc "Database host address."; + }; + + port = mkOption { + type = types.port; + default = if !usePostgresql then 3306 else pg.port; + defaultText = literalExpression '' + if config.${opt.database.type} != "postgresql" + then 3306 + else config.${options.services.postgresql.port} + ''; + description = mdDoc "Database host port."; + }; + + name = mkOption { + type = types.str; + default = "forgejo"; + description = mdDoc "Database name."; + }; + + user = mkOption { + type = types.str; + default = "forgejo"; + description = mdDoc "Database user."; + }; + + passwordFile = mkOption { + type = types.nullOr types.path; + default = null; + example = "/run/keys/forgejo-dbpassword"; + description = mdDoc '' + A file containing the password corresponding to + {option}`${opt.database.user}`. + ''; + }; + + socket = mkOption { + type = types.nullOr types.path; + default = if (cfg.database.createDatabase && usePostgresql) then "/run/postgresql" else if (cfg.database.createDatabase && useMysql) then "/run/mysqld/mysqld.sock" else null; + defaultText = literalExpression "null"; + example = "/run/mysqld/mysqld.sock"; + description = mdDoc "Path to the unix socket file to use for authentication."; + }; + + path = mkOption { + type = types.str; + default = "${cfg.stateDir}/data/forgejo.db"; + defaultText = literalExpression ''"''${config.${opt.stateDir}}/data/forgejo.db"''; + description = mdDoc "Path to the sqlite3 database file."; + }; + + createDatabase = mkOption { + type = types.bool; + default = true; + description = mdDoc "Whether to create a local database automatically."; + }; + }; + + dump = { + enable = mkEnableOption (mdDoc "periodic dumps via the [built-in {command}`dump` command](https://forgejo.org/docs/latest/admin/command-line/#dump)"); + + interval = mkOption { + type = types.str; + default = "04:31"; + example = "hourly"; + description = mdDoc '' + Run a Forgejo dump at this interval. Runs by default at 04:31 every day. + + The format is described in + {manpage}`systemd.time(7)`. + ''; + }; + + backupDir = mkOption { + type = types.str; + default = "${cfg.stateDir}/dump"; + defaultText = literalExpression ''"''${config.${opt.stateDir}}/dump"''; + description = mdDoc "Path to the directory where the dump archives will be stored."; + }; + + type = mkOption { + type = types.enum [ "zip" "tar" "tar.sz" "tar.gz" "tar.xz" "tar.bz2" "tar.br" "tar.lz4" "tar.zst" ]; + default = "zip"; + description = mdDoc "Archive format used to store the dump file."; + }; + + file = mkOption { + type = types.nullOr types.str; + default = null; + description = mdDoc "Filename to be used for the dump. If `null` a default name is chosen by forgejo."; + example = "forgejo-dump"; + }; + }; + + lfs = { + enable = mkOption { + type = types.bool; + default = false; + description = mdDoc "Enables git-lfs support."; + }; + + contentDir = mkOption { + type = types.str; + default = "${cfg.stateDir}/data/lfs"; + defaultText = literalExpression ''"''${config.${opt.stateDir}}/data/lfs"''; + description = mdDoc "Where to store LFS files."; + }; + }; + + repositoryRoot = mkOption { + type = types.str; + default = "${cfg.stateDir}/repositories"; + defaultText = literalExpression ''"''${config.${opt.stateDir}}/repositories"''; + description = mdDoc "Path to the git repositories."; + }; + + mailerPasswordFile = mkOption { + type = types.nullOr types.str; + default = null; + example = "/run/keys/forgejo-mailpw"; + description = mdDoc "Path to a file containing the SMTP password."; + }; + + settings = mkOption { + default = { }; + description = mdDoc '' + Free-form settings written directly to the `app.ini` configfile file. + Refer to for supported values. + ''; + example = literalExpression '' + { + DEFAULT = { + RUN_MODE = "dev"; + }; + "cron.sync_external_users" = { + RUN_AT_START = true; + SCHEDULE = "@every 24h"; + UPDATE_EXISTING = true; + }; + mailer = { + ENABLED = true; + MAILER_TYPE = "sendmail"; + FROM = "do-not-reply@example.org"; + SENDMAIL_PATH = "''${pkgs.system-sendmail}/bin/sendmail"; + }; + other = { + SHOW_FOOTER_VERSION = false; + }; + } + ''; + type = types.submodule { + freeformType = format.type; + options = { + log = { + ROOT_PATH = mkOption { + default = "${cfg.stateDir}/log"; + defaultText = literalExpression ''"''${config.${opt.stateDir}}/log"''; + type = types.str; + description = mdDoc "Root path for log files."; + }; + LEVEL = mkOption { + default = "Info"; + type = types.enum [ "Trace" "Debug" "Info" "Warn" "Error" "Critical" ]; + description = mdDoc "General log level."; + }; + }; + + server = { + PROTOCOL = mkOption { + type = types.enum [ "http" "https" "fcgi" "http+unix" "fcgi+unix" ]; + default = "http"; + description = mdDoc ''Listen protocol. `+unix` means "over unix", not "in addition to."''; + }; + + HTTP_ADDR = mkOption { + type = types.either types.str types.path; + default = if lib.hasSuffix "+unix" cfg.settings.server.PROTOCOL then "/run/forgejo/forgejo.sock" else "0.0.0.0"; + defaultText = literalExpression ''if lib.hasSuffix "+unix" cfg.settings.server.PROTOCOL then "/run/forgejo/forgejo.sock" else "0.0.0.0"''; + description = mdDoc "Listen address. Must be a path when using a unix socket."; + }; + + HTTP_PORT = mkOption { + type = types.port; + default = 3000; + description = mdDoc "Listen port. Ignored when using a unix socket."; + }; + + DOMAIN = mkOption { + type = types.str; + default = "localhost"; + description = mdDoc "Domain name of your server."; + }; + + ROOT_URL = mkOption { + type = types.str; + default = "http://${cfg.settings.server.DOMAIN}:${toString cfg.settings.server.HTTP_PORT}/"; + defaultText = literalExpression ''"http://''${config.services.forgejo.settings.server.DOMAIN}:''${toString config.services.forgejo.settings.server.HTTP_PORT}/"''; + description = mdDoc "Full public URL of Forgejo server."; + }; + + STATIC_ROOT_PATH = mkOption { + type = types.either types.str types.path; + default = cfg.package.data; + defaultText = literalExpression "config.${opt.package}.data"; + example = "/var/lib/forgejo/data"; + description = mdDoc "Upper level of template and static files path."; + }; + + DISABLE_SSH = mkOption { + type = types.bool; + default = false; + description = mdDoc "Disable external SSH feature."; + }; + + SSH_PORT = mkOption { + type = types.port; + default = 22; + example = 2222; + description = mdDoc '' + SSH port displayed in clone URL. + The option is required to configure a service when the external visible port + differs from the local listening port i.e. if port forwarding is used. + ''; + }; + }; + + session = { + COOKIE_SECURE = mkOption { + type = types.bool; + default = false; + description = mdDoc '' + Marks session cookies as "secure" as a hint for browsers to only send + them via HTTPS. This option is recommend, if Forgejo is being served over HTTPS. + ''; + }; + }; + }; + }; + }; + }; + }; + + config = mkIf cfg.enable { + assertions = [ + { + assertion = cfg.database.createDatabase -> useSqlite || cfg.database.user == cfg.user; + message = "services.forgejo.database.user must match services.forgejo.user if the database is to be automatically provisioned"; + } + ]; + + services.forgejo.settings = { + DEFAULT = { + RUN_MODE = mkDefault "prod"; + RUN_USER = mkDefault cfg.user; + WORK_PATH = mkDefault cfg.stateDir; + }; + + database = mkMerge [ + { + DB_TYPE = cfg.database.type; + } + (mkIf (useMysql || usePostgresql) { + HOST = if cfg.database.socket != null then cfg.database.socket else cfg.database.host + ":" + toString cfg.database.port; + NAME = cfg.database.name; + USER = cfg.database.user; + PASSWD = "#dbpass#"; + }) + (mkIf useSqlite { + PATH = cfg.database.path; + }) + (mkIf usePostgresql { + SSL_MODE = "disable"; + }) + ]; + + repository = { + ROOT = cfg.repositoryRoot; + }; + + server = mkIf cfg.lfs.enable { + LFS_START_SERVER = true; + LFS_JWT_SECRET = "#lfsjwtsecret#"; + }; + + session = { + COOKIE_NAME = mkDefault "session"; + }; + + security = { + SECRET_KEY = "#secretkey#"; + INTERNAL_TOKEN = "#internaltoken#"; + INSTALL_LOCK = true; + }; + + mailer = mkIf (cfg.mailerPasswordFile != null) { + PASSWD = "#mailerpass#"; + }; + + oauth2 = { + JWT_SECRET = "#oauth2jwtsecret#"; + }; + + lfs = mkIf cfg.lfs.enable { + PATH = cfg.lfs.contentDir; + }; + }; + + services.postgresql = optionalAttrs (usePostgresql && cfg.database.createDatabase) { + enable = mkDefault true; + + ensureDatabases = [ cfg.database.name ]; + ensureUsers = [ + { + name = cfg.database.user; + ensurePermissions = { "DATABASE ${cfg.database.name}" = "ALL PRIVILEGES"; }; + } + ]; + }; + + services.mysql = optionalAttrs (useMysql && cfg.database.createDatabase) { + enable = mkDefault true; + package = mkDefault pkgs.mariadb; + + ensureDatabases = [ cfg.database.name ]; + ensureUsers = [ + { + name = cfg.database.user; + ensurePermissions = { "${cfg.database.name}.*" = "ALL PRIVILEGES"; }; + } + ]; + }; + + systemd.tmpfiles.rules = [ + "d '${cfg.dump.backupDir}' 0750 ${cfg.user} ${cfg.group} - -" + "z '${cfg.dump.backupDir}' 0750 ${cfg.user} ${cfg.group} - -" + "d '${cfg.repositoryRoot}' 0750 ${cfg.user} ${cfg.group} - -" + "z '${cfg.repositoryRoot}' 0750 ${cfg.user} ${cfg.group} - -" + "d '${cfg.stateDir}' 0750 ${cfg.user} ${cfg.group} - -" + "d '${cfg.stateDir}/conf' 0750 ${cfg.user} ${cfg.group} - -" + "d '${cfg.customDir}' 0750 ${cfg.user} ${cfg.group} - -" + "d '${cfg.customDir}/conf' 0750 ${cfg.user} ${cfg.group} - -" + "d '${cfg.stateDir}/data' 0750 ${cfg.user} ${cfg.group} - -" + "d '${cfg.stateDir}/log' 0750 ${cfg.user} ${cfg.group} - -" + "z '${cfg.stateDir}' 0750 ${cfg.user} ${cfg.group} - -" + "z '${cfg.stateDir}/.ssh' 0700 ${cfg.user} ${cfg.group} - -" + "z '${cfg.stateDir}/conf' 0750 ${cfg.user} ${cfg.group} - -" + "z '${cfg.customDir}' 0750 ${cfg.user} ${cfg.group} - -" + "z '${cfg.customDir}/conf' 0750 ${cfg.user} ${cfg.group} - -" + "z '${cfg.stateDir}/data' 0750 ${cfg.user} ${cfg.group} - -" + "z '${cfg.stateDir}/log' 0750 ${cfg.user} ${cfg.group} - -" + + # If we have a folder or symlink with Forgejo locales, remove it + # And symlink the current Forgejo locales in place + "L+ '${cfg.stateDir}/conf/locale' - - - - ${cfg.package.out}/locale" + + ] ++ optionals cfg.lfs.enable [ + "d '${cfg.lfs.contentDir}' 0750 ${cfg.user} ${cfg.group} - -" + "z '${cfg.lfs.contentDir}' 0750 ${cfg.user} ${cfg.group} - -" + ]; + + systemd.services.forgejo = { + description = "Forgejo (Beyond coding. We forge.)"; + after = [ + "network.target" + ] ++ optionals usePostgresql [ + "postgresql.service" + ] ++ optionals useMysql [ + "mysql.service" + ]; + requires = optionals (cfg.database.createDatabase && usePostgresql) [ + "postgresql.service" + ] ++ optionals (cfg.database.createDatabase && useMysql) [ + "mysql.service" + ]; + wantedBy = [ "multi-user.target" ]; + path = [ cfg.package pkgs.git pkgs.gnupg ]; + + # In older versions the secret naming for JWT was kind of confusing. + # The file jwt_secret hold the value for LFS_JWT_SECRET and JWT_SECRET + # wasn't persistent at all. + # To fix that, there is now the file oauth2_jwt_secret containing the + # values for JWT_SECRET and the file jwt_secret gets renamed to + # lfs_jwt_secret. + # We have to consider this to stay compatible with older installations. + preStart = + let + runConfig = "${cfg.customDir}/conf/app.ini"; + secretKey = "${cfg.customDir}/conf/secret_key"; + oauth2JwtSecret = "${cfg.customDir}/conf/oauth2_jwt_secret"; + oldLfsJwtSecret = "${cfg.customDir}/conf/jwt_secret"; # old file for LFS_JWT_SECRET + lfsJwtSecret = "${cfg.customDir}/conf/lfs_jwt_secret"; # new file for LFS_JWT_SECRET + internalToken = "${cfg.customDir}/conf/internal_token"; + replaceSecretBin = "${pkgs.replace-secret}/bin/replace-secret"; + in + '' + # copy custom configuration and generate random secrets if needed + ${lib.optionalString (!cfg.useWizard) '' + function forgejo_setup { + cp -f '${format.generate "app.ini" cfg.settings}' '${runConfig}' + + if [ ! -s '${secretKey}' ]; then + ${exe} generate secret SECRET_KEY > '${secretKey}' + fi + + # Migrate LFS_JWT_SECRET filename + if [[ -s '${oldLfsJwtSecret}' && ! -s '${lfsJwtSecret}' ]]; then + mv '${oldLfsJwtSecret}' '${lfsJwtSecret}' + fi + + if [ ! -s '${oauth2JwtSecret}' ]; then + ${exe} generate secret JWT_SECRET > '${oauth2JwtSecret}' + fi + + ${optionalString cfg.lfs.enable '' + if [ ! -s '${lfsJwtSecret}' ]; then + ${exe} generate secret LFS_JWT_SECRET > '${lfsJwtSecret}' + fi + ''} + + if [ ! -s '${internalToken}' ]; then + ${exe} generate secret INTERNAL_TOKEN > '${internalToken}' + fi + + chmod u+w '${runConfig}' + ${replaceSecretBin} '#secretkey#' '${secretKey}' '${runConfig}' + ${replaceSecretBin} '#oauth2jwtsecret#' '${oauth2JwtSecret}' '${runConfig}' + ${replaceSecretBin} '#internaltoken#' '${internalToken}' '${runConfig}' + + ${optionalString cfg.lfs.enable '' + ${replaceSecretBin} '#lfsjwtsecret#' '${lfsJwtSecret}' '${runConfig}' + ''} + + ${optionalString (cfg.database.passwordFile != null) '' + ${replaceSecretBin} '#dbpass#' '${cfg.database.passwordFile}' '${runConfig}' + ''} + + ${optionalString (cfg.mailerPasswordFile != null) '' + ${replaceSecretBin} '#mailerpass#' '${cfg.mailerPasswordFile}' '${runConfig}' + ''} + chmod u-w '${runConfig}' + } + (umask 027; forgejo_setup) + ''} + + # run migrations/init the database + ${exe} migrate + + # update all hooks' binary paths + ${exe} admin regenerate hooks + + # update command option in authorized_keys + if [ -r ${cfg.stateDir}/.ssh/authorized_keys ] + then + ${exe} admin regenerate keys + fi + ''; + + serviceConfig = { + Type = "simple"; + User = cfg.user; + Group = cfg.group; + WorkingDirectory = cfg.stateDir; + ExecStart = "${exe} web --pid /run/forgejo/forgejo.pid"; + Restart = "always"; + # Runtime directory and mode + RuntimeDirectory = "forgejo"; + RuntimeDirectoryMode = "0755"; + # Proc filesystem + ProcSubset = "pid"; + ProtectProc = "invisible"; + # Access write directories + ReadWritePaths = [ cfg.customDir cfg.dump.backupDir cfg.repositoryRoot cfg.stateDir cfg.lfs.contentDir ]; + UMask = "0027"; + # Capabilities + CapabilityBoundingSet = ""; + # Security + NoNewPrivileges = true; + # Sandboxing + ProtectSystem = "strict"; + ProtectHome = true; + PrivateTmp = true; + PrivateDevices = true; + PrivateUsers = true; + ProtectHostname = true; + ProtectClock = true; + ProtectKernelTunables = true; + ProtectKernelModules = true; + ProtectKernelLogs = true; + ProtectControlGroups = true; + RestrictAddressFamilies = [ "AF_UNIX" "AF_INET" "AF_INET6" ]; + RestrictNamespaces = true; + LockPersonality = true; + MemoryDenyWriteExecute = true; + RestrictRealtime = true; + RestrictSUIDSGID = true; + RemoveIPC = true; + PrivateMounts = true; + # System Call Filtering + SystemCallArchitectures = "native"; + SystemCallFilter = [ "~@cpu-emulation @debug @keyring @mount @obsolete @privileged @setuid" "setrlimit" ]; + }; + + environment = { + USER = cfg.user; + HOME = cfg.stateDir; + # `GITEA_` prefix until https://codeberg.org/forgejo/forgejo/issues/497 + # is resolved. + GITEA_WORK_DIR = cfg.stateDir; + GITEA_CUSTOM = cfg.customDir; + }; + }; + + users.users = mkIf (cfg.user == "forgejo") { + forgejo = { + home = cfg.stateDir; + useDefaultShell = true; + group = cfg.group; + isSystemUser = true; + }; + }; + + users.groups = mkIf (cfg.group == "forgejo") { + forgejo = { }; + }; + + systemd.services.forgejo-dump = mkIf cfg.dump.enable { + description = "forgejo dump"; + after = [ "forgejo.service" ]; + path = [ cfg.package ]; + + environment = { + USER = cfg.user; + HOME = cfg.stateDir; + # `GITEA_` prefix until https://codeberg.org/forgejo/forgejo/issues/497 + # is resolved. + GITEA_WORK_DIR = cfg.stateDir; + GITEA_CUSTOM = cfg.customDir; + }; + + serviceConfig = { + Type = "oneshot"; + User = cfg.user; + ExecStart = "${exe} dump --type ${cfg.dump.type}" + optionalString (cfg.dump.file != null) " --file ${cfg.dump.file}"; + WorkingDirectory = cfg.dump.backupDir; + }; + }; + + systemd.timers.forgejo-dump = mkIf cfg.dump.enable { + description = "Forgejo dump timer"; + partOf = [ "forgejo-dump.service" ]; + wantedBy = [ "timers.target" ]; + timerConfig.OnCalendar = cfg.dump.interval; + }; + }; + + meta.maintainers = with lib.maintainers; [ bendlas emilylange ]; +} From 02601e17a53eadd488bd8ca16dbb656fd46d1764 Mon Sep 17 00:00:00 2001 From: emilylange Date: Sun, 6 Aug 2023 18:41:37 +0200 Subject: [PATCH 004/346] nixosTests.forgejo: fork from nixosTests.gitea --- nixos/tests/all-tests.nix | 2 +- nixos/tests/forgejo.nix | 157 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 158 insertions(+), 1 deletion(-) create mode 100644 nixos/tests/forgejo.nix diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 3b4a39f5ff96..d9aa9eccac02 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -280,7 +280,7 @@ in { fluentd = handleTest ./fluentd.nix {}; fluidd = handleTest ./fluidd.nix {}; fontconfig-default-fonts = handleTest ./fontconfig-default-fonts.nix {}; - forgejo = handleTest ./gitea.nix { giteaPackage = pkgs.forgejo; }; + forgejo = handleTest ./forgejo.nix { }; freenet = handleTest ./freenet.nix {}; freeswitch = handleTest ./freeswitch.nix {}; freshrss-sqlite = handleTest ./freshrss-sqlite.nix {}; diff --git a/nixos/tests/forgejo.nix b/nixos/tests/forgejo.nix new file mode 100644 index 000000000000..b326819e3190 --- /dev/null +++ b/nixos/tests/forgejo.nix @@ -0,0 +1,157 @@ +{ system ? builtins.currentSystem +, config ? { } +, pkgs ? import ../.. { inherit system config; } +}: + +with import ../lib/testing-python.nix { inherit system pkgs; }; +with pkgs.lib; + +let + ## gpg --faked-system-time='20230301T010000!' --quick-generate-key snakeoil ed25519 sign + signingPrivateKey = '' + -----BEGIN PGP PRIVATE KEY BLOCK----- + + lFgEY/6jkBYJKwYBBAHaRw8BAQdADXiZRV8RJUyC9g0LH04wLMaJL9WTc+szbMi7 + 5fw4yP8AAQCl8EwGfzSLm/P6fCBfA3I9znFb3MEHGCCJhJ6VtKYyRw7ktAhzbmFr + ZW9pbIiUBBMWCgA8FiEE+wUM6VW/NLtAdSixTWQt6LZ4x50FAmP+o5ACGwMFCQPC + ZwAECwkIBwQVCgkIBRYCAwEAAh4FAheAAAoJEE1kLei2eMedFTgBAKQs1oGFZrCI + TZP42hmBTKxGAI1wg7VSdDEWTZxut/2JAQDGgo2sa4VHMfj0aqYGxrIwfP2B7JHO + GCqGCRf9O/hzBA== + =9Uy3 + -----END PGP PRIVATE KEY BLOCK----- + ''; + signingPrivateKeyId = "4D642DE8B678C79D"; + + supportedDbTypes = [ "mysql" "postgres" "sqlite3" ]; + makeGForgejoTest = type: nameValuePair type (makeTest { + name = "forgejo-${type}"; + meta.maintainers = with maintainers; [ bendlas emilylange ]; + + nodes = { + server = { config, pkgs, ... }: { + virtualisation.memorySize = 2047; + services.forgejo = { + enable = true; + database = { inherit type; }; + settings.service.DISABLE_REGISTRATION = true; + settings."repository.signing".SIGNING_KEY = signingPrivateKeyId; + settings.actions.ENABLED = true; + }; + environment.systemPackages = [ config.services.forgejo.package pkgs.gnupg pkgs.jq ]; + services.openssh.enable = true; + + specialisation.runner = { + inheritParentConfig = true; + configuration.services.gitea-actions-runner.instances."test" = { + enable = true; + name = "ci"; + url = "http://localhost:3000"; + labels = [ + # don't require docker/podman + "native:host" + ]; + tokenFile = "/var/lib/forgejo/runner_token"; + }; + }; + }; + client1 = { config, pkgs, ... }: { + environment.systemPackages = [ pkgs.git ]; + }; + client2 = { config, pkgs, ... }: { + environment.systemPackages = [ pkgs.git ]; + }; + }; + + testScript = { nodes, ... }: + let + inherit (import ./ssh-keys.nix pkgs) snakeOilPrivateKey snakeOilPublicKey; + serverSystem = nodes.server.system.build.toplevel; + in + '' + GIT_SSH_COMMAND = "ssh -i $HOME/.ssh/privk -o StrictHostKeyChecking=no" + REPO = "forgejo@server:test/repo" + PRIVK = "${snakeOilPrivateKey}" + + start_all() + + client1.succeed("mkdir /tmp/repo") + client1.succeed("mkdir -p $HOME/.ssh") + client1.succeed(f"cat {PRIVK} > $HOME/.ssh/privk") + client1.succeed("chmod 0400 $HOME/.ssh/privk") + client1.succeed("git -C /tmp/repo init") + client1.succeed("echo hello world > /tmp/repo/testfile") + client1.succeed("git -C /tmp/repo add .") + client1.succeed("git config --global user.email test@localhost") + client1.succeed("git config --global user.name test") + client1.succeed("git -C /tmp/repo commit -m 'Initial import'") + client1.succeed(f"git -C /tmp/repo remote add origin {REPO}") + + server.wait_for_unit("forgejo.service") + server.wait_for_open_port(3000) + server.wait_for_open_port(22) + server.succeed("curl --fail http://localhost:3000/") + + server.succeed( + "su -l forgejo -c 'gpg --homedir /var/lib/forgejo/data/home/.gnupg " + + "--import ${toString (pkgs.writeText "forgejo.key" signingPrivateKey)}'" + ) + + assert "BEGIN PGP PUBLIC KEY BLOCK" in server.succeed("curl http://localhost:3000/api/v1/signing-key.gpg") + + server.succeed( + "curl --fail http://localhost:3000/user/sign_up | grep 'Registration is disabled. " + + "Please contact your site administrator.'" + ) + server.succeed( + "su -l forgejo -c 'GITEA_WORK_DIR=/var/lib/forgejo gitea admin user create " + + "--username test --password totallysafe --email test@localhost'" + ) + + api_token = server.succeed( + "curl --fail -X POST http://test:totallysafe@localhost:3000/api/v1/users/test/tokens " + + "-H 'Accept: application/json' -H 'Content-Type: application/json' -d " + + "'{\"name\":\"token\",\"scopes\":[\"all\"]}' | jq '.sha1' | xargs echo -n" + ) + + server.succeed( + "curl --fail -X POST http://localhost:3000/api/v1/user/repos " + + "-H 'Accept: application/json' -H 'Content-Type: application/json' " + + f"-H 'Authorization: token {api_token}'" + + ' -d \'{"auto_init":false, "description":"string", "license":"mit", "name":"repo", "private":false}\''' + ) + + server.succeed( + "curl --fail -X POST http://localhost:3000/api/v1/user/keys " + + "-H 'Accept: application/json' -H 'Content-Type: application/json' " + + f"-H 'Authorization: token {api_token}'" + + ' -d \'{"key":"${snakeOilPublicKey}","read_only":true,"title":"SSH"}\''' + ) + + client1.succeed( + f"GIT_SSH_COMMAND='{GIT_SSH_COMMAND}' git -C /tmp/repo push origin master" + ) + + client2.succeed("mkdir -p $HOME/.ssh") + client2.succeed(f"cat {PRIVK} > $HOME/.ssh/privk") + client2.succeed("chmod 0400 $HOME/.ssh/privk") + client2.succeed(f"GIT_SSH_COMMAND='{GIT_SSH_COMMAND}' git clone {REPO}") + client2.succeed('test "$(cat repo/testfile | xargs echo -n)" = "hello world"') + + server.wait_until_succeeds( + 'test "$(curl http://localhost:3000/api/v1/repos/test/repo/commits ' + + '-H "Accept: application/json" | jq length)" = "1"', + timeout=10 + ) + + with subtest("Testing runner registration"): + server.succeed( + "su -l forgejo -c 'GITEA_WORK_DIR=/var/lib/forgejo gitea actions generate-runner-token' | sed 's/^/TOKEN=/' | tee /var/lib/forgejo/runner_token" + ) + server.succeed("${serverSystem}/specialisation/runner/bin/switch-to-configuration test") + server.wait_for_unit("gitea-runner-test.service") + server.succeed("journalctl -o cat -u gitea-runner-test.service | grep -q 'Runner registered successfully'") + ''; + }); +in + +listToAttrs (map makeGForgejoTest supportedDbTypes) From 7b786b39cb0d42949720482b78c31fcfe35b41c7 Mon Sep 17 00:00:00 2001 From: emilylange Date: Sun, 6 Aug 2023 18:43:08 +0200 Subject: [PATCH 005/346] CODEOWNERS: init forgejo --- .github/CODEOWNERS | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 98a7022088eb..829ce356f9db 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -288,6 +288,10 @@ pkgs/development/python-modules/buildcatrust/ @ajs124 @lukegb @mweinelt /nixos/modules/services/misc/matrix-conduit.nix @piegamesde /nixos/tests/matrix-conduit.nix @piegamesde +# Forgejo +nixos/modules/services/misc/forgejo.nix @bendlas @emilylange +pkgs/applications/version-management/forgejo @bendlas @emilylange + # Dotnet /pkgs/build-support/dotnet @IvarWithoutBones /pkgs/development/compilers/dotnet @IvarWithoutBones From ca70b78b71e92b98d1695f79647f187920da4c37 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Fri, 11 Aug 2023 22:22:47 +0100 Subject: [PATCH 006/346] psmisc: 23.5 -> 23.6 Changes: https://gitlab.com/psmisc/psmisc/-/blob/v23.6/ChangeLog?ref_type=tags#L1 --- pkgs/os-specific/linux/psmisc/default.nix | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/pkgs/os-specific/linux/psmisc/default.nix b/pkgs/os-specific/linux/psmisc/default.nix index 092c75a5837d..f269c9146df4 100644 --- a/pkgs/os-specific/linux/psmisc/default.nix +++ b/pkgs/os-specific/linux/psmisc/default.nix @@ -1,26 +1,23 @@ -{lib, stdenv, fetchFromGitLab, fetchpatch, autoconf, automake, gettext, ncurses}: +{ lib +, stdenv +, fetchFromGitLab +, autoconf +, automake +, gettext +, ncurses +}: stdenv.mkDerivation rec { pname = "psmisc"; - version = "23.5"; + version = "23.6"; src = fetchFromGitLab { owner = pname; repo = pname; rev = "v${version}"; - sha256 = "sha256-02jvRPqN8DS30ID42hQFu400NoFC5QiH5YA3NB+EoFI="; + hash = "sha256-TjnOn8a7HAgt11zcM0i5DM5ERmsvLJHvo1e5FOsl6IA="; }; - patches = [ - # Upstream patch to be released in the next version - (fetchpatch { - name = "fallback-to-kill.diff"; - url = "https://gitlab.com/psmisc/psmisc/-/commit/6892e321e7042e3df60a5501a1c59d076e8a856f.patch"; - sha256 = "sha256-3uk1KXEOqAxpHWBORUw5+dR5s/Z55JJs5tuBZlTdjlo="; - excludes = [ "ChangeLog" ]; - }) - ]; - nativeBuildInputs = [ autoconf automake gettext ]; buildInputs = [ ncurses ]; From dc24d568469bfa46188aa4a4e60992190f50a8c6 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Wed, 16 Aug 2023 18:16:06 +0200 Subject: [PATCH 007/346] boinc: 7.22.2 -> 7.24.1 https://github.com/BOINC/boinc/releases/tag/client_release%2F7.24%2F7.24.0 https://github.com/BOINC/boinc/releases/tag/client_release%2F7.24%2F7.24.1 --- pkgs/applications/science/misc/boinc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/misc/boinc/default.nix b/pkgs/applications/science/misc/boinc/default.nix index f806be834bca..4721e946464e 100644 --- a/pkgs/applications/science/misc/boinc/default.nix +++ b/pkgs/applications/science/misc/boinc/default.nix @@ -27,14 +27,14 @@ stdenv.mkDerivation rec { pname = "boinc"; - version = "7.22.2"; + version = "7.24.1"; src = fetchFromGitHub { name = "${pname}-${version}-src"; owner = "BOINC"; repo = "boinc"; rev = "client_release/${lib.versions.majorMinor version}/${version}"; - hash = "sha256-9GgvyYiDfppRuDFfxn50e+YZeSX0SLKSfo31lWx2FBs="; + hash = "sha256-CAzAKxNHG8ew9v2B1jK7MxfWGwTfdmDncDe7QT+twd8="; }; nativeBuildInputs = [ libtool automake autoconf m4 pkg-config ]; From 49670257591b049f844694d95f71859c0dbe30e7 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Thu, 17 Aug 2023 10:35:12 +0200 Subject: [PATCH 008/346] all-cabal-hashes: 2023-07-24T19:28:29Z -> 2023-08-17T07:12:25Z This commit has been generated by maintainers/scripts/haskell/update-hackage.sh --- pkgs/data/misc/hackage/pin.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/data/misc/hackage/pin.json b/pkgs/data/misc/hackage/pin.json index 98212bdf25a9..7ccfd59396bf 100644 --- a/pkgs/data/misc/hackage/pin.json +++ b/pkgs/data/misc/hackage/pin.json @@ -1,6 +1,6 @@ { - "commit": "4cdb9878496fdb36b8b9c5f2ab0ef8a44a0f859f", - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/4cdb9878496fdb36b8b9c5f2ab0ef8a44a0f859f.tar.gz", - "sha256": "0yhymzcsls48hf44ncd79xn786rfh4k70h78w7b0ihn7lrjgsynv", - "msg": "Update from Hackage at 2023-07-24T19:28:29Z" + "commit": "69066b0daf2bbb4ca6f2b6de0bc9b8f27fffe4bc", + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/69066b0daf2bbb4ca6f2b6de0bc9b8f27fffe4bc.tar.gz", + "sha256": "16ij50f7cx8gl3ypzwy50f5dr68y6m6n732sa1hwsng5db4vqzv7", + "msg": "Update from Hackage at 2023-08-17T07:12:25Z" } From 8f494d298398e3c1157b50239f3bd3d6670efe2e Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Thu, 17 Aug 2023 10:33:26 +0200 Subject: [PATCH 009/346] haskellPackages: stackage LTS 21.3 -> LTS 21.7 This commit has been generated by maintainers/scripts/haskell/update-stackage.sh --- .../configuration-hackage2nix/stackage.yaml | 146 +++++++++--------- 1 file changed, 74 insertions(+), 72 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml index 120d09d88c05..aad7f3182909 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml @@ -1,4 +1,4 @@ -# Stackage LTS 21.3 +# Stackage LTS 21.7 # This file is auto-generated by # maintainers/scripts/haskell/update-stackage.sh default-package-overrides: @@ -8,7 +8,7 @@ default-package-overrides: - AC-Angle ==1.0 - acc ==0.2.0.2 - ace ==0.6 - - acid-state ==0.16.1.2 + - acid-state ==0.16.1.3 - action-permutations ==0.0.0.1 - active ==0.2.0.18 - ad ==4.5.4 @@ -104,11 +104,12 @@ default-package-overrides: - atomic-primops ==0.8.4 - atomic-write ==0.2.0.7 - attoparsec ==0.14.4 + - attoparsec-aeson ==2.1.0.0 - attoparsec-base64 ==0.0.0 - attoparsec-binary ==0.2 - attoparsec-data ==1.0.5.3 - attoparsec-expr ==0.1.1.2 - - attoparsec-framer ==0.1.0.0 + - attoparsec-framer ==0.1.0.1 - attoparsec-iso8601 ==1.1.0.0 - attoparsec-path ==0.0.0.1 - attoparsec-run ==0.0.2.0 @@ -116,7 +117,7 @@ default-package-overrides: - audacity ==0.0.2.1 - authenticate ==1.3.5.1 - authenticate-oauth ==1.7 - - autodocodec ==0.2.0.3 + - autodocodec ==0.2.0.4 - autodocodec-openapi3 ==0.2.1.1 - autodocodec-schema ==0.1.0.3 - autodocodec-yaml ==0.2.0.3 @@ -166,7 +167,7 @@ default-package-overrides: - benri-hspec ==0.1.0.1 - between ==0.11.0.0 - bhoogle ==0.1.4.2 - - bibtex ==0.1.0.6 + - bibtex ==0.1.0.7 - bifunctor-classes-compat ==0.1 - bifunctors ==5.5.15 - bimap ==0.5.0 @@ -195,7 +196,7 @@ default-package-overrides: - bitset-word8 ==0.1.1.2 - bits-extra ==0.0.2.3 - bitvec ==1.1.4.0 - - bitwise-enum ==1.0.1.0 + - bitwise-enum ==1.0.1.2 - blake2 ==0.3.0 - Blammo ==1.1.2.1 - blank-canvas ==0.7.3 @@ -215,7 +216,7 @@ default-package-overrides: - bm ==0.2.0.0 - bmp ==1.2.6.3 - bnb-staking-csvs ==0.2.1.0 - - BNFC ==2.9.4.1 + - BNFC ==2.9.5 - BNFC-meta ==0.6.1 - board-games ==0.4 - bodhi ==0.1.0 @@ -226,11 +227,11 @@ default-package-overrides: - boots ==0.2.0.1 - bordacount ==0.1.0.0 - boring ==0.2.1 - - bound ==2.0.6 + - bound ==2.0.7 - BoundedChan ==1.0.3.0 - bounded-queue ==1.0.0 - boundingboxes ==0.2.3 - - box ==0.9.1 + - box ==0.9.2.0 - boxes ==0.1.5 - breakpoint ==0.1.2.1 - brick ==1.9 @@ -251,16 +252,16 @@ default-package-overrides: - burrito ==2.0.1.6 - bv ==0.5 - byteable ==0.1.1 - - bytebuild ==0.3.13.0 + - bytebuild ==0.3.14.0 - byte-count-reader ==0.10.1.10 - bytedump ==1.0 - bytehash ==0.1.0.0 - byte-order ==0.1.3.0 - byteorder ==1.0.4 - - bytes ==0.17.2 + - bytes ==0.17.3 - byteset ==0.1.1.0 - - byteslice ==0.2.10.0 - - bytesmith ==0.3.9.1 + - byteslice ==0.2.11.1 + - bytesmith ==0.3.10.0 - bytestring-builder ==0.10.8.2.0 - bytestring-lexing ==0.5.0.10 - bytestring-mmap ==0.2.2 @@ -270,7 +271,7 @@ default-package-overrides: - bytestring-trie ==0.2.7.2 - bz2 ==1.0.1.0 - bzlib-conduit ==0.3.0.2 - - c14n ==0.1.0.2 + - c14n ==0.1.0.3 - c2hs ==0.28.8 - cabal2spec ==2.7.0 - cabal-appimage ==0.4.0.1 @@ -278,7 +279,7 @@ default-package-overrides: - cabal-doctest ==1.0.9 - cabal-file ==0.1.1 - cabal-install-solver ==3.8.1.0 - - cabal-rpm ==2.1.1 + - cabal-rpm ==2.1.2 - cache ==0.1.3.0 - cached-json-file ==0.1.1 - cacophony ==0.10.1 @@ -316,7 +317,7 @@ default-package-overrides: - cgi ==3001.5.0.1 - chan ==0.0.4.1 - character-cases ==0.1.0.6 - - charset ==0.3.9 + - charset ==0.3.10 - charsetdetect-ae ==1.1.0.4 - Chart ==1.9.4 - Chart-diagrams ==1.9.4 @@ -336,13 +337,13 @@ default-package-overrides: - circle-packing ==0.1.0.6 - circular ==0.4.0.3 - citeproc ==0.8.1 - - classy-prelude ==1.5.0.2 + - classy-prelude ==1.5.0.3 - classy-prelude-conduit ==1.5.0 - classy-prelude-yesod ==1.5.0 - cleff ==0.3.3.0 - - clientsession ==0.9.1.2 + - clientsession ==0.9.2.0 - Clipboard ==2.3.2.0 - - clock ==0.8.3 + - clock ==0.8.4 - closed ==0.2.0.2 - clumpiness ==0.17.0.2 - ClustalParser ==1.3.0 @@ -461,6 +462,7 @@ default-package-overrides: - cryptohash-sha256 ==0.11.102.1 - cryptohash-sha512 ==0.11.102.0 - crypton ==0.32 + - crypton-conduit ==0.2.3 - cryptonite ==0.30 - cryptonite-conduit ==0.2.2 - cryptonite-openssl ==0.7 @@ -519,7 +521,7 @@ default-package-overrides: - data-hash ==0.2.0.1 - data-interval ==2.1.1 - data-inttrie ==0.1.4 - - data-lens-light ==0.1.2.3 + - data-lens-light ==0.1.2.4 - data-memocombinators ==0.5.1 - data-msgpack ==0.0.13 - data-msgpack-types ==0.0.3 @@ -555,7 +557,7 @@ default-package-overrides: - derive-storable ==0.3.1.0 - derive-topdown ==0.0.3.0 - deriving-aeson ==0.2.9 - - deriving-compat ==0.6.3 + - deriving-compat ==0.6.5 - deriving-trans ==0.5.2.0 - detour-via-sci ==1.0.0 - df1 ==0.4.1 @@ -597,7 +599,7 @@ default-package-overrides: - distributive ==0.6.2.1 - diversity ==0.8.1.0 - djinn-lib ==0.0.1.4 - - dl-fedora ==0.9.5 + - dl-fedora ==0.9.5.1 - dlist ==1.0 - dlist-instances ==0.1.1.1 - dlist-nonempty ==0.1.3 @@ -609,7 +611,7 @@ default-package-overrides: - doctest-discover ==0.2.0.0 - doctest-driver-gen ==0.3.0.7 - doctest-exitcode-stdio ==0.0 - - doctest-extract ==0.1.1 + - doctest-extract ==0.1.1.1 - doctest-lib ==0.1 - doctest-parallel ==0.3.0.1 - doldol ==0.4.1.2 @@ -634,7 +636,7 @@ default-package-overrides: - dsp ==0.2.5.2 - dual ==0.1.1.1 - dual-tree ==0.2.3.1 - - dublincore-xml-conduit ==0.1.0.2 + - dublincore-xml-conduit ==0.1.0.3 - dunai ==0.11.1 - duration ==0.2.0.0 - dvorak ==0.1.0.0 @@ -674,8 +676,8 @@ default-package-overrides: - elynx-tools ==0.7.2.1 - elynx-tree ==0.7.2.2 - emacs-module ==0.1.1.1 - - email-validate ==2.3.2.18 - - emojis ==0.1.2 + - email-validate ==2.3.2.19 + - emojis ==0.1.3 - enclosed-exceptions ==1.0.3 - ENIG ==0.0.1.0 - entropy ==0.4.1.10 @@ -698,7 +700,7 @@ default-package-overrides: - errors ==2.3.0 - errors-ext ==0.4.2 - ersatz ==0.4.13 - - esqueleto ==3.5.10.0 + - esqueleto ==3.5.10.1 - event-list ==0.1.2 - eventstore ==1.4.2 - every ==0.0.1 @@ -753,7 +755,7 @@ default-package-overrides: - fields-json ==0.4.0.0 - file-embed ==0.0.15.0 - file-embed-lzma ==0.0.1 - - filelock ==0.1.1.6 + - filelock ==0.1.1.7 - filemanip ==0.3.6.3 - file-modules ==0.1.2.4 - filepath-bytestring ==1.4.2.1.13 @@ -838,7 +840,7 @@ default-package-overrides: - generic-constraints ==1.1.1.1 - generic-data ==1.1.0.0 - generic-data-surgery ==0.3.0.0 - - generic-deriving ==1.14.4 + - generic-deriving ==1.14.5 - generic-functor ==1.1.0.0 - generic-lens ==2.2.2.0 - generic-lens-core ==2.2.1.0 @@ -892,8 +894,8 @@ default-package-overrides: - ghci-hexcalc ==0.1.1.0 - ghcjs-codemirror ==0.0.0.2 - ghcjs-perch ==0.3.3.3 - - ghc-lib ==9.4.5.20230430 - - ghc-lib-parser ==9.4.5.20230430 + - ghc-lib ==9.4.6.20230808 + - ghc-lib-parser ==9.4.6.20230808 - ghc-lib-parser-ex ==9.4.0.0 - ghc-paths ==0.1.0.12 - ghc-prof ==1.4.1.12 @@ -999,7 +1001,7 @@ default-package-overrides: - harp ==0.4.3.6 - HasBigDecimal ==0.2.0.0 - hasbolt ==0.1.6.2 - - hashable ==1.4.2.0 + - hashable ==1.4.3.0 - hashing ==0.1.1.0 - hashmap ==1.3.3 - hashtables ==1.3.1 @@ -1018,7 +1020,7 @@ default-package-overrides: - haskoin-node ==0.18.1 - haskoin-store-data ==0.65.5 - hasktags ==0.72.0 - - hasql ==1.6.3 + - hasql ==1.6.3.2 - hasql-dynamic-statements ==0.3.1.2 - hasql-implicits ==0.1.1 - hasql-interpolate ==0.1.0.4 @@ -1054,7 +1056,7 @@ default-package-overrides: - hedis ==0.15.2 - hedn ==0.3.0.4 - heist ==1.1.1.1 - - here ==1.2.13 + - here ==1.2.14 - heredoc ==0.2.0.0 - heterocephalus ==1.0.5.7 - hetzner ==0.2.1.1 @@ -1126,7 +1128,7 @@ default-package-overrides: - hset ==2.2.0 - hs-GeoIP ==0.3 - hsignal ==0.2.7.5 - - hsini ==0.5.1.2 + - hsini ==0.5.2.1 - hsinstall ==2.8 - HSlippyMap ==3.0.1 - hslogger ==1.3.1.0 @@ -1156,7 +1158,7 @@ default-package-overrides: - hspec-core ==2.10.10 - hspec-discover ==2.10.10 - hspec-expectations ==0.8.2 - - hspec-expectations-json ==1.0.0.7 + - hspec-expectations-json ==1.0.2.0 - hspec-expectations-lifted ==0.10.0 - hspec-expectations-pretty-diff ==0.7.2.6 - hspec-golden ==0.2.1.0 @@ -1256,7 +1258,7 @@ default-package-overrides: - hxt-regex-xmlschema ==9.2.0.7 - hxt-tagsoup ==9.1.4 - hxt-unicode ==9.0.2.4 - - hybrid-vectors ==0.2.3 + - hybrid-vectors ==0.2.4 - hyper ==0.2.1.1 - hyperloglog ==0.4.6 - hyphenation ==0.8.2 @@ -1298,7 +1300,7 @@ default-package-overrides: - integer-roots ==1.0.2.0 - integer-types ==0.1.4.0 - integration ==0.2.1 - - intern ==0.9.4 + - intern ==0.9.5 - interpolate ==0.2.1 - interpolatedstring-perl6 ==1.0.2 - interpolation ==0.1.1.2 @@ -1306,7 +1308,7 @@ default-package-overrides: - IntervalMap ==0.6.2.1 - intervals ==0.9.2 - intset-imperative ==0.1.0.0 - - invariant ==0.6.1 + - invariant ==0.6.2 - invert ==1.0.0.4 - invertible-grammar ==0.1.3.4 - io-machine ==0.2.0.0 @@ -1366,7 +1368,7 @@ default-package-overrides: - kazura-queue ==0.1.0.4 - kdt ==0.2.5 - keep-alive ==0.2.1.0 - - keter ==2.1.1 + - keter ==2.1.2 - keycode ==0.2.2 - keyed-vals ==0.2.2.0 - keyed-vals-hspec-tests ==0.2.2.0 @@ -1376,7 +1378,7 @@ default-package-overrides: - ki ==1.0.1.0 - kind-apply ==0.4.0.0 - kind-generics ==0.5.0.0 - - kind-generics-th ==0.2.3.2 + - kind-generics-th ==0.2.3.3 - ki-unlifted ==1.0.0.1 - kleene ==0.1 - kmeans ==0.1.3 @@ -1428,11 +1430,11 @@ default-package-overrides: - lens-properties ==4.11.1 - lens-regex ==0.1.3 - lens-regex-pcre ==1.1.0.0 - - lentil ==1.5.5.4 + - lentil ==1.5.6.0 - LetsBeRational ==1.0.0.0 - leveldb-haskell ==0.6.5 - lexer-applicative ==2.1.0.2 - - libBF ==0.6.5.1 + - libBF ==0.6.6 - libffi ==0.2.1 - libgit ==0.3.1 - liboath-hs ==0.0.1.2 @@ -1570,7 +1572,7 @@ default-package-overrides: - misfortune ==0.1.2.1 - missing-foreign ==0.1.1 - MissingH ==1.6.0.0 - - mixed-types-num ==0.5.11 + - mixed-types-num ==0.5.12 - mmap ==0.5.9 - mmark ==0.0.7.6 - mmark-cli ==0.0.5.1 @@ -1692,7 +1694,7 @@ default-package-overrides: - network-messagepack-rpc ==0.1.2.0 - network-messagepack-rpc-websocket ==0.1.1.1 - network-multicast ==0.3.2 - - Network-NineP ==0.4.7.2 + - Network-NineP ==0.4.7.3 - network-run ==0.2.6 - network-simple ==0.4.5 - network-simple-tls ==0.4.1 @@ -1799,7 +1801,7 @@ default-package-overrides: - pandoc-plot ==1.7.0 - pandoc-symreg ==0.2.0.0 - pandoc-throw ==0.1.0.0 - - pandoc-types ==1.23.0.1 + - pandoc-types ==1.23.1 - pango ==0.13.10.0 - pantry ==0.8.3 - parallel ==3.2.2.0 @@ -1966,7 +1968,7 @@ default-package-overrides: - profunctors ==5.6.2 - projectroot ==0.2.0.1 - project-template ==0.2.1.0 - - prometheus-client ==1.1.0 + - prometheus-client ==1.1.1 - prometheus-metrics-ghc ==1.0.1.2 - promises ==0.3 - prompt ==0.1.1.2 @@ -2049,7 +2051,7 @@ default-package-overrides: - rawfilepath ==1.0.1 - rawstring-qm ==0.2.3.0 - raw-strings-qq ==1.1 - - rcu ==0.2.6 + - rcu ==0.2.7 - rdf ==0.1.0.7 - rdtsc ==1.3.0.1 - re2 ==0.3 @@ -2090,7 +2092,7 @@ default-package-overrides: - regex-pcre-builtin ==0.95.2.3.8.44 - regex-posix ==0.96.0.1 - regex-posix-clib ==2.7 - - regex-tdfa ==1.3.2.1 + - regex-tdfa ==1.3.2.2 - regex-with-pcre ==1.1.0.2 - reinterpret-cast ==0.1.0 - rel8 ==1.4.1.0 @@ -2170,7 +2172,7 @@ default-package-overrides: - sandwich-hedgehog ==0.1.3.0 - sandwich-quickcheck ==0.1.0.7 - sandwich-slack ==0.1.2.0 - - sandwich-webdriver ==0.2.2.0 + - sandwich-webdriver ==0.2.3.0 - say ==0.1.0.1 - sbp ==4.15.0 - sbv ==10.2 @@ -2279,10 +2281,10 @@ default-package-overrides: - simple-cabal ==0.1.3.1 - simple-cmd ==0.2.7 - simple-cmd-args ==0.1.8 - - simple-expr ==0.1.0.2 + - simple-expr ==0.1.1.0 - simple-media-timestamp ==0.2.1.0 - simple-media-timestamp-attoparsec ==0.1.0.0 - - simple-prompt ==0.2.0.1 + - simple-prompt ==0.2.1 - simple-reflect ==0.3.3 - simple-sendfile ==0.2.32 - simple-session ==2.0.0 @@ -2302,8 +2304,8 @@ default-package-overrides: - skein ==1.0.9.4 - skews ==0.1.0.3 - skip-var ==0.1.1.0 - - skylighting ==0.13.4 - - skylighting-core ==0.13.4 + - skylighting ==0.13.4.1 + - skylighting-core ==0.13.4.1 - skylighting-format-ansi ==0.1 - skylighting-format-blaze-html ==0.1.1 - skylighting-format-context ==0.1.0.2 @@ -2408,7 +2410,7 @@ default-package-overrides: - strict-base-types ==0.8 - strict-concurrency ==0.2.4.3 - strict-lens ==0.4.0.3 - - strict-list ==0.1.7.1 + - strict-list ==0.1.7.2 - strict-tuple ==0.1.5.2 - strict-wrapper ==0.0.0.0 - stringable ==0.1.3 @@ -2428,7 +2430,7 @@ default-package-overrides: - stripe-signature ==1.0.0.16 - stripe-wreq ==1.0.1.16 - strive ==6.0.0.9 - - structs ==0.1.8 + - structs ==0.1.9 - structured ==0.1.1 - structured-cli ==2.7.0.1 - subcategories ==0.2.0.1 @@ -2439,8 +2441,8 @@ default-package-overrides: - svg-tree ==0.6.2.4 - swagger2 ==2.8.7 - swish ==0.10.4.0 - - syb ==0.7.2.3 - - sydtest ==0.15.0.0 + - syb ==0.7.2.4 + - sydtest ==0.15.1.0 - sydtest-aeson ==0.1.0.0 - sydtest-amqp ==0.1.0.0 - sydtest-autodocodec ==0.0.0.0 @@ -2563,8 +2565,8 @@ default-package-overrides: - text-regex-replace ==0.1.1.5 - text-rope ==0.2 - text-short ==0.1.5 - - text-show ==3.10.3 - - text-show-instances ==3.9.5 + - text-show ==3.10.4 + - text-show-instances ==3.9.6 - text-zipper ==0.13 - tfp ==1.0.2 - tf-random ==0.5 @@ -2581,7 +2583,7 @@ default-package-overrides: - these-skinny ==0.7.5 - th-expand-syns ==0.4.11.0 - th-lego ==0.3.0.2 - - th-lift ==0.8.3 + - th-lift ==0.8.4 - th-lift-instances ==0.1.20 - th-nowq ==0.1.0.5 - th-orphans ==0.13.14 @@ -2632,7 +2634,7 @@ default-package-overrides: - token-bucket ==0.1.0.1 - toml-reader ==0.2.1.0 - toml-reader-parse ==0.1.1.1 - - tophat ==1.0.5.1 + - tophat ==1.0.6.0 - topograph ==1.0.0.2 - torrent ==10000.1.3 - torsor ==0.1 @@ -2650,7 +2652,7 @@ default-package-overrides: - tree-fun ==0.8.1.0 - tree-view ==0.5.1 - trie-simple ==0.4.2 - - trifecta ==2.1.2 + - trifecta ==2.1.3 - trimdent ==0.1.0.0 - triplesec ==0.2.2.1 - trivial-constraint ==0.7.0.0 @@ -2718,7 +2720,7 @@ default-package-overrides: - unique-logic ==0.4.0.1 - unique-logic-tf ==0.5.1 - unit-constraint ==0.0.0 - - units-parser ==0.1.1.4 + - units-parser ==0.1.1.5 - universe ==1.2.2 - universe-base ==1.1.3.1 - universe-dependent-sum ==1.3 @@ -2861,7 +2863,7 @@ default-package-overrides: - within ==0.2.0.1 - with-location ==0.1.0 - with-utf8 ==1.0.2.4 - - witness ==0.6.1 + - witness ==0.6.2 - wizards ==1.0.3 - wl-pprint ==1.2.1 - wl-pprint-annotated ==0.1.0.1 @@ -2873,7 +2875,7 @@ default-package-overrides: - word-wrap ==0.5 - world-peace ==1.0.2.0 - wrap ==0.0.0 - - wreq ==0.5.4.0 + - wreq ==0.5.4.1 - wreq-stringless ==0.5.9.1 - writer-cps-exceptions ==0.1.0.1 - writer-cps-mtl ==0.1.1.6 @@ -2913,26 +2915,26 @@ default-package-overrides: - xml-types ==0.3.8 - xmonad ==0.17.2 - xmonad-contrib ==0.17.1 - - xor ==0.0.1.1 + - xor ==0.0.1.2 - xss-sanitize ==0.3.7.2 - xxhash-ffi ==0.2.0.0 - yaml ==0.11.11.2 - yaml-unscrambler ==0.1.0.17 - - Yampa ==0.14.3 + - Yampa ==0.14.4 - yarn-lock ==0.6.5 - yeshql-core ==4.2.0.0 - yesod ==1.6.2.1 - yesod-auth ==1.6.11.1 - yesod-auth-basic ==0.1.0.3 - yesod-auth-hashdb ==1.7.1.7 - - yesod-auth-oauth2 ==0.7.1.0 + - yesod-auth-oauth2 ==0.7.1.1 - yesod-auth-oidc ==0.1.4 - yesod-bin ==1.6.2.2 - - yesod-core ==1.6.24.3 + - yesod-core ==1.6.24.4 - yesod-eventsource ==1.6.0.1 - yesod-fb ==0.6.1 - yesod-form ==1.7.4 - - yesod-form-bootstrap4 ==3.0.1 + - yesod-form-bootstrap4 ==3.0.1.1 - yesod-gitrepo ==0.3.0 - yesod-gitrev ==0.2.2 - yesod-markdown ==0.12.6.13 @@ -2941,7 +2943,7 @@ default-package-overrides: - yesod-page-cursor ==2.0.1.0 - yesod-paginator ==1.1.2.2 - yesod-persistent ==1.6.0.8 - - yesod-recaptcha2 ==1.0.2 + - yesod-recaptcha2 ==1.0.2.1 - yesod-routes-flow ==3.0.0.2 - yesod-sitemap ==1.6.0 - yesod-static ==1.6.1.0 From c1b77b8641b9943b6532dff178dd268b3b7d4d92 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Thu, 17 Aug 2023 10:47:54 +0200 Subject: [PATCH 010/346] haskellPackages: regenerate package set based on current config This commit has been generated by maintainers/scripts/haskell/regenerate-hackage-packages.sh --- .../haskell-modules/hackage-packages.nix | 8982 +++++++++++++---- 1 file changed, 6920 insertions(+), 2062 deletions(-) diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 3d7bcf49a143..c282c067d845 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -546,6 +546,8 @@ self: { pname = "ALUT"; version = "2.4.0.3"; sha256 = "04nrh7vribs4jvg99hj3fmshzcw6kkf45r842iys19ln3l51p2bi"; + revision = "1"; + editedCabalFile = "1im8j56gwv8ask7f2gqbnsvw4jafs1yigrhdxx0bji3l4msswnr6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base OpenAL StateVar transformers ]; @@ -822,8 +824,8 @@ self: { pname = "Agda"; version = "2.6.3"; sha256 = "05k0insn1c2dbpddl1slcdn972j8vgkzzy870yxl43j75j0ckb5y"; - revision = "3"; - editedCabalFile = "1dhwih518sm0ldwcfvbgywmgvvdskkpwmrm6gj9pxyma8hrdsfsd"; + revision = "4"; + editedCabalFile = "1xfhn4ap5h5aj9vp9m474p98jz7g4azf5m7ngwbj7ivhgnkl32wh"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -1314,8 +1316,8 @@ self: { }: mkDerivation { pname = "BNFC"; - version = "2.9.4.1"; - sha256 = "0l3jw86b14jfrd4phjkhpl9qq8im3lnbbhhadmivdr1k2sf614sy"; + version = "2.9.5"; + sha256 = "0ssp096ilnwyn1n20jlnkv67r033g7sm18w20ilc64mxlaifjdgs"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -1848,6 +1850,8 @@ self: { pname = "BiobaseNewick"; version = "0.0.0.2"; sha256 = "1g8kdmraxv0qf3nzm7hi36nhw0j8kyjmjlwslp7a5n2zly2gcck4"; + revision = "1"; + editedCabalFile = "0q5r5ywb66inl3pmdyd62bfr34rgcaiyw51aycqki1q7vixv695h"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -3059,6 +3063,8 @@ self: { pname = "ChannelT"; version = "0.0.0.7"; sha256 = "183pghm74vk1vdcn0mdn6g5q284sncpl1cc49lpczz1wbr15s89y"; + revision = "1"; + editedCabalFile = "18hv00jlxmarwx8rk9zac6wzavylf322njag1mzkm8jsfkzyfxv2"; libraryHaskellDepends = [ base free mmorph mtl transformers-base ]; description = "Generalized stream processors"; license = lib.licenses.bsd3; @@ -6978,6 +6984,8 @@ self: { pname = "GLUT"; version = "2.7.0.16"; sha256 = "0vdkfj4wjzigdpzgr5l001y9wkhwgl00mclr26gf93kps14fkymn"; + revision = "1"; + editedCabalFile = "0y8lif1xq62ca3w3cf56z2b37nz2yzr3s6r9q8q24gyxl60yvsl9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -9081,6 +9089,8 @@ self: { pname = "HMock"; version = "0.5.1.0"; sha256 = "1nbdgndk5bmd45wabfnndzmava9d8cf24li0w1093yl6099gmwas"; + revision = "1"; + editedCabalFile = "0dimg8vcppmz0f3jg3yjghfn1cvn46xns8y3p54nxnngh6fxl7ph"; libraryHaskellDepends = [ base constraints containers data-default exceptions explainable-predicates extra monad-control mtl stm syb @@ -9244,8 +9254,8 @@ self: { ({ mkDerivation, base, bcm2835, bytestring }: mkDerivation { pname = "HPi"; - version = "0.7.0"; - sha256 = "094wdlnby4iqp5zvd3iimp3whn386w5h6x04izz5xxf43bzzbl2a"; + version = "0.9.0"; + sha256 = "1cwapxr6amsrcnlqdmc4klb97wv3xcqb5ms4ag4wa7bvz6rx3rx3"; libraryHaskellDepends = [ base bytestring ]; librarySystemDepends = [ bcm2835 ]; description = "GPIO, I2C and SPI functions for the Raspberry Pi"; @@ -9327,8 +9337,8 @@ self: { }: mkDerivation { pname = "HROOT"; - version = "0.10.0.2"; - sha256 = "1si50g4dhjphg1lqji8wlihgn1wnshsarhl5gjhc8107absddbmb"; + version = "0.10.0.3"; + sha256 = "049r8d2p1nij9d1byf3zyskp01a8hlql7gnzbz0slj2f1a6qyfs2"; setupHaskellDepends = [ base Cabal process ]; libraryHaskellDepends = [ base HROOT-core HROOT-graf HROOT-hist HROOT-io HROOT-math HROOT-net @@ -9340,16 +9350,16 @@ self: { }) {}; "HROOT-core" = callPackage - ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, process - , stdcxx, template-haskell + ({ mkDerivation, base, Cabal, fficxx-runtime, process, stdcxx + , template-haskell }: mkDerivation { pname = "HROOT-core"; - version = "0.10.0.2"; - sha256 = "0cis7fjm1lisn9ipfxk8dkxdxdr8kpfrfp21ac2y6chcappxxpjp"; + version = "0.10.0.3"; + sha256 = "1pb2bf1nmrk5wp6z8zyx8ksbcbhhg46830bizmma2a4kl2smnwfj"; setupHaskellDepends = [ base Cabal process ]; libraryHaskellDepends = [ - base fficxx fficxx-runtime stdcxx template-haskell + base fficxx-runtime stdcxx template-haskell ]; description = "Haskell binding to ROOT Core modules"; license = lib.licenses.lgpl21Plus; @@ -9358,17 +9368,16 @@ self: { }) {}; "HROOT-graf" = callPackage - ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core + ({ mkDerivation, base, Cabal, fficxx-runtime, HROOT-core , HROOT-hist, process, stdcxx, template-haskell }: mkDerivation { pname = "HROOT-graf"; - version = "0.10.0.2"; - sha256 = "0qfcqla07cz06xw09xdh5jnsixrrl5f4l1gxsf2cg2x2nl4yvpna"; + version = "0.10.0.3"; + sha256 = "04ck4z913acvqc6h2lq4j6ws4y0aygisaic917wbr6abzhkj7zbg"; setupHaskellDepends = [ base Cabal process ]; libraryHaskellDepends = [ - base fficxx fficxx-runtime HROOT-core HROOT-hist stdcxx - template-haskell + base fficxx-runtime HROOT-core HROOT-hist stdcxx template-haskell ]; description = "Haskell binding to ROOT Graf modules"; license = lib.licenses.lgpl21Plus; @@ -9376,16 +9385,16 @@ self: { }) {}; "HROOT-hist" = callPackage - ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core - , process, stdcxx, template-haskell + ({ mkDerivation, base, Cabal, fficxx-runtime, HROOT-core, process + , stdcxx, template-haskell }: mkDerivation { pname = "HROOT-hist"; - version = "0.10.0.2"; - sha256 = "0xyh3xnjpfz0218jg0r67kl1frw9gf2m11bnjlaxvqlzfnrxgxr0"; + version = "0.10.0.3"; + sha256 = "1dz06d63qzlvgim1v6vzasyk8s8m0fvjhdwqwbanicn0h2gd1qkl"; setupHaskellDepends = [ base Cabal process ]; libraryHaskellDepends = [ - base fficxx fficxx-runtime HROOT-core stdcxx template-haskell + base fficxx-runtime HROOT-core stdcxx template-haskell ]; description = "Haskell binding to ROOT Hist modules"; license = lib.licenses.lgpl21Plus; @@ -9393,16 +9402,16 @@ self: { }) {}; "HROOT-io" = callPackage - ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core - , process, stdcxx, template-haskell + ({ mkDerivation, base, Cabal, fficxx-runtime, HROOT-core, process + , stdcxx, template-haskell }: mkDerivation { pname = "HROOT-io"; - version = "0.10.0.2"; - sha256 = "0h36jpc8ljwhk6rmv6i7i8mls0s0lcii3fdjaa23r9bbrl76jgk4"; + version = "0.10.0.3"; + sha256 = "10293ranj094xz9dzyfa5xndxfg0jgcgh7vj5mw2sq01s77vxxv0"; setupHaskellDepends = [ base Cabal process ]; libraryHaskellDepends = [ - base fficxx fficxx-runtime HROOT-core stdcxx template-haskell + base fficxx-runtime HROOT-core stdcxx template-haskell ]; description = "Haskell binding to ROOT IO modules"; license = lib.licenses.lgpl21Plus; @@ -9410,16 +9419,16 @@ self: { }) {}; "HROOT-math" = callPackage - ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core - , process, stdcxx, template-haskell + ({ mkDerivation, base, Cabal, fficxx-runtime, HROOT-core, process + , stdcxx, template-haskell }: mkDerivation { pname = "HROOT-math"; - version = "0.10.0.2"; - sha256 = "1sgj7lr0j7yik0x6fy6vfiv2qqw1b58yhm2z8fq765x3ypilj24m"; + version = "0.10.0.3"; + sha256 = "0b9lyqpaj4lw6k0gmfcp4gazqmfrbi7iww2sy413n375nckvz2sd"; setupHaskellDepends = [ base Cabal process ]; libraryHaskellDepends = [ - base fficxx fficxx-runtime HROOT-core stdcxx template-haskell + base fficxx-runtime HROOT-core stdcxx template-haskell ]; description = "Haskell binding to ROOT Math modules"; license = lib.licenses.lgpl21Plus; @@ -9427,17 +9436,16 @@ self: { }) {}; "HROOT-net" = callPackage - ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core - , HROOT-io, process, RHTTP, stdcxx, template-haskell + ({ mkDerivation, base, Cabal, fficxx-runtime, HROOT-core, HROOT-io + , process, RHTTP, stdcxx, template-haskell }: mkDerivation { pname = "HROOT-net"; - version = "0.10.0.2"; - sha256 = "1lw0zkb8wmd5raa1fbjaw5l3r6kvvll72vs4rmdjqmg0rld3hgnk"; + version = "0.10.0.3"; + sha256 = "0d4azl97v0v6d5bld6xqn7dk91dbvndmyffxsbv88vfqcj231vdj"; setupHaskellDepends = [ base Cabal process ]; libraryHaskellDepends = [ - base fficxx fficxx-runtime HROOT-core HROOT-io stdcxx - template-haskell + base fficxx-runtime HROOT-core HROOT-io stdcxx template-haskell ]; librarySystemDepends = [ RHTTP ]; description = "Haskell binding to ROOT Net modules"; @@ -9446,16 +9454,16 @@ self: { }) {RHTTP = null;}; "HROOT-tree" = callPackage - ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core - , process, stdcxx, template-haskell + ({ mkDerivation, base, Cabal, fficxx-runtime, HROOT-core, process + , stdcxx, template-haskell }: mkDerivation { pname = "HROOT-tree"; - version = "0.10.0.2"; - sha256 = "1k5sfd9a02hgbxq9slsvaxw40l0i6nyvw0ihjs1v7lamsicd8b7y"; + version = "0.10.0.3"; + sha256 = "1ndb0amk9n44dpgwvh1gbyff08vcqbd5igj640ldhpr2idkbpcfz"; setupHaskellDepends = [ base Cabal process ]; libraryHaskellDepends = [ - base fficxx fficxx-runtime HROOT-core stdcxx template-haskell + base fficxx-runtime HROOT-core stdcxx template-haskell ]; description = "Haskell binding to ROOT Tree modules"; license = lib.licenses.lgpl21Plus; @@ -11288,8 +11296,8 @@ self: { pname = "HsYAML"; version = "0.2.1.1"; sha256 = "0a7nbvpl4p8kwbbjfn1dj6s3fif5k8zhbckdvyz1k74pj3yb8ns6"; - revision = "3"; - editedCabalFile = "0dyvkrnzdpba4lwxvqyrsjgcmi0aza7nz19xjw638qdq1xdxrwcp"; + revision = "4"; + editedCabalFile = "1ai0y5jmj68q1rami0hdg34rflammpagb96sww4fkbr127cbdwhx"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -11311,8 +11319,8 @@ self: { pname = "HsYAML-aeson"; version = "0.2.0.1"; sha256 = "139hqd07hkr8ykvrgmcshh9f3vp9dnrj6ks5nl8hgrpi990jsy5r"; - revision = "7"; - editedCabalFile = "1zriyncrkfdz21adlqy2v1wydm01j3w3jxqa2ls1psjp2p1mmv6x"; + revision = "8"; + editedCabalFile = "0wprpy6312ly8dh5w2fdr5ni0p3ywfn8m6axmzh8i79zjaffnxcl"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -11549,8 +11557,8 @@ self: { ({ mkDerivation, base, mtl, QuickCheck, Stream }: mkDerivation { pname = "IOSpec"; - version = "0.3.1.1"; - sha256 = "1w6f7jnjm4n0s4mr18yqv81rsnrh8f6806x523gnqljbyak18p1l"; + version = "0.3.1.2"; + sha256 = "0ig57drcyynndgbbpfycvxvfz2ddyr1xsxks0xabfp7r0w7f0bi0"; libraryHaskellDepends = [ base mtl QuickCheck Stream ]; description = "A pure specification of the IO monad"; license = lib.licenses.bsd3; @@ -15036,8 +15044,8 @@ self: { }: mkDerivation { pname = "Network-NineP"; - version = "0.4.7.2"; - sha256 = "19m5iz99igw6bdqh9zln1cmfms0nrghvf9553fb2gjzv0i9dbygs"; + version = "0.4.7.3"; + sha256 = "1ddmg5644af3aq53lclwyifir9x56by61w43ipb4lj1p40hki0j1"; libraryHaskellDepends = [ async base binary bytestring containers convertible exceptions hslogger monad-loops monad-peel mstate mtl network network-bsd @@ -15382,15 +15390,15 @@ self: { }) {}; "OGDF" = callPackage - ({ mkDerivation, base, COIN, fficxx, fficxx-runtime, OGDF, stdcxx + ({ mkDerivation, base, COIN, fficxx-runtime, OGDF, stdcxx , template-haskell }: mkDerivation { pname = "OGDF"; - version = "1.0.0.0"; - sha256 = "0sn5xyn2yqh7aywadzxvaxcyqj2clivvizqdbnjkljib7960w44z"; + version = "1.0.0.1"; + sha256 = "0xxh88qzqmfpz3lphgm1iihbc6x8m3irwzpp0s3ysss64a6jn7j7"; libraryHaskellDepends = [ - base fficxx fficxx-runtime stdcxx template-haskell + base fficxx-runtime stdcxx template-haskell ]; librarySystemDepends = [ COIN OGDF ]; description = "Haskell binding to OGDF"; @@ -15647,8 +15655,8 @@ self: { pname = "Only"; version = "0.1"; sha256 = "0rdj3a629fk2vp121jq8mf2smkblrz5w3cxhlsyx6my2x29s2ymb"; - revision = "1"; - editedCabalFile = "1ahk7p34kmh041mz7lyc10nhcxgv2i4z8nvzxvqm2x34gslmsbzr"; + revision = "2"; + editedCabalFile = "01rvhsm4gyvjpgakrj7nzlfb1bjhkkx87xj3hng2x00g3qc3s0y6"; libraryHaskellDepends = [ base deepseq ]; description = "The 1-tuple type or single-value \"collection\""; license = lib.licenses.bsd3; @@ -15701,6 +15709,8 @@ self: { pname = "OpenAL"; version = "1.7.0.5"; sha256 = "167qgbls1439wbckva281cf61bclkca0krbbi4451l7qjinm8fil"; + revision = "1"; + editedCabalFile = "1k5ynfm92wbxl8nf0rni8sxplxdwqjr3zsvj9p1ss1b7ns4s1hnb"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -18044,8 +18054,8 @@ self: { }: mkDerivation { pname = "RtMidi"; - version = "0.7.0.0"; - sha256 = "0gfhl9p961hpzljcx3cphl5wzhgjkbklnf5a1wikmm86xa5ziz1w"; + version = "0.8.0.0"; + sha256 = "1cp0pzsc7agjq3dr4h2lldb1x9wl0p2047f45mpsxc4w6gw97fwz"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base deepseq vector ]; @@ -19548,6 +19558,29 @@ self: { mainProgram = "Sit.bin"; }) {}; + "Sit_0_2023_8_3" = callPackage + ({ mkDerivation, alex, array, base, containers, data-lens-light + , happy, mtl + }: + mkDerivation { + pname = "Sit"; + version = "0.2023.8.3"; + sha256 = "1psmfgh1bklx52az1097n23nzfjnab002dcqrq140jqhnpfw7ynr"; + isLibrary = true; + isExecutable = true; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + array base containers data-lens-light mtl + ]; + libraryToolDepends = [ alex happy ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base ]; + description = "Prototypical type checker for Type Theory with Sized Natural Numbers"; + license = "unknown"; + hydraPlatforms = lib.platforms.none; + mainProgram = "Sit.bin"; + }) {}; + "SizeCompare" = callPackage ({ mkDerivation, base, containers }: mkDerivation { @@ -22750,16 +22783,19 @@ self: { }) {}; "Yampa" = callPackage - ({ mkDerivation, base, deepseq, random, simple-affine-space }: + ({ mkDerivation, base, criterion, deepseq, filepath, random + , simple-affine-space, time + }: mkDerivation { pname = "Yampa"; - version = "0.14.3"; - sha256 = "0hsi2458m0wncb6khzjzplzxlmcwz3czm3q59fcqfz0c6yn8px7j"; + version = "0.14.4"; + sha256 = "1lj1fj77ajckxhv9avx22djyl4jp44693y54j6hyx0xfp4dafhr5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base deepseq random simple-affine-space ]; + benchmarkHaskellDepends = [ base criterion filepath time ]; description = "Elegant Functional Reactive Programming Language for Hybrid Systems"; license = lib.licenses.bsd3; }) {}; @@ -22880,8 +22916,8 @@ self: { }: mkDerivation { pname = "Z-Data"; - version = "2.0.0.1"; - sha256 = "0w78yrphmb7w2vay75r1a5rlcar1345rvbsq8cx8zh3jcx2r802g"; + version = "2.0.0.2"; + sha256 = "1ix3bdhb8291wgh3iaiwfhkkkcbp51r50xszs4i1x57kzzxbsjf3"; setupHaskellDepends = [ base Cabal ]; libraryHaskellDepends = [ base bytestring case-insensitive containers deepseq hashable @@ -24057,8 +24093,8 @@ self: { }: mkDerivation { pname = "acid-state"; - version = "0.16.1.2"; - sha256 = "1ixg62liif1g18ggxap8zdhzy261fj5d24pmb0n36gfhz18b38bx"; + version = "0.16.1.3"; + sha256 = "0vmggxzp6alv92ycwc9bc53vn73s1cbn8rhmbcb2jvcglyakvws5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -26516,8 +26552,8 @@ self: { }: mkDerivation { pname = "aeson-via"; - version = "0.2.1"; - sha256 = "0g8sf1sv1fmqkqmfwsb8sxbgy63zg503gi9sxhhc9apfrp5z9kig"; + version = "0.2.2"; + sha256 = "04hmnhi64wj80s8li9v6dza3alv155vaigpqy3y6j40b6p7hglk9"; libraryHaskellDepends = [ aeson aeson-casing base newtype-generics text ]; @@ -26904,8 +26940,8 @@ self: { ({ mkDerivation, base, hspec }: mkDerivation { pname = "agreeing"; - version = "0.1.0.0"; - sha256 = "09dayjwdq16kjcmalhy55mv8gcv0s0d583fkw1k6smvcy1fal32r"; + version = "0.2.0.0"; + sha256 = "1zhxzhxhqanchr64rkbwzrn9q7lhmylsggf6ax0zai0zg9sk56yc"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base hspec ]; description = "Idiomatic data structure for agreement"; @@ -28590,96 +28626,384 @@ self: { }) {}; "amazonka" = callPackage - ({ mkDerivation, amazonka-core, base, bytestring, conduit - , conduit-extra, directory, exceptions, http-client, http-conduit - , http-types, ini, mmorph, monad-control, mtl, resourcet, retry - , tasty, tasty-hunit, text, time, transformers, transformers-base - , transformers-compat, unliftio-core, void + ({ mkDerivation, aeson, amazonka-core, amazonka-sso, amazonka-sts + , base, bytestring, conduit, directory, exceptions, http-client + , http-conduit, http-types, ini, lens, resourcet, retry, text, time + , transformers, unordered-containers, uuid }: mkDerivation { pname = "amazonka"; - version = "1.6.1"; - sha256 = "104ifvmwdc1w3y42qcbq57v579zcnmlfv3f0bsazbcqdxnvr9dzd"; - revision = "3"; - editedCabalFile = "1fkmnk2ikx6j6vpda9wx1pc3yl16d2j7gz3wgfh6hj0z856rm4gf"; + version = "2.0"; + sha256 = "044ypj06rg6vb6yfdnfjk0piwpwgqchryskzhws6knjf7qag67g0"; libraryHaskellDepends = [ - amazonka-core base bytestring conduit conduit-extra directory - exceptions http-client http-conduit http-types ini mmorph - monad-control mtl resourcet retry text time transformers - transformers-base transformers-compat unliftio-core void + aeson amazonka-core amazonka-sso amazonka-sts base bytestring + conduit directory exceptions http-client http-conduit http-types + ini lens resourcet retry text time transformers + unordered-containers uuid ]; - testHaskellDepends = [ base tasty tasty-hunit ]; description = "Comprehensive Amazon Web Services SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-accessanalyzer" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-accessanalyzer"; + version = "2.0"; + sha256 = "0d95kxjq0b6lfqnz4lkihmsnxkvia7v6889mbg2hjl2b6d8gq9hf"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Access Analyzer SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-account" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-account"; + version = "2.0"; + sha256 = "05d5428jya57w6s798mynd31wdp1bwi0gmqr2n6wvbxrwjxjvn2g"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Account SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-alexa-business" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-alexa-business"; - version = "1.6.1"; - sha256 = "0k94d4i7fnrlf2zbvndw5bpl9g54ar03s43yzlygq1rg4qfwakhq"; + version = "2.0"; + sha256 = "03jfkwvzkl168hnn3vz53l4jgv59q8k2w8q5awnz2fzzm5i0vg5j"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Alexa For Business SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-amp" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-amp"; + version = "2.0"; + sha256 = "151k7wshjifnypywvq6nkbpfq3bsyfpxayqnnxqk88zcgp52b2i5"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Prometheus Service SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-amplify" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-amplify"; + version = "2.0"; + sha256 = "0k2nvz7dw9j2cwh24a4c5bmzp25lyn362mgqlbk5n0576v2yqdkh"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Amplify SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-amplifybackend" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-amplifybackend"; + version = "2.0"; + sha256 = "1jmar2yzlmcdw869a4bih64z6h31yj3llkg7h2lqhk3n231xlxx7"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon AmplifyBackend SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-amplifyuibuilder" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-amplifyuibuilder"; + version = "2.0"; + sha256 = "1jw75bi3r3myd05l5v22w5mmj7iyihmgp35zncr1n6b07jm8ig8l"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Amplify UI Builder SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-apigateway" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-apigateway"; - version = "1.6.1"; - sha256 = "11gkml1xp2h5j9idgk84h6nlz2fvszrrn9hmqjm4b76hj3a3v11v"; + version = "2.0"; + sha256 = "17m30b7wdvvf859aai64h71hxwz6w432n6ck1i9b11fcxf03sdlf"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon API Gateway SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-apigatewaymanagementapi" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-apigatewaymanagementapi"; + version = "2.0"; + sha256 = "15yx8ljfvidx7xm7i5iwdyqdrdw0b9qzi5s1pw2d5q7xbgdsg8wj"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon ApiGatewayManagementApi SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-apigatewayv2" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-apigatewayv2"; + version = "2.0"; + sha256 = "1b48a8zbr1d44zvvbmyfwcqn548vwq4qh94wdllxiizsszb8aq6k"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon ApiGatewayV2 SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-appconfig" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-appconfig"; + version = "2.0"; + sha256 = "1dqmaq0ysl4ki792zh4bmsvjf6fh628r7l5fhsqa6s1lrmn746mn"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon AppConfig SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-appconfigdata" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-appconfigdata"; + version = "2.0"; + sha256 = "12yrh69ixicgh3gnz9viw0w8fgcz1l81inclh4cq2gz1pjyasp17"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon AppConfig Data SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-appflow" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-appflow"; + version = "2.0"; + sha256 = "02374a03lifbg1y7zzvg4v91r0k1mji7ad9nm2c6v8k45791f4d0"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Appflow SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-appintegrations" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-appintegrations"; + version = "2.0"; + sha256 = "0yi057njjx38xy03ic7dkjdmkyk4wh3wiv7zbgz77xq2yjnv6gjy"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon AppIntegrations Service SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-application-autoscaling" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-application-autoscaling"; - version = "1.6.1"; - sha256 = "11njiad7rzx2vbzr6m3qwrvzqaplnp6h1zkd92mcc16chaial3ns"; + version = "2.0"; + sha256 = "1za4q19j9157q11y3k32p3xkj94bbb92q440gn1c7m55m6caskm0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Application Auto Scaling SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-application-insights" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-application-insights"; + version = "2.0"; + sha256 = "198h6phfxdcwcp6k7nfjwjjxpv271j8xrgcl30bg4jqswp47hy1x"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon CloudWatch Application Insights SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-applicationcostprofiler" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-applicationcostprofiler"; + version = "2.0"; + sha256 = "1kqzw2553sllyh17svckzl65i45r0n6sjm3ap3f9s3z1x946hdlx"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Application Cost Profiler SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-appmesh" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-appmesh"; + version = "2.0"; + sha256 = "1dr3nq9imivwb4z183vgylcp740bhhpc29cpjkzn8zxm5hnf7lqr"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon App Mesh SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-apprunner" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-apprunner"; + version = "2.0"; + sha256 = "1g5j1jhdxj3ra9z7qjcnhiszxv9rq2w8g4qjzdjdd54v7lnwb5v5"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon App Runner SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-appstream" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-appstream"; - version = "1.6.1"; - sha256 = "1308gj35ibv54asgwng2rxsvwyz5gmcnfigikm1ib950a33zli36"; + version = "2.0"; + sha256 = "0nbvdkaml27jscrxw9raydqfg79zczhm47lirdgq7jm58r6pn3w5"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon AppStream SDK"; license = lib.licenses.mpl20; @@ -28688,52 +29012,91 @@ self: { "amazonka-appsync" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-appsync"; - version = "1.6.1"; - sha256 = "0py1hf3hjcyrck39s8b8nircz0zi80rq27b4snwmrbs5l5lhp23s"; + version = "2.0"; + sha256 = "08n4yy2wilfyp92i7nlmn3gib53fwsxiia2igbnr2mlmvb1vm67r"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon AppSync SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-arc-zonal-shift" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-arc-zonal-shift"; + version = "2.0"; + sha256 = "0wbzxm1an9kcd4k4s76h1mp412rdca9nwl3xib04kkkkzd3bkggd"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon ARC - Zonal Shift SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-athena" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-athena"; - version = "1.6.1"; - sha256 = "17avw47p6jkfbwgr4hlv0kx10xbjgm2rfpdj26whjzwv1mpy83ip"; + version = "2.0"; + sha256 = "0hcww9mr096ys1imba8zhvyy4g9vaskh8gs4bd8hb0nh8gsaa2sh"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Athena SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-auditmanager" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-auditmanager"; + version = "2.0"; + sha256 = "1182nz5rzlsx97lczhh78lxv7nrnh1rdw3c202jvsla9f6hr7hi7"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Audit Manager SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-autoscaling" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-autoscaling"; - version = "1.6.1"; - sha256 = "0569mjl9k4v0z740vhaz665zy5s3jzrvp562n4j6mkim9p0svd1g"; + version = "2.0"; + sha256 = "043j4anckd05j5bz259f1gpkcacdinsscf06avbcbq08r8cqf8wf"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Auto Scaling SDK"; license = lib.licenses.mpl20; @@ -28742,52 +29105,145 @@ self: { "amazonka-autoscaling-plans" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-autoscaling-plans"; - version = "1.6.1"; - sha256 = "1xg9lcqjsdczy9gnssy78wbapypbdhnzs9kb3k779h5r8dv4rbx9"; + version = "2.0"; + sha256 = "10bwadh8rdqnrdwy1skc3xsmc2c5ikawi83l8b9liapcyb81r7j1"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Auto Scaling Plans SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-backup" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-backup"; + version = "2.0"; + sha256 = "1m2zjz3zs8kw84ph0hi88q1zrshs24n8dr3xpcy84ir9xgpl37lq"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Backup SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-backup-gateway" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-backup-gateway"; + version = "2.0"; + sha256 = "13wqbdjq6ippm64cy8c2465vzx3g4g8q8lfymp2lajk1vvp02nyh"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Backup Gateway SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-backupstorage" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-backupstorage"; + version = "2.0"; + sha256 = "08fkx40xzi6fhbpid93zp0hpll71qy8w84jm38zb4i1phwsb466y"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Backup Storage SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-batch" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-batch"; - version = "1.6.1"; - sha256 = "197wjj11y5qjapz6c9qpp92fkhsfbc8pm9f0pyw63k7cyr3vcrq6"; + version = "2.0"; + sha256 = "1m0gh0jamvs493raqg3id2kag68sjws15f4d1qshzp5gahsc6a08"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Batch SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-billingconductor" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-billingconductor"; + version = "2.0"; + sha256 = "0cx2dccf1symgn9nzi0d27hnfgxhhjcd56g3x7j57y8h05dg1lmn"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon BillingConductor SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-braket" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-braket"; + version = "2.0"; + sha256 = "09dp4n8gjs5cmq1a1hq1ng9ndd43gslmcy5idkrabs4as4piqr9d"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Braket SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-budgets" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-budgets"; - version = "1.6.1"; - sha256 = "0wv25m25dnwsv3r8njjjg4ffy8d3r1xw5q56adhpifir0j2j1aw4"; + version = "2.0"; + sha256 = "0mqlxh126i6qprjsz753hp0ir4i47442v943fzhddcw41cyrdchk"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Budgets SDK"; license = lib.licenses.mpl20; @@ -28796,16 +29252,17 @@ self: { "amazonka-certificatemanager" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-certificatemanager"; - version = "1.6.1"; - sha256 = "1wlyd1wn11ngq5pbh3mcg1acknsycyc9j41l7miwir5swxkpngc3"; + version = "2.0"; + sha256 = "0xqq13gjxy5czh7xz1bdr57hd2rykgh36vriw5mgfrhs09vry6zn"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Certificate Manager SDK"; license = lib.licenses.mpl20; @@ -28814,52 +29271,181 @@ self: { "amazonka-certificatemanager-pca" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-certificatemanager-pca"; - version = "1.6.1"; - sha256 = "1qcmbw2n6vw0a9ksbvqhf7qmlk5zlxifc4hg9wzr3zywmj4zygq0"; + version = "2.0"; + sha256 = "1gwzb5lq1ms62m8l1c3fqfkpz2y2l1fsij7hradiic6zp55xsy4p"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Certificate Manager Private Certificate Authority SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-chime" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-chime"; + version = "2.0"; + sha256 = "0bysdxbqsq9657854hdhzvcjwnfqpg4k31chwfvldilnyid2w9l1"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Chime SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-chime-sdk-identity" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-chime-sdk-identity"; + version = "2.0"; + sha256 = "0j6yx3rprfmj7l41yjrz9qd59jlpy79ksrmqv55lb8n5s4zl9ar4"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Chime SDK Identity SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-chime-sdk-media-pipelines" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-chime-sdk-media-pipelines"; + version = "2.0"; + sha256 = "1b5s8krabpcw8sywxm2nf7jlmblzz7rvnvm1pxy9xc9vd3m760sd"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Chime SDK Media Pipelines SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-chime-sdk-meetings" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-chime-sdk-meetings"; + version = "2.0"; + sha256 = "1v1khlbbisdbdz7iap4gx0gc6b3l2qcqnv53jskwmq3qy7a2ys7s"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Chime SDK Meetings SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-chime-sdk-messaging" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-chime-sdk-messaging"; + version = "2.0"; + sha256 = "0zr6wyr97ss9r245i56cffkk4rb0jshrbzp7jnkgh9qqkbry8pal"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Chime SDK Messaging SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-chime-sdk-voice" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-chime-sdk-voice"; + version = "2.0"; + sha256 = "1ym5c3ckk9p08ypyfbh5s9ajj74pyvcwj45j90nb3fgzi8gvv2cp"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Chime SDK Voice SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-cloud9" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-cloud9"; - version = "1.6.1"; - sha256 = "1ikkcd9i45zmfx7p25wf97pn52314xs0ga4lh3r32b8xrh2d9kq4"; + version = "2.0"; + sha256 = "0javf3vmlmskprjrlj353hhkaprkc8g7cgpqm6vp4vgzqiln46bf"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Cloud9 SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-cloudcontrol" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudcontrol"; + version = "2.0"; + sha256 = "13nh5mm8sdckmyn7cmykli6l3kbrxg77ycnfpd9i3y28lyycp3mx"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Cloud Control API SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-clouddirectory" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-clouddirectory"; - version = "1.6.1"; - sha256 = "012nilk1j8jmp8bhcc5qff95g1ivsky05jwk4xpfh05j573cdaqz"; + version = "2.0"; + sha256 = "02iiam1i2cyafmhl7gbd02s03lx4r0p0g6ccl3k3rz853sp6jqw8"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon CloudDirectory SDK"; license = lib.licenses.mpl20; @@ -28868,16 +29454,17 @@ self: { "amazonka-cloudformation" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-cloudformation"; - version = "1.6.1"; - sha256 = "1j5gsgswcflfrmry777drc7f7619azr1qffdz636y2vb8nsyl8z8"; + version = "2.0"; + sha256 = "01gw438fw7b87ibdgnjl3hqxx8s1ckkmaj0b12b4plqsdjsx6h1b"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon CloudFormation SDK"; license = lib.licenses.mpl20; @@ -28886,16 +29473,17 @@ self: { "amazonka-cloudfront" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-cloudfront"; - version = "1.6.1"; - sha256 = "0yd7vx90wnjid99gq4vypxfmgqjrfa4ws2s7x77qx1rl1pxh0ncc"; + version = "2.0"; + sha256 = "1zsn0avbhc789gvk8ylgawjpdkxvdj71n96bd66xmmwizqb5vqsw"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon CloudFront SDK"; license = lib.licenses.mpl20; @@ -28904,16 +29492,17 @@ self: { "amazonka-cloudhsm" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-cloudhsm"; - version = "1.6.1"; - sha256 = "06d0w3h3njblqjh95crf6gslkdcjx29g1h66f6z0gqikrwiy5prl"; + version = "2.0"; + sha256 = "0xpvvgk3nnkmjbbx34ancq2l1ij7621qww0fxpa2vgdmn4qg9m7a"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon CloudHSM SDK"; license = lib.licenses.mpl20; @@ -28922,16 +29511,17 @@ self: { "amazonka-cloudhsmv2" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-cloudhsmv2"; - version = "1.6.1"; - sha256 = "1j7ns5daj4rsvc1f956wfy7hpshb7z8vffa6vyzvrfmw8kfspvfa"; + version = "2.0"; + sha256 = "03sbrqpw3lh9b3rz1f8r1y368cax6k9ywi4apl3cdaqsq8k6mpp0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon CloudHSM V2 SDK"; license = lib.licenses.mpl20; @@ -28940,16 +29530,17 @@ self: { "amazonka-cloudsearch" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-cloudsearch"; - version = "1.6.1"; - sha256 = "1p3srndrj4kgwwz9021mfh91za8qgrhf4hzk02nva6awdp114j6h"; + version = "2.0"; + sha256 = "07xpfkfr229i1lh6v9fi4j1gmv9aqiwy709nbczaph6nsln9hjb2"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon CloudSearch SDK"; license = lib.licenses.mpl20; @@ -28958,16 +29549,17 @@ self: { "amazonka-cloudsearch-domains" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-cloudsearch-domains"; - version = "1.6.1"; - sha256 = "07xihv4bay6vz9pw89y3issfmi7iicryzi1wh22sxw3qb1jnq6q4"; + version = "2.0"; + sha256 = "0is587zw0v71q3njaf8092s0dlrlgax9k72jk21whrlw2hcwmp53"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon CloudSearch Domain SDK"; license = lib.licenses.mpl20; @@ -28976,16 +29568,17 @@ self: { "amazonka-cloudtrail" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-cloudtrail"; - version = "1.6.1"; - sha256 = "1abx1xp75fdnavxwxi2ak5gk3b2vc2380znv3mi28s72l8aprk2m"; + version = "2.0"; + sha256 = "03cm69j3g8s0d6s8gdx3p1d3rwz0ph0qyx76fv1l5cn27phm8mbn"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon CloudTrail SDK"; license = lib.licenses.mpl20; @@ -28994,16 +29587,17 @@ self: { "amazonka-cloudwatch" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-cloudwatch"; - version = "1.6.1"; - sha256 = "0v9j950qlfhy4dz77kq0329877050lpwaqi5h5s00kxiqwbvcmjf"; + version = "2.0"; + sha256 = "1h8mnjskkr4lkb2bvww0nhp9xn0cqjab0hqgl1ncv6p61jf1zw5g"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon CloudWatch SDK"; license = lib.licenses.mpl20; @@ -29012,52 +29606,73 @@ self: { "amazonka-cloudwatch-events" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-cloudwatch-events"; - version = "1.6.1"; - sha256 = "0ikn7z6fp648qi5ch664wnym6v1mcq37khxw7fwfnfqnir13sclb"; + version = "2.0"; + sha256 = "1dipj5gl92q6339246kz8m9f5x7h0vlhnp665h6d5mzcnbvz97b9"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; - description = "Amazon CloudWatch Events SDK"; + description = "Amazon EventBridge SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cloudwatch-logs" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-cloudwatch-logs"; - version = "1.6.1"; - sha256 = "146llix63givxlry48la1m5c28q9008bmpfmbj3x5mwrgjxxxpv1"; + version = "2.0"; + sha256 = "0gpwvz8kwd908n28zvbk5vmx4jrmqx8jybypddlysk223rcfzb82"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon CloudWatch Logs SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-codeartifact" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-codeartifact"; + version = "2.0"; + sha256 = "14913n9qlalp0bmnzdsfcfi20xdxa64j826dn10lx0wmpg138inv"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon CodeArtifact SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-codebuild" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-codebuild"; - version = "1.6.1"; - sha256 = "1c56766yz3dj1zq643503mphdw7kb82kfn63ldi6f7i6dc5yyx8k"; + version = "2.0"; + sha256 = "13yx256hk14f8gaawgnvfxjw3ai8r5ldy1j0d51iknd95qbdg2yp"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon CodeBuild SDK"; license = lib.licenses.mpl20; @@ -29066,16 +29681,17 @@ self: { "amazonka-codecommit" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-codecommit"; - version = "1.6.1"; - sha256 = "0cq73pd93la058sgpcvhmrqc5r4splh5x9w571fxrilmc08a6fdn"; + version = "2.0"; + sha256 = "1c50c249cxnw4wlcfbwh74k3qy9csmnf92nm99gsb8c8smhhsxxf"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon CodeCommit SDK"; license = lib.licenses.mpl20; @@ -29084,34 +29700,72 @@ self: { "amazonka-codedeploy" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-codedeploy"; - version = "1.6.1"; - sha256 = "1yjlbcbzfp72621sj458b2lv35rf8fcr88ljb47mrp7ihb86zzrx"; + version = "2.0"; + sha256 = "0pppzrwv2b5qnh4xw90c21imqwa8wrzjqjmmfcym5805qj5c1fhp"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon CodeDeploy SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-codeguru-reviewer" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-codeguru-reviewer"; + version = "2.0"; + sha256 = "1k1bcv2gxdzc6qp2r5n6q5wfr628i3xq5nkdck1i01rd5sswjbrw"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon CodeGuru Reviewer SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-codeguruprofiler" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-codeguruprofiler"; + version = "2.0"; + sha256 = "07jjql6lfv02wwx7ydqqwrlsicg4gprarn5kwjsk76464p6p893i"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon CodeGuru Profiler SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-codepipeline" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-codepipeline"; - version = "1.6.1"; - sha256 = "1jb5775n31yhbqahv8jiiz5i1qzvq5rls3f1jf35wnwjvzzzz85z"; + version = "2.0"; + sha256 = "1pbd4f6w7c6nlgxcq1xacg94jpx3m8srr1l9jzsgam4s6wf3ixp1"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon CodePipeline SDK"; license = lib.licenses.mpl20; @@ -29120,34 +29774,72 @@ self: { "amazonka-codestar" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-codestar"; - version = "1.6.1"; - sha256 = "1vf0cg2kby5bnb6j575c0mcldbqj577mkmfzsbwy3hnfv92rhipy"; + version = "2.0"; + sha256 = "1spjb2h4da1fypx9wj82ha5277zk1qqnnphrsd56ak7mlar1shpq"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon CodeStar SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-codestar-connections" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-codestar-connections"; + version = "2.0"; + sha256 = "19vddgc61mm0ypvzfkwgn7m37dnkha30pa3ry6sphw9aynv9agla"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon CodeStar connections SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-codestar-notifications" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-codestar-notifications"; + version = "2.0"; + sha256 = "1djib5ksv63adng9s6n04ldvxi0i2kmyl6zkz4im3703xcjii7l9"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon CodeStar Notifications SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-cognito-identity" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-cognito-identity"; - version = "1.6.1"; - sha256 = "0142kq7hfdala7bl9l1d5s0rkf50zz89qm6m0f3mpfp4iiaphxxr"; + version = "2.0"; + sha256 = "1wwbna3iarjqsglqwpbrjg6x5ib4rsbh2lx5fwdh414r25710yls"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Cognito Identity SDK"; license = lib.licenses.mpl20; @@ -29156,16 +29848,17 @@ self: { "amazonka-cognito-idp" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-cognito-idp"; - version = "1.6.1"; - sha256 = "06zhx3rajqf0llc5xvyp9nd77pb0h5mfv8f83kbp9696yi7c6qnz"; + version = "2.0"; + sha256 = "0p99w1fpvm68rldw28bjq7q9ah1ad50dz50vic4552nhpqvw07kb"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Cognito Identity Provider SDK"; license = lib.licenses.mpl20; @@ -29174,16 +29867,17 @@ self: { "amazonka-cognito-sync" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-cognito-sync"; - version = "1.6.1"; - sha256 = "0qyvj02y7c0lvw5axr50l22pvmzj8l6c8ivdlf6myrdmfb8gjj70"; + version = "2.0"; + sha256 = "15hslp7zp91392asl9p5bif2dspbjjhwmaa47i1b0kmarl2haq1z"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Cognito Sync SDK"; license = lib.licenses.mpl20; @@ -29192,34 +29886,72 @@ self: { "amazonka-comprehend" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-comprehend"; - version = "1.6.1"; - sha256 = "12ipg2qnyaw1y5azgq2b7vw9n17l877xiw7fa6xaxsmf3xfk6w1d"; + version = "2.0"; + sha256 = "1ll364vazv1rjp37wng6g9fqw40rirhj040p4yky31py0gj8k3fm"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Comprehend SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-comprehendmedical" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-comprehendmedical"; + version = "2.0"; + sha256 = "0kk10v1dxnkqf8xz2rik0x7mm08ivwy9ccbahwmfhzwk5427vqf5"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Comprehend Medical SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-compute-optimizer" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-compute-optimizer"; + version = "2.0"; + sha256 = "02501c0xnyc7vdf97156a0fxmysy7r7vlgj6azgr1jd98j110i8v"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Compute Optimizer SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-config" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-config"; - version = "1.6.1"; - sha256 = "0d38y292gwq7ix0gvrkznc7007jlr8an2wzrxn0rjca0f24vldpz"; + version = "2.0"; + sha256 = "1ccxay3qpmll5fy03qcwwbx2b23g609w4zxsqvdny86pb97p6ij9"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Config SDK"; license = lib.licenses.mpl20; @@ -29228,22 +29960,95 @@ self: { "amazonka-connect" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-connect"; - version = "1.6.1"; - sha256 = "0l0p3n1pa3jnq5srcc93w37bxqiv4i912y5a4vx6ghzgpv8y4k42"; + version = "2.0"; + sha256 = "03jj3qjsj7qx3gm8ryh01lxa3glg1rqz289xmnbl9qv8gb0f8bfs"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Connect Service SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-connect-contact-lens" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-connect-contact-lens"; + version = "2.0"; + sha256 = "1m9dkadljs33any7f3rlwxs49h5qgd5l5xxhxfh5srcwsf5lzd4j"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Connect Contact Lens SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-connectcampaigns" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-connectcampaigns"; + version = "2.0"; + sha256 = "00x539dzx6kb50ifhjcwc8490di72bcbqwwp8zm7sr74pjx1jq8s"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon ConnectCampaignService SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-connectcases" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-connectcases"; + version = "2.0"; + sha256 = "19sfbqg46s02wnbpw9lw46vbw8m8pdmsvc125akxli8vjpg8rkir"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Connect Cases SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-connectparticipant" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-connectparticipant"; + version = "2.0"; + sha256 = "1hy1wlni7czid4qm48jdqyfy2gfb1x973khc4bj0g8nx99qspkms"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Connect Participant Service SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-contrib-rds-utils" = callPackage ({ mkDerivation, amazonka, amazonka-core, amazonka-rds, base , bytestring, lens, optparse-applicative, text, time @@ -29266,32 +30071,47 @@ self: { mainProgram = "generate-db-auth-token"; }) {}; + "amazonka-controltower" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-controltower"; + version = "2.0"; + sha256 = "1n8hh292q7l6j5ljbbnf339lvp0gf2h6fh9mxymglhsagc0gzpj9"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Control Tower SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-core" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring - , case-insensitive, conduit, conduit-extra, cryptonite - , data-ordlist, deepseq, exceptions, hashable, http-client - , http-conduit, http-types, lens, memory, mtl, QuickCheck - , quickcheck-unicode, resourcet, scientific, semigroups, tagged - , tasty, tasty-hunit, tasty-quickcheck, template-haskell, text - , time, transformers, transformers-compat, unordered-containers - , xml-conduit, xml-types + ({ mkDerivation, aeson, attoparsec, base, bytestring + , case-insensitive, conduit, conduit-extra, containers, crypton + , data-ordlist, deepseq, hashable, http-client, http-conduit + , http-types, lens, memory, QuickCheck, quickcheck-unicode + , regex-posix, resourcet, scientific, tasty, tasty-hunit + , tasty-quickcheck, template-haskell, text, time, transformers + , unordered-containers, xml-conduit, xml-types }: mkDerivation { pname = "amazonka-core"; - version = "1.6.1"; - sha256 = "0hx250dja1l4n4y5115w0qngzlqj8f6p861sdaykh0yjm4nzb621"; - revision = "2"; - editedCabalFile = "15mwn2cv4f99rb53wzk7hplb6ncpcl7crsvj8dx71ymm60cf2kxr"; + version = "2.0"; + sha256 = "1lsd9nzyvwwp7j4kii6fp7n98x1qa6999ggwwia5sa06fgqz39bm"; libraryHaskellDepends = [ - aeson attoparsec base bifunctors bytestring case-insensitive - conduit conduit-extra cryptonite deepseq exceptions hashable - http-client http-conduit http-types lens memory mtl resourcet - scientific semigroups tagged text time transformers - transformers-compat unordered-containers xml-conduit xml-types + aeson attoparsec base bytestring case-insensitive conduit + conduit-extra containers crypton deepseq hashable http-client + http-conduit http-types lens memory regex-posix resourcet + scientific text time transformers unordered-containers xml-conduit + xml-types ]; testHaskellDepends = [ aeson base bytestring case-insensitive conduit data-ordlist - http-conduit http-types lens QuickCheck quickcheck-unicode tasty + http-conduit http-types QuickCheck quickcheck-unicode tasty tasty-hunit tasty-quickcheck template-haskell text time ]; description = "Core data types and functionality for Amazonka libraries"; @@ -29302,16 +30122,17 @@ self: { "amazonka-cost-explorer" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-cost-explorer"; - version = "1.6.1"; - sha256 = "1hrcg3ibs1wwbbpdhpkzplqg48jd0ckhpyv1c1lfkhdgbxzb9gwc"; + version = "2.0"; + sha256 = "0xl3xs502qh74h10m32zbcjp4n1dadfwhh6gqmsjns6zy92xr0v1"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Cost Explorer Service SDK"; license = lib.licenses.mpl20; @@ -29320,70 +30141,182 @@ self: { "amazonka-cur" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-cur"; - version = "1.6.1"; - sha256 = "0rigrrr7malmj6l2zxxda3bvljpakjnh6k986nm7fl5dg7qyvq62"; + version = "2.0"; + sha256 = "0ki316fhwm9fsk8pfiwm7z9wkjdknjlf6jz07hg9zg3x5jiix28p"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Cost and Usage Report Service SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-customer-profiles" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-customer-profiles"; + version = "2.0"; + sha256 = "1whk66pzqdrfaw8clz6xfjayjzmabmbh42w0gvqy5gsl15f3sz7d"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Connect Customer Profiles SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-databrew" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-databrew"; + version = "2.0"; + sha256 = "18ciw2y284jfl4z9mvp6bk91x92zplrwkic6i634nvvadw25m0vz"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Glue DataBrew SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-dataexchange" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-dataexchange"; + version = "2.0"; + sha256 = "1s4nlfrvv6fr6wkkawzqmy6cc25ma8hls32pnqib9ipf1z77h8mj"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Data Exchange SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-datapipeline" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-datapipeline"; - version = "1.6.1"; - sha256 = "08mig2diwr6ryyvin3w9rj3w37lm02v85c3bhnz5k7649s255xvb"; + version = "2.0"; + sha256 = "12qz9yxsxfjwkz6dm77c7li5zb20407swwmvpqhmzykmi3wjcjai"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Data Pipeline SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-datasync" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-datasync"; + version = "2.0"; + sha256 = "05r8zbajk6vdvh96p3v0ml53gg5jhfrck3ph9sh81wfc3dhb8bpl"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon DataSync SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-detective" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-detective"; + version = "2.0"; + sha256 = "1j7zipg23v09jhfi1x07ppfahx5aqmrn8gbcyy53nf49i49w7c1i"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Detective SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-devicefarm" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-devicefarm"; - version = "1.6.1"; - sha256 = "1v43k8vyal9zi91yad3518jlr5qj975l27hbdri7q7w9iax5pn5y"; + version = "2.0"; + sha256 = "1hfpvygp1mbazax2bp7bg6wan1scp188fjymby0lk7v7px4inmpg"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Device Farm SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-devops-guru" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-devops-guru"; + version = "2.0"; + sha256 = "005qvd82mg6waz64p3q8scyy07yn7c1ary8b3wrd5whp9km8jfqf"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon DevOps Guru SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-directconnect" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-directconnect"; - version = "1.6.1"; - sha256 = "0nq4zax36am2y5p51g4giqln26nbjyykgprqa6z1hl8ls659jqfw"; + version = "2.0"; + sha256 = "00k10jwba9by8insnn8frrgki3s9frw104lw8k0vqaapnk1jprql"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Direct Connect SDK"; license = lib.licenses.mpl20; @@ -29392,52 +30325,127 @@ self: { "amazonka-discovery" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-discovery"; - version = "1.6.1"; - sha256 = "17a47yhqy7hs9vhj0iwby14irh732j2d00sm7zh3xpvipwrckaq2"; + version = "2.0"; + sha256 = "19jqwyyqyw7qv08m01y4ag48l7ixnirq31jbyz5r13jhsd5ala0b"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Application Discovery Service SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-dlm" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-dlm"; + version = "2.0"; + sha256 = "0kn6n1l94f9i74h4b9mjiz9i1rk3j62gfzxdr88qsdc73ax7pbpp"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Data Lifecycle Manager SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-dms" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-dms"; - version = "1.6.1"; - sha256 = "11zdwcl0cz7fpamc7a9smg6qjnkc3a77l1g8k9q5y0yprhbzcycc"; + version = "2.0"; + sha256 = "09kww8bspyi0ajvzsxn6wkfgip44fbzlkpbp73zfwf6qyb8hqmw7"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Database Migration Service SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-docdb" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-docdb"; + version = "2.0"; + sha256 = "13jwf2hh6azv8kqgdygvdns6g1h0048ymlq046yxg23hd3nxnp9q"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon DocumentDB with MongoDB compatibility SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-docdb-elastic" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-docdb-elastic"; + version = "2.0"; + sha256 = "009h8yw2p9cs8chflbfiqrcy8rhmc9385jyxig3lhx7i9dxgkqgy"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon DocumentDB Elastic Clusters SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-drs" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-drs"; + version = "2.0"; + sha256 = "0f3fh71irj9ka5znmjn4z2pgnqqj8f8qzd1bma43cwvp8b6ay7ai"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Elastic Disaster Recovery Service SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-ds" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-ds"; - version = "1.6.1"; - sha256 = "1zy8sr49ls5qzijr7phsbc5xmxsc4hqc1dwrzkm5cmc69abhfj7v"; + version = "2.0"; + sha256 = "1xz7iah24729fgcqn5zm7r66kgmgaash7irkch78brac032n77d9"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Directory Service SDK"; license = lib.licenses.mpl20; @@ -29445,17 +30453,21 @@ self: { }) {}; "amazonka-dynamodb" = callPackage - ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + ({ mkDerivation, aeson, amazonka-core, amazonka-test, base + , bytestring, case-insensitive, containers, hashable, tasty + , tasty-hunit, text, time, unordered-containers, vector }: mkDerivation { pname = "amazonka-dynamodb"; - version = "1.6.1"; - sha256 = "10hxbkq15l2hcyjjspi3kf05m3294ywk51vw82j3c1pii1n4h804"; - libraryHaskellDepends = [ amazonka-core base ]; + version = "2.0"; + sha256 = "1clxhxv3dmk8amhqp0iwglr5xw90krkr4gyqssl7wzapsdq5ka2p"; + libraryHaskellDepends = [ + aeson amazonka-core base containers hashable unordered-containers + vector + ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon DynamoDB SDK"; license = lib.licenses.mpl20; @@ -29464,16 +30476,17 @@ self: { "amazonka-dynamodb-dax" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-dynamodb-dax"; - version = "1.6.1"; - sha256 = "0s8n60lkjigbgn8a63cpwq1pj6nvjyhrx5w6bx1nqfls8y5ik857"; + version = "2.0"; + sha256 = "11davhsjds7waqgnh0rp7jq7jrsb2817144ca0b9s93ac06c09wj"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon DynamoDB Accelerator (DAX) SDK"; license = lib.licenses.mpl20; @@ -29481,71 +30494,132 @@ self: { }) {}; "amazonka-dynamodb-streams" = callPackage - ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + ({ mkDerivation, aeson, amazonka-core, amazonka-test, base + , bytestring, case-insensitive, containers, hashable, tasty + , tasty-hunit, text, time, unordered-containers, vector }: mkDerivation { pname = "amazonka-dynamodb-streams"; - version = "1.6.1"; - sha256 = "0nfr9sqiirxb9a8j6ix2l1mhyrwx061q4h7lr57ar7arj9lanbgy"; - libraryHaskellDepends = [ amazonka-core base ]; + version = "2.0"; + sha256 = "0rmr4xd7p08wmkggd1mxrhiqz3nkr46xdj8zhi4kk8nzppjmzv2l"; + libraryHaskellDepends = [ + aeson amazonka-core base containers hashable unordered-containers + vector + ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon DynamoDB Streams SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-ebs" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-ebs"; + version = "2.0"; + sha256 = "0dkfyldlr0nr0h8mpiqbv3gs6p9q94sa7gkwdc5hzcwrbhkmqs2h"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Elastic Block Store SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-ec2" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-ec2"; - version = "1.6.1"; - sha256 = "1lxdi92x60bd7r41abcz20dabs07qxy0ipmxgryqmrxkrqj9jjmh"; + version = "2.0"; + sha256 = "1ki3x2j6gz4szsgi5k22cidn7qhhbyx16s6gvxihaq42776q29wg"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Elastic Compute Cloud SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-ec2-instance-connect" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-ec2-instance-connect"; + version = "2.0"; + sha256 = "08pzb7f5450ji7l57b8c7arl7fq91h1an78h9gsvhayfmn1hd04n"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon EC2 Instance Connect SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-ecr" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-ecr"; - version = "1.6.1"; - sha256 = "0n3kdkmmwasqg7gkhmszkhvzsfp90mjlhfwx02v12gpn83b5s39d"; + version = "2.0"; + sha256 = "1sy8a0dspw3d4skkqba05ay0g2s0iywar1fdddl9cv7zfd2mlp03"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon EC2 Container Registry SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-ecr-public" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-ecr-public"; + version = "2.0"; + sha256 = "005gj4m5fi42ckqln763pxdw54kjcci9167hw6k7asf2mgzg5kbn"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Elastic Container Registry Public SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-ecs" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-ecs"; - version = "1.6.1"; - sha256 = "1fhv3b62anx1zlspmdi5l44qgsk4xd7s0p2vxczvzf82mcli21sm"; + version = "2.0"; + sha256 = "0vwnbrknr2f7fb03frdpr9hq82rkdyn4amfbyic2hfa630nq0q49"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon EC2 Container Service SDK"; license = lib.licenses.mpl20; @@ -29554,34 +30628,72 @@ self: { "amazonka-efs" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-efs"; - version = "1.6.1"; - sha256 = "135isr1khawf2ap3ba791aynlm74hay7jddhrf6vsfscn1z087kl"; + version = "2.0"; + sha256 = "1f9jv7szg0i3w5v86bjkwfhxj29058fx6493aa1xndd1iaa5wk19"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Elastic File System SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-eks" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-eks"; + version = "2.0"; + sha256 = "0yq0gbg4b6xxgziy9ixwfn4gmvw8yllriadyl3bgyadxigxwbx2r"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Elastic Kubernetes Service SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-elastic-inference" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-elastic-inference"; + version = "2.0"; + sha256 = "1sw9fjqbyzkbp6sh9p2qgl7q3id1nni16sb009bzs2w8q58cbzq8"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Elastic Inference SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-elasticache" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-elasticache"; - version = "1.6.1"; - sha256 = "0q7bzr3xcc78163md6i1gzxhbqrb98x8clisp9vynhvw5vh8lbad"; + version = "2.0"; + sha256 = "1ksrcpnv5i718ibmz4qhghkm8a9y96jlmdfgrc97zkdpw0pcy4wx"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon ElastiCache SDK"; license = lib.licenses.mpl20; @@ -29590,16 +30702,17 @@ self: { "amazonka-elasticbeanstalk" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-elasticbeanstalk"; - version = "1.6.1"; - sha256 = "0sczhwhckhgyf3dbmp0hnaikqkym94kyndyqzpsl9m8p0blgkm1a"; + version = "2.0"; + sha256 = "1w4lqgsrsnrnjwla7jwby1lnh4fan0rklgzvpp653ayavmmd9hr2"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Elastic Beanstalk SDK"; license = lib.licenses.mpl20; @@ -29608,16 +30721,17 @@ self: { "amazonka-elasticsearch" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-elasticsearch"; - version = "1.6.1"; - sha256 = "04ya0s83gakhbkpgimmgjax09caww8y7cx1nm1j02fminifivycy"; + version = "2.0"; + sha256 = "01wpyp2hz83njjk8kk4bvvpwb6a381gdqi48637bpzsslxim3zhr"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Elasticsearch Service SDK"; license = lib.licenses.mpl20; @@ -29626,16 +30740,17 @@ self: { "amazonka-elastictranscoder" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-elastictranscoder"; - version = "1.6.1"; - sha256 = "0nzvjzb91jka0wiimvjh5hlfqw92bsn16m1dvgnk315p7pgfg06z"; + version = "2.0"; + sha256 = "1xzx1w6mn1m33mnb7r4a4mspllvfhm1dnv46hvs07zxlp2ggdm43"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Elastic Transcoder SDK"; license = lib.licenses.mpl20; @@ -29644,16 +30759,17 @@ self: { "amazonka-elb" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-elb"; - version = "1.6.1"; - sha256 = "178hpbk35vbc6lrmpjkdc57d8961bbv8nqn1bajxm65q3nwfqpjv"; + version = "2.0"; + sha256 = "1vazcpz651x2s7zwfkpyiwh84aa9rfrs7aa3h1s7jnvf59flqvzw"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Elastic Load Balancing SDK"; license = lib.licenses.mpl20; @@ -29662,16 +30778,17 @@ self: { "amazonka-elbv2" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-elbv2"; - version = "1.6.1"; - sha256 = "0ybv5wwfn0cnd3qwk7r343jihq6m0h15f6xr2a2yxjs8wizr0h37"; + version = "2.0"; + sha256 = "1h5822vhy4wx5ddrqwv73vi9mfx0jljyqizilpr313wv5f9f0mq0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Elastic Load Balancing SDK"; license = lib.licenses.mpl20; @@ -29680,124 +30797,401 @@ self: { "amazonka-emr" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-emr"; - version = "1.6.1"; - sha256 = "1g475pn0sxf4widb2xqpsm4awvqj6glpdj3ryyqhp7i38wvcg4sb"; + version = "2.0"; + sha256 = "1mjljrxvixgpb8xl3i2knik1zr871n221gxh3xj3pxly8zi9sdck"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; - description = "Amazon Elastic MapReduce SDK"; + description = "Amazon EMR SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-emr-containers" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-emr-containers"; + version = "2.0"; + sha256 = "0mlddzrrp5qmgvpi45brdf5vhp0099m5ka6s7ggp1bwnizmi2is2"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon EMR Containers SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-emr-serverless" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-emr-serverless"; + version = "2.0"; + sha256 = "1ay9hyi4x4d5x6183njbr0b8plnmp2apgnfnksfmmjz5vinirxx5"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon EMR Serverless SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-evidently" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-evidently"; + version = "2.0"; + sha256 = "05s3d16f00fhrnsvgvcb05y1w63fwimg5d9sl34qsx92n6glzd6w"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon CloudWatch Evidently SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-finspace" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-finspace"; + version = "2.0"; + sha256 = "16wkklbwjsz344hrva4b8iilg3qmbpfrvag98jdvlv7i60r9s24h"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon FinSpace User Environment Management service SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-finspace-data" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-finspace-data"; + version = "2.0"; + sha256 = "0fv90rzpa0cxjk5kdx19z4xcnww330zqdzyzxmdkxi2gvbgwhkkq"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon FinSpace Public API SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-fis" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-fis"; + version = "2.0"; + sha256 = "1f4rf1k1ln6v9v949bd5rq7xcz68qy608d1r3lkkmaajkawxvagy"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Fault Injection Simulator SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-fms" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-fms"; - version = "1.6.1"; - sha256 = "1nrgjqmm77difl82ixaif56waw89mx0m8p0hgblzfq47gi28n6mh"; + version = "2.0"; + sha256 = "1flrwdvpclal957dxli05y2yvacrhl8a9j32w3ywkg2sach9cv47"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Firewall Management Service SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-forecast" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-forecast"; + version = "2.0"; + sha256 = "02m9haxqrwyrmqr0bz6s8sn82aq3da1zhdcqqij79kp2r5q27kxc"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Forecast Service SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-forecastquery" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-forecastquery"; + version = "2.0"; + sha256 = "0qf1pkmwypk1vdx23nvf6cya4xbs2wjd8i2qrl2brlg3cav1pm57"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Forecast Query Service SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-frauddetector" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-frauddetector"; + version = "2.0"; + sha256 = "0m7sb4az8c9yfyibfanbj1w5j7nn670hdqqqvs9gbcmckqp91z1s"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Fraud Detector SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-fsx" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-fsx"; + version = "2.0"; + sha256 = "1yxadzl3j7h6jfiz6dahgf3zl79na9rmi2v35kynmy0hpdfsjd75"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon FSx SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-gamelift" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-gamelift"; - version = "1.6.1"; - sha256 = "1cp3w3xi5icwh9ss168hsz49rq0d4wqns8kbx1aar7lchm85bj69"; + version = "2.0"; + sha256 = "0llz8kz31hgmyqxniqlbz9avbdpg77fn0fnlnldvm86xmg95752w"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon GameLift SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-gamesparks" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-gamesparks"; + version = "2.0"; + sha256 = "0hpg224x6nlpcpkvsg3r8vm0ga2p8rwdl1ajyvf9pa2i7fjvh5ya"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon GameSparks SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-glacier" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-glacier"; - version = "1.6.1"; - sha256 = "11q8ajyx8nf9lc7wr7vwpg1gvp4wwb83zyv17cdpr60g7mrwymav"; + version = "2.0"; + sha256 = "0wnvnw71rp6ls3flq50dkskb2yp4hkzv4jrssv93zfl41479h4p6"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Glacier SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-globalaccelerator" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-globalaccelerator"; + version = "2.0"; + sha256 = "01hamd5m9sdv6g8s532mj1w6jymaz88virbk8zxj4q55v5g18g8h"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Global Accelerator SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-glue" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-glue"; - version = "1.6.1"; - sha256 = "17z8bcgahxw7apanj9nm9srj47dxwshmkwm828jm49wpkcvk0akb"; + version = "2.0"; + sha256 = "0cfdf4x3xi7n3ar273ih6hlc4grad8anzvhk0b9rf4ipxqwspp1p"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Glue SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-grafana" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-grafana"; + version = "2.0"; + sha256 = "0n1iibjfczapwq063615yx5pkddinml53cw45fgmdvq3frsvrqn8"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Managed Grafana SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-greengrass" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-greengrass"; - version = "1.6.1"; - sha256 = "03l0igrx2za6004rxbhd047ww1csbffviii3q16csvxnj41kz8pg"; + version = "2.0"; + sha256 = "0qf67zygrq6vv8inmxx295hh6r6dq3i8h468qrrgf8fibgpmj6qn"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Greengrass SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-greengrassv2" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-greengrassv2"; + version = "2.0"; + sha256 = "1hjmbs7aj6cckya6nqyx3v7hjw2fgdr2k4qhy5drsvdkp5fjm9fx"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon IoT Greengrass V2 SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-groundstation" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-groundstation"; + version = "2.0"; + sha256 = "1cbwgk4lr5m6i39ppa56dkgfwfi04dq5ryf03f9a27n3p603lv30"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Ground Station SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-guardduty" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-guardduty"; - version = "1.6.1"; - sha256 = "0v1xpykjgz3nqj5yil4f2m5rs4xcfflk9a4xckix0yp5gkbbd01x"; + version = "2.0"; + sha256 = "07pmy62xml7sry2m69rp8xslyppb78mqdlddbggzqbi7crc1icdw"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon GuardDuty SDK"; license = lib.licenses.mpl20; @@ -29806,34 +31200,72 @@ self: { "amazonka-health" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-health"; - version = "1.6.1"; - sha256 = "0xs6fsl7z8qq40vi79nasfxwlxxm2ljpzh4c1b77v6q1mkak7dd2"; + version = "2.0"; + sha256 = "0191klmixd3r4hzqkpajp9zwzalx0z480qqn96v9snhw7hp4kbsr"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Health APIs and Notifications SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-healthlake" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-healthlake"; + version = "2.0"; + sha256 = "1yhixqmfz1q0m3ny1vr3qxzxz9zwgfw7xpf66r2aspb2nwj9c33b"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon HealthLake SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-honeycode" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-honeycode"; + version = "2.0"; + sha256 = "0fg1x2s3xyf5rp69vl48cdkyaq4k00878zqbkr9zr70laqq78ri7"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Honeycode SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-iam" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-iam"; - version = "1.6.1"; - sha256 = "1mz7qdk19n3cs9iy5sf7h4g7a7sfimbb4lrk992f9ykmmyj0cl8x"; + version = "2.0"; + sha256 = "0pflcnb7ar2d7z9zvrd9sid08n4d99h40k69lirkd408kzw66dwf"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Identity and Access Management SDK"; license = lib.licenses.mpl20; @@ -29863,18 +31295,55 @@ self: { broken = true; }) {}; + "amazonka-identitystore" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-identitystore"; + version = "2.0"; + sha256 = "02l3nk7xz39iawdq9kycsf3szl3jq7wfh8f003mgxd2xz0a3d1ji"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon SSO Identity Store SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-imagebuilder" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-imagebuilder"; + version = "2.0"; + sha256 = "1xxcgm41830bf82zvswqmhv6snkx74vb7n4ic9zmivxc1qh0sj8w"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon EC2 Image Builder SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-importexport" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-importexport"; - version = "1.6.1"; - sha256 = "13nxssqayp917g2ynmvva2mk0dqd724f891jx4z0cnlxrja2856f"; + version = "2.0"; + sha256 = "1xwvy6sm1y579yx83gaif2khn6xfsy8w4vkp9sxb9mh2pgvc22sp"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Import/Export SDK"; license = lib.licenses.mpl20; @@ -29883,34 +31352,54 @@ self: { "amazonka-inspector" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-inspector"; - version = "1.6.1"; - sha256 = "0x5nxw2nb64ahjw4hy8lp7w32mqsq0zj0skj116pa4yf6p1v7d38"; + version = "2.0"; + sha256 = "02fbgk11c1p7k91b1sf61yig7rpw84mpnhjjg9sqiws84hk8v2vw"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Inspector SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-inspector2" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-inspector2"; + version = "2.0"; + sha256 = "0ngvgr2gd6s2smch1nmd9gp6dw1fw54xwn8yhh2fg1jk5388d3a9"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Inspector2 SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-iot" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-iot"; - version = "1.6.1"; - sha256 = "10y65lma8m8cyz753r3pkaayqfyhxs8103y63v0dardrvci3jxji"; + version = "2.0"; + sha256 = "0a4h32drks4bpg5n2syp2lm58j03vxr529q0c8gvky8lhv0w34sr"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon IoT SDK"; license = lib.licenses.mpl20; @@ -29919,16 +31408,17 @@ self: { "amazonka-iot-analytics" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-iot-analytics"; - version = "1.6.1"; - sha256 = "1xwfz3s4sgd611bx045gjhnpjmh3c38i1hgvis968bx8ka47xbsk"; + version = "2.0"; + sha256 = "0r1nrm7k5jq2f6h113mwsbx1xphhzzvm2aqqvb876xyw7sylx02r"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon IoT Analytics SDK"; license = lib.licenses.mpl20; @@ -29937,16 +31427,17 @@ self: { "amazonka-iot-dataplane" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-iot-dataplane"; - version = "1.6.1"; - sha256 = "0j0bqaw6nc3nhq6wbm1jlm7kdkf497xnba4yxk3q27gbx5zzjhvv"; + version = "2.0"; + sha256 = "0hvlmbdnn27y01cb6410vd80hw9aqf8aabbz2y2ajbfgj7bbqw9w"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon IoT Data Plane SDK"; license = lib.licenses.mpl20; @@ -29955,34 +31446,378 @@ self: { "amazonka-iot-jobs-dataplane" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-iot-jobs-dataplane"; - version = "1.6.1"; - sha256 = "00s8hdhp6g5h1lilvpqawgy3l89hdn31374cgq8wcx09nmjj8san"; + version = "2.0"; + sha256 = "064vhx1dyvh2m0is2vnibg5baacr70sfn2xjgyhscjbzya7max3s"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon IoT Jobs Data Plane SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-iot-roborunner" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-iot-roborunner"; + version = "2.0"; + sha256 = "1yr0j6gzivvlmh10g6nsdm2jdgndw84nxn910ggcp6mf067f82if"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon IoT RoboRunner SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-iot1click-devices" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-iot1click-devices"; + version = "2.0"; + sha256 = "14lxx0lbl3fqih8x7h46z7vvh0fp729d3wnq1fjd5b8s1ysjg103"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon IoT 1-Click Devices Service SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-iot1click-projects" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-iot1click-projects"; + version = "2.0"; + sha256 = "15bff8l2g5zri03k790dnil9pkg33n98hmq8skk2xmfdzwrcnm73"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon IoT 1-Click Projects Service SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-iotdeviceadvisor" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-iotdeviceadvisor"; + version = "2.0"; + sha256 = "0xlybvyyfp6irfv3aqh21irzj9r6kvq1656a36aky7m0gknrfpp5"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon IoT Core Device Advisor SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-iotevents" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-iotevents"; + version = "2.0"; + sha256 = "0r822sfb0vh8bi7g860h82x9cd0p3myb9gq9s59sm4r6727kzirx"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon IoT Events SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-iotevents-data" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-iotevents-data"; + version = "2.0"; + sha256 = "04cf0853sqmgdw4362j79z80xpijgbpqgn7fp8sjbgmdkiyfkrng"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon IoT Events Data SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-iotfleethub" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-iotfleethub"; + version = "2.0"; + sha256 = "0ra5f8acfwc8dgijb9g790qh94g0dywr85yz4pv182gsw6z2gk5f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon IoT Fleet Hub SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-iotfleetwise" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-iotfleetwise"; + version = "2.0"; + sha256 = "1j1k0zrq50w68v1wgi7viwqcxah1cm16sglypfw3c0izqjcd0k5f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon IoT FleetWise SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-iotsecuretunneling" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-iotsecuretunneling"; + version = "2.0"; + sha256 = "0hir6wlidp4jl10hsli1b1mmgkzya3yn9bs31slahg2prcd7rigm"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon IoT Secure Tunneling SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-iotsitewise" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-iotsitewise"; + version = "2.0"; + sha256 = "1izjz5ayh66g1m0i5g0mnwqmk5k131vi417z0h44g6dm1d770m1d"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon IoT SiteWise SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-iotthingsgraph" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-iotthingsgraph"; + version = "2.0"; + sha256 = "0vz10z4jlfmqx4pjwj4qmbvr1cfbqq3435vzjphq1jrii9sqdb63"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon IoT Things Graph SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-iottwinmaker" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-iottwinmaker"; + version = "2.0"; + sha256 = "08hlmxry9z9z521nanjvl61q11d8zyqql6fbx71cpc1xvbjzrnpw"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon IoT TwinMaker SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-iotwireless" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-iotwireless"; + version = "2.0"; + sha256 = "02dcjjpk223dmqmsk315dg8nplihbhvs4af6cbr5nmk9xwv5amsf"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon IoT Wireless SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-ivs" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-ivs"; + version = "2.0"; + sha256 = "0j4m5v0mldjgcg2jm5hr6gm6hbxr0ss9gjdjp41hc0g5j52khws5"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Interactive Video Service SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-ivschat" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-ivschat"; + version = "2.0"; + sha256 = "1c5rlij31pk1ww150ii3fppnamsnvlw21vaalp78i1b9gnlhr0zi"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Interactive Video Service Chat SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-kafka" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-kafka"; + version = "2.0"; + sha256 = "0mv10gxxmcfwv57wcq1d75k77wlv0v56150wrfz8nvqqiyw04qcf"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Managed Streaming for Kafka SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-kafkaconnect" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-kafkaconnect"; + version = "2.0"; + sha256 = "0hk5qngygshjy5hsv1qqk7c4vq0zw1kp2g0drlsbai46sqv9s3l9"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Managed Streaming for Kafka Connect SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-kendra" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-kendra"; + version = "2.0"; + sha256 = "18znxnxdfdcg7mdyxvhxgdj8vbnkqs414f8qr11wzl3dydhhfmv3"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon KendraFrontendService SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-keyspaces" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-keyspaces"; + version = "2.0"; + sha256 = "01d2bicrxnl5vb7imaayqdan821ji8n14gk630npjw704ycmxa0b"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Keyspaces SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-kinesis" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-kinesis"; - version = "1.6.1"; - sha256 = "0rsipc64ia9hwcvw5bn0055bisq04kihnhzb4wzfvbgrzgrxrqsz"; + version = "2.0"; + sha256 = "1m1i5lfhaq167f1igh3hbzmg9i6f3ybd157qa1yivj6rfrd9b0j1"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Kinesis SDK"; license = lib.licenses.mpl20; @@ -29991,16 +31826,17 @@ self: { "amazonka-kinesis-analytics" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-kinesis-analytics"; - version = "1.6.1"; - sha256 = "16bf0sqyrgphhbqi8lxzmgb818m7yajmdcwmzgz3w99zzad9qn5g"; + version = "2.0"; + sha256 = "0nv896vparpc4dkgz2bdby29kpxpa3afgnsl1yq9kmlyj0jdckpn"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Kinesis Analytics SDK"; license = lib.licenses.mpl20; @@ -30009,16 +31845,17 @@ self: { "amazonka-kinesis-firehose" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-kinesis-firehose"; - version = "1.6.1"; - sha256 = "0bc7d36zs3b0nx2889hpnk45fcrn3dknn2c6gg19wk1k7zz0p8g4"; + version = "2.0"; + sha256 = "1m5za58l7j380z6dz5md3i7lvzhspdcsw8ggwdnf0df4s4kjmzqz"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Kinesis Firehose SDK"; license = lib.licenses.mpl20; @@ -30027,16 +31864,17 @@ self: { "amazonka-kinesis-video" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-kinesis-video"; - version = "1.6.1"; - sha256 = "12v9jqr1x6gkxh7g3rzif24gv6wwh8f5rmf1bz6rbfai4sf75ixv"; + version = "2.0"; + sha256 = "0cjx1vg1ccrchbq21zn7zi4wvpcfk5498fkic3m6ncvflvzff6jl"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Kinesis Video Streams SDK"; license = lib.licenses.mpl20; @@ -30045,16 +31883,17 @@ self: { "amazonka-kinesis-video-archived-media" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-kinesis-video-archived-media"; - version = "1.6.1"; - sha256 = "1qbms2rfgap2pn1ygd6ihjpqqpafhkpwn15z3vl5bslhk6f7bm0j"; + version = "2.0"; + sha256 = "0fci6d1x8qr8gg0qj0wf1a66dvj4p7xhfjb16iy1cs17a49zaqcb"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Kinesis Video Streams Archived Media SDK"; license = lib.licenses.mpl20; @@ -30063,52 +31902,127 @@ self: { "amazonka-kinesis-video-media" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-kinesis-video-media"; - version = "1.6.1"; - sha256 = "1a5mq474g5iy8lp6sfgbr2b20swz6snhbi982zjyhkybvn6lgqh4"; + version = "2.0"; + sha256 = "05d8mxihr6br50jsd4lilda4bm5ql56jsshyn0b5y48fxqx5v53a"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Kinesis Video Streams Media SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-kinesis-video-signaling" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-kinesis-video-signaling"; + version = "2.0"; + sha256 = "0xj25p33m9h06bvr4n6c5nj3lf77q94nj76nj72kniv27akghbln"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Kinesis Video Signaling Channels SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-kinesis-video-webrtc-storage" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-kinesis-video-webrtc-storage"; + version = "2.0"; + sha256 = "0sxb2w02783lpgfs3bp39xqwkas87055rwkzgr0587nk8qr9fa4l"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Kinesis Video WebRTC Storage SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-kinesisanalyticsv2" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-kinesisanalyticsv2"; + version = "2.0"; + sha256 = "0s5y24bxlpi3w432rgymzpb07bkf0h6w3q2aq38bwk1nwaj9kxbi"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Kinesis Analytics SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-kms" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-kms"; - version = "1.6.1"; - sha256 = "11b2jnfdj2z3v65cbwwryr35n9pjf488mrs90j2prx6ijb1kwcvd"; + version = "2.0"; + sha256 = "0xklk7xis0jqbr32byz5jv0gjmspfbs03h7pd96gyn8q8s4anf4z"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Key Management Service SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-lakeformation" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-lakeformation"; + version = "2.0"; + sha256 = "1hhc7s55vd25w2azi83mr99fdldkgxn2559yl0b2nqyiimv3xv8g"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Lake Formation SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-lambda" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-lambda"; - version = "1.6.1"; - sha256 = "18yc1wk7dbyxjdqkdyp1hi45i8vc95imaj0xfr29yq5dbkqmyawp"; + version = "2.0"; + sha256 = "1ddibc2bhrzyx1mj41rmnp4c9gf7rackvgga3246j25dkqdqn7nh"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Lambda SDK"; license = lib.licenses.mpl20; @@ -30117,16 +32031,17 @@ self: { "amazonka-lex-models" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-lex-models"; - version = "1.6.1"; - sha256 = "1dhxanxg748jqz8g6ixdca4jv2hgynpf6w6qdg293429zrj1f2ss"; + version = "2.0"; + sha256 = "016f4pq23q8g2w9hwyf8b45lplxzl449ylm1rfxl9pgx1i1p2l74"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Lex Model Building Service SDK"; license = lib.licenses.mpl20; @@ -30135,70 +32050,308 @@ self: { "amazonka-lex-runtime" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-lex-runtime"; - version = "1.6.1"; - sha256 = "1ampjwlaqczcs2x1sqagn5cm2c6y9bgr2wp62idlnsv5ic5nqky2"; + version = "2.0"; + sha256 = "0zfmhqhgklp950zlqwbi9064hfz5ls66wjfsjf4j588v1rmdpa23"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Lex Runtime Service SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-lexv2-models" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-lexv2-models"; + version = "2.0"; + sha256 = "03sgrsdv9jaiqrnkckcz5538qlkn9xqr0xqh78phj6amfsp5l9j6"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Lex Model Building V2 SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-license-manager" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-license-manager"; + version = "2.0"; + sha256 = "0ln5khvs14wxg6z6km77a1j8qrln8y1yw3syv1dxzdvxvj1z259r"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon License Manager SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-license-manager-linux-subscriptions" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-license-manager-linux-subscriptions"; + version = "2.0"; + sha256 = "0zwz1i594xlams4608az6qwdal1jwhmfyq82y8jgl1wvwni8asvs"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon License Manager Linux Subscriptions SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-license-manager-user-subscriptions" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-license-manager-user-subscriptions"; + version = "2.0"; + sha256 = "0albn38qsn9bwrgzw12naxfrw3an2pj4azfs69zlqbryg6wyhn4n"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon License Manager User Subscriptions SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-lightsail" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-lightsail"; - version = "1.6.1"; - sha256 = "07lknfz41jc4vjd76ql32h6bbbhpb82wafj7w3ifwnxaz2h8wrvw"; + version = "2.0"; + sha256 = "0lx41dmg4hg6p50hvm7ji1f3i9vfsd2a98h0a0v0kx6gp9fy1404"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Lightsail SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-location" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-location"; + version = "2.0"; + sha256 = "0cbjz3wqjjfksmy938zby1nylajq3f1k7xndmjyp1yz10d8hiys6"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Location Service SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-lookoutequipment" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-lookoutequipment"; + version = "2.0"; + sha256 = "0rlchl8vc1k0082h8w76hbis8dkxkqhkxqfjr3ndzdba3h3j8pfk"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Lookout for Equipment SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-lookoutmetrics" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-lookoutmetrics"; + version = "2.0"; + sha256 = "0gr60r1ix2z9c372allxki2n290n7kcw2488l9azlg343rqr58fx"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Lookout for Metrics SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-lookoutvision" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-lookoutvision"; + version = "2.0"; + sha256 = "1ylkwkvrxvnh46dscj31fda40sfm0isf60mh55w16y610lavac9i"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Lookout for Vision SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-m2" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-m2"; + version = "2.0"; + sha256 = "00vhq64l12v1n1063w4drcwskkap53y5180knh2h0gj79c968rsk"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon MainframeModernization SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-macie" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-macie"; + version = "2.0"; + sha256 = "1vylyn951bk03k1n28whha7gp3mbmfam3y65snk0nvlybxhbmsxl"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Macie SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-maciev2" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-maciev2"; + version = "2.0"; + sha256 = "1ym618fifpivnbwv1zznxl3xgi61ssq6hpd1h6sz4bzczik7ybvx"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Macie 2 SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-managedblockchain" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-managedblockchain"; + version = "2.0"; + sha256 = "059m7vvj1h3zaikb11ydcshh9bmib6z4hwppbs4z46hvlml9y24g"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Managed Blockchain SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-marketplace-analytics" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-marketplace-analytics"; - version = "1.6.1"; - sha256 = "0z8kl946ssilj4vb50a5pv21kyfd0fp1bs3l3xyxjc1ynypq5xbg"; + version = "2.0"; + sha256 = "188f4bhbhijm3ha1avs8pikyl624hcyd4iks2smyfrm2hcn1nldh"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Marketplace Commerce Analytics SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-marketplace-catalog" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-marketplace-catalog"; + version = "2.0"; + sha256 = "0vrbk0rjsbrli12jynkraigyc35f9wr2w5bslli8xiqb7j0b7yr8"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Marketplace Catalog Service SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-marketplace-entitlement" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-marketplace-entitlement"; - version = "1.6.1"; - sha256 = "03ik11dkksw1m2jrd12cpgd3gjczcwcbmwl1xg6p9y2f5fyq056i"; + version = "2.0"; + sha256 = "0xhi9gh0cf4gxcd9k13h5nxlxll3hs200lllan23376f53g28j3s"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Marketplace Entitlement Service SDK"; license = lib.licenses.mpl20; @@ -30207,16 +32360,17 @@ self: { "amazonka-marketplace-metering" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-marketplace-metering"; - version = "1.6.1"; - sha256 = "0dshx2nyhsywmx491cvzfcr3dz847q7mjdj9zwli9f6kzgldp2wj"; + version = "2.0"; + sha256 = "1jsnfykpa2n7l6rfp12zdxjcyamdps0xx836ngnn5xrj1wzqsh9j"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Marketplace Metering SDK"; license = lib.licenses.mpl20; @@ -30225,34 +32379,54 @@ self: { "amazonka-mechanicalturk" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-mechanicalturk"; - version = "1.6.1"; - sha256 = "0cap5qkwwzgrkjxqg1rjmx8w9wa74p6h436w427yw53dxi6saxlh"; + version = "2.0"; + sha256 = "02mbpyq5c8qbdznpgz1gd9i6na845ppldizpxlr2cd5iqxc8nc1a"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Mechanical Turk SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-mediaconnect" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-mediaconnect"; + version = "2.0"; + sha256 = "0lxcfys8rncijcdwpj75zwjgid5x284dsm0hp5n2vvcm4dlz0cgz"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon MediaConnect SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-mediaconvert" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-mediaconvert"; - version = "1.6.1"; - sha256 = "0zzdx21mjma5z04a4s6gf5h6wy8vv72a5m71h2hmr5f65asfi8k5"; + version = "2.0"; + sha256 = "0k2ci77r3ynv60s96yjyla4al0vkaxf1byhlxgkwq4admzw17krs"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Elemental MediaConvert SDK"; license = lib.licenses.mpl20; @@ -30261,16 +32435,17 @@ self: { "amazonka-medialive" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-medialive"; - version = "1.6.1"; - sha256 = "0b85pp51xpgl0v83wkym807gfp91qmgq8y0m85ygpyks69gnbs14"; + version = "2.0"; + sha256 = "0a79i51bcsc1b99nswqjhdi6kcxa81xp8rn8xsn2d0zmliv8pcbw"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Elemental MediaLive SDK"; license = lib.licenses.mpl20; @@ -30279,34 +32454,54 @@ self: { "amazonka-mediapackage" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-mediapackage"; - version = "1.6.1"; - sha256 = "08ayhbd8w7aqgw4y89akax24gx90n56d4p8cfm4favga10j46zj3"; + version = "2.0"; + sha256 = "0qyqlw1jww9yzd0a4l91x2qdbfy7m97pn8n4dsxg5mwbicww74m7"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Elemental MediaPackage SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-mediapackage-vod" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-mediapackage-vod"; + version = "2.0"; + sha256 = "0d0wg954pdb62sm5j8j9pypn6nmgs7lp818ymnjd3fh89fql0wq3"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Elemental MediaPackage VOD SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-mediastore" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-mediastore"; - version = "1.6.1"; - sha256 = "1cdns9s4mrnpnziq7b431iwx3swcl55c20a0migf2kzbyzcv9a7z"; + version = "2.0"; + sha256 = "12r10krbj4x8cp4bgjngpwnb4qlq43cf3g0z2zrkn6v660cr7yas"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Elemental MediaStore SDK"; license = lib.licenses.mpl20; @@ -30315,52 +32510,181 @@ self: { "amazonka-mediastore-dataplane" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-mediastore-dataplane"; - version = "1.6.1"; - sha256 = "1sd73z4pqa1x25x3qp64yxz5wljhavbvlrj07g4222bz01p8rb3q"; + version = "2.0"; + sha256 = "0vxcbbqqk6w155i1r0hzxjp90l5kqjcz290qldamapw75y4ypxkf"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Elemental MediaStore Data Plane SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-mediatailor" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-mediatailor"; + version = "2.0"; + sha256 = "0iw75yhz5fl013lqynzhvigzr59k3cw1q6z0p4l8078356dv4v9c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon MediaTailor SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-memorydb" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-memorydb"; + version = "2.0"; + sha256 = "034gjsc8gnwyi80h9w4a24fksb1vy8jh07nqwyjyxpzn69yvv8jv"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon MemoryDB SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-mgn" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-mgn"; + version = "2.0"; + sha256 = "18njvfhb589vkmpbpgi13p7vw808bl8aff55736wj96lx6403c91"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Application Migration Service SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-migration-hub-refactor-spaces" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-migration-hub-refactor-spaces"; + version = "2.0"; + sha256 = "10lhwaf6fr6d505dwa3cm5x3k67bnlfnrrjf11i23p0833fsnj6k"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Migration Hub Refactor Spaces SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-migrationhub" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-migrationhub"; - version = "1.6.1"; - sha256 = "0gwmlr861g6f85wb46708wjvxixq2id6lxdk6vdkv838z1h60gl7"; + version = "2.0"; + sha256 = "1wahzyhvyf2xf3wvwnc8z3wj4b2cl9zv3cigfcqq6q2m8qhd7ph7"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Migration Hub SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-migrationhub-config" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-migrationhub-config"; + version = "2.0"; + sha256 = "1f225q3c1gl0js2lwcqz2i74cp36a24f2qlsabkb3bc5d5p7d3yw"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Migration Hub Config SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-migrationhuborchestrator" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-migrationhuborchestrator"; + version = "2.0"; + sha256 = "1ndhx53nb9jshvlwmj5k7g2gvfvliqz9c6lnj74fsdn8ajg5cgyn"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Migration Hub Orchestrator SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-migrationhubstrategy" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-migrationhubstrategy"; + version = "2.0"; + sha256 = "1iw123rkgn7jhdpmm4cslb619ch0gfbyqnm2va6r181k25f52hsy"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Migration Hub Strategy Recommendations SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-ml" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-ml"; - version = "1.6.1"; - sha256 = "0wmqlx4k17m3zywkj39z3fv6jbmhhz9w7ax1g465gzizcswc1ixq"; + version = "2.0"; + sha256 = "1fs6rzww4c1d3gz2gbxf214i1mbj97irfvxw925pjpxnaclviv6q"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Machine Learning SDK"; license = lib.licenses.mpl20; @@ -30369,16 +32693,17 @@ self: { "amazonka-mobile" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-mobile"; - version = "1.6.1"; - sha256 = "1jx32by2xlkfb57c2d981i4ibsy8a59sgr2xfgsngfjdmpg844lp"; + version = "2.0"; + sha256 = "0zsdlxlrrl5cmmxpvcbkg2izd8m0f213l8fdjbdigfmrppr2kird"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Mobile SDK"; license = lib.licenses.mpl20; @@ -30387,34 +32712,198 @@ self: { "amazonka-mq" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-mq"; - version = "1.6.1"; - sha256 = "0whgnswjvx8a8wj01wd65b41yza3110g1zqwmvs6srjx6zjs3ha0"; + version = "2.0"; + sha256 = "0hlw8x1rqbicv3gkngdv9bh3im2r3rjrwd6p6240x5kaviy00gsi"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon MQ SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-mwaa" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-mwaa"; + version = "2.0"; + sha256 = "02jr13r5plhdxjbv8w1j90brkqxpjwq75s4gpbgyq8v831y9a2fj"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon MWAA SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-neptune" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-neptune"; + version = "2.0"; + sha256 = "14znb9mn4ln9xnsb2s1qf2361gm2jxxj30i1p9qjxv0bm3r9g02q"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Neptune SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-network-firewall" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-network-firewall"; + version = "2.0"; + sha256 = "03vn5rgp0pzjj3f7jydkpn7fdbhbfk6hci1kg5ljbyg9q5zs2qj1"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Network Firewall SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-networkmanager" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-networkmanager"; + version = "2.0"; + sha256 = "1n05xp135xxkbjd0c7rcm1xj47lvdbd7cpclkv6hifxlldqr7hwg"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Network Manager SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-nimble" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-nimble"; + version = "2.0"; + sha256 = "1vjkypkjhf40xk00smjrzqpg333cpgq8jyri66z9s7604vhcsiff"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon NimbleStudio SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-oam" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-oam"; + version = "2.0"; + sha256 = "0xhkgf513rk1zw4dvmr85xaa27d4ybvpbbbpq8j44y55d3jw2r20"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon CloudWatch Observability Access Manager SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-omics" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-omics"; + version = "2.0"; + sha256 = "1y7xnzg81s941zmvf2vadd9iss0wkxsrk426n8m7gazgz340nqan"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Omics SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-opensearch" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-opensearch"; + version = "2.0"; + sha256 = "14hgcp7wxnk8xp3xapsmkxdr2lni37ls4wg88larbkzx8kr10la6"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon OpenSearch Service SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-opensearchserverless" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-opensearchserverless"; + version = "2.0"; + sha256 = "1phydxi9sqylmqnxv4shy556x959na84yyf9i7k3aknjd9p41gvr"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon OpenSearch Service Serverless SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-opsworks" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-opsworks"; - version = "1.6.1"; - sha256 = "15magxqrylyxdkqa5xyihq00nfh4pv0g7wl6gp9smvg5svq1c5qa"; + version = "2.0"; + sha256 = "0rk6jwcpaqnnz812hxiqwh7d0c7qc1115vsljdhh08id21rvc76y"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon OpsWorks SDK"; license = lib.licenses.mpl20; @@ -30423,70 +32912,254 @@ self: { "amazonka-opsworks-cm" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-opsworks-cm"; - version = "1.6.1"; - sha256 = "0mya7swx8x4p7wz17p62jn8ixw4xi72w6691r4ay5gphl81pi1ai"; + version = "2.0"; + sha256 = "1cnh2mjl3n2wgdq2rykc7ya0m4x3rvc3xaxbp3hm68xmryb185r8"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; - description = "Amazon OpsWorks for Chef Automate SDK"; + description = "Amazon OpsWorks CM SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; "amazonka-organizations" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-organizations"; - version = "1.6.1"; - sha256 = "1yx7hfnl6nnhdx3ryjvg8vkyj053m2a6zds61vrnl2kc0n890bcs"; + version = "2.0"; + sha256 = "1q0y81cp5xn87yw1dj15nqbmvfzvv8sjzsllr73h4cplcqx47rfm"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Organizations SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-outposts" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-outposts"; + version = "2.0"; + sha256 = "0pd6r5xpa5dxp47nhxsn2v9sx47xnm9z9961qqlm4a9m7zmlc5ff"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Outposts SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-panorama" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-panorama"; + version = "2.0"; + sha256 = "11jii4fq77slfy7x00gg0l7fn925rfmp8yzqy4jjl7pmh8s1gbm0"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Panorama SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-personalize" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-personalize"; + version = "2.0"; + sha256 = "1l6h1273pgwk0jdqd910wqqjv9inm278klhagihfywi31jm8lrnj"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Personalize SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-personalize-events" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-personalize-events"; + version = "2.0"; + sha256 = "17nrk0j4xml8wsd332yqa3mw6kyrd2wax3vhsvz6akmsz3mqymcn"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Personalize Events SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-personalize-runtime" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-personalize-runtime"; + version = "2.0"; + sha256 = "0xrpf2lqvjdqqfgl160dhd6gpq07815jl0nymz2x6wyrj19bm9ah"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Personalize Runtime SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-pi" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-pi"; + version = "2.0"; + sha256 = "1mpqj1mwp63ifyk260lscg3rffilmlya4yk3rjsc3fb7wv5qvklm"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Performance Insights SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-pinpoint" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-pinpoint"; - version = "1.6.1"; - sha256 = "11zw2xkn39c75frqpm67x2qpb63xzl25633ny0b3rbdpak8w4f5a"; + version = "2.0"; + sha256 = "09iwgl9wb40jv35djxxgn1d3k6r1gw0k2ra875f9zgqj0vay5b0w"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Pinpoint SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-pinpoint-email" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-pinpoint-email"; + version = "2.0"; + sha256 = "1b56zm0wss0da7mnd8bidgcl1w4pdrzmdsdwqcf8b8kjnqwvsql4"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Pinpoint Email Service SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-pinpoint-sms-voice" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-pinpoint-sms-voice"; + version = "2.0"; + sha256 = "16qb4jkpicpb9rf4a2k0zxrlapxficir36i8mpp544xhnz2mdf5z"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Pinpoint SMS and Voice Service SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-pinpoint-sms-voice-v2" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-pinpoint-sms-voice-v2"; + version = "2.0"; + sha256 = "00rjz3lxc63xxarkjxz4gbmb49xr23jqnn7i3n45fl4w3w8dxqvn"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Pinpoint SMS Voice V2 SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-pipes" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-pipes"; + version = "2.0"; + sha256 = "1hq2g003jsgydi4ak8m8brdgji2d0kar9glanyag52hgya0cdwf0"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon EventBridge Pipes SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-polly" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-polly"; - version = "1.6.1"; - sha256 = "1vyckykw1in9qlz824k4zmn9xixlf2ak479vfcb1p872ri2pb25h"; + version = "2.0"; + sha256 = "066hzqm18cjm0jv268zsgfgj71wc065slilb83vin1w1wymdbpnh"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Polly SDK"; license = lib.licenses.mpl20; @@ -30495,88 +33168,309 @@ self: { "amazonka-pricing" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-pricing"; - version = "1.6.1"; - sha256 = "1mh04sali41d8zchd8ibcvzv9vnfdlcwzz6p3n72wmczqaz2ps8v"; + version = "2.0"; + sha256 = "0sa2z8m09jrhnlq1ns60x1g0anqdfg4kffgiz8928dda97icix4i"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Price List Service SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-privatenetworks" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-privatenetworks"; + version = "2.0"; + sha256 = "028y9cs8rgmyg16lvfsnzy2lzlf89wm7jf36ipyvi5gjcrpz6yl1"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Private 5G SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-proton" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-proton"; + version = "2.0"; + sha256 = "1sb8b61ck7c3pdw78vc69yqyavxfqdqcdbngi8g2w9ynj312wqgv"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Proton SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-qldb" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-qldb"; + version = "2.0"; + sha256 = "0yw300mj7h0bgk18qwjqbnvc0ffdi2jllqxsikn346c1c2xbkvcc"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon QLDB SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-qldb-session" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-qldb-session"; + version = "2.0"; + sha256 = "0hsbbd19z1zm89zqgz37m86mcmadjki9ah7z82wjjzd6ndckxf5g"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon QLDB Session SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-quicksight" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-quicksight"; + version = "2.0"; + sha256 = "1iq02m726lrymnga5j03fvx4jx0a18w19vy9wnpdaxb669s12y7n"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon QuickSight SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-ram" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-ram"; + version = "2.0"; + sha256 = "0zlyh5qzjx2nbfkli9qsy4j5fc1lal78swa595dsmbif6jn63zbz"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Resource Access Manager SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-rbin" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-rbin"; + version = "2.0"; + sha256 = "1l8rsbw9j1i7xbav207ys616qyfkq25rc69f3j8kr9hifmjlx34b"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Recycle Bin SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-rds" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-rds"; - version = "1.6.1"; - sha256 = "08cl73fczrf94k5z92w2cpf3ngrcqhb6xiygbh3vv4wh6l541lpw"; + version = "2.0"; + sha256 = "02bw1qg0h6xcgp09f72xvc4kls6hl4qirz7sbs90p4vlmq4jsmz9"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Relational Database Service SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-rds-data" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-rds-data"; + version = "2.0"; + sha256 = "1bzz40i00cg2yyj9iqhxw9rnq243dcs65m4xx3zlcjwdg55lzbla"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon RDS DataService SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-redshift" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-redshift"; - version = "1.6.1"; - sha256 = "051281bgr65xsyac3vy1zbjs3v3avw4f2wk1743cqdjnarg8bsl7"; + version = "2.0"; + sha256 = "1prq0mh73lzvaq4np7r3h7qw8pgf3nszvqvk9bzcdkccc4iy1j26"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Redshift SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-redshift-data" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-redshift-data"; + version = "2.0"; + sha256 = "0d1vmlk15j1rxhqr3h86admm6y351p862jpyd1wb1lws4rlk0nf6"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Redshift Data API Service SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-redshift-serverless" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-redshift-serverless"; + version = "2.0"; + sha256 = "0glv2yjibpzqmags776g79lcn9wvwcs7nzxl1hp80gjcwlm7g3sr"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Redshift Serverless SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-rekognition" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-rekognition"; - version = "1.6.1"; - sha256 = "1y7qm7k9y9w0lm09qpzi5p1jld3i78x0pr446q37li15m3pgn81y"; + version = "2.0"; + sha256 = "0z83n96pyx4fyh142zm0djjppiih2wf07l2x22c3gv6i4zk3m4ch"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Rekognition SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-resiliencehub" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-resiliencehub"; + version = "2.0"; + sha256 = "11r66h0lww1bqpnav1r9cz9zbsymggky8ck13nijq84dg2j0bgip"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Resilience Hub SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-resource-explorer-v2" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-resource-explorer-v2"; + version = "2.0"; + sha256 = "0z4vlvd2fxj0l26i76m8zim5j5gilsir6r7d58387ishxhfxn8wb"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Resource Explorer SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-resourcegroups" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-resourcegroups"; - version = "1.6.1"; - sha256 = "0nyac5hyv97b0djhn7z7rjdi2gf7na66grccl040770mxkb77q0k"; + version = "2.0"; + sha256 = "0fbfcs3aaizgw9564chvnxnvh57k8chdzq21ml2f4m46f2c64isj"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Resource Groups SDK"; license = lib.licenses.mpl20; @@ -30585,34 +33479,72 @@ self: { "amazonka-resourcegroupstagging" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-resourcegroupstagging"; - version = "1.6.1"; - sha256 = "0dsghbhwxjq46bghgl1gnwdxcqbc5v3q9pfhap0asj9qjxq8hrwp"; + version = "2.0"; + sha256 = "0m5wi3alfd21jc53ndn97riys39yn1pyxljlq2c32slv90q9a1bi"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Resource Groups Tagging API SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-robomaker" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-robomaker"; + version = "2.0"; + sha256 = "0ykip8v9lkzg56rnsmx4jq832d82m8ylpb6vl5nr2al7dz0xmli3"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon RoboMaker SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-rolesanywhere" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-rolesanywhere"; + version = "2.0"; + sha256 = "16kqsyx0a8rwb5153c6h4i7m5207vkl78bh0r88g49qgh2xbjkjv"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon IAM Roles Anywhere SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-route53" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-route53"; - version = "1.6.1"; - sha256 = "0wspqzdz0i07b4jg80w9vbzmd12pzv7l5dpjnhk2mvbdbgd44r3w"; + version = "2.0"; + sha256 = "04h4rwfxv0br8i28b9n3q3rzbgr575diadvqqjv9141824xn6yfz"; libraryHaskellDepends = [ amazonka-core base text ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Route 53 SDK"; license = lib.licenses.mpl20; @@ -30621,58 +33553,176 @@ self: { "amazonka-route53-autonaming" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-route53-autonaming"; - version = "1.6.1"; - sha256 = "09cch0ks8gxb08cjilmcyj3phpvikl31bi1ygz73xddaba6ppr9c"; + version = "2.0"; + sha256 = "0wzcxi3w4ipscsqv4qmjh72nfkbza1izym3aysy1pradhjb1hdml"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; - description = "Amazon Route 53 Auto Naming SDK"; + description = "Amazon Cloud Map SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; "amazonka-route53-domains" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-route53-domains"; - version = "1.6.1"; - sha256 = "1s529dzwf92scjwbvyvrcfcs9ma1yvcgrwla79fj74f38mscsarc"; + version = "2.0"; + sha256 = "1cjz4fyncdvk1w25lp1sc4d5npd4mk2z411lpk8h8aa5lv38af4b"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Route 53 Domains SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-route53-recovery-cluster" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-route53-recovery-cluster"; + version = "2.0"; + sha256 = "05ir57rm7js42zjwimq79vhg4fbmiinplpql8brn2jszl9bsl7vm"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Route53 Recovery Cluster SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-route53-recovery-control-config" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-route53-recovery-control-config"; + version = "2.0"; + sha256 = "19bfykab16789mpcigk7mcjhn654b9mmri4649x533yl6532278b"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Route53 Recovery Control Config SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-route53-recovery-readiness" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-route53-recovery-readiness"; + version = "2.0"; + sha256 = "0x5nlylc6rlp4c6d1l18nhdw91h78cxrs6h6nzg89jf7i095gmbj"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Route53 Recovery Readiness SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-route53resolver" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-route53resolver"; + version = "2.0"; + sha256 = "00wilssrk2gfqxr1f8afw9jj7f68ssq186q402bqwqb02ynig76x"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Route 53 Resolver SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-rum" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-rum"; + version = "2.0"; + sha256 = "0qwp2fynaf27p7zj1b9npbg7x6c3m2pnkan9sdi4m4agp0pa649y"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon CloudWatch RUM SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-s3" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , lens, tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, lens, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-s3"; - version = "1.6.1"; - sha256 = "0a3y2q3xmb249giwjvsgva26ky315bnsii6s9gqvhd5g9q9b1827"; + version = "2.0"; + sha256 = "1iyrbh5j8yk3z2p55qgvicgi59lfvvn0yh3i2mccr8rfi9spkmjs"; libraryHaskellDepends = [ amazonka-core base lens text ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Simple Storage Service SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-s3-encryption" = callPackage + ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-kms + , amazonka-s3, amazonka-test, base, bytestring, case-insensitive + , conduit, crypton, http-client, lens, memory, mtl, QuickCheck + , quickcheck-instances, resourcet, tasty, tasty-hunit + , tasty-quickcheck, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-s3-encryption"; + version = "2.0"; + sha256 = "1cxv36nkaqp30dm89f9bfqmh7dh0nyw4i4n0apdj7p3gckhl3jb9"; + libraryHaskellDepends = [ + aeson amazonka amazonka-core amazonka-kms amazonka-s3 base + bytestring case-insensitive conduit crypton http-client lens memory + mtl text unordered-containers + ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring conduit crypton mtl + QuickCheck quickcheck-instances resourcet tasty tasty-hunit + tasty-quickcheck text time unordered-containers + ]; + description = "Amazon Simple Storage Service SDK - Client-Side Encryption"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-s3-streaming" = callPackage ({ mkDerivation, amazonka, amazonka-core, amazonka-s3, async, base , bytestring, conduit, dlist, exceptions, http-client, lens, mmorph @@ -30693,54 +33743,219 @@ self: { hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-s3outposts" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-s3outposts"; + version = "2.0"; + sha256 = "05wx2kb7w3ikdm4862izjg9h0mmi2f5fkx7ljbacljxwdmkmbd1m"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon S3 on Outposts SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-sagemaker" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-sagemaker"; - version = "1.6.1"; - sha256 = "0sxs1gan775gny8gq00vw30jqrn9rv46rqq0jglna7z1fadp0fyz"; + version = "2.0"; + sha256 = "0qaz8vmncvvl3kq3v8i70cgf4ryq7sc3phyrdn1igf0rva9wkpjg"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon SageMaker Service SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-sagemaker-a2i-runtime" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-sagemaker-a2i-runtime"; + version = "2.0"; + sha256 = "0fw6fi53sg7mjbzmc2s9s8znvb484ycdbbbw5l45gcb0n8k1jp9m"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Augmented AI Runtime SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-sagemaker-edge" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-sagemaker-edge"; + version = "2.0"; + sha256 = "1ffrs0bbi600wqykd67kd5xxdqf2cq6wi8nsf1kfqwyqsfzi6189"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Sagemaker Edge Manager SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-sagemaker-featurestore-runtime" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-sagemaker-featurestore-runtime"; + version = "2.0"; + sha256 = "0mcgbyvi8kr1yv1x1rgpmwq772p24yi8hc2x2ja7lwnfl6pfr49g"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon SageMaker Feature Store Runtime SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-sagemaker-geospatial" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-sagemaker-geospatial"; + version = "2.0"; + sha256 = "0g09ip095m2ngr1cwry84zls966dvggsz28msxlzi777hjgf47zq"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon SageMaker geospatial capabilities SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-sagemaker-metrics" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-sagemaker-metrics"; + version = "2.0"; + sha256 = "0yysfk8y3isk2mcddnzk0r8bss6sqjrjrgjcy591177z0wjqdx6h"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon SageMaker Metrics Service SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-sagemaker-runtime" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-sagemaker-runtime"; - version = "1.6.1"; - sha256 = "0iilc70i0lz3qrdklw2909v4yzwvcsazn0px5570p7qsp67imb79"; + version = "2.0"; + sha256 = "0q5hl25sxby785dcailgmlxzzy9517qz9a87ahvgakpc1casrsyy"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon SageMaker Runtime SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-savingsplans" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-savingsplans"; + version = "2.0"; + sha256 = "0i6969lyfd40dnrjh2fap5yw8m8y9cvxx7f71skpwvw17d9gdvlx"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Savings Plans SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-scheduler" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-scheduler"; + version = "2.0"; + sha256 = "0j9y4gy214df0qv05vmpxgh73adqpcvqzxciazmrvzr85kc9vf3g"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon EventBridge Scheduler SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-schemas" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-schemas"; + version = "2.0"; + sha256 = "0fpmbc9h8x2imqj2mb503y4h4ndnw4gbajiwmw7d4bxn2wmvfh74"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Schemas SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-sdb" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-sdb"; - version = "1.6.1"; - sha256 = "0yiap66yqkr453dgkn9q74xmc1g6afqj6ghnhp795lf35igmid2k"; + version = "2.0"; + sha256 = "0qp6kwllm86hf1l78mmzbrrpw47sk6bs0845xdmcx27i08jjjhyq"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon SimpleDB SDK"; license = lib.licenses.mpl20; @@ -30749,124 +33964,293 @@ self: { "amazonka-secretsmanager" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-secretsmanager"; - version = "1.6.1"; - sha256 = "0zr3nlzxjb1nhwipk67nirh0pnjfchirn677mr12109xx7qcfa8l"; + version = "2.0"; + sha256 = "1wndb54k81qw3q2077fkjwyclh9adrbkhl0nh72ybyb7ws7mlygh"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Secrets Manager SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-securityhub" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-securityhub"; + version = "2.0"; + sha256 = "1pffrv28fk31dzz7a2rqibvs8vpjpax80nk2512xasyg72xvig5q"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon SecurityHub SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-securitylake" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-securitylake"; + version = "2.0"; + sha256 = "0iy0fj926q7imnzxgzwfynwrbijm4zdxvkibcwbi6q6x132208fn"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Security Lake SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-serverlessrepo" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-serverlessrepo"; - version = "1.6.1"; - sha256 = "13sc48wbsrkypvqxlrldbglziv1biaqqj4df49x1jlplypbl53vp"; + version = "2.0"; + sha256 = "1dnfy4b4xmz9gr04hlr2pdx72j7dv49jran80fsg5qz60shffqrj"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon ServerlessApplicationRepository SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-service-quotas" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-service-quotas"; + version = "2.0"; + sha256 = "19rfl0gfvbkfh46k9vrx87xala4mjjfnaf4ixwxaabhgnsrz4ssl"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Quotas SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-servicecatalog" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-servicecatalog"; - version = "1.6.1"; - sha256 = "0jzm0xsn52qh9ihjn73wgnkil6gnrxvp97x7d881nzyvg5yavmml"; + version = "2.0"; + sha256 = "1ivvn19hvgv1k1nll81y6svfmyi7q54mhprdy3x1yszsjpgyvqqd"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Service Catalog SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-servicecatalog-appregistry" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-servicecatalog-appregistry"; + version = "2.0"; + sha256 = "05ac16apjk1rk60sxnj6f18g3mgjxp3m2sz7w2w9g0df83sqdf16"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Service Catalog App Registry SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-ses" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-ses"; - version = "1.6.1"; - sha256 = "1s7c2jvg8y2vi7lzy3wgp352xnf0bfnc36l6g771279l61nmfk05"; + version = "2.0"; + sha256 = "0pziw21bmsjfj0qn5xrwvyi8jk0z93qmyg81awaic4wanhyij5xx"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Simple Email Service SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-sesv2" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-sesv2"; + version = "2.0"; + sha256 = "11li9frp2pxwh7hlcdb29l8d2vx4522jrd2rns8ca3bf39pq421q"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Simple Email Service SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-shield" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-shield"; - version = "1.6.1"; - sha256 = "06bml09gg5pq8vsj145jwbqpmbx6n07yx0ds030yhmahxyl732hv"; + version = "2.0"; + sha256 = "0vpx0inr71wwi4i2dd92r1ba7x6bnssqar3g610mmjw5cxgfnsjr"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Shield SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-signer" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-signer"; + version = "2.0"; + sha256 = "0ga5ncb8mwfcgskvvqwrli6bhmjgmc1i4n6fvrkmgzfb5vk9g24g"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Signer SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-simspaceweaver" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-simspaceweaver"; + version = "2.0"; + sha256 = "013xd9qr3a8j16a0zzqhydj3yvcd6g1hyrq69llr0iichjyjpbij"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon SimSpace Weaver SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-sms" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-sms"; - version = "1.6.1"; - sha256 = "11ab1f09l7p33mvbgrxl5j09z6higs37a5v9d07hh94lvr5l7syn"; + version = "2.0"; + sha256 = "1pvmnv3bsbhbndmqk9wq1c1n66ysdnbclfshs2dyrph8p12nndgp"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Server Migration Service SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-sms-voice" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-sms-voice"; + version = "2.0"; + sha256 = "1vvp27qm1jb3wm8nh4jzcgjjlcqv6j49jjlp1grwfxnc3f7j17sg"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Pinpoint SMS and Voice Service SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-snow-device-management" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-snow-device-management"; + version = "2.0"; + sha256 = "0jiv8rnrn3mc8rknig71hw2pcqdzyzrs5nhdnj5y6zdn0yv2zx0d"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Snow Device Management SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-snowball" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-snowball"; - version = "1.6.1"; - sha256 = "1lvw8ym5xlxjiyflg1xr2cqcvf4flamwpd6pgqzbnwzdkyv1zha8"; + version = "2.0"; + sha256 = "0851jxkysdjyam3mwllhzjfgwkwndflfq0v4bmnr5pgl2x2yih6c"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Import/Export Snowball SDK"; license = lib.licenses.mpl20; @@ -30875,16 +34259,17 @@ self: { "amazonka-sns" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-sns"; - version = "1.6.1"; - sha256 = "0dg72gkb3graaq2bh0dbpd4mx8scmx6zrk9q77rwzpxd80yab66v"; + version = "2.0"; + sha256 = "0vpk2z8rmkpbm3lg27mnqiffhspbx0zwixplwbgl73imigjzgc6p"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Simple Notification Service SDK"; license = lib.licenses.mpl20; @@ -30893,16 +34278,17 @@ self: { "amazonka-sqs" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-sqs"; - version = "1.6.1"; - sha256 = "1m2313w5z0mdzhqdx7qkd6k9k5bxbb4dalg37v9jmbsidza7s1pf"; + version = "2.0"; + sha256 = "0w8psnfqv78kazjyw06wdsmm6hlfy01wa2pimc4yiwczy7h4js31"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Simple Queue Service SDK"; license = lib.licenses.mpl20; @@ -30911,34 +34297,144 @@ self: { "amazonka-ssm" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-ssm"; - version = "1.6.1"; - sha256 = "1bxh7hqsm2jfxza4dr2cami39sc2wzkck4yzqp7pk3ds3xggybcm"; + version = "2.0"; + sha256 = "0hzay415v1xlcvjmgwya431bi1y4i3kq41szp40nm7ahxcmgylxn"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Simple Systems Manager (SSM) SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-ssm-contacts" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-ssm-contacts"; + version = "2.0"; + sha256 = "14m08gp8c1zif9brdi4cip4lw4p3hi3ck7ddpffv1ixfmdxwg1fn"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Systems Manager Incident Manager Contacts SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-ssm-incidents" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-ssm-incidents"; + version = "2.0"; + sha256 = "0c98w5r4r3kwsg03gf2q3hg5izc4b3rkazsc79p8r8kf5i5z2qik"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Systems Manager Incident Manager SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-ssm-sap" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-ssm-sap"; + version = "2.0"; + sha256 = "1f832y679fnaq5gx1fcfrf5smxdir0qvjg4k48j5kfc8hbbzfv0x"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Systems Manager for SAP SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-sso" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-sso"; + version = "2.0"; + sha256 = "0x4g24vr92rqk55vf2v3dwka94p949cvryl1hy3lxcvpqk52v0bi"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Single Sign-On SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-sso-admin" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-sso-admin"; + version = "2.0"; + sha256 = "0cn4ksyd8slvb8p7y7bg1f39wij690grnblkfyabw0m9w1s6nwi6"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Single Sign-On Admin SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-sso-oidc" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-sso-oidc"; + version = "2.0"; + sha256 = "1q44fb70r5m68dpwkj8r1jza05kpy97bvn0s20xnhfi8drfsifsl"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon SSO OIDC SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-stepfunctions" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-stepfunctions"; - version = "1.6.1"; - sha256 = "04yhgmbj129kaj6dxl6ck9clai551j5kmfnwck6nbfpq3mi7dbv0"; + version = "2.0"; + sha256 = "11ny95ki54sz8id3xck8r6x1ik2b2kwvz7mi5yhm4g1nhkpcacmc"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Step Functions SDK"; license = lib.licenses.mpl20; @@ -30947,16 +34443,17 @@ self: { "amazonka-storagegateway" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-storagegateway"; - version = "1.6.1"; - sha256 = "0gvyh6qjfcr3ndv17rcjxnsa13dghwdd420cnc8xsafq54qbah8h"; + version = "2.0"; + sha256 = "184pm7d4hyb7lic1hhlr7m428whp0nvsmp2a6k445wswrmlg49b7"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Storage Gateway SDK"; license = lib.licenses.mpl20; @@ -30965,16 +34462,17 @@ self: { "amazonka-sts" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-sts"; - version = "1.6.1"; - sha256 = "1fcg3hg88427h9fgqpxwa599gh19i1lc2wfjlf554cg92jxn88zf"; + version = "2.0"; + sha256 = "1bhky6ajxyykz983wi22g0j3pj4xbwiqkjgw6z8hh2pdsgisg6cx"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Security Token Service SDK"; license = lib.licenses.mpl20; @@ -30983,40 +34481,78 @@ self: { "amazonka-support" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-support"; - version = "1.6.1"; - sha256 = "1fhrqwbv84np82nddkxxp7bkws2830yb3pz52nwng800vpahsbas"; + version = "2.0"; + sha256 = "1hacdj5xxp58zmldj1pwn7dbgxadsg98x9gd6kxz3p9hdckrmfqw"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Support SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-support-app" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-support-app"; + version = "2.0"; + sha256 = "18sszvq0vyfwk0fasfi4f9cvgiypjvy7ig0z5i7s1scvv5n12vgy"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Support App SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-swf" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-swf"; - version = "1.6.1"; - sha256 = "0jklp28c7kanlkl6mciam2gj6b6w25fs7aidf83ndr3z9xqfd73v"; + version = "2.0"; + sha256 = "1fn159acy0xvy4al5xx73lyb4wjkvr4vsn9hbj0dd0xiblwwd2i3"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Simple Workflow Service SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-synthetics" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-synthetics"; + version = "2.0"; + sha256 = "1l2pf38xhmn2gp80ldj8bqr4szm411am5dj3cf0i2szw4r4xg2v0"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Synthetics SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-test" = callPackage ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring , case-insensitive, conduit, conduit-extra, groom, http-client @@ -31026,8 +34562,8 @@ self: { }: mkDerivation { pname = "amazonka-test"; - version = "1.6.1"; - sha256 = "1a92y92gwn4143z73fwrm03vi5wdxgl2i1myvb8qsk9c621xa7km"; + version = "2.0"; + sha256 = "1vd9izjrwskgxhir5mbzk3ryzs37ba84ahj1xa8kwc3ix85c0xkv"; libraryHaskellDepends = [ aeson amazonka-core base bifunctors bytestring case-insensitive conduit conduit-extra groom http-client http-types process @@ -31039,54 +34575,147 @@ self: { hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-textract" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-textract"; + version = "2.0"; + sha256 = "1n8dqwk92fs16hn80n34vp22wrs8kv89awy7hlf8z1b9ymgrl71y"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Textract SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-timestream-query" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-timestream-query"; + version = "2.0"; + sha256 = "0acq22hwn7zmcfq6rh2y0fxn25adg9sn4nq6shj0vf15fdm2vwja"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Timestream Query SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-timestream-write" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-timestream-write"; + version = "2.0"; + sha256 = "0hqyyxzgsg57l8wf2vyp5s8lrhjv4003vwd4jsin0gy95pjc398n"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Timestream Write SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-transcribe" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-transcribe"; - version = "1.6.1"; - sha256 = "1pkbmir7fqci7nlz9ca5rbd0yx75kj9pa665k928ll1m34fng5iv"; + version = "2.0"; + sha256 = "1kjnpqr36hv446aa7mvjx795zz4skx5zk759lhfj300cla2n9s6w"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Transcribe Service SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-transfer" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-transfer"; + version = "2.0"; + sha256 = "154zjxmj2l5za6wy48a4zq6ij3gldbw333hdvxyqqpwqzfybai2y"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Transfer Family SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-translate" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-translate"; - version = "1.6.1"; - sha256 = "09rk9223yyi2anzxifcmm4qmxpd1ljg1q644jv1accrpgn1k1h89"; + version = "2.0"; + sha256 = "0k2m54bn35xfi7m91k65afzfw2166rklmlgm67zcg5kaygz2i9w6"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon Translate SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-voice-id" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-voice-id"; + version = "2.0"; + sha256 = "0v9qrgarrvi0zjsk7d80kididg96svd4j9bfyid1wc82bg7jgd0z"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Voice ID SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-waf" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-waf"; - version = "1.6.1"; - sha256 = "0sjian917kc7vzq34sbd4cifx5qwf9lkkrvhbsl1z2aqv0bzbhj5"; + version = "2.0"; + sha256 = "09439v5q6493nqa25dz8s2syvrm0qpxi8b7yxj24mb6kkppvl62k"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon WAF SDK"; license = lib.licenses.mpl20; @@ -31095,88 +34724,201 @@ self: { "amazonka-waf-regional" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-waf-regional"; - version = "1.6.1"; - sha256 = "1g57aa4zba01iq14njm529k9743lyx7n4v1ilg11qyycbihh2vgp"; + version = "2.0"; + sha256 = "0rbchz42g5mqy9i2w58galylp2ma4yqd7dk2c2ww2wy9q747fsbg"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon WAF Regional SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-wafv2" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-wafv2"; + version = "2.0"; + sha256 = "0i5w9pb2anqlp79zr43cp7v4lqjd2qvxfhswa4zv82l2sjr151nj"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon WAFV2 SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-wellarchitected" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-wellarchitected"; + version = "2.0"; + sha256 = "03696yd3w42cjdwphgxpl2ai5kn5gz3rm563h37jybk6pv4zii7j"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Well-Architected Tool SDK"; + license = lib.licenses.mpl20; + }) {}; + + "amazonka-wisdom" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-wisdom"; + version = "2.0"; + sha256 = "0cf2ynan4ws42acjlj56n8dd38n9kvvp4z41n07cjs50744mj56b"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon Connect Wisdom Service SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-workdocs" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-workdocs"; - version = "1.6.1"; - sha256 = "1gahyswzfimm5kcsp6npnla48cmrihw6pxy66bql6zy60apy26h1"; + version = "2.0"; + sha256 = "1p21x9v2fkip1gbmq39cwp7y5cpvi60gadls35g01rv775la8vh3"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon WorkDocs SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-worklink" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-worklink"; + version = "2.0"; + sha256 = "1k1bbmzxf4gfsaqc7fcvr2gb8hnmgw2cnpqvfnvppsczy65xs397"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon WorkLink SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-workmail" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-workmail"; - version = "1.6.1"; - sha256 = "1vb4p6l4jv6f5xrd7plxxqjpj9vsdqh83sdywr41p3ggynwg2vip"; + version = "2.0"; + sha256 = "0ndc34s6lpk5xmrc3miaa5y09sg9v6k200h22mzixcy3zsbf5ljm"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon WorkMail SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-workmailmessageflow" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-workmailmessageflow"; + version = "2.0"; + sha256 = "0yqqs52cswxx7q3jxqdlnzg10h3jh262ajwp4b7s9xj3xb8jc6pw"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon WorkMail Message Flow SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-workspaces" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-workspaces"; - version = "1.6.1"; - sha256 = "1grpbka4baw81qz4sds52ag4nj4ial6kbjii11yrkyc6i9dki2g5"; + version = "2.0"; + sha256 = "14acs6jg1i8a1kl2flssr2dz7a9hgwf656wkag82il3jshh4gw3a"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon WorkSpaces SDK"; license = lib.licenses.mpl20; hydraPlatforms = lib.platforms.none; }) {}; + "amazonka-workspaces-web" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers + }: + mkDerivation { + pname = "amazonka-workspaces-web"; + version = "2.0"; + sha256 = "17z2s2i7mq96hfdhz7cscayfijl4dj8ldx8h6yr08s2jfydd21p9"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers + ]; + description = "Amazon WorkSpaces Web SDK"; + license = lib.licenses.mpl20; + }) {}; + "amazonka-xray" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring - , tasty, tasty-hunit, text, time, unordered-containers + , case-insensitive, tasty, tasty-hunit, text, time + , unordered-containers }: mkDerivation { pname = "amazonka-xray"; - version = "1.6.1"; - sha256 = "03fhlls2n1cih0z4fcs1bcsr1d97qnllcknq90dqmmr9fmmg131l"; + version = "2.0"; + sha256 = "1dcxfv7bvznq31alyzlbfym5jynp6y008lv95xg6687d1jydxhq4"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ - amazonka-core amazonka-test base bytestring tasty tasty-hunit text - time unordered-containers + amazonka-core amazonka-test base bytestring case-insensitive tasty + tasty-hunit text time unordered-containers ]; description = "Amazon X-Ray SDK"; license = lib.licenses.mpl20; @@ -32602,6 +36344,23 @@ self: { mainProgram = "antlrcmkenums"; }) {antlr3c = null;}; + "any-pat" = callPackage + ({ mkDerivation, base, haskell-src-exts, haskell-src-meta, hspec + , hspec-discover, parsec, QuickCheck, template-haskell + }: + mkDerivation { + pname = "any-pat"; + version = "0.2.0.0"; + sha256 = "1h6fxbyzfbx936br0795jbs25ci0bjbik5dgdgw40rs7y2mavxkm"; + libraryHaskellDepends = [ + base haskell-src-exts haskell-src-meta template-haskell + ]; + testHaskellDepends = [ base hspec parsec QuickCheck ]; + testToolDepends = [ hspec-discover ]; + description = "Quasiquoters that act on a sequence of patterns and compiles these view into patterns and expressions"; + license = lib.licenses.bsd3; + }) {}; + "anydbm" = callPackage ({ mkDerivation, base, containers, MissingH, mtl }: mkDerivation { @@ -33945,8 +37704,8 @@ self: { pname = "approximate"; version = "0.3.5"; sha256 = "1f168ac9xryrv50k7gvh89xv0mj6c42cxw7pj01pqcbppbs0rm3g"; - revision = "2"; - editedCabalFile = "1yak9kv090502q8kqszmrjdp13dd737klppp78983yipd9k2h5gv"; + revision = "3"; + editedCabalFile = "10y11nm6rfh5s6vzw0z7zn29gv6z6ll8q7gmw30yc1xxmy78rxqj"; libraryHaskellDepends = [ base binary bytes cereal comonad deepseq ghc-prim hashable lens log-domain pointed safecopy semigroupoids semigroups vector @@ -34198,8 +37957,8 @@ self: { }: mkDerivation { pname = "arbtt"; - version = "0.12.0.1"; - sha256 = "1a2gabg8v28jcl1nddj4pfmpwc57g68i0qnnx3p26k3psrkmy6xq"; + version = "0.12.0.2"; + sha256 = "022jb9bi9jxqiv3f2cfkpi1m6zwp719x9xnq2xnhy2hysz3x1ss6"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -34736,8 +38495,8 @@ self: { }: mkDerivation { pname = "arion-compose"; - version = "0.2.0.0"; - sha256 = "051lbklcdj7rz9l5mnbijwjy62g0xnvx7s3yjfrb4x9qm3jpscci"; + version = "0.2.1.0"; + sha256 = "188nbv404zly4p0klj2aad8lkfzgma473gzj4f7sxynkl11dp8f1"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -34888,6 +38647,38 @@ self: { license = lib.licenses.mit; }) {}; + "arithmoi_0_13_0_0" = callPackage + ({ mkDerivation, array, base, chimera, constraints, containers + , deepseq, exact-pi, ghc-bignum, infinite-list, integer-logarithms + , integer-roots, mod, QuickCheck, quickcheck-classes, random + , semirings, smallcheck, tasty, tasty-bench, tasty-hunit + , tasty-quickcheck, tasty-rerun, tasty-smallcheck, transformers + , vector + }: + mkDerivation { + pname = "arithmoi"; + version = "0.13.0.0"; + sha256 = "0bcxfx8gm0vd07pg417yid11dqakgw5w1hndmg8667g92ar5njsc"; + configureFlags = [ "-f-llvm" ]; + libraryHaskellDepends = [ + array base chimera constraints containers deepseq exact-pi + ghc-bignum infinite-list integer-logarithms integer-roots mod + random semirings transformers vector + ]; + testHaskellDepends = [ + base containers exact-pi infinite-list integer-roots mod QuickCheck + quickcheck-classes random semirings smallcheck tasty tasty-hunit + tasty-quickcheck tasty-rerun tasty-smallcheck transformers vector + ]; + benchmarkHaskellDepends = [ + array base constraints containers deepseq infinite-list + integer-logarithms mod random semirings tasty-bench vector + ]; + description = "Efficient basic number-theoretic functions"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + }) {}; + "arity-generic-liftA" = callPackage ({ mkDerivation, base, doctest }: mkDerivation { @@ -36658,8 +40449,8 @@ self: { }: mkDerivation { pname = "atlassian-connect-core"; - version = "0.10.0.2"; - sha256 = "0nwsl8cvbqjjrvphc589dvld4yv5xnv9p2y80glxmzv32rwcnj36"; + version = "0.10.1.0"; + sha256 = "15iyvjd0cyzqb16r3782nqq5s43i5q9lcmbdx73973ncyl334wxa"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson atlassian-connect-descriptor base base64-bytestring @@ -36680,8 +40471,8 @@ self: { }: mkDerivation { pname = "atlassian-connect-descriptor"; - version = "0.4.13.0"; - sha256 = "0fhzvqf18x44lvfwxzcvzwbnwl5anlyh47sni360f7w27g3b2jzz"; + version = "0.4.15.0"; + sha256 = "1mngv2pf6fkqqplkn9s51g6z8jhq9km864va2n97dvkmrwnzmhig"; libraryHaskellDepends = [ aeson base cases network network-uri text time-units unordered-containers @@ -37323,6 +41114,20 @@ self: { }) {}; "attoparsec-aeson" = callPackage + ({ mkDerivation, aeson, base }: + mkDerivation { + pname = "attoparsec-aeson"; + version = "2.1.0.0"; + sha256 = "1a86x493mrr7h468imcdjahxfvl2rrg6b6cygvzxja046cfgnjmk"; + libraryHaskellDepends = [ aeson base ]; + doHaddock = false; + description = "Parsing of aeson's Value with attoparsec"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; + }) {}; + + "attoparsec-aeson_2_2_0_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , integer-conversion, primitive, scientific, text, vector }: @@ -37442,31 +41247,6 @@ self: { }) {}; "attoparsec-framer" = callPackage - ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring - , exceptions, hspec, network, network-run, QuickCheck, text - }: - mkDerivation { - pname = "attoparsec-framer"; - version = "0.1.0.0"; - sha256 = "00vswlad9f5pqibfrch94vx6kxzswi7h47d64xqvmakasaahyn5m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base bytestring exceptions text - ]; - executableHaskellDepends = [ - attoparsec attoparsec-binary base bytestring exceptions network - network-run QuickCheck text - ]; - testHaskellDepends = [ - attoparsec attoparsec-binary base bytestring exceptions hspec - QuickCheck text - ]; - description = "Use Attoparsec to parse framed protocol bytestreams"; - license = lib.licenses.bsd3; - }) {}; - - "attoparsec-framer_0_1_0_1" = callPackage ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring , exceptions, hspec, network, network-run, QuickCheck, text }: @@ -37489,7 +41269,6 @@ self: { ]; description = "Use Attoparsec to parse framed protocol byte streams"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "attoparsec-ip" = callPackage @@ -38038,8 +41817,8 @@ self: { }: mkDerivation { pname = "autodocodec"; - version = "0.2.0.3"; - sha256 = "1ihyyxj4lbk172z7wnv11ryir3d00d5jrcprqiy0q7b4gkzsn3q6"; + version = "0.2.0.4"; + sha256 = "08075y8dfl32hhla8da7lrg0kzrlhj2rhfn5aqz11qm3vkwwbd6q"; libraryHaskellDepends = [ aeson base bytestring containers hashable mtl scientific text time unordered-containers validity validity-scientific vector @@ -38522,6 +42301,23 @@ self: { hydraPlatforms = lib.platforms.none; }) {}; + "avif" = callPackage + ({ mkDerivation, base, bytestring, c2hs, deepseq, JuicyPixels + , libavif, tasty, tasty-hunit, vector + }: + mkDerivation { + pname = "avif"; + version = "0.1.2.1"; + sha256 = "09c30y75gaq7vsqhw0illipnbfamj3g5g7rlpgf3lb88f56wj495"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ base bytestring JuicyPixels vector ]; + libraryPkgconfigDepends = [ libavif ]; + libraryToolDepends = [ c2hs ]; + testHaskellDepends = [ base bytestring deepseq tasty tasty-hunit ]; + description = "High-level bindings to libavif"; + license = lib.licenses.agpl3Only; + }) {inherit (pkgs) libavif;}; + "avl-static" = callPackage ({ mkDerivation, base, QuickCheck, test-framework , test-framework-quickcheck2 @@ -39471,6 +43267,29 @@ self: { license = lib.licenses.mit; }) {}; + "aws-sns-verify_0_0_0_3" = callPackage + ({ mkDerivation, aeson, aeson-qq, async, base, bytestring + , crypton-x509, crypton-x509-validation, errors, hspec + , http-conduit, http-types, memory, network-uri, pem, regex-tdfa + , text, wai, warp + }: + mkDerivation { + pname = "aws-sns-verify"; + version = "0.0.0.3"; + sha256 = "1l6w3am550ls656s9hnjib6zj0g6471brsj4vn9c7i03qqwgdgmy"; + libraryHaskellDepends = [ + aeson base bytestring crypton-x509 crypton-x509-validation errors + http-conduit memory network-uri pem regex-tdfa text + ]; + testHaskellDepends = [ + aeson-qq async base crypton-x509-validation hspec http-types + regex-tdfa text wai warp + ]; + description = "Parse and verify AWS SNS messages"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + }) {}; + "aws-transcribe-ws" = callPackage ({ mkDerivation, aeson, am-test, async, base, base16-bytestring , binary, bytestring, crc, cryptohash-sha256, lens, stm, text, time @@ -41014,17 +44833,17 @@ self: { }) {}; "base62" = callPackage - ({ mkDerivation, base, bytebuild, byteslice, doctest + ({ mkDerivation, base, bytebuild, byteslice, bytestring, doctest , natural-arithmetic, primitive, tasty, tasty-hunit - , tasty-quickcheck, wide-word, word-compat + , tasty-quickcheck, text, text-short, wide-word }: mkDerivation { pname = "base62"; - version = "0.1.0.2"; - sha256 = "14jjh2c5fhdjq7bwy3i3yff1mihmixjfs36fa8l9w0qvgpdl01qp"; + version = "0.1.1.0"; + sha256 = "0cwq9iqcps0f1b8sbjghfb9q3rr8alhjhwx0py6ll9gp98dv57qf"; libraryHaskellDepends = [ - base bytebuild byteslice natural-arithmetic primitive wide-word - word-compat + base bytebuild byteslice bytestring natural-arithmetic primitive + text text-short wide-word ]; testHaskellDepends = [ base byteslice doctest primitive tasty tasty-hunit tasty-quickcheck @@ -41071,6 +44890,8 @@ self: { pname = "base64-bytes"; version = "0.1.1.0"; sha256 = "0f0a0lj6k4k5b2mk9fbdl28x09h3mah5j44sj04k4ckdifkx3qw3"; + revision = "1"; + editedCabalFile = "1m4igcn7bxc2ym4ba22dkz2dh6rbka20da5a19vxpm0hwypfd0jc"; libraryHaskellDepends = [ base byte-order bytebuild byteslice natural-arithmetic primitive run-st word-compat @@ -42008,8 +45829,8 @@ self: { }: mkDerivation { pname = "beam-automigrate"; - version = "0.1.3.0"; - sha256 = "04ihkc2zdflvsz4b94q6kf806hdaxin5gl1h4avp4lbjwzcjqvif"; + version = "0.1.4.0"; + sha256 = "0miifsbppqqad9v6mvd30mxanqz6fddxal6d6jxpynmx4wnk8i8p"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -42274,6 +46095,37 @@ self: { broken = true; }) {}; + "bech32_1_1_4" = callPackage + ({ mkDerivation, array, base, base58-bytestring, bytestring + , containers, deepseq, extra, hspec, hspec-discover, memory + , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal + , process, QuickCheck, text, vector + }: + mkDerivation { + pname = "bech32"; + version = "1.1.4"; + sha256 = "0f4s2dc5dh5gq1hqcdlbvddk93h117nji9nca0sfqzbx04n3sma8"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base bytestring containers extra text + ]; + executableHaskellDepends = [ + base base58-bytestring bytestring extra memory optparse-applicative + prettyprinter prettyprinter-ansi-terminal text + ]; + testHaskellDepends = [ + base base58-bytestring bytestring containers deepseq extra hspec + memory process QuickCheck text vector + ]; + testToolDepends = [ hspec-discover ]; + description = "Implementation of the Bech32 cryptocurrency address format (BIP 0173)"; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + mainProgram = "bech32"; + broken = true; + }) {}; + "bech32-th" = callPackage ({ mkDerivation, base, bech32, hspec, hspec-discover , template-haskell, text @@ -42903,22 +46755,6 @@ self: { }) {}; "bibtex" = callPackage - ({ mkDerivation, base, latex, parsec, utility-ht }: - mkDerivation { - pname = "bibtex"; - version = "0.1.0.6"; - sha256 = "012zxvrlkl5vdjl1nmabhyi160xak0c8s3gn5ffxz2rqi6akn2h9"; - revision = "1"; - editedCabalFile = "028jl40ri1p1gn76m09ay6hhhd9827y7g54qwplcszxjykxgnvih"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base latex parsec utility-ht ]; - description = "Parse, format and processing BibTeX files"; - license = lib.licenses.bsd3; - maintainers = [ lib.maintainers.thielema ]; - }) {}; - - "bibtex_0_1_0_7" = callPackage ({ mkDerivation, base, latex, parsec, utility-ht }: mkDerivation { pname = "bibtex"; @@ -42929,7 +46765,6 @@ self: { libraryHaskellDepends = [ base latex parsec utility-ht ]; description = "Parse, format and processing BibTeX files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -43091,6 +46926,8 @@ self: { pname = "bifunctors"; version = "5.6.1"; sha256 = "1z2p9l2c0i6irbhfib5z7089jg8s22jj2jrc3dm525mynmqi8f06"; + revision = "1"; + editedCabalFile = "0f4swdx6nvjzci5mwiwcqxsg7xqsf7vqvignq4k644sclrih2v38"; libraryHaskellDepends = [ assoc base comonad containers foldable1-classes-compat tagged template-haskell th-abstraction transformers @@ -46200,6 +50037,30 @@ self: { license = lib.licenses.bsd3; }) {}; + "bitvec_1_1_5_0" = callPackage + ({ mkDerivation, base, bytestring, containers, deepseq, ghc-bignum + , primitive, quickcheck-classes, quickcheck-classes-base, random + , tasty, tasty-bench, tasty-quickcheck, vector + }: + mkDerivation { + pname = "bitvec"; + version = "1.1.5.0"; + sha256 = "1ifyz0lsmgqz8yjyx4887m1wnm7ar389k6gkvcnk9mg1bgp7rll3"; + libraryHaskellDepends = [ + base bytestring deepseq ghc-bignum primitive vector + ]; + testHaskellDepends = [ + base ghc-bignum primitive quickcheck-classes + quickcheck-classes-base tasty tasty-quickcheck vector + ]; + benchmarkHaskellDepends = [ + base containers ghc-bignum random tasty tasty-bench vector + ]; + description = "Space-efficient bit vectors"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "bitwise" = callPackage ({ mkDerivation, array, base, bytestring, criterion, QuickCheck }: mkDerivation { @@ -46222,10 +50083,8 @@ self: { }: mkDerivation { pname = "bitwise-enum"; - version = "1.0.1.0"; - sha256 = "0vmdr8csmxwab7s4nmqdfpqdssivh90fddk94i8wkwj1la867y1z"; - revision = "3"; - editedCabalFile = "1f94gscpmffhx1m88nq6h6y46b1xpzp1kwfxb362zq6k1rq7dbk9"; + version = "1.0.1.2"; + sha256 = "15v40b2rffrx1sqfbfrbiky1g1bic0waabsznq5cgrlv7jh5znxx"; libraryHaskellDepends = [ aeson array base deepseq mono-traversable vector ]; @@ -47339,10 +51198,8 @@ self: { }: mkDerivation { pname = "bloomfilter"; - version = "2.0.1.0"; - sha256 = "03vrmncg1c10a2wcg5skq30m1yiknn7nwxz2gblyyfaxglshspkc"; - revision = "2"; - editedCabalFile = "1hi6hwvhv7lxqv0l6hv2854g1rvc52zcmr3ldvnaan1l1b666867"; + version = "2.0.1.2"; + sha256 = "0klb26ldkw32axv3927w489j71r2rc9pangsvznqjbljib9970hp"; libraryHaskellDepends = [ array base bytestring deepseq ]; testHaskellDepends = [ base bytestring QuickCheck random test-framework @@ -48285,6 +52142,25 @@ self: { mainProgram = "boomslang"; }) {}; + "boomwhacker" = callPackage + ({ mkDerivation, array, base, containers, event-list, filepath + , HPDF, midi, optparse-applicative, utility-ht + }: + mkDerivation { + pname = "boomwhacker"; + version = "0.0"; + sha256 = "0755v8315g03fhhh9a12jnczdapz6gs1my4gvz1y9arbyc3xngym"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + array base containers event-list filepath HPDF midi + optparse-applicative utility-ht + ]; + description = "Convert MIDI file to play-along boomwhacker animation"; + license = lib.licenses.bsd3; + mainProgram = "boomwhacker"; + }) {}; + "boop" = callPackage ({ mkDerivation, base, mtl, text }: mkDerivation { @@ -48598,10 +52474,8 @@ self: { }: mkDerivation { pname = "bound"; - version = "2.0.6"; - sha256 = "1mlnpc4x7gn97b8pqiwj3shv23slfylwplp7zr37ar5ff9isbm28"; - revision = "1"; - editedCabalFile = "104j2gindmyqs4hl56irvndz9s9j7s4yyjhlwz3s87r9053sr1p9"; + version = "2.0.7"; + sha256 = "1wqvanfp826s89qr4a1rc9f0ldsj45j1rwy9x6a894vndgrxm8dj"; libraryHaskellDepends = [ base bifunctors binary bytes cereal comonad deepseq hashable mmorph profunctors template-haskell th-abstraction transformers @@ -48771,25 +52645,6 @@ self: { }) {}; "box" = callPackage - ({ mkDerivation, async, base, bytestring, containers, contravariant - , dlist, exceptions, kan-extensions, mtl, profunctors - , semigroupoids, stm, text, time - }: - mkDerivation { - pname = "box"; - version = "0.9.1"; - sha256 = "1dd82rf1fpmhgryws67phgpfy4kfy4q1anh5l37g162dgy6kyi0z"; - libraryHaskellDepends = [ - async base bytestring containers contravariant dlist exceptions - kan-extensions mtl profunctors semigroupoids stm text time - ]; - description = "boxes"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - }) {}; - - "box_0_9_2_0" = callPackage ({ mkDerivation, async, base, bytestring, containers, contravariant , dlist, exceptions, kan-extensions, mtl, profunctors , semigroupoids, stm, text, time @@ -48999,15 +52854,15 @@ self: { }) {}; "brassica" = callPackage - ({ mkDerivation, base, bytestring, conduit, containers, criterion - , deepseq, file-embed, megaparsec, mtl, optparse-applicative - , parser-combinators, split, tasty, tasty-golden, text - , transformers, utf8-string + ({ mkDerivation, aeson, attoparsec-aeson, base, bytestring, conduit + , conduit-extra, containers, criterion, deepseq, file-embed + , megaparsec, mtl, optparse-applicative, parser-combinators, split + , tasty, tasty-golden, text, transformers, utf8-string }: mkDerivation { pname = "brassica"; - version = "0.1.0"; - sha256 = "1hknckbcx5k2iiwv076kkmw9d86v9g8yvz3cp6sxny7yik88h0n0"; + version = "0.1.1"; + sha256 = "0dc3qwyyz94qv1fhpyypcwys48i3zx3137yrh1gx3wby2gf2rzb9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -49015,7 +52870,8 @@ self: { transformers ]; executableHaskellDepends = [ - base bytestring conduit optparse-applicative text + aeson attoparsec-aeson base bytestring conduit conduit-extra + deepseq optparse-applicative text ]; testHaskellDepends = [ base bytestring conduit tasty tasty-golden text transformers @@ -49722,8 +53578,8 @@ self: { pname = "brotli"; version = "0.0.0.1"; sha256 = "0fp8vhqzl6i1vvb4fw4zya6cgkzmj0yaaw94jdf2kggm3gn8zwfc"; - revision = "2"; - editedCabalFile = "1qil5gibl2bgjf1jj54nvj9h5rrajkqwdazgl38z56v3dgsqdvaz"; + revision = "3"; + editedCabalFile = "00n7r8wwn40qbd6qvqzmkdf374nzd703rbsmn1szdwiw0zyp6ipa"; libraryHaskellDepends = [ base bytestring transformers ]; libraryPkgconfigDepends = [ brotli ]; testHaskellDepends = [ @@ -49764,8 +53620,8 @@ self: { pname = "brotli-streams"; version = "0.0.0.0"; sha256 = "14jc1nhm50razsl99d95amdf4njf75dnzx8vqkihgrgp7qisyz3z"; - revision = "7"; - editedCabalFile = "142p3ni8ns9nrq58aavnggpspn8phszpgxwzmalyh34692cr8kd4"; + revision = "8"; + editedCabalFile = "05ri1yv1q2h0zlbcqgk1rpyb7p36zb6asrj6f3w0yyr4s5hsqwww"; libraryHaskellDepends = [ base brotli bytestring io-streams ]; testHaskellDepends = [ base bytestring HUnit io-streams QuickCheck test-framework @@ -51124,38 +54980,6 @@ self: { }) {}; "bytebuild" = callPackage - ({ mkDerivation, base, byteslice, bytestring, gauge - , haskell-src-meta, integer-logarithms, natural-arithmetic - , primitive, primitive-offset, primitive-unlifted, QuickCheck - , quickcheck-classes, quickcheck-instances, run-st, tasty - , tasty-hunit, tasty-quickcheck, template-haskell, text, text-short - , vector, wide-word, zigzag - }: - mkDerivation { - pname = "bytebuild"; - version = "0.3.13.0"; - sha256 = "0qfxsff6823k4fm3vy50fw00f7p85lnc35kkazfn9h8prw2ac3k9"; - revision = "1"; - editedCabalFile = "07w11wgvv1k4w4dsy54s9yq9wi5i1pic8hps067jc8yism1mfqn8"; - libraryHaskellDepends = [ - base byteslice bytestring haskell-src-meta integer-logarithms - natural-arithmetic primitive primitive-offset primitive-unlifted - run-st template-haskell text text-short wide-word zigzag - ]; - testHaskellDepends = [ - base byteslice bytestring natural-arithmetic primitive - primitive-unlifted QuickCheck quickcheck-classes - quickcheck-instances tasty tasty-hunit tasty-quickcheck text - text-short vector wide-word - ]; - benchmarkHaskellDepends = [ - base byteslice gauge natural-arithmetic primitive text-short - ]; - description = "Build byte arrays"; - license = lib.licenses.bsd3; - }) {}; - - "bytebuild_0_3_14_0" = callPackage ({ mkDerivation, base, byteslice, bytestring, gauge , haskell-src-meta, integer-logarithms, natural-arithmetic , primitive, primitive-offset, primitive-unlifted, QuickCheck @@ -51183,7 +55007,6 @@ self: { ]; description = "Build byte arrays"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bytedump" = callPackage @@ -51323,18 +55146,16 @@ self: { "bytes" = callPackage ({ mkDerivation, base, binary, binary-orphans, bytestring, cereal - , containers, hashable, mtl, scientific, text, time, transformers + , containers, hashable, scientific, text, time, transformers , transformers-compat, unordered-containers, void }: mkDerivation { pname = "bytes"; - version = "0.17.2"; - sha256 = "06kqqk19qjhrwdqi6pyd1lwqfnj2sw3b3s49lc5vr2fmv8gg8mdw"; - revision = "2"; - editedCabalFile = "18lgnmvrvg4fgwj6mwds9p708x5vfhsw5v6b1rmdd2x3i0g7z2yf"; + version = "0.17.3"; + sha256 = "1ir9v4gjw7zgm9f55wa3y8wgn4zfpi71pvbsdmjgjk9dh02wy2ni"; libraryHaskellDepends = [ base binary binary-orphans bytestring cereal containers hashable - mtl scientific text time transformers transformers-compat + scientific text time transformers transformers-compat unordered-containers void ]; description = "Sharing code for serialization between binary and cereal"; @@ -51355,20 +55176,18 @@ self: { }) {}; "byteslice" = callPackage - ({ mkDerivation, base, bytestring, gauge, primitive, primitive-addr - , primitive-unlifted, quickcheck-classes, run-st, tasty - , tasty-hunit, tasty-quickcheck, text, text-short, transformers - , tuples, vector + ({ mkDerivation, base, bytestring, gauge, natural-arithmetic + , primitive, primitive-addr, primitive-unlifted, quickcheck-classes + , run-st, tasty, tasty-hunit, tasty-quickcheck, text, text-short + , transformers, tuples, vector }: mkDerivation { pname = "byteslice"; - version = "0.2.10.0"; - sha256 = "12jwivxnq67g7if9ndq7yb3m46kldz2m6ywiyyyjs7p1kidm8hc4"; - revision = "2"; - editedCabalFile = "1k5ssfnwfj6qrp4mllxc3masbk51yvqdlmym1pidzmws4d00scch"; + version = "0.2.11.1"; + sha256 = "0sp96a2qd6n48nndwfzmp6gcz1lvs488sdrf3vz4lnskris2ghaj"; libraryHaskellDepends = [ - base bytestring primitive primitive-addr primitive-unlifted run-st - text text-short tuples vector + base bytestring natural-arithmetic primitive primitive-addr + primitive-unlifted run-st text text-short tuples vector ]; testHaskellDepends = [ base bytestring primitive quickcheck-classes tasty tasty-hunit @@ -51386,10 +55205,10 @@ self: { }: mkDerivation { pname = "bytesmith"; - version = "0.3.9.1"; - sha256 = "10d0wzinc30b2xc26cfadvpn29gf30gnppysyl3n35ym3p9lnhm2"; + version = "0.3.10.0"; + sha256 = "0n0218mrnf6qy7h82apxgpdd868hdbmvn1cghif267xmd0qc3pcp"; revision = "1"; - editedCabalFile = "11pmza7qlk63lw6ns6jsnlmfl8wdazz5sc5b2spb0pk29k9yymp2"; + editedCabalFile = "1lw7ivh995mgpvra2s3klka9n3zc0j8w43mkgi068hlzcj69km0z"; libraryHaskellDepends = [ base byteslice bytestring contiguous primitive run-st text-short wide-word @@ -51405,14 +55224,14 @@ self: { license = lib.licenses.bsd3; }) {}; - "bytestring_0_12_0_0" = callPackage + "bytestring_0_12_0_2" = callPackage ({ mkDerivation, base, deepseq, ghc-prim, QuickCheck, random, tasty , tasty-bench, tasty-quickcheck, template-haskell, transformers }: mkDerivation { pname = "bytestring"; - version = "0.12.0.0"; - sha256 = "0lzyz5bjb8f9m64bs5w196vvmhaydwq9ygfrsl4xx1lmi8lq99b5"; + version = "0.12.0.2"; + sha256 = "0gmsgnpkmgy7a2rjjrfs3r0n3fvr92dm5c8sc6ymc9h6r3xyagx9"; libraryHaskellDepends = [ base deepseq ghc-prim template-haskell ]; testHaskellDepends = [ base deepseq ghc-prim QuickCheck tasty tasty-quickcheck @@ -51986,8 +55805,8 @@ self: { pname = "bzlib"; version = "0.5.1.0"; sha256 = "1n599xwyxghf52kam30k1l2qh8cg91h55c2bgchnqyj103hb7nfy"; - revision = "1"; - editedCabalFile = "0r9b9y5qlz9k8wdzb23jif9wgvxi7r652i9apwzdaq7g1l08i6ky"; + revision = "2"; + editedCabalFile = "0v2ffgv20xq8q85z96qic13pqq13ipjxl0bn9wkzxlcd0axa0zhr"; libraryHaskellDepends = [ base bytestring ]; librarySystemDepends = [ bzip2 ]; description = "Compression and decompression in the bzip2 format"; @@ -52186,19 +56005,6 @@ self: { }) {}; "c14n" = callPackage - ({ mkDerivation, base, bytestring, libxml2 }: - mkDerivation { - pname = "c14n"; - version = "0.1.0.2"; - sha256 = "165mayyj2apzv87jqsmpyskl6hr7gpvpg7ypi2vqgi8wda1gawki"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ libxml2 ]; - libraryPkgconfigDepends = [ libxml2 ]; - description = "Bindings to the c14n implementation in libxml"; - license = lib.licenses.mit; - }) {inherit (pkgs) libxml2;}; - - "c14n_0_1_0_3" = callPackage ({ mkDerivation, base, bytestring, libxml2 }: mkDerivation { pname = "c14n"; @@ -52209,7 +56015,6 @@ self: { libraryPkgconfigDepends = [ libxml2 ]; description = "Bindings to the c14n implementation in libxml"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libxml2;}; "c2ats" = callPackage @@ -53389,10 +57194,8 @@ self: { }: mkDerivation { pname = "cabal-rpm"; - version = "2.1.1"; - sha256 = "0p75a9q4hjrvbiqq3h7730h1b400z7v5v9kns703d09hr2l0zgg0"; - revision = "1"; - editedCabalFile = "1a4r0h635wzrg27b2mg2lhnsy8d5vrn3ps4bc7qzflx82rxmpvvl"; + version = "2.1.2"; + sha256 = "0593260apchmhkvn48m7fgffi3w668ky0n8fyhbx8557kqv55w6f"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -55725,6 +59528,28 @@ self: { license = lib.licenses.bsd3; }) {}; + "casa-client_0_0_2" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base16-bytestring + , bytestring, casa-types, conduit, conduit-extra, crypton + , exceptions, http-conduit, http-types, memory, network-uri + , resourcet, template-haskell, text, th-lift, unliftio-core + , unordered-containers + }: + mkDerivation { + pname = "casa-client"; + version = "0.0.2"; + sha256 = "0nr6dz6igxkmr4841hppd5zz0vjycfvybr3abqylrssg6vg988p2"; + libraryHaskellDepends = [ + aeson attoparsec base base16-bytestring bytestring casa-types + conduit conduit-extra crypton exceptions http-conduit http-types + memory network-uri resourcet template-haskell text th-lift + unliftio-core unordered-containers + ]; + description = "Client for Casa"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "casa-types" = callPackage ({ mkDerivation, aeson, attoparsec, base, base16-bytestring , bytestring, hashable, path-pieces, persistent, text @@ -56213,8 +60038,8 @@ self: { pname = "cassava"; version = "0.5.3.0"; sha256 = "1gp954w05bj83z4i6isq2qxi1flqwppsgxxrp1f75mrs8cglbj5l"; - revision = "2"; - editedCabalFile = "16aydwrszzf28s1dwf6bkfi815rbmpzq0z4zid5w91davg8annyv"; + revision = "3"; + editedCabalFile = "192y0bwxyn290rf1zh4snsb2x6nk3siz3rac265cddd087c6zkg8"; configureFlags = [ "-f-bytestring--lt-0_10_4" ]; libraryHaskellDepends = [ array attoparsec base bytestring containers deepseq hashable Only @@ -57457,6 +61282,30 @@ self: { broken = true; }) {}; + "cfg" = callPackage + ({ mkDerivation, base, bytestring, containers, doctest, errors + , free, hedgehog, hspec, hspec-core, hspec-discover + , hspec-expectations, hspec-hedgehog, megaparsec, mtl + , pretty-simple, text, vector + }: + mkDerivation { + pname = "cfg"; + version = "0.0.2.1"; + sha256 = "0fy21jxpr3720r4l6xnsbg2xasyrq94ljjnnk6639q4w8waqqrb2"; + libraryHaskellDepends = [ + base bytestring containers errors free megaparsec mtl pretty-simple + text vector + ]; + testHaskellDepends = [ + base containers doctest free hedgehog hspec hspec-core + hspec-discover hspec-expectations hspec-hedgehog mtl pretty-simple + text + ]; + testToolDepends = [ hspec-discover ]; + description = "Type directed application configuration parsing and accessors"; + license = lib.licenses.mit; + }) {}; + "cfipu" = callPackage ({ mkDerivation, base, bytestring, containers, data-default , dequeue, mtl @@ -57994,8 +61843,8 @@ self: { }: mkDerivation { pname = "charset"; - version = "0.3.9"; - sha256 = "12wrphd5j1asb3n6awbph4n695mfmnzk6yzggrp387hx960qfkyb"; + version = "0.3.10"; + sha256 = "1y9571120f428rkif97w4vwjas9x0916qgl9kkm71yxjz7dm2ihy"; libraryHaskellDepends = [ array base bytestring containers unordered-containers ]; @@ -58068,8 +61917,8 @@ self: { }: mkDerivation { pname = "chart-svg"; - version = "0.4.0"; - sha256 = "1nsg5njv2sjg9rk5r0i3hx5p6vh8pa16m1mcgc6bf8cddkmgglip"; + version = "0.4.1.1"; + sha256 = "198b817pq673fsxi24v9llnf90vrpy16j4qlbhij88mknmhx2cr3"; libraryHaskellDepends = [ adjunctions attoparsec base bytestring Color containers cubicbezier flatparse foldl formatn mtl numhask numhask-array numhask-space @@ -58827,6 +62676,18 @@ self: { license = lib.licenses.publicDomain; }) {}; + "choice_0_2_3" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "choice"; + version = "0.2.3"; + sha256 = "15nls2azmhwi3nnf5rkl954pa0bjgi231ff74hgw8r3nb5axrgrn"; + libraryHaskellDepends = [ base ]; + description = "A solution to boolean blindness"; + license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + }) {}; + "choose" = callPackage ({ mkDerivation, base, MonadRandom }: mkDerivation { @@ -60632,8 +64493,8 @@ self: { }: mkDerivation { pname = "classy-prelude"; - version = "1.5.0.2"; - sha256 = "0mxgx4hr5fsdg45wbilhsnryc61yclhf63bh94q88n26gjmjr60h"; + version = "1.5.0.3"; + sha256 = "1cng9s3k2rp5n9y3jvim7xgz69s9bhwnjh16pvnj0rrr0dkk18dk"; libraryHaskellDepends = [ async base basic-prelude bifunctors bytestring chunked-data containers deepseq dlist ghc-prim hashable mono-traversable @@ -60707,6 +64568,8 @@ self: { pname = "clay"; version = "0.14.0"; sha256 = "10dwgvga0xsil20w6l0xr8g1lsxg7rwdfcv4bga818jp49xbmnac"; + revision = "1"; + editedCabalFile = "1jgza1f88j90jgvmyb0b683vlh7c0whpk9r4kzl5b7536wqsf2x5"; libraryHaskellDepends = [ base mtl text ]; testHaskellDepends = [ base hspec hspec-discover mtl text ]; testToolDepends = [ hspec-discover ]; @@ -61052,8 +64915,8 @@ self: { pname = "cleff"; version = "0.3.3.0"; sha256 = "0fnpk28nhafypp7p1ay1760sin9hh06dz23r68gmm93i879ayl9b"; - revision = "3"; - editedCabalFile = "1dampx9zdpj14g6a7xhsyk9xg3zq2chpv0h43jb85pyyh6ig7rb4"; + revision = "4"; + editedCabalFile = "07js52a0fjrbd4w653ix0l5xyxjnm46nj7ca5qvacjz0f1sfkgfj"; libraryHaskellDepends = [ atomic-primops base containers exceptions microlens monad-control primitive template-haskell th-abstraction transformers-base @@ -61144,8 +65007,10 @@ self: { }: mkDerivation { pname = "cleveland"; - version = "0.3.2"; - sha256 = "0j9qgc1vjqqf7w17pr3984ziq1f8qc26qq4s6xrb46sdaqixjyk8"; + version = "0.4.0"; + sha256 = "06jswn3plqc9lv2xmb4lhbjg136v49sr7s0kpr23qdlx8g59sxv8"; + revision = "1"; + editedCabalFile = "06l8j1mhyq077dm2hrgp6cbcxkl03yifbbdd7zn14rlzwxbdgjs3"; libraryHaskellDepends = [ aeson base-noprelude constraints containers criterion cryptonite data-default dependent-map directory exceptions file-embed hedgehog @@ -61379,32 +65244,6 @@ self: { }) {}; "clientsession" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, cereal - , cipher-aes, containers, cprng-aes, crypto-api, crypto-random - , directory, entropy, hspec, HUnit, QuickCheck, setenv, skein - , tagged, transformers - }: - mkDerivation { - pname = "clientsession"; - version = "0.9.1.2"; - sha256 = "0s6h4ykj16mpf7nlw2iqn2ji0p8g1fn5ni0s7yqaili6vv2as5ar"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base64-bytestring bytestring cereal cipher-aes cprng-aes - crypto-api crypto-random directory entropy setenv skein tagged - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base bytestring cereal containers hspec HUnit QuickCheck - transformers - ]; - description = "Securely store session data in a client-side cookie"; - license = lib.licenses.mit; - mainProgram = "clientsession-generate"; - }) {}; - - "clientsession_0_9_2_0" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, cereal , containers, crypto-api, cryptonite, directory, entropy, hspec , HUnit, QuickCheck, setenv, skein, tagged, transformers @@ -61428,7 +65267,6 @@ self: { ]; description = "Securely store session data in a client-side cookie"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "clientsession-generate"; }) {}; @@ -61676,19 +65514,6 @@ self: { }) {}; "clock" = callPackage - ({ mkDerivation, base, criterion, tasty, tasty-quickcheck }: - mkDerivation { - pname = "clock"; - version = "0.8.3"; - sha256 = "1l850pf1dxjf3i15wc47d64gzkpzgvw0bq13fd8zvklq9kdyap44"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base tasty tasty-quickcheck ]; - benchmarkHaskellDepends = [ base criterion ]; - description = "High-resolution clock functions: monotonic, realtime, cputime"; - license = lib.licenses.bsd3; - }) {}; - - "clock_0_8_4" = callPackage ({ mkDerivation, base, criterion, tasty, tasty-quickcheck }: mkDerivation { pname = "clock"; @@ -61699,7 +65524,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "High-resolution clock functions: monotonic, realtime, cputime"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "clock-extras" = callPackage @@ -63220,10 +67044,8 @@ self: { ({ mkDerivation, base, profunctors }: mkDerivation { pname = "coercible-subtypes"; - version = "0.3.0.0"; - sha256 = "14swbn5509wb46iwgp2lj8hqi3ca82jacgq028cmwz35zsc1zjds"; - revision = "1"; - editedCabalFile = "0b60xy5pcfkys6a2q6ykzva9ld1gsq09j3chnq9vab9bxx4r92dh"; + version = "0.3.0.1"; + sha256 = "1mji6jlgc2lk6lczn10c2rchm10h2my3gs9p3r9yd6ij8ixki4sx"; libraryHaskellDepends = [ base profunctors ]; description = "Coercible but only in one direction"; license = lib.licenses.bsd3; @@ -63979,6 +67801,8 @@ self: { pname = "colourista"; version = "0.1.0.2"; sha256 = "0g06116kjg9pbp0l7n33agqbks3kw5z4rjqyhylha8miah5sxbwn"; + revision = "1"; + editedCabalFile = "0wjngfcnqaibdds17q8r8v8yvbl94qxbjhmill4vi1fzfsiw4yrg"; libraryHaskellDepends = [ ansi-terminal base bytestring text ]; testHaskellDepends = [ base bytestring hspec text ]; description = "Convenient interface for printing colourful messages"; @@ -65278,8 +69102,8 @@ self: { pname = "compensated"; version = "0.8.3"; sha256 = "0xigi4pcw581d8kjbhdjkksyz9bgcgvq0j17br9z1x6a3hw1m39a"; - revision = "3"; - editedCabalFile = "0fccjb5q07w1k3pl6x0jrglvbkfycqfjhbd121h3bxg6y5c3fs40"; + revision = "4"; + editedCabalFile = "101rydn8qixa67fpx2wkliklbiwb76c8hvjqxb08rj01fnj88z5r"; libraryHaskellDepends = [ base bifunctors binary bytes cereal comonad deepseq distributive hashable lens log-domain safecopy semigroupoids semigroups vector @@ -65579,6 +69403,8 @@ self: { pname = "composite-base"; version = "0.8.2.1"; sha256 = "0i2mamh5gz7ay1cm5nkmdbh2lnaph42pfi2aa9jb2baxi0jgxdri"; + revision = "1"; + editedCabalFile = "1fww7f7z583vp7kfrf6xi6y0plpm4jsh3j72xbgarprlz25j1aip"; libraryHaskellDepends = [ base deepseq exceptions lens monad-control mtl profunctors template-haskell text transformers transformers-base unliftio-core @@ -67297,8 +71123,8 @@ self: { pname = "conferer"; version = "1.1.0.0"; sha256 = "1hkdrqxrac1mbzvd29f6ds4cbihdv0j0daai7yc282myv0varh09"; - revision = "3"; - editedCabalFile = "15gs9cv1i9j4qx6vnp32yhcjb5rjaf9g3jsfdzmi5v7i3b1gziwc"; + revision = "4"; + editedCabalFile = "09qw98sy1w80cackq4mncgj4l6faqhh5c49fli3al4sivw1xvr9l"; libraryHaskellDepends = [ base bytestring containers directory filepath text ]; @@ -67320,8 +71146,8 @@ self: { pname = "conferer-aeson"; version = "1.1.0.2"; sha256 = "07rdal3smq1s14zmsn7g26vc6sqj21rsa2a1vcbrwrfgh9x36jkn"; - revision = "3"; - editedCabalFile = "162knmji5970ccdfbh3vz930ljwl4mahpbdj5si5rj2v3aays9ms"; + revision = "4"; + editedCabalFile = "0g5bkl5lgy4a2cp2vjhwf8w2gwjl3687r2ckcjz7dmnqpgx06zla"; libraryHaskellDepends = [ aeson base bytestring conferer directory text unordered-containers vector @@ -67343,8 +71169,8 @@ self: { pname = "conferer-dhall"; version = "1.1.0.0"; sha256 = "0whxxjz5askw1qxcxdn5094bqm2hy3zp49567v57gqikgv6rcnp1"; - revision = "1"; - editedCabalFile = "1bbc5a3iy5fcp7ahxndhfg8v0sk74q0hs00miiv8gqg7f3l5b20j"; + revision = "2"; + editedCabalFile = "1d8136m9mq06drs5k903gr0mm79z4898mgq3grzfl821d9bkcgi1"; libraryHaskellDepends = [ base bytestring conferer conferer-aeson dhall dhall-json directory text @@ -67365,6 +71191,8 @@ self: { pname = "conferer-hedis"; version = "1.1.0.0"; sha256 = "10rk5w3f99ql46yvzg7a0ac59dvpyfhdpv138w0w5ghgz5azcd19"; + revision = "1"; + editedCabalFile = "1idrgx558fcxpa76v1lp9fmja0mdgyvwv614id16kpw1yc32nlw8"; libraryHaskellDepends = [ base conferer hedis text ]; testHaskellDepends = [ base conferer hedis hspec text ]; description = "conferer's FromConfig instances for hedis settings"; @@ -67378,6 +71206,8 @@ self: { pname = "conferer-hspec"; version = "1.1.0.0"; sha256 = "0q9v26df3c2rxll6rk2zmmd9yrpqz1j1wdp59qlw2s6c2w7dxq35"; + revision = "1"; + editedCabalFile = "0r03dqr6lw5mkdvsvcikig51m9ycnja217px4dswhbf2y7qga6lh"; libraryHaskellDepends = [ base conferer hspec-core text ]; testHaskellDepends = [ base conferer hspec hspec-core text ]; description = "conferer's FromConfig instances for hspec Config"; @@ -67456,8 +71286,8 @@ self: { pname = "conferer-snap"; version = "1.0.0.0"; sha256 = "15gz77b5jf35hmcnd6kza1wgzpbgk3pcvhi7mp7yk64ybksld98r"; - revision = "1"; - editedCabalFile = "08bji5mw7lzxpx9s1mlim5nfcz7j6828zj75pn670jfip0in4j19"; + revision = "2"; + editedCabalFile = "1xm45qifvkvjxfi6b82qmjbk3hgrqynxjn9vhfcf5q9m5m6w5ffx"; libraryHaskellDepends = [ base conferer snap-core snap-server text ]; @@ -68442,6 +72272,8 @@ self: { pname = "constraints"; version = "0.13.4"; sha256 = "0d248szyp70k1qlivsimk0j5vz9hdx1alhismry5v35qyinr91j1"; + revision = "1"; + editedCabalFile = "0dpxj110kl9msci5czqlvysp3mi6bhah0p4m6z4qlydngcq3920d"; libraryHaskellDepends = [ base binary deepseq ghc-prim hashable mtl transformers transformers-compat type-equality @@ -71670,7 +75502,7 @@ self: { mainProgram = "criterion-report"; }) {}; - "criterion_1_6_2_0" = callPackage + "criterion_1_6_3_0" = callPackage ({ mkDerivation, aeson, base, base-compat, base-compat-batteries , binary, binary-orphans, bytestring, cassava, code-page , containers, criterion-measurement, deepseq, directory, exceptions @@ -71682,10 +75514,8 @@ self: { }: mkDerivation { pname = "criterion"; - version = "1.6.2.0"; - sha256 = "1yiish22n4x9zh1gl6bf1rnbcimgad87dgkxk663hzc78683q2dm"; - revision = "1"; - editedCabalFile = "164w1p7vnijlmf1cyn5x2i667g3dqf57pf7wwii05av7733wbdns"; + version = "1.6.3.0"; + sha256 = "18lvvsgd9wwffmq00hqspjqk71njaw9ia6j5n930rpvab7i125y3"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -72649,6 +76479,8 @@ self: { pname = "cryptohash-sha512"; version = "0.11.102.0"; sha256 = "0b48qwgyn68rfbq4fh6fmsk1kc07n8qq95217n8gjnlzvsh2395z"; + revision = "1"; + editedCabalFile = "1y9d4f495gb5gdwsmzamgrq9yl16fx1bsaw6pr5236q6yahz0sb1"; libraryHaskellDepends = [ base bytestring ]; testHaskellDepends = [ base base16-bytestring bytestring SHA tasty tasty-hunit @@ -72799,6 +76631,27 @@ self: { hydraPlatforms = lib.platforms.none; }) {}; + "crypton-conduit" = callPackage + ({ mkDerivation, base, bytestring, conduit, conduit-combinators + , conduit-extra, crypton, exceptions, memory, resourcet, tasty + , tasty-hunit, tasty-quickcheck, transformers + }: + mkDerivation { + pname = "crypton-conduit"; + version = "0.2.3"; + sha256 = "1kkizzapdv1lnkijmygpr3jdh2wiszcjhbi9byjzjphinpwlaply"; + libraryHaskellDepends = [ + base bytestring conduit conduit-extra crypton exceptions memory + resourcet transformers + ]; + testHaskellDepends = [ + base bytestring conduit conduit-combinators crypton memory tasty + tasty-hunit tasty-quickcheck + ]; + description = "crypton conduit"; + license = lib.licenses.bsd3; + }) {}; + "crypton-connection" = callPackage ({ mkDerivation, base, basement, bytestring, containers , crypton-x509, crypton-x509-store, crypton-x509-system @@ -73745,8 +77598,8 @@ self: { }: mkDerivation { pname = "cuda"; - version = "0.11.0.0"; - sha256 = "0j35p4i611jkxa3i59gvc7vgbkzx7ckri1fd1n0ryv8akn4gl9m8"; + version = "0.11.0.1"; + sha256 = "0zfxzmixla3cmzkxrb0amndhhfllsw532ys96r9vc00lfrqlsqqb"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ base Cabal directory filepath ]; @@ -76419,8 +80272,8 @@ self: { ({ mkDerivation, base, mtl, template-haskell }: mkDerivation { pname = "data-lens-light"; - version = "0.1.2.3"; - sha256 = "1xczbmgin315qh9wpl6v2vvnp6hv1irfbfqs7pk034qcpx61fwdl"; + version = "0.1.2.4"; + sha256 = "07gli8w7k2h5v4ih7iq2rlp0xbd7vpqbpp9xvw95n6l7z67qfsyx"; libraryHaskellDepends = [ base mtl template-haskell ]; description = "Simple lenses, minimum dependencies"; license = lib.licenses.mit; @@ -78998,12 +82851,12 @@ self: { mainProgram = "deeplearning_demonstration"; }) {}; - "deepseq_1_4_8_1" = callPackage + "deepseq_1_5_0_0" = callPackage ({ mkDerivation, array, base, ghc-prim }: mkDerivation { pname = "deepseq"; - version = "1.4.8.1"; - sha256 = "0p8nmji6r9171mrmnnsm1x396pz6q0vks0afy475vny73i1rx1a7"; + version = "1.5.0.0"; + sha256 = "12w6zflnkgn757psx1ips3fh3yxscil5x0jil6gir3dj9279mwd0"; libraryHaskellDepends = [ array base ghc-prim ]; testHaskellDepends = [ array base ghc-prim ]; description = "Deep evaluation of data structures"; @@ -79817,6 +83670,8 @@ self: { pname = "dependent-sum"; version = "0.4"; sha256 = "07hs9s78wiybwjwkal2yq65hdavq0gg1h2ld7wbph61s2nsfrpm8"; + revision = "1"; + editedCabalFile = "01l176qjk728kyjbmwanjw2avx14bkrr34ncs5daxrifw6wq00w7"; libraryHaskellDepends = [ base ]; description = "Dependent sum type"; license = lib.licenses.publicDomain; @@ -79868,14 +83723,14 @@ self: { license = lib.licenses.publicDomain; }) {}; - "dependent-sum-template_0_1_2_0" = callPackage + "dependent-sum-template_0_2_0_0" = callPackage ({ mkDerivation, base, constraints-extras, containers, mtl, some , template-haskell, th-abstraction }: mkDerivation { pname = "dependent-sum-template"; - version = "0.1.2.0"; - sha256 = "1xi8qpi16z06flj3pdy7fhiyrr0wlrh9kxrsj3glw0bwq2b1hyp1"; + version = "0.2.0.0"; + sha256 = "10as7ywsm83xaz6glxqpghla1zsqxqy980i1rdiiia1k3j1jsqy9"; libraryHaskellDepends = [ base containers mtl some template-haskell th-abstraction ]; @@ -80239,6 +84094,8 @@ self: { pname = "deriving-aeson"; version = "0.2.9"; sha256 = "0cqq4ri9dgqkdh9wybf3wf5zxb9nihql591bk1lacnzdyxfrgcn0"; + revision = "1"; + editedCabalFile = "14iqkk7vs0lb0sgq159z0xw95pa87r60i1f4m17gfh2gbbddcywm"; libraryHaskellDepends = [ aeson base ]; testHaskellDepends = [ aeson base bytestring ]; description = "Type driven generic aeson instance customisation"; @@ -80253,8 +84110,8 @@ self: { }: mkDerivation { pname = "deriving-compat"; - version = "0.6.3"; - sha256 = "0ak9csg3843wppjgdh2lvfhszdxgahscn4sbmxs2l0dr5l0rggxi"; + version = "0.6.5"; + sha256 = "1wrjapgp6sy2h8jql05ryyzmiadlkfy5qw1brka466j6ag7jwha7"; libraryHaskellDepends = [ base containers ghc-boot-th ghc-prim template-haskell th-abstraction transformers transformers-compat @@ -82004,6 +85861,8 @@ self: { pname = "diagrams-cairo"; version = "1.4.2.1"; sha256 = "0fqma8m4xrqha079aqqynk23y252x47xfzvb0gss4bvgdmwa0lzc"; + revision = "1"; + editedCabalFile = "11a0y68w0gnp7vfbqzh4wnmi514axx6zpcih5byrbanx4w5b0qhh"; libraryHaskellDepends = [ array base bytestring cairo colour containers data-default-class diagrams-core diagrams-lib filepath hashable JuicyPixels lens mtl @@ -82235,8 +86094,8 @@ self: { pname = "diagrams-lib"; version = "1.4.6"; sha256 = "1a0wl8lspwkby5x45j1wa1xq27bs67x5vwj8jzavym56a3f2pjcb"; - revision = "1"; - editedCabalFile = "1ph3rcxlanyahgszsw0zqqx799i9samw7pyrard24rxs0xp3981n"; + revision = "2"; + editedCabalFile = "0dxs255ryr1wl3b1ba797290xg0qf22j2n89047ispzsk0n6scjb"; libraryHaskellDepends = [ active adjunctions array base bytestring cereal colour containers data-default-class diagrams-core diagrams-solve directory @@ -83425,8 +87284,8 @@ self: { }: mkDerivation { pname = "diohsc"; - version = "0.1.14.2"; - sha256 = "08ckfq19xysyr2kah3yccxzld189gwp0g50za7xmxx94glxkwdas"; + version = "0.1.14.5"; + sha256 = "1xfn2n2mzxs9r2p7gprqv8r1rmpvafjlc2hww48c87ldlfknw0yq"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -83659,6 +87518,8 @@ self: { pname = "directory"; version = "1.3.7.1"; sha256 = "1z8frwbr0kdk47x3xasq7ifzcrwl7ryh1aqgf202xv4cakb8a9yw"; + revision = "1"; + editedCabalFile = "1ibdacpflpg4drd1vbrk15lzj5aqdhabncy4v5lvs0xkgw9by5kx"; libraryHaskellDepends = [ base filepath time unix ]; testHaskellDepends = [ base filepath time unix ]; description = "Platform-agnostic library for filesystem operations"; @@ -83980,20 +87841,20 @@ self: { "discord-haskell" = callPackage ({ mkDerivation, aeson, async, base, base64-bytestring, bytestring - , containers, data-default, emoji, http-api-data, http-client + , containers, data-default, emojis, http-api-data, http-client , iso8601-time, MonadRandom, mtl, network, req, safe-exceptions , scientific, text, time, unliftio, unordered-containers , websockets, wuss }: mkDerivation { pname = "discord-haskell"; - version = "1.15.5"; - sha256 = "17i4bnpg629lk0azvgh7cj41s3xv572yjf2xb94s6i89fl8vjlcz"; + version = "1.15.6"; + sha256 = "02vf4a9pz67s0l5y6il14vqsicifzj88ak8nw2sa758gccyjj6mv"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson async base base64-bytestring bytestring containers - data-default emoji http-api-data http-client iso8601-time + data-default emojis http-api-data http-client iso8601-time MonadRandom mtl network req safe-exceptions scientific text time unliftio unordered-containers websockets wuss ]; @@ -85283,32 +89144,6 @@ self: { }) {}; "dl-fedora" = callPackage - ({ mkDerivation, base, bytestring, directory, extra, filepath - , http-client, http-client-tls, http-directory, http-types - , optparse-applicative, regex-posix, simple-cmd, simple-cmd-args - , text, time, unix, xdg-userdirs - }: - mkDerivation { - pname = "dl-fedora"; - version = "0.9.5"; - sha256 = "105vy7bnwbvp6pv8p1lk96qp1asck5wk3677l56snxyqds5qfx0i"; - revision = "1"; - editedCabalFile = "1fwlb1lp4bxxr78rnkgb110xvl1v6c1ndadjn8hd7c9pcj6vr429"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring directory extra filepath http-client - http-client-tls http-directory http-types optparse-applicative - regex-posix simple-cmd simple-cmd-args text time unix xdg-userdirs - ]; - testHaskellDepends = [ base simple-cmd ]; - description = "Fedora image download tool"; - license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - mainProgram = "dl-fedora"; - }) {}; - - "dl-fedora_0_9_5_1" = callPackage ({ mkDerivation, ansi-wl-pprint, base, bytestring, directory, extra , filepath, http-client, http-client-tls, http-directory , http-types, optparse-applicative, regex-posix, simple-cmd @@ -86364,8 +90199,8 @@ self: { }: mkDerivation { pname = "doctest-extract"; - version = "0.1.1"; - sha256 = "15hizi4m879c2rahxxl78smpr5iqwry05jma58ldsypmwrlyxniz"; + version = "0.1.1.1"; + sha256 = "025qaisbdvyc5k5b585h8d5c8xm4qyy6r6740czrnq69g6lkksnz"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -87098,10 +90933,8 @@ self: { }: mkDerivation { pname = "dotparse"; - version = "0.0.2"; - sha256 = "0585iyxp8ykz55cqkf9ny6iwdf7yg4vws9kpyimp288nvw4jj9la"; - revision = "1"; - editedCabalFile = "1pvj5sf79bjki1zf3hxspvkmp2bnin8fa50n230j9744s99sb4rj"; + version = "0.0.3"; + sha256 = "024g3fkwp5042m8qmmli0y0dsqr9czvqbcjlvf61d6pi92cbm983"; libraryHaskellDepends = [ algebraic-graphs base bytestring chart-svg containers flatparse numhask-space optics-core process-extras string-interpolate @@ -88320,10 +92153,8 @@ self: { }: mkDerivation { pname = "dublincore-xml-conduit"; - version = "0.1.0.2"; - sha256 = "17jzyj49j88xwsz54higi81a6v8kvb8i338n5416z1ni475qsynl"; - revision = "1"; - editedCabalFile = "1rljgmi4jb6yhigfy394jb64q5f5qx7i1g68pw6zgq9ziz91p321"; + version = "0.1.0.3"; + sha256 = "1di6ilk2kxf7fh1lq488j061y4s1bk4dgm4y54ggixg37w5g23a0"; libraryHaskellDepends = [ base conduit conduit-combinators safe-exceptions text time timerep uri-bytestring xml-conduit xml-types @@ -89598,6 +93429,58 @@ self: { broken = true; }) {}; + "ebird-api" = callPackage + ({ mkDerivation, aeson, attoparsec, attoparsec-iso8601, base + , optics, servant, text, time + }: + mkDerivation { + pname = "ebird-api"; + version = "0.1.0.0"; + sha256 = "1b50rdg3d3cam7g4xiklanamrfxhm8dl8kcg4h5nb4yj5f75dsad"; + libraryHaskellDepends = [ + aeson attoparsec attoparsec-iso8601 base optics servant text time + ]; + description = "A Haskell description of the eBird API"; + license = lib.licenses.mit; + }) {}; + + "ebird-cli" = callPackage + ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring + , directory, ebird-api, ebird-client, filepath + , optparse-applicative, text + }: + mkDerivation { + pname = "ebird-cli"; + version = "0.1.0.0"; + sha256 = "0h21yfda4hhs0kx05yfr20qwzdhfm5p2h280x3nr2kgj9wq889wi"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-pretty attoparsec base bytestring directory ebird-api + ebird-client filepath optparse-applicative text + ]; + executableHaskellDepends = [ base ]; + description = "A command-line utility for interacting with the eBird API"; + license = lib.licenses.mit; + mainProgram = "ebird"; + }) {}; + + "ebird-client" = callPackage + ({ mkDerivation, base, data-default, ebird-api, http-client-tls + , optics, servant, servant-client, text + }: + mkDerivation { + pname = "ebird-client"; + version = "0.1.0.0"; + sha256 = "0gvrq86gj3ss74x3vnw9das8m6xzlblhfc25vphgzbywzwcrmvrk"; + libraryHaskellDepends = [ + base data-default ebird-api http-client-tls optics servant + servant-client text + ]; + description = "Client functions for querying the eBird API"; + license = lib.licenses.mit; + }) {}; + "ebml" = callPackage ({ mkDerivation, base, binary, bytestring, containers, split, tasty , tasty-golden, tasty-hunit, text @@ -90366,8 +94249,8 @@ self: { pname = "effectful-th"; version = "1.0.0.1"; sha256 = "19xbvfsglm4gsji303zj4f1nhhl4gls78cdbl4yalxm8c4m8iqsf"; - revision = "2"; - editedCabalFile = "15s8yvxf7sbi1vx5ylnrnxc1b694ndmdac0f5bi8v0cg6sjijkzw"; + revision = "3"; + editedCabalFile = "1v0p0rs241xqvqzvcqk3dyx68zyqbdqvfyprc0s4nhxzry8a9ka5"; libraryHaskellDepends = [ base containers effectful-core exceptions template-haskell th-abstraction @@ -90957,8 +94840,8 @@ self: { pname = "ekg-core"; version = "0.1.1.7"; sha256 = "04nv6iwzrb63fs97ixb0amj8p6zhabg3ggbrg4nbkq7xjhmkz0a5"; - revision = "2"; - editedCabalFile = "05h0jz42s1d3bjcvzbp3dv5rvil4ar244mdqdvzbf60z848ppygl"; + revision = "3"; + editedCabalFile = "1z5rhc6cd1jflax3g5c773vghwavid5va6zxmaxhdcs6lj9pgzdj"; libraryHaskellDepends = [ base containers ghc-prim text unordered-containers ]; @@ -91708,8 +95591,8 @@ self: { }: mkDerivation { pname = "elm-street"; - version = "0.2.0.0"; - sha256 = "1q8gyig2dsqxg2r139z99pnyy57zjzh9rnawxdk3g2wb175vpa2p"; + version = "0.2.1.1"; + sha256 = "0gv4ahpd7ds9yjy33pgqd1gixk36scz2r1h256jiynhgdyl81jlp"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -92049,8 +95932,8 @@ self: { }: mkDerivation { pname = "ema"; - version = "0.10.0.0"; - sha256 = "0ayr42l8jwnapr6hkawjv7x9xx2b6dm4bhj2f4qy70jg2w1j6cv9"; + version = "0.10.2.0"; + sha256 = "197rdjsxmwxairp09jviy0h51j89n3da291bgfh8wg3xfs618vqh"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson async base constraints-extras data-default dependent-sum @@ -92224,17 +96107,17 @@ self: { }) {}; "email-validate" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, doctest, hspec - , QuickCheck, template-haskell + ({ mkDerivation, attoparsec, base, bytestring, hspec, QuickCheck + , template-haskell }: mkDerivation { pname = "email-validate"; - version = "2.3.2.18"; - sha256 = "11bi5y5qmri62nl34nl5pv4zs59bjpjknw560yw5ds62gsi2sjcp"; + version = "2.3.2.19"; + sha256 = "0q535zm58798jz1avz2mnip5rj742l9rqc7isqmbfb1zkfaaqr68"; libraryHaskellDepends = [ attoparsec base bytestring template-haskell ]; - testHaskellDepends = [ base bytestring doctest hspec QuickCheck ]; + testHaskellDepends = [ base bytestring hspec QuickCheck ]; description = "Email address validation"; license = lib.licenses.bsd3; }) {}; @@ -92538,8 +96421,8 @@ self: { ({ mkDerivation, base, containers, HUnit, text }: mkDerivation { pname = "emojis"; - version = "0.1.2"; - sha256 = "09x2xrppwypi369y7rzf3ln2g7c3g9qfckn2gydxpfzglcp9rziw"; + version = "0.1.3"; + sha256 = "1y0sv7hq652xzrqdqdq31v7bcvani7ilj8xqh7cih104s32cczw1"; libraryHaskellDepends = [ base containers text ]; testHaskellDepends = [ base HUnit text ]; description = "Conversion between emoji characters and their names"; @@ -93494,8 +97377,8 @@ self: { }: mkDerivation { pname = "epub-metadata"; - version = "5.1"; - sha256 = "0xmlw4wpwlgyyms0lwvnnhs8mdwjrrlww3sxhvyrgmn0jz41zczj"; + version = "5.2"; + sha256 = "0gz8qkkphyarwnrccxp0ws87scgx6906ilcx0zs3chw65ai3v9gh"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -94317,8 +98200,8 @@ self: { }: mkDerivation { pname = "esqueleto"; - version = "3.5.10.0"; - sha256 = "0nbb6l4q22y8rwcjsrwqri3ndjn4rslpnglj3nkh00rixdm9jhsr"; + version = "3.5.10.1"; + sha256 = "09lwrvlxr6isfk1b9qkhsg268grbnjw7lqh3fxjpks84yq7ymc2y"; libraryHaskellDepends = [ aeson attoparsec base blaze-html bytestring conduit containers monad-logger persistent resourcet tagged template-haskell text time @@ -94371,6 +98254,29 @@ self: { hydraPlatforms = lib.platforms.none; }) {}; + "esqueleto-textsearch" = callPackage + ({ mkDerivation, base, data-default, esqueleto, hspec, HUnit + , monad-control, monad-logger, parsec, persistent + , persistent-postgresql, persistent-template, QuickCheck, resourcet + , text, transformers + }: + mkDerivation { + pname = "esqueleto-textsearch"; + version = "1.0.0.3"; + sha256 = "1jyyc691pydxhd1xp9bc9jdva09ak2280p40q7cmb9j2bj9bnpfk"; + libraryHaskellDepends = [ + base data-default esqueleto parsec persistent persistent-postgresql + text + ]; + testHaskellDepends = [ + base esqueleto hspec HUnit monad-control monad-logger persistent + persistent-postgresql persistent-template QuickCheck resourcet text + transformers + ]; + description = "PostgreSQL full text search for Esqueleto"; + license = lib.licenses.mit; + }) {}; + "ess" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -95608,6 +99514,43 @@ self: { broken = true; }) {}; + "eventstore_1_4_3" = callPackage + ({ mkDerivation, aeson, array, async, base, bifunctors, bytestring + , cereal, clock, containers, crypton-connection, dns + , dotnet-timespan, exceptions, fast-logger, file-embed, hashable + , hspec, http-client, interpolate, lifted-async, lifted-base + , monad-control, monad-logger, mono-traversable, mtl, protobuf + , random, safe, safe-exceptions, semigroups, stm, stm-chans + , streaming, tasty, tasty-hspec, tasty-hunit, text, time + , transformers-base, unordered-containers, uuid, vector + }: + mkDerivation { + pname = "eventstore"; + version = "1.4.3"; + sha256 = "12j6csdm0w6j1arhp4h4s8xwg7brsya3l6rjaz4msr89gk8xn342"; + libraryHaskellDepends = [ + aeson array base bifunctors bytestring cereal clock containers + crypton-connection dns dotnet-timespan exceptions fast-logger + hashable http-client interpolate lifted-async lifted-base + monad-control monad-logger mono-traversable mtl protobuf random + safe safe-exceptions semigroups stm stm-chans streaming text time + transformers-base unordered-containers uuid vector + ]; + testHaskellDepends = [ + aeson async base bytestring cereal containers crypton-connection + dotnet-timespan exceptions fast-logger file-embed hashable hspec + lifted-async lifted-base monad-control mono-traversable protobuf + safe safe-exceptions semigroups stm stm-chans streaming tasty + tasty-hspec tasty-hunit text time transformers-base + unordered-containers uuid vector + ]; + description = "EventStore TCP Client"; + license = lib.licenses.bsd3; + platforms = lib.platforms.x86_64; + hydraPlatforms = lib.platforms.none; + broken = true; + }) {}; + "eventuo11y" = callPackage ({ mkDerivation, base, exceptions, general-allocate, monad-control , mtl, primitive, time, transformers, transformers-base @@ -96844,6 +100787,8 @@ self: { pname = "explainable-predicates"; version = "0.1.2.3"; sha256 = "1ch86wb7bz9ydvrbdd2arskaj5pdc2x9vby4pbvnwv1r4d8n40la"; + revision = "1"; + editedCabalFile = "1qc1ys87q05q4mibqncvidb2v6988qk7fikhz52f40l3sbrydrcp"; libraryHaskellDepends = [ array base HUnit mono-traversable QuickCheck regex-tdfa syb template-haskell @@ -98046,6 +101991,35 @@ self: { broken = true; }) {}; + "faktory_1_1_2_5" = callPackage + ({ mkDerivation, aeson, aeson-casing, aeson-qq, async, base + , bytestring, crypton-connection, cryptonite, errors, hspec + , markdown-unlit, megaparsec, memory, mtl, network, random + , safe-exceptions, scanner, semigroups, text, time, unix + , unordered-containers + }: + mkDerivation { + pname = "faktory"; + version = "1.1.2.5"; + sha256 = "0ax5hk98k4v8vnhv6rvbjxhynqkzijb5l7dbaxp15mh6yd2y981f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-casing base bytestring crypton-connection cryptonite + errors megaparsec memory mtl network random safe-exceptions scanner + semigroups text time unix unordered-containers + ]; + executableHaskellDepends = [ aeson base safe-exceptions ]; + testHaskellDepends = [ + aeson aeson-qq async base hspec markdown-unlit mtl time + ]; + testToolDepends = [ markdown-unlit ]; + description = "Faktory Worker for Haskell"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; + }) {}; + "fallible" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { @@ -98244,14 +102218,14 @@ self: { }) {}; "fast-digits" = callPackage - ({ mkDerivation, base, integer-gmp, QuickCheck, smallcheck, tasty + ({ mkDerivation, base, ghc-bignum, QuickCheck, smallcheck, tasty , tasty-bench, tasty-quickcheck, tasty-smallcheck }: mkDerivation { pname = "fast-digits"; - version = "0.3.1.0"; - sha256 = "1q6kq5rrd4ivg4s8yhzqsc3gx4n554nz7285mgfqwxgfx8r4mmki"; - libraryHaskellDepends = [ base integer-gmp ]; + version = "0.3.2.0"; + sha256 = "1kwgqxfsm4y7f8cr4zzbwyd9fk6v10hykgqc271k41zf0h6k0pq8"; + libraryHaskellDepends = [ base ghc-bignum ]; testHaskellDepends = [ base QuickCheck smallcheck tasty tasty-quickcheck tasty-smallcheck ]; @@ -98320,6 +102294,18 @@ self: { license = lib.licenses.bsd3; }) {}; + "fast-myers-diff" = callPackage + ({ mkDerivation, base, dlist, hspec, text, vector }: + mkDerivation { + pname = "fast-myers-diff"; + version = "0.0.0"; + sha256 = "0biyv3x889c536dcb9ylglidlpi32v861586yhsjszshmpj38iz3"; + libraryHaskellDepends = [ base dlist text vector ]; + testHaskellDepends = [ base hspec text vector ]; + description = "A fast implementation of the Myers diff algorithm"; + license = lib.licenses.mit; + }) {}; + "fast-nats" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -99440,8 +103426,8 @@ self: { pname = "feed"; version = "1.3.2.1"; sha256 = "0marh7qmggq1z5339nid3gil7k786d3yk79b0rwfkxxaxmr41xd8"; - revision = "1"; - editedCabalFile = "032578cqdl7c7ibmbn92z6b72r8yvnwlhxwnr709pzdjc9qd4ghr"; + revision = "2"; + editedCabalFile = "16k73p6csq9spbiwxwkfwzms71if9fyjj4g4zpvpz8psj0n7wcdj"; enableSeparateDataOutput = true; libraryHaskellDepends = [ base base-compat bytestring old-locale old-time safe text time @@ -100066,8 +104052,8 @@ self: { }: mkDerivation { pname = "fficxx"; - version = "0.7.0.0"; - sha256 = "11ppih6vxvw9a5wmb7cni1jyprzbas1xy6i2zzqqxas3ik9i9sin"; + version = "0.7.0.1"; + sha256 = "0n95vdab8hz0g3y6sh6fvs2pngjb6iwjn3nfc5s1m4vj6256578b"; libraryHaskellDepends = [ aeson aeson-pretty array base bytestring Cabal containers data-default directory dotgen errors fficxx-runtime filepath @@ -100080,14 +104066,12 @@ self: { }) {}; "fficxx-runtime" = callPackage - ({ mkDerivation, base, bytestring, hashable, template-haskell }: + ({ mkDerivation, base, bytestring, template-haskell }: mkDerivation { pname = "fficxx-runtime"; - version = "0.7.0.0"; - sha256 = "1igchjkbmdl3skqnf5aqa4zv1bz5kk1wvgrxwvhq2xdshyflvzkk"; - libraryHaskellDepends = [ - base bytestring hashable template-haskell - ]; + version = "0.7.0.1"; + sha256 = "1idqfcg2qazzr477fmjbsga7pac98sx5lia1qxsnbdb15hblwjmy"; + libraryHaskellDepends = [ base bytestring template-haskell ]; description = "Runtime for fficxx-generated library"; license = lib.licenses.bsd2; }) {}; @@ -100633,8 +104617,8 @@ self: { ({ mkDerivation, async, base, process, unix }: mkDerivation { pname = "filelock"; - version = "0.1.1.6"; - sha256 = "122v6nv13rgi7nprdcpz8zc534i85yz6lshx0jx5mfqjam4zcx5g"; + version = "0.1.1.7"; + sha256 = "1041fjqk4i97qxiymm4vlcl27vqajxd8hf12sal7l2sgvxf68dad"; libraryHaskellDepends = [ base unix ]; testHaskellDepends = [ async base process ]; description = "Portable interface to file locking (flock / LockFileEx)"; @@ -101678,6 +105662,31 @@ self: { mainProgram = "fix-whitespace"; }) {}; + "fix-whitespace_0_1" = callPackage + ({ mkDerivation, base, bytestring, directory, extra, filepath + , filepattern, QuickCheck, tasty, tasty-golden, tasty-quickcheck + , text, transformers, yaml + }: + mkDerivation { + pname = "fix-whitespace"; + version = "0.1"; + sha256 = "0ml8ggis3a4hdgl069864bxqqm74bs9yzbyb7imp02g2zywqsr1g"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base text transformers ]; + executableHaskellDepends = [ + base directory extra filepath filepattern text yaml + ]; + testHaskellDepends = [ + base bytestring filepath QuickCheck tasty tasty-golden + tasty-quickcheck text + ]; + description = "Fixes whitespace issues"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + mainProgram = "fix-whitespace"; + }) {}; + "fixed" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -102414,6 +106423,32 @@ self: { maintainers = [ lib.maintainers.raehik ]; }) {}; + "flatparse_0_5_0_1" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, containers, gauge + , hspec, HUnit, integer-gmp, megaparsec, parsec, primitive + , QuickCheck, quickcheck-instances, template-haskell, utf8-string + }: + mkDerivation { + pname = "flatparse"; + version = "0.5.0.1"; + sha256 = "08km6zw6p3xhqcbmfgksc6rgws08zj828cnn21zqq3kriq47amvc"; + libraryHaskellDepends = [ + base bytestring containers integer-gmp template-haskell utf8-string + ]; + testHaskellDepends = [ + base bytestring hspec HUnit QuickCheck quickcheck-instances + utf8-string + ]; + benchmarkHaskellDepends = [ + attoparsec base bytestring gauge integer-gmp megaparsec parsec + primitive utf8-string + ]; + description = "High-performance parsing from strict bytestrings"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.raehik ]; + }) {}; + "flay" = callPackage ({ mkDerivation, base, constraints, tasty, tasty-quickcheck , transformers @@ -102757,8 +106792,8 @@ self: { }: mkDerivation { pname = "floskell"; - version = "0.10.7"; - sha256 = "0v52x4h52ack88f98n9yrnybmlmp2fqpsvsn9lbjq2krl2p1n2az"; + version = "0.10.8"; + sha256 = "1mj4c3q9jw161jzzlz7aa9lw58g6a8j9cnk3974n3bbwxbzqrfdq"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -103531,8 +107566,8 @@ self: { pname = "foldable1-classes-compat"; version = "0.1"; sha256 = "04pzjppmb195ffgxdzh8dh39z5dalr5wd6sifcnbg9p1b3rw6myh"; - revision = "2"; - editedCabalFile = "05sdpi0c503xgrgg2cg4922r5ja5154lfwzi9mgcmxncsk02a4l5"; + revision = "3"; + editedCabalFile = "0ggamxlpw70njjb7rc8xxb432ra7drmjnfgazb5zqbb1a32bjjfh"; libraryHaskellDepends = [ base containers ghc-prim tagged transformers ]; @@ -104809,6 +108844,8 @@ self: { pname = "fourmolu"; version = "0.13.1.0"; sha256 = "05vkqygrmgfgmsd8a4vxq8mq0c1z9cb3hja28aszd6llfv427dm1"; + revision = "1"; + editedCabalFile = "0jqgixycw8cv0q7amx5fs4ml9knql70ghg31br3hjkcy0vb2hi5v"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -105226,8 +109263,8 @@ self: { }: mkDerivation { pname = "freckle-app"; - version = "1.9.1.1"; - sha256 = "1nzij1lbcclyfq8g9lv21yn6m3d3d0gws27gl7yjvc0il6fljg0a"; + version = "1.9.2.1"; + sha256 = "1rpdfl09v88g5lliilhd5y6rkbq30dz3b899r5yj4cmqi16kbjb5"; libraryHaskellDepends = [ aeson aws-xray-client-persistent aws-xray-client-wai base Blammo bugsnag bytestring case-insensitive cassava conduit conduit-extra @@ -105304,8 +109341,8 @@ self: { pname = "free"; version = "5.2"; sha256 = "12agp68cwwixcwfwnvk2xamg34a2x6ax7s1naxv66chpi5y7z1kj"; - revision = "1"; - editedCabalFile = "0gpz9jlvdnds3988naqxn1dn1hr4zk3md1dhkky4hv0a2b69z7nh"; + revision = "2"; + editedCabalFile = "0gpw6n6pzy12ycwhi47cdzf90lxn94ajkqrvc12yvypzh2k5yaqk"; libraryHaskellDepends = [ base comonad containers distributive exceptions indexed-traversable mtl profunctors semigroupoids template-haskell th-abstraction @@ -106185,6 +110222,19 @@ self: { license = lib.licenses.bsd3; }) {}; + "from-env" = callPackage + ({ mkDerivation, base, casing, hspec, hspec-discover, text }: + mkDerivation { + pname = "from-env"; + version = "0.1.2.0"; + sha256 = "0xpqzk9vc9nsqimjh35w6xjhgkxxj2arzyj038nxv199045ffn1q"; + libraryHaskellDepends = [ base casing text ]; + testHaskellDepends = [ base hspec ]; + testToolDepends = [ hspec-discover ]; + description = "Provides a generic way to construct values from environment variables"; + license = lib.licenses.mit; + }) {}; + "from-sum" = callPackage ({ mkDerivation, base, doctest, Glob, transformers }: mkDerivation { @@ -109454,8 +113504,8 @@ self: { ({ mkDerivation, base, text }: mkDerivation { pname = "generic-data-functions"; - version = "0.1.1"; - sha256 = "15qnz56p58vximfd1r1pd2hq5y2npkklinr3mb6r00jp19s9hxmb"; + version = "0.2.0"; + sha256 = "1vpjj61lw0bqngxvsqlljq71b773krwiw80vdff0fy94y1d2arj8"; libraryHaskellDepends = [ base text ]; description = "Familiar functions lifted to generic data types"; license = lib.licenses.mit; @@ -109497,8 +113547,8 @@ self: { }: mkDerivation { pname = "generic-deriving"; - version = "1.14.4"; - sha256 = "0p0rv3z6icjw7f05arq6aqs6bx249544l0h2hvzwxm0yr6r8farp"; + version = "1.14.5"; + sha256 = "0jcl6cdf3pdg57yhf90rhdscszna0znvwhlffdcq3bnzkc2797za"; libraryHaskellDepends = [ base containers ghc-prim template-haskell th-abstraction ]; @@ -111544,6 +115594,8 @@ self: { pname = "ghc-bignum-orphans"; version = "0.1.1"; sha256 = "1ns129cx6b2di2w66r38cwiirqcpkvwk6xn64hzbm202p73igim4"; + revision = "1"; + editedCabalFile = "0d7zmxnwv8ql6isp5hwwqkb5xxa2nla9fb9rn2zby9dxhb4hlkwy"; libraryHaskellDepends = [ base ghc-bignum ]; description = "Backwards-compatible orphan instances for ghc-bignum"; license = lib.licenses.bsd3; @@ -112289,7 +116341,7 @@ self: { hydraPlatforms = lib.platforms.none; }) {}; - "ghc-lib_9_2_7_20230228" = callPackage + "ghc-lib_9_2_8_20230729" = callPackage ({ mkDerivation, alex, array, base, binary, bytestring, containers , deepseq, directory, exceptions, filepath, ghc-lib-parser , ghc-prim, happy, hpc, parsec, pretty, process, rts, time @@ -112297,8 +116349,8 @@ self: { }: mkDerivation { pname = "ghc-lib"; - version = "9.2.7.20230228"; - sha256 = "0z9bgkrvr7v12444cq4mkms5f0p5g3jpm2ni1ra0iqcw014r3w78"; + version = "9.2.8.20230729"; + sha256 = "0jxfbzz7w28jcfpd6x5480ml7zp7pza20mr2zqdvzjdidnxqvlml"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array base binary bytestring containers deepseq directory @@ -112319,8 +116371,8 @@ self: { }: mkDerivation { pname = "ghc-lib"; - version = "9.4.5.20230430"; - sha256 = "1f0jhzz51zwxprvswk9nfs4xd4i3zvh8pd4qd586gjq5j3virpf2"; + version = "9.4.6.20230808"; + sha256 = "1dyz7cby2ap4nii1g32f31hcqlxri880h33vr30sixms5zzy400j"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array base binary bytestring containers deepseq directory @@ -112374,15 +116426,15 @@ self: { hydraPlatforms = lib.platforms.none; }) {}; - "ghc-lib-parser_9_2_7_20230228" = callPackage + "ghc-lib-parser_9_2_8_20230729" = callPackage ({ mkDerivation, alex, array, base, binary, bytestring, containers , deepseq, directory, exceptions, filepath, ghc-prim, happy, parsec , pretty, process, time, transformers, unix }: mkDerivation { pname = "ghc-lib-parser"; - version = "9.2.7.20230228"; - sha256 = "1bny37dny7jv37mpynp3zwdlp8993xikc1c4p6h5f2zwjb7nx2ny"; + version = "9.2.8.20230729"; + sha256 = "0lk6s6ka0yhqph6wlijlyzgj47r5j7cw6mnn02vgvqdvlmrkwkkl"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array base binary bytestring containers deepseq directory @@ -112402,8 +116454,8 @@ self: { }: mkDerivation { pname = "ghc-lib-parser"; - version = "9.4.5.20230430"; - sha256 = "1f4d2mkk04an6i3xr5gi6qb1v5qg1lmwd5sfhl2by3pmy6vl8baw"; + version = "9.4.6.20230808"; + sha256 = "1s3lmmaj9aw1ykccqf7rdfnmsgbcilxavwgqm9xkhpfnzri06mqq"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array base binary bytestring containers deepseq directory @@ -112495,14 +116547,14 @@ self: { license = lib.licenses.bsd3; }) {}; - "ghc-lib-parser-ex_9_6_0_0" = callPackage + "ghc-lib-parser-ex_9_6_0_1" = callPackage ({ mkDerivation, base, bytestring, containers, directory, extra , filepath, ghc-lib-parser, tasty, tasty-hunit, uniplate }: mkDerivation { pname = "ghc-lib-parser-ex"; - version = "9.6.0.0"; - sha256 = "0k84r37xfj9xhx2rl4kxx9imlnwpmxvnf3kadh8ysz3pl4hknnl5"; + version = "9.6.0.1"; + sha256 = "0a9dmn5qhy0h1zxkq03mv6w9a2g1a1difxwvg55ix8ig1r6mbr0g"; libraryHaskellDepends = [ base bytestring containers ghc-lib-parser uniplate ]; @@ -113131,10 +117183,8 @@ self: { }: mkDerivation { pname = "ghc-tags-plugin"; - version = "0.6.0.0"; - sha256 = "0ir9cbvcc6gmhc6a8sn29qagw08xvsxy7qqab00hjyq2nca8xd4i"; - revision = "2"; - editedCabalFile = "18ic4sc88sgl915v53kzzmib38b4wd3z68ra5flcnrbbk6hgd9hq"; + version = "0.6.0.1"; + sha256 = "0wzk3slkla62n3yywckdcfyl3lizfh9psxxp0vai0699c6396cwq"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -113559,16 +117609,16 @@ self: { , monoid-subclasses, mtl, network-uri, opentelemetry , optparse-applicative, parallel, prettyprinter , prettyprinter-ansi-terminal, QuickCheck, random, regex-tdfa - , safe-exceptions, shake, sorted-list, sqlite-simple, stm - , stm-containers, syb, tasty, tasty-expected-failure, tasty-hunit - , tasty-quickcheck, tasty-rerun, text, text-rope, time + , row-types, safe-exceptions, shake, sorted-list, sqlite-simple + , stm, stm-containers, syb, tasty, tasty-expected-failure + , tasty-hunit, tasty-quickcheck, tasty-rerun, text, text-rope, time , transformers, unix, unliftio, unliftio-core, unordered-containers , vector }: mkDerivation { pname = "ghcide"; - version = "2.0.0.1"; - sha256 = "1yjsrnwriga1zfwygbr1301prijmi9wavniwlincdmf622aglzwj"; + version = "2.1.0.0"; + sha256 = "1886k12lad3gm5848380q6s08hb0fmfhhbsr0azi3n2vcycc1mcy"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -113581,9 +117631,9 @@ self: { hls-plugin-api implicit-hie implicit-hie-cradle lens list-t lsp lsp-types mtl opentelemetry optparse-applicative parallel prettyprinter prettyprinter-ansi-terminal random regex-tdfa - safe-exceptions sorted-list sqlite-simple stm stm-containers syb - text text-rope time transformers unix unliftio unliftio-core - unordered-containers vector + row-types safe-exceptions sorted-list sqlite-simple stm + stm-containers syb text text-rope time transformers unix unliftio + unliftio-core unordered-containers vector ]; executableHaskellDepends = [ base data-default extra gitrev hls-plugin-api lsp lsp-types @@ -113592,10 +117642,10 @@ self: { testHaskellDepends = [ aeson async base containers data-default directory extra filepath fuzzy ghc hls-plugin-api lens list-t lsp lsp-test lsp-types - monoid-subclasses network-uri QuickCheck random regex-tdfa shake - sqlite-simple stm stm-containers tasty tasty-expected-failure - tasty-hunit tasty-quickcheck tasty-rerun text text-rope - unordered-containers + monoid-subclasses mtl network-uri QuickCheck random regex-tdfa + row-types shake sqlite-simple stm stm-containers tasty + tasty-expected-failure tasty-hunit tasty-quickcheck tasty-rerun + text text-rope unordered-containers ]; testToolDepends = [ implicit-hie ]; description = "The core of an IDE"; @@ -113607,20 +117657,20 @@ self: { , data-default, deepseq, directory, extra, filepath, ghcide , ghcide-test-utils, hashable, hls-graph, hls-plugin-api , implicit-hie, lens, lsp-test, lsp-types, optparse-applicative - , parser-combinators, process, safe-exceptions, shake, tasty - , tasty-hunit, tasty-rerun, text + , parser-combinators, process, row-types, safe-exceptions, shake + , tasty, tasty-hunit, tasty-rerun, text }: mkDerivation { pname = "ghcide-bench"; - version = "2.0.0.1"; - sha256 = "10si4phkbds83x8br6cnq0ysp832yshf7k4p4p9a8fi9cmb3lczl"; + version = "2.1.0.0"; + sha256 = "1ka6yfjrdam9jlgmkmirpbqr4yjhm372l7qlfby11cvjcq13bbh0"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson async base binary bytestring deepseq directory extra filepath ghcide ghcide-test-utils hashable lens lsp-test lsp-types - optparse-applicative parser-combinators process safe-exceptions - shake text + optparse-applicative parser-combinators process row-types + safe-exceptions shake text ]; executableHaskellDepends = [ aeson base bytestring containers data-default directory extra @@ -115536,8 +119586,8 @@ self: { }: mkDerivation { pname = "ginger"; - version = "0.10.4.0"; - sha256 = "1bl2cmr8sp9vnsvqq5wa0c56yljrhj3s09k2j5gyhp5xsskxa0gp"; + version = "0.10.5.2"; + sha256 = "0nwcppbfxj3nvq3hm9gj8gh076399zkksj2k39nb9zdm8dws79sf"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -115547,8 +119597,8 @@ self: { transformers unordered-containers utf8-string vector ]; executableHaskellDepends = [ - aeson base bytestring data-default optparse-applicative process - text transformers unordered-containers utf8-string yaml + aeson base bytestring data-default mtl optparse-applicative process + text time transformers unordered-containers utf8-string yaml ]; testHaskellDepends = [ aeson base bytestring data-default mtl tasty tasty-hunit @@ -115750,19 +119800,19 @@ self: { ({ mkDerivation, aeson, ansi-terminal, async, attoparsec, aws, base , blaze-builder, bloomfilter, bup, byteable, bytestring, Cabal , case-insensitive, clientsession, concurrent-output, conduit - , connection, containers, crypto-api, cryptonite, curl - , data-default, DAV, dbus, deepseq, directory, disk-free-space - , dlist, edit-distance, exceptions, fdo-notify, feed, filepath - , filepath-bytestring, free, git, git-lfs, gnupg, hinotify - , http-client, http-client-restricted, http-client-tls - , http-conduit, http-types, IfElse, lsof, magic, memory, microlens - , monad-control, monad-logger, mountpoints, mtl, network - , network-bsd, network-info, network-multicast, network-uri - , old-locale, openssh, optparse-applicative, path-pieces, perl - , persistent, persistent-sqlite, persistent-template, process - , QuickCheck, random, regex-tdfa, resourcet, rsync, SafeSemaphore - , sandi, securemem, shakespeare, socks, split, stm, stm-chans - , tagsoup, tasty, tasty-hunit, tasty-quickcheck, tasty-rerun + , containers, crypto-api, cryptonite, curl, data-default, DAV, dbus + , deepseq, directory, disk-free-space, dlist, edit-distance + , exceptions, fdo-notify, feed, filepath, filepath-bytestring, free + , git, git-lfs, gnupg, hinotify, http-client + , http-client-restricted, http-client-tls, http-conduit, http-types + , IfElse, lsof, magic, memory, microlens, monad-control + , monad-logger, mountpoints, mtl, network, network-bsd + , network-info, network-multicast, network-uri, old-locale, openssh + , optparse-applicative, path-pieces, perl, persistent + , persistent-sqlite, persistent-template, process, QuickCheck + , random, regex-tdfa, resourcet, rsync, SafeSemaphore, sandi + , securemem, shakespeare, socks, split, stm, stm-chans, tagsoup + , tasty, tasty-hunit, tasty-quickcheck, tasty-rerun , template-haskell, text, time, torrent, transformers, unix , unix-compat, unliftio-core, unordered-containers, utf8-string , uuid, vector, wai, wai-extra, warp, warp-tls, wget, which, yesod @@ -115770,8 +119820,8 @@ self: { }: mkDerivation { pname = "git-annex"; - version = "10.20230626"; - sha256 = "1z16alb5193y4m70rq0bcxx1rn6lnlgswigdnv5lqybjq1fw1z99"; + version = "10.20230802"; + sha256 = "05vjc3wg7yxh37pwffc9afjrbmza3yjc8yzy4kcid5fbkpnrrs67"; configureFlags = [ "-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime" "-fnetworkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser" @@ -115780,16 +119830,15 @@ self: { isLibrary = false; isExecutable = true; setupHaskellDepends = [ - async base bytestring Cabal data-default directory exceptions - filepath filepath-bytestring IfElse process split time transformers - unix-compat utf8-string + async base bytestring Cabal directory exceptions filepath + filepath-bytestring process split time utf8-string ]; executableHaskellDepends = [ aeson ansi-terminal async attoparsec aws base blaze-builder bloomfilter byteable bytestring case-insensitive clientsession - concurrent-output conduit connection containers crypto-api - cryptonite data-default DAV dbus deepseq directory disk-free-space - dlist edit-distance exceptions fdo-notify feed filepath + concurrent-output conduit containers crypto-api cryptonite + data-default DAV dbus deepseq directory disk-free-space dlist + edit-distance exceptions fdo-notify feed filepath filepath-bytestring free git-lfs hinotify http-client http-client-restricted http-client-tls http-conduit http-types IfElse magic memory microlens monad-control monad-logger @@ -116054,17 +120103,18 @@ self: { "git-mediate" = callPackage ({ mkDerivation, ansi-terminal, base, base-compat, Diff, directory - , filepath, mtl, optparse-applicative, process, unix-compat + , filepath, generic-data, mtl, optparse-applicative, process + , unix-compat }: mkDerivation { pname = "git-mediate"; - version = "1.0.8.1"; - sha256 = "0ry437v01vc3d462zgg0jn113l24lcry5lgdv2y0rmyy6wfq8i7f"; + version = "1.0.9"; + sha256 = "1b9ad7hn9q87zlgg1bpyyvjm2qcss0p90s1v1wpwd55v21psg6i9"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - ansi-terminal base base-compat Diff directory filepath mtl - optparse-applicative process unix-compat + ansi-terminal base base-compat Diff directory filepath generic-data + mtl optparse-applicative process unix-compat ]; description = "Tool to help resolving git conflicts"; license = lib.licenses.gpl2Only; @@ -116154,8 +120204,8 @@ self: { }: mkDerivation { pname = "git-repair"; - version = "1.20220404"; - sha256 = "1rf0x9biyvmf808p5sq1ym3zdzgz003ravwpzpbnlr55wksxp1fc"; + version = "1.20230814"; + sha256 = "1aymf3aq51lng0scpd5bql3nm9azrnp85mvl44sj2qixawgyvkr1"; isLibrary = false; isExecutable = true; setupHaskellDepends = [ @@ -116353,8 +120403,8 @@ self: { pname = "github"; version = "0.29"; sha256 = "1hki9lvf5vcq980ky98vwc7rh86rgf3z8pvqfgpb6jinc7jylcpx"; - revision = "2"; - editedCabalFile = "1g3b2ppx2n5nxpn00sk6i413w99vmb95sz1v9g3anh9g9x6mgv21"; + revision = "3"; + editedCabalFile = "17dfigfd2p2h8zpvxfnr1y1ghl7a2f89k50rni4ibh1mn6x1j49r"; libraryHaskellDepends = [ aeson base base-compat base16-bytestring binary binary-instances bytestring containers cryptohash-sha1 deepseq deepseq-generics @@ -116480,6 +120530,8 @@ self: { pname = "github-rest"; version = "1.1.4"; sha256 = "156mqc9748ypinwm8xb46b40ysqpgyb5p2jaiyc34jpxd74g3148"; + revision = "1"; + editedCabalFile = "13h1s60mqp198vl7cf2pjhx957mg2jd3zrwdfyj79fp87vfsz0fp"; libraryHaskellDepends = [ aeson base bytestring http-client http-client-tls http-types jwt mtl scientific text time transformers unliftio unliftio-core @@ -117720,6 +121772,23 @@ self: { hydraPlatforms = lib.platforms.none; }) {}; + "gloss-raster-massiv" = callPackage + ({ mkDerivation, base, derive-storable, derive-storable-plugin + , generic-deriving, gloss, gloss-rendering, massiv + }: + mkDerivation { + pname = "gloss-raster-massiv"; + version = "0.1.1.5"; + sha256 = "19smcfb1wq3193m19zaj4i3sfv9k8y7z3npjyrfwv4i3x32gydbq"; + libraryHaskellDepends = [ + base derive-storable derive-storable-plugin generic-deriving gloss + gloss-rendering massiv + ]; + testHaskellDepends = [ base ]; + description = "Massiv-based alternative for gloss-raster"; + license = lib.licenses.bsd3; + }) {}; + "gloss-rendering" = callPackage ({ mkDerivation, base, bmp, bytestring, containers, GLUT, OpenGL }: mkDerivation { @@ -120769,8 +124838,8 @@ self: { pname = "goldplate"; version = "0.2.1.1"; sha256 = "1cisak5ng6v0iq24djyg4jp87diay02m0k2saac49saxmk29jsr6"; - revision = "2"; - editedCabalFile = "1gcdgybp6dgdr46p22cm84i9b1p1p0afil616ni7kqrsb7vgssjy"; + revision = "3"; + editedCabalFile = "17v3xw6jqx74nfzgd4snqgj560i0v822vfvwkp5rq0xn1a8p4nxz"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -122672,8 +126741,8 @@ self: { pname = "graphviz"; version = "2999.20.1.0"; sha256 = "0l0zxgb938hh09qirggbaskq79mgj3s081cnr42y5vm1rp1jir2s"; - revision = "2"; - editedCabalFile = "110yp1h2jrswllnx2ks772g10v9h4vqxc07b33wfaksyim9769bp"; + revision = "3"; + editedCabalFile = "16smnwf63z96myfw6yscxf1gpq3yn15634xh9xjkv4mf0zdl4f82"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -123608,6 +127677,24 @@ self: { broken = true; }) {}; + "growable-vector" = callPackage + ({ mkDerivation, base, contiguous, primitive, primitive-unlifted + , vector + }: + mkDerivation { + pname = "growable-vector"; + version = "0.1"; + sha256 = "03h9rl1h12nvgbav065ixl6r6kmdfkb32bzn23mkrmj5n0aacfh0"; + revision = "1"; + editedCabalFile = "0b9dbnk38sy4w29zhvn1qq0hjk5swwaw1qxs27s6knlvggrqxc9r"; + libraryHaskellDepends = [ + base contiguous primitive primitive-unlifted vector + ]; + testHaskellDepends = [ base contiguous vector ]; + description = "A contiguous growable array type"; + license = lib.licenses.mit; + }) {}; + "growler" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring , case-insensitive, either, http-types, lens, monad-control, mtl @@ -127087,6 +131174,8 @@ self: { pname = "hakyll"; version = "4.16.0.0"; sha256 = "1cxhi1k2fzxzgx6wvplq90jx7mqdzpnab0qjf763s8ih8bf6zck4"; + revision = "1"; + editedCabalFile = "1lwfhzxg74fqzf5g61bldhwfdh3dhls3mxf02rrd32vgv6c60hk8"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -127301,8 +131390,8 @@ self: { pname = "hakyll-convert"; version = "0.3.0.4"; sha256 = "09fqr05mvs0qs53psq97kn1s4axinwn1vr5d6af4sqj3zc5k6k39"; - revision = "2"; - editedCabalFile = "04j3f0p71y8hwx92daj31r609xj647r3v5yhxr9whzfn432wj7p1"; + revision = "3"; + editedCabalFile = "1nmcmc4vs4kwb521qvpxirgi1ykg8d6cx76d1v98prmrjnk2i9s5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -127676,8 +131765,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "halfsplit"; - version = "0.2.0.0"; - sha256 = "1z434f5zw6riqa6b5k0ism80j6wcx6sgvicz6wl9winz0mxzg9gv"; + version = "0.3.0.0"; + sha256 = "0yxi29jai57jgvw67c305lcmnyyh58a8pjz1yvmbmk5q20cmbkdc"; libraryHaskellDepends = [ base ]; description = "A library to provide special kind of two-column terminal output for Phladiprelio"; license = lib.licenses.mit; @@ -129962,10 +134051,8 @@ self: { }: mkDerivation { pname = "hashable"; - version = "1.4.2.0"; - sha256 = "1y73606pcrs7zi6f4f07a5rkhc6620n1bx0adpa6j7xqhbm00h0v"; - revision = "1"; - editedCabalFile = "12nmnmm2kyjalkvmz0l1l895ikc938lwppx8iykxnhamblrr4msq"; + version = "1.4.3.0"; + sha256 = "1xdhg8mn1i3bci7sbw9nx18sxadkz6fw7rfbnw4n4y4i51nb3vrj"; libraryHaskellDepends = [ base bytestring containers deepseq filepath ghc-bignum ghc-prim text @@ -130884,8 +134971,8 @@ self: { }: mkDerivation { pname = "haskell-ci"; - version = "0.16.3"; - sha256 = "1f1k64w6hdgfns3a1pa09h4064ihfck2pdwr7fn0yqpynd0q6cq3"; + version = "0.16.6"; + sha256 = "150s3lp49rpg9x3wcqhlcb70afgvxfnfyjwhiwmypqd02xxb29dk"; isLibrary = false; isExecutable = true; libraryHaskellDepends = [ @@ -131451,19 +135538,19 @@ self: { , hls-module-name-plugin, hls-ormolu-plugin , hls-overloaded-record-dot-plugin, hls-plugin-api , hls-pragmas-plugin, hls-qualify-imported-names-plugin - , hls-refactor-plugin, hls-refine-imports-plugin, hls-rename-plugin - , hls-retrie-plugin, hls-splice-plugin, hls-stylish-haskell-plugin - , hls-test-utils, hp2pretty, hspec-expectations, implicit-hie, lens - , lens-aeson, lsp, lsp-test, lsp-types, mtl, optparse-applicative - , optparse-simple, prettyprinter, process, regex-tdfa + , hls-refactor-plugin, hls-rename-plugin, hls-retrie-plugin + , hls-splice-plugin, hls-stylish-haskell-plugin, hls-test-utils + , hp2pretty, hspec-expectations, implicit-hie, lens, lens-aeson + , lsp, lsp-test, lsp-types, mtl, optparse-applicative + , optparse-simple, prettyprinter, process, regex-tdfa, row-types , safe-exceptions, shake, shake-bench, sqlite-simple, stm , temporary, text, transformers, unix, unliftio-core , unordered-containers, yaml }: mkDerivation { pname = "haskell-language-server"; - version = "2.0.0.1"; - sha256 = "1d3cgsr842czd92ay30yf9xm6bm1q6yvi6yjxsmb42mncdgh3wqr"; + version = "2.1.0.0"; + sha256 = "0i8fwc4m0rc5dzs1rp14g20cz2awm2x9pc46rhkcql3x89kn6knf"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -131478,10 +135565,10 @@ self: { hls-hlint-plugin hls-module-name-plugin hls-ormolu-plugin hls-overloaded-record-dot-plugin hls-plugin-api hls-pragmas-plugin hls-qualify-imported-names-plugin hls-refactor-plugin - hls-refine-imports-plugin hls-rename-plugin hls-retrie-plugin - hls-splice-plugin hls-stylish-haskell-plugin lsp - optparse-applicative optparse-simple prettyprinter process - safe-exceptions sqlite-simple text unordered-containers + hls-rename-plugin hls-retrie-plugin hls-splice-plugin + hls-stylish-haskell-plugin lsp optparse-applicative optparse-simple + prettyprinter process safe-exceptions sqlite-simple text + unordered-containers ]; executableHaskellDepends = [ aeson async base base16-bytestring binary bytestring containers @@ -131496,7 +135583,7 @@ self: { aeson base bytestring containers data-default deepseq directory extra filepath ghcide ghcide-test-utils hashable hls-plugin-api hls-refactor-plugin hls-test-utils hspec-expectations lens - lens-aeson lsp-test lsp-types prettyprinter process text + lens-aeson lsp-test lsp-types prettyprinter process row-types text unordered-containers ]; testToolDepends = [ ghcide ]; @@ -133632,7 +137719,7 @@ self: { license = lib.licenses.mit; }) {}; - "haskoin-core_0_22_0" = callPackage + "haskoin-core_1_0_2" = callPackage ({ mkDerivation, aeson, array, base, base16, base64, binary, bytes , bytestring, cereal, conduit, containers, cryptonite, deepseq , entropy, hashable, hspec, hspec-discover, HUnit, lens, lens-aeson @@ -133642,8 +137729,8 @@ self: { }: mkDerivation { pname = "haskoin-core"; - version = "0.22.0"; - sha256 = "1a8gzlpx7cgdsdsxxqmp7girm19aliszna08cpkk70jigkv2bmm9"; + version = "1.0.2"; + sha256 = "1abcidb3d18yb4h1p889xi2ffad0swbl0akvshlyvq6jm9gzqavy"; libraryHaskellDepends = [ aeson array base base16 binary bytes bytestring cereal conduit containers cryptonite deepseq entropy hashable hspec memory mtl @@ -133718,7 +137805,7 @@ self: { license = lib.licenses.mit; }) {}; - "haskoin-node_0_19_0" = callPackage + "haskoin-node_1_0_1" = callPackage ({ mkDerivation, base, base64, bytestring, cereal, conduit , conduit-extra, containers, data-default, hashable, haskoin-core , hspec, hspec-discover, HUnit, monad-logger, mtl, network, nqe @@ -133728,8 +137815,8 @@ self: { }: mkDerivation { pname = "haskoin-node"; - version = "0.19.0"; - sha256 = "1r6kr7jysqm9rzmckd51v50q8z2vn5ygl9xxfgr02r4xvs8phvxh"; + version = "1.0.1"; + sha256 = "162lbwqbivcz1fqhfn7g265qinfnai270x6fsk7xp9zysqib2jc4"; libraryHaskellDepends = [ base bytestring cereal conduit conduit-extra containers data-default hashable haskoin-core monad-logger mtl network nqe @@ -133812,8 +137899,8 @@ self: { }: mkDerivation { pname = "haskoin-store"; - version = "0.65.10"; - sha256 = "15zp67vxr8b593pgp989kfrp9cy8nybyyk8k5inqc42q7by1rz1y"; + version = "1.0.1"; + sha256 = "19i4m1hgf5gzlxq3pkq8wcn0z264b701xljzxsaq5zwdp9hvx9iy"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -133880,6 +137967,35 @@ self: { license = lib.licenses.mit; }) {}; + "haskoin-store-data_1_0_1" = callPackage + ({ mkDerivation, aeson, base, binary, bytes, bytestring, cereal + , containers, data-default, deepseq, hashable, haskoin-core, hspec + , hspec-discover, http-client, http-types, lens, mtl, network + , QuickCheck, scotty, string-conversions, text, time + , unordered-containers, vector, wreq + }: + mkDerivation { + pname = "haskoin-store-data"; + version = "1.0.1"; + sha256 = "19jax9bz68qakjrx54fbsqz5h1jiad4cmn3g7xln8q1qaq0pyl08"; + libraryHaskellDepends = [ + aeson base binary bytes bytestring cereal containers data-default + deepseq hashable haskoin-core http-client http-types lens mtl + network scotty string-conversions text time unordered-containers + vector wreq + ]; + testHaskellDepends = [ + aeson base binary bytes bytestring cereal containers data-default + deepseq hashable haskoin-core hspec http-client http-types lens mtl + network QuickCheck scotty string-conversions text time + unordered-containers vector wreq + ]; + testToolDepends = [ hspec-discover ]; + description = "Data for Haskoin Store"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + }) {}; + "haskoin-util" = callPackage ({ mkDerivation, base, binary, bytestring, containers, either , HUnit, mtl, QuickCheck, test-framework, test-framework-hunit @@ -134157,6 +138273,36 @@ self: { mainProgram = "hasktags"; }) {}; + "hasktags_0_73_0" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , HUnit, json, microlens-platform, optparse-applicative + , utf8-string + }: + mkDerivation { + pname = "hasktags"; + version = "0.73.0"; + sha256 = "0w0g50ggdmkpxgwqdwdbizw3cz8q86l1xwhvj3bjczh72q5xa0nh"; + revision = "1"; + editedCabalFile = "1zxfnrrcbkv5if0sk8qq9f7bbhm8b7xcmavvl0ad5j1zhk9nlqy5"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring directory filepath json microlens-platform + utf8-string + ]; + executableHaskellDepends = [ + base containers directory filepath optparse-applicative + ]; + testHaskellDepends = [ + base bytestring directory filepath HUnit json microlens-platform + utf8-string + ]; + description = "Produces ctags \"tags\" and etags \"TAGS\" files for Haskell programs"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + mainProgram = "hasktags"; + }) {}; + "hasktorch" = callPackage ({ mkDerivation, backprop, base, dimensions, generic-lens , ghc-typelits-natnormalise, hasktorch-ffi-th, hasktorch-ffi-thc @@ -134745,8 +138891,8 @@ self: { }: mkDerivation { pname = "hasql"; - version = "1.6.3"; - sha256 = "04d4pa248pffqsj032m69wkv11cn0mdfc21qfygk3dcb1yfh0nnj"; + version = "1.6.3.2"; + sha256 = "0b5sawrcbyqin48vfg2nyrk55qdsxpdn4gmdj3mdb30vnrkns9pq"; libraryHaskellDepends = [ aeson attoparsec base bytestring bytestring-strict-builder contravariant dlist hashable hashtables mtl network-ip @@ -136113,8 +140259,8 @@ self: { ({ mkDerivation, base, blake3, bytestring, mmap }: mkDerivation { pname = "hb3sum"; - version = "0"; - sha256 = "1kkh92br8aazm90zffx33my8bp7fw9ldsvjw0327fjll08hs8l3x"; + version = "0.0.0.1"; + sha256 = "0z41vkzjwxfqdfh26q5qrvzivjfvkk1wq7lcg511b35mi4f10znw"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base blake3 bytestring mmap ]; @@ -137701,7 +141847,7 @@ self: { maintainers = [ lib.maintainers.maralorn ]; }) {}; - "hedgehog_1_3" = callPackage + "hedgehog_1_4" = callPackage ({ mkDerivation, ansi-terminal, async, barbies, base, bytestring , concurrent-output, containers, deepseq, directory, erf , exceptions, lifted-async, mmorph, monad-control, mtl, pretty-show @@ -137711,8 +141857,8 @@ self: { }: mkDerivation { pname = "hedgehog"; - version = "1.3"; - sha256 = "1lkxmccjghdr7s02gwbzlhhwndpcrgi5a4a3yy2qq73xkcr3nqsg"; + version = "1.4"; + sha256 = "1sz685n2ljriqwfpfy57adbsc6gyrd4x7jmy628803rfalqznjpm"; libraryHaskellDepends = [ ansi-terminal async barbies base bytestring concurrent-output containers deepseq directory erf exceptions lifted-async mmorph @@ -137945,8 +142091,8 @@ self: { pname = "hedgehog-quickcheck"; version = "0.1.1"; sha256 = "1z2ja63wqz83qhwzh0zs98k502v8fjdpnsnhqk3srypx2nw5vdlp"; - revision = "5"; - editedCabalFile = "0l5fn4z4n80h99baxhsqsq3dqxli9hl0xwjgxbs12kz59w667ml1"; + revision = "6"; + editedCabalFile = "0ymfpbnywq83xbz1rmp8w3piikgvzriczwcvhir125nk50mgp0xz"; libraryHaskellDepends = [ base hedgehog QuickCheck transformers ]; description = "Use QuickCheck generators in Hedgehog and vice versa"; license = lib.licenses.bsd3; @@ -138183,6 +142329,8 @@ self: { pname = "hegg"; version = "0.4.0.0"; sha256 = "1nhxmf90965752skn3wcyjavi2amfxhlyrh60lmslm08w2wk14sk"; + revision = "1"; + editedCabalFile = "11c6ls164lr2bwjk0bbkzy8wiaazi8gd60pqyhf0in376ar2f6z5"; libraryHaskellDepends = [ base containers transformers ]; testHaskellDepends = [ base containers tasty tasty-hunit tasty-quickcheck @@ -138367,8 +142515,8 @@ self: { }: mkDerivation { pname = "heist-extra"; - version = "0.2.0.0"; - sha256 = "0rjlnj6ja7wfck1cpkfl9hh17kn0ghal8g4j8dh2dfzm6bnprqmk"; + version = "0.3.0.0"; + sha256 = "11gswvr4kmrci4xnl2sq0hhfg1mmrx8hnyd8lw74zv5vwhacl00m"; libraryHaskellDepends = [ base data-default filepath heist map-syntax mtl pandoc-types relude xmlhtml @@ -139103,16 +143251,17 @@ self: { }) {inherit (pkgs) boost; inherit (pkgs) nix;}; "here" = callPackage - ({ mkDerivation, base, haskell-src-meta, mtl, parsec - , template-haskell + ({ mkDerivation, base, bytestring, haskell-src-meta, hspec, mtl + , parsec, template-haskell, text }: mkDerivation { pname = "here"; - version = "1.2.13"; - sha256 = "001wfyvigl2xswqysnpignkl124hybf833875mkcsn8yp8krqvs0"; + version = "1.2.14"; + sha256 = "00gi4dji90z37igymyrwzwxq5d7q5dydb9lhr3iihin8sd83zvda"; libraryHaskellDepends = [ base haskell-src-meta mtl parsec template-haskell ]; + testHaskellDepends = [ base bytestring hspec text ]; description = "Here docs & interpolated strings via quasiquotation"; license = lib.licenses.bsd3; }) {}; @@ -140339,19 +144488,19 @@ self: { }) {}; "hgdal" = callPackage - ({ mkDerivation, base, fficxx, fficxx-runtime, gdal, stdcxx + ({ mkDerivation, base, fficxx-runtime, gdal, stdcxx , template-haskell }: mkDerivation { pname = "hgdal"; - version = "1.0.0.0"; - sha256 = "0zfqa1rgmkch0gj15w9gqavl1lyvyi2i7jsm3n7srnrrhfchxvfb"; + version = "1.0.0.1"; + sha256 = "1p2fr215mfihblzi0ky5w0wm8km0i3rh2z3pr8wjb777nkq09mn5"; libraryHaskellDepends = [ - base fficxx fficxx-runtime stdcxx template-haskell + base fficxx-runtime stdcxx template-haskell ]; libraryPkgconfigDepends = [ gdal ]; description = "Haskell binding to the GDAL library"; - license = lib.licenses.bsd2; + license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gdal;}; @@ -143864,8 +148013,8 @@ self: { }: mkDerivation { pname = "hls-alternate-number-format-plugin"; - version = "2.0.0.1"; - sha256 = "1vszwiy8jgs8a2ggz04kn0d0y59fx6ji110j8pj1z5k40yx1a26a"; + version = "2.1.0.0"; + sha256 = "0zp5y6k5hk9xkc45nz64w550af2a881jbzpl3nwif9w3qx7q0966"; libraryHaskellDepends = [ aeson base containers extra ghc-boot-th ghcide hie-compat hls-graph hls-plugin-api lens lsp mtl regex-tdfa syb text @@ -143893,14 +148042,14 @@ self: { "hls-cabal-fmt-plugin" = callPackage ({ mkDerivation, base, directory, filepath, ghcide, hls-plugin-api - , hls-test-utils, lens, lsp-types, process, text, transformers + , hls-test-utils, lens, lsp-types, mtl, process, text, transformers }: mkDerivation { pname = "hls-cabal-fmt-plugin"; - version = "2.0.0.1"; - sha256 = "1nmwnx2j1cnqsgw3bsdkdw8rp4dnf4fdclsr56viaz2qm4hqjc8k"; + version = "2.1.0.0"; + sha256 = "0qrjflj02y600y8793gwhkz13hgnl8dv1nmgv5ajlr59md0r8gvf"; libraryHaskellDepends = [ - base directory filepath ghcide hls-plugin-api lens lsp-types + base directory filepath ghcide hls-plugin-api lens lsp-types mtl process text transformers ]; testHaskellDepends = [ base directory filepath hls-test-utils ]; @@ -143909,23 +148058,26 @@ self: { }) {}; "hls-cabal-plugin" = callPackage - ({ mkDerivation, base, bytestring, Cabal, deepseq, directory, extra - , filepath, ghcide, hashable, hls-graph, hls-plugin-api - , hls-test-utils, lens, lsp, lsp-types, regex-tdfa, stm - , tasty-hunit, text, unordered-containers + ({ mkDerivation, base, bytestring, Cabal-syntax, containers + , deepseq, directory, extra, filepath, ghcide, hashable, hls-graph + , hls-plugin-api, hls-test-utils, lens, lsp, lsp-types, regex-tdfa + , row-types, stm, tasty-hunit, text, text-rope, transformers + , unordered-containers }: mkDerivation { pname = "hls-cabal-plugin"; - version = "2.0.0.1"; - sha256 = "17zccd6c16xq44al5iaj9zfp0gzjb03bclvyyr739ikh8vjb2j7b"; + version = "2.1.0.0"; + sha256 = "1qv70vj4znn5yswnsr41h313y8p6zx006hzqc7fzk3f2khz079rp"; libraryHaskellDepends = [ - base bytestring Cabal deepseq directory extra ghcide hashable - hls-graph hls-plugin-api lsp lsp-types regex-tdfa stm text + base bytestring Cabal-syntax containers deepseq directory extra + filepath ghcide hashable hls-graph hls-plugin-api lens lsp + lsp-types regex-tdfa stm text text-rope transformers unordered-containers ]; testHaskellDepends = [ - base bytestring filepath ghcide hls-test-utils lens lsp-types - tasty-hunit text + base bytestring Cabal-syntax directory filepath ghcide + hls-test-utils lens lsp lsp-types row-types tasty-hunit text + text-rope transformers ]; description = "Cabal integration plugin with Haskell Language Server"; license = lib.licenses.mit; @@ -143938,8 +148090,8 @@ self: { }: mkDerivation { pname = "hls-call-hierarchy-plugin"; - version = "2.0.0.1"; - sha256 = "1bc3mwvj9k7bnhpf69ikzz206hr4sqp7k57mlqs1bpillai9sk1c"; + version = "2.1.0.0"; + sha256 = "1rlnx62y6271mfka1qp48fhfkv89dz4qbhiz6n7sh9mp5bplkkbh"; libraryHaskellDepends = [ aeson base containers extra ghcide hiedb hls-plugin-api lens lsp sqlite-simple text unordered-containers @@ -143953,16 +148105,16 @@ self: { }) {}; "hls-change-type-signature-plugin" = callPackage - ({ mkDerivation, base, filepath, ghcide, hls-plugin-api + ({ mkDerivation, base, containers, filepath, ghcide, hls-plugin-api , hls-test-utils, lsp, lsp-types, QuickCheck, regex-tdfa, syb, text , transformers, unordered-containers }: mkDerivation { pname = "hls-change-type-signature-plugin"; - version = "2.0.0.1"; - sha256 = "1mjckkjsl8r3mln9lbw4f59fwkss0p8lz9n73nppadrf61x4fkm5"; + version = "2.1.0.0"; + sha256 = "1hv0hdgqxkxs3lad29ikpswal08gvql4bd9qwsq3p94brc59c6nz"; libraryHaskellDepends = [ - base ghcide hls-plugin-api lsp-types regex-tdfa syb text + base containers ghcide hls-plugin-api lsp-types regex-tdfa syb text transformers unordered-containers ]; testHaskellDepends = [ @@ -143975,20 +148127,20 @@ self: { "hls-class-plugin" = callPackage ({ mkDerivation, aeson, base, containers, deepseq, extra, filepath , ghc, ghc-boot-th, ghc-exactprint, ghcide, hls-graph - , hls-plugin-api, hls-test-utils, lens, lsp, lsp-types, text - , transformers + , hls-plugin-api, hls-test-utils, lens, lsp, lsp-types, mtl + , row-types, text, transformers }: mkDerivation { pname = "hls-class-plugin"; - version = "2.0.0.1"; - sha256 = "1hmp4apq1azds6bc2ri7i6q4d6aa52sz0c24pdwnzmb59blvgia4"; + version = "2.1.0.0"; + sha256 = "0m3aprgv1inmj9lq85g1vrngrqvgrq9r39jq2vy4rlm14cqlgjk2"; libraryHaskellDepends = [ aeson base containers deepseq extra ghc ghc-boot-th ghc-exactprint - ghcide hls-graph hls-plugin-api lens lsp text transformers + ghcide hls-graph hls-plugin-api lens lsp mtl text transformers ]; testHaskellDepends = [ aeson base filepath ghcide hls-plugin-api hls-test-utils lens - lsp-types text + lsp-types row-types text ]; description = "Class/instance management plugin for Haskell Language Server"; license = lib.licenses.asl20; @@ -144002,42 +148154,44 @@ self: { }: mkDerivation { pname = "hls-code-range-plugin"; - version = "2.0.0.1"; - sha256 = "19vwzjkl2ihpc2c6dwnfnb6vi0jafbpqwhq24hi61pgiciqvvm7i"; + version = "2.1.0.0"; + sha256 = "1jqh37gd5hqznx4gjvbx0k077bryic1j15b843l02vy9iymsmaj5"; libraryHaskellDepends = [ aeson base containers deepseq extra ghcide hashable hls-plugin-api lens lsp mtl semigroupoids text transformers vector ]; testHaskellDepends = [ - base bytestring containers filepath ghcide hls-test-utils lens lsp - lsp-test tasty-hunit text transformers vector + base bytestring containers filepath ghcide hls-plugin-api + hls-test-utils lens lsp lsp-test tasty-hunit text transformers + vector ]; description = "HLS Plugin to support smart selection range and Folding range"; license = lib.licenses.asl20; }) {}; "hls-eval-plugin" = callPackage - ({ mkDerivation, aeson, base, containers, data-default, deepseq - , Diff, directory, dlist, extra, filepath, ghc, ghc-boot-th - , ghc-paths, ghcide, hashable, hls-graph, hls-plugin-api - , hls-test-utils, lens, lsp, lsp-types, megaparsec, mtl - , parser-combinators, pretty-simple, QuickCheck, safe-exceptions - , text, time, transformers, unliftio, unordered-containers + ({ mkDerivation, aeson, base, bytestring, containers, data-default + , deepseq, Diff, directory, dlist, extra, filepath, ghc + , ghc-boot-th, ghc-paths, ghcide, hashable, hls-graph + , hls-plugin-api, hls-test-utils, lens, lsp, lsp-types, megaparsec + , mtl, parser-combinators, pretty-simple, QuickCheck, row-types + , safe-exceptions, text, time, transformers, unliftio + , unordered-containers }: mkDerivation { pname = "hls-eval-plugin"; - version = "2.0.0.1"; - sha256 = "0955f7zgd13c9nyx1s800aqk3fpysdfmhks9smlnaqg97b56yrzh"; + version = "2.1.0.0"; + sha256 = "1ic1giwwndmijbnbnani2xxfmxwpp66jh03l614wphvlxqchgf67"; libraryHaskellDepends = [ - aeson base containers data-default deepseq Diff directory dlist - extra filepath ghc ghc-boot-th ghc-paths ghcide hashable hls-graph - hls-plugin-api lens lsp lsp-types megaparsec mtl parser-combinators - pretty-simple QuickCheck safe-exceptions text time transformers - unliftio unordered-containers + aeson base bytestring containers data-default deepseq Diff + directory dlist extra filepath ghc ghc-boot-th ghc-paths ghcide + hashable hls-graph hls-plugin-api lens lsp lsp-types megaparsec mtl + parser-combinators pretty-simple QuickCheck safe-exceptions text + time transformers unliftio unordered-containers ]; testHaskellDepends = [ aeson base containers directory extra filepath hls-plugin-api - hls-test-utils lens lsp-types text + hls-test-utils lens lsp-types row-types text ]; description = "Eval plugin for Haskell Language Server"; license = lib.licenses.asl20; @@ -144068,8 +148222,8 @@ self: { }: mkDerivation { pname = "hls-explicit-fixity-plugin"; - version = "2.0.0.1"; - sha256 = "1mrmh8g5zws4aa222k4sfwgh8whvmh94lljnhhiylk65zd5ib7mm"; + version = "2.1.0.0"; + sha256 = "12kv301kwl84xd30fz7s3mmcyf51kypwfl7nhcqx7829xjrsxkbb"; libraryHaskellDepends = [ base containers deepseq extra ghc ghcide hashable hls-plugin-api lsp text transformers @@ -144080,19 +148234,22 @@ self: { }) {}; "hls-explicit-imports-plugin" = callPackage - ({ mkDerivation, aeson, base, containers, deepseq, filepath, ghc - , ghcide, hls-graph, hls-plugin-api, hls-test-utils, lsp, text + ({ mkDerivation, aeson, base, containers, deepseq, extra, filepath + , ghc, ghcide, hls-graph, hls-plugin-api, hls-test-utils, lens, lsp + , lsp-types, mtl, row-types, text, transformers , unordered-containers }: mkDerivation { pname = "hls-explicit-imports-plugin"; - version = "2.0.0.1"; - sha256 = "0h76wg03lqsas0dmpvk2kcccrrj07qn3kxxr1fwxs137m73pfn1x"; + version = "2.1.0.0"; + sha256 = "12aj8px0sbi5qh9q4381rmh3p9nyk2x5mk91i0mm5m9as4gwbk4k"; libraryHaskellDepends = [ aeson base containers deepseq ghc ghcide hls-graph hls-plugin-api - lsp text unordered-containers + lens lsp mtl text transformers unordered-containers + ]; + testHaskellDepends = [ + base extra filepath hls-test-utils lens lsp-types row-types text ]; - testHaskellDepends = [ base filepath hls-test-utils text ]; description = "Explicit imports plugin for Haskell Language Server"; license = lib.licenses.asl20; }) {}; @@ -144104,8 +148261,8 @@ self: { }: mkDerivation { pname = "hls-explicit-record-fields-plugin"; - version = "2.0.0.1"; - sha256 = "1543dvl9i1508f7fhl15skbnfcrs5vnpli0wixsckgn6297vz2g1"; + version = "2.1.0.0"; + sha256 = "0bnvc7sd6sn98m9y1kszlm7ca8ddwjl9106c895j28yq5pjxarff"; libraryHaskellDepends = [ base containers ghc-boot-th ghcide hls-graph hls-plugin-api lens lsp syb text transformers unordered-containers @@ -144119,14 +148276,14 @@ self: { "hls-floskell-plugin" = callPackage ({ mkDerivation, base, filepath, floskell, ghcide, hls-plugin-api - , hls-test-utils, lsp-types, text, transformers + , hls-test-utils, lsp-types, mtl, text, transformers }: mkDerivation { pname = "hls-floskell-plugin"; - version = "2.0.0.1"; - sha256 = "1mm9qavr3qlrjv13m7a982faya13qnh0ddpcgckaydy3pr8hsqrm"; + version = "2.1.0.0"; + sha256 = "13igdc86qpk7j9cbc9cpfyhpahi8wcnxar45wl81piaqahqpn581"; libraryHaskellDepends = [ - base floskell ghcide hls-plugin-api lsp-types text transformers + base floskell ghcide hls-plugin-api lsp-types mtl text transformers ]; testHaskellDepends = [ base filepath hls-test-utils ]; description = "Integration with the Floskell code formatter"; @@ -144136,15 +148293,15 @@ self: { "hls-fourmolu-plugin" = callPackage ({ mkDerivation, aeson, base, containers, filepath, fourmolu, ghc , ghc-boot-th, ghcide, hls-plugin-api, hls-test-utils, lens, lsp - , lsp-test, process-extras, text + , lsp-test, mtl, process-extras, text, transformers }: mkDerivation { pname = "hls-fourmolu-plugin"; - version = "2.0.0.1"; - sha256 = "199kk08kzyfpxqv02j1q56fkqbbyn40v1dj8ijazv90an97qw8y8"; + version = "2.1.0.0"; + sha256 = "0lrm6f1npqplf1sw5a3pc7qyzd3clys5dylbywh6m66h2bns96yf"; libraryHaskellDepends = [ base filepath fourmolu ghc ghc-boot-th ghcide hls-plugin-api lens - lsp process-extras text + lsp mtl process-extras text transformers ]; testHaskellDepends = [ aeson base containers filepath hls-plugin-api hls-test-utils @@ -144163,8 +148320,8 @@ self: { }: mkDerivation { pname = "hls-gadt-plugin"; - version = "2.0.0.1"; - sha256 = "1pabnzwh9zjyjidyri0mhn87dy2xhk7c88fj6r096riisj6wzp5g"; + version = "2.1.0.0"; + sha256 = "1lb5zk21gx620ywz1wb2034jvq4mc9amp2zmydfc1lwg5ad1my0b"; libraryHaskellDepends = [ aeson base containers extra ghc ghc-boot-th ghc-exactprint ghcide hls-plugin-api hls-refactor-plugin lens lsp mtl text transformers @@ -144186,8 +148343,8 @@ self: { }: mkDerivation { pname = "hls-graph"; - version = "2.0.0.1"; - sha256 = "0kbhhnbjka5xlsa5vq0vlxg210fz4j7w524a11g6375br3vjfqnc"; + version = "2.1.0.0"; + sha256 = "0gsi7a2qpi9qybaig2manbd7pggg429hzwbiwlfjrlnmd4apvs6x"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson async base bytestring containers deepseq directory exceptions @@ -144208,8 +148365,8 @@ self: { ({ mkDerivation }: mkDerivation { pname = "hls-haddock-comments-plugin"; - version = "2.0.0.1"; - sha256 = "1w80jkb4n61v1lvbkpimdwvxi4w9h72zi8lr6p7f8r9fd7l41x35"; + version = "2.1.0.0"; + sha256 = "0xf38ikm0r0sx4b25g3ns8q421swmy7an4fbs5dmv86r4pr3999m"; description = "Haddock comments plugin for Haskell Language Server"; license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; @@ -144221,40 +148378,40 @@ self: { , containers, data-default, deepseq, Diff, directory, extra , filepath, ghc-exactprint, ghc-lib-parser, ghc-lib-parser-ex , ghcide, hashable, hlint, hls-plugin-api, hls-test-utils, lens - , lsp, lsp-types, refact, regex-tdfa, stm, temporary, text - , transformers, unordered-containers + , lsp, lsp-types, mtl, refact, regex-tdfa, row-types, stm + , temporary, text, transformers, unordered-containers }: mkDerivation { pname = "hls-hlint-plugin"; - version = "2.0.0.1"; - sha256 = "0nrcr2xavq5fvq72mhl46y98w28hn64237z1kcx7i69svncwfpk0"; + version = "2.1.0.0"; + sha256 = "1z96hry723n236v8v05yzjrs5nxaxh58vqm2ixmkldpgf1i5qklq"; libraryHaskellDepends = [ aeson apply-refact base binary bytestring containers data-default deepseq Diff directory extra filepath ghc-exactprint ghc-lib-parser - ghc-lib-parser-ex ghcide hashable hlint hls-plugin-api lens lsp + ghc-lib-parser-ex ghcide hashable hlint hls-plugin-api lens lsp mtl refact regex-tdfa stm temporary text transformers unordered-containers ]; testHaskellDepends = [ aeson base containers filepath hls-plugin-api hls-test-utils lens - lsp-types text + lsp-types row-types text ]; description = "Hlint integration plugin with Haskell Language Server"; license = lib.licenses.asl20; }) {}; "hls-module-name-plugin" = callPackage - ({ mkDerivation, aeson, base, directory, filepath, ghcide - , hls-plugin-api, hls-test-utils, lsp, text, transformers + ({ mkDerivation, aeson, base, containers, directory, filepath + , ghcide, hls-plugin-api, hls-test-utils, lsp, text, transformers , unordered-containers }: mkDerivation { pname = "hls-module-name-plugin"; - version = "2.0.0.1"; - sha256 = "0y4x27mna7adjvk6scnmz28m1ks6nz7lkbp29x1k7k5nj42kzcph"; + version = "2.1.0.0"; + sha256 = "1h34cy75mbpdzv4a63k3kcwds7d0c0k87a5fcvgyxbi6a0pkchps"; libraryHaskellDepends = [ - aeson base directory filepath ghcide hls-plugin-api lsp text - transformers unordered-containers + aeson base containers directory filepath ghcide hls-plugin-api lsp + text transformers unordered-containers ]; testHaskellDepends = [ base filepath hls-test-utils ]; description = "Module name plugin for Haskell Language Server"; @@ -144262,63 +148419,67 @@ self: { }) {}; "hls-ormolu-plugin" = callPackage - ({ mkDerivation, base, filepath, ghc, ghc-boot-th, ghcide - , hls-plugin-api, hls-test-utils, lens, lsp, lsp-types, ormolu + ({ mkDerivation, base, extra, filepath, ghc, ghc-boot-th, ghcide + , hls-plugin-api, hls-test-utils, lens, lsp, lsp-types, mtl, ormolu , text }: mkDerivation { pname = "hls-ormolu-plugin"; - version = "2.0.0.1"; - sha256 = "0bdcaqcd2k8ha6wvp7w5wda1nsczcawc8n74i11s40r68qq3j0xq"; + version = "2.1.0.0"; + sha256 = "0ianjskwbvh3lshp74mwddc3b3k472zn8gpa1fwglhcixv1i4d92"; libraryHaskellDepends = [ - base filepath ghc ghc-boot-th ghcide hls-plugin-api lens lsp ormolu - text + base extra filepath ghc ghc-boot-th ghcide hls-plugin-api lens lsp + mtl ormolu text ]; testHaskellDepends = [ - base filepath hls-test-utils lsp-types ormolu + base filepath hls-test-utils lsp-types ormolu text ]; description = "Integration with the Ormolu code formatter"; license = lib.licenses.asl20; }) {}; "hls-overloaded-record-dot-plugin" = callPackage - ({ mkDerivation, base, containers, deepseq, filepath, ghc-boot-th - , ghcide, hls-graph, hls-plugin-api, hls-test-utils, lens, lsp - , lsp-test, syb, text, transformers, unordered-containers + ({ mkDerivation, aeson, base, containers, deepseq, filepath + , ghc-boot-th, ghcide, hls-graph, hls-plugin-api, hls-test-utils + , lens, lsp, lsp-test, lsp-types, row-types, syb, text + , transformers, unordered-containers }: mkDerivation { pname = "hls-overloaded-record-dot-plugin"; - version = "2.0.0.1"; - sha256 = "1ilmiw0lrd8rkmplwfm6lf5hckjg2ak7x2payr2x90bhhbjzg9fa"; + version = "2.1.0.0"; + sha256 = "1x575xdqlynghnirqik6w8mm84jdwlm8wvaigkhhnqw2fqii991i"; libraryHaskellDepends = [ - base containers deepseq ghc-boot-th ghcide hls-graph hls-plugin-api - lens lsp syb text transformers unordered-containers + aeson base containers deepseq ghc-boot-th ghcide hls-graph + hls-plugin-api lens lsp syb text transformers unordered-containers ]; testHaskellDepends = [ - base filepath hls-test-utils lsp-test text + base filepath ghcide hls-plugin-api hls-test-utils lens lsp-test + lsp-types row-types text ]; description = "Overloaded record dot plugin for Haskell Language Server"; license = lib.licenses.bsd3; }) {}; "hls-plugin-api" = callPackage - ({ mkDerivation, aeson, base, containers, criterion, data-default - , deepseq, dependent-map, dependent-sum, Diff, dlist, extra - , filepath, ghc, hashable, hls-graph, hw-fingertree, lens - , lens-aeson, lsp, lsp-types, megaparsec, opentelemetry - , optparse-applicative, random, random-fu, regex-tdfa, tasty - , tasty-hunit, tasty-quickcheck, tasty-rerun, text, transformers - , unix, unordered-containers + ({ mkDerivation, aeson, base, co-log-core, containers, criterion + , data-default, deepseq, dependent-map, dependent-sum, Diff, dlist + , extra, filepath, ghc, hashable, hls-graph, hw-fingertree, lens + , lens-aeson, lsp, lsp-types, megaparsec, mtl, opentelemetry + , optparse-applicative, prettyprinter, random, random-fu + , regex-tdfa, row-types, stm, tasty, tasty-hunit, tasty-quickcheck + , tasty-rerun, text, time, transformers, unix, unliftio + , unordered-containers }: mkDerivation { pname = "hls-plugin-api"; - version = "2.0.0.1"; - sha256 = "1rahsz7yl8vd7wcwag76dmmvnysagn6s6iabijlpp2v7z6kkr5y9"; + version = "2.1.0.0"; + sha256 = "0s2pnvakmvahwrxm7mvdrs5gmhds0i3yak6axfw8ng0f139lglhx"; libraryHaskellDepends = [ - aeson base containers data-default dependent-map dependent-sum Diff - dlist extra filepath ghc hashable hls-graph hw-fingertree lens - lens-aeson lsp megaparsec opentelemetry optparse-applicative - regex-tdfa text transformers unix unordered-containers + aeson base co-log-core containers data-default dependent-map + dependent-sum Diff dlist extra filepath ghc hashable hls-graph + hw-fingertree lens lens-aeson lsp megaparsec mtl opentelemetry + optparse-applicative prettyprinter regex-tdfa row-types stm text + time transformers unix unliftio unordered-containers ]; testHaskellDepends = [ base containers lsp-types tasty tasty-hunit tasty-quickcheck @@ -144332,20 +148493,20 @@ self: { }) {}; "hls-pragmas-plugin" = callPackage - ({ mkDerivation, base, containers, extra, filepath, fuzzy, ghc - , ghcide, hls-plugin-api, hls-test-utils, lens, lsp, lsp-types + ({ mkDerivation, aeson, base, containers, extra, filepath, fuzzy + , ghc, ghcide, hls-plugin-api, hls-test-utils, lens, lsp, lsp-types , text, transformers, unordered-containers }: mkDerivation { pname = "hls-pragmas-plugin"; - version = "2.0.0.1"; - sha256 = "1mgq746zz4v348218qn4cifjcxm85a6zxzizhzanpv3xg15g30m4"; + version = "2.1.0.0"; + sha256 = "1ny20jpzf7qhvc80pz80drjpkljr07nbriy5f9nfd5izhdkdbjp6"; libraryHaskellDepends = [ base containers extra fuzzy ghc ghcide hls-plugin-api lens lsp text transformers unordered-containers ]; testHaskellDepends = [ - base filepath hls-test-utils lens lsp-types text + aeson base filepath hls-test-utils lens lsp-types text ]; description = "Pragmas plugin for Haskell Language Server"; license = lib.licenses.asl20; @@ -144353,16 +148514,16 @@ self: { "hls-qualify-imported-names-plugin" = callPackage ({ mkDerivation, aeson, base, containers, deepseq, dlist, filepath - , ghc, ghcide, hls-graph, hls-plugin-api, hls-test-utils, lsp, text - , transformers, unordered-containers + , ghc, ghcide, hls-graph, hls-plugin-api, hls-test-utils, lens, lsp + , text, transformers, unordered-containers }: mkDerivation { pname = "hls-qualify-imported-names-plugin"; - version = "2.0.0.1"; - sha256 = "0ra3r31b0f5g38fwxm1j7bljwph00c7r963fn1py7g9ib2rv476k"; + version = "2.1.0.0"; + sha256 = "1lcc2ga264p79shd26rpl961rqr583p4ncgb38f1wx6c6jl7r251"; libraryHaskellDepends = [ aeson base containers deepseq dlist ghc ghcide hls-graph - hls-plugin-api lsp text transformers unordered-containers + hls-plugin-api lens lsp text transformers unordered-containers ]; testHaskellDepends = [ base filepath hls-test-utils text ]; description = "A Haskell Language Server plugin that qualifies imported names"; @@ -144374,19 +148535,20 @@ self: { , data-default, deepseq, directory, dlist, extra, filepath, ghc , ghc-boot, ghc-exactprint, ghcide, ghcide-test-utils, hls-graph , hls-plugin-api, hls-test-utils, lens, lsp, lsp-test, lsp-types - , mtl, network-uri, parser-combinators, regex-tdfa, retrie, shake - , syb, tasty, tasty-expected-failure, tasty-hunit, tasty-rerun - , text, text-rope, time, transformers, unordered-containers + , mtl, network-uri, parser-combinators, regex-applicative + , regex-tdfa, retrie, shake, syb, tasty, tasty-expected-failure + , tasty-hunit, tasty-rerun, text, text-rope, time, transformers + , unordered-containers }: mkDerivation { pname = "hls-refactor-plugin"; - version = "2.0.0.1"; - sha256 = "0ww7ijagiy4lyhsp5ljph09s6mixc0jyh7794cgmbxvwgc4nv89p"; + version = "2.1.0.0"; + sha256 = "0v96fgsx2hh45xiby0q9jxg2px927v7rynl4qq0mcrsidfwrwaqd"; libraryHaskellDepends = [ aeson base bytestring containers data-default deepseq dlist extra ghc ghc-boot ghc-exactprint ghcide hls-graph hls-plugin-api lens - lsp mtl regex-tdfa retrie syb text text-rope time transformers - unordered-containers + lsp mtl parser-combinators regex-applicative regex-tdfa retrie syb + text text-rope time transformers unordered-containers ]; testHaskellDepends = [ aeson async base containers data-default directory extra filepath @@ -144420,17 +148582,18 @@ self: { "hls-rename-plugin" = callPackage ({ mkDerivation, aeson, base, containers, extra, filepath, ghc , ghc-exactprint, ghcide, hashable, hie-compat, hiedb - , hls-plugin-api, hls-refactor-plugin, hls-test-utils, lsp - , lsp-types, mod, syb, text, transformers, unordered-containers + , hls-plugin-api, hls-refactor-plugin, hls-test-utils, lens, lsp + , lsp-types, mod, mtl, syb, text, transformers + , unordered-containers }: mkDerivation { pname = "hls-rename-plugin"; - version = "2.0.0.1"; - sha256 = "0b3c7h151rn9awkjc0iq2fnir3g9kvj79b4mdigrarzi8g695agn"; + version = "2.1.0.0"; + sha256 = "07bnc1d05hd8pjwxgxhrkrxaiqg2f082vzvh0c942ri2knpf6f2g"; libraryHaskellDepends = [ base containers extra ghc ghc-exactprint ghcide hashable hie-compat - hiedb hls-plugin-api hls-refactor-plugin lsp lsp-types mod syb text - transformers unordered-containers + hiedb hls-plugin-api hls-refactor-plugin lens lsp lsp-types mod mtl + syb text transformers unordered-containers ]; testHaskellDepends = [ aeson base containers filepath hls-plugin-api hls-test-utils @@ -144442,17 +148605,18 @@ self: { "hls-retrie-plugin" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, deepseq , directory, extra, filepath, ghc, ghcide, hashable, hls-plugin-api - , hls-refactor-plugin, hls-test-utils, lsp, lsp-types, retrie - , safe-exceptions, stm, text, transformers, unordered-containers + , hls-refactor-plugin, hls-test-utils, lens, lsp, lsp-types, mtl + , retrie, safe-exceptions, stm, text, transformers + , unordered-containers }: mkDerivation { pname = "hls-retrie-plugin"; - version = "2.0.0.1"; - sha256 = "0rq49n8ryp8x1jk9lwm2lcih0kx8lc0snlmclp6jky503n33vkf8"; + version = "2.1.0.0"; + sha256 = "1lq1bb73cp8sp846ib3apynk6iy3v1qn47hlj8spiq4lx7wa2an9"; libraryHaskellDepends = [ aeson base bytestring containers deepseq directory extra ghc ghcide - hashable hls-plugin-api hls-refactor-plugin lsp lsp-types retrie - safe-exceptions stm text transformers unordered-containers + hashable hls-plugin-api hls-refactor-plugin lens lsp lsp-types mtl + retrie safe-exceptions stm text transformers unordered-containers ]; testHaskellDepends = [ aeson base containers filepath hls-plugin-api hls-refactor-plugin @@ -144490,19 +148654,22 @@ self: { "hls-splice-plugin" = callPackage ({ mkDerivation, aeson, base, containers, dlist, extra, filepath , foldl, ghc, ghc-exactprint, ghcide, hls-plugin-api - , hls-refactor-plugin, hls-test-utils, lens, lsp, retrie, syb, text - , transformers, unliftio-core, unordered-containers + , hls-refactor-plugin, hls-test-utils, lens, lsp, mtl, retrie + , row-types, syb, text, transformers, unliftio-core + , unordered-containers }: mkDerivation { pname = "hls-splice-plugin"; - version = "2.0.0.1"; - sha256 = "0scjc5rd01ns8ifyscvzlxsb6r307j9p2cv8d77vh0akm6jrjiq3"; + version = "2.1.0.0"; + sha256 = "03b4l49g8c3z45c3my0b50m0960snip17w3p3r6wa04afm9r6g6f"; libraryHaskellDepends = [ aeson base containers dlist extra foldl ghc ghc-exactprint ghcide - hls-plugin-api hls-refactor-plugin lens lsp retrie syb text + hls-plugin-api hls-refactor-plugin lens lsp mtl retrie syb text transformers unliftio-core unordered-containers ]; - testHaskellDepends = [ base filepath hls-test-utils text ]; + testHaskellDepends = [ + base filepath hls-test-utils row-types text + ]; description = "HLS Plugin to expand TemplateHaskell Splices and QuasiQuotes"; license = lib.licenses.asl20; }) {}; @@ -144511,8 +148678,8 @@ self: { ({ mkDerivation }: mkDerivation { pname = "hls-stan-plugin"; - version = "2.0.0.1"; - sha256 = "12100gj5hiqsjx71syww45nv4pnrhq0a1zhpmh2ac1kslgdajij1"; + version = "2.1.0.0"; + sha256 = "0azlvn5mibmsj3w5pwfkgaydji58bb88bvhzyc49y7gzg24cm23s"; description = "Stan integration plugin with Haskell Language Server"; license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; @@ -144521,16 +148688,16 @@ self: { "hls-stylish-haskell-plugin" = callPackage ({ mkDerivation, base, directory, filepath, ghc, ghc-boot-th - , ghcide, hls-plugin-api, hls-test-utils, lsp-types + , ghcide, hls-plugin-api, hls-test-utils, lsp-types, mtl , stylish-haskell, text }: mkDerivation { pname = "hls-stylish-haskell-plugin"; - version = "2.0.0.1"; - sha256 = "0g2gpldgd9g9mpxnzbi5amsl9v277n2wdn1yd4bammq5dc80prvz"; + version = "2.1.0.0"; + sha256 = "025g6laxsffdp5alvilpq71slqkybwfak5ayr3m8h2ymylhf4vy3"; libraryHaskellDepends = [ base directory filepath ghc ghc-boot-th ghcide hls-plugin-api - lsp-types stylish-haskell text + lsp-types mtl stylish-haskell text ]; testHaskellDepends = [ base filepath hls-test-utils ]; description = "Integration with the Stylish Haskell code formatter"; @@ -144541,8 +148708,8 @@ self: { ({ mkDerivation }: mkDerivation { pname = "hls-tactics-plugin"; - version = "2.0.0.1"; - sha256 = "0kzyjsgc4j03ayjq79nd3kkv8x3nf0c9wk12m0fix0ik9fr35idh"; + version = "2.1.0.0"; + sha256 = "0mry1y7p26lraina8ynsrnm441wprrrp4wcl5ys6xs6z860kxaqf"; description = "Wingman plugin for Haskell Language Server"; license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; @@ -144552,19 +148719,20 @@ self: { "hls-test-utils" = callPackage ({ mkDerivation, aeson, async, base, blaze-markup, bytestring , containers, data-default, directory, extra, filepath, ghcide - , hls-graph, hls-plugin-api, lens, lsp, lsp-test, lsp-types, tasty - , tasty-expected-failure, tasty-golden, tasty-hunit, tasty-rerun - , temporary, text, unordered-containers + , hls-graph, hls-plugin-api, lens, lsp, lsp-test, lsp-types + , row-types, tasty, tasty-expected-failure, tasty-golden + , tasty-hunit, tasty-rerun, temporary, text, unordered-containers }: mkDerivation { pname = "hls-test-utils"; - version = "2.0.0.1"; - sha256 = "0s2418lv3kg5zs8zr4a1j90503c6alcpr6q5d7cs6ravdq6s0qvi"; + version = "2.1.0.0"; + sha256 = "1dmnbnlz4yk8w1ln6dc2gqv10gsjb8mkzv89lv3h3vc5q6pqimpw"; libraryHaskellDepends = [ aeson async base blaze-markup bytestring containers data-default directory extra filepath ghcide hls-graph hls-plugin-api lens lsp - lsp-test lsp-types tasty tasty-expected-failure tasty-golden - tasty-hunit tasty-rerun temporary text unordered-containers + lsp-test lsp-types row-types tasty tasty-expected-failure + tasty-golden tasty-hunit tasty-rerun temporary text + unordered-containers ]; description = "Utilities used in the tests of Haskell Language Server"; license = lib.licenses.asl20; @@ -147619,7 +151787,7 @@ self: { mainProgram = "hpack"; }) {}; - "hpack_0_35_3" = callPackage + "hpack_0_35_4" = callPackage ({ mkDerivation, aeson, base, bifunctors, bytestring, Cabal , containers, crypton, deepseq, directory, filepath, Glob, hspec , hspec-discover, http-client, http-client-tls, http-types, HUnit @@ -147629,8 +151797,8 @@ self: { }: mkDerivation { pname = "hpack"; - version = "0.35.3"; - sha256 = "1kh5v2hj4y3f73hjcqxr4q60cbva4lmi43iahrrnhj789h5b5k94"; + version = "0.35.4"; + sha256 = "13zz10c3nc9lfr6n7xjb4j05vin9r3mg1aribpz26sx6y83lpy7y"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -147933,14 +152101,14 @@ self: { license = lib.licenses.bsd3; }) {}; - "hpc_0_6_2_0" = callPackage + "hpc_0_7_0_0" = callPackage ({ mkDerivation, base, containers, deepseq, directory, filepath , time }: mkDerivation { pname = "hpc"; - version = "0.6.2.0"; - sha256 = "0igq0x3hsdfh4sw40ac8ld5xmsdqxykfz1jmzmwf142za6q7k964"; + version = "0.7.0.0"; + sha256 = "0y3d43r4wl07w9wl6fgrnmpi0lpv0ai61r4wb3cmnx2divqmm3q0"; libraryHaskellDepends = [ base containers deepseq directory filepath time ]; @@ -151803,38 +155971,16 @@ self: { }) {}; "hsini" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, parsec, tasty - , tasty-hunit, tasty-quickcheck, tasty-th + ({ mkDerivation, base, containers, mtl, parsec, tasty, tasty-hunit + , tasty-quickcheck, tasty-th }: mkDerivation { pname = "hsini"; - version = "0.5.1.2"; - sha256 = "1r6qksnrmk18ndxs5zaga8b7kvmk34kp0kh5hwqmq797qrlax9pa"; - revision = "3"; - editedCabalFile = "0wkx1syrx45ivs9lqhh7wfzwr1a0a3fq3km83amvl2a877yaqrjm"; - libraryHaskellDepends = [ base bytestring containers mtl parsec ]; + version = "0.5.2.1"; + sha256 = "1j4kcmqx4cq0zjimdn1fvm7a26phwl95bh405d68n5qc2qmncyyb"; + libraryHaskellDepends = [ base containers mtl parsec ]; testHaskellDepends = [ - base bytestring containers mtl parsec tasty tasty-hunit - tasty-quickcheck tasty-th - ]; - description = "ini configuration files"; - license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; - }) {}; - - "hsini_0_5_2" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, parsec, tasty - , tasty-hunit, tasty-quickcheck, tasty-th - }: - mkDerivation { - pname = "hsini"; - version = "0.5.2"; - sha256 = "14mybpf6qkcwrji9j2bvajqfb4p3ybi3n8rvblggpxd9fvm5gak2"; - libraryHaskellDepends = [ base bytestring containers mtl parsec ]; - testHaskellDepends = [ - base bytestring containers mtl parsec tasty tasty-hunit - tasty-quickcheck tasty-th + base parsec tasty tasty-hunit tasty-quickcheck tasty-th ]; description = "ini configuration files"; license = lib.licenses.bsd3; @@ -151994,8 +156140,8 @@ self: { pname = "hslogger"; version = "1.3.1.0"; sha256 = "0nyar9xcblx5jwks85y8f4jfy9k1h4ss6rvj4mdbiidrq3v688vz"; - revision = "7"; - editedCabalFile = "1jvh7zs0a2n47785bpq9bf3nba0gvbbvhhq1ban87prlhr0j3r2k"; + revision = "8"; + editedCabalFile = "10lqpvvg1fsv69v8v4nynwimln1flhd32d173pgpywmniaf40yy7"; libraryHaskellDepends = [ base bytestring containers deepseq network network-bsd old-locale time unix @@ -153112,17 +157258,17 @@ self: { "hspec-expectations-json" = callPackage ({ mkDerivation, aeson, aeson-pretty, aeson-qq, base, Diff, hspec - , HUnit, scientific, text, unordered-containers, vector + , HUnit, QuickCheck, scientific, text, unordered-containers, vector }: mkDerivation { pname = "hspec-expectations-json"; - version = "1.0.0.7"; - sha256 = "0042xf11w74bx7mlly2ca98778jqyb4p2l9iy92gyys85zn5219v"; + version = "1.0.2.0"; + sha256 = "0vl5brjbvjdbv2i4zq2ww7l0gg11l0ssmr4m7xqdn7as2798q1q1"; libraryHaskellDepends = [ aeson aeson-pretty base Diff HUnit scientific text unordered-containers vector ]; - testHaskellDepends = [ aeson-qq base hspec ]; + testHaskellDepends = [ aeson aeson-qq base hspec QuickCheck ]; description = "Hspec expectations for JSON Values"; license = lib.licenses.mit; }) {}; @@ -155825,6 +159971,23 @@ self: { license = lib.licenses.mit; }) {}; + "http-client-restricted_0_1_0" = callPackage + ({ mkDerivation, base, crypton-connection, data-default + , http-client, http-client-tls, network, network-bsd, utf8-string + }: + mkDerivation { + pname = "http-client-restricted"; + version = "0.1.0"; + sha256 = "12rzkzqgv32rw0z1m38d0mi5dbdn07j3myqp3wfdqfaygib0a6i4"; + libraryHaskellDepends = [ + base crypton-connection data-default http-client http-client-tls + network network-bsd utf8-string + ]; + description = "restricting the servers that http-client will use"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + }) {}; + "http-client-rustls" = callPackage ({ mkDerivation, base, bytestring, directory, filepath, http-client , http-types, network, port-utils, process, resourcet, rustls @@ -155907,7 +160070,7 @@ self: { license = lib.licenses.mit; }) {}; - "http-client-tls_0_3_6_2" = callPackage + "http-client-tls_0_3_6_3" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, containers , crypton, crypton-connection, data-default-class, exceptions , gauge, hspec, http-client, http-types, memory, network @@ -155915,14 +160078,16 @@ self: { }: mkDerivation { pname = "http-client-tls"; - version = "0.3.6.2"; - sha256 = "19mbjh1rh46zmra4s7ybqvmwffmp3z5x7xlw9hsv55rbxsz8whr8"; + version = "0.3.6.3"; + sha256 = "15chmlnq0nk2kxhk65r9xdjkzl94k0axcml89a5qkdiffwyzrp1q"; libraryHaskellDepends = [ base bytestring case-insensitive containers crypton crypton-connection data-default-class exceptions http-client http-types memory network network-uri text tls transformers ]; - testHaskellDepends = [ base hspec http-client http-types ]; + testHaskellDepends = [ + base crypton-connection hspec http-client http-types + ]; benchmarkHaskellDepends = [ base gauge http-client ]; doCheck = false; description = "http-client backend using the connection package and tls library"; @@ -156154,6 +160319,32 @@ self: { license = lib.licenses.bsd3; }) {}; + "http-download_0_2_1_0" = callPackage + ({ mkDerivation, base, base64-bytestring, bytestring, conduit + , conduit-extra, crypton, crypton-conduit, directory, exceptions + , filepath, hspec, hspec-discover, http-client, http-conduit + , http-types, memory, path, path-io, retry, rio, rio-prettyprint + }: + mkDerivation { + pname = "http-download"; + version = "0.2.1.0"; + sha256 = "09689xpjw0r66x6239ncpcjpxpjyl6jp8pg3zwmridp80fnx5ph5"; + libraryHaskellDepends = [ + base base64-bytestring bytestring conduit conduit-extra crypton + crypton-conduit directory exceptions filepath http-client + http-conduit http-types memory path path-io retry rio + rio-prettyprint + ]; + testHaskellDepends = [ + base crypton hspec hspec-discover http-client path path-io retry + rio rio-prettyprint + ]; + testToolDepends = [ hspec-discover ]; + description = "Verified downloads with retries"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "http-encodings" = callPackage ({ mkDerivation, base, bytestring, HTTP, iconv, mime, mtl, parsec , text, utf8-string, zlib @@ -156211,6 +160402,26 @@ self: { broken = true; }) {}; + "http-interchange" = callPackage + ({ mkDerivation, aeson, base, bytebuild, byteslice, bytesmith + , bytestring, contiguous, filepath, pretty-show, primitive, tasty + , tasty-golden, text + }: + mkDerivation { + pname = "http-interchange"; + version = "0.3.1.0"; + sha256 = "1qz7ims2n51db6lcv4lg22z0w36abgn9yzpqc7jd438xlc40j137"; + libraryHaskellDepends = [ + base bytebuild byteslice bytesmith contiguous primitive text + ]; + testHaskellDepends = [ + aeson base byteslice bytestring filepath pretty-show primitive + tasty tasty-golden + ]; + description = "Types and serialization for HTTP"; + license = lib.licenses.bsd3; + }) {}; + "http-io-streams" = callPackage ({ mkDerivation, aeson, aeson-pretty, attoparsec, base , base64-bytestring, binary, blaze-builder, brotli-streams @@ -156891,8 +161102,8 @@ self: { }: mkDerivation { pname = "http2-tls"; - version = "0.0.0"; - sha256 = "0grd4i90wpdrd8k0dvm56hzfc2pncx0hjfy7678v9w8r524rbcqh"; + version = "0.0.1"; + sha256 = "104qqirzg4q3gy4qw8d0mhp94xiavzzr6ziwnwjc1xm1zv8m37nb"; libraryHaskellDepends = [ base bytestring data-default-class http2 network network-run recv time-manager tls unliftio @@ -158580,15 +162791,15 @@ self: { license = lib.licenses.mit; }) {inherit (pkgs) rdkafka;}; - "hw-kafka-client_5_0_0" = callPackage + "hw-kafka-client_5_3_0" = callPackage ({ mkDerivation, base, bifunctors, bytestring, c2hs, containers , either, hspec, hspec-discover, monad-loops, rdkafka, text , transformers, unix }: mkDerivation { pname = "hw-kafka-client"; - version = "5.0.0"; - sha256 = "1w0c80pn43xg4rrmwwq37yya96fil124sdly9djjnxm1g0brwjz6"; + version = "5.3.0"; + sha256 = "0cs7pvp1fvh8k52x2qln7skynpbg9h71p83fgr7wbjf4xx0fs994"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -158757,6 +162968,8 @@ self: { pname = "hw-prim"; version = "0.6.3.2"; sha256 = "07a442g1fjzrfnz3y9mx3d2hv0ffjnbfdkmbiard8bn78vf5z80z"; + revision = "1"; + editedCabalFile = "1wga8ghc001lz9y76ffrdrpqkxpj1lz7qpkykfl66lsqf5pvng32"; libraryHaskellDepends = [ base bytestring deepseq ghc-prim mmap transformers unliftio-core vector @@ -159741,10 +163954,10 @@ self: { ({ mkDerivation, base, deepseq, primitive, semigroups, vector }: mkDerivation { pname = "hybrid-vectors"; - version = "0.2.3"; - sha256 = "0g3z482sd0j930ja3g9cyc4xnjby03d4cq8x56crsl61arr81r1c"; + version = "0.2.4"; + sha256 = "02sxx9263b9z4q9xh8d2mhg3g6mihydhzn7rjvpi3gp4bld2hg9m"; revision = "1"; - editedCabalFile = "0w0kajygmrbwds5cmfkvk50x51msds61cia3kch3q8rfvdc0v9gl"; + editedCabalFile = "023f8i8110nm051wi372b9m21lpkxmdp0zp37fmimama9yv8rmxl"; libraryHaskellDepends = [ base deepseq primitive semigroups vector ]; @@ -160250,8 +164463,8 @@ self: { pname = "hyperloglog"; version = "0.4.6"; sha256 = "0zwg4dhgasa9sx7pbjjjb9kz2bnhb3r2daij2b572cszv65l91nv"; - revision = "3"; - editedCabalFile = "12gq3v5xpw8rn0hr7kqc4ji7byw675mnhjawlvmz6d2hr8hdrcmd"; + revision = "4"; + editedCabalFile = "0bw7bj4kq7nsmzsmiwngg32zhjfpcy1zmzpslp9h0i1m12hxh4c9"; libraryHaskellDepends = [ approximate base binary bits bytes bytestring cereal cereal-vector comonad cpu deepseq distributive hashable lens reflection @@ -160316,27 +164529,25 @@ self: { "hypertypes" = callPackage ({ mkDerivation, array, base, base-compat, binary, constraints , containers, criterion, deepseq, generic-constraints, generic-data - , lattices, lens, monad-st, mtl, pretty, QuickCheck - , show-combinators, template-haskell, text, th-abstraction - , transformers + , lattices, lens, monad-st, mtl, pretty, show-combinators, tasty + , tasty-hunit, template-haskell, text, th-abstraction, transformers }: mkDerivation { pname = "hypertypes"; - version = "0.1.0.2"; - sha256 = "1zh10884a2fvj06ndh4hz2vk97x4nibr57b30kgq731x4q50zgfs"; + version = "0.2.2"; + sha256 = "1xnhrrd114hbzg6nvlzz0kkhs8y3f62dzi2yllk5x52588ik7dlj"; libraryHaskellDepends = [ array base base-compat binary constraints containers deepseq generic-constraints generic-data lattices lens monad-st mtl pretty - QuickCheck show-combinators template-haskell th-abstraction - transformers + show-combinators template-haskell th-abstraction transformers ]; testHaskellDepends = [ base constraints containers generic-constraints generic-data - lattices lens monad-st mtl pretty text transformers + lattices lens monad-st mtl pretty tasty tasty-hunit text ]; benchmarkHaskellDepends = [ base constraints containers criterion generic-constraints - generic-data lattices lens monad-st mtl pretty transformers + generic-data lattices lens monad-st mtl pretty ]; description = "Typed ASTs"; license = lib.licenses.bsd3; @@ -160841,6 +165052,8 @@ self: { pname = "iconv"; version = "0.4.1.3"; sha256 = "0m5m0ph5im443xcz60wm1zp98bnmf8l1b5gfllxwhjriwdl52hin"; + revision = "1"; + editedCabalFile = "001p7djangjm0d6fm3c7pfiw9w95a3dfipd3iaac42zk9bp6plsf"; libraryHaskellDepends = [ base bytestring ]; description = "String encoding conversion"; license = lib.licenses.bsd3; @@ -161349,8 +165562,8 @@ self: { ({ mkDerivation, base, ghc, ghc-tcplugin-api }: mkDerivation { pname = "if-instance"; - version = "0.3.1.0"; - sha256 = "112f1nz684wdsmbg5srizb4j9lizrfwgdzm1fpyb5vsbj3ib0fh9"; + version = "0.4.0.0"; + sha256 = "09q3l2fz2ym89cpah6gm3db47i2m7cwzz0wgz2c6sfycxfq6vzp8"; libraryHaskellDepends = [ base ghc ghc-tcplugin-api ]; testHaskellDepends = [ base ghc ]; doHaddock = false; @@ -161872,8 +166085,8 @@ self: { pname = "ilist"; version = "0.4.0.1"; sha256 = "016wa9n4glxcyvbifvfz2khk9i1i5wzfyl952vp1fhwpjrr8aj04"; - revision = "2"; - editedCabalFile = "0iq78rqv6w6vir85p921sawbvkn8lrlhfqd5yx4j2laljcmg2isr"; + revision = "3"; + editedCabalFile = "04c1cwli9bbh293ag8ak24lpdgqwpq19dbk2axf30byhygx1jq0j"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base hspec transformers ]; benchmarkHaskellDepends = [ @@ -163326,6 +167539,8 @@ self: { pname = "indigo"; version = "0.6.0"; sha256 = "071jrmyywzkc9i2m0m68kvvwdlimcwscgxq1ik1x42dx3x6mws68"; + revision = "1"; + editedCabalFile = "0a5hzj5m3qnbv7f4385lb3f308gj6r4pr8r0dncqqc6bav4gfqaf"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -163627,19 +167842,20 @@ self: { "inflections" = callPackage ({ mkDerivation, base, containers, exceptions, hspec - , hspec-megaparsec, megaparsec, QuickCheck, text + , hspec-discover, hspec-megaparsec, megaparsec, QuickCheck, text , unordered-containers }: mkDerivation { pname = "inflections"; - version = "0.4.0.6"; - sha256 = "1054v250p86gb1kvbrp60fzwds8v8nsqap1970j7hgk5hjwq1xj1"; + version = "0.4.0.7"; + sha256 = "0gafsyv4k45ff61jym29vp02zyirml8j9pkp507ssr0zz5jasgjr"; libraryHaskellDepends = [ base exceptions megaparsec text unordered-containers ]; testHaskellDepends = [ base containers hspec hspec-megaparsec megaparsec QuickCheck text ]; + testToolDepends = [ hspec-discover ]; description = "Inflections library for Haskell"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; @@ -164864,10 +169080,8 @@ self: { }: mkDerivation { pname = "intern"; - version = "0.9.4"; - sha256 = "00c74apc2ap1pjxmzk1c975zzqrc94p69l7v1fvfakv87mbrg8j0"; - revision = "3"; - editedCabalFile = "03a2z3vs7rk666qhpc5avrpga8pgz8giml743zw6i7470ikznrkg"; + version = "0.9.5"; + sha256 = "0jsylr86vlwn7pqzpkbja84br6i2r7d4a1vgqb3zcl92n306wzln"; libraryHaskellDepends = [ array base bytestring hashable text unordered-containers ]; @@ -165437,8 +169651,8 @@ self: { }: mkDerivation { pname = "invariant"; - version = "0.6.1"; - sha256 = "1w6ln343d72hx8q4i7h1ca7gfqyb79ghc3q2fxp9qkjmwsnr8wpv"; + version = "0.6.2"; + sha256 = "0271grdzgjfa86hvy50vrqh8k7n0l48i524k3bgyjmwa13l8ar63"; libraryHaskellDepends = [ array base bifunctors comonad containers contravariant ghc-prim profunctors StateVar stm tagged template-haskell th-abstraction @@ -165639,8 +169853,8 @@ self: { ({ mkDerivation, array, async, base, bytestring, mtl, stm, time }: mkDerivation { pname = "io-classes"; - version = "1.1.0.0"; - sha256 = "11mnmz3wvgp4vw3djlyyixxjzzqfk0qk4k3pfdywkbya2mb4n4mn"; + version = "1.2.0.0"; + sha256 = "136i6py474i1wv0fvav9qb9wrz3clljxixsd4z42qcrzpyry80nn"; libraryHaskellDepends = [ array async base bytestring mtl stm time ]; @@ -165654,8 +169868,8 @@ self: { pname = "io-classes-mtl"; version = "0.1.0.1"; sha256 = "0kqq14jgpkxaz106ahr20apizgdnxz2q0ih9kwgz0q4l1v106698"; - revision = "1"; - editedCabalFile = "0a5y6pch1pb7ml7cr22xl3gh6am7xcs87ad9yqamlpy4765g3ihh"; + revision = "2"; + editedCabalFile = "15z9s5gx4z9f9sg7fjgi83ri2hpk970sjjigwpdc7ask4f2j9ff4"; libraryHaskellDepends = [ array base io-classes mtl si-timers ]; description = "Experimental MTL instances for io-classes"; license = lib.licenses.asl20; @@ -165729,17 +169943,18 @@ self: { }) {}; "io-sim" = callPackage - ({ mkDerivation, array, base, containers, criterion, exceptions - , io-classes, nothunks, parallel, psqueues, QuickCheck, quiet - , si-timers, strict-stm, tasty, tasty-hunit, tasty-quickcheck, time + ({ mkDerivation, array, base, containers, criterion, deepseq + , exceptions, io-classes, nothunks, parallel, psqueues, QuickCheck + , quiet, si-timers, strict-stm, tasty, tasty-hunit + , tasty-quickcheck, time }: mkDerivation { pname = "io-sim"; - version = "1.1.0.0"; - sha256 = "0pb9b08mj6zm45r5ka67y3wjvk767bqha8gpyzvgld5p743pgn8i"; + version = "1.2.0.0"; + sha256 = "1h765ab2853k5q7pg0f9mp65925xs0j2sfm4c87qmiwgy53ac6gb"; libraryHaskellDepends = [ - base containers exceptions io-classes nothunks parallel psqueues - QuickCheck quiet si-timers strict-stm time + base containers deepseq exceptions io-classes nothunks parallel + psqueues QuickCheck quiet si-timers strict-stm time ]; testHaskellDepends = [ array base containers io-classes parallel QuickCheck si-timers @@ -167738,6 +171953,8 @@ self: { pname = "ixset-typed"; version = "0.5.1.0"; sha256 = "033rm2sik1qz4dmqlabjzwwqw38vj3hrwlkmhm554yvk1n3v9dq8"; + revision = "1"; + editedCabalFile = "16xmr7rlxjq89r2zsq88781r95ayf56bw36gial7hfjjcknqvgxk"; libraryHaskellDepends = [ base containers deepseq safecopy syb template-haskell ]; @@ -170108,10 +174325,8 @@ self: { }: mkDerivation { pname = "json-query"; - version = "0.2.1.0"; - sha256 = "1cla0jwqdbiifl7h8xr61nh0p2d9df77ds8npllik1n4b4wi5v5p"; - revision = "3"; - editedCabalFile = "14w6nrjg764l422zc6vbxrbqy0b8s5yynr2bf0lv674qipq7026k"; + version = "0.2.2.0"; + sha256 = "1k0rxrki8qa6gx0kqrhn9k98pn8hz3xg4kxn045r920bacfgsvi2"; libraryHaskellDepends = [ array-chunks base bytebuild bytestring contiguous json-syntax primitive primitive-unlifted profunctors scientific-notation @@ -170271,6 +174486,8 @@ self: { pname = "json-sop"; version = "0.2.2"; sha256 = "17smxridqmbj1ic2b25kv1byr07lw6phqa1jx98a5yccflwhvmq4"; + revision = "1"; + editedCabalFile = "0k5cxbqf062f2slqq57vm4qr32kd3xa8kn9zmvl06iwwb2fd6zjf"; libraryHaskellDepends = [ aeson base generics-sop lens-sop tagged text time transformers unordered-containers vector @@ -170369,12 +174586,12 @@ self: { }: mkDerivation { pname = "json-syntax"; - version = "0.2.4.0"; - sha256 = "0mhlz6w7zzp97l675jxcwlwhz1r10d4m5mqmdmq12qyamsj8l7hg"; + version = "0.2.6.1"; + sha256 = "0zhmzpxcv4jybw669kaz93am46l4da3v0sa14avmvw7z8yd08mqm"; libraryHaskellDepends = [ array-builder array-chunks base bytebuild byteslice bytesmith bytestring contiguous natural-arithmetic primitive run-st - scientific-notation text-short word-compat zigzag + scientific-notation text text-short word-compat zigzag ]; testHaskellDepends = [ aeson array-chunks base bytebuild byteslice bytestring containers @@ -171708,8 +175925,8 @@ self: { pname = "kansas-comet"; version = "0.4.1"; sha256 = "1j54rsqna8xrw1si8i74v0c9k4jjv8a2q001aa8sx4rxb7d1qbzy"; - revision = "6"; - editedCabalFile = "1zmxwppdm0mpc0sh8h35vrp259wig4k11gx1zx6s1089mncrp12f"; + revision = "7"; + editedCabalFile = "15i4wiqpxhmx80n5wavwgyvwlv8sn6z8xiq3h61rksjlacjq05jw"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson base containers data-default-class scotty stm text time @@ -173089,8 +177306,8 @@ self: { }: mkDerivation { pname = "keter"; - version = "2.1.1"; - sha256 = "1wsg1jd8gllbkxw6czh02c03s6lbfmw05giq2d4jp6vckpq3yqla"; + version = "2.1.2"; + sha256 = "1ig64jc9xk4cy1s5ip38nvdp1jsnp122gkrlnah8rh6pw56qcdfc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -173115,6 +177332,18 @@ self: { mainProgram = "keter"; }) {}; + "keuringsdienst" = callPackage + ({ mkDerivation, aeson, base, containers, HTF, text }: + mkDerivation { + pname = "keuringsdienst"; + version = "0.1.0.5"; + sha256 = "111f7895mqrvmdnpm7n4h7q1z5vyb6mdgy33abvrib9x0rsjyqbi"; + libraryHaskellDepends = [ aeson base containers text ]; + testHaskellDepends = [ aeson base containers HTF text ]; + description = "Data validation in Haskell made easy"; + license = lib.licenses.gpl3Only; + }) {}; + "kevin" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers , cprng-aes, damnpacket, data-default, exceptions, HTTP, lens, mtl @@ -173226,8 +177455,8 @@ self: { pname = "keycode"; version = "0.2.2"; sha256 = "046k8d1h5wwadf5z4pppjkc3g7v2zxlzb06s1xgixc42y5y41yan"; - revision = "9"; - editedCabalFile = "17k52bhfyx2vpj6wpsmfjw9gbxwhc1zi1jq005lfa7hgc4ly5iw2"; + revision = "10"; + editedCabalFile = "1k2vh3pyxvhfxcx8ra16dl6jrgc5hz0wc4hn9w20z347v1hr51nq"; libraryHaskellDepends = [ base containers ghc-prim template-haskell ]; @@ -173678,8 +177907,8 @@ self: { }: mkDerivation { pname = "kind-generics-th"; - version = "0.2.3.2"; - sha256 = "1k7byznlp3xnxmgw8dh5bgdjf3ygxki76xbq7m6w33bcd0gp98l4"; + version = "0.2.3.3"; + sha256 = "1jilhnjqgcnaip9i8n6mff0zs91m4b8aciy1a0pi9jvqz2jdaxrz"; libraryHaskellDepends = [ base fcf-family ghc-prim kind-generics template-haskell th-abstraction @@ -173690,13 +177919,13 @@ self: { }) {}; "kind-integer" = callPackage - ({ mkDerivation, base, singletons }: + ({ mkDerivation, base, singletons, singletons-base }: mkDerivation { pname = "kind-integer"; - version = "0.5"; - sha256 = "08xc905lhpxyimr6g4lk88z6w03bs7wqhamgggchvn63j9yk8pln"; - libraryHaskellDepends = [ base singletons ]; - testHaskellDepends = [ base ]; + version = "0.6.0"; + sha256 = "0kb7ys5ig24h1yrbalwyi14mb53g3djl61m1f412w3440yxk7kyb"; + libraryHaskellDepends = [ base singletons singletons-base ]; + testHaskellDepends = [ base singletons singletons-base ]; description = "Type-level integers. Like KnownNat, but for integers."; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; @@ -173704,13 +177933,17 @@ self: { }) {}; "kind-rational" = callPackage - ({ mkDerivation, base, kind-integer, singletons }: + ({ mkDerivation, base, kind-integer, singletons, singletons-base }: mkDerivation { pname = "kind-rational"; - version = "0.4"; - sha256 = "070jks3hwn59f9bm0y0fllyzx0qbps4i5bh96rnjnq3x8xlf3ad1"; - libraryHaskellDepends = [ base kind-integer singletons ]; - testHaskellDepends = [ base kind-integer singletons ]; + version = "0.5.0"; + sha256 = "17b13iyx8wpmfw07zi3rg5hc2d2bbfpw0qzgzdd0rz92krlj8wbx"; + libraryHaskellDepends = [ + base kind-integer singletons singletons-base + ]; + testHaskellDepends = [ + base kind-integer singletons singletons-base + ]; description = "Type-level rationals. Like KnownNat, but for rationals."; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; @@ -177998,6 +182231,26 @@ self: { license = lib.licenses.bsd3; }) {}; + "layered-graph-drawing" = callPackage + ({ mkDerivation, aeson, base, containers, data-ordlist + , intmap-graph, text, vector, vector-algorithms + }: + mkDerivation { + pname = "layered-graph-drawing"; + version = "0.1.0.0"; + sha256 = "01fivjy6nf2zvcc20djyklq71pcl7mp9167ijc8vjxn75vq5scls"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base containers data-ordlist intmap-graph text vector + vector-algorithms + ]; + executableHaskellDepends = [ base containers intmap-graph text ]; + description = "Layered Graph Drawing after Sugiyama"; + license = lib.licenses.bsd3; + mainProgram = "graph-drawing-exe"; + }) {}; + "layered-state" = callPackage ({ mkDerivation, base, constraints, criterion, data-default , deepseq, either, exceptions, kan-extensions, lens, lens-utils @@ -179662,28 +183915,28 @@ self: { }) {}; "lentil" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, csv, deepseq, directory - , dlist, filemanip, filepath, hspec, hspec-discover, megaparsec - , mtl, natural-sort, optparse-applicative, regex-tdfa, semigroups - , terminal-progress-bar, text + ({ mkDerivation, base, csv, deepseq, directory, dlist, filemanip + , filepath, hspec, hspec-discover, megaparsec, mtl, natural-sort + , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal + , regex-tdfa, semigroups, terminal-progress-bar, text }: mkDerivation { pname = "lentil"; - version = "1.5.5.4"; - sha256 = "04srkha0nv4k7gxma3q09p9zph6z6v0blpvqivn46g071zdf76cj"; - revision = "1"; - editedCabalFile = "1hnx82b18hys661im4gdv19nr5ngdhip23lrb2m61qqng473g83r"; + version = "1.5.6.0"; + sha256 = "0sjhhvrw3xbisg8mi1g67yj5r43wzyhqav61wm0ynb1wakc7das1"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - ansi-wl-pprint base csv deepseq directory dlist filemanip filepath - megaparsec mtl natural-sort optparse-applicative regex-tdfa - semigroups terminal-progress-bar text + base csv deepseq directory dlist filemanip filepath megaparsec mtl + natural-sort optparse-applicative prettyprinter + prettyprinter-ansi-terminal regex-tdfa semigroups + terminal-progress-bar text ]; testHaskellDepends = [ - ansi-wl-pprint base csv deepseq directory dlist filemanip filepath - hspec megaparsec mtl natural-sort optparse-applicative regex-tdfa - semigroups terminal-progress-bar text + base csv deepseq directory dlist filemanip filepath hspec + megaparsec mtl natural-sort optparse-applicative prettyprinter + prettyprinter-ansi-terminal regex-tdfa semigroups + terminal-progress-bar text ]; testToolDepends = [ hspec-discover ]; description = "frugal issue tracker"; @@ -180096,22 +184349,6 @@ self: { }) {}; "libBF" = callPackage - ({ mkDerivation, base, deepseq, hashable }: - mkDerivation { - pname = "libBF"; - version = "0.6.5.1"; - sha256 = "1l5qpdzzld6drbnh2lax5dw5whqbadr93lkps85m81xlsa5vvrin"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base deepseq hashable ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ base ]; - description = "A binding to the libBF library"; - license = lib.licenses.mit; - mainProgram = "bf-test"; - }) {}; - - "libBF_0_6_6" = callPackage ({ mkDerivation, base, deepseq, hashable }: mkDerivation { pname = "libBF"; @@ -180124,7 +184361,6 @@ self: { testHaskellDepends = [ base ]; description = "A binding to the libBF library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "bf-test"; }) {}; @@ -181082,8 +185318,8 @@ self: { }: mkDerivation { pname = "libsystemd-journal"; - version = "1.4.5"; - sha256 = "01lgfysjclmjhfd1vl36r6xb7zl5i1pzzivzi1qwnih01laa5ix8"; + version = "1.4.5.1"; + sha256 = "1d2pm38nq8bk55lva1y1p5789qdkcmmc1z376lnjs4f0jgb6pnhn"; libraryHaskellDepends = [ base bytestring hashable hsyslog pipes pipes-safe semigroups text transformers uniplate unix-bytestring unordered-containers uuid @@ -181417,8 +185653,8 @@ self: { pname = "lift-generics"; version = "0.2.1"; sha256 = "1qkzq8hcb6j15cslv577bmhjcxmljzsrryysdgd7r99kr3q445b4"; - revision = "4"; - editedCabalFile = "07nf6d1fb0vc3fyldrgysmbc67hd94npp5f2hclrr3rhklfm7k91"; + revision = "5"; + editedCabalFile = "142b5q8vcl583h23syr2i2i3ngcdxpfvds08h9cb0qqp789c5ys3"; libraryHaskellDepends = [ base generic-deriving ghc-prim template-haskell th-compat ]; @@ -182018,8 +186254,8 @@ self: { pname = "linear"; version = "1.22"; sha256 = "1ddr0c54kbi9bw7d62i6h3jiss3q0qmrdpkvckajz6qf5lwkxr6g"; - revision = "1"; - editedCabalFile = "1p94bq3pwqvj4qd1lp0w84k514xd9vib76gw0d16q1xh27c2sz4h"; + revision = "2"; + editedCabalFile = "0ksiy3rkswrwdlz0fsq26dmc4xvw0fm8y7ixdpvgdfpkjr255c8y"; libraryHaskellDepends = [ adjunctions base base-orphans binary bytes cereal containers deepseq distributive ghc-prim hashable indexed-traversable lens @@ -185113,8 +189349,8 @@ self: { pname = "log-domain"; version = "0.13.2"; sha256 = "0i4fx9k8cwjvmj0pgfnbici1b68zmif1jmmqxplpjqy32ksnyifa"; - revision = "2"; - editedCabalFile = "1hddf1q0gvpx7ic0qynjl9nk9g37kjh352yfk5axi36k49zfpw8d"; + revision = "3"; + editedCabalFile = "0sw686ym4m03glrgyka4m6amvv1iai6cd9f043jnr607phkdjd0k"; libraryHaskellDepends = [ base binary bytes cereal comonad deepseq distributive hashable semigroupoids semigroups vector @@ -186116,8 +190352,8 @@ self: { }: mkDerivation { pname = "looksee"; - version = "0.5.0"; - sha256 = "0da272255k0lj7y5vmi8y3zx015rhwsac7isvmywzhmgf7b6g3nv"; + version = "0.5.1"; + sha256 = "1cw0bfj9hkzv1vzcl0lp5wa2dyq96pf34jjzmqrvp1ak2mc7si7m"; libraryHaskellDepends = [ base bifunctors containers errata mmorph mtl recursion-schemes scientific text vector @@ -186126,7 +190362,7 @@ self: { base bifunctors containers errata mmorph mtl recursion-schemes scientific tasty tasty-hunit text vector ]; - description = "parser with looksee"; + description = "A simple text parser with decent errors"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; @@ -186354,8 +190590,10 @@ self: { }: mkDerivation { pname = "lorentz"; - version = "0.15.2"; - sha256 = "1jnh4prjkjbiy3qhwn0iz4immhhqrdhbnqagyiqlinbrpb3nzm8x"; + version = "0.16.0"; + sha256 = "1xwwjafpc3l16rrxvxnpap6j8ba7kdj5y76n0kkh15zz7qlwq8xd"; + revision = "1"; + editedCabalFile = "01mcsyg4wvv1i0a6m7c4vi2ad6wiy55m1hl3n0pbscbazzhklji6"; libraryHaskellDepends = [ aeson-pretty base-noprelude bimap bytestring constraints containers cryptonite data-default first-class-families lens morley @@ -186641,6 +190879,30 @@ self: { broken = true; }) {}; + "lsh" = callPackage + ({ mkDerivation, base, containers, directory, filepath + , optparse-applicative, time + }: + mkDerivation { + pname = "lsh"; + version = "0.1.0.0"; + sha256 = "16dw5637gbsxwv21wynic1cfc0rq11q8mrbslyy959hxxl0x6x18"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers directory filepath optparse-applicative time + ]; + executableHaskellDepends = [ + base containers directory filepath optparse-applicative time + ]; + testHaskellDepends = [ + base containers directory filepath optparse-applicative time + ]; + description = "A simple ls clone with modern, colored formatting"; + license = lib.licenses.bsd3; + mainProgram = "lsh-exe"; + }) {}; + "lsp_1_4_0_0" = callPackage ({ mkDerivation, aeson, async, attoparsec, base, bytestring , containers, data-default, exceptions, filepath, hashable @@ -186864,7 +191126,7 @@ self: { license = lib.licenses.mit; }) {}; - "lsp-types_2_0_1_0" = callPackage + "lsp-types_2_0_1_1" = callPackage ({ mkDerivation, aeson, base, binary, containers, data-default , deepseq, Diff, directory, dlist, exceptions, file-embed, filepath , hashable, hspec, hspec-discover, lens, mod, mtl, network-uri @@ -186873,8 +191135,8 @@ self: { }: mkDerivation { pname = "lsp-types"; - version = "2.0.1.0"; - sha256 = "1q7zc7jpyf44x10fk4wccq7k8sqq2fkqrx75v2rk1ahlklanqh2p"; + version = "2.0.1.1"; + sha256 = "0g5z28iy4ar96x5fmj1v8g60wz3drp39393161f2hjyp3kq8nfh0"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -187474,12 +191736,12 @@ self: { }: mkDerivation { pname = "lumberjack"; - version = "1.0.2.0"; - sha256 = "1yr1l1i5snmbc7h7aykc15mkynw5jcyzx9569hs4svcd92x0lf04"; + version = "1.0.3.0"; + sha256 = "05a4gvc47448crb0yn0fwi3y9bwdqlmnch839hljwpyamqvqwi8q"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base contravariant exceptions mtl prettyprinter + base contravariant exceptions prettyprinter prettyprinter-ansi-terminal text time ]; executableHaskellDepends = [ @@ -187740,14 +192002,16 @@ self: { }) {}; "lz4-bytes" = callPackage - ({ mkDerivation, base, byteslice, primitive, run-st, tasty - , tasty-quickcheck + ({ mkDerivation, base, byte-order, byteslice, primitive, run-st + , tasty, tasty-quickcheck }: mkDerivation { pname = "lz4-bytes"; - version = "0.1.0.2"; - sha256 = "1h0rfc273jszv3c83izkr7v8x7zqikbayf20yhahj2fl129ar362"; - libraryHaskellDepends = [ base byteslice primitive run-st ]; + version = "0.1.1.0"; + sha256 = "1h445dkw9cnzj01bm1hq5bvy48ybnwrd1ak2q7676ybvzl8qzffa"; + libraryHaskellDepends = [ + base byte-order byteslice primitive run-st + ]; testHaskellDepends = [ base byteslice primitive tasty tasty-quickcheck ]; @@ -191596,6 +195860,8 @@ self: { pname = "md5"; version = "0.1.0.0"; sha256 = "0h0m6wwis1p2dl689wllywp338yxyykghfnznsq6jfb9vdfavzs4"; + revision = "1"; + editedCabalFile = "1rz2gjn049yjcans2xw6npkh30vzp7qdv6ar4pzjhpjjhrl8aqzh"; libraryHaskellDepends = [ base bytebuild byteslice primitive ]; testHaskellDepends = [ base bytebuild byteslice natural-arithmetic primitive @@ -191711,8 +195977,8 @@ self: { }: mkDerivation { pname = "mealy"; - version = "0.4.2"; - sha256 = "11b4q93sfkjvcg2jpwxp68mvfhk167z08jx0hn0ia682sgvzh4p3"; + version = "0.4.3"; + sha256 = "1p5dn0phbvz5jfkhfifppdzz3jphcmifcqmrv9nxklw4cfcbgl6w"; libraryHaskellDepends = [ adjunctions base containers mwc-probability numhask numhask-array primitive profunctors tdigest text vector vector-algorithms @@ -193573,8 +197839,8 @@ self: { pname = "microaeson"; version = "0.1.0.1"; sha256 = "0rx5gm7apazc0sm65v687ab5106ximka9khizxq1lbckd2x0cq3q"; - revision = "5"; - editedCabalFile = "0ri4hmai3g1xn8vmmvvfbvvbgm0wjiwwjbp3ympidrkpnz9b9rq6"; + revision = "6"; + editedCabalFile = "0m32nnlldj2q261p6hwya9f9jqv6w33ws8wkizar4p2c1mv7lf2k"; libraryHaskellDepends = [ array base bytestring containers deepseq fail text ]; @@ -193722,6 +197988,27 @@ self: { license = lib.licenses.mit; }) {}; + "microlens-aeson_2_5_1" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, hashable + , microlens, scientific, tasty, tasty-hunit, text, vector + }: + mkDerivation { + pname = "microlens-aeson"; + version = "2.5.1"; + sha256 = "02p5qk1d7rn6h7vfvj0rzi05swd6fp04mhri60nysm6dv135qxgp"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring hashable microlens scientific text + vector + ]; + testHaskellDepends = [ + aeson base bytestring hashable microlens tasty tasty-hunit text + vector + ]; + description = "Law-abiding lenses for Aeson, using microlens"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + }) {}; + "microlens-contra" = callPackage ({ mkDerivation, base, microlens }: mkDerivation { @@ -194116,6 +198403,23 @@ self: { broken = true; }) {}; + "mig" = callPackage + ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring + , case-insensitive, containers, exceptions, http-api-data + , http-types, mtl, text, wai, warp + }: + mkDerivation { + pname = "mig"; + version = "0.1.0.3"; + sha256 = "1xkiq1ca2rxxzn8a8y0scc6w78lwqlxfdskjay38i1ghlq7brb5s"; + libraryHaskellDepends = [ + aeson base blaze-html blaze-markup bytestring case-insensitive + containers exceptions http-api-data http-types mtl text wai warp + ]; + description = "Build lightweight and composable servers"; + license = lib.licenses.bsd3; + }) {}; + "mighttpd" = callPackage ({ mkDerivation, base, bytestring, c10k, directory, filepath , haskell98, hdaemonize, hslogger, network, parsec, time, unix @@ -195377,16 +199681,16 @@ self: { }) {}; "mixed-types-num" = callPackage - ({ mkDerivation, base, collect-errors, hspec, hspec-smallcheck, mtl + ({ mkDerivation, base, collect-errors, hspec, hspec-smallcheck , QuickCheck, smallcheck, template-haskell }: mkDerivation { pname = "mixed-types-num"; - version = "0.5.11"; - sha256 = "15r1lj39fkddlqfda41cp76xr8ck4fkannszxi32j7a8lkjr2f21"; + version = "0.5.12"; + sha256 = "0kyzfh8p7v4b1mv4lqgwjf161lqwf2a1xkxy148x85fjc3c5x6mm"; libraryHaskellDepends = [ - base collect-errors hspec hspec-smallcheck mtl QuickCheck - smallcheck template-haskell + base collect-errors hspec hspec-smallcheck QuickCheck smallcheck + template-haskell ]; testHaskellDepends = [ base collect-errors hspec hspec-smallcheck QuickCheck smallcheck @@ -195944,19 +200248,19 @@ self: { "mmzk-typeid" = callPackage ({ mkDerivation, aeson, array, base, binary, bytestring, containers - , entropy, hashable, hspec, text, time, uuid-types + , entropy, hashable, hspec, random, text, time, uuid, uuid-types }: mkDerivation { pname = "mmzk-typeid"; - version = "0.3.1.0"; - sha256 = "08w1q8nrkb8rywzc3mkfjmwik4l4zw96vigjlr4znfz4ad40642y"; + version = "0.4.0.0"; + sha256 = "1311xy49fs6psciks8sii2k9agqr6pnvykvvxqjlmwp9gkys6rjc"; libraryHaskellDepends = [ - aeson array base binary bytestring entropy hashable text time - uuid-types + aeson array base binary bytestring entropy hashable random text + time uuid uuid-types ]; testHaskellDepends = [ aeson array base binary bytestring containers entropy hashable - hspec text time uuid-types + hspec random text time uuid uuid-types ]; description = "A TypeID implementation for Haskell"; license = lib.licenses.mit; @@ -196835,17 +201139,17 @@ self: { }) {}; "monad-dijkstra" = callPackage - ({ mkDerivation, base, containers, free, hlint, mtl, psqueues - , tasty, tasty-hspec, transformers + ({ mkDerivation, base, containers, free, hlint, hspec, mtl + , psqueues, tasty, tasty-hspec, transformers }: mkDerivation { pname = "monad-dijkstra"; - version = "0.1.1.3"; - sha256 = "13zb3k0rfqpzz3ngmkqhc4zfa6p8nzj9hcsnfilkn8179pwp0qkc"; + version = "0.1.1.4"; + sha256 = "1rj6gj8ipl7frk43ss1ki906fwp7qp2q1knjvk8d3n1ivgs5hmal"; libraryHaskellDepends = [ base containers free mtl psqueues transformers ]; - testHaskellDepends = [ base hlint tasty tasty-hspec ]; + testHaskellDepends = [ base hlint hspec tasty tasty-hspec ]; description = "A monad transformer for weighted graph searches"; license = lib.licenses.bsd3; }) {}; @@ -197500,6 +201804,26 @@ self: { license = lib.licenses.bsd3; }) {}; + "monad-peel_0_3" = callPackage + ({ mkDerivation, base, extensible-exceptions, HUnit, test-framework + , test-framework-hunit, transformers + }: + mkDerivation { + pname = "monad-peel"; + version = "0.3"; + sha256 = "1vk0g2ppksy9g2qcw5vccvszsmz5xsn7ajvvm9v9bwd4h17pvvby"; + libraryHaskellDepends = [ + base extensible-exceptions transformers + ]; + testHaskellDepends = [ + base extensible-exceptions HUnit test-framework + test-framework-hunit transformers + ]; + description = "Lift control operations like exception catching through monad transformers"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "monad-persist" = callPackage ({ mkDerivation, base, exceptions, hspec, monad-control , monad-logger, mtl, persistent, persistent-sqlite @@ -197884,8 +202208,8 @@ self: { }: mkDerivation { pname = "monad-validate"; - version = "1.2.0.1"; - sha256 = "1xhpqdslsjxqz6wv4qcvz0bnkzdq3f5z481bjhpi2n3wlyf9asyq"; + version = "1.3.0.0"; + sha256 = "04sz0g493319ddhhmk0maaxa0lvllvb2c2qdrc9j99hx53a2g4p7"; libraryHaskellDepends = [ base exceptions monad-control mtl transformers transformers-base ]; @@ -198204,6 +202528,23 @@ self: { license = lib.licenses.bsd2; }) {}; + "monadology_0_2" = callPackage + ({ mkDerivation, base, constraints, invariant, tasty, tasty-hunit + , text, transformers, type-rig, witness + }: + mkDerivation { + pname = "monadology"; + version = "0.2"; + sha256 = "0ad15iz8na5dm34p8gcy2jz9h6ayanfarzi4maiy263949vhm9pv"; + libraryHaskellDepends = [ + base constraints invariant transformers type-rig witness + ]; + testHaskellDepends = [ base tasty tasty-hunit text transformers ]; + description = "The best ideas in monad-related classes and types"; + license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + }) {}; + "monadplus" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -198710,8 +203051,8 @@ self: { }: mkDerivation { pname = "monoidal-functors"; - version = "0.2.2.0"; - sha256 = "1hc15igwwa177r1dkzv0h2zzjn1yf3s2zyl5vy6j71zzyzn3nwgb"; + version = "0.2.3.0"; + sha256 = "1818r1bip1bmazqi1fhvajp7gg4rp48rd2mjdib662gcq04lm3gw"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -198857,21 +203198,21 @@ self: { "monomer-hagrid" = callPackage ({ mkDerivation, base, bytestring, containers, data-default - , data-default-class, hspec, hspec-discover, ilist, lens, monomer - , mtl, stm, text + , data-default-class, hspec, hspec-discover, lens, monomer, mtl + , stm, text }: mkDerivation { pname = "monomer-hagrid"; - version = "0.3.0.1"; - sha256 = "1yqh5ixvhpsflqjy3snliy5653awy4awrsw0p39yyqxar72hzwrj"; + version = "0.3.1.0"; + sha256 = "12ym5n1gxyx6aavyikj3hi3biyz3jqsph2x6fsryc60qmhz667wm"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers data-default-class ilist lens monomer text + base containers data-default-class lens monomer text ]; testHaskellDepends = [ base bytestring containers data-default data-default-class hspec - ilist lens monomer mtl stm text + lens monomer mtl stm text ]; testToolDepends = [ hspec-discover ]; description = "A datagrid widget for the Monomer library"; @@ -199184,15 +203525,17 @@ self: { , haskeline, hex-text, hsblst, lens, megaparsec, memory , MonadRandom, morley-prelude, mtl, named, optparse-applicative , pairing, parser-combinators, prettyprinter, scientific - , semigroups, show-type, singletons, singletons-base, some, syb + , semigroups, singletons, singletons-base, some, syb , template-haskell, text, text-manipulate, th-lift-instances , th-reify-many, time, timerep, type-errors, uncaught-exception , unordered-containers, vector, vinyl, with-utf8 }: mkDerivation { pname = "morley"; - version = "1.19.2"; - sha256 = "04b7ldvqm4nxmzzbqykf72a7nnjlqhjbrhqsczz27nn84bjxmjql"; + version = "1.20.0"; + sha256 = "1m3182fyyy2wys47098ziafph4kiy0c9niss63zz5mn22079a6ca"; + revision = "1"; + editedCabalFile = "059wv6phz8zf3g3v6rq48337s50s4y8yx9bwzjan12qq5rxbh5zl"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -199202,11 +203545,10 @@ self: { elliptic-curve first-class-families galois-field generic-deriving gitrev haskeline hex-text hsblst lens megaparsec memory MonadRandom morley-prelude mtl named optparse-applicative pairing - parser-combinators prettyprinter scientific semigroups show-type - singletons singletons-base some syb template-haskell text - text-manipulate th-lift-instances th-reify-many time timerep - type-errors uncaught-exception unordered-containers vector vinyl - with-utf8 + parser-combinators prettyprinter scientific semigroups singletons + singletons-base some syb template-haskell text text-manipulate + th-lift-instances th-reify-many time timerep type-errors + uncaught-exception unordered-containers vector vinyl with-utf8 ]; executableHaskellDepends = [ base-noprelude morley-prelude optparse-applicative @@ -199230,8 +203572,10 @@ self: { }: mkDerivation { pname = "morley-client"; - version = "0.3.2"; - sha256 = "0wallg3ryj9mq9z2qz7fxijh4phhjvi1rblmkjpqcxg3naypznn3"; + version = "0.4.0"; + sha256 = "1r6xgwh7pm6ymjz1r27d78v03srw9wc5qfhcfqlwn6xd153nb2lr"; + revision = "1"; + editedCabalFile = "0rbcm0qix3ckyyikd36bdxfhnmxmpslxh30p6k36n9vmfh154ydl"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -199264,8 +203608,10 @@ self: { }: mkDerivation { pname = "morley-prelude"; - version = "0.5.3"; - sha256 = "104gffmi6knhzby3s2b8h6mwns5i5lm48915i0zc3839f1yg6dx0"; + version = "0.6.0"; + sha256 = "1a2md32q46xpqi0h6kjpydzy52i6790y6msqwr44mfbjkkm01d98"; + revision = "1"; + editedCabalFile = "0blakwag5bj57jfavj35czppz2czm9bc2g5bqwb08r615glq9ibr"; libraryHaskellDepends = [ base-noprelude bytestring Cabal int-cast lens OddWord prettyprinter template-haskell text time universum @@ -199286,6 +203632,8 @@ self: { pname = "morley-upgradeable"; version = "0.3"; sha256 = "1rl36a686n8dv3bnvnfcr1xiqb8c3diadk5m6wr6axj4h7w0a8cc"; + revision = "1"; + editedCabalFile = "1hnm4l92qr7vj5kyn6x9syqf2qd9ql0y4sgx2y1r71kahw1wb3gx"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -200482,8 +204830,8 @@ self: { }: mkDerivation { pname = "ms-auth"; - version = "0.3.0.0"; - sha256 = "0grvzd4mlz8fa1gyjil8jnjzdymq1iiz3qpmsrk7mavgbmrfndny"; + version = "0.4.0.0"; + sha256 = "1040l7gh039kcwiiqam2rqav3k6lfnhb0iw5s9ssfln0v3d9q8s0"; libraryHaskellDepends = [ aeson base bytestring containers directory hoauth2 http-client http-types jwt scientific scotty text time transformers unliftio @@ -200497,18 +204845,18 @@ self: { "ms-azure-api" = callPackage ({ mkDerivation, aeson, base, bytestring, conduit, containers - , exceptions, hoauth2, http-client-tls, http-types, modern-uri, req - , scientific, text, time, transformers, unliftio, xeno, xmlbf - , xmlbf-xeno + , exceptions, hoauth2, http-client, http-client-tls, http-types + , modern-uri, req, scientific, text, time, transformers, unliftio + , xeno, xmlbf, xmlbf-xeno }: mkDerivation { pname = "ms-azure-api"; - version = "0.4.0.0"; - sha256 = "0kda9lw77by7cdin7zk5rmv3n5a76dam0z6jjsnn94k7wm4h7mlg"; + version = "0.6.0.1"; + sha256 = "0ssl0qnkdcm3gp8bk8hvvb7cp79hwzb5fws7gadivzz1d99nwvgp"; libraryHaskellDepends = [ aeson base bytestring conduit containers exceptions hoauth2 - http-client-tls http-types modern-uri req scientific text time - transformers unliftio xeno xmlbf xmlbf-xeno + http-client http-client-tls http-types modern-uri req scientific + text time transformers unliftio xeno xmlbf xmlbf-xeno ]; description = "Microsoft Azure API"; license = lib.licenses.bsd3; @@ -203430,23 +207778,35 @@ self: { }) {}; "mysql-haskell" = callPackage - ({ mkDerivation, base, binary, binary-ieee754, binary-parsers - , blaze-textual, bytestring, bytestring-lexing, cryptonite - , io-streams, memory, monad-loops, network, scientific, tasty - , tasty-hunit, tcp-streams, text, time, tls, vector, wire-streams - , word24 + ({ mkDerivation, attoparsec, base, binary, blaze-textual + , bytestring, bytestring-lexing, case-insensitive, containers + , criterion, crypton, crypton-x509, crypton-x509-store + , crypton-x509-system, data-default-class, deepseq, directory + , filepath, http-types, io-streams, memory, monad-loops, network + , pem, QuickCheck, quickcheck-instances, scanner, scientific, tasty + , tasty-hunit, tasty-quickcheck, text, time, tls + , unordered-containers, vector, word-compat }: mkDerivation { pname = "mysql-haskell"; - version = "0.8.4.3"; - sha256 = "1gjq8spl6s05kcckw78d1wi2k8blr25mbvicd1kwr653lj2d3w74"; + version = "1.1.2"; + sha256 = "10mscgpml293kpjj9f6cap55pqxjcbp7hspigmdpm806ir6119ga"; libraryHaskellDepends = [ - base binary binary-ieee754 binary-parsers blaze-textual bytestring - bytestring-lexing cryptonite io-streams memory monad-loops network - scientific tcp-streams text time tls vector wire-streams word24 + base binary blaze-textual bytestring bytestring-lexing crypton + crypton-x509 crypton-x509-store crypton-x509-system + data-default-class deepseq io-streams memory monad-loops network + pem scientific text time tls vector word-compat ]; testHaskellDepends = [ - base bytestring io-streams tasty tasty-hunit text time vector + attoparsec base binary bytestring bytestring-lexing containers + deepseq directory filepath io-streams network QuickCheck + quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck + text time unordered-containers vector + ]; + benchmarkHaskellDepends = [ + attoparsec base binary bytestring case-insensitive criterion + deepseq directory filepath http-types scanner scientific text + unordered-containers vector ]; description = "pure haskell MySQL driver"; license = lib.licenses.bsd3; @@ -203486,6 +207846,41 @@ self: { hydraPlatforms = lib.platforms.none; }) {}; + "mysql-pure" = callPackage + ({ mkDerivation, attoparsec, base, binary, binary-ieee754 + , blaze-textual, bytestring, bytestring-lexing, case-insensitive + , containers, criterion, crypton, crypton-x509, crypton-x509-store + , crypton-x509-system, data-default-class, deepseq, directory + , filepath, http-types, io-streams, memory, monad-loops, network + , pem, QuickCheck, quickcheck-instances, scanner, scientific, tasty + , tasty-hunit, tasty-quickcheck, text, time, tls + , unordered-containers, vector, word-compat + }: + mkDerivation { + pname = "mysql-pure"; + version = "1.1.0"; + sha256 = "098icwvp36j7r782i6bnh7r6vbb5rvmr4hrhav0yl1wzzyxq09q7"; + libraryHaskellDepends = [ + base binary binary-ieee754 blaze-textual bytestring + bytestring-lexing crypton crypton-x509 crypton-x509-store + crypton-x509-system data-default-class deepseq io-streams memory + monad-loops network pem scientific text time tls vector word-compat + ]; + testHaskellDepends = [ + attoparsec base binary bytestring bytestring-lexing containers + deepseq directory filepath io-streams network QuickCheck + quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck + text time unordered-containers vector + ]; + benchmarkHaskellDepends = [ + attoparsec base binary bytestring case-insensitive criterion + deepseq directory filepath http-types scanner scientific text + unordered-containers vector + ]; + description = "pure haskell MySQL driver"; + license = lib.licenses.bsd3; + }) {}; + "mysql-simple" = callPackage ({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder , bytestring, containers, hspec, mysql, old-locale, pcre-light @@ -204932,6 +209327,23 @@ self: { broken = true; }) {}; + "nekos-best" = callPackage + ({ mkDerivation, aeson, base, bytestring, Cabal, containers + , http-client, http-client-tls, http-types, random + }: + mkDerivation { + pname = "nekos-best"; + version = "0.2.0.0"; + sha256 = "08wl9yci8hrgsk5274vwr7izdfdvf34rm2iy217nijdd1g8gck4x"; + setupHaskellDepends = [ base Cabal ]; + libraryHaskellDepends = [ + aeson base bytestring containers http-client http-client-tls + http-types random + ]; + description = "Unofficial nekos.best API wrapper"; + license = lib.licenses.mit; + }) {}; + "nemesis" = callPackage ({ mkDerivation, base, containers, directory, dlist, Glob, lens , mtl, process, time @@ -205238,6 +209650,41 @@ self: { license = lib.licenses.bsd3; }) {}; + "net-mqtt_0_8_5_0" = callPackage + ({ mkDerivation, async, attoparsec, attoparsec-binary, base, binary + , bytestring, checkers, conduit, conduit-extra, containers + , crypton-connection, deepseq, HUnit, network-conduit-tls + , network-uri, optparse-applicative, QuickCheck, stm, tasty + , tasty-hunit, tasty-quickcheck, text, websockets + }: + mkDerivation { + pname = "net-mqtt"; + version = "0.8.5.0"; + sha256 = "1k66ljcskk26kqf0dhrrh4f5fc23rlfdlisgsifqjyppfqfnxfkc"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async attoparsec attoparsec-binary base binary bytestring conduit + conduit-extra containers crypton-connection deepseq + network-conduit-tls network-uri QuickCheck stm text websockets + ]; + executableHaskellDepends = [ + async attoparsec attoparsec-binary base binary bytestring conduit + conduit-extra containers crypton-connection deepseq + network-conduit-tls network-uri optparse-applicative QuickCheck stm + text websockets + ]; + testHaskellDepends = [ + async attoparsec attoparsec-binary base binary bytestring checkers + conduit conduit-extra containers crypton-connection deepseq HUnit + network-conduit-tls network-uri QuickCheck stm tasty tasty-hunit + tasty-quickcheck text websockets + ]; + description = "An MQTT Protocol Implementation"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "net-mqtt-lens" = callPackage ({ mkDerivation, base, HUnit, lens, net-mqtt, tasty, tasty-hunit , tasty-quickcheck @@ -205627,8 +210074,8 @@ self: { pname = "netrc"; version = "0.2.0.0"; sha256 = "11iax3ick0im397jyyjkny7lax9bgrlgk90a25dp2jsglkphfpls"; - revision = "11"; - editedCabalFile = "1n9wdkb8vp2ja4myb5cxlk2chl51dv4wihp6sag1aapix8w8k90p"; + revision = "12"; + editedCabalFile = "1xk4q5jmnhynyajylvzsdfhnhd64hk9fmym7z1prg1v2z8764bmp"; libraryHaskellDepends = [ base bytestring deepseq parsec ]; testHaskellDepends = [ base bytestring tasty tasty-golden tasty-quickcheck @@ -206059,8 +210506,8 @@ self: { pname = "network-bsd"; version = "2.8.1.0"; sha256 = "0kid0811lv4x761fd5gv6lsc8p5j2bn41rfd366pjb642p562jfr"; - revision = "4"; - editedCabalFile = "1gd9a8j7fwg0jz0s6il5fk9sl0hm19ja1w56ix51wa0qi2h5x56d"; + revision = "5"; + editedCabalFile = "00j8p4z1ymzh99lgy8lld0slc850xr6wfafj97bb1crvn0xgfzg2"; libraryHaskellDepends = [ base deepseq network ]; description = "POSIX network database () API"; license = lib.licenses.bsd3; @@ -206934,6 +211381,22 @@ self: { license = lib.licenses.bsd3; }) {}; + "network-unexceptional" = callPackage + ({ mkDerivation, base, byteslice, bytestring, error-codes, network + , posix-api, primitive, primitive-addr + }: + mkDerivation { + pname = "network-unexceptional"; + version = "0.1.1.0"; + sha256 = "17dmifcv7cwg875yk02r0r5npjk9zw1c03fmpk4l1qa3x7ziyj2x"; + libraryHaskellDepends = [ + base byteslice bytestring error-codes network posix-api primitive + primitive-addr + ]; + description = "Network functions that do not throw exceptions"; + license = lib.licenses.bsd3; + }) {}; + "network-uri" = callPackage ({ mkDerivation, base, criterion, deepseq, HUnit, parsec , QuickCheck, tasty, tasty-hunit, tasty-quickcheck @@ -207606,8 +212069,8 @@ self: { ({ mkDerivation, base, Cabal, directory, filepath }: mkDerivation { pname = "ngx-export-distribution"; - version = "0.3.2.4"; - sha256 = "1zmlpxl3g90wdqjzgzhhawvv3qhr9akf595fca1mnfd2fpxg6928"; + version = "0.4.0.0"; + sha256 = "027av6pzd3w6c1kvfps1vf7jzvdd2hx159f7chykgy6n1zmybgxy"; libraryHaskellDepends = [ base Cabal directory filepath ]; description = "Build custom libraries for Nginx haskell module"; license = lib.licenses.bsd3; @@ -210447,6 +214910,18 @@ self: { license = lib.licenses.bsd3; }) {}; + "numhask_0_11_0_2" = callPackage + ({ mkDerivation, base, QuickCheck }: + mkDerivation { + pname = "numhask"; + version = "0.11.0.2"; + sha256 = "1km9lnkiswgf5xiy4wzcsgpnirjxbcrvj2vgr8rjj1hwfzrnwksw"; + libraryHaskellDepends = [ base QuickCheck ]; + description = "A numeric class hierarchy"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "numhask-array" = callPackage ({ mkDerivation, adjunctions, base, distributive, numhask , QuickCheck, vector @@ -210463,6 +214938,21 @@ self: { license = lib.licenses.bsd3; }) {}; + "numhask-array_0_11_0_1" = callPackage + ({ mkDerivation, adjunctions, base, distributive, numhask, vector + }: + mkDerivation { + pname = "numhask-array"; + version = "0.11.0.1"; + sha256 = "1z9n5ls08b3329kh4hidcm0p6kx3672svkqaci6nlq2zxj6szgda"; + libraryHaskellDepends = [ + adjunctions base distributive numhask vector + ]; + description = "Multi-dimensional arrays"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "numhask-free" = callPackage ({ mkDerivation, attoparsec, base, containers, doctest, free , numhask, text @@ -210553,18 +215043,16 @@ self: { "numhask-space" = callPackage ({ mkDerivation, adjunctions, base, containers, distributive - , numhask, QuickCheck, random, semigroupoids, tdigest, text, time - , vector + , numhask, random, semigroupoids, tdigest, text, time, vector }: mkDerivation { pname = "numhask-space"; - version = "0.10.0.1"; - sha256 = "04y849c5ghji734k98jbmf6dc4pmwx4ny73r493rwjcbdy31bscm"; + version = "0.11.0.1"; + sha256 = "19j8zlf8hmfzdk68j1di9mdw4fhqizpirnpn1wg5kbff0xbavjpr"; libraryHaskellDepends = [ adjunctions base containers distributive numhask random semigroupoids tdigest text time vector ]; - testHaskellDepends = [ base QuickCheck ]; description = "Numerical spaces"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; @@ -210801,8 +215289,8 @@ self: { }: mkDerivation { pname = "nvvm"; - version = "0.10.0.0"; - sha256 = "188zf4hlqgjj5xgsfvrkynhq8pc29qfkaz6rp61ij3adc30410al"; + version = "0.10.0.1"; + sha256 = "1njp0zn54i9ljr9x1751a96bzm5yf6m9ka3klgrrpzm3vz7jy2if"; setupHaskellDepends = [ base Cabal cuda directory filepath template-haskell ]; @@ -212733,8 +217221,8 @@ self: { pname = "opaleye"; version = "0.10.0.0"; sha256 = "0x181722a8ml9a6nbcj5v9q8npjkc22qrahqkfrfrh69hb0zpqp4"; - revision = "1"; - editedCabalFile = "1a2rzhmm85dmip4rjrbhagwhsrdg9wdsm8a1fp4dpjknjavpjn96"; + revision = "2"; + editedCabalFile = "1vi9rr5zdk9mjpmgk27wcrdddv7rzmh94s30nc20987iqf3sc6ck"; libraryHaskellDepends = [ aeson base base16-bytestring bytestring case-insensitive contravariant postgresql-simple pretty product-profunctors @@ -214796,16 +219284,14 @@ self: { maintainers = [ lib.maintainers.Gabriella439 ]; }) {}; - "optparse-generic_1_5_0" = callPackage + "optparse-generic_1_5_1" = callPackage ({ mkDerivation, base, bytestring, Only, optparse-applicative, text , time, transformers, transformers-compat, void }: mkDerivation { pname = "optparse-generic"; - version = "1.5.0"; - sha256 = "0ydh59naf8qjbgidisvd9z8sqw16x7604ryyqhjmfrlf468barm5"; - revision = "1"; - editedCabalFile = "1mrq3j9ip7kcq1q0lbsfvmpjvdpfa5xhdnbxh72x4l4k8g7n7q8x"; + version = "1.5.1"; + sha256 = "01naichbyxwssdf55r5qzd79zfvgd1i239fp3srkz5w45p90znyr"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -215564,8 +220050,8 @@ self: { }: mkDerivation { pname = "orthotope"; - version = "0.1.4.0"; - sha256 = "1i5v9rg16igz7bw290anj98vwkv89y1crp2gc5340sbw1d48y7vb"; + version = "0.1.6.0"; + sha256 = "0qc4bnqvpwr7nws5id8960mwhsb3sww1dp5a4j0076l6v452zl3k"; libraryHaskellDepends = [ base deepseq dlist pretty QuickCheck vector ]; @@ -216052,15 +220538,16 @@ self: { "pa-field-parser" = callPackage ({ mkDerivation, aeson, aeson-better-errors, attoparsec, base , case-insensitive, containers, pa-error-tree, pa-prelude - , scientific, semigroupoids, text + , scientific, semigroupoids, template-haskell, text, time }: mkDerivation { pname = "pa-field-parser"; - version = "0.1.0.1"; - sha256 = "07yp19w7lbjdi2hxrsi15pf77lc4rkkl7axawbk96scbi5lh7zg7"; + version = "0.2.0.1"; + sha256 = "1dkyi4gzsp2d0hfl8plmmirz6hlgy6ncd8nvxb34ax9nxi880c6v"; libraryHaskellDepends = [ aeson aeson-better-errors attoparsec base case-insensitive - containers pa-error-tree pa-prelude scientific semigroupoids text + containers pa-error-tree pa-prelude scientific semigroupoids + template-haskell text time ]; description = "“Vertical” parsing of values"; license = lib.licenses.bsd3; @@ -216910,7 +221397,7 @@ self: { ]; }) {}; - "pandoc_3_1_6" = callPackage + "pandoc_3_1_6_1" = callPackage ({ mkDerivation, aeson, aeson-pretty, array, attoparsec, base , base64, binary, blaze-html, blaze-markup, bytestring , case-insensitive, citeproc, commonmark, commonmark-extensions @@ -216929,8 +221416,8 @@ self: { }: mkDerivation { pname = "pandoc"; - version = "3.1.6"; - sha256 = "0d67n1gzx3bxvjgb5ql5h2fb1m6vk7v7c1sr795jvk67hkx340rv"; + version = "3.1.6.1"; + sha256 = "0lihc1bgis8dmmbd06i2chk0c5wwj3hp6mr4nqxcc2mp3kwh7hma"; configureFlags = [ "-f-trypandoc" ]; enableSeparateDataOutput = true; libraryHaskellDepends = [ @@ -217388,8 +221875,8 @@ self: { }: mkDerivation { pname = "pandoc-lua-engine"; - version = "0.2.1"; - sha256 = "15vcfzl02pvly5wdrj16sw9jxj7lq5r68ri1xj3ii1mmzp9vamp5"; + version = "0.2.1.1"; + sha256 = "0f0zd54qkrx7m6h2xll3ln788w939gwbz1ak25c4jvnya12sm23f"; libraryHaskellDepends = [ aeson base bytestring citeproc containers data-default doclayout doctemplates exceptions hslua hslua-module-doclayout @@ -217593,8 +222080,8 @@ self: { }: mkDerivation { pname = "pandoc-server"; - version = "0.1.0.1"; - sha256 = "18vz5fmgp3xlb053as958l3w8frxh4zwzqxycyhy68zs9bpimcpr"; + version = "0.1.0.2"; + sha256 = "0cd7dmg9hsm8j9jrh181331rwqlng1hkvpf8ksfh394j99dkjj0h"; libraryHaskellDepends = [ aeson base base64 bytestring containers data-default doctemplates pandoc pandoc-types servant-server skylighting text @@ -217712,8 +222199,8 @@ self: { }: mkDerivation { pname = "pandoc-types"; - version = "1.23.0.1"; - sha256 = "0ilxjlibxqj6h627wak7k17r69743hzwgl2qgr2wigk3j9a3fmji"; + version = "1.23.1"; + sha256 = "1hd18l1c5yh7x24gsligkbraadq12hn7mim16xyjnicdsa1s03xd"; libraryHaskellDepends = [ aeson base bytestring containers deepseq ghc-prim QuickCheck syb text transformers @@ -218774,10 +223261,8 @@ self: { }: mkDerivation { pname = "parameterized-utils"; - version = "2.1.6.0"; - sha256 = "118inzvvr72bfr1pzgxglrpd2fsz0kn9hk791imygl0fv1258rb6"; - revision = "1"; - editedCabalFile = "126p5f4craqwlzqpj0rbrnrl83ykvkb8w6lz3sg4m9d91sqixfrh"; + version = "2.1.7.0"; + sha256 = "0hf41iw4ik0xlnkw7mkp97nawzw4fn1q7yb712xkgckz2yilmg6d"; libraryHaskellDepends = [ base base-orphans constraints containers deepseq ghc-prim hashable hashtables indexed-traversable lens mtl profunctors @@ -221816,28 +226301,26 @@ self: { }) {}; "perceptual-hash" = callPackage - ({ mkDerivation, base, bytestring, containers, cpphs, criterion - , deepseq, filepath, hip, hspec, JuicyPixels, optparse-applicative - , par-traverse, primitive, stm, vector, vector-algorithms, webp + ({ mkDerivation, avif, base, bytestring, containers, cpphs + , criterion, deepseq, filepath, hip, hspec, JuicyPixels + , optparse-applicative, par-traverse, primitive, stm, vector + , vector-algorithms, webp }: mkDerivation { pname = "perceptual-hash"; - version = "0.1.4.5"; - sha256 = "1qh7crpb78pd7kn7g8sh5h8wr911ldz30p23m9lqfk0cyxd1pxvy"; + version = "0.1.4.6"; + sha256 = "0mbp4lwqwbhhpsbwi2cxrzr7pq2dg4x0sf9rc32fi6svbbcg1hb8"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; libraryHaskellDepends = [ - base bytestring hip JuicyPixels primitive vector vector-algorithms - webp + avif base bytestring hip JuicyPixels primitive vector + vector-algorithms webp ]; - libraryToolDepends = [ cpphs ]; executableHaskellDepends = [ base containers filepath optparse-applicative par-traverse stm ]; - executableToolDepends = [ cpphs ]; testHaskellDepends = [ base hspec ]; - testToolDepends = [ cpphs ]; benchmarkHaskellDepends = [ base criterion deepseq filepath ]; benchmarkToolDepends = [ cpphs ]; description = "Find duplicate images"; @@ -221882,8 +226365,8 @@ self: { }: mkDerivation { pname = "peregrin"; - version = "0.4.0"; - sha256 = "1i9zc3cq5pl3zffm5n5ijnvcp22cx945n0sfr5xxdm91drg42b4d"; + version = "0.4.2"; + sha256 = "1xnzkv6kwpgpa5cpz7rs4p2myw96j7z5aw1dqdk14gs7f1wbdhwb"; libraryHaskellDepends = [ base bytestring postgresql-simple text ]; testHaskellDepends = [ base hspec pg-harness-client postgresql-simple resource-pool text @@ -221902,8 +226385,8 @@ self: { }: mkDerivation { pname = "perf"; - version = "0.10.3"; - sha256 = "0kk880j93wz9jfzlniw5isgznypcqbdsimv2lvwvcq7l02iz4564"; + version = "0.12.0.0"; + sha256 = "15l4cx2b2wjinhhgsv646frxl69hvyh9dkqn24719xg8acmqyyyx"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -221913,6 +226396,7 @@ self: { executableHaskellDepends = [ base containers deepseq formatn gauge mtl optparse-applicative text ]; + benchmarkHaskellDepends = [ base ]; description = "Low-level run time measurement"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; @@ -222691,8 +227175,8 @@ self: { pname = "persistent-mongoDB"; version = "2.13.0.1"; sha256 = "1ck74kpzkz623c43qb8r1cjq8chi2p721vx95zrpciz8jm496235"; - revision = "3"; - editedCabalFile = "163c5q6fwnp96y952qq5ya26z64lr6abblmpxfqxcsalfcgx3rad"; + revision = "4"; + editedCabalFile = "01zfwp8jyr65sc3mijv1a8x0zs4csmr71nn6ksr9d18p3lpd9zz8"; libraryHaskellDepends = [ aeson base bson bytestring cereal conduit http-api-data mongoDB network path-pieces persistent resource-pool resourcet text time @@ -222800,6 +227284,39 @@ self: { mainProgram = "persistent-mysql-haskell-example"; }) {}; + "persistent-mysql-pure" = callPackage + ({ mkDerivation, aeson, base, bytestring, conduit, containers + , fast-logger, hspec, http-api-data, HUnit, io-streams + , monad-logger, mysql-haskell, network, path-pieces, persistent + , persistent-qq, persistent-test, QuickCheck, quickcheck-instances + , resource-pool, resourcet, text, time, tls, transformers + , unliftio-core + }: + mkDerivation { + pname = "persistent-mysql-pure"; + version = "1.0.1"; + sha256 = "1kw51ijhwd5iv8kaz16yxrmfmdfakng3qdvd9yhj3dvjjz07d9g7"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring conduit containers io-streams monad-logger + mysql-haskell network persistent resource-pool resourcet text time + tls transformers unliftio-core + ]; + executableHaskellDepends = [ + base monad-logger persistent transformers + ]; + testHaskellDepends = [ + aeson base bytestring containers fast-logger hspec http-api-data + HUnit monad-logger mysql-haskell path-pieces persistent + persistent-qq persistent-test QuickCheck quickcheck-instances + resourcet text time transformers unliftio-core + ]; + description = "A pure haskell backend for the persistent library using MySQL database server"; + license = lib.licenses.mit; + mainProgram = "persistent-mysql-pure-example"; + }) {}; + "persistent-odbc" = callPackage ({ mkDerivation, aeson, base, bytestring, conduit, containers , convertible, HDBC, HDBC-odbc, monad-logger, persistent @@ -223775,8 +228292,9 @@ self: { }) {}; "phladiprelio-general-simple" = callPackage - ({ mkDerivation, base, cli-arguments, directory, halfsplit - , phladiprelio-general-shared, phonetic-languages-constraints-array + ({ mkDerivation, async, base, cli-arguments, directory, halfsplit + , phladiprelio-general-shared, phladiprelio-tests + , phonetic-languages-constraints-array , phonetic-languages-permutations-array , phonetic-languages-phonetics-basics , phonetic-languages-simplified-base, rev-scientific @@ -223784,10 +228302,11 @@ self: { }: mkDerivation { pname = "phladiprelio-general-simple"; - version = "0.6.2.0"; - sha256 = "01l0cc82c3ndx0fwsslj74nqs4ippa6mw86lvbkb3mvcvn85ncj8"; + version = "0.8.0.0"; + sha256 = "0bq82h7y2qd5kx3gig579v9n6znvyfz1bzkjjkcbp9rpywkk0gy8"; libraryHaskellDepends = [ - base cli-arguments directory halfsplit phladiprelio-general-shared + async base cli-arguments directory halfsplit + phladiprelio-general-shared phladiprelio-tests phonetic-languages-constraints-array phonetic-languages-permutations-array phonetic-languages-phonetics-basics @@ -223810,6 +228329,17 @@ self: { license = lib.licenses.mit; }) {}; + "phladiprelio-tests" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "phladiprelio-tests"; + version = "0.1.0.0"; + sha256 = "1pzqa1bav4qrdxif0rl4vggm1wirv4zf2hycmq9mva97m6swjqcl"; + libraryHaskellDepends = [ base ]; + description = "Common for Ukrainian and general data for test mode"; + license = lib.licenses.mit; + }) {}; + "phladiprelio-ukrainian-shared" = callPackage ({ mkDerivation, base, directory, mmsyn2-array , ukrainian-phonetics-basic-array @@ -223827,8 +228357,8 @@ self: { }) {}; "phladiprelio-ukrainian-simple" = callPackage - ({ mkDerivation, base, cli-arguments, directory, halfsplit - , phladiprelio-ukrainian-shared + ({ mkDerivation, async, base, cli-arguments, directory, halfsplit + , phladiprelio-tests, phladiprelio-ukrainian-shared , phonetic-languages-constraints-array , phonetic-languages-permutations-array , phonetic-languages-simplified-base @@ -223837,12 +228367,12 @@ self: { }: mkDerivation { pname = "phladiprelio-ukrainian-simple"; - version = "0.8.1.0"; - sha256 = "1alqcxbfirffaxcfp3hykh3vwpf4yr1kj7maipgj7p7az45arqy5"; + version = "0.10.0.0"; + sha256 = "01xxrhfcfcw9s0h2zyn3vbwvbidklygm5z46cbax2ks81qqd01mi"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base cli-arguments directory halfsplit + async base cli-arguments directory halfsplit phladiprelio-tests phladiprelio-ukrainian-shared phonetic-languages-constraints-array phonetic-languages-permutations-array phonetic-languages-simplified-base @@ -223850,14 +228380,14 @@ self: { rhythmic-sequences ukrainian-phonetics-basic-array ]; executableHaskellDepends = [ - base cli-arguments directory halfsplit + async base cli-arguments directory halfsplit phladiprelio-tests phladiprelio-ukrainian-shared phonetic-languages-constraints-array phonetic-languages-permutations-array phonetic-languages-simplified-base phonetic-languages-ukrainian-array rev-scientific rhythmic-sequences ukrainian-phonetics-basic-array ]; - description = "A PhLADiPreLiO implementation for Ukrainian that uses hashes"; + description = "A PhLADiPreLiO implementation for Ukrainian that uses hashes and asynchronous concurrency"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; mainProgram = "phladiprelioUkr"; @@ -225122,6 +229652,31 @@ self: { license = lib.licenses.bsd3; }) {}; + "pinch_0_5_0_0" = callPackage + ({ mkDerivation, array, async, base, bytestring, cereal, containers + , deepseq, ghc-prim, hashable, hspec, hspec-discover, network + , network-run, QuickCheck, semigroups, text, unordered-containers + , vector + }: + mkDerivation { + pname = "pinch"; + version = "0.5.0.0"; + sha256 = "186b7576f5h49j83r3r8ljk8kb98x1as0hdsrjflhps158qh3xdp"; + libraryHaskellDepends = [ + array base bytestring cereal containers deepseq ghc-prim hashable + network semigroups text unordered-containers vector + ]; + libraryToolDepends = [ hspec-discover ]; + testHaskellDepends = [ + async base bytestring cereal containers hspec network network-run + QuickCheck semigroups text unordered-containers vector + ]; + testToolDepends = [ hspec-discover ]; + description = "An alternative implementation of Thrift for Haskell"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "pinch-gen" = callPackage ({ mkDerivation, base, bytestring, directory, filepath , language-thrift, megaparsec, mtl, optparse-applicative @@ -225197,6 +229752,8 @@ self: { pname = "ping"; version = "0.1.0.5"; sha256 = "11zcdrji1m1b9rhi10fv4pr2cs488c13qb5nggi7abhkavzvxbzb"; + revision = "1"; + editedCabalFile = "1pa4zdvn5579vl6084ai3zf236rac5hd2lb5jn6hyfyd7ma566i5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -228503,8 +233060,8 @@ self: { pname = "polyparse"; version = "1.13"; sha256 = "0yvhg718dlksiw3v27m2d8m1sn4r4f5s0p56zq3lynhy1sc74k0w"; - revision = "7"; - editedCabalFile = "197q2c1nb38yn6cbcnj9dn03anwqrwf94bh03mpldw1w2vapd4ay"; + revision = "8"; + editedCabalFile = "0gb5cdf46rh5vbxssj6zc3l85fmyg5b44hzjrls1p8rl1l1p3pda"; libraryHaskellDepends = [ base bytestring text ]; description = "A variety of alternative parser combinator libraries"; license = "LGPL"; @@ -229327,8 +233884,8 @@ self: { }: mkDerivation { pname = "polysemy-zoo"; - version = "0.8.1.0"; - sha256 = "0p8ljkpmcf0gf29b8dl1xwra189xfs5ba88fgmys2jcg2wz6yy1d"; + version = "0.8.2.0"; + sha256 = "0laadgqsf817kg3l8qv5g9pkpf36kwky7c2c21ixb03kx1x0rzfp"; libraryHaskellDepends = [ async base constraints containers contravariant exceptions ghc-compact ghc-prim mtl polysemy random reflection streaming text @@ -230303,8 +234860,8 @@ self: { }: mkDerivation { pname = "posix-api"; - version = "0.6.0.1"; - sha256 = "0c39ghbnimsl4m9gn8lsr09ii0xn4ahqbid74jiig1cw931y0xap"; + version = "0.6.1.0"; + sha256 = "0dplxy3zv9n239c8w7ja95qv2f343sz4n83ji42f0f8v00ryghys"; libraryHaskellDepends = [ base byte-order byteslice primitive primitive-addr primitive-offset primitive-unlifted run-st text-short @@ -230737,6 +235294,21 @@ self: { license = lib.licenses.bsd3; }) {inherit (pkgs) postgresql;}; + "postgresql-libpq_0_10_0_0" = callPackage + ({ mkDerivation, base, bytestring, Cabal, postgresql, unix }: + mkDerivation { + pname = "postgresql-libpq"; + version = "0.10.0.0"; + sha256 = "0qnzbc1rws6kgy3g1y9n7c2mh190996jlwrp0j3hbsmgdy9aig2l"; + setupHaskellDepends = [ base Cabal ]; + libraryHaskellDepends = [ base bytestring unix ]; + librarySystemDepends = [ postgresql ]; + testHaskellDepends = [ base bytestring ]; + description = "low-level binding to libpq"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {inherit (pkgs) postgresql;}; + "postgresql-libpq-notify" = callPackage ({ mkDerivation, async, base, hspec, postgres-options , postgresql-libpq, stm, text, tmp-postgres @@ -230762,6 +235334,8 @@ self: { pname = "postgresql-lo-stream"; version = "0.1.1.1"; sha256 = "0m2s717qb42ywiqvdi18nybjadkivygfi2pbflip5rvphqfc8k8x"; + revision = "1"; + editedCabalFile = "0z1xbayvx20d6m89hch2zfsljy37cqqmb82g32lk1raq69h9pihc"; libraryHaskellDepends = [ base bytestring io-streams lifted-base monad-loops mtl postgresql-simple @@ -231047,6 +235621,35 @@ self: { maintainers = [ lib.maintainers.maralorn ]; }) {}; + "postgresql-simple_0_7_0_0" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base16-bytestring + , bytestring, case-insensitive, containers, cryptohash-md5 + , filepath, hashable, HUnit, inspection-testing, Only + , postgresql-libpq, scientific, tasty, tasty-golden, tasty-hunit + , template-haskell, text, time-compat, transformers, uuid-types + , vector + }: + mkDerivation { + pname = "postgresql-simple"; + version = "0.7.0.0"; + sha256 = "0gm1wk2zq35h46v0l1qc0z63jv3gxgqd059j1mcmww80a6sipf4c"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring case-insensitive containers + hashable Only postgresql-libpq scientific template-haskell text + time-compat transformers uuid-types vector + ]; + testHaskellDepends = [ + aeson base base16-bytestring bytestring case-insensitive containers + cryptohash-md5 filepath HUnit inspection-testing postgresql-libpq + tasty tasty-golden tasty-hunit text time-compat vector + ]; + benchmarkHaskellDepends = [ base vector ]; + description = "Mid-Level PostgreSQL client library"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.maralorn ]; + }) {}; + "postgresql-simple-bind" = callPackage ({ mkDerivation, attoparsec, base, bytestring, data-default , exceptions, heredoc, hspec, postgresql-simple, template-haskell @@ -231244,8 +235847,8 @@ self: { pname = "postgresql-simple-url"; version = "0.2.1.0"; sha256 = "1jg9gvpidrfy2hqixwqsym1l1mnkafmxwq58jpbzdmrbvryga1qk"; - revision = "7"; - editedCabalFile = "1k5qpzxf4gp3smpriawdbwifyyf5dp2qfqm5wxk1gmbviqwm4f70"; + revision = "8"; + editedCabalFile = "13j3pfgwsnv4dmnqg36x134zm0mm9r76kg59dc3dmq4pzgpbbw1w"; libraryHaskellDepends = [ base network-uri postgresql-simple split ]; @@ -231989,6 +236592,24 @@ self: { license = lib.licenses.bsd3; }) {}; + "pqueue_1_5_0_0" = callPackage + ({ mkDerivation, base, deepseq, indexed-traversable, random, tasty + , tasty-bench, tasty-quickcheck + }: + mkDerivation { + pname = "pqueue"; + version = "1.5.0.0"; + sha256 = "00hzrhz3n55ahyv2h183l72jsl3q01p4ns0063p0vjaa5j6qpy0v"; + libraryHaskellDepends = [ base deepseq indexed-traversable ]; + testHaskellDepends = [ + base deepseq indexed-traversable tasty tasty-quickcheck + ]; + benchmarkHaskellDepends = [ base deepseq random tasty-bench ]; + description = "Reliable, persistent, fast priority queues"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "pqueue-mtl" = callPackage ({ mkDerivation, base, containers, ghc-prim, MaybeT, mtl , stateful-mtl, uvector @@ -233040,10 +237661,8 @@ self: { }: mkDerivation { pname = "prettychart"; - version = "0.1.0"; - sha256 = "1vpw8jwsjyryz1sx1g79hc95sxjy8q5i4yig5f9xc58qy2cg6z1k"; - revision = "1"; - editedCabalFile = "0laddpy0xjdzdsd7iqc2b0h01dixs903yiwy3145pd0c251dxb4z"; + version = "0.1.1.0"; + sha256 = "1cdxdin7k4rswph61h625lkf57669xiid67c09a7libqdq6yya98"; libraryHaskellDepends = [ async base box bytestring chart-svg containers flatparse formatn lucid mealy numhask-space optics-core profunctors text time web-rep @@ -233539,6 +238158,8 @@ self: { pname = "primitive-containers"; version = "0.5.1"; sha256 = "057x0l6zyhffim37v8q63ancwg8jl2sfn8hmrwy3kmn9cnh2zw94"; + revision = "1"; + editedCabalFile = "1xdn0kdd4qgchzpdvc5fsmphc4025z8pd67lw4yhaw6am9wyc7mm"; libraryHaskellDepends = [ base contiguous deepseq hashable primitive primitive-sort primitive-unlifted @@ -233709,6 +238330,8 @@ self: { pname = "primitive-sort"; version = "0.1.2.0"; sha256 = "0nalkfycg9fpvwi8h2a4k31wmmn1ny16b43kj75gxcpmbc4x6azz"; + revision = "1"; + editedCabalFile = "0c0r6db3x5jngqgzylm5s3d5vy9ncnl0642wrdg92cnqzfrqbvgw"; libraryHaskellDepends = [ base contiguous ghc-prim primitive ]; testHaskellDepends = [ base containers doctest HUnit primitive QuickCheck smallcheck tasty @@ -234595,8 +239218,8 @@ self: { pname = "product-profunctors"; version = "0.11.1.1"; sha256 = "1nhwpfjz4iz30h8q7d40hlibqqymvmcf6wmbl6h3212d54hqdgiz"; - revision = "1"; - editedCabalFile = "12qgjm4r6k28vm1756grhgh16g4qv0s2nri8ysqi7jkvbjdm1jn4"; + revision = "2"; + editedCabalFile = "0v595d8b2lv89nxyhgmzyp90i1h9vzlhbp6ry9gf99n7rdp525fw"; libraryHaskellDepends = [ base bifunctors contravariant profunctors tagged template-haskell th-abstraction @@ -235203,8 +239826,8 @@ self: { }: mkDerivation { pname = "prometheus"; - version = "2.2.3"; - sha256 = "1ggav326fpkrvg39a5rxg2ysg6mb16zzdv4yw0753fyk61v2g4pz"; + version = "2.2.4"; + sha256 = "15ykkpiq1vw4ii9x31jrfryl073kd90dp0p05c3avgqczp3985zp"; libraryHaskellDepends = [ atomic-primops base bytestring containers http-client http-client-tls http-types network-uri text transformers wai warp @@ -235224,8 +239847,8 @@ self: { }: mkDerivation { pname = "prometheus-client"; - version = "1.1.0"; - sha256 = "1f9csz40asdkmmh6kp8sc8gkbxvkrvv8v2byxn4jp67lg7s3g9bx"; + version = "1.1.1"; + sha256 = "1j248vy67j0wqfbh5wgqxa4l99ynsf9r2651wghqc7b5973rww3a"; libraryHaskellDepends = [ atomic-primops base bytestring clock containers data-sketches deepseq exceptions mtl primitive stm text transformers @@ -239103,8 +243726,8 @@ self: { }: mkDerivation { pname = "quic"; - version = "0.1.2"; - sha256 = "04ag4lvrlylr1qks6mvhp1pbbz66yy44s2c0z6wz49nc30x8qq8n"; + version = "0.1.3"; + sha256 = "0n6l559q5y31jwr8bba3jav7ghsg76y3w0rbi7lz9jsrh0i4l7bh"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -240998,6 +245621,8 @@ self: { pname = "ralist"; version = "0.4.0.0"; sha256 = "1axn2mh1jiz5d39ygf0hg7a0bkywnld4j8jjkflycks1yr7mxha1"; + revision = "1"; + editedCabalFile = "10i40p8xp4zm50lq3g0k6crsqg4rrwq12wkjpqqin9dsppw5085n"; libraryHaskellDepends = [ base deepseq indexed-traversable transformers ]; @@ -242254,6 +246879,8 @@ self: { pname = "rawfilepath"; version = "1.0.1"; sha256 = "016bdivq8b3visv56jriw39ld5yg6c75x1qy69sm7am27i9728g3"; + revision = "1"; + editedCabalFile = "00s2ri39y7amravnlbkbrx41chwbiryw1k8s0svim6ay43r4b0yp"; libraryHaskellDepends = [ base bytestring unix ]; testHaskellDepends = [ base bytestring ]; description = "Use RawFilePath instead of FilePath"; @@ -242451,8 +247078,8 @@ self: { }: mkDerivation { pname = "rcu"; - version = "0.2.6"; - sha256 = "14kg45ycx5wa3k9xn7glp4kdy8xz119m4gs91114qx0rkbix2f5h"; + version = "0.2.7"; + sha256 = "0iw1w2jch8a6ap2nrkis740vbi5sjgk7hdbv9d4m08j4c402q3c9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -243827,8 +248454,8 @@ self: { pname = "recursion-schemes"; version = "5.2.2.4"; sha256 = "0hyvqh8kp2pw4kwvisyz9msjy41y218f9l6fpsrbla4s1b4in58c"; - revision = "2"; - editedCabalFile = "1617jz77d4f2hf54jfz30zbf18rcgl6h0nzn3rcl0gjxjavf5aq6"; + revision = "3"; + editedCabalFile = "06bffrsh1gcp65gyv0837bd3gv5d5h2879nadv29irc52fyvzwxl"; libraryHaskellDepends = [ base base-orphans comonad containers data-fix free template-haskell th-abstraction transformers @@ -244840,6 +249467,8 @@ self: { pname = "reflex-dom-core"; version = "0.8.0.0"; sha256 = "17zj8a7wmbf4019gb6m9bb4nybbqmbc11qydc8l9h9p3kavhbd0j"; + revision = "1"; + editedCabalFile = "0ysr37d3paqjgbri8xk98w1a98pdq8ak1p1ddn2dayvk1w2s8q9c"; libraryHaskellDepends = [ aeson base bifunctors bimap blaze-builder bytestring case-insensitive commutative-semigroups constraints containers @@ -245057,6 +249686,8 @@ self: { pname = "reflex-gadt-api"; version = "0.2.2.1"; sha256 = "042dad8gilpzn1ng4ck5mmca9q257vi9317xxr0in0sp30sn1g11"; + revision = "1"; + editedCabalFile = "0923xxxqn93szs8ai45xazp2xs011xq68368y5q2mjiww74dp0xx"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -245081,8 +249712,8 @@ self: { }: mkDerivation { pname = "reflex-ghci"; - version = "0.2.0.0"; - sha256 = "1j8hb81b8889dsqg5x2p52fizzfp61bxicd3m4vyx6ay9hjgq917"; + version = "0.2.0.1"; + sha256 = "0pdlba8rqdlgzg3n4vf0brkdczw2146myzzr0855j3b5c0fkszfp"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -245313,10 +249944,8 @@ self: { }: mkDerivation { pname = "reflex-process"; - version = "0.3.2.0"; - sha256 = "1ijlp762ckyxqpjkax692zmzk1b0ziafbiid4351lvk6n4sy5n56"; - revision = "1"; - editedCabalFile = "1akmqvsvdip4vlsl170yg6l3rndgbcq8m5wlsl889dr7z9wis6rm"; + version = "0.3.2.1"; + sha256 = "039zzj9f4fli8kbrdgjd27fjkj6f0h74b4r6pfbzz3y9njgw4vz1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -245914,8 +250543,8 @@ self: { pname = "regex-pcre"; version = "0.95.0.0"; sha256 = "0nn76q4bsjnxim0j0d01jifmh36as9jdpcvm001a851vvq86zb8n"; - revision = "4"; - editedCabalFile = "07fqy6pj7zz2vqbj8y4s5npc7vk9ggzayiy31hy4ss91lys74d1j"; + revision = "5"; + editedCabalFile = "0hc9833rwxq8g1x5bq0q4qwjp6w2qgs3fp7jpnlf6b7w5xvr72im"; libraryHaskellDepends = [ array base bytestring containers regex-base ]; @@ -246047,10 +250676,8 @@ self: { }: mkDerivation { pname = "regex-tdfa"; - version = "1.3.2.1"; - sha256 = "15c2gc7c0y2xv9sm586jvys2kx1dc18lzfvjzad5mm2d4yszi2sw"; - revision = "1"; - editedCabalFile = "1005mqjhq2blz8kqxmk84xajyqd85n91j9nraw6jrwfv11vxfvxa"; + version = "1.3.2.2"; + sha256 = "1dvmplkhma32y68v4vvpbwmjbg3hzd7qhsyq6pim1fs68b2xaglk"; libraryHaskellDepends = [ array base bytestring containers mtl parsec regex-base text ]; @@ -247148,6 +251775,8 @@ self: { pname = "relude"; version = "1.2.0.0"; sha256 = "0wqj5ipsm3wwl401q5c5w6q6q07qd825y2d10j3q9gqsvyrpgqfb"; + revision = "1"; + editedCabalFile = "1vbmqnahjkvv6wla19vd8pl2k8i0di54c1q37ahx02i4zmnwv6zr"; libraryHaskellDepends = [ base bytestring containers deepseq ghc-prim hashable mtl stm text transformers unordered-containers @@ -249073,8 +253702,8 @@ self: { }: mkDerivation { pname = "ret"; - version = "0.2.2.0"; - sha256 = "1vab7xp0qfks3dramprphv02h09v5nnm9vpmih5yll9i3bqka4ji"; + version = "0.5.0.0"; + sha256 = "0204vwjw13j82fjqsw1qklp7n6rqlvxkhb1jgg8n6ya0a469ahm9"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -249899,10 +254528,10 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "rhythmic-sequences"; - version = "0.3.0.0"; - sha256 = "1fcx3brx5kf6x9islrcrdlyqlmh5cw5cv392g8xd30k2n041v49n"; + version = "0.4.0.0"; + sha256 = "095x356x585f3vszgfwrffvdd47c2gpqvmypssx9g727vz38sf0i"; libraryHaskellDepends = [ base ]; - description = "Library to deal with rhythmicity of short sequences"; + description = "Improved library to deal with rhythmicity of short sequences"; license = lib.licenses.mit; }) {}; @@ -254447,41 +259076,41 @@ self: { }) {}; "sandwich-webdriver" = callPackage - ({ mkDerivation, aeson, base, containers, data-default, directory - , exceptions, filepath, http-client, http-client-tls, http-conduit - , lifted-base, microlens, microlens-aeson, monad-control - , monad-logger, mtl, network, process, random, regex-compat, retry - , safe, safe-exceptions, sandwich, string-interpolate, temporary - , text, time, transformers, unix, unliftio, unordered-containers - , vector, webdriver + ({ mkDerivation, aeson, base, bytestring, containers, data-default + , directory, exceptions, filepath, http-client, http-client-tls + , http-conduit, lifted-base, microlens, microlens-aeson + , monad-control, monad-logger, mtl, network, process, random + , regex-compat, retry, safe, safe-exceptions, sandwich + , string-interpolate, temporary, text, time, transformers, unix + , unliftio, unordered-containers, vector, webdriver }: mkDerivation { pname = "sandwich-webdriver"; - version = "0.2.2.0"; - sha256 = "05wc57xm9f88nlkyna4j4q7j4w4iwa7f6diqb98mw5p9pgfknf3r"; + version = "0.2.3.0"; + sha256 = "1220apnh5kj1y41b129rvawcj9yp3lgdlbwysr11wmah6ya9awy9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base containers data-default directory exceptions filepath - http-client http-client-tls http-conduit lifted-base microlens - microlens-aeson monad-control monad-logger mtl network process - random regex-compat retry safe safe-exceptions sandwich + aeson base bytestring containers data-default directory exceptions + filepath http-client http-client-tls http-conduit lifted-base + microlens microlens-aeson monad-control monad-logger mtl network + process random regex-compat retry safe safe-exceptions sandwich string-interpolate temporary text time transformers unix unordered-containers vector webdriver ]; executableHaskellDepends = [ - aeson base containers data-default directory exceptions filepath - http-client http-client-tls http-conduit lifted-base microlens - microlens-aeson monad-control monad-logger mtl network process - random regex-compat retry safe safe-exceptions sandwich + aeson base bytestring containers data-default directory exceptions + filepath http-client http-client-tls http-conduit lifted-base + microlens microlens-aeson monad-control monad-logger mtl network + process random regex-compat retry safe safe-exceptions sandwich string-interpolate temporary text time transformers unix unordered-containers vector webdriver ]; testHaskellDepends = [ - aeson base containers data-default directory exceptions filepath - http-client http-client-tls http-conduit lifted-base microlens - microlens-aeson monad-control monad-logger mtl network process - random regex-compat retry safe safe-exceptions sandwich + aeson base bytestring containers data-default directory exceptions + filepath http-client http-client-tls http-conduit lifted-base + microlens microlens-aeson monad-control monad-logger mtl network + process random regex-compat retry safe safe-exceptions sandwich string-interpolate temporary text time transformers unix unliftio unordered-containers vector webdriver ]; @@ -254727,8 +259356,8 @@ self: { }: mkDerivation { pname = "saturn"; - version = "0.3.1.0"; - sha256 = "1n316hshlxnpkl7ivrgkkn4070b4ia48k6p9s4n5551rg2gkvbg1"; + version = "1.0.0.2"; + sha256 = "0n0670s0sgp00lb758vn5gmw7h84csq1sqaha6k3lckczfs72si1"; libraryHaskellDepends = [ base containers hspec parsec QuickCheck text time ]; @@ -254899,7 +259528,7 @@ self: { license = lib.licenses.mit; }) {}; - "sbp_4_17_0" = callPackage + "sbp_5_0_0" = callPackage ({ mkDerivation, aeson, aeson-pretty, array, base , base64-bytestring, basic-prelude, binary, binary-conduit , bytestring, cmdargs, conduit, conduit-extra, data-binary-ieee754 @@ -254908,8 +259537,8 @@ self: { }: mkDerivation { pname = "sbp"; - version = "4.17.0"; - sha256 = "030qyqd5z0l7nd8q6qz0yr908szpagsy3p0l7jy7gzcx5dkcbmsx"; + version = "5.0.0"; + sha256 = "13wdxgiby4axb02x2n32hlija2k5aw6z2fcn1g5795bz1gyv81k2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -256107,8 +260736,8 @@ self: { pname = "scotty"; version = "0.12.1"; sha256 = "0jnv2k37yv7hbm21w356ml4b14avlwh8yyzwwwfrwpbn6zzk6ahy"; - revision = "1"; - editedCabalFile = "04l4vr53can02jyl6yfxis61al03f4i1p5l2vmdwd8qb3g9026xs"; + revision = "2"; + editedCabalFile = "06hzpbd3adq9wjc5dsz6ikmy6gx60hhlzra58qrc91vi4v76xh0m"; libraryHaskellDepends = [ aeson base base-compat-batteries blaze-builder bytestring case-insensitive data-default-class exceptions http-types @@ -257473,22 +262102,22 @@ self: { license = lib.licenses.mit; }) {inherit (pkgs) secp256k1;}; - "secp256k1-haskell_0_7_0" = callPackage - ({ mkDerivation, base, base16, bytestring, cereal, deepseq, entropy + "secp256k1-haskell_1_0_0" = callPackage + ({ mkDerivation, base, base16, bytestring, deepseq, entropy , hashable, hspec, hspec-discover, HUnit, monad-par, mtl , QuickCheck, secp256k1, string-conversions, unliftio-core }: mkDerivation { pname = "secp256k1-haskell"; - version = "0.7.0"; - sha256 = "02q6czma7lm9xqbxbck87imssjsnhlb6wabj11qikgshxcisddwv"; + version = "1.0.0"; + sha256 = "0pg6kb9xd0ihxc2bfjisbhln85rfww71yy3kx7shh0qyi02q81s7"; libraryHaskellDepends = [ - base base16 bytestring cereal deepseq entropy hashable QuickCheck + base base16 bytestring deepseq entropy hashable QuickCheck string-conversions unliftio-core ]; libraryPkgconfigDepends = [ secp256k1 ]; testHaskellDepends = [ - base base16 bytestring cereal deepseq entropy hashable hspec HUnit + base base16 bytestring deepseq entropy hashable hspec HUnit monad-par mtl QuickCheck string-conversions unliftio-core ]; testToolDepends = [ hspec-discover ]; @@ -259079,8 +263708,8 @@ self: { pname = "servant"; version = "0.20"; sha256 = "09vmz4jy6968hq8bf2b43bzpca8h8sps1h2xqf9y6wcarxbws1pi"; - revision = "2"; - editedCabalFile = "1jwdj2n53gd29n75ylla61jidsw2wy8ddy03jhgw2ghzwnhkdpzi"; + revision = "3"; + editedCabalFile = "01d2dddk6yrck2fl38fisracrw3wnf26ldvy0m06fd7ilyw4fifb"; libraryHaskellDepends = [ aeson attoparsec base base-compat bifunctors bytestring case-insensitive constraints deepseq http-api-data http-media @@ -261675,8 +266304,8 @@ self: { pname = "servant-server"; version = "0.20"; sha256 = "1gp8pslk2sspi5vzrl1nimndpif7jhgzlffi2mzf1ap1bdwgxchk"; - revision = "1"; - editedCabalFile = "0x7z23b3m22afczlnmajcmmcyq9dxvhlv71si0nniz9vzc45l2yb"; + revision = "2"; + editedCabalFile = "0x05ngrrgq4jqv5sfwsf35aziipvz64xajzh4a1b5cmh53q7kc8v"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -263253,8 +267882,8 @@ self: { }: mkDerivation { pname = "sexpresso"; - version = "1.2.3.0"; - sha256 = "0nbwyv0zxcgd2jsng0qn84mnc3x9dc31cq43cacj3mijiss2s57p"; + version = "1.2.4.0"; + sha256 = "1lpr6kl79kcfxxmnr7hkr2rxk51y599dj4303f1dw7i0vlbm7rfb"; libraryHaskellDepends = [ base bifunctors containers megaparsec recursion-schemes text ]; @@ -263456,15 +268085,19 @@ self: { "sha1" = callPackage ({ mkDerivation, base, bytebuild, byteslice, natural-arithmetic - , primitive, small-bytearray-builder + , primitive, run-st }: mkDerivation { pname = "sha1"; - version = "0.1.0.2"; - sha256 = "14jy1g6pm4vnq7rhg4z1yazazk9vfav7nn8saxkddxaflaax4llf"; - libraryHaskellDepends = [ base bytebuild byteslice primitive ]; + version = "0.1.1.0"; + sha256 = "0qb3y13671lld2zkgnr720xacy8fmvv5g86ayhmi0xkx36ldkv7g"; + revision = "1"; + editedCabalFile = "16zxk8qdxysfsjxlicm4xjamnxg9mysdgwrfwc4qa67anqkqgxdv"; + libraryHaskellDepends = [ + base bytebuild byteslice primitive run-st + ]; testHaskellDepends = [ - base byteslice natural-arithmetic primitive small-bytearray-builder + base bytebuild byteslice natural-arithmetic primitive ]; description = "SHA-1 Hash"; license = lib.licenses.bsd3; @@ -264513,8 +269146,8 @@ self: { }: mkDerivation { pname = "shellify"; - version = "0.10.0.1"; - sha256 = "0wih7jl3za8cm62wk8zplyc94356ccrck1kri814z4pk7dav50lv"; + version = "0.10.0.3"; + sha256 = "0kgyhyvjsryda03b93nvi07q47mcyqz8rfy0awgr8nbi0gv0d8jd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -264591,6 +269224,8 @@ self: { pname = "shellmet"; version = "0.0.4.1"; sha256 = "0jd05bazny7y25jnminal5wv30kxg6pzchswxpw5yac027qjagd0"; + revision = "1"; + editedCabalFile = "1ivpa3nrbp8qjam99m6dblhakc8gml1hhhigsmb708ndsyqfqa2i"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base process text ]; @@ -265303,14 +269938,16 @@ self: { }) {}; "si-timers" = callPackage - ({ mkDerivation, base, io-classes, mtl, QuickCheck, stm, tasty - , tasty-quickcheck, time + ({ mkDerivation, base, deepseq, io-classes, mtl, nothunks + , QuickCheck, stm, tasty, tasty-quickcheck, time }: mkDerivation { pname = "si-timers"; - version = "1.1.0.0"; - sha256 = "1xcha073j5vylddcx1hrkkwfaajw75j9dvy9haip8crli72535r1"; - libraryHaskellDepends = [ base io-classes mtl stm time ]; + version = "1.2.0.0"; + sha256 = "0abxynhg51bazj1dvd4pxpr6wzfd7gganymlnfj4dxday6y3cnc4"; + libraryHaskellDepends = [ + base deepseq io-classes mtl nothunks stm time + ]; testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; description = "timers using SI units (seconds)"; license = lib.licenses.asl20; @@ -266091,8 +270728,8 @@ self: { }: mkDerivation { pname = "simple-expr"; - version = "0.1.0.2"; - sha256 = "1blr20svc7w5gdjpzlldgwjpy452n4bgvz3sbbrpgrqlcj1vln5b"; + version = "0.1.1.0"; + sha256 = "0qbmwnl9wgngpx94j9h906mrk9iyclrl0w6wy3p7za7dygcb333i"; libraryHaskellDepends = [ base data-fix graphite graphviz hashable numhask text unicode-show ]; @@ -266469,8 +271106,8 @@ self: { ({ mkDerivation, base, exceptions, extra, haskeline, time }: mkDerivation { pname = "simple-prompt"; - version = "0.2.0.1"; - sha256 = "1bmq1x7raibnlqkjay3gnvsqiiggv2n911vk02z1glly90b5yg21"; + version = "0.2.1"; + sha256 = "0p2xss8l8jzp0dm6ql9sswlsm8mcfxra20dnbnql3bz9v2a2wdhc"; libraryHaskellDepends = [ base exceptions extra haskeline time ]; description = "Simple commandline text prompt functions"; license = lib.licenses.bsd3; @@ -268004,6 +272641,26 @@ self: { license = lib.licenses.mit; }) {}; + "skopedate" = callPackage + ({ mkDerivation, aeson, base, bytestring, extra, http-query + , simple-cmd, simple-cmd-args, time, typed-process + }: + mkDerivation { + pname = "skopedate"; + version = "0.1"; + sha256 = "0czpx3n0g8d3rlv5iir7800l3b0vsr80gjd4pvyvvp7j2a4ra4lj"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson base bytestring extra http-query simple-cmd simple-cmd-args + time typed-process + ]; + testHaskellDepends = [ base simple-cmd ]; + description = "Check dates of container images"; + license = lib.licenses.mit; + mainProgram = "skopedate"; + }) {}; + "skulk" = callPackage ({ mkDerivation, base, hspec, QuickCheck }: mkDerivation { @@ -268042,32 +272699,6 @@ self: { }) {}; "skylighting" = callPackage - ({ mkDerivation, base, binary, blaze-html, bytestring, containers - , pretty-show, skylighting-core, skylighting-format-ansi - , skylighting-format-blaze-html, skylighting-format-context - , skylighting-format-latex, text - }: - mkDerivation { - pname = "skylighting"; - version = "0.13.4"; - sha256 = "09v4da57ijzcaxhibrshw8fdxd0wq8adw44w9wh1rpn2l698gv4m"; - configureFlags = [ "-fexecutable" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary containers skylighting-core skylighting-format-ansi - skylighting-format-blaze-html skylighting-format-context - skylighting-format-latex - ]; - executableHaskellDepends = [ - base blaze-html bytestring containers pretty-show text - ]; - description = "syntax highlighting library"; - license = lib.licenses.gpl2Only; - mainProgram = "skylighting"; - }) {}; - - "skylighting_0_13_4_1" = callPackage ({ mkDerivation, base, binary, blaze-html, bytestring, containers , pretty-show, skylighting-core, skylighting-format-ansi , skylighting-format-blaze-html, skylighting-format-context @@ -268090,41 +272721,10 @@ self: { ]; description = "syntax highlighting library"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "skylighting"; }) {}; "skylighting-core" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring, binary - , bytestring, case-insensitive, colour, containers, criterion, Diff - , directory, filepath, mtl, pretty-show, QuickCheck, safe, tasty - , tasty-golden, tasty-hunit, tasty-quickcheck, text, transformers - , utf8-string, xml-conduit - }: - mkDerivation { - pname = "skylighting-core"; - version = "0.13.4"; - sha256 = "0n9v62fq7iwlz44hfz7zbsqplqkls8x7cb3fmm5xfw020adqjyyf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring binary bytestring - case-insensitive colour containers directory filepath mtl safe text - transformers utf8-string xml-conduit - ]; - testHaskellDepends = [ - aeson base bytestring containers Diff directory filepath - pretty-show QuickCheck tasty tasty-golden tasty-hunit - tasty-quickcheck text - ]; - benchmarkHaskellDepends = [ - base containers criterion filepath text - ]; - description = "syntax highlighting library"; - license = lib.licenses.bsd3; - }) {}; - - "skylighting-core_0_13_4_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring, binary , bytestring, case-insensitive, colour, containers, criterion, Diff , directory, filepath, mtl, pretty-show, QuickCheck, safe, tasty @@ -268152,7 +272752,6 @@ self: { ]; description = "syntax highlighting library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "skylighting-extensions" = callPackage @@ -269288,6 +273887,8 @@ self: { pname = "smith"; version = "0.1.1.0"; sha256 = "0ylhzs0lc7fxp54s74slffkr8rnasy4pak4snyi5jnvma0wiz55g"; + revision = "1"; + editedCabalFile = "00l8f3az6h9vadnyn17kg6ng3p0pp9b17gxilrkriwwjlmjvl81w"; libraryHaskellDepends = [ base bytesmith primitive ]; description = "Parse arrays of tokens"; license = lib.licenses.bsd3; @@ -274922,13 +279523,18 @@ self: { "stable-heap" = callPackage ({ mkDerivation, base, criterion, fingertree, heaps, mwc-random - , pqueue, vector + , pqueue, QuickCheck, tasty, tasty-quickcheck, transformers, vector }: mkDerivation { pname = "stable-heap"; - version = "0.1.0.0"; - sha256 = "14wx42lmk2vd6v356q5cbd78y9xdnmkwcn6ddpnkyzq331hk23s1"; + version = "0.2.1.0"; + sha256 = "0053h9yn303h4b98div1lw21mxf0mizc6w268pvzi6hhvhr84hv3"; + revision = "2"; + editedCabalFile = "0ph54yx7ja2yg5jm0x0b6jrj83xbpg96cq6m577xab33gmwi0961"; libraryHaskellDepends = [ base ]; + testHaskellDepends = [ + base QuickCheck tasty tasty-quickcheck transformers + ]; benchmarkHaskellDepends = [ base criterion fingertree heaps mwc-random pqueue vector ]; @@ -274969,10 +279575,8 @@ self: { ({ mkDerivation, base, ghc-prim, hashtables }: mkDerivation { pname = "stable-memo"; - version = "0.3.1"; - sha256 = "1rv578311cvn7ym08vxxi18dhic50w7ms6cjn77vh032b8fxr3gx"; - revision = "1"; - editedCabalFile = "1wlz6cpbvf8mi4c78dwwbdxsk2wax3y7q27hy78h83gl0cbnfiij"; + version = "0.4.0"; + sha256 = "1bknfpxvhcz6d3957rw26zcfhlp2gh9v6r779zynr9vib39xgwry"; libraryHaskellDepends = [ base ghc-prim hashtables ]; description = "Memoization based on argument identity"; license = lib.licenses.mit; @@ -275062,6 +279666,8 @@ self: { pname = "stack"; version = "2.11.1"; sha256 = "0qihckfj5p9xbq0d8xd9c7zy5jpdl2hrvcc0nq8x67k9a7vqwwx1"; + revision = "2"; + editedCabalFile = "11cjn404f7kmpmls01pq1j1xac838hv7x725fhvrz2w3fhphbbsp"; configureFlags = [ "-fdisable-git-info" "-fhide-dependency-versions" "-fsupported-build" @@ -275948,10 +280554,8 @@ self: { aeson base bytestring hspec mtl QuickCheck yaml ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "stackctl"; - broken = true; - }) {amazonka-sso = null;}; + }) {}; "stacked-dag" = callPackage ({ mkDerivation, base, containers, doctest, graphviz @@ -276927,14 +281531,12 @@ self: { }) {}; "stdcxx" = callPackage - ({ mkDerivation, base, fficxx, fficxx-runtime, template-haskell }: + ({ mkDerivation, base, fficxx-runtime, template-haskell }: mkDerivation { pname = "stdcxx"; - version = "0.7.0.0"; - sha256 = "0r2zm4y1rwpv5pwnlqc51hy746j6hnvhj44vagyxij6ja7xhqxsg"; - libraryHaskellDepends = [ - base fficxx fficxx-runtime template-haskell - ]; + version = "0.7.0.1"; + sha256 = "0830lv6vildyxnpkxgrxpn17k621wgisklw6c2mqiqvm6n9wjga7"; + libraryHaskellDepends = [ base fficxx-runtime template-haskell ]; description = "Binding to Standard Template Library C++"; license = lib.licenses.bsd2; hydraPlatforms = lib.platforms.none; @@ -278671,8 +283273,8 @@ self: { }: mkDerivation { pname = "streaming-utils"; - version = "0.2.4.0"; - sha256 = "108z34mcnp6qcrqx1lblnw5p1qnynvrfrxik6n3ff71iqbg7lllh"; + version = "0.2.5.0"; + sha256 = "1zaq0vk4bzn27w56nxx56fij9cxk7pz5vf2xvglxkj6xip1w63fz"; libraryHaskellDepends = [ aeson attoparsec base bytestring http-client http-client-tls json-stream mtl network network-simple pipes resourcet streaming @@ -279302,8 +283904,8 @@ self: { }: mkDerivation { pname = "strict-list"; - version = "0.1.7.1"; - sha256 = "1bvzyfcjx6g5n2jm1hi0m3aw71xz842hz30giy8p33wjcbshs1c1"; + version = "0.1.7.2"; + sha256 = "1zzrhpgwv4cjjp601fklhv9i1hp4rpabjyylnjwbv757bv8dmlvx"; libraryHaskellDepends = [ base deepseq hashable semigroupoids ]; testHaskellDepends = [ rerebase tasty tasty-quickcheck ]; description = "Strict linked list"; @@ -279311,12 +283913,17 @@ self: { }) {}; "strict-mvar" = callPackage - ({ mkDerivation, base, io-classes }: + ({ mkDerivation, base, io-classes, io-sim, nothunks, QuickCheck + , tasty, tasty-quickcheck + }: mkDerivation { pname = "strict-mvar"; - version = "1.1.0.0"; - sha256 = "0wd6kdkady3pwsswyzx5w93fivsrsxvladh7ndip2qscfgpsd4fs"; + version = "1.2.0.0"; + sha256 = "0w324i9daxsvc4np9vc8bwija2p943sirbqxhjrf9bg144q3ldvd"; libraryHaskellDepends = [ base io-classes ]; + testHaskellDepends = [ + base io-sim nothunks QuickCheck tasty tasty-quickcheck + ]; description = "Strict MVars for IO and IOSim"; license = lib.licenses.asl20; }) {}; @@ -279338,8 +283945,8 @@ self: { ({ mkDerivation, array, base, io-classes, stm }: mkDerivation { pname = "strict-stm"; - version = "1.1.0.1"; - sha256 = "01lw137aarcwbr5vgrkjrfh1kp9bn7ql31xw9ivw9nwfdhjblz04"; + version = "1.2.0.0"; + sha256 = "1kxfnvgrvskgn8ip9gga0fwchnnlxydccf03cpbx524lqrmk4d0x"; libraryHaskellDepends = [ array base io-classes stm ]; description = "Strict STM interface polymorphic over stm implementation"; license = lib.licenses.asl20; @@ -280265,10 +284872,8 @@ self: { }: mkDerivation { pname = "structs"; - version = "0.1.8"; - sha256 = "07y8mahvvi2d3iggzxgrh8dbhg8zrjcamnf0x73ymrwxh0qhyryx"; - revision = "1"; - editedCabalFile = "1k4k41322zvmqw0812kip09gm6dhk441w3q0m59z2b5mlvmqr5qq"; + version = "0.1.9"; + sha256 = "033vx729k9jn4w4hs3kp8nlnf0ylsqgg3q4cmb7zjfpgk4bk511w"; libraryHaskellDepends = [ base deepseq ghc-prim primitive template-haskell th-abstraction ]; @@ -282525,8 +287130,8 @@ self: { ({ mkDerivation, base, containers, mtl, tasty, tasty-hunit }: mkDerivation { pname = "syb"; - version = "0.7.2.3"; - sha256 = "06nrr3x9zgk0ml7xckx04hr46lr15w3p8mrdrgcw8ix92spjvdyh"; + version = "0.7.2.4"; + sha256 = "0q0y5412766xz90lghs4sdna48hawk7csqb3708bjann4a41wz7c"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base containers mtl tasty tasty-hunit ]; description = "Scrap Your Boilerplate"; @@ -282589,8 +287194,8 @@ self: { }: mkDerivation { pname = "sydtest"; - version = "0.15.0.0"; - sha256 = "0yrijkdicdpw1b2h95xg61q5c95bz1i6f2m1s1pa07avzs6bmils"; + version = "0.15.1.0"; + sha256 = "0rviw43ks6rnl1m7wf8ffd70cnizz53svnsz2f9k69787xyqn6zb"; libraryHaskellDepends = [ async autodocodec autodocodec-yaml base bytestring containers dlist envparse filepath MonadRandom mtl optparse-applicative path path-io @@ -284824,8 +289429,8 @@ self: { }: mkDerivation { pname = "taffybar"; - version = "4.0.0"; - sha256 = "1rwir1jlqxby2gj4pxbhz9khn6pfgn4bn3wca6q8zyzn0vs3i2wg"; + version = "4.0.1"; + sha256 = "0lbviimazjc65j05hmncv2idd096yj7mgrk4r3q9vws2b8d9sww8"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -284925,6 +289530,20 @@ self: { license = lib.licenses.bsd3; }) {}; + "tagged_0_8_8" = callPackage + ({ mkDerivation, base, deepseq, template-haskell, transformers }: + mkDerivation { + pname = "tagged"; + version = "0.8.8"; + sha256 = "19x66y8zqh06mmkbbnpy0m5sk402zj6iqfj3d30h6qji6mwgm0x0"; + libraryHaskellDepends = [ + base deepseq template-haskell transformers + ]; + description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "tagged-binary" = callPackage ({ mkDerivation, base, base-compat, binary, bytestring, pureMD5 }: mkDerivation { @@ -285311,6 +289930,128 @@ self: { broken = true; }) {}; + "tahoe-capabilities" = callPackage + ({ mkDerivation, base, text }: + mkDerivation { + pname = "tahoe-capabilities"; + version = "0.1.0.0"; + sha256 = "1adv12v0l2r13s9yr37zzvixwjpkla0vpvwlrz8sq0j0mkls36pm"; + libraryHaskellDepends = [ base text ]; + testHaskellDepends = [ base ]; + description = "Abstractions related to Tahoe-LAFS \"capabilities\""; + license = lib.licenses.lgpl3Plus; + }) {}; + + "tahoe-chk" = callPackage + ({ mkDerivation, aeson, async, base, base32, base64-bytestring + , binary, bytestring, cereal, cipher-aes128, concurrency + , containers, crypto-api, cryptonite, directory, extra, fec + , filepath, hedgehog, megaparsec, memory, monad-loops + , network-byte-order, optparse-applicative, parser-combinators + , primitive, scientific, tagged, tasty, tasty-hedgehog, tasty-hunit + , temporary, text, tree-diff, utility-ht, vector, yaml + }: + mkDerivation { + pname = "tahoe-chk"; + version = "0.1.0.2"; + sha256 = "18gbk1zk11nq08vfxqjb9ayf1k1vhic21mdp7v4fwxjrqkvxlwpr"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson async base base32 base64-bytestring binary bytestring cereal + cipher-aes128 concurrency containers crypto-api cryptonite + directory extra fec filepath megaparsec memory monad-loops + network-byte-order parser-combinators primitive tagged text + tree-diff utility-ht + ]; + executableHaskellDepends = [ + base base32 bytestring optparse-applicative text + ]; + testHaskellDepends = [ + aeson base base32 base64-bytestring binary bytestring cereal + cipher-aes128 containers crypto-api cryptonite directory fec + filepath hedgehog megaparsec scientific tagged tasty tasty-hedgehog + tasty-hunit temporary text tree-diff vector yaml + ]; + description = "The Tahoe-LAFS' Content-Hash-Key (CHK) cryptographic protocol"; + license = lib.licenses.bsd3; + mainProgram = "tahoe-chk-encrypt"; + }) {}; + + "tahoe-great-black-swamp" = callPackage + ({ mkDerivation, aeson, async, base, base32, base32string + , base64-bytestring, binary, bytestring, cborg, cborg-json + , connection, containers, deriving-aeson, directory, filepath + , foldl, hspec, hspec-expectations, hspec-wai, http-api-data + , http-client, http-client-tls, http-media, http-types, megaparsec + , network-uri, optparse-applicative, primitive, QuickCheck + , quickcheck-instances, safe-exceptions, scientific, serialise + , servant, servant-client, servant-docs, servant-js, servant-server + , tahoe-chk, temporary, text, unordered-containers, utf8-string + , vector, wai, wai-extra, warp, warp-tls + }: + mkDerivation { + pname = "tahoe-great-black-swamp"; + version = "0.3.0.1"; + sha256 = "16n8jv5pb0z8x3dczpcqq29lmn24irinh81p9m75qad88i8p3r57"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson async base base64-bytestring binary bytestring cborg + cborg-json containers deriving-aeson directory filepath foldl + http-api-data http-media http-types primitive safe-exceptions + scientific serialise servant-client servant-docs servant-server + text unordered-containers utf8-string vector wai warp warp-tls + ]; + executableHaskellDepends = [ + aeson async base base32 base64-bytestring binary bytestring cborg + connection containers deriving-aeson directory filepath foldl + http-client http-client-tls http-types megaparsec network-uri + optparse-applicative primitive safe-exceptions serialise servant + servant-client servant-js tahoe-chk text unordered-containers + vector warp + ]; + testHaskellDepends = [ + aeson async base base32string binary bytestring cborg containers + deriving-aeson directory filepath foldl hspec hspec-expectations + hspec-wai http-types primitive QuickCheck quickcheck-instances + safe-exceptions serialise servant temporary text + unordered-containers vector wai-extra + ]; + description = "An implementation of the \"Great Black Swamp\" LAFS protocol"; + license = lib.licenses.bsd3; + }) {}; + + "tahoe-ssk" = callPackage + ({ mkDerivation, asn1-encoding, asn1-types, base, base32, binary + , bytestring, cereal, containers, cryptonite, hedgehog, megaparsec + , memory, tahoe-capabilities, tahoe-chk, tasty, tasty-hedgehog + , tasty-hunit, text, x509 + }: + mkDerivation { + pname = "tahoe-ssk"; + version = "0.2.1.0"; + sha256 = "1qkzkdqqyjh2qzkl03f3wg4xlpmb8n1hq95bmdqwx1212aap3qxx"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + asn1-encoding asn1-types base base32 binary bytestring cereal + containers cryptonite megaparsec memory tahoe-capabilities + tahoe-chk text x509 + ]; + executableHaskellDepends = [ + asn1-encoding asn1-types base base32 binary bytestring cryptonite + tahoe-capabilities text x509 + ]; + testHaskellDepends = [ + asn1-encoding asn1-types base base32 binary bytestring cryptonite + hedgehog megaparsec memory tahoe-capabilities tahoe-chk tasty + tasty-hedgehog tasty-hunit text x509 + ]; + description = "An implementation of the Tahoe-LAFS SSK cryptographic protocols"; + license = lib.licenses.bsd3; + }) {}; + "tai" = callPackage ({ mkDerivation, base, clock, lens, mtl, parsers, time, trifecta , wreq @@ -285779,6 +290520,33 @@ self: { license = lib.licenses.mit; }) {}; + "tar-conduit_0_4_0" = callPackage + ({ mkDerivation, base, bytestring, conduit, conduit-combinators + , conduit-extra, containers, criterion, deepseq, directory + , filepath, hspec, mtl, QuickCheck, safe-exceptions, text, unix + , weigh + }: + mkDerivation { + pname = "tar-conduit"; + version = "0.4.0"; + sha256 = "0h0z6g1q57jy20p5m8y56dqkrfvpz46yhglsvg3n4mncr88jlrfj"; + libraryHaskellDepends = [ + base bytestring conduit conduit-combinators containers directory + filepath mtl safe-exceptions text unix + ]; + testHaskellDepends = [ + base bytestring conduit conduit-combinators conduit-extra + containers deepseq directory filepath hspec QuickCheck weigh + ]; + benchmarkHaskellDepends = [ + base bytestring conduit conduit-combinators containers criterion + deepseq directory filepath hspec + ]; + description = "Extract and create tar files using conduit for streaming"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + }) {}; + "tardis" = callPackage ({ mkDerivation, base, mmorph, mtl }: mkDerivation { @@ -285967,8 +290735,8 @@ self: { }: mkDerivation { pname = "taskwarrior"; - version = "0.6.0.5"; - sha256 = "1xyf6dd5npiypp6z7zs31vc9bsid4jm12lh4p415909vwfyp1c04"; + version = "0.6.0.6"; + sha256 = "12kxadpdw5k702j1p1bvgjy763gdhsy9wzx249apzqjgh0x766jc"; libraryHaskellDepends = [ aeson base bytestring containers process random text time uuid ]; @@ -286049,6 +290817,8 @@ self: { pname = "tasty-autocollect"; version = "0.4.1"; sha256 = "0b374x2m2rx1zzqb1i5wr36d6nxs1wx1cxyggjszlwxssz0vqzcj"; + revision = "1"; + editedCabalFile = "0vr3r4wq2kxzg4yk085xk95zz6a5m8q0j6nb7lqlp7s5ff3ch7h1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -286320,6 +291090,23 @@ self: { license = lib.licenses.bsd3; }) {}; + "tasty-hedgehog_1_4_0_2" = callPackage + ({ mkDerivation, base, hedgehog, tagged, tasty + , tasty-expected-failure + }: + mkDerivation { + pname = "tasty-hedgehog"; + version = "1.4.0.2"; + sha256 = "0lki03z0p38x0dkqx5cqga30zy5m31gxn1saqylja9bi6bbq8d25"; + libraryHaskellDepends = [ base hedgehog tagged tasty ]; + testHaskellDepends = [ + base hedgehog tasty tasty-expected-failure + ]; + description = "Integration for tasty and hedgehog"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "tasty-hedgehog-coverage" = callPackage ({ mkDerivation, base, containers, hedgehog, mtl, tagged, tasty , tasty-expected-failure, tasty-hedgehog, text, transformers @@ -286477,8 +291264,8 @@ self: { pname = "tasty-inspection-testing"; version = "0.2"; sha256 = "1gdwbg545gwfx2a26s7hkgz9l9mfb13i6v20j09hqrlbh1xsi3qz"; - revision = "1"; - editedCabalFile = "1539r8zxbpwf1ia48syslq2j5v6l8czigp4fjwfwdcsf8x5k9j6g"; + revision = "2"; + editedCabalFile = "1fqyjm63qvi26lwbd9h2rj3178z8pf4gx3pry95fwlgkqd2hwjp9"; libraryHaskellDepends = [ base ghc inspection-testing tasty template-haskell ]; @@ -290558,10 +295345,8 @@ self: { }: mkDerivation { pname = "text-show"; - version = "3.10.3"; - sha256 = "0f59cr1bqy2kbhdxxz1a86lf6masyy67f1i8kj1815df6rpgnshy"; - revision = "1"; - editedCabalFile = "0ix7wgh7xcgxfdvfrphilb81zfpkb1swla2has2py24nxyn2dd46"; + version = "3.10.4"; + sha256 = "0kjpl9wbvn5zcpwjyrvdnkcp260rizff598cmqh4py8225fl5bmz"; libraryHaskellDepends = [ array base base-compat-batteries bifunctors bytestring bytestring-builder containers generic-deriving ghc-boot-th ghc-prim @@ -290591,10 +295376,8 @@ self: { }: mkDerivation { pname = "text-show-instances"; - version = "3.9.5"; - sha256 = "0i91yil7qlk0vv242prs178lvddzlzhh9d78lnmvyvalqrw7bib8"; - revision = "1"; - editedCabalFile = "06464d8ffxj5ag8ml6nriywwb05jk5z3kim13d0q3bz0m7s3hgz0"; + version = "3.9.6"; + sha256 = "1xmifjcx52jpa3qlmd5v11x429kn5qm64k2a7ai1lwpmy3mvpa90"; libraryHaskellDepends = [ aeson base base-compat bifunctors binary containers directory ghc-boot-th haskeline hpc old-locale old-time pretty random @@ -290983,12 +295766,12 @@ self: { license = lib.licenses.isc; }) {}; - "th-abstraction_0_5_0_0" = callPackage + "th-abstraction_0_6_0_0" = callPackage ({ mkDerivation, base, containers, ghc-prim, template-haskell }: mkDerivation { pname = "th-abstraction"; - version = "0.5.0.0"; - sha256 = "0r4ri85283i1jjhd94wa9nps6cd9a8mh6rr4ds1gb2hqnwxdqn42"; + version = "0.6.0.0"; + sha256 = "0c0sqn9bz2rgrqdfkricbs2p6vn7is89qcpqw7hvc00c3z56xsk9"; libraryHaskellDepends = [ base containers ghc-prim template-haskell ]; @@ -291062,8 +295845,8 @@ self: { pname = "th-compat"; version = "0.1.4"; sha256 = "1f5ssi24mnhmmi91dl5ddg2jwci6akwlznqggf56nyxl9b0pmyfq"; - revision = "2"; - editedCabalFile = "0c0p2qy78cwhdfw0hn8g16l5xidikdk5314gam4258pk7q47rbp5"; + revision = "3"; + editedCabalFile = "1zrjfmbm9dm3mh3s4h6nb80ixwypkmc2dzgxim6b1jkjkj7inz9y"; libraryHaskellDepends = [ base template-haskell ]; testHaskellDepends = [ base base-compat hspec mtl template-haskell @@ -291212,8 +295995,8 @@ self: { pname = "th-expand-syns"; version = "0.4.11.0"; sha256 = "1l7pkc16vnjgiam31745av14j7ngnr5mqmgp77xwd3h7fg75kkca"; - revision = "1"; - editedCabalFile = "0kc4czr7bz5wl88fj11h02gn8fwr2azhw5z7ykil6lx7v1b42rg8"; + revision = "2"; + editedCabalFile = "08g28p57w0i61x2f2036aqxp4ilhchy7h3dbd0ncbq17ba6x9hfi"; libraryHaskellDepends = [ base containers syb template-haskell th-abstraction ]; @@ -291405,8 +296188,8 @@ self: { }: mkDerivation { pname = "th-lift"; - version = "0.8.3"; - sha256 = "0xbbii04c60l6v6fnd50lldhpsg1ba03j1ff9bmyzpp7z3sppm95"; + version = "0.8.4"; + sha256 = "06x6njyn6p6shwj5n1znq017vwalr867ziwbwzimz9jbilipgigr"; libraryHaskellDepends = [ base ghc-prim template-haskell th-abstraction ]; @@ -291455,8 +296238,8 @@ self: { pname = "th-orphans"; version = "0.13.14"; sha256 = "0z07qcbbsj2b3j9p1qr4jvlpa7qgjfjvymkjd6vbizka1wd2mnwx"; - revision = "1"; - editedCabalFile = "1lb3gi32gzy6ml8jxzyj6jp9gglgg2737aqc128gqz4g7wvbnasy"; + revision = "2"; + editedCabalFile = "1kjb7ik4js6bpsdb32sna8xcxamia02fhx1wcbg831mnf2qfpp6w"; libraryHaskellDepends = [ base mtl template-haskell th-compat th-lift th-reify-many ]; @@ -293147,6 +297930,18 @@ self: { license = lib.licenses.mit; }) {}; + "time-manager_0_0_1" = callPackage + ({ mkDerivation, auto-update, base, unliftio }: + mkDerivation { + pname = "time-manager"; + version = "0.0.1"; + sha256 = "0nx03qrnvxd1r0mdy8qzr5hd0gfzjg67cqlg63nbhsdwz8ijaj87"; + libraryHaskellDepends = [ auto-update base unliftio ]; + description = "Scalable timer"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + }) {}; + "time-out" = callPackage ({ mkDerivation, base, data-default-class, exceptions , time-interval, time-units, transformers @@ -294082,8 +298877,8 @@ self: { }: mkDerivation { pname = "tinytools"; - version = "0.1.0.3"; - sha256 = "18ww0f86ifhy8770vflcip6vcfdaz8r8rgzss83w21qr0q4cl8bm"; + version = "0.1.0.4"; + sha256 = "0yzwvygjdg8g7w8hqk7x1myab9yl12945i6n7q93yr9w80s04d0a"; libraryHaskellDepends = [ aeson aeson-pretty base bimap binary bytestring constraints-extras containers data-default data-ordlist deepseq dependent-map @@ -294100,6 +298895,7 @@ self: { random-shuffle ref-tf reflex reflex-potatoes reflex-test-host relude semialign template-haskell text text-icu these vector vty ]; + description = "tinytools is a mono-space unicode diagram editor"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; }) {}; @@ -294115,10 +298911,8 @@ self: { }: mkDerivation { pname = "tinytools-vty"; - version = "0.1.0.3"; - sha256 = "17q484rfrwixp2y72x1pxcav2y6sz99la961yn8iwa1ipwljy1s6"; - revision = "1"; - editedCabalFile = "1mfyc4ilc68p8q4cpjq528387zg4bzzs6kzp12s4i3hmm7lxxch8"; + version = "0.1.0.4"; + sha256 = "1hcnwnq5imjqdcvlcri8dmc4lr08dg3nx6rklrv8a0rx34rd8naa"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -294146,7 +298940,7 @@ self: { reflex-test-host reflex-vty relude semialign template-haskell text these time tinytools vty ]; - description = "a terminal based unicode diagram editing tool"; + description = "tinytools-vty is a terminal based monospace unicode diagram editing tool"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; }) {}; @@ -294527,7 +299321,7 @@ self: { license = lib.licenses.bsd3; }) {}; - "tls_1_7_0" = callPackage + "tls_1_7_1" = callPackage ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring , cereal, crypton, crypton-x509, crypton-x509-store , crypton-x509-validation, data-default-class, gauge, hourglass @@ -294536,8 +299330,8 @@ self: { }: mkDerivation { pname = "tls"; - version = "1.7.0"; - sha256 = "0y20ab42pa6ls799w8s6zda6r7q4bw25jghimzv68s6j0b4m0aiw"; + version = "1.7.1"; + sha256 = "0q277cp2dqp5cs7mmzqavi8sm0km7xbf2zgcqjp17491w7q5a687"; libraryHaskellDepends = [ asn1-encoding asn1-types async base bytestring cereal crypton crypton-x509 crypton-x509-store crypton-x509-validation @@ -294733,15 +299527,15 @@ self: { license = lib.licenses.bsd3; }) {}; - "tmp-proc_0_5_2_1" = callPackage + "tmp-proc_0_5_3_0" = callPackage ({ mkDerivation, async, base, bytestring, data-default, hspec , http-client, http-types, mtl, network, process, text, unliftio , wai, warp, warp-tls }: mkDerivation { pname = "tmp-proc"; - version = "0.5.2.1"; - sha256 = "0zhwvpy9dxxy550wr7wha6iqmrvcqpdgdlzx08sjljzvi1wiliji"; + version = "0.5.3.0"; + sha256 = "0wir2bmvpibx5ak1zfk3jjxalz5lznqfw48m4cybds02xpmxrsxa"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -294768,8 +299562,8 @@ self: { }: mkDerivation { pname = "tmp-proc-example"; - version = "0.5.1.2"; - sha256 = "1dfvb85n3ivikfm91i33g4l96rdndrhqxad18h3nfk9g05x9af1d"; + version = "0.5.3.1"; + sha256 = "10p93rck5z4jhsy77rg6v1i19125561px1mjigqs1v1ip288ygfa"; libraryHaskellDepends = [ aeson base bytestring exceptions hedis hspec hspec-tmp-proc http-client http-client-tls monad-logger mtl persistent @@ -294778,7 +299572,7 @@ self: { tmp-proc-postgres tmp-proc-redis transformers wai warp ]; testHaskellDepends = [ base hspec ]; - description = "Shows how to test a simple service using tmp-proc"; + description = "Test a simple service with backends running on docker using tmp-proc"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; broken = true; @@ -294803,6 +299597,26 @@ self: { license = lib.licenses.bsd3; }) {}; + "tmp-proc-postgres_0_5_3_1" = callPackage + ({ mkDerivation, base, bytestring, hspec, hspec-tmp-proc + , postgresql-simple, text, tmp-proc + }: + mkDerivation { + pname = "tmp-proc-postgres"; + version = "0.5.3.1"; + sha256 = "04kcqn2lg7ycf2hjv4gvq9y59w48dn5kijxs7cghiz8yq1qc75zf"; + libraryHaskellDepends = [ + base bytestring postgresql-simple text tmp-proc + ]; + testHaskellDepends = [ + base bytestring hspec hspec-tmp-proc postgresql-simple text + tmp-proc + ]; + description = "Launch a PostgreSQL database in docker using tmp-proc"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "tmp-proc-rabbitmq" = callPackage ({ mkDerivation, amqp, base, bytestring, hspec, hspec-tmp-proc , text, tmp-proc @@ -294819,6 +299633,23 @@ self: { license = lib.licenses.bsd3; }) {}; + "tmp-proc-rabbitmq_0_5_3_1" = callPackage + ({ mkDerivation, amqp, base, bytestring, hspec, hspec-tmp-proc + , text, tmp-proc + }: + mkDerivation { + pname = "tmp-proc-rabbitmq"; + version = "0.5.3.1"; + sha256 = "0jkghypnlc9fsss8nqk7rbr42wkmdpgaa5v6bhfw6mwrcnz4i15h"; + libraryHaskellDepends = [ amqp base bytestring text tmp-proc ]; + testHaskellDepends = [ + amqp base bytestring hspec hspec-tmp-proc text tmp-proc + ]; + description = "Launch RabbitMQ in docker using tmp-proc"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "tmp-proc-redis" = callPackage ({ mkDerivation, base, bytestring, hedis, hspec, hspec-tmp-proc , text, tmp-proc @@ -294835,21 +299666,38 @@ self: { license = lib.licenses.bsd3; }) {}; + "tmp-proc-redis_0_5_3_1" = callPackage + ({ mkDerivation, base, bytestring, hedis, hspec, hspec-tmp-proc + , text, tmp-proc + }: + mkDerivation { + pname = "tmp-proc-redis"; + version = "0.5.3.1"; + sha256 = "1pqmg6xqfbl71q5pnryrmqsf443qpsq89wk1kax6k68zmyn7ws4i"; + libraryHaskellDepends = [ base bytestring hedis text tmp-proc ]; + testHaskellDepends = [ + base bytestring hedis hspec hspec-tmp-proc text tmp-proc + ]; + description = "Launch Redis in docker using tmp-proc"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "tmp-proc-zipkin" = callPackage ({ mkDerivation, base, bytestring, hspec, hspec-tmp-proc , http-client, text, tmp-proc, tracing }: mkDerivation { pname = "tmp-proc-zipkin"; - version = "0.5.1.4"; - sha256 = "19vwpgchhzc29ssvdidjim97957dnf8p21myq5fc3js7dq7lzgz3"; + version = "0.5.3.1"; + sha256 = "1wwy50987h6bx9fyn5k9jamsmzrx8l58nqbjynmwymwzj82kwlwc"; libraryHaskellDepends = [ base bytestring http-client text tmp-proc tracing ]; testHaskellDepends = [ base bytestring hspec hspec-tmp-proc text tmp-proc ]; - description = "Shows how to run redis as a tmp proc"; + description = "Launch ZipKin in docker using tmp-proc"; license = lib.licenses.bsd3; }) {}; @@ -295408,6 +300256,8 @@ self: { pname = "tomland"; version = "1.3.3.2"; sha256 = "152jqjv6n7n2hdysn903wfhpwh6vp8wmjiymzasazprasdcxpywm"; + revision = "1"; + editedCabalFile = "03gnkws6yggkjn4kh8m1aah51a9lg2p25l9bl51cq54hmpcq51ni"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -295735,8 +300585,8 @@ self: { ({ mkDerivation, base, filepath, hspec, profunctors, text }: mkDerivation { pname = "tophat"; - version = "1.0.5.1"; - sha256 = "1y519agpn8ksybfakgg4n565w26mgr3kvpjk555pq5s6rb77wjdf"; + version = "1.0.6.0"; + sha256 = "0ijsd9af3p06q4dk02fckmyqxf9hrvmn98fmlzhykkzi3q22648j"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base profunctors text ]; @@ -296611,12 +301461,12 @@ self: { mainProgram = "Benchmark"; }) {}; - "transformers_0_6_1_0" = callPackage + "transformers_0_6_1_1" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "transformers"; - version = "0.6.1.0"; - sha256 = "1n54v7wrnk06rj9w70grpmr9c6xvw1shpwygfnshslarggnwpaz7"; + version = "0.6.1.1"; + sha256 = "09fpjawkixgm3xpas89wkpkn1jfpxz035crnp97if2hh1y759ll1"; libraryHaskellDepends = [ base ]; description = "Concrete functor and monad transformers"; license = lib.licenses.bsd3; @@ -297745,8 +302595,8 @@ self: { pname = "trial"; version = "0.0.0.0"; sha256 = "0lnq80983bg2cjim3fy8rwisn55f6acqwp67w7791kzfdwshxkww"; - revision = "1"; - editedCabalFile = "1anl65i1zk2764078n7xa0ymrrg58hwlsnm4b6km56yw77j3nkc3"; + revision = "2"; + editedCabalFile = "1w98141cgwrik37hz35vkyf5x4p230863axp6mf6rnrlf7gayikr"; libraryHaskellDepends = [ base colourista dlist ]; testHaskellDepends = [ base dlist doctest hedgehog hspec hspec-hedgehog splitmix @@ -297761,6 +302611,8 @@ self: { pname = "trial-optparse-applicative"; version = "0.0.0.0"; sha256 = "1h8pfznf1dp9z3r2kl2ljgmxxkfp3va9yqba00fyvw85lna2aggn"; + revision = "1"; + editedCabalFile = "0g05gi4b3c7ghyih83wq4icavg51p1bjx75i1g9nnx1cy4j82m4j"; libraryHaskellDepends = [ base optparse-applicative trial ]; description = "Trial helper functions for optparse-applicative"; license = lib.licenses.mpl20; @@ -297772,8 +302624,8 @@ self: { pname = "trial-tomland"; version = "0.0.0.0"; sha256 = "12klfq5ajn4bjrws633pfdc2zhpkwvwmrm7269xfh252fjwk1x23"; - revision = "1"; - editedCabalFile = "1h2ygxwg75hvx8izmfgrkk1sznafpkaxz3v18hxfv4b8lfm9nfkl"; + revision = "2"; + editedCabalFile = "1ssvwzqcz5vmvlrmxl6akcfpkr15inra3hdjfm1pg50gcri3mxkp"; libraryHaskellDepends = [ base text tomland trial ]; description = "Trial helper functions for tomland"; license = lib.licenses.mpl20; @@ -297806,6 +302658,8 @@ self: { pname = "trie-simple"; version = "0.4.2"; sha256 = "1ai4fn35312z6ydwadi0rxscglwqawjrzq6p1i2kpbf7vmflznjg"; + revision = "1"; + editedCabalFile = "08vpcln682lxpz6367f6h5mvi6p75g3gcav432jz0bkmhvr3yaa2"; libraryHaskellDepends = [ base containers deepseq hashable indexed-traversable matchable mtl semialign these witherable @@ -297860,10 +302714,8 @@ self: { }: mkDerivation { pname = "trifecta"; - version = "2.1.2"; - sha256 = "1akx8m6mgskwsbhsf90cxlqjq23jk4pwaxagvm923dpncwrlwfla"; - revision = "3"; - editedCabalFile = "005c02rzsj83zm5ys6572af2d57lalsnkla5f312x0b7ykhnmz90"; + version = "2.1.3"; + sha256 = "05jnq2q27ichv9x6g9dx7ljppy3mkyv8ppzb0ynmfmpkcbghpbrf"; libraryHaskellDepends = [ ansi-terminal array base blaze-builder blaze-html blaze-markup bytestring charset comonad containers deepseq fingertree ghc-prim @@ -302771,8 +307623,8 @@ self: { }: mkDerivation { pname = "unicode-tricks"; - version = "0.14.0.0"; - sha256 = "1p612nkaq2v020n22zgw6cv3glwjsj1jcy6ad4lw30dg800wcrb2"; + version = "0.14.1.0"; + sha256 = "1j08f217kma9bqv0b4z9k3l3hmfy2cw4fiaqwyikhnz3a6d8crzj"; libraryHaskellDepends = [ base containers data-default-class deepseq hashable QuickCheck text time @@ -302827,6 +307679,8 @@ self: { pname = "unification-fd"; version = "0.11.2"; sha256 = "1lyx3g10llkr7vl7c2j15ddlqrkz2r684d1laza7nvq97amrqnqv"; + revision = "1"; + editedCabalFile = "07xmrqmk99lnp3jyk0dqgnpprm3ghnyjdqva0y13ddh3nw8iiqdj"; libraryHaskellDepends = [ base containers logict mtl ]; description = "Simple generic unification algorithms"; license = lib.licenses.bsd3; @@ -303194,8 +308048,8 @@ self: { }: mkDerivation { pname = "unionmount"; - version = "0.2.0.0"; - sha256 = "0hh577kwg6981141g62f4w95lyyhjn3a461sy28822gd3lpwlwlm"; + version = "0.2.2.0"; + sha256 = "0gifmxi8z74s6ckh5naqp3y4ililxzp52adnlp10cglbjw18vkis"; libraryHaskellDepends = [ async base bytestring containers data-default directory filepath filepattern fsnotify lvar monad-logger mtl relude text time @@ -303583,25 +308437,6 @@ self: { }) {}; "units-parser" = callPackage - ({ mkDerivation, base, containers, mtl, multimap, parsec, syb - , tasty, tasty-hunit, template-haskell - }: - mkDerivation { - pname = "units-parser"; - version = "0.1.1.4"; - sha256 = "1sdf8jqq03x20gj91faqir9vrdjq7cxpnypx7bi953vjg8fh2jfm"; - revision = "1"; - editedCabalFile = "14g8a4azsdxp86c0yddkws5yzszjmkw1y78x1i7pj20cgbfjnnn7"; - libraryHaskellDepends = [ base containers mtl multimap parsec ]; - testHaskellDepends = [ - base containers mtl multimap parsec syb tasty tasty-hunit - template-haskell - ]; - description = "A parser for units of measure"; - license = lib.licenses.bsd3; - }) {}; - - "units-parser_0_1_1_5" = callPackage ({ mkDerivation, base, containers, mtl, multimap, parsec, syb , tasty, tasty-hunit, template-haskell }: @@ -303616,7 +308451,6 @@ self: { ]; description = "A parser for units of measure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "unittyped" = callPackage @@ -303914,6 +308748,8 @@ self: { pname = "unix"; version = "2.8.1.1"; sha256 = "1133y9wyhxznw9sizcybf0rcrm5pgsx8g4qriicz703w89cpca6c"; + revision = "1"; + editedCabalFile = "1nqriil1mrrijyfkhnfxcdsnvmcg7b6p2zpadj1vkqw0kbxl71dc"; libraryHaskellDepends = [ base bytestring filepath time ]; testHaskellDepends = [ base tasty tasty-hunit ]; description = "POSIX functionality"; @@ -306071,8 +310907,8 @@ self: { }: mkDerivation { pname = "uuagc"; - version = "0.9.54"; - sha256 = "1gs4dx9h7gyamlaj9sjpx5yrriffl3g5wn0hr9bjwzy223nprizp"; + version = "0.9.55"; + sha256 = "1j0k94l1ydwwf2cpw22f8caa99hnw61ni7a0bpdgy7vdxsplzzqc"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ base Cabal uuagc-cabal ]; @@ -306701,6 +311537,8 @@ self: { pname = "validation-selective"; version = "0.2.0.0"; sha256 = "11s9qsp5w19lbk6vg6psr3864xdsx2kmx3gcmnn2qkx6wsblx24s"; + revision = "1"; + editedCabalFile = "0m6bvg1z5rxwr2ls8vqizjx3psjm0dvf2vvycwi4shbqn2pgaiz8"; libraryHaskellDepends = [ base deepseq selective ]; testHaskellDepends = [ base doctest hedgehog hspec hspec-hedgehog selective text @@ -307589,8 +312427,8 @@ self: { pname = "vector"; version = "0.13.0.0"; sha256 = "0ksvs6ldb8bzbjy4gk39wds2lrwill2g7pbr13h54bz12myidly5"; - revision = "3"; - editedCabalFile = "0k14l1r84gxjv385crq8f1kvdcr4kjwyi4k7f64g6nksl60sqp7s"; + revision = "5"; + editedCabalFile = "0j239l4jjjyxaly65fpyg8458k8srgnsy5kn8710c7hmqwl222qx"; libraryHaskellDepends = [ base deepseq primitive vector-stream ]; testHaskellDepends = [ base base-orphans doctest HUnit primitive QuickCheck random tasty @@ -308151,8 +312989,8 @@ self: { pname = "vector-stream"; version = "0.1.0.0"; sha256 = "0v40vdpp35lhnnnx7q17fah0c14jrkjlnwsk0q4mbwb7ch7j3258"; - revision = "2"; - editedCabalFile = "1jldm2bh9d0y7vmyv3l85ilps4n8ypqr6da0cgqg5dfi3hlxbmpm"; + revision = "3"; + editedCabalFile = "1bp859ly11xqipgr29d70kl2day7raibmm79qprdjm7c9ffraxw9"; libraryHaskellDepends = [ base ghc-prim ]; description = "Efficient Streams"; license = lib.licenses.bsd3; @@ -312321,15 +317159,15 @@ self: { license = lib.licenses.mit; }) {}; - "warp-tls_3_4_0" = callPackage + "warp-tls_3_4_1" = callPackage ({ mkDerivation, base, bytestring, data-default-class, network , recv, streaming-commons, tls, tls-session-manager, unliftio, wai , warp }: mkDerivation { pname = "warp-tls"; - version = "3.4.0"; - sha256 = "1pf3dlqjdybzza9sfs14r4vn63s15m7rpv83v27illbv2fs4a0b2"; + version = "3.4.1"; + sha256 = "0c4iz2dm12clcs1fqmi5c0qddzv09nqclfgfs6jhqdmygkvrkxs7"; libraryHaskellDepends = [ base bytestring data-default-class network recv streaming-commons tls tls-session-manager unliftio wai warp @@ -312852,8 +317690,8 @@ self: { }: mkDerivation { pname = "web-rep"; - version = "0.10.1"; - sha256 = "13x2fjq9d6pg89gfc127ipjnkaxza5qbvrym5k5wwpcj11l94mac"; + version = "0.10.2.0"; + sha256 = "1bph0zgns0kji4bhirffy4px1rddxyw2yiq6wa197pvl4wkpqn6y"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -313856,8 +318694,8 @@ self: { }: mkDerivation { pname = "webp"; - version = "0.1.0.2"; - sha256 = "04bf0apq9q2kpkkhsj93y3fmjkind7dmgb3hf3nxlj7sy46d4mix"; + version = "0.1.0.3"; + sha256 = "01p55arpwq14yff0z285fdhrx0pjn9acxasapk7lr2f7ra5fql09"; libraryHaskellDepends = [ base bytestring JuicyPixels vector ]; libraryPkgconfigDepends = [ libwebp ]; libraryToolDepends = [ c2hs ]; @@ -314520,14 +319358,14 @@ self: { , prettyprinter, process, QuickCheck, s-cargot, scientific, stm , tasty, tasty-checklist, tasty-expected-failure, tasty-hedgehog , tasty-hunit, tasty-quickcheck, tasty-sugar, template-haskell - , temporary, text, th-abstraction, th-lift, th-lift-instances, time - , transformers, unliftio, unordered-containers, utf8-string, vector - , versions, zenc + , temporary, text, th-lift, th-lift-instances, time, transformers + , unliftio, unordered-containers, utf8-string, vector, versions + , zenc }: mkDerivation { pname = "what4"; - version = "1.4"; - sha256 = "1cmvf1cn4x3g86idbhs27f2hpm0vri51hcrvlss2bx4z85vk649b"; + version = "1.5"; + sha256 = "02wl88sma18zhn1pav966kgldiwh942mws01qyp6nxgcx0p9i76s"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -314538,7 +319376,7 @@ self: { hashable hashtables io-streams lens libBF megaparsec mtl ordered-containers panic parameterized-utils parsec prettyprinter process s-cargot scientific stm template-haskell temporary text - th-abstraction th-lift th-lift-instances time transformers unliftio + th-lift th-lift-instances time transformers unliftio unordered-containers utf8-string vector versions zenc ]; executableHaskellDepends = [ base parameterized-utils ]; @@ -315309,8 +320147,8 @@ self: { ({ mkDerivation, base, constraints, containers, countable }: mkDerivation { pname = "witness"; - version = "0.6.1"; - sha256 = "02ky1qc4ar8iy3rzjp2j89mp3k7skz5jp65vn7lilmwrvm1b2vcx"; + version = "0.6.2"; + sha256 = "0g83d6b6w8djsqkqdarw6szzwvz8h7i05x8jwzpvax86fcvwp3cr"; libraryHaskellDepends = [ base constraints containers countable ]; description = "values that witness types"; license = lib.licenses.bsd2; @@ -315513,6 +320351,8 @@ self: { pname = "wl-pprint-text"; version = "1.2.0.2"; sha256 = "0axivwh7bxmljxpfnccs66knxzrqck07byxmp2j737xbb26pf5cj"; + revision = "1"; + editedCabalFile = "030lk3dxn9ry0si5zd7lh1pww1i1nx670i1h3z8y4wwiil97pni1"; libraryHaskellDepends = [ base base-compat text ]; description = "A Wadler/Leijen Pretty Printer for Text values"; license = lib.licenses.bsd3; @@ -316417,8 +321257,8 @@ self: { }: mkDerivation { pname = "wreq"; - version = "0.5.4.0"; - sha256 = "0wf4ia9zr6wmw9kvn5fhv3gr0h5247nz889j8rhamfgab9yn2a65"; + version = "0.5.4.1"; + sha256 = "0fn0cgr15i6zakg98mjkd1lik7r27ixxrg5iimfls154kwmxk8qs"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ base Cabal cabal-doctest ]; @@ -316441,6 +321281,45 @@ self: { license = lib.licenses.bsd3; }) {}; + "wreq_0_5_4_2" = callPackage + ({ mkDerivation, aeson, aeson-pretty, attoparsec + , authenticate-oauth, base, base16-bytestring, base64-bytestring + , bytestring, Cabal, cabal-doctest, case-insensitive, containers + , cryptonite, directory, doctest, exceptions, filepath, ghc-prim + , hashable, http-client, http-client-tls, http-types, HUnit, lens + , lens-aeson, memory, mime-types, network-info, psqueues + , QuickCheck, snap-core, snap-server, template-haskell, temporary + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , text, time, time-locale-compat, transformers, unix-compat + , unordered-containers, uuid, vector + }: + mkDerivation { + pname = "wreq"; + version = "0.5.4.2"; + sha256 = "016m5ij80nxnkz3hvdzx3g4w7yjk40bx47xrn54bx1ni9aq2h6wh"; + isLibrary = true; + isExecutable = true; + setupHaskellDepends = [ base Cabal cabal-doctest ]; + libraryHaskellDepends = [ + aeson attoparsec authenticate-oauth base base16-bytestring + bytestring case-insensitive containers cryptonite exceptions + ghc-prim hashable http-client http-client-tls http-types lens + lens-aeson memory mime-types psqueues template-haskell text time + time-locale-compat unordered-containers + ]; + testHaskellDepends = [ + aeson aeson-pretty base base64-bytestring bytestring + case-insensitive containers directory doctest filepath hashable + http-client http-types HUnit lens lens-aeson network-info + QuickCheck snap-core snap-server temporary test-framework + test-framework-hunit test-framework-quickcheck2 text time + transformers unix-compat unordered-containers uuid vector + ]; + description = "An easy-to-use HTTP client library"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "wreq-helper" = callPackage ({ mkDerivation, aeson, aeson-result, base, bytestring, http-client , text @@ -319393,28 +324272,6 @@ self: { }) {}; "xor" = callPackage - ({ mkDerivation, base, bytestring, criterion, ghc-byteorder - , QuickCheck, tasty, tasty-hunit, tasty-quickcheck - }: - mkDerivation { - pname = "xor"; - version = "0.0.1.1"; - sha256 = "05jwfrg4cm27ldj3dbl0y144njhiha9yiypirbhsg6lc1b36s3kh"; - revision = "3"; - editedCabalFile = "17al5ilxr2bqkv565jsv38frqvkxzn642m3j1j80zjmmw762a7sa"; - libraryHaskellDepends = [ base bytestring ghc-byteorder ]; - testHaskellDepends = [ - base bytestring ghc-byteorder QuickCheck tasty tasty-hunit - tasty-quickcheck - ]; - benchmarkHaskellDepends = [ - base bytestring criterion ghc-byteorder - ]; - description = "Efficient XOR masking"; - license = lib.licenses.gpl2Plus; - }) {}; - - "xor_0_0_1_2" = callPackage ({ mkDerivation, base, bytestring, criterion, ghc-byteorder , QuickCheck, tasty, tasty-hunit, tasty-quickcheck }: @@ -319422,6 +324279,8 @@ self: { pname = "xor"; version = "0.0.1.2"; sha256 = "0c0a1zg0kwp3jdlgw6y1l6qp00680khxa3sizx5wafdv09rwmrxc"; + revision = "1"; + editedCabalFile = "10k9apdrb9dnkhhg3xw1x2ac57ink224l554w4j3yv5w43jybd7r"; libraryHaskellDepends = [ base bytestring ghc-byteorder ]; testHaskellDepends = [ base bytestring ghc-byteorder QuickCheck tasty tasty-hunit @@ -319432,7 +324291,6 @@ self: { ]; description = "Efficient XOR masking"; license = lib.licenses.gpl2Plus; - hydraPlatforms = lib.platforms.none; }) {}; "xorshift" = callPackage @@ -320618,8 +325476,8 @@ self: { pname = "yampa-canvas"; version = "0.2.3"; sha256 = "0a1pq1psmc4490isr19z4prnqq1w3374vkfmzpw9s20s2p6k5y7r"; - revision = "10"; - editedCabalFile = "1pamw58yr17csjj2ysy0wwx41dkvfdaxxn90k5q7rdb12rfvdyp4"; + revision = "11"; + editedCabalFile = "1pwk3g6ipzl94b74vgi34xjvkamm7ivwhs0ah52zg85jp8hr6qkc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base blank-canvas stm time Yampa ]; @@ -320707,8 +325565,8 @@ self: { }: mkDerivation { pname = "yampa-test"; - version = "0.14.3"; - sha256 = "1r4kjf1ww4gfw310c1srcglxyd34c5qf3rb7xqpncjagvsh027xy"; + version = "0.14.4"; + sha256 = "18h94h0pylgn4q6pzkhs3j5qchj9kafw09xh4kgdp2394b7xk4iy"; libraryHaskellDepends = [ base normaldistribution QuickCheck Yampa ]; @@ -321720,8 +326578,8 @@ self: { }: mkDerivation { pname = "yesod-auth-oauth2"; - version = "0.7.1.0"; - sha256 = "112xdc5i1r1vfi95ws1jlldy6q9kv1cv6h26l3ahmmr8rqw3rz4h"; + version = "0.7.1.1"; + sha256 = "1giac751jkygddf09a1h75dd4qv6kjjw5992447k53m1j398dpbn"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -322015,8 +326873,8 @@ self: { }: mkDerivation { pname = "yesod-core"; - version = "1.6.24.3"; - sha256 = "035162bdcrjf2fs2whrhagh9jbclqnlzgp8ixxzi3712gm6dfkn5"; + version = "1.6.24.4"; + sha256 = "1r7jpilg42jn1hyg8wxg92jh496c9jhghkrxh8fi0x4rbrcswxj3"; libraryHaskellDepends = [ aeson auto-update base blaze-html blaze-markup bytestring case-insensitive cereal clientsession conduit conduit-extra @@ -322332,8 +327190,8 @@ self: { }: mkDerivation { pname = "yesod-form-bootstrap4"; - version = "3.0.1"; - sha256 = "0yf4b14y8b5066lwdr7r2ayiavsnkar3s8q984yb1nrz5956f7qd"; + version = "3.0.1.1"; + sha256 = "0yii8sllvkqdpjlpq0al8c8srs7x9xy3v0jfcdi1d7rkc0dm2y1v"; libraryHaskellDepends = [ base blaze-html blaze-markup shakespeare text yesod-core yesod-form ]; @@ -323027,8 +327885,8 @@ self: { }: mkDerivation { pname = "yesod-recaptcha2"; - version = "1.0.2"; - sha256 = "0ql05yxq3k8sywncaz3cf3xaihf4pd0ijn139ms8snyps36k6l8h"; + version = "1.0.2.1"; + sha256 = "0sk9icq6j3fiiqq0hc2bxwm7mi1a1zli9gkyb8m007nylbqglvn2"; libraryHaskellDepends = [ aeson base http-conduit string-transform text yesod-core yesod-form ]; @@ -325252,8 +330110,8 @@ self: { pname = "zigzag"; version = "0.0.1.0"; sha256 = "1gy2hv4ggxfwrxg9v3qyxpfrm1j5sixckc2j3h37ckzsh5v06mga"; - revision = "1"; - editedCabalFile = "04n4m74hlh0fpy7qbgmm0piblc5d54nnj7322wnw2yj50am7hbxc"; + revision = "2"; + editedCabalFile = "15bk9kmhmmw40vnh4axva4wx9l9v914f347pd8w71d6wpa0s3fjl"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; description = "Zigzag encoding of integers into unsigned integers"; @@ -325585,8 +330443,8 @@ self: { pname = "zlib"; version = "0.6.3.0"; sha256 = "1nh4xsm3kgsg76jmkcphvy7hhslg9hx1s75mpsskhi2ksjd9ialy"; - revision = "2"; - editedCabalFile = "0c8pr02ypwv42288akn3njajvda20kp4vjkbbjnzcarmq0xxjv9q"; + revision = "3"; + editedCabalFile = "0hgh4rn9qinckiiwdnbp9rn0kpc06x18466i713971j03zf8wang"; libraryHaskellDepends = [ base bytestring ]; librarySystemDepends = [ zlib ]; testHaskellDepends = [ @@ -325884,8 +330742,8 @@ self: { }: mkDerivation { pname = "zoovisitor"; - version = "0.2.5.1"; - sha256 = "0iwc1z52q91dbpd6x2wdz8q9xi5hf7w8b1xpd68km80gnirwbca5"; + version = "0.2.6.1"; + sha256 = "1lkmkv03k6icd85jbrv8rzwr1kl8v496m86kyc7sy773vlslkds1"; libraryHaskellDepends = [ base bytestring exceptions Z-Data ]; librarySystemDepends = [ zookeeper_mt ]; testHaskellDepends = [ async base hspec uuid Z-Data ]; @@ -326165,8 +331023,8 @@ self: { }: mkDerivation { pname = "zxcvbn-hs"; - version = "0.3.2"; - sha256 = "12jr76vxajhqc3rksgz5b26vdcdjyc4gbz02lxv66h0i94zansq8"; + version = "0.3.5"; + sha256 = "1vjdpzki02xdxva8a81qhdlzch79b8d87m52jc8kbxhniaf0fibk"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ From 0a088cfd184cf2b3f895f112c57024eca21fad7c Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Thu, 17 Aug 2023 10:57:26 +0200 Subject: [PATCH 011/346] haskellPackages: reflect lsp-types 2.0.1.0 -> 2.0.1.1 --- pkgs/development/haskell-modules/configuration-common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 9951c38a54bb..380d4e94c81e 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2565,7 +2565,7 @@ self: super: { # Needs lsp >= 2.1 futhark = super.futhark.overrideScope (fself: _: { lsp = fself.lsp_2_1_0_0; - lsp-types = fself.lsp-types_2_0_1_0; + lsp-types = fself.lsp-types_2_0_1_1; }); # Too strict bounds on hspec From 8d847a62ae0208bba5e0ec46489697af3eb334d0 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Thu, 17 Aug 2023 10:58:47 +0200 Subject: [PATCH 012/346] haskellPackages.pandoc-cli: reflect updates of dependencies haskellPackages.pandoc: 3.1.6 -> 3.1.6.1 haskellPackages.tls: 1.7.0 -> 1.7.1 haskellPackages.http-client-tls: 0.3.6.2 -> 0.3.6.2 Stackage LTS updated to skylighting* 0.13.4.1. --- .../haskell-modules/configuration-common.nix | 16 ++++++---------- .../transitive-broken.yaml | 2 +- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 380d4e94c81e..9c9c21311fab 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -312,7 +312,7 @@ self: super: { # Overriding the version pandoc dependency uses as the latest release has version bounds # defined as >= 3.1 && < 3.2, can be removed once pandoc gets bumped by Stackage. - patat = super.patat.override { pandoc = self.pandoc_3_1_6; }; + patat = super.patat.override { pandoc = self.pandoc_3_1_6_1; }; # The latest release on hackage has an upper bound on containers which # breaks the build, though it works with the version of containers present @@ -1918,27 +1918,23 @@ self: super: { inherit (let pandoc-cli-overlay = self: super: { # pandoc-cli requires pandoc >= 3.1 - pandoc = self.pandoc_3_1_6; + pandoc = self.pandoc_3_1_6_1; # pandoc depends on crypton-connection, which requires tls >= 1.7 - tls = self.tls_1_7_0; + tls = self.tls_1_7_1; crypton-connection = unmarkBroken super.crypton-connection; # pandoc depends on http-client-tls, which only starts depending # on crypton-connection in http-client-tls-0.3.6.2. - http-client-tls = self.http-client-tls_0_3_6_2; - - # pandoc and skylighting are developed in tandem - skylighting-core = self.skylighting-core_0_13_4_1; - skylighting = self.skylighting_0_13_4_1; + http-client-tls = self.http-client-tls_0_3_6_3; }; in { pandoc-cli = super.pandoc-cli.overrideScope pandoc-cli-overlay; - pandoc_3_1_6 = doDistribute (super.pandoc_3_1_6.overrideScope pandoc-cli-overlay); + pandoc_3_1_6_1 = doDistribute (super.pandoc_3_1_6_1.overrideScope pandoc-cli-overlay); pandoc-lua-engine = super.pandoc-lua-engine.overrideScope pandoc-cli-overlay; }) pandoc-cli - pandoc_3_1_6 + pandoc_3_1_6_1 pandoc-lua-engine ; diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml index 10340d5afe6c..04d429c8ae11 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml @@ -2364,7 +2364,7 @@ dont-distribute-packages: - htsn-import - http-client-auth - http-client-rustls - - http-client-tls_0_3_6_2 + - http-client-tls_0_3_6_3 - http-conduit_2_3_8_3 - http-enumerator - http2-client-grpc From ef2488f189309d1275d51d6169c115f9b996891b Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Thu, 17 Aug 2023 11:08:44 +0200 Subject: [PATCH 013/346] haskellPackages.yesod-core: remove obsolete override --- pkgs/development/haskell-modules/configuration-common.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 9c9c21311fab..bdaf0b43e795 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -856,9 +856,6 @@ self: super: { elm-server = markBroken super.elm-server; elm-yesod = markBroken super.elm-yesod; - # Tests failure with GHC >= 9.0.1, fixed in 1.6.24.4 - yesod-core = assert super.yesod-core.version == "1.6.24.3"; dontCheck super.yesod-core; - # https://github.com/Euterpea/Euterpea2/issues/40 Euterpea = doJailbreak super.Euterpea; From 9dc1cb39a3e294016b483f50e62b947a7f097359 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Thu, 17 Aug 2023 11:13:13 +0200 Subject: [PATCH 014/346] haskell.packages.ghc8107.ghc-lib{,-parser}: reflect hackage updates --- pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix index 4bf89ec4ea31..1ca8347c4fc2 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix @@ -116,9 +116,9 @@ self: super: { hls-overloaded-record-dot-plugin = null; })); - ghc-lib-parser = doDistribute self.ghc-lib-parser_9_2_7_20230228; + ghc-lib-parser = doDistribute self.ghc-lib-parser_9_2_8_20230729; ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_2_1_1; - ghc-lib = doDistribute self.ghc-lib_9_2_7_20230228; + ghc-lib = doDistribute self.ghc-lib_9_2_8_20230729; mod = super.mod_0_1_2_2; path-io = doJailbreak super.path-io; From d6bd89869e0bfaaa200907d77aeecf65dd3c5f10 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Fri, 18 Aug 2023 10:19:15 +0200 Subject: [PATCH 015/346] arion: remove obsolete override --- pkgs/development/haskell-modules/configuration-common.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index bdaf0b43e795..74dbba6edc54 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -237,8 +237,7 @@ self: super: { # Arion's test suite needs a Nixpkgs, which is cumbersome to do from Nixpkgs # itself. For instance, pkgs.path has dirty sources and puts a huge .git in the # store. Testing is done upstream. - # 2023-07-27: Allow base-4.17 - arion-compose = dontCheck (assert super.arion-compose.version == "0.2.0.0"; doJailbreak super.arion-compose); + arion-compose = dontCheck super.arion-compose; # 2023-07-17: Outdated base bound https://github.com/srid/lvar/issues/5 lvar = doJailbreak super.lvar; From 3c62c4675e3e50ffb45cf1c5f6260bc657cce10b Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Fri, 18 Aug 2023 10:36:21 +0200 Subject: [PATCH 016/346] taffybar: remove obsolete overrides --- pkgs/development/haskell-modules/configuration-common.nix | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 74dbba6edc54..68eae72d7e9b 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2531,13 +2531,6 @@ self: super: { }) super.polynomial); - # Unreleased bound relaxing patch allowing scotty 0.12 - taffybar = appendPatch (pkgs.fetchpatch { - name = "taffybar-allow-scotty-0.12.patch"; - url = "https://github.com/taffybar/taffybar/commit/2e428ba550fc51067526a0350b91185acef72d19.patch"; - sha256 = "1lpcz671mk5cwqffjfi9ncc0d67bmwgzypy3i37a2fhfmxd0y3nl"; - }) ((p: assert p.version == "4.0.0"; p) super.taffybar); - # Tests likely broke because of https://github.com/nick8325/quickcheck/issues/359, # but fft is not on GitHub, so no issue reported. fft = dontCheck super.fft; From 14c332b453a0e0346d93811f501c5d1ac1f41956 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Fri, 18 Aug 2023 10:40:03 +0200 Subject: [PATCH 017/346] haskell.packages.ghc96: reflect version updates --- pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix index d2fcb916020c..49e6902ff4df 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix @@ -68,7 +68,7 @@ self: super: { doctest = doDistribute super.doctest_0_22_0; http-api-data = doDistribute self.http-api-data_0_6; # allows base >= 4.18 some = doDistribute self.some_1_0_5; - th-abstraction = doDistribute self.th-abstraction_0_5_0_0; + th-abstraction = doDistribute self.th-abstraction_0_6_0_0; th-desugar = doDistribute self.th-desugar_1_15; semigroupoids = doDistribute self.semigroupoids_6_0_0_1; bifunctors = doDistribute self.bifunctors_5_6_1; @@ -81,7 +81,7 @@ self: super: { ghc-lib = doDistribute self.ghc-lib_9_6_2_20230523; ghc-lib-parser = doDistribute self.ghc-lib-parser_9_6_2_20230523; - ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_6_0_0; + ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_6_0_1; # v0.1.6 forbids base >= 4.18 singleton-bool = doDistribute super.singleton-bool_0_1_7; From edcf830429642d06eee298cbcff6b0e61fa24cd4 Mon Sep 17 00:00:00 2001 From: Daniel Rolls Date: Fri, 18 Aug 2023 10:33:13 +0100 Subject: [PATCH 018/346] haskellPackages.shellify: re-add --- .../haskell-modules/configuration-hackage2nix/broken.yaml | 1 - pkgs/development/haskell-modules/hackage-packages.nix | 2 -- 2 files changed, 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml index c4783feb5362..d87a81e7a689 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml @@ -5131,7 +5131,6 @@ broken-packages: - sha-streams - she - Shellac - - shellify # failure building test suite 'haskelltest-test' in job https://hydra.nixos.org/build/230963414 at 2023-08-16 - shellish - shellmate - shellmet # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972264 at 2023-08-16 diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index c282c067d845..1e26097db52e 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -269158,10 +269158,8 @@ self: { testHaskellDepends = [ base hspec hspec-core raw-strings-qq text ]; description = "A tool for generating shell.nix files"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "shellify"; maintainers = [ lib.maintainers.danielrolls ]; - broken = true; }) {}; "shellish" = callPackage From 1107a3960af9c3b31af795119f74a0f05caf2620 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Fri, 18 Aug 2023 23:24:05 +0200 Subject: [PATCH 019/346] haskellPackages.bloomfilter: drop patches obsoleted by release --- .../haskell-modules/configuration-common.nix | 19 ------------- .../patches/bloomfilter-fix-on-32bit.patch | 28 ------------------- 2 files changed, 47 deletions(-) delete mode 100644 pkgs/development/haskell-modules/patches/bloomfilter-fix-on-32bit.patch diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 68eae72d7e9b..c0096b0b6aae 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -931,25 +931,6 @@ self: super: { # https://github.com/basvandijk/concurrent-extra/issues/12 concurrent-extra = dontCheck super.concurrent-extra; - bloomfilter = appendPatches [ - # https://github.com/bos/bloomfilter/issues/7 - ./patches/bloomfilter-fix-on-32bit.patch - # Fix build with GHC >= 9.2 by using stock unsafeShift* functions - # https://github.com/bos/bloomfilter/pull/20 - (pkgs.fetchpatch { - name = "bloomfilter-ghc-9.2-shift.patch"; - url = "https://github.com/bos/bloomfilter/pull/20/commits/fb79b39c44404fd791a3bed973e9d844fb084f1e.patch"; - sha256 = "0clmr5iar4mhp8nbgh1c1rh4fl7dy0g2kbqqh0af8aqmhjpqzrq3"; - }) - ] (overrideCabal (drv: { - # Make sure GHC 9.2 patch applies correctly - revision = null; - editedCabalFile = null; - prePatch = drv.prePatch or "" + '' - "${pkgs.buildPackages.dos2unix}/bin/dos2unix" *.cabal - ''; - }) super.bloomfilter); - # https://github.com/pxqr/base32-bytestring/issues/4 base32-bytestring = dontCheck super.base32-bytestring; diff --git a/pkgs/development/haskell-modules/patches/bloomfilter-fix-on-32bit.patch b/pkgs/development/haskell-modules/patches/bloomfilter-fix-on-32bit.patch deleted file mode 100644 index 7b32dcb4ab6f..000000000000 --- a/pkgs/development/haskell-modules/patches/bloomfilter-fix-on-32bit.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 35d972b3dc5056110d55315f2256d9c5046299c7 Mon Sep 17 00:00:00 2001 -From: Peter Simons -Date: Tue, 1 Sep 2015 17:58:36 +0200 -Subject: [PATCH] Revert "Fix maximum sizing calculation." - -This reverts commit 44b01ba38b4fcdb5a85f44fa2f3af1f29cde8f40. The change breaks -this package on 32 bit platforms. See https://github.com/bos/bloomfilter/issues/7 -for further details. ---- - Data/BloomFilter/Easy.hs | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/Data/BloomFilter/Easy.hs b/Data/BloomFilter/Easy.hs -index 5143c6e..a349168 100644 ---- a/Data/BloomFilter/Easy.hs -+++ b/Data/BloomFilter/Easy.hs -@@ -72,7 +72,7 @@ safeSuggestSizing capacity errRate - minimum [((-k) * cap / log (1 - (errRate ** (1 / k))), k) - | k <- [1..100]] - roundedBits = nextPowerOfTwo (ceiling bits) -- in if roundedBits <= 0 || roundedBits > 0xffffffff -+ in if roundedBits <= 0 - then Left "capacity too large to represent" - else Right (roundedBits, truncate hashes) - --- -2.5.1 - From dba9d4e33a2dd73d052aee9f71f494b086d43647 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 20 Aug 2023 00:26:52 +0200 Subject: [PATCH 020/346] haskellPackages.lsp_2_1_0_0: allow building individually --- .../haskell-modules/configuration-common.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index c0096b0b6aae..d4ad7e64fd23 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2529,9 +2529,13 @@ self: super: { lucid-htmx = doJailbreak super.lucid-htmx; # Needs lsp >= 2.1 - futhark = super.futhark.overrideScope (fself: _: { - lsp = fself.lsp_2_1_0_0; - lsp-types = fself.lsp-types_2_0_1_1; + futhark = super.futhark.override { + lsp = self.lsp_2_1_0_0; + }; + + # Provide matching lsp-types version + lsp_2_1_0_0 = doDistribute (super.lsp_2_1_0_0.override { + lsp-types = self.lsp-types_2_0_1_1; }); # Too strict bounds on hspec From f434e83d62f8cc887309670ae551f24fec95611b Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sun, 20 Aug 2023 08:50:53 +0100 Subject: [PATCH 021/346] angsd: pull patch pending upstream inclusion for parallel build fix Without the change rapallel builds fail occasionally as: $ make --shuffle -j ... g++ -c -O3 -D__STDC_FORMAT_MACROS argStruct.cpp g++ -c -O3 -D__STDC_FORMAT_MACROS ancestral_likes.cpp gcc -c -O3 -D__STDC_FORMAT_MACROS fet.c g++ -c -O3 -D__STDC_FORMAT_MACROS abcGL.cpp g++ -c -O3 -D__STDC_FORMAT_MACROS pop1_read.cpp g++ -c -O3 -D__STDC_FORMAT_MACROS angsd.cpp g++ -c -O3 -D__STDC_FORMAT_MACROS abcHWE_F.cpp gcc -c -O3 -D__STDC_FORMAT_MACROS kprobaln.c g++ -c -O3 -D__STDC_FORMAT_MACROS mpileup.cpp argStruct.cpp:3:10: fatal error: version.h: No such file or directory 3 | #include "version.h" | ^~~~~~~~~~~ compilation terminated. angsd.cpp:11:10: fatal error: version.h: No such file or directory 11 | #include "version.h" | ^~~~~~~~~~~ --- .../science/biology/angsd/default.nix | 24 ++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/science/biology/angsd/default.nix b/pkgs/applications/science/biology/angsd/default.nix index 035cb2ca2b27..71366dc0d364 100644 --- a/pkgs/applications/science/biology/angsd/default.nix +++ b/pkgs/applications/science/biology/angsd/default.nix @@ -1,4 +1,14 @@ -{ lib, stdenv, fetchFromGitHub, htslib, zlib, bzip2, xz, curl, openssl }: +{ lib +, stdenv +, fetchFromGitHub +, fetchpatch +, htslib +, zlib +, bzip2 +, xz +, curl +, openssl +}: stdenv.mkDerivation rec { pname = "angsd"; @@ -11,8 +21,20 @@ stdenv.mkDerivation rec { rev = version; }; + patches = [ + # Pull pending inclusion upstream patch for parallel buil fixes: + # https://github.com/ANGSD/angsd/pull/590 + (fetchpatch { + name = "parallel-make.patch"; + url = "https://github.com/ANGSD/angsd/commit/89fd1d898078016df390e07e25b8a3eeadcedf43.patch"; + hash = "sha256-KQgUfr3v8xc+opAm4qcSV2eaupztv4gzJJHyzJBCxqA="; + }) + ]; + buildInputs = [ htslib zlib bzip2 xz curl openssl ]; + enableParallelBuilding = true; + makeFlags = [ "HTSSRC=systemwide" "prefix=$(out)" ]; meta = with lib; { From 1bf815d91c37b72e695a181e83c5dc560eefda73 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Mon, 21 Aug 2023 17:49:24 +0200 Subject: [PATCH 022/346] git-annex: update sha256 for 10.20230802 --- pkgs/development/haskell-modules/configuration-common.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index d4ad7e64fd23..01c76d4e033f 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -110,6 +110,9 @@ self: super: { # otherwise we have different versions of ghc-paths # around which have the same abi-hash, which can lead to confusions and conflicts. ghc-paths = lsuper.ghc-paths.override { Cabal = null; }; + + lsp = lself.lsp_2_1_0_0; + lsp-test = lself.lsp-test_0_15_0_1; }); # 2023-04-03: https://github.com/haskell/haskell-language-server/issues/3546#issuecomment-1494139751 @@ -337,7 +340,7 @@ self: super: { name = "git-annex-${super.git-annex.version}-src"; url = "git://git-annex.branchable.com/"; rev = "refs/tags/" + super.git-annex.version; - sha256 = "1i14mv8z9sr5sckckwiba4cypgs3iwk19pyrl9xzcrzz426dxrba"; + sha256 = "0fg3q7apdijnlgyb0yps1znjjd2nv3016r9cyxyw209sqn3whnx5"; # delete android and Android directories which cause issues on # darwin (case insensitive directory). Since we don't need them # during the build process, we can delete it to prevent a hash From c4bea4230563296643626a20af0c5e34c83c778a Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Mon, 21 Aug 2023 17:52:00 +0200 Subject: [PATCH 023/346] haskell-language-server: revert accidentally committed overrides --- pkgs/development/haskell-modules/configuration-common.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 01c76d4e033f..8632da15036c 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -110,9 +110,6 @@ self: super: { # otherwise we have different versions of ghc-paths # around which have the same abi-hash, which can lead to confusions and conflicts. ghc-paths = lsuper.ghc-paths.override { Cabal = null; }; - - lsp = lself.lsp_2_1_0_0; - lsp-test = lself.lsp-test_0_15_0_1; }); # 2023-04-03: https://github.com/haskell/haskell-language-server/issues/3546#issuecomment-1494139751 From 4788fa95f894d1ae112c3a7f38ffb8974d9e1691 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Mon, 21 Aug 2023 20:00:04 +0200 Subject: [PATCH 024/346] haskellPackages.spdx: apply patches for GHC >= 9.4 --- .../haskell-modules/configuration-common.nix | 16 ++++++++++++++++ .../configuration-hackage2nix/broken.yaml | 1 - .../haskell-modules/hackage-packages.nix | 2 -- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 8632da15036c..554fbb5c0f43 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -892,6 +892,22 @@ self: super: { # It does not support aeson 2.0 descriptive = super.descriptive.override { aeson = self.aeson_1_5_6_0; }; + # Apply compatibility patches until a new release arrives + # https://github.com/phadej/spdx/issues/33 + spdx = appendPatches [ + (fetchpatch { + name = "spdx-ghc-9.4.patch"; + url = "https://github.com/phadej/spdx/pull/30/commits/545dc69f433225c837375fba4cbbdb7f9cc7b09b.patch"; + sha256 = "0p2h8dxkjy2v0dx7h6v62clmx5n5j3c4zh4myh926fijympi1glz"; + }) + (fetchpatch { + name = "spdx-ghc-9.6.patch"; + url = "https://github.com/phadej/spdx/pull/32/commits/b51f665e9960614274ff6a9ac658802c1a785687.patch"; + sha256 = "01vf1h0djr84yxsjfhym715ncx0w5q4l02k3dkbmg40pnc62ql4h"; + excludes = [ ".github/**" ]; + }) + ] super.spdx; + # 2022-03-19: Testsuite is failing: https://github.com/puffnfresh/haskell-jwt/issues/2 jwt = dontCheck super.jwt; diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml index d87a81e7a689..7465a471cd81 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml @@ -5342,7 +5342,6 @@ broken-packages: - sparse-linear-algebra # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966041 at 2023-08-16 - sparse-merkle-trees # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948641 at 2023-08-16 - sparse-tensor - - spdx # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970358 at 2023-08-16 - special-functors - special-keys - spectacle diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 1e26097db52e..e24134ff2ed0 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -277569,8 +277569,6 @@ self: { ]; description = "SPDX license expression language, Extras"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "spdx-license" = callPackage From 26d2cf5e3b397ed3100344ba75bf33348f832797 Mon Sep 17 00:00:00 2001 From: maralorn Date: Tue, 22 Aug 2023 01:50:08 +0200 Subject: [PATCH 025/346] haskell-language-server: Fix build --- .../haskell-modules/configuration-common.nix | 14 --- .../configuration-hackage2nix/main.yaml | 5 -- .../haskell-modules/configuration-nix.nix | 2 +- .../haskell-modules/hackage-packages.nix | 86 ------------------- 4 files changed, 1 insertion(+), 106 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 554fbb5c0f43..b701f6eeb8b8 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -116,10 +116,6 @@ self: super: { # There will probably be a new revision soon. hls-brittany-plugin = assert super.hls-brittany-plugin.version == "1.1.0.0"; doJailbreak super.hls-brittany-plugin; - hls-hlint-plugin = super.hls-hlint-plugin.override { - apply-refact = self.apply-refact_0_11_0_0; - }; - # For -f-auto see cabal.project in haskell-language-server. ghc-lib-parser-ex = addBuildDepend self.ghc-lib-parser (disableCabalFlag "auto" super.ghc-lib-parser-ex); @@ -2544,16 +2540,6 @@ self: super: { # has been resolved. lucid-htmx = doJailbreak super.lucid-htmx; - # Needs lsp >= 2.1 - futhark = super.futhark.override { - lsp = self.lsp_2_1_0_0; - }; - - # Provide matching lsp-types version - lsp_2_1_0_0 = doDistribute (super.lsp_2_1_0_0.override { - lsp-types = self.lsp-types_2_0_1_1; - }); - # Too strict bounds on hspec # https://github.com/klapaucius/vector-hashtables/issues/11 vector-hashtables = doJailbreak super.vector-hashtables; diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml index 9f32c9011113..1af167f53538 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml @@ -41,11 +41,6 @@ default-package-overrides: - dhall-nixpkgs == 1.0.9 - dhall-nix == 1.1.25 - # 2023-06-24: HLS at large can't deal with lsp-2.0.0.0 yet - - lsp == 1.6.* - - lsp-types == 1.6.* - - lsp-test == 0.14.* - # 2023-07-06: ghcide-2.0.0.1 explicitly needs implicit-hie < 0.1.3, because some sort of # breaking change was introduced in implicit-hie-0.1.3.0. # https://github.com/haskell/haskell-language-server/blob/feb596592de95f09cf4ee885f3e74178161919f1/ghcide/ghcide.cabal#L107-L111 diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 6b8e254c3af9..60e2f6fbd0aa 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -123,7 +123,6 @@ self: super: builtins.intersectAttrs super { hls-brittany-plugin hls-floskell-plugin hls-fourmolu-plugin - hls-cabal-plugin hls-overloaded-record-dot-plugin ; @@ -134,6 +133,7 @@ self: super: builtins.intersectAttrs super { hls-gadt-plugin # https://github.com/haskell/haskell-language-server/pull/3431 + hls-cabal-plugin hls-cabal-fmt-plugin hls-code-range-plugin hls-explicit-record-fields-plugin diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index e24134ff2ed0..972ac30bd5b2 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -190937,35 +190937,6 @@ self: { }) {}; "lsp" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, bytestring - , co-log-core, containers, data-default, directory, exceptions - , filepath, hashable, hspec, hspec-discover, lens, lsp-types, mtl - , prettyprinter, random, sorted-list, stm, temporary, text - , text-rope, transformers, unliftio-core, unordered-containers - , uuid - }: - mkDerivation { - pname = "lsp"; - version = "1.6.0.0"; - sha256 = "0w04n299d8yh545jggh93wm6nxpp5jwz8hr7qynbxslcdrv06s49"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async attoparsec base bytestring co-log-core containers - data-default directory exceptions filepath hashable lens lsp-types - mtl prettyprinter random sorted-list stm temporary text text-rope - transformers unliftio-core unordered-containers uuid - ]; - testHaskellDepends = [ - base containers hspec sorted-list text text-rope - unordered-containers - ]; - testToolDepends = [ hspec-discover ]; - description = "Haskell library for the Microsoft Language Server Protocol"; - license = lib.licenses.mit; - }) {}; - - "lsp_2_1_0_0" = callPackage ({ mkDerivation, aeson, async, attoparsec, base, bytestring , co-log-core, containers, data-default, directory, exceptions , filepath, hashable, hspec, hspec-discover, lens, lsp-types, mtl @@ -190992,7 +190963,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell library for the Microsoft Language Server Protocol"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "lsp-client" = callPackage @@ -191021,35 +190991,6 @@ self: { }) {}; "lsp-test" = callPackage - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base - , bytestring, co-log-core, conduit, conduit-parse, containers - , data-default, Diff, directory, exceptions, extra, filepath, Glob - , hspec, lens, lsp, lsp-types, mtl, parser-combinators, process - , some, text, time, transformers, unix, unliftio - , unordered-containers - }: - mkDerivation { - pname = "lsp-test"; - version = "0.14.1.0"; - sha256 = "0db4mpzn05k3isk1a3rdpqr7if9j0kr3bxdri9739q9a8azf4fp1"; - libraryHaskellDepends = [ - aeson aeson-pretty ansi-terminal async base bytestring co-log-core - conduit conduit-parse containers data-default Diff directory - exceptions filepath Glob lens lsp lsp-types mtl parser-combinators - process some text time transformers unix unordered-containers - ]; - testHaskellDepends = [ - aeson base co-log-core data-default directory filepath hspec lens - lsp mtl parser-combinators process text unliftio - unordered-containers - ]; - testToolDepends = [ lsp ]; - benchmarkHaskellDepends = [ base extra lsp process ]; - description = "Functional test framework for LSP servers"; - license = lib.licenses.bsd3; - }) {}; - - "lsp-test_0_15_0_1" = callPackage ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base , bytestring, co-log-core, conduit, conduit-parse, containers , data-default, Diff, directory, exceptions, extra, filepath, Glob @@ -191074,7 +191015,6 @@ self: { benchmarkHaskellDepends = [ base extra lsp process ]; description = "Functional test framework for LSP servers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lsp-types_1_4_0_1" = callPackage @@ -191102,31 +191042,6 @@ self: { }) {}; "lsp-types" = callPackage - ({ mkDerivation, aeson, base, binary, containers, data-default - , deepseq, Diff, dlist, exceptions, filepath, hashable, hspec - , hspec-discover, lens, mod, mtl, network-uri, QuickCheck - , quickcheck-instances, safe, scientific, some, template-haskell - , text, tuple, unordered-containers - }: - mkDerivation { - pname = "lsp-types"; - version = "1.6.0.0"; - sha256 = "00lqq5lw7pi8qrnjlibsvhldp747kdc9zkr6rg3bbkbz7kxw8p9q"; - libraryHaskellDepends = [ - aeson base binary containers data-default deepseq Diff dlist - exceptions filepath hashable lens mod mtl network-uri safe - scientific some template-haskell text unordered-containers - ]; - testHaskellDepends = [ - aeson base filepath hspec lens network-uri QuickCheck - quickcheck-instances text tuple - ]; - testToolDepends = [ hspec-discover ]; - description = "Haskell library for the Microsoft Language Server Protocol, data types"; - license = lib.licenses.mit; - }) {}; - - "lsp-types_2_0_1_1" = callPackage ({ mkDerivation, aeson, base, binary, containers, data-default , deepseq, Diff, directory, dlist, exceptions, file-embed, filepath , hashable, hspec, hspec-discover, lens, mod, mtl, network-uri @@ -191155,7 +191070,6 @@ self: { doHaddock = false; description = "Haskell library for the Microsoft Language Server Protocol, data types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "generator"; }) {}; From 044214a6ee26dfecbb8e75279f5310d9a951c3a9 Mon Sep 17 00:00:00 2001 From: maralorn Date: Tue, 22 Aug 2023 01:50:25 +0200 Subject: [PATCH 026/346] haskell-language-server: Update error message --- pkgs/development/haskell-modules/configuration-nix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 60e2f6fbd0aa..e426ea4be07c 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -69,7 +69,7 @@ self: super: builtins.intersectAttrs super { -e "s/@@GHC_VERSION@@/${self.ghc.version}/" \ -e "s/@@BOOT_PKGS@@/$BOOT_PKGS/" \ -e "s/@@ABI_HASHES@@/$(for dep in $BOOT_PKGS; do printf "%s:" "$dep" && ghc-pkg-${self.ghc.version} field $dep abi --simple-output ; done | tr '\n' ' ' | xargs)/" \ - -e "s!Consider installing ghc.* via ghcup or build HLS from source.!Visit https://haskell4nix.readthedocs.io/nixpkgs-users-guide.html#how-to-install-haskell-language-server to learn how to correctly install a matching hls for your ghc with nix.!" \ + -e "s!Consider installing ghc.* via ghcup or build HLS from source.!Visit https://nixos.org/manual/nixpkgs/unstable/#haskell-language-server to learn how to correctly install a matching hls for your ghc with nix.!" \ bindist/wrapper.in > "$out/bin/haskell-language-server" ln -s "$out/bin/haskell-language-server" "$out/bin/haskell-language-server-${self.ghc.version}" chmod +x "$out/bin/haskell-language-server" From 7dfb3949da392b142081e23a6a2c0cd5e57fdce6 Mon Sep 17 00:00:00 2001 From: maralorn Date: Tue, 22 Aug 2023 01:50:52 +0200 Subject: [PATCH 027/346] haskell.packages.ghc96.haskell-language-server: Fix build --- .../haskell-modules/configuration-common.nix | 7 +----- .../configuration-ghc-9.6.x.nix | 25 ++++++++----------- 2 files changed, 12 insertions(+), 20 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index b701f6eeb8b8..b0c1966cf185 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2749,12 +2749,7 @@ self: super: { # Tests fail due to the newly-build fourmolu not being in PATH # https://github.com/fourmolu/fourmolu/issues/231 - fourmolu_0_13_1_0 = dontCheck (super.fourmolu_0_13_1_0.overrideScope (lself: lsuper: { - Cabal-syntax = lself.Cabal-syntax_3_10_1_0; - ghc-lib-parser = lself.ghc-lib-parser_9_6_2_20230523; - parsec = lself.parsec_3_1_16_1; - text = lself.text_2_0_2; - })); + fourmolu_0_13_1_0 = dontCheck super.fourmolu_0_13_1_0; # Merged upstream, but never released. Allows both intel and aarch64 darwin to build. # https://github.com/vincenthz/hs-gauge/pull/106 diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix index 49e6902ff4df..d0efc39ae8f5 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix @@ -75,6 +75,10 @@ self: super: { base-compat = doDistribute self.base-compat_0_13_0; base-compat-batteries = doDistribute self.base-compat-batteries_0_13_0; + # Because we bumped the version of th-abstraction above.^ + aeson = doJailbreak super.aeson; + free = doJailbreak super.free; + # Too strict upper bound on template-haskell # https://github.com/mokus0/th-extras/pull/21 th-extras = doJailbreak super.th-extras; @@ -164,23 +168,14 @@ self: super: { # 2023-04-03: plugins disabled for hls 1.10.0.0 based on # - haskell-language-server = - let - # TODO: HLS-2.0.0.0 added support for the foumolu plugin for ghc-9.6. - # However, putting together all the overrides to get the latest - # version of fourmolu compiling together with ghc-9.6 and HLS is a - # little annoying, so currently fourmolu has been disabled. We should - # try to enable this at some point in the future. - hlsWithFlags = disableCabalFlag "fourmolu" super.haskell-language-server; - in - hlsWithFlags.override { - hls-ormolu-plugin = null; + haskell-language-server = super.haskell-language-server.override { hls-floskell-plugin = null; - hls-fourmolu-plugin = null; - hls-hlint-plugin = null; - hls-stylish-haskell-plugin = null; }; + fourmolu = super.fourmolu_0_13_1_0; + ormolu = super.ormolu_0_7_1_0; + stylish-haskell = super.stylish-haskell_0_14_5_0; + # Newer version of servant required for GHC 9.6 servant = self.servant_0_20; servant-server = self.servant-server_0_20; @@ -216,6 +211,8 @@ self: super: { HUnit Diff data-default extra fail free ghc-paths ordered-containers silently syb ]) super.ghc-exactprint_1_7_0_1); + hlint = super.hlint_3_6_1; + inherit (pkgs.lib.mapAttrs (_: doJailbreak ) super) hls-cabal-plugin algebraic-graphs From 10f8960700464ee286c1d45721a47d8c1b25f7da Mon Sep 17 00:00:00 2001 From: maralorn Date: Tue, 22 Aug 2023 01:51:02 +0200 Subject: [PATCH 028/346] haskell.packages.ghc92.haskell-language-server: Fix build --- pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix index 2214a2055f5d..29e7aab2491a 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix @@ -63,6 +63,10 @@ self: super: { algebraic-graphs = dontCheck self.algebraic-graphs_0_6_1; }; + hls-cabal-plugin = super.hls-cabal-plugin.override { + Cabal-syntax = self.Cabal-syntax_3_8_1_0; + }; + ormolu = self.ormolu_0_5_2_0.override { Cabal-syntax = self.Cabal-syntax_3_8_1_0; }; From f39536498ce8d2810cf9e9f8256e79d5d00a8468 Mon Sep 17 00:00:00 2001 From: maralorn Date: Tue, 22 Aug 2023 01:51:14 +0200 Subject: [PATCH 029/346] haskell.packages.ghc90.haskell-language-server: Fix build --- pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix index 0e53c1935966..7c2d3828866d 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix @@ -68,6 +68,10 @@ self: super: { tuple = addBuildDepend self.base-orphans super.tuple; vector-th-unbox = doJailbreak super.vector-th-unbox; + hls-cabal-plugin = super.hls-cabal-plugin.override { + Cabal-syntax = self.Cabal-syntax_3_8_1_0; + }; + ormolu = self.ormolu_0_5_2_0.override { Cabal-syntax = self.Cabal-syntax_3_8_1_0; }; From 3ced05d8b7015b277f56367038cddf890ce4b410 Mon Sep 17 00:00:00 2001 From: maralorn Date: Tue, 22 Aug 2023 01:51:25 +0200 Subject: [PATCH 030/346] haskell.packages.ghc810.haskell-language-server: Fix build --- .../haskell-modules/configuration-ghc-8.10.x.nix | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix index 1ca8347c4fc2..d452618667b2 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix @@ -103,7 +103,6 @@ self: super: { # These aren't included in hackage-packages.nix because hackage2nix is configured for GHC 9.2, under which these plugins aren't supported. # See https://github.com/NixOS/nixpkgs/pull/205902 for why we use `self..scope` additionalDeps = with self.haskell-language-server.scope; [ - hls-brittany-plugin hls-haddock-comments-plugin (unmarkBroken hls-splice-plugin) hls-tactics-plugin @@ -112,7 +111,7 @@ self: super: { Cabal = lself.Cabal_3_6_3_0; aeson = lself.aeson_1_5_6_0; lens-aeson = doJailbreak lself.lens-aeson_1_1_3; - lsp-types = doJailbreak lsuper.lsp-types; # Checks require aeson >= 2.0 + lsp-types = dontCheck (doJailbreak lsuper.lsp-types); # Checks require aeson >= 2.0 hls-overloaded-record-dot-plugin = null; })); @@ -123,6 +122,10 @@ self: super: { mod = super.mod_0_1_2_2; path-io = doJailbreak super.path-io; + hls-cabal-plugin = super.hls-cabal-plugin.override { + Cabal-syntax = self.Cabal-syntax_3_8_1_0; + }; + ormolu = self.ormolu_0_5_0_1; fourmolu = dontCheck self.fourmolu_0_9_0_0; hlint = self.hlint_3_4_1; @@ -134,15 +137,6 @@ self: super: { parser-combinators prettyprinter refinery retrie syb unagi-chan unordered-containers ]) super.hls-tactics-plugin); - hls-brittany-plugin = unmarkBroken (addBuildDepends (with self.hls-brittany-plugin.scope; [ - brittany czipwith extra ghc-exactprint ghcide hls-plugin-api hls-test-utils lens lsp-types - ]) (super.hls-brittany-plugin.overrideScope (lself: lsuper: { - brittany = doJailbreak (unmarkBroken lself.brittany_0_13_1_2); - aeson = lself.aeson_1_5_6_0; - multistate = unmarkBroken (dontCheck lsuper.multistate); - lsp-types = doJailbreak lsuper.lsp-types; # Checks require aeson >= 2.0 - }))); - # This package is marked as unbuildable on GHC 9.2, so hackage2nix doesn't include any dependencies. # See https://github.com/NixOS/nixpkgs/pull/205902 for why we use `self..scope` hls-haddock-comments-plugin = unmarkBroken (addBuildDepends (with self.hls-haddock-comments-plugin.scope; [ From 100dbc7605189145af65ad50068dc45c93d7e0b4 Mon Sep 17 00:00:00 2001 From: maralorn Date: Tue, 22 Aug 2023 02:07:58 +0200 Subject: [PATCH 031/346] haskellPackages: regenerate package set based on current config This commit has been generated by maintainers/scripts/haskell/regenerate-hackage-packages.sh --- .../transitive-broken.yaml | 221 ++++++++++++++++-- .../haskell-modules/hackage-packages.nix | 218 +++++++++++++++-- 2 files changed, 408 insertions(+), 31 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml index 04d429c8ae11..a8b9b222eadc 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml @@ -481,19 +481,49 @@ dont-distribute-packages: - alto - amazon-emailer-client-snap - amazonka + - amazonka-accessanalyzer + - amazonka-account - amazonka-alexa-business + - amazonka-amp + - amazonka-amplify + - amazonka-amplifybackend + - amazonka-amplifyuibuilder - amazonka-apigateway + - amazonka-apigatewaymanagementapi + - amazonka-apigatewayv2 + - amazonka-appconfig + - amazonka-appconfigdata + - amazonka-appflow + - amazonka-appintegrations - amazonka-application-autoscaling + - amazonka-application-insights + - amazonka-applicationcostprofiler + - amazonka-appmesh + - amazonka-apprunner - amazonka-appstream - amazonka-appsync + - amazonka-arc-zonal-shift - amazonka-athena + - amazonka-auditmanager - amazonka-autoscaling - amazonka-autoscaling-plans + - amazonka-backup + - amazonka-backup-gateway + - amazonka-backupstorage - amazonka-batch + - amazonka-billingconductor + - amazonka-braket - amazonka-budgets - amazonka-certificatemanager - amazonka-certificatemanager-pca + - amazonka-chime + - amazonka-chime-sdk-identity + - amazonka-chime-sdk-media-pipelines + - amazonka-chime-sdk-meetings + - amazonka-chime-sdk-messaging + - amazonka-chime-sdk-voice - amazonka-cloud9 + - amazonka-cloudcontrol - amazonka-clouddirectory - amazonka-cloudformation - amazonka-cloudfront @@ -505,33 +535,60 @@ dont-distribute-packages: - amazonka-cloudwatch - amazonka-cloudwatch-events - amazonka-cloudwatch-logs + - amazonka-codeartifact - amazonka-codebuild - amazonka-codecommit - amazonka-codedeploy + - amazonka-codeguru-reviewer + - amazonka-codeguruprofiler - amazonka-codepipeline - amazonka-codestar + - amazonka-codestar-connections + - amazonka-codestar-notifications - amazonka-cognito-identity - amazonka-cognito-idp - amazonka-cognito-sync - amazonka-comprehend + - amazonka-comprehendmedical + - amazonka-compute-optimizer - amazonka-config - amazonka-connect + - amazonka-connect-contact-lens + - amazonka-connectcampaigns + - amazonka-connectcases + - amazonka-connectparticipant - amazonka-contrib-rds-utils + - amazonka-controltower - amazonka-cost-explorer - amazonka-cur + - amazonka-customer-profiles + - amazonka-databrew + - amazonka-dataexchange - amazonka-datapipeline + - amazonka-datasync + - amazonka-detective - amazonka-devicefarm + - amazonka-devops-guru - amazonka-directconnect - amazonka-discovery + - amazonka-dlm - amazonka-dms + - amazonka-docdb + - amazonka-docdb-elastic + - amazonka-drs - amazonka-ds - amazonka-dynamodb - amazonka-dynamodb-dax - amazonka-dynamodb-streams + - amazonka-ebs - amazonka-ec2 + - amazonka-ec2-instance-connect - amazonka-ecr + - amazonka-ecr-public - amazonka-ecs - amazonka-efs + - amazonka-eks + - amazonka-elastic-inference - amazonka-elasticache - amazonka-elasticbeanstalk - amazonka-elasticsearch @@ -539,86 +596,227 @@ dont-distribute-packages: - amazonka-elb - amazonka-elbv2 - amazonka-emr + - amazonka-emr-containers + - amazonka-emr-serverless + - amazonka-evidently + - amazonka-finspace + - amazonka-finspace-data + - amazonka-fis - amazonka-fms + - amazonka-forecast + - amazonka-forecastquery + - amazonka-frauddetector + - amazonka-fsx - amazonka-gamelift + - amazonka-gamesparks - amazonka-glacier + - amazonka-globalaccelerator - amazonka-glue + - amazonka-grafana - amazonka-greengrass + - amazonka-greengrassv2 + - amazonka-groundstation - amazonka-guardduty - amazonka-health + - amazonka-healthlake + - amazonka-honeycode - amazonka-iam + - amazonka-identitystore + - amazonka-imagebuilder - amazonka-importexport - amazonka-inspector + - amazonka-inspector2 - amazonka-iot - amazonka-iot-analytics - amazonka-iot-dataplane - amazonka-iot-jobs-dataplane + - amazonka-iot-roborunner + - amazonka-iot1click-devices + - amazonka-iot1click-projects + - amazonka-iotdeviceadvisor + - amazonka-iotevents + - amazonka-iotevents-data + - amazonka-iotfleethub + - amazonka-iotfleetwise + - amazonka-iotsecuretunneling + - amazonka-iotsitewise + - amazonka-iotthingsgraph + - amazonka-iottwinmaker + - amazonka-iotwireless + - amazonka-ivs + - amazonka-ivschat + - amazonka-kafka + - amazonka-kafkaconnect + - amazonka-kendra + - amazonka-keyspaces - amazonka-kinesis - amazonka-kinesis-analytics - amazonka-kinesis-firehose - amazonka-kinesis-video - amazonka-kinesis-video-archived-media - amazonka-kinesis-video-media + - amazonka-kinesis-video-signaling + - amazonka-kinesis-video-webrtc-storage + - amazonka-kinesisanalyticsv2 - amazonka-kms + - amazonka-lakeformation - amazonka-lambda - amazonka-lex-models - amazonka-lex-runtime + - amazonka-lexv2-models + - amazonka-license-manager + - amazonka-license-manager-linux-subscriptions + - amazonka-license-manager-user-subscriptions - amazonka-lightsail + - amazonka-location + - amazonka-lookoutequipment + - amazonka-lookoutmetrics + - amazonka-lookoutvision + - amazonka-m2 + - amazonka-macie + - amazonka-maciev2 + - amazonka-managedblockchain - amazonka-marketplace-analytics + - amazonka-marketplace-catalog - amazonka-marketplace-entitlement - amazonka-marketplace-metering - amazonka-mechanicalturk + - amazonka-mediaconnect - amazonka-mediaconvert - amazonka-medialive - amazonka-mediapackage + - amazonka-mediapackage-vod - amazonka-mediastore - amazonka-mediastore-dataplane + - amazonka-mediatailor + - amazonka-memorydb + - amazonka-mgn + - amazonka-migration-hub-refactor-spaces - amazonka-migrationhub + - amazonka-migrationhub-config + - amazonka-migrationhuborchestrator + - amazonka-migrationhubstrategy - amazonka-ml - amazonka-mobile - amazonka-mq + - amazonka-mwaa + - amazonka-neptune + - amazonka-network-firewall + - amazonka-networkmanager + - amazonka-nimble + - amazonka-oam + - amazonka-omics + - amazonka-opensearch + - amazonka-opensearchserverless - amazonka-opsworks - amazonka-opsworks-cm - amazonka-organizations + - amazonka-outposts + - amazonka-panorama + - amazonka-personalize + - amazonka-personalize-events + - amazonka-personalize-runtime + - amazonka-pi - amazonka-pinpoint + - amazonka-pinpoint-email + - amazonka-pinpoint-sms-voice + - amazonka-pinpoint-sms-voice-v2 + - amazonka-pipes - amazonka-polly - amazonka-pricing + - amazonka-privatenetworks + - amazonka-proton + - amazonka-qldb + - amazonka-qldb-session + - amazonka-quicksight + - amazonka-ram + - amazonka-rbin - amazonka-rds + - amazonka-rds-data - amazonka-redshift + - amazonka-redshift-data + - amazonka-redshift-serverless - amazonka-rekognition + - amazonka-resiliencehub + - amazonka-resource-explorer-v2 - amazonka-resourcegroups - amazonka-resourcegroupstagging + - amazonka-robomaker + - amazonka-rolesanywhere - amazonka-route53 - amazonka-route53-autonaming - amazonka-route53-domains + - amazonka-route53-recovery-cluster + - amazonka-route53-recovery-control-config + - amazonka-route53-recovery-readiness + - amazonka-route53resolver + - amazonka-rum - amazonka-s3 + - amazonka-s3-encryption - amazonka-s3-streaming + - amazonka-s3outposts - amazonka-sagemaker + - amazonka-sagemaker-a2i-runtime + - amazonka-sagemaker-edge + - amazonka-sagemaker-featurestore-runtime + - amazonka-sagemaker-geospatial + - amazonka-sagemaker-metrics - amazonka-sagemaker-runtime + - amazonka-savingsplans + - amazonka-scheduler + - amazonka-schemas - amazonka-sdb - amazonka-secretsmanager + - amazonka-securityhub + - amazonka-securitylake - amazonka-serverlessrepo + - amazonka-service-quotas - amazonka-servicecatalog + - amazonka-servicecatalog-appregistry - amazonka-ses + - amazonka-sesv2 - amazonka-shield + - amazonka-signer + - amazonka-simspaceweaver - amazonka-sms + - amazonka-sms-voice + - amazonka-snow-device-management - amazonka-snowball - amazonka-sns - amazonka-sqs - amazonka-ssm + - amazonka-ssm-contacts + - amazonka-ssm-incidents + - amazonka-ssm-sap + - amazonka-sso + - amazonka-sso-admin + - amazonka-sso-oidc - amazonka-stepfunctions - amazonka-storagegateway - amazonka-sts - amazonka-support + - amazonka-support-app - amazonka-swf + - amazonka-synthetics - amazonka-test + - amazonka-textract + - amazonka-timestream-query + - amazonka-timestream-write - amazonka-transcribe + - amazonka-transfer - amazonka-translate + - amazonka-voice-id - amazonka-waf - amazonka-waf-regional + - amazonka-wafv2 + - amazonka-wellarchitected + - amazonka-wisdom - amazonka-workdocs + - amazonka-worklink - amazonka-workmail + - amazonka-workmailmessageflow - amazonka-workspaces + - amazonka-workspaces-web - amazonka-xray - amby - ampersand @@ -1325,7 +1523,6 @@ dont-distribute-packages: - distribution-plot - dixi - dl-fedora - - dl-fedora_0_9_5_1 - dmenu-pkill - dmenu-pmount - dmenu-search @@ -2131,8 +2328,6 @@ dont-distribute-packages: - hasql-streams-pipes - hasql-streams-streaming - hasql-streams-streamly - - hasqlator-mysql - - hasqly-mysql - hastache-aeson - haste-app - haste-gapi @@ -2204,7 +2399,6 @@ dont-distribute-packages: - hfiar - hfractal - hgalib - - hgdal - hgen - hgeometry - hgeometry-combinatorial @@ -2363,6 +2557,7 @@ dont-distribute-packages: - htoml-parse - htsn-import - http-client-auth + - http-client-restricted_0_1_0 - http-client-rustls - http-client-tls_0_3_6_3 - http-conduit_2_3_8_3 @@ -2899,7 +3094,6 @@ dont-distribute-packages: - mongrel2-handler - monky - monoidmap - - monomer-hagrid - monte-carlo - moo - moonshine @@ -2979,8 +3173,6 @@ dont-distribute-packages: - myTestlll - mybitcoin-sci - mysnapsession-example - - mysql-haskell - - mysql-haskell-nem - mysql-haskell-openssl - mysql-simple-typed - mywatch @@ -2996,6 +3188,7 @@ dont-distribute-packages: - nero-wai - nero-warp - nested-routes + - net-mqtt_0_8_5_0 - net-spider-cli - net-spider-pangraph - net-spider-rpl @@ -3019,6 +3212,7 @@ dont-distribute-packages: - network-rpca - network-stream - network-topic-models + - network-unexceptional - network-uri-json - network-websocket - neural @@ -3177,7 +3371,6 @@ dont-distribute-packages: - persistent-hssqlppp - persistent-map - persistent-mtl - - persistent-mysql-haskell - persistent-protobuf - persistent-relational-record - persona-idp @@ -3740,7 +3933,6 @@ dont-distribute-packages: - sessiontypes-distributed - sgf - sgrep - - sha1 - shady-gen - shady-graphics - shake-bindist @@ -3896,13 +4088,13 @@ dont-distribute-packages: - stackage-setup - stackage-upload - stackage2nix + - stackctl - stan - starrover2 - stateful-mtl - static-closure - statsd-client - statsdi - - stdcxx - steeloverseer - stern-brocot - stm-actor @@ -3928,7 +4120,6 @@ dont-distribute-packages: - stripe-http-client - stripe-http-streams - stripe-tests - - strongswan-sql - structural-induction - structured-mongoDB - stunts @@ -3984,6 +4175,9 @@ dont-distribute-packages: - tagged-th - tagsoup-navigate - tagstew + - tahoe-chk + - tahoe-great-black-swamp + - tahoe-ssk - tak-ai - tal - talash @@ -4015,11 +4209,7 @@ dont-distribute-packages: - temporal-csound - ten-lens - ten-unordered-containers - - tensorflow - - tensorflow-core-ops - - tensorflow-logging - tensorflow-opgen - - tensorflow-ops - tensorflow-proto - terminal-text - terrahs @@ -4203,7 +4393,6 @@ dont-distribute-packages: - usb-id-database - usb-iteratee - usb-safe - - users-mysql-haskell - utf - util-exception - util-primitive-control diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 972ac30bd5b2..a6c28d9a3852 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -28662,6 +28662,7 @@ self: { ]; description = "Amazon Access Analyzer SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-account" = callPackage @@ -28680,6 +28681,7 @@ self: { ]; description = "Amazon Account SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-alexa-business" = callPackage @@ -28717,6 +28719,7 @@ self: { ]; description = "Amazon Prometheus Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-amplify" = callPackage @@ -28735,6 +28738,7 @@ self: { ]; description = "Amazon Amplify SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-amplifybackend" = callPackage @@ -28753,6 +28757,7 @@ self: { ]; description = "Amazon AmplifyBackend SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-amplifyuibuilder" = callPackage @@ -28771,6 +28776,7 @@ self: { ]; description = "Amazon Amplify UI Builder SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-apigateway" = callPackage @@ -28808,6 +28814,7 @@ self: { ]; description = "Amazon ApiGatewayManagementApi SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-apigatewayv2" = callPackage @@ -28826,6 +28833,7 @@ self: { ]; description = "Amazon ApiGatewayV2 SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-appconfig" = callPackage @@ -28844,6 +28852,7 @@ self: { ]; description = "Amazon AppConfig SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-appconfigdata" = callPackage @@ -28862,6 +28871,7 @@ self: { ]; description = "Amazon AppConfig Data SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-appflow" = callPackage @@ -28880,6 +28890,7 @@ self: { ]; description = "Amazon Appflow SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-appintegrations" = callPackage @@ -28898,6 +28909,7 @@ self: { ]; description = "Amazon AppIntegrations Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-application-autoscaling" = callPackage @@ -28935,6 +28947,7 @@ self: { ]; description = "Amazon CloudWatch Application Insights SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-applicationcostprofiler" = callPackage @@ -28953,6 +28966,7 @@ self: { ]; description = "Amazon Application Cost Profiler SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-appmesh" = callPackage @@ -28971,6 +28985,7 @@ self: { ]; description = "Amazon App Mesh SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-apprunner" = callPackage @@ -28989,6 +29004,7 @@ self: { ]; description = "Amazon App Runner SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-appstream" = callPackage @@ -29045,6 +29061,7 @@ self: { ]; description = "Amazon ARC - Zonal Shift SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-athena" = callPackage @@ -29082,6 +29099,7 @@ self: { ]; description = "Amazon Audit Manager SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-autoscaling" = callPackage @@ -29138,6 +29156,7 @@ self: { ]; description = "Amazon Backup SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-backup-gateway" = callPackage @@ -29156,6 +29175,7 @@ self: { ]; description = "Amazon Backup Gateway SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-backupstorage" = callPackage @@ -29174,6 +29194,7 @@ self: { ]; description = "Amazon Backup Storage SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-batch" = callPackage @@ -29211,6 +29232,7 @@ self: { ]; description = "Amazon BillingConductor SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-braket" = callPackage @@ -29229,6 +29251,7 @@ self: { ]; description = "Amazon Braket SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-budgets" = callPackage @@ -29304,6 +29327,7 @@ self: { ]; description = "Amazon Chime SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-chime-sdk-identity" = callPackage @@ -29322,6 +29346,7 @@ self: { ]; description = "Amazon Chime SDK Identity SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-chime-sdk-media-pipelines" = callPackage @@ -29340,6 +29365,7 @@ self: { ]; description = "Amazon Chime SDK Media Pipelines SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-chime-sdk-meetings" = callPackage @@ -29358,6 +29384,7 @@ self: { ]; description = "Amazon Chime SDK Meetings SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-chime-sdk-messaging" = callPackage @@ -29376,6 +29403,7 @@ self: { ]; description = "Amazon Chime SDK Messaging SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-chime-sdk-voice" = callPackage @@ -29394,6 +29422,7 @@ self: { ]; description = "Amazon Chime SDK Voice SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cloud9" = callPackage @@ -29431,6 +29460,7 @@ self: { ]; description = "Amazon Cloud Control API SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-clouddirectory" = callPackage @@ -29658,6 +29688,7 @@ self: { ]; description = "Amazon CodeArtifact SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-codebuild" = callPackage @@ -29733,6 +29764,7 @@ self: { ]; description = "Amazon CodeGuru Reviewer SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-codeguruprofiler" = callPackage @@ -29751,6 +29783,7 @@ self: { ]; description = "Amazon CodeGuru Profiler SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-codepipeline" = callPackage @@ -29807,6 +29840,7 @@ self: { ]; description = "Amazon CodeStar connections SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-codestar-notifications" = callPackage @@ -29825,6 +29859,7 @@ self: { ]; description = "Amazon CodeStar Notifications SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cognito-identity" = callPackage @@ -29919,6 +29954,7 @@ self: { ]; description = "Amazon Comprehend Medical SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-compute-optimizer" = callPackage @@ -29937,6 +29973,7 @@ self: { ]; description = "Amazon Compute Optimizer SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-config" = callPackage @@ -29993,6 +30030,7 @@ self: { ]; description = "Amazon Connect Contact Lens SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-connectcampaigns" = callPackage @@ -30011,6 +30049,7 @@ self: { ]; description = "Amazon ConnectCampaignService SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-connectcases" = callPackage @@ -30029,6 +30068,7 @@ self: { ]; description = "Amazon Connect Cases SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-connectparticipant" = callPackage @@ -30047,6 +30087,7 @@ self: { ]; description = "Amazon Connect Participant Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-contrib-rds-utils" = callPackage @@ -30087,6 +30128,7 @@ self: { ]; description = "Amazon Control Tower SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-core" = callPackage @@ -30174,6 +30216,7 @@ self: { ]; description = "Amazon Connect Customer Profiles SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-databrew" = callPackage @@ -30192,6 +30235,7 @@ self: { ]; description = "Amazon Glue DataBrew SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-dataexchange" = callPackage @@ -30210,6 +30254,7 @@ self: { ]; description = "Amazon Data Exchange SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-datapipeline" = callPackage @@ -30247,6 +30292,7 @@ self: { ]; description = "Amazon DataSync SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-detective" = callPackage @@ -30265,6 +30311,7 @@ self: { ]; description = "Amazon Detective SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-devicefarm" = callPackage @@ -30302,6 +30349,7 @@ self: { ]; description = "Amazon DevOps Guru SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-directconnect" = callPackage @@ -30358,6 +30406,7 @@ self: { ]; description = "Amazon Data Lifecycle Manager SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-dms" = callPackage @@ -30395,6 +30444,7 @@ self: { ]; description = "Amazon DocumentDB with MongoDB compatibility SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-docdb-elastic" = callPackage @@ -30413,6 +30463,7 @@ self: { ]; description = "Amazon DocumentDB Elastic Clusters SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-drs" = callPackage @@ -30431,6 +30482,7 @@ self: { ]; description = "Amazon Elastic Disaster Recovery Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ds" = callPackage @@ -30531,6 +30583,7 @@ self: { ]; description = "Amazon Elastic Block Store SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ec2" = callPackage @@ -30568,6 +30621,7 @@ self: { ]; description = "Amazon EC2 Instance Connect SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ecr" = callPackage @@ -30605,6 +30659,7 @@ self: { ]; description = "Amazon Elastic Container Registry Public SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ecs" = callPackage @@ -30661,6 +30716,7 @@ self: { ]; description = "Amazon Elastic Kubernetes Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-elastic-inference" = callPackage @@ -30679,6 +30735,7 @@ self: { ]; description = "Amazon Elastic Inference SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-elasticache" = callPackage @@ -30830,6 +30887,7 @@ self: { ]; description = "Amazon EMR Containers SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-emr-serverless" = callPackage @@ -30848,6 +30906,7 @@ self: { ]; description = "Amazon EMR Serverless SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-evidently" = callPackage @@ -30866,6 +30925,7 @@ self: { ]; description = "Amazon CloudWatch Evidently SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-finspace" = callPackage @@ -30884,6 +30944,7 @@ self: { ]; description = "Amazon FinSpace User Environment Management service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-finspace-data" = callPackage @@ -30902,6 +30963,7 @@ self: { ]; description = "Amazon FinSpace Public API SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-fis" = callPackage @@ -30920,6 +30982,7 @@ self: { ]; description = "Amazon Fault Injection Simulator SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-fms" = callPackage @@ -30957,6 +31020,7 @@ self: { ]; description = "Amazon Forecast Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-forecastquery" = callPackage @@ -30975,6 +31039,7 @@ self: { ]; description = "Amazon Forecast Query Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-frauddetector" = callPackage @@ -30993,6 +31058,7 @@ self: { ]; description = "Amazon Fraud Detector SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-fsx" = callPackage @@ -31011,6 +31077,7 @@ self: { ]; description = "Amazon FSx SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-gamelift" = callPackage @@ -31048,6 +31115,7 @@ self: { ]; description = "Amazon GameSparks SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-glacier" = callPackage @@ -31085,6 +31153,7 @@ self: { ]; description = "Amazon Global Accelerator SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-glue" = callPackage @@ -31122,6 +31191,7 @@ self: { ]; description = "Amazon Managed Grafana SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-greengrass" = callPackage @@ -31159,6 +31229,7 @@ self: { ]; description = "Amazon IoT Greengrass V2 SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-groundstation" = callPackage @@ -31177,6 +31248,7 @@ self: { ]; description = "Amazon Ground Station SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-guardduty" = callPackage @@ -31233,6 +31305,7 @@ self: { ]; description = "Amazon HealthLake SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-honeycode" = callPackage @@ -31251,6 +31324,7 @@ self: { ]; description = "Amazon Honeycode SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iam" = callPackage @@ -31311,6 +31385,7 @@ self: { ]; description = "Amazon SSO Identity Store SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-imagebuilder" = callPackage @@ -31329,6 +31404,7 @@ self: { ]; description = "Amazon EC2 Image Builder SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-importexport" = callPackage @@ -31385,6 +31461,7 @@ self: { ]; description = "Amazon Inspector2 SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iot" = callPackage @@ -31479,6 +31556,7 @@ self: { ]; description = "Amazon IoT RoboRunner SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iot1click-devices" = callPackage @@ -31497,6 +31575,7 @@ self: { ]; description = "Amazon IoT 1-Click Devices Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iot1click-projects" = callPackage @@ -31515,6 +31594,7 @@ self: { ]; description = "Amazon IoT 1-Click Projects Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotdeviceadvisor" = callPackage @@ -31533,6 +31613,7 @@ self: { ]; description = "Amazon IoT Core Device Advisor SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotevents" = callPackage @@ -31551,6 +31632,7 @@ self: { ]; description = "Amazon IoT Events SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotevents-data" = callPackage @@ -31569,6 +31651,7 @@ self: { ]; description = "Amazon IoT Events Data SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotfleethub" = callPackage @@ -31587,6 +31670,7 @@ self: { ]; description = "Amazon IoT Fleet Hub SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotfleetwise" = callPackage @@ -31605,6 +31689,7 @@ self: { ]; description = "Amazon IoT FleetWise SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotsecuretunneling" = callPackage @@ -31623,6 +31708,7 @@ self: { ]; description = "Amazon IoT Secure Tunneling SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotsitewise" = callPackage @@ -31641,6 +31727,7 @@ self: { ]; description = "Amazon IoT SiteWise SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotthingsgraph" = callPackage @@ -31659,6 +31746,7 @@ self: { ]; description = "Amazon IoT Things Graph SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iottwinmaker" = callPackage @@ -31677,6 +31765,7 @@ self: { ]; description = "Amazon IoT TwinMaker SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotwireless" = callPackage @@ -31695,6 +31784,7 @@ self: { ]; description = "Amazon IoT Wireless SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ivs" = callPackage @@ -31713,6 +31803,7 @@ self: { ]; description = "Amazon Interactive Video Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ivschat" = callPackage @@ -31731,6 +31822,7 @@ self: { ]; description = "Amazon Interactive Video Service Chat SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kafka" = callPackage @@ -31749,6 +31841,7 @@ self: { ]; description = "Amazon Managed Streaming for Kafka SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kafkaconnect" = callPackage @@ -31767,6 +31860,7 @@ self: { ]; description = "Amazon Managed Streaming for Kafka Connect SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kendra" = callPackage @@ -31785,6 +31879,7 @@ self: { ]; description = "Amazon KendraFrontendService SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-keyspaces" = callPackage @@ -31803,6 +31898,7 @@ self: { ]; description = "Amazon Keyspaces SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kinesis" = callPackage @@ -31935,6 +32031,7 @@ self: { ]; description = "Amazon Kinesis Video Signaling Channels SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kinesis-video-webrtc-storage" = callPackage @@ -31953,6 +32050,7 @@ self: { ]; description = "Amazon Kinesis Video WebRTC Storage SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kinesisanalyticsv2" = callPackage @@ -31971,6 +32069,7 @@ self: { ]; description = "Amazon Kinesis Analytics SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kms" = callPackage @@ -32008,6 +32107,7 @@ self: { ]; description = "Amazon Lake Formation SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-lambda" = callPackage @@ -32083,6 +32183,7 @@ self: { ]; description = "Amazon Lex Model Building V2 SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-license-manager" = callPackage @@ -32101,6 +32202,7 @@ self: { ]; description = "Amazon License Manager SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-license-manager-linux-subscriptions" = callPackage @@ -32119,6 +32221,7 @@ self: { ]; description = "Amazon License Manager Linux Subscriptions SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-license-manager-user-subscriptions" = callPackage @@ -32137,6 +32240,7 @@ self: { ]; description = "Amazon License Manager User Subscriptions SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-lightsail" = callPackage @@ -32174,6 +32278,7 @@ self: { ]; description = "Amazon Location Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-lookoutequipment" = callPackage @@ -32192,6 +32297,7 @@ self: { ]; description = "Amazon Lookout for Equipment SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-lookoutmetrics" = callPackage @@ -32210,6 +32316,7 @@ self: { ]; description = "Amazon Lookout for Metrics SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-lookoutvision" = callPackage @@ -32228,6 +32335,7 @@ self: { ]; description = "Amazon Lookout for Vision SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-m2" = callPackage @@ -32246,6 +32354,7 @@ self: { ]; description = "Amazon MainframeModernization SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-macie" = callPackage @@ -32264,6 +32373,7 @@ self: { ]; description = "Amazon Macie SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-maciev2" = callPackage @@ -32282,6 +32392,7 @@ self: { ]; description = "Amazon Macie 2 SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-managedblockchain" = callPackage @@ -32300,6 +32411,7 @@ self: { ]; description = "Amazon Managed Blockchain SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-marketplace-analytics" = callPackage @@ -32337,6 +32449,7 @@ self: { ]; description = "Amazon Marketplace Catalog Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-marketplace-entitlement" = callPackage @@ -32412,6 +32525,7 @@ self: { ]; description = "Amazon MediaConnect SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-mediaconvert" = callPackage @@ -32487,6 +32601,7 @@ self: { ]; description = "Amazon Elemental MediaPackage VOD SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-mediastore" = callPackage @@ -32543,6 +32658,7 @@ self: { ]; description = "Amazon MediaTailor SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-memorydb" = callPackage @@ -32561,6 +32677,7 @@ self: { ]; description = "Amazon MemoryDB SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-mgn" = callPackage @@ -32579,6 +32696,7 @@ self: { ]; description = "Amazon Application Migration Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-migration-hub-refactor-spaces" = callPackage @@ -32597,6 +32715,7 @@ self: { ]; description = "Amazon Migration Hub Refactor Spaces SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-migrationhub" = callPackage @@ -32634,6 +32753,7 @@ self: { ]; description = "Amazon Migration Hub Config SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-migrationhuborchestrator" = callPackage @@ -32652,6 +32772,7 @@ self: { ]; description = "Amazon Migration Hub Orchestrator SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-migrationhubstrategy" = callPackage @@ -32670,6 +32791,7 @@ self: { ]; description = "Amazon Migration Hub Strategy Recommendations SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ml" = callPackage @@ -32745,6 +32867,7 @@ self: { ]; description = "Amazon MWAA SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-neptune" = callPackage @@ -32763,6 +32886,7 @@ self: { ]; description = "Amazon Neptune SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-network-firewall" = callPackage @@ -32781,6 +32905,7 @@ self: { ]; description = "Amazon Network Firewall SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-networkmanager" = callPackage @@ -32799,6 +32924,7 @@ self: { ]; description = "Amazon Network Manager SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-nimble" = callPackage @@ -32817,6 +32943,7 @@ self: { ]; description = "Amazon NimbleStudio SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-oam" = callPackage @@ -32835,6 +32962,7 @@ self: { ]; description = "Amazon CloudWatch Observability Access Manager SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-omics" = callPackage @@ -32853,6 +32981,7 @@ self: { ]; description = "Amazon Omics SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-opensearch" = callPackage @@ -32871,6 +33000,7 @@ self: { ]; description = "Amazon OpenSearch Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-opensearchserverless" = callPackage @@ -32889,6 +33019,7 @@ self: { ]; description = "Amazon OpenSearch Service Serverless SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-opsworks" = callPackage @@ -32964,6 +33095,7 @@ self: { ]; description = "Amazon Outposts SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-panorama" = callPackage @@ -32982,6 +33114,7 @@ self: { ]; description = "Amazon Panorama SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-personalize" = callPackage @@ -33000,6 +33133,7 @@ self: { ]; description = "Amazon Personalize SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-personalize-events" = callPackage @@ -33018,6 +33152,7 @@ self: { ]; description = "Amazon Personalize Events SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-personalize-runtime" = callPackage @@ -33036,6 +33171,7 @@ self: { ]; description = "Amazon Personalize Runtime SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-pi" = callPackage @@ -33054,6 +33190,7 @@ self: { ]; description = "Amazon Performance Insights SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-pinpoint" = callPackage @@ -33091,6 +33228,7 @@ self: { ]; description = "Amazon Pinpoint Email Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-pinpoint-sms-voice" = callPackage @@ -33109,6 +33247,7 @@ self: { ]; description = "Amazon Pinpoint SMS and Voice Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-pinpoint-sms-voice-v2" = callPackage @@ -33127,6 +33266,7 @@ self: { ]; description = "Amazon Pinpoint SMS Voice V2 SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-pipes" = callPackage @@ -33145,6 +33285,7 @@ self: { ]; description = "Amazon EventBridge Pipes SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-polly" = callPackage @@ -33201,6 +33342,7 @@ self: { ]; description = "Amazon Private 5G SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-proton" = callPackage @@ -33219,6 +33361,7 @@ self: { ]; description = "Amazon Proton SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-qldb" = callPackage @@ -33237,6 +33380,7 @@ self: { ]; description = "Amazon QLDB SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-qldb-session" = callPackage @@ -33255,6 +33399,7 @@ self: { ]; description = "Amazon QLDB Session SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-quicksight" = callPackage @@ -33273,6 +33418,7 @@ self: { ]; description = "Amazon QuickSight SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ram" = callPackage @@ -33291,6 +33437,7 @@ self: { ]; description = "Amazon Resource Access Manager SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-rbin" = callPackage @@ -33309,6 +33456,7 @@ self: { ]; description = "Amazon Recycle Bin SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-rds" = callPackage @@ -33346,6 +33494,7 @@ self: { ]; description = "Amazon RDS DataService SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-redshift" = callPackage @@ -33383,6 +33532,7 @@ self: { ]; description = "Amazon Redshift Data API Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-redshift-serverless" = callPackage @@ -33401,6 +33551,7 @@ self: { ]; description = "Amazon Redshift Serverless SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-rekognition" = callPackage @@ -33438,6 +33589,7 @@ self: { ]; description = "Amazon Resilience Hub SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-resource-explorer-v2" = callPackage @@ -33456,6 +33608,7 @@ self: { ]; description = "Amazon Resource Explorer SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-resourcegroups" = callPackage @@ -33512,6 +33665,7 @@ self: { ]; description = "Amazon RoboMaker SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-rolesanywhere" = callPackage @@ -33530,6 +33684,7 @@ self: { ]; description = "Amazon IAM Roles Anywhere SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-route53" = callPackage @@ -33605,6 +33760,7 @@ self: { ]; description = "Amazon Route53 Recovery Cluster SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-route53-recovery-control-config" = callPackage @@ -33623,6 +33779,7 @@ self: { ]; description = "Amazon Route53 Recovery Control Config SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-route53-recovery-readiness" = callPackage @@ -33641,6 +33798,7 @@ self: { ]; description = "Amazon Route53 Recovery Readiness SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-route53resolver" = callPackage @@ -33659,6 +33817,7 @@ self: { ]; description = "Amazon Route 53 Resolver SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-rum" = callPackage @@ -33677,6 +33836,7 @@ self: { ]; description = "Amazon CloudWatch RUM SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-s3" = callPackage @@ -33721,6 +33881,7 @@ self: { ]; description = "Amazon Simple Storage Service SDK - Client-Side Encryption"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-s3-streaming" = callPackage @@ -33759,6 +33920,7 @@ self: { ]; description = "Amazon S3 on Outposts SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sagemaker" = callPackage @@ -33796,6 +33958,7 @@ self: { ]; description = "Amazon Augmented AI Runtime SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sagemaker-edge" = callPackage @@ -33814,6 +33977,7 @@ self: { ]; description = "Amazon Sagemaker Edge Manager SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sagemaker-featurestore-runtime" = callPackage @@ -33832,6 +33996,7 @@ self: { ]; description = "Amazon SageMaker Feature Store Runtime SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sagemaker-geospatial" = callPackage @@ -33850,6 +34015,7 @@ self: { ]; description = "Amazon SageMaker geospatial capabilities SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sagemaker-metrics" = callPackage @@ -33868,6 +34034,7 @@ self: { ]; description = "Amazon SageMaker Metrics Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sagemaker-runtime" = callPackage @@ -33905,6 +34072,7 @@ self: { ]; description = "Amazon Savings Plans SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-scheduler" = callPackage @@ -33923,6 +34091,7 @@ self: { ]; description = "Amazon EventBridge Scheduler SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-schemas" = callPackage @@ -33941,6 +34110,7 @@ self: { ]; description = "Amazon Schemas SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sdb" = callPackage @@ -33997,6 +34167,7 @@ self: { ]; description = "Amazon SecurityHub SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-securitylake" = callPackage @@ -34015,6 +34186,7 @@ self: { ]; description = "Amazon Security Lake SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-serverlessrepo" = callPackage @@ -34052,6 +34224,7 @@ self: { ]; description = "Amazon Quotas SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-servicecatalog" = callPackage @@ -34089,6 +34262,7 @@ self: { ]; description = "Amazon Service Catalog App Registry SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ses" = callPackage @@ -34126,6 +34300,7 @@ self: { ]; description = "Amazon Simple Email Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-shield" = callPackage @@ -34163,6 +34338,7 @@ self: { ]; description = "Amazon Signer SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-simspaceweaver" = callPackage @@ -34181,6 +34357,7 @@ self: { ]; description = "Amazon SimSpace Weaver SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sms" = callPackage @@ -34218,6 +34395,7 @@ self: { ]; description = "Amazon Pinpoint SMS and Voice Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-snow-device-management" = callPackage @@ -34236,6 +34414,7 @@ self: { ]; description = "Amazon Snow Device Management SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-snowball" = callPackage @@ -34330,6 +34509,7 @@ self: { ]; description = "Amazon Systems Manager Incident Manager Contacts SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ssm-incidents" = callPackage @@ -34348,6 +34528,7 @@ self: { ]; description = "Amazon Systems Manager Incident Manager SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ssm-sap" = callPackage @@ -34366,6 +34547,7 @@ self: { ]; description = "Amazon Systems Manager for SAP SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sso" = callPackage @@ -34384,6 +34566,7 @@ self: { ]; description = "Amazon Single Sign-On SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sso-admin" = callPackage @@ -34402,6 +34585,7 @@ self: { ]; description = "Amazon Single Sign-On Admin SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sso-oidc" = callPackage @@ -34420,6 +34604,7 @@ self: { ]; description = "Amazon SSO OIDC SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-stepfunctions" = callPackage @@ -34514,6 +34699,7 @@ self: { ]; description = "Amazon Support App SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-swf" = callPackage @@ -34551,6 +34737,7 @@ self: { ]; description = "Amazon Synthetics SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-test" = callPackage @@ -34591,6 +34778,7 @@ self: { ]; description = "Amazon Textract SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-timestream-query" = callPackage @@ -34609,6 +34797,7 @@ self: { ]; description = "Amazon Timestream Query SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-timestream-write" = callPackage @@ -34627,6 +34816,7 @@ self: { ]; description = "Amazon Timestream Write SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-transcribe" = callPackage @@ -34664,6 +34854,7 @@ self: { ]; description = "Amazon Transfer Family SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-translate" = callPackage @@ -34701,6 +34892,7 @@ self: { ]; description = "Amazon Voice ID SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-waf" = callPackage @@ -34757,6 +34949,7 @@ self: { ]; description = "Amazon WAFV2 SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-wellarchitected" = callPackage @@ -34775,6 +34968,7 @@ self: { ]; description = "Amazon Well-Architected Tool SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-wisdom" = callPackage @@ -34793,6 +34987,7 @@ self: { ]; description = "Amazon Connect Wisdom Service SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-workdocs" = callPackage @@ -34830,6 +35025,7 @@ self: { ]; description = "Amazon WorkLink SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-workmail" = callPackage @@ -34867,6 +35063,7 @@ self: { ]; description = "Amazon WorkMail Message Flow SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-workspaces" = callPackage @@ -34904,6 +35101,7 @@ self: { ]; description = "Amazon WorkSpaces Web SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-xray" = callPackage @@ -139544,7 +139742,6 @@ self: { ]; description = "composable SQL generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hasqly-mysql" = callPackage @@ -139560,7 +139757,6 @@ self: { ]; description = "composable SQL generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hastache" = callPackage @@ -144501,7 +144697,6 @@ self: { libraryPkgconfigDepends = [ gdal ]; description = "Haskell binding to the GDAL library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gdal;}; "hgdbmi" = callPackage @@ -203132,7 +203327,6 @@ self: { description = "A datagrid widget for the Monomer library"; license = lib.licenses.mit; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; }) {}; "monomorphic" = callPackage @@ -207724,7 +207918,6 @@ self: { ]; description = "pure haskell MySQL driver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mysql-haskell-nem" = callPackage @@ -207740,7 +207933,6 @@ self: { ]; description = "Adds a interface like mysql-simple to mysql-haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mysql-haskell-openssl" = callPackage @@ -211309,6 +211501,7 @@ self: { ]; description = "Network functions that do not throw exceptions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "network-uri" = callPackage @@ -227194,7 +227387,6 @@ self: { ]; description = "A pure haskell backend for the persistent library using MySQL database server"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "persistent-mysql-haskell-example"; }) {}; @@ -268015,7 +268207,6 @@ self: { ]; description = "SHA-1 Hash"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "shade" = callPackage @@ -280464,6 +280655,7 @@ self: { aeson base bytestring hspec mtl QuickCheck yaml ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "stackctl"; }) {}; @@ -281449,7 +281641,6 @@ self: { libraryHaskellDepends = [ base fficxx-runtime template-haskell ]; description = "Binding to Standard Template Library C++"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "stdf" = callPackage @@ -284718,7 +284909,6 @@ self: { ]; description = "Interface library for strongSwan SQL backend"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "strongswan-sql"; }) {}; @@ -289885,6 +290075,7 @@ self: { ]; description = "The Tahoe-LAFS' Content-Hash-Key (CHK) cryptographic protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tahoe-chk-encrypt"; }) {}; @@ -289930,6 +290121,7 @@ self: { ]; description = "An implementation of the \"Great Black Swamp\" LAFS protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tahoe-ssk" = callPackage @@ -289960,6 +290152,7 @@ self: { ]; description = "An implementation of the Tahoe-LAFS SSK cryptographic protocols"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tai" = callPackage @@ -293022,7 +293215,6 @@ self: { ]; description = "TensorFlow bindings"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libtensorflow;}; "tensorflow-core-ops" = callPackage @@ -293043,7 +293235,6 @@ self: { ]; description = "Haskell wrappers for Core Tensorflow Ops"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "tensorflow-logging" = callPackage @@ -293072,7 +293263,6 @@ self: { ]; description = "TensorBoard related functionality"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "tensorflow-mnist" = callPackage @@ -293156,7 +293346,6 @@ self: { ]; description = "Friendly layer around TensorFlow bindings"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "tensorflow-proto" = callPackage @@ -310391,7 +310580,6 @@ self: { ]; description = "A mysql-haskell backend for the users library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "users-persistent" = callPackage From 38606a7b72dfc0aec9e8b9fa4adaf4f4a2ec25a7 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Tue, 22 Aug 2023 21:23:55 +0200 Subject: [PATCH 032/346] haskellPackages: clear broken and transitive broken package lists This means we'll test all packages on Hydra again which will gain us an up to date list of broken packages. Hopefully some upstream projects have addressed compatibility issues with Stackage LTS 21 and GHC 9.4. --- .../configuration-hackage2nix/broken.yaml | 6514 +----- .../transitive-broken.yaml | 4660 +--- .../haskell-modules/hackage-packages.nix | 17653 ---------------- 3 files changed, 2 insertions(+), 28825 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml index 7465a471cd81..08aadf5aa2f3 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml @@ -1,6513 +1 @@ -broken-packages: - # These packages don't compile. - - 2captcha - - 3d-graphics-examples - - 3dmodels - - AAI - - aasam - - abacate - - abcnotation - - abeson - - abides - - abnf - - AbortT-transformers - - abt - - AC-BuildPlatform - - accelerate - - accentuateus - - access-time - - accuerr - - AC-EasyRaster-GTK - - ace # test failure in job https://hydra.nixos.org/build/230967016 at 2023-08-16 - - AC-HalfInteger - - achille - - acid-state-dist - - acid-state-tls - - ac-machine - - ACME - - acme-all-monad - - acme-comonad - - acme-dont - - acme-flipping-tables - - acme-hq9plus - - acme-http - - acme-inator - - acme-io - - acme-kitchen-sink - - acme-left-pad - - acme-memorandom - - acme-miscorder - - acme-mutable-package - - acme-now - - acme-numbersystem - - acme-operators - - acme-schoenfinkel - - acme-strfry - - acme-stringly-typed - - acme-this - - acme-zalgo - - acme-zero - - AC-MiniTest - - acousticbrainz-client - - AC-Terminal - - ActionKid - - activehs-base - - activitypub - - activitystreams-aeson - - AC-VanillaArray - - AC-Vector - - Adaptive - - Adaptive-Blaisorblade - - adaptive-containers - - adaptive-tuple - - adb - - addy - - adjunction - - adobe-swatch-exchange - - adp-multi - - adtrees - - AERN-Basics - - aeson-applicative - - aeson-bson - - aeson-commit # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970158 at 2023-08-16 - - aeson-compat # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955731 at 2023-08-16 - - aeson-decode - - aeson-default - - aeson-dependent-sum # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951615 at 2023-08-16 - - aeson-deriving - - aeson-diff-generic - - aeson-filthy - - aeson-flat - - aeson-flatten - - aeson-flowtyped - - aeson-gadt-th - - aeson-injector - - aeson-json-ast - - aeson-lens - - aeson-match-qq - - aeson-modern-tojson - - aeson-options - - aeson-parsec-picky - - aeson-prefix - - aeson-schema - - aeson-single-field # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952090 at 2023-08-16 - - aeson-smart - - aeson-streams - - aeson-t - - aeson-toolkit - - aeson-utils - - aeson-via # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971255 at 2023-08-16 - - aeson-with - - affection - - affine-invariant-ensemble-mcmc - - Agata - - Agda-executable - - agda-language-server - - agda-snippets - - agda-unused - - AGI - - ag-pictgen # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/225557198 at 2023-06-28 - - AhoCorasick - - aig - - airbrake - - air-extra - - airship - - airtable-api - - air-th - - aivika-gpss - - ajhc - - AlanDeniseEricLauren - - alerta - - alerts # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970661 at 2023-08-16 - - alex-prelude - - alfred - - alfred-margaret - - alga - - algebra-dag - - algebraic-classes - - algebraic-prelude - - algorithmic-composition-additional - - algorithmic-composition-complex - - AlgorithmW - - algo-s - - align-affine # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969907 at 2023-08-16 - - align-text - - ally-invest - - alpaca-netcode - - alphachar - - alpino-tools - - alsa - - alsa-midi - - altcomposition - - alternative-extra - - alternative-io - - altfloat - - alure - - amazon-emailer - - amazonka-core - - amazonka-iam-policy - - amazon-products - - AMI - - amqp-conduit - - analyze - - analyze-client - - anansi-pandoc - - android - - android-activity - - android-lint-summary - - angel - - angle - - animalcase - - Animas - - animascii - - animate - - anki-tools - - annotated-fix - - anonymous-sums - - ansigraph - - ansi-pretty - - antfarm - - antigate - - antimirov - - antiquoter - - antisplice - - antlr-haskell - - anydbm - - Aoide - - aop-prelude - - aosd - - apache-md5 - - apart - - apecs-physics # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/230961455 at 2023-08-16 - - api-builder - - api-rpc-factom - - apns-http2 - - appc - - appendful-persistent # failure building library in job https://hydra.nixos.org/build/230949704 at 2023-08-16 - - app-lens - - AppleScript - - applicative-fail - - applicative-parsec - - applicative-quoters - - applicative-splice - - apply-unordered - - approveapi - - approx - - ApproxFun-hs - - arbb-vm - - arb-fft - - arbor-lru-cache - - arbor-monad-counter - - arbor-monad-logger - - arbor-monad-metric - - arbor-postgres - - arch-hs - - archiver - - archlinux - - archnews - - arena - - argo # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957050 at 2023-08-16 - - argon2 - - argparser - - arguedit - - arion - - armada - - armor - - arpa - - arpack - - arrayfire - - array-list - - array-primops - - ArrayRef - - arrowapply-utils - - arrow-improve - - arrow-list - - arrowp - - arrowp-qq - - ArrowVHDL - - artery - - artifact - - asap - - ascii85-conduit - - ascii-caseless - - asciidiagram # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955130 at 2023-08-16 - - ascii-flatten - - ascii-string - - ascii-vector-avc - - asif - - asil # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/225556674 at 2023-06-28 - - asn1-ber-syntax - - asn1-codec - - asn1-data - - AspectAG - - assert - - assert4hs - - assert4hs-core - - assertions - - asset-map - - assoc-list # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968246 at 2023-08-16 - - assoc-listlike # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957051 at 2023-08-16 - - assumpta - - ast-monad - - astrds - - astro # failure in job https://hydra.nixos.org/build/225575437 at 2023-06-28 - - async-combinators - - async-dejafu - - asynchronous-exceptions - - async-manager - - async-timer - - aterm - - atlassian-connect-descriptor - - atndapi - - atom - - atomic-modify # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969549 at 2023-08-16 - - atomic-primops-vector - - atomo - - atp-haskell - - ats-format # failure building executable 'atsfmt' in job https://hydra.nixos.org/build/230948414 at 2023-08-16 - - ats-pkg - - ats-setup - - ats-storable - - attempt - - attic-schedule - - AttoBencode - - atto-lisp - - attomail - - attoparsec-aeson # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964825 at 2023-08-16 - - attoparsec-csv - - attoparsec-text - - attoparsec-trans - - attoparsec-varword - - attosplit - - Attrac - - augeas - - augur - - aur - - aur-api - - Aurochs - - authenticate-ldap - - authinfo-hs - - auto - - autom - - autonix-deps - - autopack - - avatar-generator - - aviation-units - - avl-static - - avro-piper - - avr-shake - - avwx - - awesome-prelude - - awesomium-raw - - aws-cloudfront-signer - - aws-ec2 - - aws-ec2-knownhosts - - aws-general - - aws-lambda-haskell-runtime - - aws-lambda-runtime - - aws-larpi - - aws-performance-tests - - aws-route53 - - aws-sdk-text-converter - - axel - - azubi - - azure-acs - - azure-email - - azurify - - b9 - - babl # wants pkg-config dependency `babl`, but pkgs.babl's pkg-config file is called babl-0.1.pc - - backprop - - backstop - - backtracking-exceptions - - backward-state - - bag - - Baggins - - bake - - Bang - - banwords - - barbies-th # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949387 at 2023-08-16 - - barchart - - barcodes-code128 - - barecheck - - barrie - - barrier - - barrier-monad - - base16-lens - - base32-lens - - base58address - - base62 - - base64-bytes # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952298 at 2023-08-16 - - base64-conduit - - base64-lens - - base-compat-migrate - - based # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967441 at 2023-08-16 - - base-encoding - - base-feature-macros - - base-generics - - base-io-access - - basement-cd # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963879 at 2023-08-16 - - basen - - basex-client - - basic-sop - - baskell - - battlenet - - battleplace - - bazel-coverage-report-renderer - - BCMtools - - bdd - - bdelta - - bdo - - beam - - beamable - - beam-mysql - - beam-newtype-field - - bech32 - - bed-and-breakfast - - Befunge93 - - bench-graph # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958515 at 2023-08-16 - - BenchmarkHistory - - bench-show # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951256 at 2023-08-16 - - bencodex - - bencoding-lens - - berkeleydb - - BerkeleyDBXML - - berp - - bert - - besout - - bet - - betacode - - betris # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971705 at 2023-08-16 - - bgmax - - bgzf - - bibdb - - bidi-icu - - bidirectional - - bidirectional-instances - - bidispec - - bidispec-extras - - BiGUL - - billeksah-services - - binary-bits - - binary-communicator - - binary-derive - - binary-ext - - binary-indexed-tree - - binary-parsers - - binary-protocol - - binary-strict - - binary-tree - - binary-typed - - BinderAnn - - binding-core - - bindings-apr - - bindings-bfd - - bindings-cctools - - bindings-common - - bindings-dc1394 - - bindings-eskit - - bindings-EsounD - - bindings-fann - - bindings-fluidsynth - - bindings-friso - - bindings-gsl - - bindings-hamlib - - bindings-hdf5 - - bindings-K8055 - - bindings-libftdi - - bindings-libg15 - - bindings-libpci - - bindings-librrd - - bindings-libstemmer - - bindings-libusb - - bindings-libv4l2 - - bindings-monetdb-mapi - - bindings-mpdecimal - - bindings-sc3 - - bindings-sipc - - bindings-wlc - - bind-marshal - - binembed - - binrep # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/231689637 at 2023-08-16 - - binsm - - bio - - BiobaseNewick - - biocore - - biohazard - - bio-sequence - - birds-of-paradise - - biscuit-haskell - - bisect-binary - - bishbosh - - bitcoind-rpc # dependency missing in job https://hydra.nixos.org/build/217579845 at 2023-04-29 - - bitcoin-hs - - bitcoin-keys - - bitcoin-rpc - - bitcoin-script - - bitfield # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967290 at 2023-08-16 - - bits-atomic - - bits-conduit - - bitset - - bits-extras - - bitspeak - - bit-stream - - bitstream - - BitStringRandomMonad - - BitSyntax - - bitx-bitcoin - - bizzlelude # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230953184 at 2023-08-16 - - bizzlelude-js - - bkr - - blagda - - blakesum - - blas - - blaze-html-hexpat - - blaze-html-truncate - - blaze-json - - blaze-shields - - blazeT - - blaze-textual-native - - blindpass - - bliplib - - blockchain - - blockhash - - Blogdown - - BlogLiterately - - bloomfilter-redis - - blosum - - blubber-server - - bludigon - - Blueprint - - bluetileutils - - blunk-hask-tests - - bogocopy - - bolt - - boltzmann-brain - - bookhound - - bookkeeping # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958716 at 2023-08-16 - - boolean-like - - boolean-normal-forms - - boolexpr - - boombox - - boring-window-switcher - - borsh - - bot - - botpp - - bottom - - bounded-array # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957201 at 2023-08-16 - - bound-simple # failure building library in job https://hydra.nixos.org/build/230950474 at 2023-08-16 - - box - - box-tuples # failure building library in job https://hydra.nixos.org/build/230956723 at 2023-08-16 - - bpath - - BPS - - braid - - brain-bleep - - brassica - - Bravo - - brians-brain - - brick-dropdownmenu - - brick-filetree - - brick-list-search # failure in job https://hydra.nixos.org/build/211236614 at 2023-03-13 - - brick-list-skip # failure in job https://hydra.nixos.org/build/215850872 at 2023-04-17 - - brick-panes # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961711 at 2023-08-16 - - bricks-internal - - brick-tabular-list - - brillig - - brittany - - broadcast-chan-tests - - broccoli - - brok - - broker-haskell - - bronyradiogermany-common - - brotli-conduit - - browscap - - bsd-sysctl - - bson-generic - - bson-generics - - bson-mapping - - bsparse - - btree-concurrent # dependency missing in job https://hydra.nixos.org/build/211250233 at 2023-03-13 - - btrfs - - buffer - - buffer-builder-aeson - - BufferedSocket - - buffet - - buffon - - buffon-machines - - bugzilla - - build - - buildable - - buildbox - - builder - - bullet - - bumper - - bunz - - burst-detection - - bus-pirate - - buster - - Buster - - butter - - buttplug-hs-core - - bv-little - - byline - - by-other-names - - bytearray-parsing - - bytestring-aeson-orphans - - bytestring-arbitrary - - bytestring-class - - bytestring-conversion # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970130 at 2023-08-16 - - bytestring-csv - - bytestring-delta - - bytestring-handle - - bytestringparser - - bytestringparser-temporary - - bytestring-plain - - bytestringreadp - - bytestring-rematch - - bytestring-show - - bytestring-substring - - bytestring-time - - bytestring-typenats - - bzlib - - bzlib-conduit-jappie - - c10k - - c2ats - - cab - - cabal2doap - - cabal2ebuild - - cabal2ghci - - cabal2json # dependency missing in job https://hydra.nixos.org/build/225572535 at 2023-06-28 - - cabal-audit - - cabal-auto-expose - - cabal-bundle-clib - - cabal-constraints - - cabal-db - - cabal-debian # failure building library in job https://hydra.nixos.org/build/230959173 at 2023-08-16 - - cabal-dependency-licenses - - cabal-dev - - cabal-dir - - cabal-edit - - cabal-file-th - - cabal-ghc-dynflags - - cabal-ghci - - cabalgraph - - cabal-graphdeps - - cabal-helper - - cabal-hoogle # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965454 at 2023-08-16 - - Cabal-ide-backend - - cabal-info - - cabal-install-bundle - - cabal-install-ghc72 - - cabal-install-ghc74 - - cabalish - - cabal-lenses - - cabal-meta - - cabal-mon - - cabal-nirvana - - cabal-plan-bounds - - cabal-plan # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949515 at 2023-08-16 - - cabal-progdeps - - cabalQuery - - CabalSearch - - cabal-setup - - cabal-sort - - cabal-src - - cabal-test-quickcheck - - cabal-toolkit - - cabal-upload - - cabalvchk - - cabin - - cabocha - - cached - - cache-polysemy - - caching - - cacophony - - cafeteria-prelude - - cairo-core - - cake3 - - cal3d - - caledon - - calenderweek - - call-alloy - - cal-layout - - call-haskell-from-anything - - call-plantuml - - canon - - canonical-filepath - - canteven-listen-http - - canteven-log - - canteven-parsedate - - cantor - - capataz - - ca-patterns # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959692 at 2023-08-16 - - capped-list - - capri - - caps - - caramia - - carbonara - - carettah - - CarneadesDSL - - carte - - Cartesian - - casa-abbreviations-and-acronyms - - casadi-bindings-internal - - Cascade - - cascading - - case-insensitive-match # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230953665 at 2023-08-16 - - caseof - - cas-hashable - - casr-logbook - - casr-logbook-types - - cassandra-cql - - Cassava - - cassava-conduit - - cassava-records - - cassava-streams # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968263 at 2023-08-16 - - cassette - - castagnoli # failure in job https://hydra.nixos.org/build/219826672 at 2023-05-19 - - castle - - catamorphism - - Catana - - catch-fd - - category-printf - - category-traced - - catnplus - - cautious-file - - cautious-gen - - cayene-lpp - - cayley-client - - cblrepo - - cbor-tool # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947427 at 2023-08-16 - - CCA - - ccast - - CC-delcont-cxe - - CC-delcont-exc - - CC-delcont-ref - - CC-delcont-ref-tf - - cci - - ccnx - - cdp - - c-dsl - - cedict - - cef - - cef3-raw - - cellrenderer-cairo - - cereal-derive - - cereal-ieee754 - - cereal-plus - - cf - - cfenv - - cfn-flip - - cg - - cgen - - cgi - - cgroup-rts-threads - - chakra - - chalkboard - - chalmers-lava2000 - - changelogged # failure building library in job https://hydra.nixos.org/build/230967974 at 2023-08-16 - - ChannelT - - character-cases - - charter - - chart-histogram - - Chart-simple - - chaselev-deque - - chatty-text - - chatwork - - cheapskate # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951147 at 2023-08-16 - - check-cfg-ambiguity # failure in job https://hydra.nixos.org/build/225575902 at 2023-06-28 - - checked - - Checked - - checkmate - - chez-grater - - chiphunk - - Chitra - - choose - - chorale - - chp - - ChristmasTree - - chronograph - - chr-parse - - chunky - - church - - church-maybe - - churros # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230954366 at 2023-08-16 - - cicero-api # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967916 at 2023-08-16 - - cielo - - cil - - cimple # failure building library in job https://hydra.nixos.org/build/230963662 at 2023-08-16 - - cinvoke - - c-io - - cio - - cipher-aes128 - - cipher-blowfish - - cipher-des - - circle - - circlehs - - circular-enum # dependency missing in job https://hydra.nixos.org/build/225566485 at 2023-06-28 - - citeproc-hs - - cjk - - cj-token - - cl3-hmatrix-interface - - cl3-linear-interface - - clang-compilation-database - - clang-pure - - clanki - - clarifai - - CLASE - - clash-prelude # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967667 at 2023-08-16 - - Clash-Royale-Hack-Cheats - - ClassLaws - - classy-influxdb-simple - - classy-parallel - - classyplate - - ClassyPrelude - - clckwrks-plugin-bugs - - clckwrks-plugin-mailinglist - - clckwrks-theme-clckwrks - - clckwrks-theme-geo-bootstrap - - cld2 - - Clean - - clean-unions - - cleff # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963671 at 2023-08-16 - - clerk # failure building library in job https://hydra.nixos.org/build/214864491 at 2023-04-07 - - clevercss - - clexer - - CLI - - cli-builder - - cli-extras # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949753 at 2023-08-16 - - clif - - clifm - - cli-git - - clingo - - cli-nix - - clippard - - clipper - - clisparkline - - clit - - cloben # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955543 at 2023-08-16 - - clocked - - clock-extras - - clogparse - - clone-all - - closed-classes # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969665 at 2023-08-16 - - closed-intervals # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959515 at 2023-08-16 - - closure - - cloudfront-signer - - clplug # failure in job https://hydra.nixos.org/build/211239834 at 2023-03-13 - - clr-host # failure building library in job https://hydra.nixos.org/build/230958504 at 2023-08-16 - - clr-inline - - clr-typed - - cluss - - clustering - - cmark-highlight - - cmark-patterns - - cmark-sections - - cmath - - cmd-item - - cmdlib - - cmdtheline - - cmf - - cmonad - - c-mosquitto - - cmph - - CMQ - - cmt - - coalpit - - cobot-tools - - code-builder - - codec-beam - - codecov-haskell - - codeforces-cli - - codepad - - codex - - codo-notation - - coercible-utils - - coin - - coinbase-pro - - colchis - - collada-output - - collapse-util - - collate - - collections - - collections-api - - co-log-concurrent - - co-log-json - - co-log-sys - - colonnade - - colorless - - coltrane - - com - - comark-syntax - - combinat-compat - - combinat-diagrams - - combinat # failure building library in job https://hydra.nixos.org/build/230947031 at 2023-08-16 - - combinatorial-problems - - combinator-interactive - - combobuffer - - comic - - Command - - commander - - commander-cli - - Commando - - commodities - - compact - - Compactable - - compactable # dependency missing in job https://hydra.nixos.org/build/225560369 at 2023-06-28 - - compact-list - - compact-map - - compact-sequences - - compact-string - - compact-string-fix - - comparse - - compdata - - compendium-client - - competition - - compilation - - complex-generic - - composable-associations-aeson - - compose-trans - - composite-aeson-path - - composite-aeson-refined - - composite-base # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966274 at 2023-08-16 - - composite-cassava - - composition-tree - - compressed - - compression - - computational-geometry - - computations - - ConClusion # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952663 at 2023-08-16 - - concrete-relaxng-parser - - concrete-typerep - - concurrency-benchmarks - - concurrent-buffer - - Concurrent-Cache - - Concurrential - - concurrent-st - - concurrent-state - - concurrent-supply - - concurrent-utilities - - conditional-restriction-parser - - condorcet - - conductive-base - - conduit-audio-lame - - conduit-audio-samplerate - - conduit-connection - - conduit-find - - conduit-iconv - - conduit-network-stream - - conduit-resumablesink - - conduit-tokenize-attoparsec - - conduit-vfs - - conf - - conferer-dhall - - conferer # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230960587 at 2023-08-16 - - conferer-hspec - - conferer-provider-json - - conferer-snap - - conferer-source-json - - confide - - ConfigFileTH - - config-parser - - Configurable - - configuration - - configurator-pg # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962366 at 2023-08-16 - - config-value-getopt - - confsolve - - congruence-relation - - conjure - - conkin - - conlogger - - connection-pool # failure building library in job https://hydra.nixos.org/build/230958887 at 2023-08-16 - - connections - - connection-string - - Conscript - - consistent - - console-program - - constable - - const # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972319 at 2023-08-16 - - const-math-ghc-plugin - - constrained - - constrained-categories - - constrained-dynamic - - constrained-monads - - ConstraintKinds - - constraints-deriving - - constraints-emerge - - constr-eq - - construct # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959867 at 2023-08-16 - - constructive-algebra - - consul-haskell - - Consumer - - containers-benchmark - - containers-unicode-symbols - - containers-verified - - ContArrow - - ContextAlgebra - - context-stack - - contiguous-checked - - contiguous-fft - - continue - - continued-fractions # failure in job https://hydra.nixos.org/build/225575101 at 2023-06-28 - - contracheck-applicative - - Contract - - contra-tracers - - control-dsl - - control-iso - - control-monad-failure - - control-monad-failure-mtl - - Control-Monad-ST2 - - contstuff-monads-tf - - contstuff-transformers - - convert-annotation - - copilot-c99 # test failure in job https://hydra.nixos.org/build/230951365 at 2023-08-16 - - copr - - coquina - - COrdering - - core - - corebot-bliki - - core-compiler - - CoreDump - - CoreErlang - - core-haskell - - corenlp-parser - - core-warn - - Coroutine - - coroutine-object - - CouchDB - - couchdb-conduit - - couch-hs - - counter - - country-codes # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969077 at 2023-08-16 - - courier - - court - - coverage - - cparsing - - cpio-conduit - - cplusplus-th - - cpuid - - cpuperf - - cpython - - cql-io - - cqrs-core - - cr - - crack - - Craft3e - - craftwerk - - crawlchain - - crc16 - - crc32c - - crdt - - crdt-event-fold - - creatur # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950704 at 2023-08-16 - - credential-store - - crem # test failure in job https://hydra.nixos.org/build/214604824 at 2023-04-07 - - critbit - - criterion-cmp - - criterion-compare - - criterion-plus - - criterion-to-html - - criu-rpc-types - - crjdt-haskell - - crockford # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/230965833 at 2023-08-16 - - crocodile - - cronus - - cruncher-types - - crunghc - - crypto-cipher-benchmarks - - cryptocompare - - cryptoconditions - - cryptoids-types - - crypto-keys-ssh - - crypto-multihash - - crypton-connection # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956968 at 2023-08-16 - - crypto-numbers - - crypto-pubkey-openssh - - crypto-random-effect - - crypto-simple - - cryptsy-api - - csa - - cse-ghc-plugin - - csg - - csound-expression-dynamic - - CSPM-Frontend - - cspretty - - css - - css-easings - - css-selectors - - css-simple # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951038 at 2023-08-16 - - C-structs - - csv-nptools - - csv-sip - - ctemplate - - ctkl - - cuboid - - cuckoo-filter - - cuckoo # test failure in job https://hydra.nixos.org/build/225558690 at 2023-06-28 - - curl-aeson - - curl-runnings - - curly-expander - - currencies # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946919 at 2023-08-16 - - currency-convert - - curry-base - - CurryDB - - curryer-rpc # dependency missing in job https://hydra.nixos.org/build/214772339 at 2023-04-07 - - curry-frontend - - curryrs - - cursedcsv # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967021 at 2023-08-16 - - curves - - custom-prelude - - cut-the-crap - - CV - - d3js - - dag - - DAG-Tournament - - dahdit - - damnpacket - - danibot - - dao - - Dao - - darcs2dot - - darcs-buildpackage - - darcs-cabalized - - darcs-graph - - darcs-monitor - - darkplaces-rcon - - darkplaces-text - - data-accessor-monadLib - - data-accessor-monads-fd - - data-accessor-monads-tf - - data-accessor-template - - data-ascii - - data-aviary - - data-base - - database-migrate - - database-study - - data-check - - data-combinator-gen - - data-concurrent-queue - - data-construction - - data-constructors - - data-default-instances-new-base - - data-default-instances-text # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949390 at 2023-08-16 - - data-dispersal - - data-diverse - - datadog - - data-easy - - data-embed - - data-emoticons - - data-filepath - - data-filter # failure building library in job https://hydra.nixos.org/build/230970830 at 2023-08-16 - - data-fin - - data-fin-simple - - data-flagset - - data-forced # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946495 at 2023-08-16 - - data-index - - DataIndex - - data-ivar - - data-kiln - - data-lens-fd - - data-lens-ixset - - data-lens-template - - datalog - - data-map-multikey - - data-named - - data-nat - - data-object - - datapacker - - data-pdf-fieldreader - - data-pprint # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972007 at 2023-08-16 - - data-quotientref - - data-reify-cse - - data-repr - - data-rev - - datarobot - - data-rope - - Data-Rope - - data-r-tree - - data-size - - data-spacepart - - data-standards - - data-store - - data-stringmap - - DataTreeView - - data-type - - data-util - - data-validation - - data-variant - - data-vector-growable # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964148 at 2023-08-16 - - dates - - datetime - - datetime-sb - - dawdle - - dawg - - dawg-ord # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969059 at 2023-08-16 - - daytripper # failure in job https://hydra.nixos.org/build/225578117 at 2023-06-28 - - dbcleaner - - dbf - - DBlimited - - dbm - - dbmigrations - - dbmonitor - - d-bus - - DBus - - dbus-core - - dbus-qq - - dclabel - - dclabel-eci11 - - dcpu16 - - ddc-base - - ddc-code - - dead-code-detection - - Deadpan-DDP - - dead-simple-json - - dear-imgui # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968725 at 2023-08-16 - - debugger-hs # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968226 at 2023-08-16 - - debug-me - - debug-trace-file # test failure in job https://hydra.nixos.org/build/230951658 at 2023-08-16 - - debug-tracy - - decepticons - - decision-diagrams - - DecisionTree - - decoder-conduit - - deepcontrol - - DeepDarkFantasy - - deepl - - deepseq-bounded - - deepseq-instances - - deepseq-magic - - deepseq-th - - definitive-base - - deiko-config # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964942 at 2023-08-16 - - deka - - Delta-Lambda - - delude - - demarcate - - denominate - - dense - - dense-int-set - - dependent-hashmap - - dependent-monoidal-map # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972604 at 2023-08-16 - - dep-t-dynamic - - dep-t # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956455 at 2023-08-16 - - deptrack-core - - dep-t-value - - derangement - - derivation-trees - - derive - - derive-enumerable - - derive-gadt - - deriveJsonNoPrefix - - derive-lifted-instances - - derive-monoid - - derive-trie - - deriving-openapi3 - - deriving-trans - - derp-lib - - describe - - descriptive - - desktop-portal # test failure in job https://hydra.nixos.org/build/217585702 at 2023-04-29 - - deterministic-game-engine - - detrospector - - deunicode - - devil - - df1-html - - Dflow - - dfsbuild - - dgim - - dgs - - dhall-check - - dhall-csv - - dhall-fly - - dhall-lsp-server # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971652 at 2023-08-16 - - dhall-text - - dhall-to-cabal - - dhcp-lease-parser - - dhrun - - dia-base - - diagnose # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962878 at 2023-08-16 - - diagrams-boolean - - diagrams-builder - - diagrams-pdf - - diagrams-qrcode - - diagrams-rubiks-cube - - diagrams-tikz - - dialogflow-fulfillment - - dialogue - - dib - - dice2tex - - dicom - - dictionaries - - dictparser - - diet - - diffcabal - - differential - - DifferentialEvolution - - diff-gestalt - - diffmap - - difftodo - - digestive-bootstrap - - digestive-foundation-lucid - - digestive-functors-aeson - - digestive-functors-happstack - - digestive-functors-heist # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948900 at 2023-08-16 - - digestive-functors-lucid # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969836 at 2023-08-16 - - digestive-functors-snap - - digest-pure - - DigitalOcean - - digitalocean-kzs - - digraph - - dijkstra-simple - - DimensionalHash - - diophantine - - diplomacy - - direct-binary-files - - directed-cubical - - direct-fastcgi - - direct-http - - directory-ospath-streaming # dependency missing in job https://hydra.nixos.org/build/219209527 at 2023-05-10 - - direct-plugins - - direm - - disco # failure building library in job https://hydra.nixos.org/build/219207076 at 2023-05-10 - - discord-haskell # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971973 at 2023-08-16 - - discordian-calendar - - discord-register - - discord-types - - discrete - - DiscussionSupportSystem - - Dish - - disjoint-containers - - disjoint-set - - disjoint-set-stateful - - diskhash - - Dist - - distance - - distributed-closure - - distribution - - dist-upload - - ditto-lucid # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947345 at 2023-08-16 - - djembe - - djinn-ghc - - djinn-th - - dmcc - - dmenu - - dnscache - - dns-patterns # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959482 at 2023-08-16 - - dnsrbl - - dnssd - - dobutok - - dobutokO - - doccheck - - docidx - - docker-build-cacher - - dockercook - - docker # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961470 at 2023-08-16 - - dockerfile-creator - - docopt - - docrecords - - doctest-discover-configurator - - doctest-prop - - docusign-example - - docvim - - DOH - - doi - - domaindriven-core # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948092 at 2023-08-16 - - domain-optics - - dom-events # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958378 at 2023-08-16 - - dom-parser - - domplate - - dom-selector - - do-notation-dsl - - dormouse-uri - - do-spaces - - dotfs - - dot-linker - - dotparse - - doublezip - - doublify-toolkit - - downloader - - dozenal - - dozens - - dph-base - - dpkg - - DPM - - dpor - - dragen - - drawille - - dr-cabal - - drClickOn - - dresdner-verkehrsbetriebe - - DrIFT - - DrIFT-cabalized - - drifter-postgresql - - drmaa - - drone - - dropbox - - dsc - - ds-kanren - - dsmc - - dson - - dson-parsec - - dstring - - dsv # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230953340 at 2023-08-16 - - DTC - - dtd-text - - dtw - - dual-game # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959616 at 2023-08-16 - - dualizer - - duckling - - duet - - dumb-cas - - dump-core - - dunai-core - - Dung - - duplo - - dura - - duration - - dvault - - dvdread - - dvi-processing - - dwarf - - dwarfadt - - dyckword - - dyna-brick - - dynamic-graphs - - dynamic-mvector - - dynamic-object - - dynamic-pipeline - - DynamicTimeWarp - - dyna-processing - - dynloader - - DysFRP - - dywapitchtrack - - dzen-dhall - - dzen-utils - - each - - eager-sockets - - earclipper - - earcut - - early - - easy-api - - easy-args - - easy-bitcoin - - easyjson - - easyplot - - easytest - - ebeats - - ebnf-bff - - eccrypto - - ecma262 - - ecta-plugin - - ecu - - eddie - - ede - - edenmodules - - edf # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965074 at 2023-08-16 - - edis - - edit - - edit-lenses - - editline - - effectful-st - - effect-handlers - - effective-aspects - - effect-stack - - effet - - effin - - eflint - - egison-pattern-src - - ehaskell - - ehs - - eibd-client-simple - - eigen - - Eight-Ball-Pool-Hack-Cheats - - eio - - EitherT - - either-unwrap - - ejdb2-binding - - ekg-bosun - - ekg-elastic - - ekg-elasticsearch - - ekg-json - - ekg-log - - ekg-push - - ekg-rrd - - ekg-statsd - - elevator - - eliminators - - elision - - elm-export-persistent - - elm-street - - elm-websocket - - elocrypt - - ema-generics # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957258 at 2023-08-16 - - emailaddress - - email-header - - email-postmark - - embed-config - - embla - - emgm - - Emping - - Empty - - empty-monad - - enchant - - encode-string - - encoding - - encoding-io - - encryptable - - endo - - engine-io - - entwine - - EnumContainers - - enumerator - - EnumMap - - enummapmap - - enummaps - - enummapset-th - - enum-subset-generate - - enum-text - - enum-utf8 - - envelope - - env-extra # test failure in job https://hydra.nixos.org/build/230961939 at 2023-08-16 - - env-parser - - envstatus - - envy-extensible # failure building library in job https://hydra.nixos.org/build/230971634 at 2023-08-16 - - epanet-haskell - - epass - - epic - - epi-sim - - epoll - - epubname - - Eq - - EqualitySolver - - equational-reasoning-induction - - equeue - - erd - - erlang - - erlang-ffi - - eros - - error-context - - error-continuations - - error-list - - error-loc - - error-util - - ersaconcat - - ersatz - - ert - - escape-artist - - escoger - - esqueleto-pgcrypto - - ess - - essence-of-live-coding - - EstProgress - - Etage - - etc - - etcd - - ethereum-rlp - - eurofxref - - evdev-streamly - - eve-cli - - eved - - event - - event-driven - - eventsource-api - - eventsourced - - eventstore - - evoke # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955694 at 2023-08-16 - - ewe # failure building executable 'ewe' in job https://hydra.nixos.org/build/225555839 at 2023-06-28 - - exact-cover - - exact-real-positional - - except-exceptions - - exceptional - - exceptionfree-readfile - - exception-monads-fd - - exception-via - - exchangerates - - execs - - executor - - exh - - exhaustive - - exherbo-cabal - - exif - - exigo-schema - - exinst - - exists - - exitcode - - exon # dependency missing in job https://hydra.nixos.org/build/210848638 at 2023-02-28 - - exp-cache - - exp-extended - - explain - - explicit-constraint-lens - - explicit-determinant - - explicit-iomodes - - exploring-interpreters # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967612 at 2023-08-16 - - exposed-containers - - expression-parser - - expressions - - expresso - - extcore - - extended-categories - - extended-containers - - extensible-data - - extensible-effects-concurrent - - extensible-skeleton - - extensioneer # failure building executable 'extensioneer' in job https://hydra.nixos.org/build/230953750 at 2023-08-16 - - external-sort - - extism - - extractelf - - extralife # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950860 at 2023-08-16 - - ez3 - - ez-couch - - Facebook-Password-Hacker-Online-Latest-Version - - faceted - - factory # test failure in job https://hydra.nixos.org/build/214600338 at 2023-04-07 - - facts - - Facts # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949709 at 2023-08-16 - - fadno-braids - - fadno-xml - - failable-list - - failure-detector - - fake - - fake-type - - faktory - - f-algebra-gen - - falling-turnip - - fastbayes - - fast-combinatorics - - fast-downward - - fastedit - - fastly - - fast-nats - - fastparser # failure building library in job https://hydra.nixos.org/build/211240748 at 2023-03-13 - - fastpbkdf2 - - FastPush - - fast-tagsoup-utf8-only - - FastxPipe - - fathead-util - - fay - - fbmessenger-api - - fb-persistent - - fca - - fcache - - fcf-composite - - fcf-graphs - - fcg - - fclabels-monadlib - - fcm-client - - fdo-trash - - feather - - feature-flipper - - fedora-packages - - feed-cli - - feed-collect - - feed-crawl - - fei-cocoapi - - feldspar-language - - fenfire - - fernet - - FerryCore - - festival - - Feval - - fez-conf - - ffeed - - ffmpeg-light # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963762 at 2023-08-16 - - ffunctor - - fgl-extras-decompositions - - fib - - fibon - - fields - - fieldwise - - fig - - filecache # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961614 at 2023-08-16 - - file-collection - - file-command-qq - - filediff - - file-embed-poly - - file-io - - file-location - - FileManip - - FileManipCompat - - fileneglect - - Files - - FileSystem - - filesystem-conduit - - filesystem-trees - - file-templates - - fillit - - final-pretty-printer - - Finance-Quote-Yahoo - - find-conduit - - find-source-files - - fingertree-psqueue - - fingertree-tf - - finite - - FiniteCategories - - finite-fields - - firefly-example - - first-and-last - - first-class-instances - - FirstPrelude # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952406 at 2023-08-16 - - fit - - fitsio - - fits-parse - - fixed-point - - fixedprec - - fixed-precision - - fixed-storable-array - - fixed-timestep - - fixed-vector-hetero # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959989 at 2023-08-16 - - fixed-width - - fixer - - fixfile - - fixie - - fix-imports # dependency missing in job https://hydra.nixos.org/build/215306368 at 2023-04-11 - - fix-symbols-gitit - - fizzbuzz - - fizzbuzz-as-a-service - - flaccuraterip - - flamethrower - - flamingra - - flat-maybe - - flat-mcmc # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951840 at 2023-08-16 - - flay - - flexible-time - - flickr - - flink-statefulfun - - float-binstring - - floating-bits - - flock - - flowdock - - flowdock-api - - flowdock-rest - - flow-er - - flowlocks-framework - - flp - - fltkhs - - fluffy-parser - - fluid-idl - - fluidsynth - - flux-monoid - - fmark - - FModExRaw - - fn-extra - - fold-debounce-conduit # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972387 at 2023-08-16 - - foldl-incremental - - foldl-statistics - - foldl-transduce # test failure in job https://hydra.nixos.org/build/230962135 at 2023-08-16 - - folds-common - - follow - - fontconfig-pure # test failure in job https://hydra.nixos.org/build/230970811 at 2023-08-16 - - font-opengl-basic4x6 - - forbidden-fruit - - fordo - - forecast-io - - foreign - - foreign-var - - forest - - forest-fire - - forex2ledger - - for-free - - forger - - ForkableT - - forma # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967499 at 2023-08-16 - - formal - - formattable - - forml - - formura - - Fortnite-Hack-Cheats-Free-V-Bucks-Generator - - fortran-src-extras - - fortytwo # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950284 at 2023-08-16 - - foscam-filename - - fpe - - fp-ieee # test failure in job https://hydra.nixos.org/build/225561952 at 2023-06-28 - - FPretty - - fptest - - fquery - - Fractaler - - fractals - - fraction - - frag - - franchise - - fraxl - - freddy - - free-concurrent - - f-ree-hack-cheats-free-v-bucks-generator - - free-http - - freenect # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969157 at 2023-08-16 - - free-operational - - freer-effects - - freer-simple-catching - - freer-simple # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959714 at 2023-08-16 - - freer-simple-http - - freer-simple-profiling - - freer-simple-random - - freer-simple-time - - freesect - - freesound - - free-theorems - - FreeTypeGL - - freetype-simple - - free-v-bucks-generator-no-survey - - free-v-bucks-generator-ps4-no-survey - - freq - - fresh - - fresnel - - friday-devil - - friday-scale-dct - - friday # test failure in job https://hydra.nixos.org/build/225561573 at 2023-06-28 - - friendly # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966475 at 2023-08-16 - - frown - - frp-arduino - - frpnow - - fs-events - - fsh-csv - - fsmActions - - FSM # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963381 at 2023-08-16 - - fsnotify-conduit # failure building library in job https://hydra.nixos.org/build/230972081 at 2023-08-16 - - fst - - fsutils - - fswait - - fswatch - - fswatcher # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959599 at 2023-08-16 - - ft-generator - - FTGL-bytestring - - ftp-client - - ftp-conduit - - ftphs - - full-sessions - - funbot-client - - funcons-lambda-cbv-mp # failure building executable 'lambda-cbv' in job https://hydra.nixos.org/build/217559083 at 2023-04-29 - - funcons-values # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971643 at 2023-08-16 - - functional-arrow - - function-instances-algebra - - functor-combinators - - functor-friends - - functor-infix - - functorm - - functor-products - - functor-utils - - Fungi - - funpat - - funspection - - fused-effects-exceptions - - fused-effects-mwc-random - - fused-effects-resumable - - fused-effects-th # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961770 at 2023-08-16 - - fusion - - futhask - - futun - - future - - futures # failure building library in job https://hydra.nixos.org/build/230952892 at 2023-08-16 - - fuzzyfind - - fuzzyset # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967540 at 2023-08-16 - - fuzzy-timings - - fwgl - - fxpak - - g4ip - - galois-field - - gameclock - - game-probability - - gamgee - - Gamgine - - gamma - - Ganymede - - garepinoh - - gargoyle # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955806 at 2023-08-16 - - gargoyle-postgresql-nix - - gas - - gather - - gc-monitoring-wai - - gconf - - gdiff-th - - gegl - - gelatin - - gemcap - - gemini-server - - gemstone - - gencheck - - gender - - genders - - general-allocate - - general-prelude - - GeneralTicTacToe - - generator - - generators - - generic-aeson # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955043 at 2023-08-16 - - generic-binary - - generic-church - - generic-enum - - generic-enumeration - - generic-labels - - generic-lens-labels - - generic-lucid-scaffold - - generic-match - - generic-maybe - - generic-override - - generic-persistence # failure in job https://hydra.nixos.org/build/215303659 at 2023-04-11 - - generic-pretty - - generic-pretty-instances - - generic-records - - genericserialize - - generic-server - - generics-mrsop - - generic-storable - - generic-tree - - generic-xml - - generic-xmlpickler - - genetics - - genifunctors - - gen-imports - - geniplate - - geniplate-mirror - - gen-passwd - - genprog - - gentlemark - - geocode-google - - GeocoderOpenCage - - geodetic-types - - GeoIp - - geojson-types - - geom2d - - GeomPredicates-SSE - - geo-resolver - - geos - - gerrit # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950005 at 2023-08-16 - - Get - - getflag - - gev-lib # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946300 at 2023-08-16 - - GGg - - ggtsTC - - ghc-api-compat - - ghc-bignum-orphans # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952175 at 2023-08-16 - - ghc-clippy-plugin - - ghc-core-smallstep - - ghc-corroborate # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966063 at 2023-08-16 - - ghc-datasize - - ghc-definitions-th # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968119 at 2023-08-16 - - ghc-dump-core # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962483 at 2023-08-16 - - ghc-dump-tree - - ghc-dup - - ghc-events-analyze - - ghc-events-parallel - - ghcflags - - ghc-gc-hook # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962629 at 2023-08-16 - - ghc-generic-instances - - ghc-hotswap - - ghci-diagrams - - ghci-haskeline - - ghci-history-parser - - ghci-lib - - ghci-ng - - ghcjs-base-stub - - ghcjs-dom-jsffi - - ghcjs-promise - - ghcjs-xhr - - ghc-justdoit - - ghclive - - ghc-man-completion - - ghc-mtl - - ghc-parmake - - ghc-pkg-autofix - - ghc-pkg-lib - - ghc-plugin-non-empty - - ghc-plugs-out - - ghc-proofs - - ghc-simple - - ghc-source-gen - - ghc-srcspan-plugin - - ghc-syb - - ghc-syb-utils - - ghc-tags-core - - ghc-time-alloc-prof - - ghc-usage - - gh-labeler - - gi-adwaita - - giak - - gi-cogl - - Gifcurry - - gi-gio-hs-list-model - - gi-graphene - - gi-gsttag - - gi-gtk-declarative - - gi-gtk-layer-shell - - gi-gtksheet - - gi-gtksource # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968384 at 2023-08-16 - - gi-handy - - gi-ibus # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971732 at 2023-08-16 - - gingersnap - - ginsu - - gipeda - - giphy-api - - gist - - GiST - - git - - git-all - - git-brunch # failure building executable 'git-brunch' in job https://hydra.nixos.org/build/230966224 at 2023-08-16 - - git-checklist - - git-cuk - - git-date - - github-backup - - github-data - - github-post-receive - - github-tools - - github-utils - - github-webhook-handler - - githud - - gitHUD # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965338 at 2023-08-16 - - gitignore - - git-jump - - gitlab-api - - gitlab-haskell - - gitlib-cmdline - - gitlib-utils - - git-repair - - gitter - - git-vogue - - gi-webkitwebprocessextension # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/215220491 at 2023-04-07 - - glade - - glapp - - glaze - - Gleam - - GLFW - - GLFW-b-demo - - gli - - glicko - - glider-nlp - - GLMatrix - - global-variables - - glob-posix - - GlomeTrace - - gloss-banana - - gloss-export - - gloss-game - - glsl # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230960137 at 2023-08-16 - - gltf-codec - - glue - - g-npm - - goa - - goal-core - - goatee - - gochan - - godot-haskell - - godot-megaparsec # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948877 at 2023-08-16 - - gofer-prelude - - gogol-core - - gooey - - google-cloud - - GoogleCodeJam - - google-html5-slide - - google-oauth2 - - google-oauth2-easy - - google-oauth2-jwt - - googlepolyline - - google-search - - google-server-api - - google-static-maps - - google-translate - - gopherbot - - gopro-plus - - gore-and-ash - - gothic - - GotoT-transformers - - gotta-go-fast - - gotyno-hs # failure building library in job https://hydra.nixos.org/build/230953887 at 2023-08-16 - - gpah - - GPipe - - GPipe-Core - - gpmf - - gpx-conduit - - graceful - - grafana - - Grafos - - grakn - - grammatical-parsers - - Graph500 - - Graphalyze - - graphbuilder - - graphene - - graphics-drawingcombinators - - graphics-formats-collada - - graph-matchings - - graphmod-plugin - - graphql-api - - graphql-spice - - graphql-utils - - graphql-w-persistent - - graph-rewriting - - graph-serialize - - graphted - - graphula-core - - graph-utils - - graql - - grasp - - gray-code - - graylog - - greencard - - greg-client - - gremlin-haskell - - Grempa - - greplicate - - greskell-core # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230954493 at 2023-08-16 - - gridfs - - grid-proto # failure building library in job https://hydra.nixos.org/build/219248049 at 2023-05-10 - - grids - - grm - - GroteTrap - - groundhog - - grouped-list # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962501 at 2023-08-16 - - groups-generic - - group-theory - - group-with - - growler - - grow-vector - - grpc-api-etcd - - gsl-random - - gstreamer - - GTALib - - gtk2hs-cast-th - - gtk2hs-hello - - gtk2hs-rpn - - gtk3-helpers - - gtkglext - - gtk-helpers - - gtksourceview2 - - gtksourceview3 - - gtk-toy - - guardian # transitive dependency uses doctest, but doctest doesn't build with newer Cabal version - - guess-combinator - - gulcii - - gw - - gyah-bin - - gym-http-api - - h2048 - - h2c - - haar - - HABQT - - hack2-contrib - - hack2-handler-warp - - hackage2hwn - - hackage-api - - hackage-diff - - hackage-mirror - - hackage-processing - - hackage-proxy - - hackager - - hackage-server - - hackage-whatsnew - - hackernews - - hack-frontend-happstack - - hack-handler-cgi - - HackMail - - hackport - - hactor - - hactors - - haddock-api - - haddock-leksah - - haddock-test - - hadoop-formats - - hadoop-rpc - - hadoop-streaming - - hafar - - haggle # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967144 at 2023-08-16 - - Haggressive - - HaGL # test failure in job https://hydra.nixos.org/build/225563740 at 2023-06-28 - - hahp - - haiji - - hail - - hailgun - - hairy - - hakaru - - hakismet - - hakka - - hako - - hakyll-agda - - hakyll-blaze-templates - - hakyll-contrib - - hakyll-contrib-csv - - hakyll-contrib-elm - - hakyll-contrib-i18n - - hakyll-contrib-links - - hakyll-convert # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951676 at 2023-08-16 - - hakyll-dhall - - hakyll-dir-list - - hakyll-R - - hakyll-series - - hakyll-shortcode - - hakyll-typescript - - HaLeX - - hal # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966637 at 2023-08-16 - - halfs - - half-space - - halide-haskell # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951821 at 2023-08-16 - - halipeto - - halive - - halma - - halves - - ham - - HaMinitel - - hampp - - hamsql - - hamtmap - - hanabi-dealer - - handa-gdata - - handle-like - - HandlerSocketClient - - handsy - - Hangman - - HangmanAscii - - hannahci - - hans - - hanspell - - haphviz - - hapistrano - - happindicator - - happindicator3 - - happlets - - happraise - - happstack - - happstack-clientsession # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955472 at 2023-08-16 - - happstack-hamlet - - happstack-heist - - happstack-hstringtemplate - - happstack-lite # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969664 at 2023-08-16 - - happstack-monad-peel - - happstack-server-tls-cryptonite - - happstack-util - - happstack-yui - - HAppS-Util - - happybara - - happybara-webkit-server - - happy-hour - - HappyTree - - hapstone - - HaPy - - haquery - - harchive - - hardware-edsl - - harfbuzz-pure - - HARM - - HarmTrace-Base - - haroonga - - harpy - - harvest-api - - has - - hasbolt - - HasCacBDD - - hascar - - hascard - - hascas - - hash - - hashable-extras - - hashable-generics - - hashabler - - hashed-storage - - hashring - - hashtables-plus - - hasim - - hask - - haskades - - haskanoid - - haskarrow - - haskbot-core - - haskeline-class - - haskelisp - - haskell2010 - - haskell2020 - - haskell98 - - haskell98libraries - - haskell-abci - - haskell-admin-core - - HaskellAnalysisProgram - - haskell-awk - - haskell-bcrypt - - haskell-bitmex-rest - - haskell-brainfuck - - haskell-cnc - - haskell-compression - - haskell-conll - - haskell-course-preludes - - haskelldb - - haskelldb-wx - - haskell-disque - - HaskellForMaths - - haskell-formatter - - haskell-generate - - haskell-go-checkers - - haskell-holes-th - - haskell-igraph - - haskell-import-graph - - haskell-in-space - - haskell-kubernetes - - HaskellLM - - haskell-lsp-types - - haskell-ml - - haskell-mpfr - - haskell-names - - haskell-neo4j-client - - HaskellNN - - Haskelloids - - haskell-openflow - - haskell-overridez - - haskell-packages - - haskell-player - - haskell-plot - - haskell-postal - - haskell-postgis - - haskell-read-editor - - haskell-rules - - haskellscrabble - - haskellscript - - haskell-snake - - haskell-spacegoo - - haskell-src-exts-prisms - - haskell-src-exts-qq - - haskell-src-exts-sc - - haskell-src-match - - haskell-src-meta-mwotton - - haskell-stack-trace-plugin - - haskell-to-elm - - HaskellTorrent - - HaskellTutorials - - haskell-type-exts - - haskell-typescript - - haskell-tyrant - - haskelzinc - - haskeme - - haskey - - haskey-btree # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947127 at 2023-08-16 - - haskheap - - haskhol-core - - haskintex # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947126 at 2023-08-16 - - haskmon - - haskoin - - haskoin-util - - haskoin-wallet - - haskore - - haskore-vintage - - HaskRel - - hasktorch-codegen - - hasktorch-ffi-th - - hasktorch-signatures-partial - - hasktorch-signatures-support - - haskus-utils-variant - - haskyapi - - hasmin - - haspara - - hasparql-client - - hasql-backend - - hasql-class - - hasql-cursor-transaction - - hasql-explain-tests - - hasql-generic - - hasql-interpolate - - hasql-resource-pool - - hasql-simple - - hasql-streams-core - - hasql-transaction-io # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949199 at 2023-08-16 - - hasql-url - - hastache - - haste - - haste-prim - - hasura-ekg-core # failure building library in job https://hydra.nixos.org/build/230950264 at 2023-08-16 - - hat - - hatex-guide - - hats - - hatt - - haveibeenpwned - - haven - - haverer - - hax - - haxl - - haxparse - - haxr-th - - hayland - - hayoo-cli - - hb3sum - - hBDD-CMUBDD - - hBDD-CUDD - - hbeanstalk - - hbeat - - hblas - - hblock - - h-booru - - hburg - - hcad - - HCard - - hcc - - hcg-minus - - hchesslib - - hcltest - - hcoap - - hcobs - - hcom - - hcron - - hCsound - - hdaemonize-buildfix - - hdbc-aeson - - HDBC-mysql - - hdbc-postgresql-hstore - - HDBC-postgresql-hstore - - hdevtools - - hdf5 - - hDFA - - hdis86 - - hdiscount - - hdm - - hdo - - hdph-closure - - hdr-histogram - - HDRUtils - - headergen - - headroom - - heap-console - - heapsort - - heartbeat-streams # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948671 at 2023-08-16 - - heart-core - - heatitup-complete # failure building executable 'heatitup-complete' in job https://hydra.nixos.org/build/230969611 at 2023-08-16 - - hebrew-time - - heckle - - heddit - - hedgehog-checkers - - hedgehog-gen - - hedgehog-generic - - hedgehog-golden - - hedgehog-lens # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947380 at 2023-08-16 - - hedgehog-servant - - hedis-config - - hedis-namespace - - hedis-simple - - hedis-tags - - hedra - - heidi - - hein - - heist-aeson - - heist-async - - heist-emanote - - heist-extra # failure building library in job https://hydra.nixos.org/build/230953957 at 2023-08-16 - - helisp - - helix - - helm - - help-esb - - hemkay - - HERA - - herbalizer - - HerbiePlugin - - heredocs - - her-lexer-parsec - - Hermes - - herms - - heroku-persistent # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959576 at 2023-08-16 - - hetero-dict - - heterogeneous-list-literals - - hetris - - heukarya - - HExcel - - hexchat - - hexif - - hexmino - - hexml-lens - - hexpat-lens - - hexpat-pickle-generic - - hexpat-streamparser - - hexpr - - hexpress - - hexquote - - hexstring - - hext - - hextra - - heyefi - - heyting-algebras - - hF2 - - hfann - - HFitUI - - hfmt - - hfoil # failure building library in job https://hydra.nixos.org/build/213500290 at 2023-03-26 - - hfov - - HFrequencyQueue - - hfusion - - HGamer3D - - HGamer3D-Data - - hg-buildpackage - - hgdbmi - - HGE2D - - hgearman - - hGelf - - hgeometric - - hgeometry-ipe - - hgis - - hgom - - hgopher - - h-gpgme - - HGraphStorage - - hgreet # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970023 at 2023-08-16 - - hgrep - - hgrev - - hgrib - - hharp - - HHDL - - hhp - - hhwloc - - hi - - hi3status - - hichi - - hid - - hidden-char - - hid-examples - - hieraclus - - hierarchical-clustering # failure building library in job https://hydra.nixos.org/build/230953344 at 2023-08-16 - - hierarchical-exceptions - - hierarchy - - hiernotify - - hifi # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961852 at 2023-08-16 - - higgledy - - higher-leveldb - - higherorder - - highjson - - highlight-versions - - highWaterMark - - hills - - himg - - hindley-milner - - hindley-milner-type-check - - hinquire - - hinstaller - - hinter - - hinterface - - hint-server - - hipchat-hs - - hipe - - Hipmunk - - hipsql-api - - hircules - - Hish - - hissmetrics - - historian - - hist-pl-types - - hit-on - - HJavaScript - - hjcase - - hjs - - hjsonpointer - - hjson-query - - hjugement-protocol - - HJVM - - hkd-delta - - hkd-lens - - hkd-records - - hkt - - hlbfgsb - - hleap - - hledger-chart - - hledger-diff - - hledger-flow # failure building library in job https://hydra.nixos.org/build/230963320 at 2023-08-16 - - hledger-iadd - - hledger-irr - - hledger-makeitso # failure building library in job https://hydra.nixos.org/build/230946385 at 2023-08-16 - - hledger-vty - - hlibBladeRF - - hlibev - - hlibfam - - HList # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950021 at 2023-08-16 - - hlivy - - hlogger - - HLogger - - hlongurl - - hls-brittany-plugin - - hls-haddock-comments-plugin - - hls-selection-range-plugin - - hls-stan-plugin - - hls-tactics-plugin - - hlwm - - hly - - hmarkup - - hmatrix-banded - - hmatrix-mmap - - hmatrix-nipals - - hmatrix-sparse - - hmatrix-static - - hmatrix-svdlibc - - hmatrix-syntax - - hmatrix-tests - - hmenu - - hmk - - hmm - - HMM - - hmm-hmatrix - - HMock # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971948 at 2023-08-16 - - hMollom - - hmp3 - - Hmpf - - hmumps - - hnetcdf - - hnn - - hnock # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230960174 at 2023-08-16 - - hnop - - hoauth - - hoauth2-providers - - hoauth2-tutorial - - hobbes - - hobbits - - hocilib - - hocker - - hocon - - hodatime - - HODE - - hoe - - hofix-mtl - - hog - - hogg - - hoggl - - hois - - hold-em - - hole - - holmes - - homeomorphic - - homoiconic - - homplexity - - honi - - hoobuddy - - hood2 - - hoodle-types - - hood-off - - hoogle-index - - hooks-dir - - hoop - - hoopl - - hopencc - - hopencl - - HOpenCV - - hopenpgp-tools - - hopfield - - hoppy-generator - - hops - - hoq - - horizon - - horizon-spec # dependency missing in job https://hydra.nixos.org/build/213500294 at 2023-03-26 - - horname - - hosc-json - - hosts-server - - hothasktags - - hourglass-fuzzy-parsing - - houseman - - hp2any-core - - hpack-convert - - hpack-dhall - - hpapi - - hpasteit - - HPath - - hpath-directory # failure building library in job https://hydra.nixos.org/build/214497909 at 2023-04-07 - - hpc-coveralls - - hpg - - HPi - - hpio - - hplaylist - - hpodder - - hpqtypes - - hprox # dependency missing in job https://hydra.nixos.org/build/221844808 at 2023-05-30 - - hps-kmeans - - hPushover - - hpygments - - hpylos - - hpyrg - - hquantlib-time - - hquery - - hR - - hreq-core - - hRESP - - h-reversi - - hricket - - Hricket - - HROOT-core - - hruby - - hs2bf - - hs2ps - - hsay - - hsbc - - hsbencher - - hs-brotli - - hsc3 - - hsc3-rw - - hsc3-sf - - hscaffold - - hscamwire - - hs-carbon-examples - - hscd - - hscdio - - hschema-aeson - - hscim - - hsclock - - hScraper - - hscuid - - hs-di - - hsdif - - hsdip - - hsdns-cache - - hs-dotnet - - hs-duktape - - hsebaysdk - - hsenv - - HSet - - hs-excelx - - hsfcsh - - HSFFIG - - hsfilt - - hs-fltk - - hsforce - - hs-gizapp - - hsgnutls - - hsgnutls-yj - - hsgsom - - HsHaruPDF - - HsHyperEstraier - - hsI2C - - hSimpleDB - - hsimport - - hsini - - hsinspect - - hs-java - - hs-json-rpc - - HsJudy - - hskeleton - - hslackbuilder - - hslibsvm - - hslinks - - hslogger-reader - - hslogger-template - - hs-logo - - hslua-examples - - hsluv-haskell - - hsmagick - - hsmodetweaks - - Hsmtlib - - hsmtpclient - - hsnock - - hs-nombre-generator - - hsns - - hsnsq - - hsntp - - hs-openmoji-data - - hsoptions - - hsoz - - hsparql - - hs-pattrans - - hsp-cgi - - hspear - - hspec2 - - hspec-api # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957655 at 2023-08-16 - - hspec-expectations-match - - hspec-experimental - - hspec-jenkins - - hspec-junit-formatter - - hspec-monad-control - - hspec-need-env # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962402 at 2023-08-16 - - hspec-slow - - hspec-snap - - hspec-structured-formatter - - hspec-tables - - hspec-webdriver - - HsPerl5 - - hs-pgms - - hspkcs11 - - hs-pkg-config - - hspread - - hspresent - - hspretty - - hsql - - hs-re - - hsrelp - - hs-rqlite - - hs-rs-notify - - hs-scrape - - hsseccomp - - hsshellscript # failure building library in job https://hydra.nixos.org/build/230964557 at 2023-08-16 - - hs-snowtify - - hsSqlite3 - - hssqlppp - - HsSVN - - hs-tags - - hstats - - hstatsd - - hs-term-emulator - - hstest - - hstidy - - HsTools - - hs-twitter - - hs-twitterarchiver - - hstyle - - hsudoku - - hs-vcard - - hs-watchman - - hsx - - hsXenCtrl - - hsyscall - - hsyslog-udp - - hszephyr - - hTalos - - htdp-image - - hTensor - - htestu - - HTicTacToe - - htiled - - htlset - - html-parse # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962751 at 2023-08-16 - - html-rules - - html-tokenizer - - htoml - - htoml-megaparsec - - hts - - htsn - - htssets - - http2-client-exe - - http2-client # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949635 at 2023-08-16 - - http2-grpc-types - - http3 # dependency missing in job https://hydra.nixos.org/build/214603147 at 2023-04-07 - - http-attoparsec - - http-client-lens - - http-client-request-modifiers - - http-client-session - - http-client-streams - - http-conduit-browser - - http-conduit-downloader - - http-directory - - http-dispatch - - http-encodings - - http-grammar - - http-kinder - - http-kit - - http-listen - - http-monad - - http-pony - - http-pony-serve-wai - - http-proxy - - http-querystring - - http-response-decoder - - http-rfc7807 - - http-server - - http-shed - - httpstan # dependency missing in job https://hydra.nixos.org/build/221916023 at 2023-05-31 - - http-wget - - htune - - htvm - - htzaar - - huck - - HueAPI - - huff - - huffman - - HulkImport - - hum - - human-parse - - human-text - - humble-prelude - - hums - - hunch - - HUnit-Diff - - HUnit-Plus - - hunit-rematch - - hup - - hurl - - hurriyet - - husky - - hutton - - huttons-razor - - hVOIDP - - hwall-auth-iitk - - hw-ci-assist - - hw-dsv # failure building library in job https://hydra.nixos.org/build/230955653 at 2023-08-16 - - hw-dump - - hweblib - - hwhile - - hw-json-demo - - hw-json-lens - - hw-json-simd - - hworker - - hw-playground-linear - - hw-prim-bits - - hw-simd-cli - - hwsl2 - - hw-streams # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230953855 at 2023-08-16 - - hw-tar - - hw-xml # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966951 at 2023-08-16 - - hx - - hxmppc - - HXQ - - hxt-pickle-utils - - hyakko - - hydra # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947287 at 2023-08-16 - - hydra-hs - - hydrogen - - hydrogen-multimap - - hylide - - hylolib - - hyper - - hyperdrive - - hyperfunctions - - hyperion - - hyperloglogplus - - hyperscript - - hypertypes - - hypher - - hyraxAbif - - hzulip - - i18n - - I1M - - i3blocks-hs-contrib - - i3ipc - - iap-verifier - - iban - - ib-api - - ical - - icepeak - - icfpc2020-galaxy - - IcoGrid - - iconv-typed - - ideas - - ide-backend-common - - idempotent - - identifiers - - idiii - - idna2008 - - IDynamic - - ieee-utils - - iexcloud - - ifcxt - - if-instance - - IFS - - ig - - ige - - ignore - - igraph - - ihaskell-charts - - ihaskell-diagrams - - ihaskell-gnuplot - - ihaskell-graphviz # failure building library in job https://hydra.nixos.org/build/230959018 at 2023-08-16 - - ihaskell-parsec - - ihaskell-plot - - ihaskell-widgets - - ihp-hsx # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971837 at 2023-08-16 - - ilist # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948898 at 2023-08-16 - - illuminate - - imagemagick - - imagepaste - - image-type - - imapget - - imgur - - imj-prelude - - imm - - immortal-worker - - imperative-edsl - - imperative-edsl-vhdl - - ImperativeHaskell - - impl - - implicit-logging - - implicit-params - - imports - - impossible - - imprint - - impure-containers - - inchworm - - indentation-core - - index-core - - indexed-containers - - indexed-do-notation - - indextype - - indices - - infernal - - inferno-types - - infernu # failure building library in job https://hydra.nixos.org/build/230972899 at 2023-08-16 - - infer-upstream - - inf-interval - - infix - - inflections # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230960295 at 2023-08-16 - - inflist - - informative - - inilist - - ini-qq - - initialize - - inj-base - - inject-function - - injections - - inline-c-objc # failure building test suite 'tests' in job https://hydra.nixos.org/build/221844966 at 2023-05-30 - - inline-r # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/231676486 at 2023-08-16 - - in-other-words-plugin - - inserts - - instana-haskell-trace-sdk - - instance-map - - instant-generics - - instapaper-sender - - instinct - - intcode # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963480 at 2023-08-16 - - integer-pure - - integer-simple - - intensional-datatys - - interact - - interactive-plot - - interleavableGen - - interleavableIO - - interlude-l - - internetmarke - - intero - - interp - - interpol - - interpolatedstring-qq2 - - interpolator - - interruptible - - interval - - interval-algebra - - interval-patterns - - interval-tree-clock - - IntFormats - - int-interval-map - - int-like # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957175 at 2023-08-16 - - int-multimap - - intrinsic-superclasses - - intro - - introduction - - inventory - - invertible - - invertible-syntax - - involutive-semigroups - - io-capture - - io-choice - - ioctl - - IOR - - io-reactive - - iostring - - iothread - - iotransaction - - ip2location - - ip2proxy - - ipa - - ipfs - - ipopt-hs - - ip-quoter - - iptables-helpers - - IPv6DB - - Irc - - ircbot - - irc-core # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962123 at 2023-08-16 - - irc-dcc - - irc-fun-types - - ireal - - iri - - iridium - - iris - - iron-mq - - irt - - isdicom - - IsNull - - iso8601-duration - - isobmff - - isotope - - itcli - - itemfield - - iteratee - - iterative-forward-search - - iterIO - - iterm-show - - it-has - - ivory - - ixdopp - - ixmonad - - ixset-typed # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967299 at 2023-08-16 - - ixshader - - j - - jack-bindings - - jackminimix - - JackMiniMix - - jacobi-roots - - jaeger-flamegraph - - jail - - jalla - - jammittools - - jarfind - - jarify - - jaskell # test failure in job https://hydra.nixos.org/build/230959845 at 2023-08-16 - - jason - - java-adt - - javascript-bridge - - javav - - Javav - - jbi - - jcdecaux-vls - - Jdh - - jdi - - jenga - - jenkinsPlugins2nix - - jet-stream - - Jikka - - jinquantities - - jmacro-rpc - - jml-web-service - - jni - - jobqueue - - join-api - - joinlist - - jonathanscard - - jordan # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965587 at 2023-08-16 - - jort - - joy-rewrite - - jpeg - - jsaddle-clib - - jsaddle-warp - - jsaddle-wkwebview - - js-good-parts - - json2 - - json-alt - - json-api - - json-api-lib - - json-assertions - - json-ast-quickcheck - - JSONb - - json-builder - - json-bytes-builder - - json-encoder - - jsonextfilter - - json-extra - - json-fu - - json-litobj - - jsonlogic-aeson - - jsonnet - - json-pointer - - json-pointy - - json-python - - json-qq - - jsonresume - - json-rpc-generic - - json-rpc-server - - json-rpc # test failure in job https://hydra.nixos.org/build/214602304 at 2023-04-07 - - jsonrpc-tinyclient - - json-schema - - jsonschema-gen - - jsonsql - - json-syntax - - json-tools - - json-tracer - - jsontsv - - jsonxlsx - - jsop - - judge - - judy - - juicy-gcode - - JuicyPixels-blp - - JuicyPixels-blurhash - - JuicyPixels-canvas - - JuicyPixels-util - - jukebox # failure building library in job https://hydra.nixos.org/build/230961139 at 2023-08-16 - - JunkDB - - jupyter - - justified-containers - - JustParse - - jvm-binary - - jvm-parser - - JYU-Utils - - k8s-wrapper # test failure in job https://hydra.nixos.org/build/211254982 at 2023-03-13 - - kademlia - - kafka-client # dependency missing in job https://hydra.nixos.org/build/211238496 at 2023-03-13 - - kafka-client-sync - - kalman - - Kalman - - kangaroo - - kanji # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967903 at 2023-08-16 - - karabiner-config - - karps - - katip-datadog - - katip-elasticsearch - - katip-kafka - - katip-logzio - - katip-raven - - katip-scalyr-scribe - - katip-syslog - - katt - - katydid - - kawaii - - Kawaii-Parser - - kawhi - - kdesrc-build-extra - - kd-tree - - keccak - - keenser - - keera-hails-reactivevalues - - keid-render-basic # failure in job https://hydra.nixos.org/build/225578420 at 2023-06-28 - - keid-ui-dearimgui - - keiretsu - - kempe - - kesha - - Ketchup - - kewar - - keycloak-hs - - keyed - - keyed-vals - - khph - - kickass-torrents-dump-parser - - kickchan - - kind-generics-deriving - - kind-integer # failure building library in job https://hydra.nixos.org/build/214501345 at 2023-04-07 - - kleene-list - - kmn-programming - - kmonad - - kmp-dfa - - knots - - koellner-phonetic - - koneko - - Konf - - konnakol - - kontra-config - - koofr-client - - korea-holidays - - kraken - - krapsh - - Kriens - - kriti-lang - - krpc - - KSP - - ktx - - kubernetes-client-core - - kubernetes-webhook-haskell - - kudzu # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947047 at 2023-08-16 - - kuifje - - kure - - KyotoCabinet - - l10n # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958884 at 2023-08-16 - - labeled-graph - - lagrangian - - lambda2js - - lambdaBase - - lambdabot-utils - - lambdabot-xmpp - - lambda-bridge - - lambda-calculator - - lambda-canvas - - lambdacms-core - - lambda-cube - - lambdacube-core - - lambdacube-engine - - lambdacube-ir - - LambdaDesigner - - Lambdajudge - - LambdaNet - - lambda-sampler - - lambdatex - - lambda-toolbox - - lambdatwit - - Lambdaya - - lame - - lame-tester - - language-asn - - language-c-comments - - language-c-inline - - language-conf - - language-csharp - - language-dart - - language-dockerfile - - language-elm - - language-fortran - - language-gcl - - language-gemini - - language-go - - language-guess - - language-hcl - - language-java-classfile - - language-js - - language-lua2 - - language-lua-qq - - language-mixal - - language-objc - - language-ocaml - - language-openscad - - language-pig - - language-rust - - language-sally # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230953286 at 2023-08-16 - - language-sh - - language-sqlite - - language-sygus - - language-typescript - - language-webidl - - laop - - LargeCardinalHierarchy - - large-generics # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948096 at 2023-08-16 - - Lastik - - latest-npm-version - - latex-formulae-image - - latex-svg-image - - LATS - - launchdarkly-server-sdk - - launchpad-control - - lawful-classes-hedgehog - - lawless-concurrent-machines - - layers - - layout - - layout-bootstrap - - layout-rules - - lazify - - lazyarray - - lazyboy - - lazy-priority-queue - - lazyset - - LazyVault - - l-bfgs-b - - LC3 - - lcs - - ldif - - ld-intervals - - leaf - - leapseconds - - learn - - Learning - - learn-physics-examples # dependency missing in job https://hydra.nixos.org/build/213500293 at 2023-03-26 - - leetify - - lendingclub - - lens-datetime - - lenses - - lens-filesystem - - lens-labels - - lens-prelude - - lens-process - - lensref - - lens-simple - - lens-tell - - lens-text-encoding - - lens-th-rewrite - - lens-time - - lens-toml-parser # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971016 at 2023-08-16 - - lens-tutorial - - lens-typelevel - - lens-xml - - lenz-template - - less-arbitrary - - Level0 - - level-monad - - levmar - - lfst - - lhc - - lhs2TeX-hl - - lhslatex - - libarchive # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230954627 at 2023-08-16 - - LibClang - - libexpect - - libGenI - - libhbb - - libinfluxdb - - libjenkins - - libjwt-typed # failure building library in job https://hydra.nixos.org/build/230959244 at 2023-08-16 - - libltdl - - libmdbx # failure in job https://hydra.nixos.org/build/230971264 at 2023-08-16 - - liboath-hs - - liboleg - - libpafe - - libphonenumber # dependency missing in job https://hydra.nixos.org/build/214497968 at 2023-04-07 - - libpq - - librandomorg - - libsecp256k1 - - libssh2 # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/223222399 at 2023-06-07 - - libsystemd-daemon - - libtagc - - libtelnet # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948008 at 2023-08-16 - - libxls - - libxlsxwriter-hs - - libxslt - - libyaml-streamly # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965706 at 2023-08-16 - - libzfs - - licensor - - lie - - life-sync - - lifetimes - - lifted-protolude - - lifter - - ligature - - light - - lilypond - - Limit - - limp-cbc - - linda - - linden - - linear-algebra-cblas - - linear-maps - - linear-opengl - - linearscan - - linear-socket - - linear-vect - - line-bot-sdk - - line-drawing - - line-indexed-cursor # test failure in job https://hydra.nixos.org/build/230971466 at 2023-08-16 - - linenoise # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230954880 at 2023-08-16 - - lines-of-action - - lingo - - linguistic-ordinals # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962191 at 2023-08-16 - - linkedhashmap - - linked-list-with-iterator - - linklater - - linnet - - linode - - linode-v4 - - linux-blkid - - linux-cgroup - - linux-evdev - - linux-kmod - - linux-perf - - linux-xattr - - linx-gateway - - lipsum-gen - - liquid - - liquid-fixpoint # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948295 at 2023-08-16 - - liquidhaskell-cabal - - Liquorice - - list-fusion-probe - - listlike-instances - - list-mux - - list-prompt - - list-t-http-client - - list-t-libcurl - - list-tries - - list-t-text - - list-zip-def - - list-zipper - - liszt - - lit - - literals - - LiterateMarkdown - - little-earley # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949904 at 2023-08-16 - - ll-picosat - - llsd - - llvm-base - - llvm-extra # dependency missing in job https://hydra.nixos.org/build/217586045 at 2023-04-29 - - llvm-general-pure - - llvm-hs - - llvm-ht - - llvm-party # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967625 at 2023-08-16 - - llvm-pretty - - llvm-tf # failure building library in job https://hydra.nixos.org/build/230970343 at 2023-08-16 - - lmdb-high-level # failure building library in job https://hydra.nixos.org/build/230954528 at 2023-08-16 - - lmdb-simple - - lmonad - - lnurl - - load-balancing - - load-font - - local-address - - located - - located-monad-logger - - loch - - loc-test # failure in haddockPhase in job https://hydra.nixos.org/build/230967699 at 2023-08-16 - - log2json - - log-base - - log-effect - - logentries - - logger - - logging-effect-extra-file - - logging-effect-extra-handler - - Logic - - logicst - - logict-sequence - - logplex-parse - - log-warper - - lojbanParser - - lojbanXiragan - - lol-calculus - - longboi - - long-double # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964106 at 2023-08-16 - - looksee # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959202 at 2023-08-16 - - lookup-tables - - loopbreaker - - loop-dsl - - looper # failure building test suite 'looper-test' in job https://hydra.nixos.org/build/225553593 at 2023-06-28 - - loops - - loop-while - - loopy - - lord - - lorem - - loris - - loshadka - - louis - - lowgl - - lp-diagrams-svg - - LRU - - lrucaching - - lscabal - - L-seed - - lsfrom - - ltiv1p1 - - ltk - - LTS - - lua-bc - - luautils - - lucid2-htmx - - lucid-alpine # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948075 at 2023-08-16 - - lucid-aria - - lucid-hyperscript - - luhn # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/230960533 at 2023-08-16 - - luis-client - - luka - - luminance - - lushtags - - luthor - - lvmlib - - lvmrun - - lxd-client - - lxd-client-config # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967232 at 2023-08-16 - - lye - - lz4-bytes # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958626 at 2023-08-16 - - lz4-frame-conduit - - lzip - - lzlib - - lzma-streams - - lzo - - maam - - mac - - macaroon-shop - - machinecell - - machines-attoparsec - - machines-binary - - machines-bytestring - - machines-encoding - - machines-io - - machines-zlib - - macho - - maclight - - macos-corelibs - - macrm - - madlang - - mage - - magic-tyfams - - magma - - mailchimp - - mailchimp-subscribe - - makedo - - makefile - - make-hard-links - - make-monofoldable-foldable - - mallard - - mandulia - - mangopay - - mapalgebra - - map-exts - - Mapping - - mappy - - map-reduce-folds - - MapWith - - markdown-kate - - marked-pretty - - markov-realization - - mars - - marshal-contt # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964051 at 2023-08-16 - - marvin-interpolate - - MASMGen - - massiv-persist - - massiv-scheduler - - massiv-serialise - - master-plan - - matcher # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947893 at 2023-08-16 - - mathflow - - math-grads - - math-interpolate - - math-metric - - math-programming # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964799 at 2023-08-16 - - matrix-as-xyz - - matrix-lens - - matrix-market - - matrix-sized - - matroid - - maude - - maxent-learner-hw - - maybench - - MaybeT - - MaybeT-monads-tf - - MaybeT-transformers - - MazesOfMonad - - MBot - - mbox-tools - - mbtiles # failure building library in job https://hydra.nixos.org/build/230947737 at 2023-08-16 - - mbug - - mcl - - mcm - - mcmaster-gloss-examples - - mcmc-synthesis - - mcpi - - md5 # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966189 at 2023-08-16 - - mdapi - - mdcat - - mdp - - mealstrom - - mealy # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952277 at 2023-08-16 - - MeanShift - - Measure - - mecab - - mech - - Mecha - - mechs - - Mechs - - mediabus - - mediawiki - - medium-sdk-haskell - - meep - - megalisp - - megastore # failure in job https://hydra.nixos.org/build/211239200 at 2023-03-13 - - melf - - mellon-core - - melody - - membrain - - memcached - - memcached-binary - - memcache-haskell - - meminfo - - memoization-utils - - memo-ptr - - memorable-bits - - memorypool - - memo-sqlite - - menoh - - menshen - - mercury-api - - mergeful-persistent - - mergeless-persistent - - messagepack-rpc - - messente - - metadata - - MetaHDBC - - metaheuristics - - meta-misc - - meta-par - - method - - metric - - metricsd-client - - mezzo - - mezzolens - - mgeneric - - MHask - - mi - - miconix-test - - microbase - - microformats2-parser - - microgroove - - microlens-each - - microlens-process # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957561 at 2023-08-16 - - micrologger - - micro-recursion-schemes - - microsoft-translator - - mida - - midi-simple - - midisurface # dependency missing in job https://hydra.nixos.org/build/217805409 at 2023-04-29 - - midi-utils - - mighttpd2 # failure in job https://hydra.nixos.org/build/225576224 at 2023-06-28 - - mighty-metropolis # test failure in job https://hydra.nixos.org/build/214599789 at 2023-04-07 - - migrant-postgresql-simple - - mikmod - - mikrokosmos - - miku - - milena - - mime-directory - - MiniAgda - - miniforth - - minilens - - minilight - - minions - - miniplex - - ministg - - minizinc-process - - minst-idx - - mios - - MIP - - mirror-tweet - - mismi-p # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949261 at 2023-08-16 - - mismi-s3-core - - miso-action-logger - - miso-examples - - mit-3qvpPyAi6mH - - mix-arrows - - mixpanel-client - - mkcabal - - mltool - - ml-w - - mm2 - - mmsyn2 - - mmsyn4 - - mmsyn7l - - mmsyn7ukr-array - - mmsyn7ukr-common - - mmtf - - mmtl - - mmzk-typeid # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951832 at 2023-08-16 - - Mobile-Legends-Hack-Cheats - - mockazo - - mock-httpd - - modbus-tcp - - model - - modelicaparser - - modular-prelude - - module-management - - modulespection - - moe - - Moe - - MoeDict - - moesocks - - mohws - - mollie-api-haskell - - monadacme - - monad-atom - - monad-atom-simple - - monad-branch - - MonadCatchIO-mtl - - MonadCatchIO-transformers-foreign - - monad-choice - - MonadCompose - - monad-control-aligned - - monadcryptorandom - - monad-fork - - monadic-bang - - monadiccp - - monadic-recursion-schemes - - monad-introspect - - Monadius - - monad-levels - - monad-lgbt - - monadLib-compose - - monadloc-pp - - monad-log - - monadlog - - monad-logger-prefix # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955752 at 2023-08-16 - - monad-logger-syslog - - monad-lrs - - monad-mersenne-random - - monad-metrics # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947569 at 2023-08-16 - - monad-mock - - monad-open - - monad-parallel-progressbar - - monad-param - - monad-persist - - monadplus - - monad-ran - - MonadRandomLazy - - monad-recorder - - monad-skeleton # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956155 at 2023-08-16 - - MonadStack - - monad-statevar - - monad-ste - - monad-stlike-io - - monad-task - - monad-throw-exit - - monad-time-effectful # failure building library in job https://hydra.nixos.org/build/225552858 at 2023-06-28 - - monad-timing - - monad-tree - - monad-tx - - monad-unify - - monad-wrap - - Monatron - - mondo - - money - - mongodb-queue - - monitor - - monocypher # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/212811942 at 2023-03-22 - - mono-foldable - - monoid - - monoid-absorbing - - monoidal-functors # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956652 at 2023-08-16 - - monoid-owns - - monoidplus - - monoids - - monoid-statistics - - monomer-flatpak-example # failure in job https://hydra.nixos.org/build/215851035 at 2023-04-17 - - monopati - - monus - - monzo - - moo-nad - - morfette - - morfeusz - - morpheus-graphql-cli - - morphisms-functors - - morphisms-objects - - morte - - mortred - - mosaico-lib # dependency missing in job https://hydra.nixos.org/build/212818174 at 2023-03-22 - - motor-reflection - - mount - - movie-monad - - mpppc - - mpris - - mpvguihs - - mqtt - - mqtt-hs - - mrifk - - mrm - - ms - - ms-auth # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947549 at 2023-08-16 - - ms-azure-api # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969734 at 2023-08-16 - - msgpack - - msgpack-types - - ms-graph-api # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230953084 at 2023-08-16 - - msh - - mssql-simple - - MTGBuilder - - mtgoxapi - - mtl-c - - mtl-evil-instances - - mtl-extras - - mtl-tf - - mtlx - - mtp - - mtsl - - MuCheck - - mud - - mudbath - - mulang - - multext-east-msd - - multiaddr - - multiarg - - multihash - - multi-instance # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230954844 at 2023-08-16 - - multilinear - - multipass - - multipath - - multiplate-simplified - - multipool - - multirec - - Munkres # failure building library in job https://hydra.nixos.org/build/230964280 at 2023-08-16 - - Munkres-simple - - muon - - murmur - - mu-schema - - musicScroll - - music-util - - musicxml - - mustache2hs - - mustache-haskell - - mutable - - mvc - - mxnet - - mxnet-nnvm - - myanimelist-export - - myo - - my-package-testing - - MyPrimes - - mysnapsession - - mysql-effect - - mysql-simple-quasi - - mystem - - my-test-docs - - mywork - - myxine-client - - mzv - - n2o-protocols - - NaCl - - nagios-plugin-ekg - - named-binary-tag - - named-lock - - named-servant - - named-sop - - namelist - - nanoAgda - - nano-cryptr - - nanocurses - - nano-hmac - - NanoID # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948998 at 2023-08-16 - - nano-md5 - - nanomsg - - nanomsg-haskell - - nanoparsec - - nanopass - - NanoProlog - - nanovg-simple - - nanq - - naperian - - Naperian - - naqsha - - narc - - nationstates - - nats-client - - nat-sized-numbers - - natural - - NaturalSort - - naver-translate - - nbt - - ncurses - - neat - - needle - - neet - - nehe-tuts - - neil - - neither - - neither-data - - neko-lib - - neko-obfs - - Neks - - neptune-backend - - nero - - nest - - NestedFunctor - - nestedmap - - nested-sequence - - netclock - - netease-fm - - netrium - - NetSNMP - - netspec - - net-spider - - netwire-input-javascript - - netwire-vinylglfw-examples - - network-address - - network-api-support - - network-arbitrary - - network-attoparsec - - network-bitcoin - - network-builder - - network-bytestring - - network-carbon - - network-dbus - - networked-game - - network-house - - network-manager-tui - - network-messagepack-rpc-websocket - - network-metrics - - network-msg - - network-msgpack-rpc - - network-packet-linux - - network-server - - network-service - - network-simple-sockaddr - - network-simple-wss - - network-socket-options - - network-transport-amqp - - network-transport-inmemory - - network-voicetext - - network-wai-router - - neural-network-blashs - - neural-network-hmatrix - - newbase60 - - newhope - - newline # dependency missing in job https://hydra.nixos.org/build/211250825 at 2023-03-13 - - newports - - newsletter - - newt - - newtype-deriving - - newtype-th - - next-ref - - nextstep-plist - - NGrams - - ngrams-loader - - ngx-export-log - - niagra - - nibblestring - - nice-html - - nicovideo-translator - - nist-beacon - - nitro - - nix-delegate - - nixdu - - nix-eval - - nix-freeze-tree - - nixfromnpm - - nixpkgs-update - - nix-serve-ng # failure building executable 'nix-serve' in job https://hydra.nixos.org/build/231635876 at 2023-08-16 - - nix-tools - - nlp-scores - - nm - - NMap - - nme - - nn - - nntp - - noether - - nofib-analyse - - nofib-analyze - - noise - - noli - - NonEmpty - - non-empty-containers - - nonempty-lift - - non-empty-zipper - - nonlinear-optimization # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950369 at 2023-08-16 - - noodle - - normalization-insensitive # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969473 at 2023-08-16 - - no-role-annots - - notcpp - - notmuch-haskell - - not-prelude # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947663 at 2023-08-16 - - NoTrace - - notzero - - np-linear - - nptools - - nri-prelude - - ntp-control - - ntrip-client - - n-tuple - - nuha # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959017 at 2023-08-16 - - nullary - - null-canvas - - nullpipe - - NumberSieves - - NumberTheory - - number-wall # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947084 at 2023-08-16 - - numeric-qq - - numeric-ranges - - numhask-free - - numhask-histogram - - numhask-prelude - - numhask-space # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958208 at 2023-08-16 - - numtype - - numtype-tf - - Nutri - - nvfetcher # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/231635785 at 2023-08-16 - - nvim-hs-ghcid - - NXT - - NXTDSL - - nyan-interpolation-core - - nylas - - nyx-game - - oanda-rest-api - - oasis-xrd - - oauthenticated - - obd - - Object - - ObjectIO - - ocaml-export - - Octree - - OddWord - - oden-go-packages - - oeis2 - - OGDF - - OGL - - ogma-language-c - - ogma-language-cocospec - - ogma-language-smv - - ogmarkup - - ohloh-hs - - oi - - okapi - - old-version - - om-actor - - omaketex - - ombra - - om-doh - - omega - - Omega - - om-elm - - om-fail - - om-http-logging - - omnifmt - - om-plugin-imports - - om-show - - om-time - - on-a-horse - - onama - - ONC-RPC # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952342 at 2023-08-16 - - on-demand-ssh-tunnel - - oneormore - - onpartitions - - onu-course - - op - - opaleye-classy - - opaleye-sqlite - - opaleye-trans - - open-adt - - OpenAFP - - openai-hs # failure building library in job https://hydra.nixos.org/build/215850908 at 2023-04-17 - - openapi3 - - openapi3-code-generator - - openapi-petstore - - openapi-typed - - opencc - - opench-meteo - - OpenCL - - OpenCLRaw - - OpenCLWrappers - - opencog-atomspace - - opencv - - opencv-raw - - opendatatable - - openexchangerates - - openflow - - opengles - - OpenGLRaw21 - - open-haddock - - openid-connect - - open-pandoc - - open-signals - - opensoundcontrol-ht - - openssh-protocol - - opentelemetry-extra - - opentelemetry-http-client - - opentheory-char - - opentracing # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951073 at 2023-08-16 - - opentype - - open-typerep - - OpenVGRaw - - openweathermap - - Operads - - operate-do - - operational-extra - - opn - - optima - - optimization - - optional - - options-time - - optparse-applicative-simple - - optparse-helper - - optstream - - orc - - orchestrate - - OrchestrateDB - - ordered - - order-statistics - - Ordinary - - ordrea - - oref - - organize-imports - - orgmode - - orgmode-parse - - org-parser # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971946 at 2023-08-16 - - origami - - orion-hs - - orizentic - - OrPatterns - - ory-hydra-client # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971097 at 2023-08-16 - - ory-kratos # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968815 at 2023-08-16 - - osc - - oscpacking - - oset - - Oslo-Vectize - - OSM - - osm-conduit - - oso2pdf - - osx-ar - - ot - - OTP - - ottparse-pretty - - overeasy - - overload - - overloaded - - overloaded-records - - overture - - owoify-hs - - pack - - package-description-remote - - package-version # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230960762 at 2023-08-16 - - package-vt - - packdeps - - packed - - packed-dawg - - packed-multikey-map - - packedstring - - packer-messagepack - - packman - - packstream - - packunused - - pacman-memcache - - padic - - pads-haskell - - pagarme - - pagerduty - - pagerduty-hs - - pagure-hook-receiver - - PandocAgda - - pandoc-citeproc - - pandoc-columns # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956006 at 2023-08-16 - - pandoc-csv2table # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968874 at 2023-08-16 - - pandoc-filter-graphviz - - pandoc-filter-indent - - pandoc-include - - pandoc-include-plus # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962699 at 2023-08-16 - - pandoc-lens - - pandoc-linear-table # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968966 at 2023-08-16 - - pandoc-link-context # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972013 at 2023-08-16 - - pandoc-logic-proof # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961625 at 2023-08-16 - - pandoc-markdown-ghci-filter - - pandoc-placetable - - pandoc-plantuml-diagrams - - pandoc-pyplot - - pandoc-select-code # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956087 at 2023-08-16 - - pandoc-unlit - - pandoc-utils - - pandora - - panfiguration - - pang-a-lambda - - pangraph - - pan-os-syslog - - panpipe - - pansite - - pantry-tmp - - papa-base-export - - papa-include - - papa-lens-export - - papa-lens-implement - - papa-prelude - - papa-prelude-core - - papa-prelude-lens - - papa-prelude-semigroupoids - - papa-prelude-semigroups - - papa-semigroupoids-implement - - paphragen - - papillon - - pappy - - paragon - - Parallel-Arrows-Definition - - parallel-tasks - - parameterized-data - - parameterized-utils - - paranoia - - parco - - parcom-lib - - par-dual - - pareto - - paripari - - parochial - - PArrows - - Parry - - parse - - parsec2 - - parsec3 - - parsec-free - - parsec-parsers - - parsec-pratt - - parseerror-eq - - parse-gcstats - - parsely - - parser241 - - parser-combinators-tests - - parsergen - - parser-helper - - parsers-megaparsec - - parser-unbiased-choice-monad-embedding - - parsimony - - parsix # failure building library in job https://hydra.nixos.org/build/230966036 at 2023-08-16 - - parsnip - - partage - - partial-lens - - partial-records - - partly - - passage - - passman - - passman-core - - PasswordGenerator - - passwords - - pasta - - pasta-curves - - pastis - - pasty - - patches-vector - - Pathfinder - - pathfindingcore - - path-formatting # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969881 at 2023-08-16 - - PathTree - - patrol - - patronscraper - - pattern-trie - - paynow-zw - - paypal-adaptive-hoops - - paypal-api - - paypal-rest-client - - pb - - pbc4hs - - PBKDF2 - - pb-next - - pcd-loader - - pcf-font-embed - - pcgen - - PCLT - - pcre2 - - pcre-light-extra - - pdfinfo - - pdf-slave-template - - pdf-toolbox-viewer - - pdftotext - - pdynload - - PeanoWitnesses - - pecoff - - pedestrian-dag - - peg - - peggy - - pencil - - penntreebank-megaparsec - - percent-encoder - - perceptron - - peregrin - - perf - - PerfectHash - - perfect-vector-shuffle - - perhaps - - periodic - - periodic-common - - periodic-polynomials - - permutation - - permute - - persist2er - - Persistence - - persistent-cereal - - persistent-database-url - - persistent-equivalence - - persistent-generic - - persistent-mongoDB - - persistent-odbc - - persistent-postgresql-streaming # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967419 at 2023-08-16 - - persistent-ratelimit - - persistent-stm - - persistent-template-classy - - persistent-zookeeper - - persist # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970536 at 2023-08-16 - - persist-state - - persona - - pesca - - pez - - pgdl - - pg-extras - - pgf2 - - pg-harness - - pg-harness-server - - pg-recorder - - pgsql-simple - - pg-store - - pgstream - - pg-transact - - pgvector # failure in job https://hydra.nixos.org/build/215851675 at 2023-04-17 - - phasechange - - phaser - - phoityne - - phoityne-vscode # failure building executable 'phoityne-vscode' in job https://hydra.nixos.org/build/230958609 at 2023-08-16 - - phone-metadata - - phone-numbers - - phone-push - - phonetic-languages-constaints - - phonetic-languages-constraints-array - - phonetic-languages-filters-array - - phonetic-languages-permutations-array - - phonetic-languages-phonetics-basics - - phonetic-languages-plus - - phonetic-languages-simplified-properties-array-old - - phonetic-languages-ukrainian-array - - phonetic-languages-vector - - phraskell - - Phsu - - phybin - - pia-forward - - pi-calculus - - picedit - - pickle - - picologic - - picoparsec - - pictikz - - pier-core - - piet - - pi-forall - - pig - - pi-hoole - - pi-lcd - - pinboard - - pinch-gen - - pinchot - - pine - - Pipe - - pipes-async - - pipes-bgzf - - pipes-break # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950050 at 2023-08-16 - - pipes-brotli - - pipes-category - - pipes-cereal - - pipes-core - - pipes-errors - - pipes-interleave - - pipes-io - - pipes-lines # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965615 at 2023-08-16 - - pipes-lzma # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230954108 at 2023-08-16 - - pipes-network-ws # failure building library in job https://hydra.nixos.org/build/214504366 at 2023-04-07 - - pipes-protolude - - pipes-rt - - pipes-s3 - - pipes-shell - - pipes-sqlite-simple - - pipes-transduce - - pipes-vector - - pipes-zeromq4 - - Piso - - pit - - pivotal-tracker - - pixela - - pixelated-avatar-generator - - pixel-printer - - pixiv - - pkcs10 - - pkcs7 - - pkggraph - - plailude - - plan-applicative - - planar-graph - - plan-b - - planb-token-introspection - - planet-mitchell-test - - plankton - - plat - - platinum-parsing - - PlayingCards - - playlists - - plist - - plist-buddy - - plivo - - ploterific - - plot-gtk - - plot-gtk3 - - plot-gtk-ui - - plot-lab - - plots - - plow-log - - plugins - - plugins-multistage - - plumbers - - plur - - plural - - plzwrk - - pngload-fixed - - pocket - - podenv - - pointedalternative - - pointfree-fancy - - pointful - - pointless-haskell - - poke - - pokemon-go-protobuf-types - - poker-base - - poker-eval - - pokitdok - - polar-configfile - - polar-shader - - policeman - - polling-cache - - Pollutocracy - - poly-cont - - poly-control - - polydata-core - - polynom - - polynomial - - polysemy-check - - polysemy-keyed-state - - polysemy-kvstore # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971431 at 2023-08-16 - - polysemy-kvstore-jsonfile - - polysemy-managed # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972262 at 2023-08-16 - - polysemy-methodology-co-log - - polysemy-mocks - - polysemy-path - - polysemy-readline - - polysemy-req - - polysemy-resume - - polysemy-several # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969795 at 2023-08-16 - - polysemy-socket - - polysemy-video - - polysemy-vinyl - - polysemy-zoo # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962140 at 2023-08-16 - - poly # test failure in job https://hydra.nixos.org/build/225574715 at 2023-06-28 - - polytypeable - - polyvariadic # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956502 at 2023-08-16 - - pomaps - - pomohoro - - ponder - - pong-server - - pontarius-xmpp-extras # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/231689607 at 2023-08-16 - - pontarius-xpmn - - pool - - poolboy # test failure in job https://hydra.nixos.org/build/212819440 at 2023-03-26 - - pool-conduit - - pop3-client - - popkey # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964862 at 2023-08-16 - - poppler - - porpoise - - portager - - porte - - PortFusion - - posable # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948222 at 2023-08-16 - - posit - - positron - - posix-acl - - posix-api # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230954850 at 2023-08-16 - - posix-realtime - - posix-waitpid - - posplyu # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957556 at 2023-08-16 - - postcodes - - postgres-embedded - - PostgreSQL - - postgresql-common - - postgresql-config # failure building library in job https://hydra.nixos.org/build/230957015 at 2023-08-16 - - postgresql-cube - - postgresql-lo-stream - - postgresql-ltree - - postgresql-named - - postgresql-orm - - postgresql-query - - postgresql-replicant - - postgresql-resilient - - postgresql-simple-bind - - postgresql-simple-migration - - postgresql-simple-named - - postgresql-simple-sop - - postgresql-tx-monad-logger - - postgresql-tx-simple - - postgresql-typed-lifted - - postgres-tmp - - postgrest-ws - - postgres-websockets - - postie - - postmark-streams - - postmaster - - potato-tool - - potoki-core - - powerdns - - powermate - - powerpc - - powerqueue-levelmem - - pprecord - - PPrinter - - pqc - - praglude - - prairie - - preamble - - precis - - precursor - - predicate-class - - predicate-typed - - prednote - - pregame - - preliminaries - - Prelude - - prelude-generalize - - prelude-plus - - preprocess-haskell - - preprocessor - - preql - - presburger - - present - - press - - pretty-compact - - pretty-ghci - - pretty-loc # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230953975 at 2023-08-16 - - pretty-ncols - - prettyprinter-vty - - prim - - primal - - prim-array - - prime - - primes-type - - prim-instances - - PrimitiveArray - - PrimitiveArray-Pretty - - primitive-atomic - - primitive-checked # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957933 at 2023-08-16 - - primitive-convenience - - primitive-foreign - - primitive-indexed - - primitive-maybe - - primitive-primvar # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951857 at 2023-08-16 - - primitive-simd - - primitive-slice # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949991 at 2023-08-16 - - primitive-sort - - primitive-stablename - - prim-ref - - pringletons - - printcess - - print-debugger - - print-info - - prints - - PriorityChansConverger - - priority-queue - - pro-abstract # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968325 at 2023-08-16 - - probable - - prob-fx - - Probnet - - process-conduit - - processing - - process-leksah - - process-listlike - - processmemory - - process-sequential - - procrastinating-variable - - procstat - - product-isomorphic - - prof2pretty - - prof-flamegraph - - profiteur # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962019 at 2023-08-16 - - profunctor-monad - - progression - - progressive - - progress-meter - - progress-reporting - - proj4-hs-bindings - - project-forge - - projectile - - project-m36 - - prolens - - prolog - - prometheus-effect - - prometheus # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959996 at 2023-08-16 - - prometheus-proc - - promise - - pronounce - - proof-combinators - - PropaFP - - Proper - - properties - - property-list - - prop-unit # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950936 at 2023-08-16 - - proquint # failure in job https://hydra.nixos.org/build/215308028 at 2023-04-11 - - prosidy - - pro-source # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963769 at 2023-08-16 - - prosper - - proteaaudio # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950003 at 2023-08-16 - - protocol - - protocol-buffers - - protocol-buffers-fork - - proto-lens-arbitrary # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230953387 at 2023-08-16 - - proto-lens-combinators - - protolude-lifted - - proton-haskell - - prototype - - prove-everywhere-server - - provenience - - proxy-kindness - - proxy-mapping - - prune-juice - - psc-ide - - pseudo-trie - - psi - - pstemmer # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955354 at 2023-08-16 - - psx - - PTQ - - pub - - publicsuffix - - publicsuffixlistcreate - - publish - - pubnub - - pugixml - - pugs-DrIFT - - pugs-HsSyck - - PUH-Project - - Pup-Events-Server - - pure-io - - pure-priority-queue - - purescript-ast - - purescript-cst - - purescript-tsd-gen - - pure-zlib - - purview # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961366 at 2023-08-16 - - pushbullet - - pushbullet-types - - pusher-haskell - - pusher-ws - - pushme - - push-notifications - - putlenses - - puzzle-draw - - pvector # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952685 at 2023-08-16 - - pyffi - - pyfi - - python-pickle - - q4c12-twofinger - - qc-oi-testgenerator - - qd - - qed - - qhull-simple - - qif - - QIO - - QLearn - - qlinear - - qrcode - - qr-imager - - qsem - - qt - - QuadEdge - - QuadTree - - qualified-imports-plugin - - quandl-api - - quantification - - quantum-arrow - - quarantimer - - qudb # failure building executable 'qudb' in job https://hydra.nixos.org/build/211250260 at 2023-03-13 - - quenya-verb - - querystring-pickle - - questioner - - quibble-core - - quic # failure building library in job https://hydra.nixos.org/build/230948542 at 2023-08-16 - - QuickAnnotate - - quickbooks - - quickcheck-arbitrary-template - - quickcheck-combinators # failure building library in job https://hydra.nixos.org/build/230952645 at 2023-08-16 - - quickcheck-dynamic # failure building library in job https://hydra.nixos.org/build/230963873 at 2023-08-16 - - quickcheck-groups - - quickcheck-lockstep # dependency missing in job https://hydra.nixos.org/build/210845914 at 2023-02-28 - - quickcheck-monoid-subclasses - - quickcheck-property-comb - - quickcheck-property-monad - - quickcheck-rematch - - quickcheck-report - - QuickCheckVariant - - quickcheck-webdriver - - quickjs-hs - - QuickPlot - - quickpull - - quick-schema - - quickset - - quickson - - Quickson - - quickspec - - quickwebapp - - quipper-core - - quiver - - quokka - - quoridor-hs - - RabbitMQ - - rad - - radian - - radium - - radium-formula-parser - - radix - - radix-tree - - rados-haskell - - raft - - rakhana - - rakuten - - ralist - - raml - - rando - - random-access-list - - random-cycle # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957192 at 2023-08-16 - - random-derive - - RandomDotOrg - - random-eff - - Randometer - - random-source - - random-stream - - random-string - - rand-vars - - Range - - rangemin - - rangeset - - rank1dynamic - - rank-product - - rapid # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958426 at 2023-08-16 - - rapid-term - - Rasenschach - - rating-chgk-info - - rational-list - - rattle - - rattletrap - - raven-haskell-scotty - - raylib-imgui - - raz - - rbst - - rclient - - rdf4h # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965619 at 2023-08-16 - - react-flux - - react-haskell - - reaction-logic - - reactive-bacon - - reactive-banana-automation - - reactive-banana-bunch - - reactive-banana-gi-gtk - - reactive-banana-sdl2 - - reactive-banana-threepenny - - reactive-thread - - react-tutorial-haskell-server - - readability - - read-bounded - - read-ctags - - reader-soup - - read-io - - readline-statevar - - readme-lhs - - readshp - - really-simple-xml-parser - - reanimate-svg - - reasonable-lens - - reason-export - - record - - record-encode - - records - - records-sop - - record-wrangler - - recover-rtti - - rec-smallarray # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971840 at 2023-08-16 - - recursors - - red-black-record - - redis-glob - - redis-hs - - redis-simple - - Redmine - - reedsolomon - - reenact - - ref - - Ref - - refcount - - Referees - - references - - ref-extras - - refined-http-api-data - - refined-with - - reflection-extras - - reflex-backend-socket - - reflex-basic-host - - reflex-dom-ace - - reflex-dom-contrib - - reflex-dom-fragment-shader-canvas - - reflex-dom-helpers - - reflex-dom-pandoc # failure building library in job https://hydra.nixos.org/build/230953122 at 2023-08-16 - - reflex-dom-retractable - - reflex-dom-svg - - reflex-external-ref - - reflex-fsnotify - - reflex-gi-gtk - - reflex-gloss - - reflex-jsx - - reflex-libtelnet - - reflex-orphans - - reflex-sdl2 - - reflex-test-host - - reflex-transformers - - reflex-vty - - ref-mtl - - reformat - - reform-hamlet # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965992 at 2023-08-16 - - reform-hsp # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957580 at 2023-08-16 - - reform-lucid # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968858 at 2023-08-16 - - refresht - - refty - - refurb - - reg-alloc - - regex-dfa - - regexdot - - regex-generator - - regex-parsec - - regex-posix-unittest - - regexpr-symbolic - - regexqq - - regex-tdfa-pipes - - regex-tdfa-quasiquoter - - regex-tdfa-rc - - regex-tdfa-text - - regex-tdfa-unittest - - regex-tdfa-utf8 - - regex-tre - - regex-type - - regions - - register-machine-typelevel - - registry - - regress - - regular - - rehoo - - rei - - reified-records - - reify - - relacion - - relation - - releaser # failure building library in job https://hydra.nixos.org/build/230963399 at 2023-08-16 - - relevant-time - - reload - - remark - - remarks - - remote - - remote-debugger - - remote-monad - - reorderable - - reorder-expression # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952702 at 2023-08-16 - - repa-bytestring - - repa-devil - - repa-eval - - repa-examples - - repa # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959980 at 2023-08-16 - - repa-linear-algebra - - repa-scalar - - repa-series - - repl - - RepLib - - replica - - ReplicateEffects - - repl-toolkit - - repo-based-blog - - representable-functors - - reprinter # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970043 at 2023-08-16 - - reproject - - req-conduit - - request - - request-monad - - require - - req-url-extra - - rescue - - reservoir - - resolve - - resolve-trivial-conflicts - - resource-effect - - resource-embed - - resource-pool-monad # failure building library in job https://hydra.nixos.org/build/230949096 at 2023-08-16 - - resourcet-pool # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950524 at 2023-08-16 - - respond - - restartable - - restyle - - resumable-exceptions - - rethinkdb - - rethinkdb-client-driver - - retryer - - reverse-geocoding - - reverse-list - - reversi - - ReviewBoard - - rewrite-inspector - - rfc - - rfc-prelude - - r-glpk-phonetic-languages-ukrainian-durations - - rhbzquery - - rhine - - riak - - riak-protobuf-lens - - ribbit - - rib-core - - RichConditional - - ridley - - riemann - - riff - - rigel-viz - - ring-buffer - - ring-buffers - - riscv-isa - - rison - - Ritt-Wu - - rivers - - rivet-migration - - rivet-simple-deploy - - RJson - - Rlang-QQ - - rle # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950686 at 2023-08-16 - - rlglue - - RLP - - rl-satton - - robin - - robots-txt - - roc-cluster - - roc-id - - roguestar - - roku-api - - rollbar-client - - rollbar-hs - - roller - - roman-numerals - - ron - - rope - - rosebud - - rose-trees - - rosmsg - - rospkg # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/231689673 at 2023-08-16 - - rosso - - rotating-log - - rounded - - rounding - - roundtrip-aeson - - rowrecord - - R-pandoc - - rpc-framework - - rpm - - rpmbuild-order - - rpmostree-update # failure building executable 'rpmostree-update' in job https://hydra.nixos.org/build/230963857 at 2023-08-16 - - rrule - - rspp - - rss2irc - - rstream - - RtMidi - - rtnetlink - - rtorrent-rpc - - rtorrent-state - - rts-loader - - rubberband # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972230 at 2023-08-16 - - ruby-marshal - - ruby-qq - - ruff - - ruin - - runhs - - runmany - - runtime-instances - - rustls - - rws - - RxHaskell - - rzk # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/217574605 at 2023-04-29 - - rz-pipe - - SableCC2Hs - - safe-buffer-monad - - safe-coerce - - safe-coloured-text-gen # test failure in job https://hydra.nixos.org/build/225565471 at 2023-06-28 - - safe-coloured-text-layout # test failure in job https://hydra.nixos.org/build/225562935 at 2023-06-28 - - safecopy-migrate - - safecopy-store - - safe-freeze - - safe-globals - - safeint - - safeio - - safe-lazy-io - - safe-length - - safe-money-xmlbf - - safepath - - safe-printf - - saferoute - - safe-tensor - - safe-wild-cards - - sajson - - sakuraio-platform - - salak - - Salsa - - salvia-protocol - - sandlib - - sandman - - sarasvati - - sasha # dependency missing in job https://hydra.nixos.org/build/211237944 at 2023-03-13 - - sat - - satchmo-backends - - satchmo-minisat - - saturn # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961398 at 2023-08-16 - - Saturnin - - satyros - - savage - - sax - - sbv - - sc2-proto - - scale - - scaleimage - - scalendar - - s-cargot-letbind - - scat # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970581 at 2023-08-16 - - scc - - schedevr - - schedule-planner - - schedyield - - schemas - - scholdoc-types - - scidb-hquery - - sci-ratio - - scons2dot - - scottish - - scotty-binding-play - - scotty-blaze - - scotty-format - - scotty-params-parser - - scotty-resource - - scotty-rest - - scotty-session - - scotty-tls - - scotty-view - - scrapbook-core - - scrape-changes - - ScratchFs - - script-monad - - scrobble - - scroll-list - - scrz - - scythe - - scyther-proof - - sde-solver - - sdl2-cairo-image - - sdl2-compositor - - sdl2-fps - - sdl2-gfx # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947327 at 2023-08-16 - - sdl2-image # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965350 at 2023-08-16 - - sdl2-mixer # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969457 at 2023-08-16 - - sdl2-ttf # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963820 at 2023-08-16 - - sdp - - sdr - - seacat - - seakale - - sec - - secdh - - seclib - - second-transfer - - secp256k1 - - secp256k1-legacy - - secret-santa - - SecureHash-SHA3 - - secure-memory - - secure-sockets - - secureUDP - - SegmentTree - - selda # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970840 at 2023-08-16 - - selda-postgresql - - selectors - - selenium - - selinux - - Semantique - - semaphore-compat # dependency missing in job https://hydra.nixos.org/build/214509429 at 2023-04-07 - - semdoc - - semialign-extras - - semialign-indexed # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950953 at 2023-08-16 - - semialign-optics # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950916 at 2023-08-16 - - semibounded-lattices - - Semigroup - - semigroupoids-syntax - - semigroups-actions - - semilattices - - sendgrid-haskell - - sendgrid-v3 - - sensu-run - - sentry - - seonbi - - separated - - SeqAlign - - sequent-core - - sequential-index - - serf # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970238 at 2023-08-16 - - serialize-instances - - serialport # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962754 at 2023-08-16 - - serokell-util - - servant-aeson-specs - - servant-auth-cookie - - servant-auth-hmac - - servant-auth-server # failure building test suite 'spec' in job https://hydra.nixos.org/build/230968407 at 2023-08-16 - - servant-avro - - servant-benchmark - - servant-client-js - - servant-combinators # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950496 at 2023-08-16 - - servant-db - - servant-dhall - - servant-docs-simple - - servant-elm - - servant-errors - - servant-event-stream - - servant-foreign # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967834 at 2023-08-16 - - servant-gdp - - servant-generate - - servant-generic - - servant-github - - servant-github-webhook - - servant-hmac-auth - - servant-htmx - - servant-http2-client - - servant-http-streams # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956465 at 2023-08-16 - - servant-iCalendar - - servant-jquery - - servant-JuicyPixels # failure building library in job https://hydra.nixos.org/build/230963492 at 2023-08-16 - - servant-kotlin - - servant-mock - - servant-namedargs - - servant-nix - - servant-pandoc - - servant-pool - - servant-proto-lens - - servant-purescript - - servant-py - - servant-quickcheck - - servant-reflex - - servant-router - - servant-scotty - - servant-seo - - servant-serf - - servant-smsc-ru - - servant-stache - - servant-static-th - - servant-streaming - - servant-streamly - - servant-tracing - - servant-typed-error - - servant-wasm - - servant-xml - - servant-yaml - - servant-zeppelin - - server-generic - - serversession-backend-acid-state - - serversession-backend-persistent - - services - - serviette - - ses-html-snaplet - - SessionLogger - - sessions - - sessiontypes - - setgame - - set-of - - setoid - - setters - - set-with - - sexp - - sexpr-parser # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967001 at 2023-08-16 - - sext - - SFML - - sfml-audio - - sfmt - - SG - - sgd - - SGplus - - sh2md - - shade - - shadower - - shake-cabal-build - - shake-dhall - - shake-extras - - shake-minify - - shake-path - - shake-persist - - shakespeare-babel - - shakespeare-sass - - shared-buffer - - shared-fields - - sha-streams - - she - - Shellac - - shellish - - shellmate - - shellmet # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972264 at 2023-08-16 - - shell-pipe - - shikensu # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951632 at 2023-08-16 - - shimmer - - shine-examples - - shivers-cfg - - shoap - - shopify - - shortbytestring - - shortcut-links - - shorten-strings - - short-vec - - show-prettyprint - - show-type # failure building library in job https://hydra.nixos.org/build/230946625 at 2023-08-16 - - Shpadoinkle-console - - Shpadoinkle-debug - - Shpadoinkle-isreal - - shwifty - - sifflet - - sifflet-lib - - sigmacord # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948674 at 2023-08-16 - - signable - - signable-haskell-protoc - - signed-multiset - - significant-figures # test failure in job https://hydra.nixos.org/build/225555677 at 2023-06-28 - - simd - - simfin - - simple-actors - - simpleargs - - simple-atom - - simple-bluetooth - - simple-conduit - - simple-config - - simpleconfig - - simple-css - - simple-download - - simple-effects # failure building library in job https://hydra.nixos.org/build/230951952 at 2023-08-16 - - simple-eval - - simple-form - - simple-genetic-algorithm - - SimpleH - - simple-index - - simpleirc - - simple-log - - simple-logging - - simple-media-timestamp-formatting # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946985 at 2023-08-16 - - simple-money - - simple-neural-networks - - simplenote - - simple-parser # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951616 at 2023-08-16 - - simple-pipe - - simpleprelude - - simple-rope - - simple-server - - simplesmtpclient - - simple-sql-parser - - simple-stacked-vm - - simplest-sqlite - - simple-tabular - - simple-tar - - simple-templates - - simple-ui - - simple-units - - simplexmq - - simple-zipper - - simplistic-generics - - singlethongs - - singleton-dict - - singleton-typelits - - single-tuple - - singnal - - singular-factory - - sink - - sint # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966755 at 2023-08-16 - - siphash - - sitepipe - - sixfiguregroup - - sized-grid - - sized-types - - sized-vector - - sizes - - sjsp - - SJW - - skeletal-set - - skell - - skemmtun - - skews - - skulk - - skylighting-extensions - - skylighting-lucid - - skype4hs - - slack - - slack-api - - slack-notify-haskell - - slack-verify - - sliceofpy - - slidemews - - Slides - - slim - - sloane - - sloth - - slot-lambda - - slug - - slugger - - slugify - - smallarray - - small-bytearray-builder - - smallcaps - - smallcheck-kind-generics - - smallcheck-series - - smallpt-hs - - smap - - smartcheck - - smartconstructor - - smartGroup - - smash - - smawk # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963766 at 2023-08-16 - - sme - - smerdyakov - - smiles - - smith # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967626 at 2023-08-16 - - SmithNormalForm # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970411 at 2023-08-16 - - smoothie - - smsaero - - smt-lib - - SmtLib - - smtlib2 - - smtlib-backends - - SMTPClient - - smtp-mail-ng - - smtps-gmail - - smuggler - - smuggler2 - - snack - - snake - - snake-game - - snap-accept - - snap-auth-cli - - snap-blaze-clay - - snap-configuration-utilities - - snap-error-collector - - snap-language - - snaplet-acid-state - - snaplet-amqp - - snaplet-auth-acid - - snaplet-coffee - - snaplet-css-min - - snaplet-environments - - snaplet-hslogger - - snaplet-influxdb - - snaplet-mandrill - - snaplet-mongodb-minimalistic - - snaplet-mysql-simple - - snaplet-postgresql-simple - - snaplet-purescript # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971794 at 2023-08-16 - - snaplet-recaptcha - - snaplet-redis - - snaplet-sass - - snaplet-scoped-session - - snaplet-ses-html - - snaplet-sqlite-simple-jwt-auth - - snaplet-typed-sessions - - snap-loader-dynamic - - snap-predicates - - snappy-conduit - - snappy-iteratee - - snap-routes - - snap-stream - - snap-testing - - snap-utils - - snap-web-routes - - SNet - - snipcheck - - snorkels - - snowchecked - - snowtify - - socket-activation - - socketed - - socketio - - sockets - - sockets-and-pipes - - socket-sctp - - socket-unix - - sodium - - soegtk - - softfloat-hs - - solar - - solga - - som # test failure in job https://hydra.nixos.org/build/216744749 at 2023-04-20 - - Sonnex - - sorted - - sorting - - sorty - - souffle-haskell - - source-constraints - - sousit - - soyuz - - SpaceInvaders # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963310 at 2023-08-16 - - spacepart - - spade # dependency missing in job https://hydra.nixos.org/build/225563353 at 2023-06-28 - - spake2 - - spanout - - spars - - sparse - - sparsecheck - - sparse-lin-alg - - sparse-linear-algebra # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966041 at 2023-08-16 - - sparse-merkle-trees # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948641 at 2023-08-16 - - sparse-tensor - - special-functors - - special-keys - - spectacle - - speculation - - sphinx - - sphinxesc - - Spintax # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964258 at 2023-08-16 - - spiros - - spir-v - - splay - - splaytree - - splint - - split-morphism - - splitter - - Spock-api-ghcjs - - Spock-auth - - spoonutil - - spotify # test failure in job https://hydra.nixos.org/build/230953177 at 2023-08-16 - - spoty - - Sprig - - spritz - - spsa - - spy - - sqids # test failure in job https://hydra.nixos.org/build/230970531 at 2023-08-16 - - sqlcipher - - sqlite - - sqlite-easy - - sqlite-simple-errors - - sql-simple - - sqlvalue-list - - srcinst - - srt-attoparsec # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966533 at 2023-08-16 - - srt-dhall - - sscan - - ssh - - ssh-tunnel - - SSTG - - st2 # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965507 at 2023-08-16 - - stable-heap - - stable-maps - - stable-marriage - - stable-memo - - stack2cabal - - stack2nix - - stackage-cli - - stackage-metadata - - stackage-to-hackage - - stackage-types - - stack-bump - - stackcollapse-ghc - - stack-fix - - stack-lib - - stack-prism - - stack-run - - stack-type - - stack-wrapper - - staged-gg - - standalone-derive-topdown - - standalone-haddock - - starling - - starter # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947332 at 2023-08-16 - - stash - - Stasis - - state - - state-bag - - state-plus - - state-record - - static - - static-canvas - - static-ls # failure in job https://hydra.nixos.org/build/221848657 at 2023-05-30 - - static-tensor - - statistics-dirichlet - - statistics-fusion - - statistics-hypergeometric-genvar - - statistics-skinny # failure in job https://hydra.nixos.org/build/225576019 at 2023-06-28 - - stats - - statsd - - statvfs - - staversion - - stb-image-redux - - stc-lang - - stdata - - stdf - - stdio - - steambrowser - - stego-uuid - - stemmer - - stemmer-german - - stepwise - - stgi - - STL - - stm-chunked-queues - - stm-firehose - - stm-incremental - - stm-promise - - stm-queue - - stm-stats - - stochastic - - Stomp - - stooq-api - - storable - - storable-offset # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956457 at 2023-08-16 - - storable-static-array - - stp - - str - - Strafunski-ATermLib - - Strafunski-StrategyLib - - StrappedTemplates - - StrategyLib - - stratux-types - - stream - - streamdeck - - streamed # dependency missing in job https://hydra.nixos.org/build/217576821 at 2023-04-29 - - stream-fusion - - streaming-benchmarks - - streaming-brotli - - streaming-cassava - - streaming-concurrency - - streaming-conduit - - streaming-events - - streaming-lzma - - streaming-osm - - streaming-pcap - - streaming-png - - streaming-postgresql-simple - - streaming-sort - - streaming-with # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956271 at 2023-08-16 - - streamly-binary - - streamly-cassava - - streamly-examples - - streamly-fsnotify # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946720 at 2023-08-16 - - streamly-lz4 - - streamly-posix # failure building library in job https://hydra.nixos.org/build/230968738 at 2023-08-16 - - streamly-process - - stream-monad - - streamproc - - strelka-core - - StrictBench - - StrictCheck - - strict-containers - - strict-ghc-plugin - - strictly - - strict-tuple-lens - - string-class # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948470 at 2023-08-16 - - string-conv-tests - - string-fromto - - string-isos - - stringlike - - string-quote - - strings - - stringtable-atom - - stripe - - stripe-core - - stripe-hs - - strong-path - - structural-traversal - - structured-haskell-mode - - structures - - stt - - stunclient - - stylish-cabal - - stylist # failure building test suite 'test-stylist' in job https://hydra.nixos.org/build/230952543 at 2023-08-16 - - stylized - - subG-instances - - subleq-toolchain - - submark - - subsample - - sub-state - - subwordgraph - - suffix-array - - suffixarray - - SuffixStructures - - sugar - - sugarhaskell - - suitable - - summer - - summoner - - sump - - sum-type-boilerplate - - sunlight - - sunroof-compiler - - superbubbles - - superevent - - supermonad - - supero - - superrecord - - super-user-spark - - supervisor - - supervisors - - supplemented - - surjective - - sv2v - - sv-core - - SVD2HS - - svfactor - - svg-builder-fork - - svg-icons - - SvgIcons - - svgsym - - svgutils - - svm-light-utils - - svm-simple - - svndump - - swagger - - swagger-petstore - - swagger-test - - swearjure - - swf - - swift-lda - - swiss - - swiss-ephemeris - - sws - - syb-extras - - syb-with-class # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970380 at 2023-08-16 - - syb-with-class-instances-text - - sydtest-hedis # test failure in job https://hydra.nixos.org/build/225562212 at 2023-06-28 - - sydtest-hspec # failure building library in job https://hydra.nixos.org/build/230968205 at 2023-08-16 - - sydtest-mongo # failure in job https://hydra.nixos.org/build/225574398 at 2023-06-28 - - sydtest-persistent-postgresql # test failure in job https://hydra.nixos.org/build/225560820 at 2023-06-28 - - sydtest-persistent-sqlite # test failure in job https://hydra.nixos.org/build/225566898 at 2023-06-28 - - sydtest-rabbitmq # test failure in job https://hydra.nixos.org/build/225569272 at 2023-06-28 - - sydtest-webdriver # test failure in job https://hydra.nixos.org/build/225552802 at 2023-06-28 - - syfco - - symantic - - symantic-cli - - symantic-http-client - - symantic-parser - - symantic-xml - - symbolic-link - - symengine - - symengine-hs - - sync - - sync-mht - - syntactic # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958352 at 2023-08-16 - - syntax-trees - - syntax-trees-fork-bairyn - - synthesizer # dependency missing in job https://hydra.nixos.org/build/217577245 at 2023-04-29 - - Sysmon - - system-canonicalpath - - system-command - - system-extra - - system-inotify - - system-lifted - - system-linux-proc - - system-locale - - system-random-effect - - system-test - - t3-server - - table - - tables - - Tables - - tablestorage - - table-tennis - - Tablify - - tabloid - - tabs - - tag-bits - - tagged-exception-core - - tagged-timers - - taggy-lens - - taglib-api - - tagsoup-ht - - tagsoup-megaparsec - - tagsoup-parsec - - tagsoup-selection - - tagtree # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961266 at 2023-08-16 - - tai - - tai64 - - tailwind # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/231536572 at 2023-08-16 - - tak - - takahashi - - Takusen - - takusen-oracle - - tamarin-prover-utils - - Tape - - tapioca - - TaskMonad - - tasty-auto - - tasty-autocollect - - tasty-fail-fast - - tasty-grading-system - - tasty-hedgehog-coverage - - tasty-json - - tasty-mgolden - - tasty-papi # test failure in job https://hydra.nixos.org/build/216756583 at 2023-04-20 - - tasty-stats - - tasty-test-reporter # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958587 at 2023-08-16 - - tasty-test-vector - - TastyTLT - - TBC - - TBit - - TCache - - tcod-haskell - - tcp - - tcp-streams-openssl - - tdd-util - - tdigest-Chart - - tdoc - - tds - - teams - - technique - - teeth - - tehepero - - telega - - telegram - - telegram-api - - telegram-types - - telegraph - - teleport - - teleshell - - tellbot - - template-default - - template # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971653 at 2023-08-16 - - template-haskell-optics # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946806 at 2023-08-16 - - template-haskell-util - - template-hsml - - templateify - - templatepg - - template-toolkit - - template-yj - - tempodb - - tempus - - ten - - tensor - - tensor-safe - - termbox-bindings - - termination-combinators - - termplot - - terntup - - tersmu - - tesla - - testCom - - testcontainers - - TestExplode # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964283 at 2023-08-16 - - test-fixture - - test-framework-doctest - - test-framework-quickcheck - - test-framework-skip - - test-framework-testing-feat - - test-framework-th-prime - - test-lib - - testloop - - testpack - - testpattern - - test-pkg - - testPkg - - testrunner - - test-shouldbe - - tex2txt - - texbuilder - - tex-join-bib # failure building library in job https://hydra.nixos.org/build/230946498 at 2023-08-16 - - text1 - - text-all - - text-and-plots - - text-ascii - - text-builder-linear - - text-compression # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952349 at 2023-08-16 - - text-containers - - text-display - - text-format-heavy - - text-generic-pretty - - text-icu-normalized - - text-icu-translit - - text-lens - - text-markup - - text-normal - - textocat-api - - text-offset - - text-position - - text-register-machine - - text-stream-decode # failure building library in job https://hydra.nixos.org/build/230960721 at 2023-08-16 - - text-trie - - textual - - text-utf7 - - text-utf8 - - text-xml-qq - - text-zipper-monad - - tfp-th - - tftp - - tga - - thank-you-stars - - th-build - - th-dict-discovery - - THEff - - themoviedb # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961888 at 2023-08-16 - - thentos-cookie-session - - Theora - - theoremquest - - th-fold - - th-format - - thih - - Thingie - - th-inline-io-action - - th-instance-reification - - th-kinds - - th-kinds-fork - - thock - - thorn - - th-pprint - - threadmanager - - thread-supervisor # test failure in job https://hydra.nixos.org/build/214156434 at 2023-03-29 - - threepenny-editors - - threepenny-gui-contextmenu - - threepenny-gui-flexbox - - thrift - - Thrift - - throttled-io-loop - - throttle-io-stream - - through-text # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972325 at 2023-08-16 - - throwable-exceptions - - th-sccs - - th-tc - - th-to-exp - - th-traced - - thumbnail - - thumbnail-plus - - tianbar - - ticket-management - - TicTacToe - - tictactoe3d - - tidal-midi - - tidal-serial - - tidal-vis - - tie-knot - - tiempo - - tiger # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/225568410 at 2023-06-28 - - TigerHash - - tightrope - - tikzsd - - timecalc - - time-extras - - time-machine - - timemap - - timeout - - timeout-with-results - - timeparsers - - TimePiece - - timeplot - - time-qq - - time-quote - - time-recurrence - - time-series - - timeseries # dependency missing in job https://hydra.nixos.org/build/217565262 at 2023-04-29 - - time-series-lib - - timeutils - - time-w3c - - timezone-detect - - tinyid - - TinyLaunchbury - - tinylog - - tinyMesh - - tiny-scheduler - - tinytemplate - - TinyURL - - tinyXml - - tiphys - - titan-debug-yampa - - titan-record-yampa - - Titim - - tkhs - - tkyprof - - tls-debug # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964438 at 2023-08-16 - - TLT # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947319 at 2023-08-16 - - tmp-proc-example - - tofromxml - - to-haskell - - toilet # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965271 at 2023-08-16 - - token-bucket - - tokenify - - tokenizer - - tokenizer-streaming - - token-limiter - - token-search - - tokstyle - - tokyocabinet-haskell - - tokyotyrant-haskell - - toml - - tonalude - - tonaparser - - toodles - - Top - - topkata - - torch - - TORCS - - to-string-class - - TotalMap - - total-maps - - touched - - Tournament - - toxiproxy-haskell - - tptp - - trace - - trace-call - - traced - - trace-function-call - - tracetree - - tracked-files - - tracker - - trackit - - traction - - tracy - - traildb - - transactional-events - - TransformeR - - transformers-bifunctors - - transformers-compose - - transformers-lift - - transformers-runnable - - TransformersStepByStep - - trans-fx-core - - transient - - translatable-intset - - translate - - traverse-code # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968928 at 2023-08-16 - - travis - - travis-meta-yaml - - trawl - - traypoweroff - - treap - - treemap - - treemap-html - - tree-monad - - tree-render-text - - TreeStructures - - tree-traversals - - t-regex - - tremulous-query - - TrendGraph - - trhsx - - trial-tomland - - tries - - trigger - - trim - - tripLL - - trivia - - tropical - - tropical-geometry - - trust-chain # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956012 at 2023-08-16 - - tsession - - tslib - - tsparse - - tsp-viz - - tsuntsun - - tsvsql - - ttask - - ttl-hashtables - - ttn-client - - tttool - - tubes - - tuntap - - tuple-append - - tuple-gen - - tuple-hlist - - tupleinstances - - tuple-lenses - - tuple-morph - - turing-machines - - turing-music - - turtle-options - - twain # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972118 at 2023-08-16 - - tweak - - twentefp-websockets - - twfy-api-client - - twhs - - twilio - - twiml - - twine - - twirl # dependency missing in job https://hydra.nixos.org/build/217564808 at 2023-04-29 - - twirp - - twisty - - twitchapi - - twitch # failure building test suite 'unit-tests' in job https://hydra.nixos.org/build/230961695 at 2023-08-16 - - twitter - - twitter-feed - - tx - - txtblk - - TYB - - tyfam-witnesses - - typalyze - - typeable-th - - type-combinators - - type-compare # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964481 at 2023-08-16 - - TypeCompose - - typed-digits - - typed-encoding - - typedquery - - typed-spreadsheet # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959517 at 2023-08-16 - - typed-time - - typed-wire - - type-eq - - type-errors-pretty - - typehash - - type-indexed-queues - - type-int - - type-interpreter - - typelet - - type-level-bst - - type-level-natural-number-induction - - type-level-natural-number-operations - - typelevel-rewrite-rules - - type-level-sets - - typelevel-tensor - - type-list - - typelits-witnesses - - type-of-html-static - - type-operators # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949643 at 2023-08-16 - - typeparams - - type-prelude - - typerep-map # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969193 at 2023-08-16 - - type-safe-avl - - types-compat - - type-settheory - - type-spine - - type-tree - - type-unary - - typograffiti - - typson-core - - tyro - - tztime - - uAgda - - uberlast - - ucam-webauth-types - - ucl # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952255 at 2023-08-16 - - uconv - - udbus - - udp-conduit - - udp-streaming - - ueberzug - - uhexdump - - uhttpc - - ui-command - - ukrainian-phonetics-basic-array - - ukrainian-phonetics-basic-array-bytestring - - unamb-custom - - unbeliever - - unbounded-delays-units - - unbound-kind-generics # failure building library in job https://hydra.nixos.org/build/219201570 at 2023-05-10 - - unboxed - - unboxed-containers - - unboxed-references - - unbreak - - unescaping-print - - unfix-binders - - unicode-data-names - - unicode-data-scripts - - unicode-data-security - - unicode-general-category - - unicode-prelude - - unicode-symbols - - unicode-tricks - - uniform-json # failure building test suite 'json-test' in job https://hydra.nixos.org/build/214602707 at 2023-04-07 - - union-find # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950510 at 2023-08-16 - - union-map - - unionmount # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961993 at 2023-08-16 - - uniprot-kb - - uniqueid - - uniquely-represented-sets - - uniqueness-periods-general - - uniqueness-periods-vector - - uniqueness-periods-vector-common - - units-attoparsec - - unittyped - - unitym # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958411 at 2023-08-16 - - unitym-yesod - - uni-util - - universal-binary - - universe-instances-base - - universe-instances-trans - - universe-some - - unix-handle - - unix-process-conduit - - unix-recursive - - unlift - - unlifted-list - - unliftio-messagebox - - unlift-stm - - unm-hip - - unordered-containers-rematch - - unordered-graphs - - unordered-intmap - - unpacked-either - - unpacked-maybe - - unpacked-maybe-numeric # failure building library in job https://hydra.nixos.org/build/230962818 at 2023-08-16 - - unpack-funcs - - unroll-ghc-plugin - - unsafely - - unsatisfiable - - unsequential - - unused - - uom-plugin - - Updater - - uploadcare - - upskirt - - urbit-hob # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966459 at 2023-08-16 - - uri - - uri-conduit - - uri-encoder - - uri-parse - - uri-template - - uri-templater - - URLb - - url-bytes - - urlcheck - - urldecode - - url-decoders - - urldisp-happstack - - urlencoded # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946607 at 2023-08-16 - - url-generic - - urn - - urn-random - - urxml - - useragents - - userid # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959568 at 2023-08-16 - - users-persistent - - utc - - utf8-conversions - - utf8-prelude - - utf8-validator - - util - - util-logict - - util-plus - - util-primitive - - uuagc-bootstrap - - uuagc-diagrams - - uu-cco - - uuid-aeson - - uusi - - uvector - - uxadt - - vabal-lib - - vacuum - - vado # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947987 at 2023-08-16 - - validated-types - - Validation - - validations - - validators # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966128 at 2023-08-16 - - validity-network-uri - - valid-names - - value-supply - - vampire - - var - - varan - - variable-media-field # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971903 at 2023-08-16 - - variables - - variadic - - variation - - vault-tool - - vcache - - vcatt - - vcf - - vcswrapper - - Vec-Boolean - - Vec-OpenGLRaw - - vect-floating - - vect-opengl - - vector-bytestring - - vector-circular # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951925 at 2023-08-16 - - vector-clock - - vector-conduit - - vector-doublezip - - vector-endian - - vector-fftw - - vector-functorlazy - - vector-heterogenous - - vector-quicksort # dependency missing in job https://hydra.nixos.org/build/216753081 at 2023-04-20 - - vector-random - - vector-read-instances - - vector-shuffling # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963853 at 2023-08-16 - - vector-space-map - - vector-space-opengl - - vector-space-points - - vector-static - - vega-view - - velma # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963085 at 2023-08-16 - - Verba - - verbalexpressions - - verdict - - verify - - verilog - - verset - - versioning - - vformat - - vgrep - - vhd - - vhdl - - vicinity - - viewprof - - views - - Villefort - - vimus - - vintage-basic - - vinyl-json - - vinyl-named-sugar - - vinyl-plus - - vinyl-utils - - vinyl-vectors - - virthualenv - - visibility - - visualize-cbn - - visual-prof - - vitrea - - vk-aws-route53 - - VKHS - - vowpal-utils - - voyeur - - VRML - - vte - - vtegtk3 - - vt-utils - - vty-examples - - vty-menu - - vty-ui - - wacom-daemon - - waddle - - wai-git-http - - wai-graceful - - wai-handler-devel - - wai-handler-fastcgi - - wai-handler-scgi - - wai-handler-webkit - - wai-hmac-auth - - wai-lambda - - wai-lens - - wai-lite - - wai-logger-buffered - - wai-logger-prefork - - wai-middleware-auth - - wai-middleware-catch - - wai-middleware-crowd - - wai-middleware-delegate - - wai-middleware-etag - - wai-middleware-headers - - wai-middleware-hmac-client - - wai-middleware-preprocessor - - wai-middleware-static-caching - - wai-middleware-travisci - - wai-middleware-validation - - wai-predicates - - wai-problem-details # dependency missing in job https://hydra.nixos.org/build/219206235 at 2023-05-10 - - wai-rate-limit-postgres - - wai-rate-limit-redis - - wai-request-spec - - wai-responsible - - wai-router - - wai-routes - - wai-saml2 # test failure in job https://hydra.nixos.org/build/230969677 at 2023-08-16 - - wai-secure-cookies - - wai-session-mysql - - wai-session-postgresql - - wai-session-redis - - wai-static-cache - - waitfree - - wai-throttler - - waitra - - wakame # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947444 at 2023-08-16 - - wallpaper - - warc - - warp-dynamic - - warp-static - - warp-systemd - - wasm - - watcher - - watchit - - wavefront - - wavefront-obj - - weak-bag - - WeakSets - - Weather - - weather-api - - web3-ipfs - - webapi - - webapp - - webauthn # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964346 at 2023-08-16 - - WebBits - - webby # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952008 at 2023-08-16 - - webcrank - - webcrank-dispatch - - web-css - - webdriver-angular - - webdriver-snoy - - web-encodings - - WeberLogic - - webfinger-client - - webkitgtk3 - - webkit-javascriptcore - - webmention - - web-output - - web-page - - web-plugins # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962603 at 2023-08-16 - - web-push - - Webrexp - - web-routes-quasi - - web-routes-transformers - - webshow - - webwire - - wedged - - WEditor - - weekdaze - - weighted-regexp - - welshy - - werewolf - - wgpu-raw-hs - - Wheb - - while-lang-parser - - whim - - whiskers - - whois - - why3 - - wide-word-instances # failure building library in job https://hydra.nixos.org/build/211245524 at 2023-03-13 - - wikicfp-scraper # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946581 at 2023-08-16 - - WikimediaParser - - wild-bind # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951433 at 2023-08-16 - - willow - - windns - - windowslive - - window-utils # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962777 at 2023-08-16 - - winerror - - wireguard-hs - - wires - - wiring - - witty - - wkt - - wkt-geom - - WL500gPLib - - wl-pprint-console - - wl-pprint-extras - - WMSigner - - woe - - woffex - - wol - - word24 - - word2vec-model - - word8set # failure in job https://hydra.nixos.org/build/221843616 at 2023-05-30 - - wordchoice - - wordify - - Wordlint - - wordlist # dependency missing in job https://hydra.nixos.org/build/214500004 at 2023-04-07 - - wordn - - WordNet - - WordNet-ghc74 - - wordpass - - wordsearch - - workdays - - workflow-osx - - workflow-windows - - work-time - - worldturtle - - wp-archivebot - - wreq-helper - - wreq-patchable - - wreq-sb - - writer-cps-lens - - writer-cps-monads-tf - - writer-cps-morph - - wsdl - - wsedit - - wss-client - - wtk - - wumpus-core - - wxdirect - - X - - X11-extras - - X11-rm - - X11-xdamage - - X11-xfixes - - xchat-plugin - - xcp - - x-dsp - - Xec - - xenstore - - xfconf - - xformat - - xhaskell-library - - xhb - - xilinx-lava - - xine - - xing-api - - xkbcommon - - xkcd - - xleb - - xls - - xlsior - - xlsx-tabular - - xlsx-templater - - xml2json - - xml-conduit-decode - - xml-conduit-parse - - xml-conduit-selectors - - xml-conduit-stylist # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949082 at 2023-08-16 - - xml-html-conduit-lens - - XmlHtmlWriter - - xml-parsec - - xml-prettify - - xml-prettify-text - - xml-query # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947454 at 2023-08-16 - - xml-query-xml-types - - xml-syntax - - xml-to-json - - xml-tydom-core - - xml-verify - - XMMS - - xmonad-bluetilebranch - - xmonad-contrib-gpl - - xmonad-entryhelper - - xmonad-eval - - xmonad-screenshot - - xmonad-vanessa - - xmonad-wallpaper - - xmonad-windownames - - Xorshift128Plus - - xorshift-plus - - xsact - - xsd - - xsha1 - - xslt - - xxhash - - y0l0bot - - yabi-muno - - yackage - - YACPong - - yahoo-finance-api - - yahoo-finance-conduit - - yahoo-prices - - yahoo-web-search - - yajl - - yak - - yall - - yam-app - - yam-config - - yaml-combinators - - yaml-config - - yamlkeysdiff - - yaml-light-lens - - yaml-pretty-extras - - YamlReference - - yaml-rpc - - yaml-union - - yaml-unscrambler # dependency missing in job https://hydra.nixos.org/build/212821989 at 2023-03-22 - - yampa2048 - - yampa-glfw - - yampa-gloss - - yampa-glut - - yampa-sdl2 - - YampaSynth - - yampa-test # dependency missing in job https://hydra.nixos.org/build/214864510 at 2023-04-07 - - yandex-translate - - yaop - - yapb - - yarn2nix - - yarr - - yate - - yaya-test - - yaya-unsafe-test - - yeller - - yeshql-hdbc - - yeshql-postgresql-simple - - yesod-angular - - yesod-angular-ui - - yesod-auth-account - - yesod-auth-account-fork - - yesod-auth-bcrypt - - yesod-auth-bcryptdb - - yesod-auth-deskcom - - yesod-auth-fb - - yesod-auth-hmac-keccak - - yesod-auth-kerberos - - yesod-auth-ldap-mediocre - - yesod-auth-ldap-native - - yesod-auth-nopassword - - yesod-auth-pam - - yesod-auth-smbclient - - yesod-auth-zendesk - - yesod-bootstrap - - yesod-comments - - yesod-content-pdf - - yesod-crud - - yesod-crud-persist - - yesod-csp - - yesod-datatables - - yesod-dsl - - yesod-fast-devel - - yesod-filter - - yesod-form-json - - yesod-form-richtext - - yesod-gitrev - - yesod-goodies - - yesod-ip - - yesod-job-queue - - yesod-katip - - yesod-links - - yesod-lucid - - yesod-middleware-csp - - yesod-paginate - - yesod-pagination - - yesod-pnotify - - yesod-pure - - yesod-raml - - yesod-recaptcha - - yesod-routes - - yesod-rst - - yesod-s3 - - yesod-sass - - yesod-static-angular - - yesod-static-remote - - yesod-static-streamly # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966153 at 2023-08-16 - - yesod-test-json - - yesod-text-markdown - - yesod-tls - - yesod-transloadit - - yesod-vend - - YFrob - - yggdrasil - - yhccore - - yhseq - - yices - - yi-language - - yoctoparsec - - yoda - - Yogurt - - youtube - - yst - - yu-auth - - yu-core - - yuiGrid - - yu-tool - - yxdb-utils - - z3-encoding - - z85 - - zabt - - zampolit - - zbar # failure in setupCompilerEnvironmentPhase in job https://hydra.nixos.org/build/230967764 at 2023-08-16 - - Z-Data - - ZEBEDDE - - zendesk-api - - zeno - - zeolite-lang - - zephyr - - zero - - zeromq3-haskell - - zeromq4-clone-pattern - - zeromq4-conduit - - zeromq4-patterns - - zeromq-haskell - - zettelkast - - ZFS - - zifter - - zigbee-znet25 - - zip-conduit - - zipedit - - zipkin - - ziptastic-core - - zlib-bytes # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946586 at 2023-08-16 - - zlib-lens - - ZMachine - - zmidi-score - - zmqat - - zoneinfo - - zoom - - zoom-refs - - zsdd - - zsh-battery - - zsyntax - - ztail # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962012 at 2023-08-16 - - ztar - - zuul - - Zwaluw - - zxcvbn-dvorak - - zydiskell - - zyre2 +broken-packages: [] diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml index a8b9b222eadc..d67efdc6dd1b 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml @@ -2,4662 +2,4 @@ # maintainers/scripts/haskell/regenerate-transitive-broken-packages.sh # It is supposed to list all haskellPackages that cannot evaluate because they # depend on a dependency marked as broken. -dont-distribute-packages: - - - 4Blocks - - AC-Vector-Fancy - - ADPfusion - - ADPfusionForest - - ADPfusionSet - - AERN-Net - - AERN-Real - - AERN-Real-Double - - AERN-Real-Interval - - AERN-RnToRm - - AERN-RnToRm-Plot - - ASN1 - - AbortT-monadstf - - AbortT-mtl - - Advgame - - Advise-me - - AlgoRhythm - - AlignmentAlgorithms - - Allure - - AndroidViewHierarchyImporter - - Annotations - - ApplePush - - AttoJson - - AutoForms - - AvlTree - - BASIC - - Barracuda - - BerlekampAlgorithm - - BioHMM - - Biobase - - BiobaseBlast - - BiobaseDotP - - BiobaseENA - - BiobaseEnsembl - - BiobaseFR3D - - BiobaseFasta - - BiobaseHTTP - - BiobaseHTTPTools - - BiobaseInfernal - - BiobaseMAF - - BiobaseTrainingData - - BiobaseTurner - - BiobaseTypes - - BiobaseVienna - - BiobaseXNA - - BirdPP - - Bitly - - BlastHTTP - - Blobs - - BlogLiterately-diagrams - - Bookshelf - - CBOR - - CC-delcont-alt - - CMCompare - - CPBrainfuck - - CSPM-FiringRules - - CSPM-Interpreter - - CSPM-ToProlog - - CSPM-cspm - - Capabilities - - CarneadesIntoDung - - Chart-fltkhs - - ClustalParser - - Coadjute - - Combinatorrent - - ComonadSheet - - Condor - - Configger - - Control-Monad-MultiPass - - CoreFoundation - - DMuCheck - - DOM - - DP - - DRBG - - DSA - - DSH - - DSTM - - Dangerous - - DarcsHelpers - - DeepArrow - - DefendTheKing - - DifferenceLogic - - DisTract - - DnaProteinAlignment - - DocTest - - DrHylo - - Dust - - Dust-crypto - - Dust-tools - - Dust-tools-pcap - - DysFRP-Cairo - - DysFRP-Craftwerk - - EditTimeReport - - EntrezHTTP - - EsounD - - EtaMOO - - Etage-Graph - - Eternal10Seconds - - Etherbunny - - EventSocket - - Extra - - FComp - - FM-SBLEX - - FTPLine - - FailureT - - FermatsLastMargin - - FieldTrip - - Fin - - Finance-Treasury - - FiniteMap - - FirstOrderTheory - - Flippi - - ForSyDe - - Forestry - - FormalGrammars - - Foster - - Frames - - Frames-beam - - Frames-dsv - - Frames-map-reduce - - Frames-streamly - - Frank - - GLFW-OGL - - GLFW-task - - GPX - - GPipe-Collada - - GPipe-Examples - - GPipe-GLFW - - GPipe-GLFW4 - - GPipe-TextureLoad - - GeBoP - - GenI - - GenSmsPdu - - Genbank - - Gene-CluEDO - - GenussFold - - GlomeView - - GoogleDirections - - GoogleSB - - GoogleTranslate - - GrammarProducts - - GraphHammer - - GraphHammer-examples - - Grow - - GrowlNotify - - Gtk2hsGenerics - - GtkGLTV - - GtkTV - - GuiHaskell - - GuiTV - - H - - HAppS-Data - - HAppS-IxSet - - HAppS-Server - - HAppS-State - - HGamer3D-API - - HGamer3D-Audio - - HGamer3D-Bullet-Binding - - HGamer3D-CAudio-Binding - - HGamer3D-CEGUI-Binding - - HGamer3D-Common - - HGamer3D-Enet-Binding - - HGamer3D-GUI - - HGamer3D-Graphics3D - - HGamer3D-InputSystem - - HGamer3D-Network - - HGamer3D-OIS-Binding - - HGamer3D-Ogre-Binding - - HGamer3D-SDL2-Binding - - HGamer3D-SFML-Binding - - HGamer3D-WinEvent - - HGamer3D-Wire - - HJScript - - HLearn-algebra - - HLearn-approximation - - HLearn-classification - - HLearn-datastructures - - HLearn-distributions - - HNM - - HPhone - - HPlot - - HPong - - HQu - - HROOT - - HROOT-graf - - HROOT-hist - - HROOT-io - - HROOT-math - - HROOT-net - - HROOT-tree - - HRay - - HSGEP - - HSHHelpers - - HSoundFile - - HStringTemplateHelpers - - HTab - - HXMPP - - HaRe - - HaTeX-meta - - HaTeX-qq - - HaVSA - - HaXPath - - Hach - - HarmTrace - - HasGP - - Haschoo - - Hashell - - Hate - - Hawk - - Hayoo - - Hedi - - Hieroglyph - - HiggsSet - - Hipmunk-Utils - - HipmunkPlayground - - Hoed - - Holumbus-Distribution - - Holumbus-MapReduce - - Holumbus-Searchengine - - Holumbus-Storage - - HongoDB - - Hs2lib - - HsParrot - - HsWebots - - Hsed - - Hungarian-Munkres - - Hydrogen - - INblobs - - IORefCAS - - IndexedList - - InfixApplicative - - InternedData - - JSON-Combinator - - JSON-Combinator-Examples - - Javasf - - JsContracts - - JsonGrammar - - JuPyTer-notebook - - JuicyPixels-repa - - JunkDB-driver-gdbm - - JunkDB-driver-hashtables - - KiCS - - KiCS-debugger - - KiCS-prophecy - - LDAPv3 - - LPPaver - - LambdaHack - - LambdaINet - - LambdaPrettyQuote - - LambdaShell - - Lattices - - LinearSplit - - LinkChecker - - ListT - - LogicGrowsOnTrees - - LogicGrowsOnTrees-MPI - - LogicGrowsOnTrees-network - - LogicGrowsOnTrees-processes - - LslPlus - - Lucu - - Lykah - - MC-Fold-DP - - MFlow - - MIP-glpk - - MSQueue - - MagicHaskeller - - MailchimpSimple - - Map - - MetaObject - - Metrics - - Mhailist - - Michelangelo - - MicrosoftTranslator - - MissingPy - - MonadCatchIO-mtl-foreign - - MonadLab - - Monaris - - Monatron-IO - - Mondrian - - Monocle - - MuCheck-HUnit - - MuCheck-Hspec - - MuCheck-QuickCheck - - MuCheck-SmallCheck - - MutationOrder - - NGLess - - NTRU - - NaperianNetCDF - - NaturalLanguageAlphabets - - NearContextAlgebra - - Ninjas - - NoSlow - - Nomyx - - Nomyx-Core - - Nomyx-Language - - Nomyx-Rules - - Nomyx-Web - - NonEmptyList - - Nussinov78 - - OnRmt - - OpenAFP-Utils - - OpenGLCheck - - OpenSCAD - - OpenVG - - PCLT-DB - - PageIO - - Paillier - - Paraiso - - Parallel-Arrows-BaseSpec - - Parallel-Arrows-Eden - - Parallel-Arrows-Multicore - - Parallel-Arrows-ParMonad - - PermuteEffects - - Plot-ho-matic - - PlslTools - - Printf-TH - - ProbabilityMonads - - Pugs - - Pup-Events - - Pup-Events-Demo - - Quelea - - RESTng - - RMP - - RNAFold - - RNAFoldProgs - - RNAdesign - - RNAdraw - - RNAlien - - RNAwolf - - Raincat - - Ranka - - ReplaceUmlaut - - RollingDirectory - - S3 - - SBench - - SCRIPTWriter - - SCalendar - - SFML-control - - SFont - - SGdemo - - STLinkUSB - - STM32-Zombie - - SVG2Q - - SciFlow - - SciFlow-drmaa - - Scurry - - SelectSequencesFromMSA - - Set - - Shellac-compatline - - Shellac-editline - - Shellac-haskeline - - Shellac-readline - - ShortestPathProblems - - Shpadoinkle - - Shpadoinkle-backend-pardiff - - Shpadoinkle-backend-snabbdom - - Shpadoinkle-backend-static - - Shpadoinkle-developer-tools - - Shpadoinkle-disembodied - - Shpadoinkle-examples - - Shpadoinkle-html - - Shpadoinkle-lens - - Shpadoinkle-router - - Shpadoinkle-streaming - - Shpadoinkle-template - - Shpadoinkle-widgets - - SimpleGL - - SimpleLog - - SimpleServer - - Smooth - - Snusmumrik - - SoOSiM - - SoccerFun - - SoccerFunGL - - SourceGraph - - SpacePrivateers - - SpinCounter - - StockholmAlignment - - Strafunski-Sdf2Haskell - - SybWidget - - SyntaxMacros - - TV - - Taxonomy - - TaxonomyTools - - TeX-my-math - - TeaHS - - TreeCounter - - Treiber - - TrieMap - - TypeClass - - TypeIlluminator - - UMM - - URLT - - UTFTConverter - - UrlDisp - - ViennaRNA-extras - - WEditorBrick - - WEditorHyphen - - WL500gPControl - - WURFL - - WXDiffCtrl - - WashNGo - - WaveFront - - WebBits-Html - - WebBits-multiplate - - WebCont - - Wired - - WordAlignment - - Workflow - - WxGeneric - - XML - - XMPP - - XSaiga - - Yablog - - Yogurt-Standalone - - Z-Botan - - Z-IO - - Z-MessagePack - - Z-YAML - - ZipFold - - a50 - - abcBridge - - abstract-par-accelerate - - ac-machine-conduit - - accelerate-arithmetic - - accelerate-fftw - - accelerate-fourier - - accelerate-io - - accelerate-io-JuicyPixels - - accelerate-io-array - - accelerate-io-bmp - - accelerate-io-bytestring - - accelerate-io-cereal - - accelerate-io-repa - - accelerate-io-serialise - - accelerate-io-vector - - accelerate-llvm - - accelerate-llvm-native - - accelerate-random - - accelerate-typelits - - accelerate-utility - - access-token-provider - - acme-php - - acme-safe - - activehs - - actor - - acts - - adhoc-network - - adict - - adp-multi-monadiccp - - aeson-extra_0_5_1_3 - - aeson-native - - aeson-pretty_0_8_10 - - affine - - afv - - agda-server - - agda-snippets-hakyll - - agentx - - aip - - aivika-distributed - - alg - - algebra-checkers - - algebra-driven-design - - algebra-sql - - algebraic - - algolia - - algorithmic-composition-basic - - algorithmic-composition-frequency-shift - - algorithmic-composition-overtones - - alms - - alpha - - alsa-gui - - alsa-pcm-tests - - alsa-seq-tests - - alto - - amazon-emailer-client-snap - - amazonka - - amazonka-accessanalyzer - - amazonka-account - - amazonka-alexa-business - - amazonka-amp - - amazonka-amplify - - amazonka-amplifybackend - - amazonka-amplifyuibuilder - - amazonka-apigateway - - amazonka-apigatewaymanagementapi - - amazonka-apigatewayv2 - - amazonka-appconfig - - amazonka-appconfigdata - - amazonka-appflow - - amazonka-appintegrations - - amazonka-application-autoscaling - - amazonka-application-insights - - amazonka-applicationcostprofiler - - amazonka-appmesh - - amazonka-apprunner - - amazonka-appstream - - amazonka-appsync - - amazonka-arc-zonal-shift - - amazonka-athena - - amazonka-auditmanager - - amazonka-autoscaling - - amazonka-autoscaling-plans - - amazonka-backup - - amazonka-backup-gateway - - amazonka-backupstorage - - amazonka-batch - - amazonka-billingconductor - - amazonka-braket - - amazonka-budgets - - amazonka-certificatemanager - - amazonka-certificatemanager-pca - - amazonka-chime - - amazonka-chime-sdk-identity - - amazonka-chime-sdk-media-pipelines - - amazonka-chime-sdk-meetings - - amazonka-chime-sdk-messaging - - amazonka-chime-sdk-voice - - amazonka-cloud9 - - amazonka-cloudcontrol - - amazonka-clouddirectory - - amazonka-cloudformation - - amazonka-cloudfront - - amazonka-cloudhsm - - amazonka-cloudhsmv2 - - amazonka-cloudsearch - - amazonka-cloudsearch-domains - - amazonka-cloudtrail - - amazonka-cloudwatch - - amazonka-cloudwatch-events - - amazonka-cloudwatch-logs - - amazonka-codeartifact - - amazonka-codebuild - - amazonka-codecommit - - amazonka-codedeploy - - amazonka-codeguru-reviewer - - amazonka-codeguruprofiler - - amazonka-codepipeline - - amazonka-codestar - - amazonka-codestar-connections - - amazonka-codestar-notifications - - amazonka-cognito-identity - - amazonka-cognito-idp - - amazonka-cognito-sync - - amazonka-comprehend - - amazonka-comprehendmedical - - amazonka-compute-optimizer - - amazonka-config - - amazonka-connect - - amazonka-connect-contact-lens - - amazonka-connectcampaigns - - amazonka-connectcases - - amazonka-connectparticipant - - amazonka-contrib-rds-utils - - amazonka-controltower - - amazonka-cost-explorer - - amazonka-cur - - amazonka-customer-profiles - - amazonka-databrew - - amazonka-dataexchange - - amazonka-datapipeline - - amazonka-datasync - - amazonka-detective - - amazonka-devicefarm - - amazonka-devops-guru - - amazonka-directconnect - - amazonka-discovery - - amazonka-dlm - - amazonka-dms - - amazonka-docdb - - amazonka-docdb-elastic - - amazonka-drs - - amazonka-ds - - amazonka-dynamodb - - amazonka-dynamodb-dax - - amazonka-dynamodb-streams - - amazonka-ebs - - amazonka-ec2 - - amazonka-ec2-instance-connect - - amazonka-ecr - - amazonka-ecr-public - - amazonka-ecs - - amazonka-efs - - amazonka-eks - - amazonka-elastic-inference - - amazonka-elasticache - - amazonka-elasticbeanstalk - - amazonka-elasticsearch - - amazonka-elastictranscoder - - amazonka-elb - - amazonka-elbv2 - - amazonka-emr - - amazonka-emr-containers - - amazonka-emr-serverless - - amazonka-evidently - - amazonka-finspace - - amazonka-finspace-data - - amazonka-fis - - amazonka-fms - - amazonka-forecast - - amazonka-forecastquery - - amazonka-frauddetector - - amazonka-fsx - - amazonka-gamelift - - amazonka-gamesparks - - amazonka-glacier - - amazonka-globalaccelerator - - amazonka-glue - - amazonka-grafana - - amazonka-greengrass - - amazonka-greengrassv2 - - amazonka-groundstation - - amazonka-guardduty - - amazonka-health - - amazonka-healthlake - - amazonka-honeycode - - amazonka-iam - - amazonka-identitystore - - amazonka-imagebuilder - - amazonka-importexport - - amazonka-inspector - - amazonka-inspector2 - - amazonka-iot - - amazonka-iot-analytics - - amazonka-iot-dataplane - - amazonka-iot-jobs-dataplane - - amazonka-iot-roborunner - - amazonka-iot1click-devices - - amazonka-iot1click-projects - - amazonka-iotdeviceadvisor - - amazonka-iotevents - - amazonka-iotevents-data - - amazonka-iotfleethub - - amazonka-iotfleetwise - - amazonka-iotsecuretunneling - - amazonka-iotsitewise - - amazonka-iotthingsgraph - - amazonka-iottwinmaker - - amazonka-iotwireless - - amazonka-ivs - - amazonka-ivschat - - amazonka-kafka - - amazonka-kafkaconnect - - amazonka-kendra - - amazonka-keyspaces - - amazonka-kinesis - - amazonka-kinesis-analytics - - amazonka-kinesis-firehose - - amazonka-kinesis-video - - amazonka-kinesis-video-archived-media - - amazonka-kinesis-video-media - - amazonka-kinesis-video-signaling - - amazonka-kinesis-video-webrtc-storage - - amazonka-kinesisanalyticsv2 - - amazonka-kms - - amazonka-lakeformation - - amazonka-lambda - - amazonka-lex-models - - amazonka-lex-runtime - - amazonka-lexv2-models - - amazonka-license-manager - - amazonka-license-manager-linux-subscriptions - - amazonka-license-manager-user-subscriptions - - amazonka-lightsail - - amazonka-location - - amazonka-lookoutequipment - - amazonka-lookoutmetrics - - amazonka-lookoutvision - - amazonka-m2 - - amazonka-macie - - amazonka-maciev2 - - amazonka-managedblockchain - - amazonka-marketplace-analytics - - amazonka-marketplace-catalog - - amazonka-marketplace-entitlement - - amazonka-marketplace-metering - - amazonka-mechanicalturk - - amazonka-mediaconnect - - amazonka-mediaconvert - - amazonka-medialive - - amazonka-mediapackage - - amazonka-mediapackage-vod - - amazonka-mediastore - - amazonka-mediastore-dataplane - - amazonka-mediatailor - - amazonka-memorydb - - amazonka-mgn - - amazonka-migration-hub-refactor-spaces - - amazonka-migrationhub - - amazonka-migrationhub-config - - amazonka-migrationhuborchestrator - - amazonka-migrationhubstrategy - - amazonka-ml - - amazonka-mobile - - amazonka-mq - - amazonka-mwaa - - amazonka-neptune - - amazonka-network-firewall - - amazonka-networkmanager - - amazonka-nimble - - amazonka-oam - - amazonka-omics - - amazonka-opensearch - - amazonka-opensearchserverless - - amazonka-opsworks - - amazonka-opsworks-cm - - amazonka-organizations - - amazonka-outposts - - amazonka-panorama - - amazonka-personalize - - amazonka-personalize-events - - amazonka-personalize-runtime - - amazonka-pi - - amazonka-pinpoint - - amazonka-pinpoint-email - - amazonka-pinpoint-sms-voice - - amazonka-pinpoint-sms-voice-v2 - - amazonka-pipes - - amazonka-polly - - amazonka-pricing - - amazonka-privatenetworks - - amazonka-proton - - amazonka-qldb - - amazonka-qldb-session - - amazonka-quicksight - - amazonka-ram - - amazonka-rbin - - amazonka-rds - - amazonka-rds-data - - amazonka-redshift - - amazonka-redshift-data - - amazonka-redshift-serverless - - amazonka-rekognition - - amazonka-resiliencehub - - amazonka-resource-explorer-v2 - - amazonka-resourcegroups - - amazonka-resourcegroupstagging - - amazonka-robomaker - - amazonka-rolesanywhere - - amazonka-route53 - - amazonka-route53-autonaming - - amazonka-route53-domains - - amazonka-route53-recovery-cluster - - amazonka-route53-recovery-control-config - - amazonka-route53-recovery-readiness - - amazonka-route53resolver - - amazonka-rum - - amazonka-s3 - - amazonka-s3-encryption - - amazonka-s3-streaming - - amazonka-s3outposts - - amazonka-sagemaker - - amazonka-sagemaker-a2i-runtime - - amazonka-sagemaker-edge - - amazonka-sagemaker-featurestore-runtime - - amazonka-sagemaker-geospatial - - amazonka-sagemaker-metrics - - amazonka-sagemaker-runtime - - amazonka-savingsplans - - amazonka-scheduler - - amazonka-schemas - - amazonka-sdb - - amazonka-secretsmanager - - amazonka-securityhub - - amazonka-securitylake - - amazonka-serverlessrepo - - amazonka-service-quotas - - amazonka-servicecatalog - - amazonka-servicecatalog-appregistry - - amazonka-ses - - amazonka-sesv2 - - amazonka-shield - - amazonka-signer - - amazonka-simspaceweaver - - amazonka-sms - - amazonka-sms-voice - - amazonka-snow-device-management - - amazonka-snowball - - amazonka-sns - - amazonka-sqs - - amazonka-ssm - - amazonka-ssm-contacts - - amazonka-ssm-incidents - - amazonka-ssm-sap - - amazonka-sso - - amazonka-sso-admin - - amazonka-sso-oidc - - amazonka-stepfunctions - - amazonka-storagegateway - - amazonka-sts - - amazonka-support - - amazonka-support-app - - amazonka-swf - - amazonka-synthetics - - amazonka-test - - amazonka-textract - - amazonka-timestream-query - - amazonka-timestream-write - - amazonka-transcribe - - amazonka-transfer - - amazonka-translate - - amazonka-voice-id - - amazonka-waf - - amazonka-waf-regional - - amazonka-wafv2 - - amazonka-wellarchitected - - amazonka-wisdom - - amazonka-workdocs - - amazonka-worklink - - amazonka-workmail - - amazonka-workmailmessageflow - - amazonka-workspaces - - amazonka-workspaces-web - - amazonka-xray - - amby - - ampersand - - amqp-streamly - - amqp-utils_0_6_4_0 - - amqp_0_22_2 - - anatomy - - animate-example - - animate-frames - - animate-preview - - animate-sdl2 - - annah - - anonymous-sums-tests - - antagonist - - anticiv - - antiope-athena - - antiope-contract - - antiope-core - - antiope-dynamodb - - antiope-es - - antiope-messages - - antiope-optparse-applicative - - antiope-s3 - - antiope-shell - - antiope-sns - - antiope-sqs - - antiope-swf - - antlrc - - apecs-gloss - - apecs-physics-gloss - - apelsin - - api-rpc-accumulate - - api-rpc-pegnet - - api-yoti - - apiary - - apiary-authenticate - - apiary-clientsession - - apiary-cookie - - apiary-eventsource - - apiary-helics - - apiary-http-client - - apiary-logger - - apiary-memcached - - apiary-mongoDB - - apiary-persistent - - apiary-purescript - - apiary-redis - - apiary-session - - apiary-websockets - - apis - - apotiki - - approx-rand-test - - arbor-monad-metric-datadog - - archive-libarchive - - archive-tar-bytestring - - archlinux-web - - arduino-copilot - - arff - - arghwxhaskell - - argon - - ariadne - - arith-encode - - arithmetic-circuits - - array-forth - - arraylist - - ascii - - ascii-cows - - ascii-numbers - - ascii-superset - - ascii-table - - ascii-th - - asic - - assert4hs-hspec - - assert4hs-tasty - - assimp - - ast-monad-json - - astview - - aterm-utils - - atlassian-connect-core - - atmos-dimensional-tf - - atom-msp430 - - atomic-primops-foreign - - atp - - attoparsec-enumerator - - attoparsec-iteratee - - attoparsec-text-enumerator - - atuin - - audiovisual - - aura - - authoring - - autodocodec-openapi3 - - autodocodec-servant-multipart - - automata - - autonix-deps-kf5 - - avers - - avers-api - - avers-api-docs - - avers-server - - aviation-cessna172-diagrams - - aviation-cessna172-weight-balance - - aviation-navigation - - aviation-weight-balance - - awesomium - - awesomium-glut - - aws-configuration-tools - - aws-dynamodb-conduit - - aws-dynamodb-streams - - aws-easy - - aws-elastic-transcoder - - aws-kinesis - - aws-kinesis-client - - aws-kinesis-reshard - - aws-lambda - - aws-lambda-haskell-runtime-wai - - aws-mfa-credentials - - aws-sdk - - aws-sdk-xml-unordered - - aws-ses-easy - - aws-sign4 - - aws-simple - - aws-sns - - axiom - - azimuth-hs - - azure-functions-worker - - azure-service-api - - azure-servicebus - - b-tree - - babylon - - backblaze-b2-hs - - backdropper - - balkon - - ballast - - bamboo - - bamboo-launcher - - bamboo-plugin-highlight - - bamboo-plugin-photo - - bamboo-theme-blueprint - - bamboo-theme-mini-html5 - - bamse - - bamstats - - barley - - base32-bytestring - - baserock-schema - - basic - - batchd - - batchd-core - - batchd-docker - - batchd-libvirt - - batching - - battlenet-yesod - - battleplace-api - - battleships - - bayes-stack - - bbi - - bcp47 - - bcp47-orphans - - bdcs - - bdcs-api - - beam-automigrate - - beam-th - - beautifHOL - - bech32-th - - beeminder-api - - bein - - belka - - bff - - bglib - - bidirectionalization-combined - - bifunctor - - billboard-parser - - billeksah-forms - - billeksah-main - - billeksah-pane - - binary-file - - binary-protocol-zmq - - binary-streams - - binding-gtk - - binding-wx - - bindings-apr-util - - bindings-linux-videodev2 - - bindings-ppdev - - bindynamic - - binembed-example - - bioace - - bioalign - - biofasta - - biofastq - - bioinformatics-toolkit - - biophd - - biopsl - - biosff - - biostockholm - - bip32 - - birch-beer - - bird - - bisc - - biscuit-servant - - bit-array - - bitcoin-address - - bitcoin-api - - bitcoin-api-extra - - bitcoin-block - - bitcoin-tx - - bitcoin-types - - bitcoind-regtest - - bitly-cli - - bitmaps - - bittorrent - - bla - - blakesum-demo - - blastxml - - blatex - - blaze-builder-enumerator - - blaze-colonnade - - blaze-html-contrib - - ble - - blink1 - - blip - - blockfrost-client - - blockfrost-client-core - - blogination - - bloodhound-amazonka-auth - - bloxorz - - blubber - - bluetile - - blunt - - bno055-haskell - - board-games - - bogre-banana - - boilerplate - - bond - - bond-haskell - - bond-haskell-compiler - - bookhound-format - - bookkeeper - - bookkeeper-permissions - - bookkeeping-jp - - boomslang - - boots-app - - boots-cloud - - boots-web - - borel - - both - - bowntz - - box-csv - - box-socket - - breakout - - bricks - - bricks-internal-test - - bricks-parsec - - bricks-rendering - - bricks-syntax - - broadcast-chan-conduit - - broadcast-chan-pipes - - bronyradiogermany-streaming - - btc-lsp - - btree - - buchhaltung - - buildbox-tools - - buildwrapper - - bulletproofs - - bulmex - - burnt-explorer - - buster-gtk - - buster-network - - butterflies - - bv-sized - - bv-sized-lens - - bytable - - bytehash - - bytelog - - bytepatch - - bytestring-builder-varword - - bytestring-read - - ca - - cabal-bounds - - cabal-cache - - cabal-cargs - - cabal-flatpak - - cabal-query - - cabal-test - - cabal2arch - - cabalmdvrpm - - cabalrpmdeps - - caffegraph - - cake - - cakyrespa - - cal3d-examples - - cal3d-opengl - - calamity - - calc - - calculator - - caldims - - call - - camfort - - campfire - - canadian-income-tax - - canteven-http - - cao - - cap - - capnp - - captcha-2captcha - - captcha-capmonster - - captcha-core - - car-pool - - carboncopy - - cartel - - cas-hashable-s3 - - cas-store - - casadi-bindings - - casadi-bindings-control - - casadi-bindings-core - - casadi-bindings-ipopt-interface - - casadi-bindings-snopt-interface - - cash - - casr-logbook-html - - casr-logbook-meta - - casr-logbook-meta-html - - casr-logbook-reports - - casr-logbook-reports-html - - casr-logbook-reports-meta - - casr-logbook-reports-meta-html - - cassandra-thrift - - cassy - - casui - - categorical-algebra - - category - - category-extras - - cattrap - - cctools-workqueue - - cef3-simple - - ceilometer-common - - celtchar - - cerberus - - cereal-enumerator - - cereal-io-streams - - cereal-streams - - certificate - - cfipu - - cflp - - cfopu - - cgi-undecidable - - cgi-utils - - chainweb-mining-client - - chalkboard-viewer - - chapelure - - charade - - chart-cli - - chart-svg - - chart-svg-various - - chart-unit - - chassis - - cheapskate-highlight - - cheapskate-lucid - - cheapskate-terminal - - check-pvp - - chevalier-common - - chiasma - - chiasma-test - - chitauri - - choose-exe - - chorale-geo - - chp-mtl - - chp-plus - - chp-spec - - chp-transformers - - chr-lang - - chromatin - - chu2 - - chuchu - - chunks - - citation-resolve - - citeproc-hs-pandoc-filter - - clac - - clafer - - claferIG - - claferwiki - - clash - - clash-ghc - - clash-lib - - clash-lib-hedgehog - - clash-multisignal - - clash-prelude-hedgehog - - clash-prelude-quickcheck - - clash-shake - - clash-systemverilog - - clash-verilog - - clash-vhdl - - clashilator - - classify-frog - - classy-miso - - clckwrks - - clckwrks-cli - - clckwrks-dot-com - - clckwrks-plugin-ircbot - - clckwrks-plugin-media - - clckwrks-plugin-page - - clckwrks-plugin-redirect - - clckwrks-theme-bootstrap - - cleff-plugin - - cless - - cleveland - - click-clack - - clickhouse-haskell - - clifford - - climb - - clippings - - cloud-haskell - - cloud-seeder - - cloudyfs - - clr-bindings - - clua - - clustertools - - clutterhs - - cmathml3 - - cmptype - - cmv - - cnc-spec-compiler - - co-feldspar - - co-log - - co-log-polysemy-formatting - - cobot-io - - codec - - codec-libevent - - codec-rpm - - codemonitor - - coformat - - cognimeta-utils - - coinbase-exchange - - coincident-root-loci - - colada - - collapse-duplication - - collection-json - - collections-base-instances - - color-counter - - colorless-http-client - - colorless-scotty - - colour-accelerate - - colour-space - - columbia - - columnar - - comark - - commsec - - commsec-keyexchange - - comonad-random - - compaREST - - compact-mutable - - compact-mutable-vector - - compact-socket - - compdata-automata - - compdata-dags - - compdata-param - - compdoc - - compdoc-dhall-decoder - - complexity - - composite-aeson - - composite-aeson-cofree-list - - composite-aeson-throw - - composite-aeson-writeonly - - composite-binary - - composite-dhall - - composite-ekg - - composite-hashable - - composite-ix - - composite-lens-extra - - composite-opaleye - - composite-swagger - - composite-tuple - - composite-xml - - composite-xstep - - comprehensions-ghc - - compstrat - - comptrans - - computational-algebra - - concraft - - concraft-hr - - concraft-pl - - concrete-haskell - - concrete-haskell-autogen - - condor - - conductive-hsc3 - - conductive-song - - conduit-throttle - - conduit-vfs-zip - - confcrypt - - conferer-aeson - - conferer-hedis - - conferer-provider-dhall - - conferer-provider-yaml - - conferer-source-dhall - - conferer-source-yaml - - conferer-warp - - conferer-yaml - - conffmt - - config-select - - configifier - - configurator-ng - - conic-graphs - - constrained-category - - constrained-platform-instances - - constraint - - constraint-manip - - constraint-reflection - - constructible - - consumers - - container - - containers-accelerate - - content-store - - continuum - - continuum-client - - control - - control-monad-attempt - - conversions - - convert - - convertible-ascii - - convertible-text - - coordinate - - copilot - - copilot-cbmc - - copilot-frp-sketch - - copilot-language - - copilot-libraries - - copilot-sbv - - copilot-theorem - - coroutine-enumerator - - coroutine-iteratee - - couch-simple - - couchdb-enumerator - - country - - country_0_2_4_0 - - cpkg - - cprng-aes-effect - - cql-io-tinylog - - cqrs-example - - cqrs-memory - - cqrs-postgresql - - cqrs-sqlite3 - - cqrs-test - - cqrs-testkit - - crackNum - - craft - - craftwerk-cairo - - craftwerk-gtk - - craze - - credentials - - credentials-cli - - crf-chain1 - - crf-chain1-constrained - - crf-chain2-generic - - crf-chain2-tiers - - criu-rpc - - cron-compat - - crypto-classical - - crypto-conduit - - crypto-pubkey - - crypto-sodium - - cryptocipher - - cryptoids - - cryptoids-class - - cryptol - - cryptonite-cd - - crystalfontz - - csound-catalog - - csound-controllers - - csound-expression - - csound-expression-opcodes - - csound-expression-typed - - csound-sampler - - cspmchecker - - csv-enumerator - - ctpl - - cube - - cv-combinators - - cypher - - daino - - dapi - - darcs-benchmark - - darcs-beta - - darcs-fastconvert - - darcsden - - darcswatch - - darkplaces-demo - - darkplaces-rcon-util - - dash-haskell - - data-basic - - data-cycle - - data-default-extra - - data-diverse-lens - - data-layer - - data-object-json - - data-object-yaml - - data-result - - data-rtuple - - data-structure-inferrer - - database-id-groundhog - - datadog-tracing - - datafix - - dataflow - - datasets - - date-conversions - - dbjava - - dbmigrations-mysql - - dbmigrations-postgresql - - dbmigrations-sqlite - - dbus-client - - ddate - - ddc-build - - ddc-core - - ddc-core-babel - - ddc-core-eval - - ddc-core-flow - - ddc-core-llvm - - ddc-core-salt - - ddc-core-simpl - - ddc-core-tetra - - ddc-driver - - ddc-interface - - ddc-source-tetra - - ddc-tools - - ddc-war - - ddci-core - - debug - - decidable - - decimal-arithmetic - - declarative - - dedukti - - deeplearning-hs - - deepzoom - - defargs - - definitive-filesystem - - definitive-graphics - - definitive-parser - - definitive-reactive - - definitive-sound - - deka-tests - - delaunay - - delicious - - delimited-text - - delimiter-separated - - delta - - delta-h - - dep-t-advice - - dependent-literals - - dependent-literals-plugin - - dependent-state - - depends - - dephd - - deptrack-devops - - deptrack-dot - - dequeue - - derive-IG - - descript-lang - - detour-via-uom - - devtools - - dewdrop - - dfinity-radix-tree - - dhall-recursive-adt - - dhall-secret - - dia-functions - - diagrams-haddock - - diagrams-html5 - - diagrams-pandoc - - diagrams-reflex - - diagrams-wx - - dialog - - diff - - difference-monoid - - digestive-functors-hsp - - dimensional-tf - - dimensions - - dingo-core - - dingo-example - - dingo-widgets - - diplomacy-server - - direct-rocksdb - - directory-contents - - dirfiles - - discogs-haskell - - discord-gateway - - discord-hs - - discord-rest - - disposable - - distributed-fork - - distributed-fork-aws-lambda - - distributed-process - - distributed-process-async - - distributed-process-azure - - distributed-process-client-server - - distributed-process-ekg - - distributed-process-execution - - distributed-process-extras - - distributed-process-fsm - - distributed-process-lifted - - distributed-process-monad-control - - distributed-process-p2p - - distributed-process-platform - - distributed-process-registry - - distributed-process-simplelocalnet - - distributed-process-supervisor - - distributed-process-systest - - distributed-process-task - - distributed-process-tests - - distributed-static - - distribution-plot - - dixi - - dl-fedora - - dmenu-pkill - - dmenu-pmount - - dmenu-search - - dnf-repo - - dobutokO-poetry - - dobutokO-poetry-general - - dobutokO-poetry-general-languages - - dobutokO2 - - dobutokO3 - - dobutokO4 - - doc-review - - domain - - domain-aeson - - domain-cereal - - domaindriven - - dormouse-client - - dovetail - - dovetail-aeson - - dow - - download-media-content - - dph-examples - - dph-lifted-base - - dph-lifted-copy - - dph-lifted-vseg - - dph-prim-interface - - dph-prim-par - - dph-prim-seq - - dropbox-sdk - - dropsolve - - dsh-sql - - dsmc-tools - - dtd - - dvda - - dynamic-cabal - - dynamic-plot - - dynamic-pp - - dynamodb-simple - - dynobud - - easytensor - - easytensor-vulkan - - ec2-unikernel - - eccrypto-ed25519-bindings - - ecdsa - - ecta - - edenskel - - edentv - - edge - - edges - - editable - - edits - - effect-monad - - effective-aspects-mzv - - egison - - egison-pattern-src-haskell-mode - - egison-pattern-src-th-mode - - egison-quote - - egison-tutorial - - ekg - - ekg-carbon - - ekg-cloudwatch - - ekg-prometheus-adapter - - ekg-wai - - elasticsearch-interchange - - electrs-client - - elerea-examples - - elliptic-curve - - elsa - - ema-extra - - emacs-keys - - email - - emailparse - - emanote - - embroidery - - emd - - engine-io-growler - - engine-io-snap - - engine-io-wai - - engine-io-yesod - - entangle - - enum-text-rio - - enumerate - - enumerate-function - - enumeration - - enumerator-fd - - enumerator-tf - - enumfun - - ephemeral - - erf-native - - eros-client - - eros-http - - error-message - - errors-ext - - ersatz-toysat - - esotericbot - - esqueleto-streaming - - essence-of-live-coding-PortMidi - - essence-of-live-coding-gloss - - essence-of-live-coding-gloss-example - - essence-of-live-coding-pulse - - essence-of-live-coding-pulse-example - - essence-of-live-coding-quickcheck - - essence-of-live-coding-vivid - - essence-of-live-coding-warp - - estimators - - estreps - - eternity - - eternity-timestamped - - ether - - ethereum-analyzer - - ethereum-analyzer-cli - - ethereum-analyzer-webui - - ethereum-client-haskell - - ethereum-merkle-patricia-db - - eths-rlp - - euphoria - - event-monad - - eventful-core - - eventful-dynamodb - - eventful-memory - - eventful-postgresql - - eventful-sql-common - - eventful-sqlite - - eventful-test-helpers - - eventloop - - eventsource-geteventstore-store - - eventsource-store-specs - - eventsource-stub-store - - eventuo11y - - eventuo11y-batteries - - eventuo11y-json - - eventuo11y-otel - - eventuo11y-prometheus - - every-bit-counts - - exference - - exinst-aeson - - exinst-base - - exinst-bytes - - exinst-cereal - - exinst-deepseq - - exinst-hashable - - exinst-serialise - - exist - - exist-instances - - expand - - expat-enumerator - - expiring-containers - - explicit-iomodes-bytestring - - explicit-iomodes-text - - explicit-sharing - - explore - - expressions-z3 - - extemp - - extended-containers-lens - - extract-dependencies - - factual-api - - fadno - - fair - - fallingblocks - - family-tree - - fast-arithmetic - - fast-bech32 - - fastcdc - - fastcgi - - fastirc - - fault-tree - - fay-base - - fay-builder - - fay-dom - - fay-geoposition - - fay-hsx - - fay-jquery - - fay-ref - - fay-simplejson - - fay-text - - fay-uri - - fay-websockets - - fbrnch - - fcd - - fckeditor - - feature-flipper-postgres - - fedora-composes - - fedora-img-dl - - fedora-repoquery - - feed-gipeda - - feed-translator - - feed2lj - - feed2twitter - - feedback - - fei-base - - fei-dataiter - - fei-datasets - - fei-examples - - fei-modelzoo - - fei-nn - - feldspar-compiler - - festung - - fficxx - - ffmpeg-tutorials - - ficketed - - filepath-crypto - - filepath-io-access - - filesystem-abstractions - - filesystem-enumerator - - fin-int - - find-clumpiness - - findhttp - - finitary - - finitary-derive - - finitary-optics - - finite-table - - firestore - - firstify - - fishfood - - fix-parser-simple - - fixed-point-vector - - fixed-point-vector-space - - fixhs - - flashblast - - flatbuffers - - flexiwrap - - flexiwrap-smallcheck - - flite - - flower - - flowsim - - fltkhs-demos - - fltkhs-fluid-demos - - fltkhs-fluid-examples - - fltkhs-hello-world - - fltkhs-themes - - fluent-logger - - fluent-logger-conduit - - fmt-for-rio - - foldable1 - - foldl-transduce-attoparsec - - follower - - foo - - format - - format-status - - formlets - - formlets-hsp - - forms-data-format - - forsyde-deep - - forth-hll - - fortran-vars - - foscam-directory - - foscam-sort - - fpco-api - - fplll - - fpnla-examples - - frame-markdown - - freckle-app - - free-functors - - free-game - - free-theorems-counterexamples - - free-theorems-seq - - free-theorems-seq-webui - - free-theorems-webui - - freekick2 - - freelude - - freer-converse - - fresnel-fused-effects - - friday-juicypixels - - front - - frpnow-gloss - - frpnow-gtk - - frpnow-gtk3 - - frpnow-vty - - ftdi - - ftp-client-conduit - - ftree - - ftshell - - funbot - - funbot-git-hook - - funcons-simple - - funcons-tools - - function-combine - - functor - - functor-combo - - funflow - - funflow-nix - - funion - - funnyprint - - funsat - - fused-effects-squeal - - fwgl-glfw - - fwgl-javascript - - g2 - - g2q - - gact - - galois-fft - - gargoyle-postgresql - - gargoyle-postgresql-connect - - gbu - - gdax - - gdiff-ig - - gearhash - - gedcom - - geek - - geek-server - - gelatin-freetype2 - - gelatin-fruity - - gelatin-gl - - gelatin-sdl2 - - gelatin-shaders - - gemini-router - - gemini-textboard - - generic-accessors - - generic-override-aeson - - generics-mrsop-gdiff - - genesis - - genesis-test - - geni-gui - - geni-util - - geniconvert - - geniserver - - genvalidity-network-uri - - geo-uk - - geodetic - - geolite-csv - - getemx - - gf - - ghc-dump-util - - ghc-imported-from - - ghc-instances - - ghc-mod - - ghc-session - - ghc-tags-pipes - - ghc-tags-plugin - - ghci-pretty - - ghcjs-dom-hello - - ghcjs-dom-webkit - - ghcjs-fetch - - ghcjs-hplay - - ghcup - - ght - - gi-cairo-again - - gi-clutter - - gi-coglpango - - gi-ges - - gi-gsk - - gi-gstpbutils - - gi-gtk-declarative-app-simple - - gi-gtk_4_0_8 - - git-config - - git-fmt - - git-gpush - - git-object - - git-remote-ipfs - - git-sanity - - gitdo - - github-webhook-handler-snap - - gitlib-cross - - gitlib-s3 - - gitson - - givegif - - gladexml-accessor - - glazier - - glazier-pipes - - glazier-react - - glazier-react-examples - - glazier-react-widget - - glirc - - global - - global-config - - glome-hs - - gloss-accelerate - - gloss-devil - - gloss-examples - - gloss-raster - - gloss-raster-accelerate - - gloss-sodium - - gltf-loader - - gmap - - gmndl - - gnome-desktop - - gnomevfs - - gnss-converters - - goal-geometry - - goal-graphical - - goal-probability - - goal-simulation - - goat - - goatee-gtk - - gogol - - gogol-abusiveexperiencereport - - gogol-acceleratedmobilepageurl - - gogol-accessapproval - - gogol-accesscontextmanager - - gogol-adexchange-buyer - - gogol-adexchange-seller - - gogol-adexchangebuyer2 - - gogol-adexperiencereport - - gogol-admin-datatransfer - - gogol-admin-directory - - gogol-admin-emailmigration - - gogol-admin-reports - - gogol-adsense - - gogol-adsense-host - - gogol-affiliates - - gogol-alertcenter - - gogol-analytics - - gogol-analyticsreporting - - gogol-android-enterprise - - gogol-android-publisher - - gogol-androiddeviceprovisioning - - gogol-androidmanagement - - gogol-appengine - - gogol-apps-activity - - gogol-apps-calendar - - gogol-apps-licensing - - gogol-apps-reseller - - gogol-apps-tasks - - gogol-appstate - - gogol-autoscaler - - gogol-bigquery - - gogol-bigquerydatatransfer - - gogol-bigtableadmin - - gogol-billing - - gogol-binaryauthorization - - gogol-blogger - - gogol-books - - gogol-chat - - gogol-civicinfo - - gogol-classroom - - gogol-cloudasset - - gogol-clouderrorreporting - - gogol-cloudfunctions - - gogol-cloudidentity - - gogol-cloudiot - - gogol-cloudkms - - gogol-cloudmonitoring - - gogol-cloudprivatecatalog - - gogol-cloudprivatecatalogproducer - - gogol-cloudprofiler - - gogol-cloudscheduler - - gogol-cloudsearch - - gogol-cloudshell - - gogol-cloudtasks - - gogol-cloudtrace - - gogol-commentanalyzer - - gogol-composer - - gogol-compute - - gogol-consumersurveys - - gogol-container - - gogol-containeranalysis - - gogol-containerbuilder - - gogol-customsearch - - gogol-dataflow - - gogol-datafusion - - gogol-dataproc - - gogol-datastore - - gogol-debugger - - gogol-deploymentmanager - - gogol-dfareporting - - gogol-dialogflow - - gogol-digitalassetlinks - - gogol-discovery - - gogol-dlp - - gogol-dns - - gogol-docs - - gogol-doubleclick-bids - - gogol-doubleclick-search - - gogol-drive - - gogol-driveactivity - - gogol-factchecktools - - gogol-file - - gogol-firebase-dynamiclinks - - gogol-firebase-rules - - gogol-firebasehosting - - gogol-firebaseremoteconfig - - gogol-firestore - - gogol-fitness - - gogol-fonts - - gogol-freebasesearch - - gogol-fusiontables - - gogol-games - - gogol-games-configuration - - gogol-games-management - - gogol-genomics - - gogol-gmail - - gogol-groups-migration - - gogol-groups-settings - - gogol-healthcare - - gogol-iam - - gogol-iamcredentials - - gogol-iap - - gogol-identity-toolkit - - gogol-indexing - - gogol-jobs - - gogol-kgsearch - - gogol-language - - gogol-latencytest - - gogol-libraryagent - - gogol-logging - - gogol-manufacturers - - gogol-maps-coordinate - - gogol-maps-engine - - gogol-mirror - - gogol-ml - - gogol-monitoring - - gogol-oauth2 - - gogol-oslogin - - gogol-pagespeed - - gogol-partners - - gogol-people - - gogol-photoslibrary - - gogol-play-moviespartner - - gogol-playcustomapp - - gogol-plus - - gogol-plus-domains - - gogol-poly - - gogol-prediction - - gogol-proximitybeacon - - gogol-pubsub - - gogol-qpxexpress - - gogol-redis - - gogol-remotebuildexecution - - gogol-replicapool - - gogol-replicapool-updater - - gogol-resourcemanager - - gogol-resourceviews - - gogol-run - - gogol-runtimeconfig - - gogol-safebrowsing - - gogol-script - - gogol-searchconsole - - gogol-securitycenter - - gogol-servicebroker - - gogol-serviceconsumermanagement - - gogol-servicecontrol - - gogol-servicemanagement - - gogol-servicenetworking - - gogol-serviceusage - - gogol-serviceuser - - gogol-sheets - - gogol-shopping-content - - gogol-siteverification - - gogol-slides - - gogol-sourcerepo - - gogol-spanner - - gogol-spectrum - - gogol-speech - - gogol-sqladmin - - gogol-storage - - gogol-storage-transfer - - gogol-streetviewpublish - - gogol-surveys - - gogol-tagmanager - - gogol-taskqueue - - gogol-testing - - gogol-texttospeech - - gogol-toolresults - - gogol-tpu - - gogol-tracing - - gogol-translate - - gogol-urlshortener - - gogol-useraccounts - - gogol-vault - - gogol-videointelligence - - gogol-vision - - gogol-webmaster-tools - - gogol-websecurityscanner - - gogol-youtube - - gogol-youtube-analytics - - gogol-youtube-reporting - - google-drive - - google-mail-filters - - google-maps-geocoding - - googleplus - - gore-and-ash-actor - - gore-and-ash-async - - gore-and-ash-demo - - gore-and-ash-glfw - - gore-and-ash-lambdacube - - gore-and-ash-logging - - gore-and-ash-network - - gore-and-ash-sdl - - gore-and-ash-sync - - gps - - gps2htmlReport - - graflog - - grammar-combinators - - grapefruit-examples - - grapefruit-frp - - grapefruit-records - - grapefruit-ui - - grapefruit-ui-gtk - - graph-rewriting-cl - - graph-rewriting-gl - - graph-rewriting-lambdascope - - graph-rewriting-layout - - graph-rewriting-ski - - graph-rewriting-strategies - - graph-rewriting-trs - - graph-rewriting-ww - - graph-visit - - graphicsFormats - - graphicstools - - graphtype - - greencard-lib - - grenade - - greskell - - greskell-websocket - - gridbounds - - gridland - - grisette - - grisette-monad-coroutine - - groot - - gross - - groundhog-converters - - groundhog-inspector - - groundhog-mysql - - groundhog-postgresql - - groundhog-sqlite - - groundhog-th - - grpc-etcd-client - - grpc-haskell - - grpc-haskell-core - - gruff - - gruff-examples - - gsc-weighting - - gscholar-rss - - gsl-random-fu - - gsmenu - - gstorable - - gtfs - - gtfs-realtime - - gtk-serialized-event - - gtk2hs-cast-glade - - gtk2hs-cast-gnomevfs - - gtk2hs-cast-gtk - - gtk2hs-cast-gtkglext - - gtk2hs-cast-gtksourceview2 - - gtkimageview - - gtkrsync - - guarded-rewriting - - hArduino - - hOff-display - - hOpenPGP - - hPDB - - hPDB-examples - - habit - - hablo - - hablog - - hack-contrib - - hack-contrib-press - - hack-frontend-monadcgi - - hack-handler-epoll - - hack-handler-evhttp - - hack-handler-fastcgi - - hack-handler-happstack - - hack-handler-hyena - - hack-handler-kibro - - hack-handler-simpleserver - - hack-middleware-cleanpath - - hack-middleware-clientsession - - hack-middleware-jsonp - - hack2-contrib-extra - - hack2-handler-happstack-server - - hack2-handler-mongrel2-http - - hack2-handler-snap-server - - hackage2twitter - - hackmanager - - haddock - - haddock_2_23_1 - - haddocset - - hadolint - - hadoop-tools - - haggis - - hailgun-send - - hailgun-simple - - hails-bin - - hakyll-elm - - hakyll-ogmarkup - - hakyll-shortcut-links - - halberd - - halide-JuicyPixels - - halide-arrayfire - - hall-symbols - - halma-gui - - halma-telegram-bot - - hamilton - - hamusic - - hans-pcap - - happlets-lib-gtk - - happs-hsp - - happs-hsp-template - - happs-tutorial - - happstack-auth - - happstack-authenticate - - happstack-contrib - - happstack-data - - happstack-dlg - - happstack-facebook - - happstack-fastcgi - - happstack-fay - - happstack-fay-ajax - - happstack-foundation - - happstack-helpers - - happstack-ixset - - happstack-plugins - - happstack-state - - happstack-static-routing - - happybara-webkit - - haquil - - harg - - hark - - harmony - - haroonga-httpd - - has-th - - hasbolt-extras - - hascat - - hascat-lib - - hascat-setup - - hascat-system - - hashable-accelerate - - hasherize - - hashflare - - hask-home - - haskdeep - - haskeem - - haskell-admin - - haskell-admin-health - - haskell-admin-managed-functions - - haskell-aliyun - - haskell-bitmex-client - - haskell-docs - - haskell-eigen-util - - haskell-ftp - - haskell-lsp - - haskell-lsp-client - - haskell-pdf-presenter - - haskell-platform-test - - haskell-reflect - - haskell-src-exts-observe - - haskell-token-utils - - haskell-tools-ast - - haskell-tools-ast-fromghc - - haskell-tools-ast-gen - - haskell-tools-ast-trf - - haskell-tools-backend-ghc - - haskell-tools-builtin-refactorings - - haskell-tools-cli - - haskell-tools-daemon - - haskell-tools-debug - - haskell-tools-demo - - haskell-tools-experimental-refactorings - - haskell-tools-prettyprint - - haskell-tools-refactor - - haskell-tools-rewrite - - haskell-tor - - haskell-xmpp - - haskelldb-connect-hdbc - - haskelldb-connect-hdbc-catchio-mtl - - haskelldb-connect-hdbc-catchio-tf - - haskelldb-connect-hdbc-catchio-transformers - - haskelldb-connect-hdbc-lifted - - haskelldb-dynamic - - haskelldb-flat - - haskelldb-hdbc - - haskelldb-hdbc-mysql - - haskelldb-hdbc-odbc - - haskelldb-hdbc-postgresql - - haskelldb-hdbc-sqlite3 - - haskelldb-hsql - - haskelldb-hsql-mysql - - haskelldb-hsql-odbc - - haskelldb-hsql-postgresql - - haskelldb-hsql-sqlite3 - - haskelldb-th - - haskelm - - haskey-mtl - - haskgame - - hasklepias - - haskoin-bitcoind - - haskoin-crypto - - haskoin-protocol - - haskoin-script - - haskoin-store - - haskoon - - haskoon-httpspec - - haskoon-salvia - - haskore-realtime - - haskore-supercollider - - haskore-synthesizer - - hasktorch - - hasktorch-ffi-thc - - hasktorch-indef - - hasktorch-signatures - - hasktorch-zoo - - haskus-binary - - haskus-system-build - - haskus-utils - - haskus-utils-compat - - haskus-web - - haslo - - hasloGUI - - hasql-cursor-query - - hasql-postgres - - hasql-postgres-options - - hasql-streams-conduit - - hasql-streams-example - - hasql-streams-pipes - - hasql-streams-streaming - - hasql-streams-streamly - - hastache-aeson - - haste-app - - haste-gapi - - haste-lib - - haste-markup - - haste-perch - - hatexmpp3 - - hawitter - - haxl-amazonka - - haxl-facebook - - haxy - - hback - - hbayes - - hbb - - hbf - - hbro - - hbro-contrib - - hcg-minus-cairo - - hcheat - - hcheckers - - hcount - - hcube - - hdbi - - hdbi-conduit - - hdbi-postgresql - - hdbi-sqlite - - hdbi-tests - - hdf - - hdiff - - hdigest - - hdirect - - hdocs - - hdph - - heart-app - - heatitup - - heavy-log-shortcuts - - heavy-logger - - heavy-logger-amazon - - heavy-logger-instances - - hecc - - hedgehog-checkers-lens - - hedgehog-gen-json - - hedis-pile - - helic - - helics - - helics-wai - - helium - - hell - - hellage - - hellnet - - hemokit - - hen - - henet - - hepevt - - hermit - - hermit-syb - - herringbone - - herringbone-embed - - herringbone-wai - - hesh - - hesql - - heterolist - - hetzner - - hevolisa - - hevolisa-dph - - hexpat-conduit - - hexpat-iteratee - - hfd - - hfiar - - hfractal - - hgalib - - hgen - - hgeometry - - hgeometry-combinatorial - - hgeometry-svg - - hgithub - - hiccup - - hie-core - - hierarchical-clustering-diagrams - - hierarchical-env - - hierarchical-spectral-clustering - - highjson-swagger - - highjson-th - - himpy - - hinduce-classifier - - hinduce-classifier-decisiontree - - hinduce-examples - - hinvaders - - hinze-streams - - hip - - hipbot - - hipsql-client - - hipsql-server - - hipsql-tx-simple - - hirt - - hist-pl - - hist-pl-dawg - - hist-pl-fusion - - hist-pl-lexicon - - hist-pl-lmf - - hit - - hit-graph - - hix - - hjsonschema - - hjugement-cli - - hlcm - - hledger-api - - hls - - hls-exactprint-utils - - hmark - - hmatrix-backprop - - hmatrix-repa - - hmatrix-sundials - - hmeap - - hmeap-utils - - hmep - - hmm-lapack - - hmt-diagrams - - hnormalise - - ho-rewriting - - hoauth2-demo - - hoauth2-providers-tutorial - - hob - - hogre - - hogre-examples - - holy-project - - hommage - - homotuple - - hood - - hoodie - - hoodle - - hoodle-builder - - hoodle-core - - hoodle-extra - - hoodle-parser - - hoodle-publish - - hoodle-render - - hoovie - - hoppy-docs - - hoppy-runtime - - hoppy-std - - horizon-gen-nix - - horizon-spec-lens - - horizon-spec-pretty - - horizontal-rule - - hotswap - - hp2any-graph - - hp2any-manager - - hpaco - - hpaco-lib - - hpage - - hpaste - - hpath-io - - hpc-tracer - - hplayground - - hpqtypes-effectful - - hpqtypes-extras - - hprotoc - - hprotoc-fork - - hps - - hps-cairo - - hpython - - hq - - hquantlib - - hranker - - hreq-client - - hreq-conduit - - hriemann - - hs - - hs-blake2 - - hs-ffmpeg - - hs-gen-iface - - hs-pkpass - - hs-sdl-term-emulator - - hs2dot - - hsaml2 - - hsautogui - - hsbackup - - hsbencher-codespeed - - hsbencher-fusion - - hsc3-auditor - - hsc3-cairo - - hsc3-data - - hsc3-db - - hsc3-dot - - hsc3-forth - - hsc3-graphs - - hsc3-lang - - hsc3-lisp - - hsc3-plot - - hsc3-process - - hsc3-rec - - hsc3-server - - hsc3-sf-hsndfile - - hsc3-unsafe - - hsc3-utils - - hscassandra - - hscope - - hsdev - - hsendxmpp - - hsfacter - - hsinspect-lsp - - hslogstash - - hspec-expectations-pretty - - hspec-pg-transact - - hspec-setup - - hspec-shouldbe - - hspecVariant - - hsprocess - - hsql-mysql - - hsql-odbc - - hsql-postgresql - - hsql-sqlite3 - - hsreadability - - hssqlppp-th - - hstar - - hstox - - hstradeking - - hstzaar - - hsubconvert - - hswip - - hsx-xhtml - - hsyslog-tcp - - htar - - html-kure - - html-parse-util - - htoml-parse - - htsn-import - - http-client-auth - - http-client-restricted_0_1_0 - - http-client-rustls - - http-client-tls_0_3_6_3 - - http-conduit_2_3_8_3 - - http-enumerator - - http2-client-grpc - - http2-grpc-proto-lens - - http2-grpc-proto3-wire - - https-everywhere-rules - - https-everywhere-rules-raw - - httpspec - - hubris - - hugs2yc - - hulk - - hunit-gui - - hunt-searchengine - - hunt-server - - hurdle - - hurl-xml - - huzzy - - hw-all - - hw-aws-sqs-conduit - - hw-json - - hw-json-simple-cursor - - hw-json-standard-cursor - - hw-uri - - hworker-ses - - hwormhole - - hws - - hwsl2-bytevector - - hwsl2-reducers - - hxournal - - hxt-binary - - hxt-filter - - hxthelper - - hxweb - - hybrid - - hydra-print - - hydrogen-cli - - hydrogen-cli-args - - hydrogen-data - - hydrogen-parsing - - hydrogen-prelude - - hydrogen-prelude-parsec - - hydrogen-syntax - - hydrogen-util - - hyena - - hylotab - - hyloutils - - hyper-extra - - hyper-haskell-server - - hyperpublic - - i - - iException - - ice40-prim - - ide-backend - - ide-backend-server - - ideas-math - - ideas-math-types - - ideas-statistics - - identicon-style-squares - - idris - - ige-mac-integration - - igrf - - ihaskell-inline-r - - ihaskell-rlangqq - - ihttp - - imap - - imbib - - imgurder - - imj-animation - - imj-base - - imj-game-hamazed - - imj-measure-stdout - - imparse - - importify - - imprevu-happstack - - improve - - inch - - incipit - - incremental-computing - - incremental-maps - - increments - - indentation - - indentation-parsec - - indentation-trifecta - - indexation - - indieweb-algorithms - - indigo - - inferno-core - - inferno-lsp - - inferno-vc - - infinity - - inline-java - - inliterate - - inspector-wrecker - - instant-aeson - - instant-bytes - - instant-deepseq - - instant-hashable - - instant-zipper - - instrument-cloudwatch - - integreat - - intel-aes - - interpolatedstring-qq - - interpolatedstring-qq-mwotton - - intro-prelude - - introduction-test - - intset - - invertible-hlist - - invertible-hxt - - ion - - ipatch - - ipc - - ipld-cid - - ipprint - - iptadmin - - irc-fun-bot - - irc-fun-client - - irc-fun-color - - irc-fun-messages - - ironforge - - isevaluated - - ismtp - - isobmff-builder - - isohunt - - iter-stats - - iteratee-compress - - iteratee-mtl - - iteratee-parsec - - iteratee-stm - - iterio-server - - iterm-show-JuicyPixels - - iterm-show-diagrams - - ival - - ivor - - ivory-avr-atmega328p-registers - - ivory-backend-c - - ivory-bitdata - - ivory-eval - - ivory-examples - - ivory-hw - - ivory-opts - - ivory-quickcheck - - ivory-serialize - - ivory-stdlib - - ivy-web - - ix - - ixset - - ixset-typed-binary-instance - - ixset-typed-cassava - - ixset-typed-conversions - - ixset-typed-hashable-instance - - iyql - - j2hs - - jackpolynomials - - java-bridge - - java-bridge-extras - - java-character - - java-reflect - - javaclass - - javascript-extras - - javasf - - jespresso - - jmacro-rpc-happstack - - jmacro-rpc-snap - - jobs-ui - - join - - jordan-openapi - - jordan-servant - - jordan-servant-client - - jordan-servant-openapi - - jordan-servant-server - - jot - - jsaddle-hello - - jsc - - jsmw - - json-ast-json-encoder - - json-autotype - - json-b - - json-enumerator - - json-incremental-decoder - - json-pointer-aeson - - json-pointer-hasql - - json-query - - json-rpc-client - - json-spec - - json-spec-openapi - - json-togo - - json-tokens - - json2-hdbc - - json2sg - - jsonrpc-conduit - - jsons-to-schema - - jspath - - jvm - - jvm-batching - - jvm-streaming - - kafka-device - - kafka-device-glut - - kafka-device-joystick - - kafka-device-leap - - kafka-device-spacenav - - kafka-device-vrpn - - kaleidoscope - - kansas-lava - - kansas-lava-cores - - kansas-lava-papilio - - kansas-lava-shake - - karakuri - - katip-rollbar - - keelung - - keera-hails-mvc-environment-gtk - - keera-hails-mvc-model-lightmodel - - keera-hails-mvc-model-protectedmodel - - keera-hails-mvc-solutions-gtk - - keera-hails-mvc-view-gtk - - keera-hails-reactive-cbmvar - - keera-hails-reactive-fs - - keera-hails-reactive-gtk - - keera-hails-reactive-htmldom - - keera-hails-reactive-network - - keera-hails-reactive-polling - - keera-hails-reactive-wx - - keera-hails-reactive-yampa - - keera-hails-reactivelenses - - keera-posture - - keid-resource-gltf - - kerry - - kevin - - key-vault - - keyed-vals-hspec-tests - - keyed-vals-mem - - keyed-vals-redis - - keyring - - keysafe - - keyvaluehash - - keyword-args - - kicad-data - - kif-parser - - kind-rational - - kit - - kmeans-par - - kmeans-vector - - knead - - knead-arithmetic - - knit-haskell - - koji-install - - koji-tool - - korfu - - ks-test - - kubernetes-client - - kure-your-boilerplate - - kurita - - kvitable - - laborantin-hs - - labsat - - labyrinth - - labyrinth-server - - lackey - - laika - - lambda-devs - - lambda-options - - lambdaFeed - - lambdaLit - - lambdabot-telegram-plugins - - lambdabot-zulip - - lambdacat - - lambdacms-media - - lambdacube - - lambdacube-bullet - - lambdacube-compiler - - lambdacube-edsl - - lambdacube-examples - - lambdacube-gl - - lambdacube-samples - - lambdaya-bus - - lambdiff - - landlock - - lang - - language-Modula2 - - language-boogie - - language-eiffel - - language-kort - - language-ninja - - language-oberon - - language-puppet - - language-python-colour - - language-qux - - language-spelling - - lapack - - lapack-hmatrix - - large-anon - - large-records - - lat - - latex-formulae-hakyll - - latex-formulae-pandoc - - latex-svg-hakyll - - latex-svg-pandoc - - launchdarkly-server-sdk-redis-hedis - - layered-state - - layers-game - - layouting - - lazy-hash - - lazy-hash-cache - - lda - - ldap-scim-bridge - - ldapply - - leaky - - lean - - learning-hmm - - legion - - legion-discovery - - legion-discovery-client - - legion-extra - - leksah - - leksah-server - - lens-accelerate - - lens-utils - - levmar-chart - - lex-applicative - - lgtk - - lha - - lhae - - lhe - - libconfig - - libcspm - - libgraph - - liblastfm - - liblawless - - liblinear-enumerator - - libmolude - - libraft - - librato - - libssh2-conduit - - libxml-enumerator - - lifted-base-tf - - lightning-haskell - - lightstep-haskell - - lighttpd-conf - - lighttpd-conf-qq - - linear-accelerate - - linear-circuit - - linear-code - - linearEqSolver - - linearmap-category - - linearscan-hoopl - - linkchk - - linkcore - - linnet-aeson - - linnet-conduit - - linux-ptrace - - lio-eci11 - - lio-simple - - lion - - liquid-base - - liquid-bytestring - - liquid-containers - - liquid-ghc-prim - - liquid-parallel - - liquid-platform - - liquid-prelude - - liquid-vector - - liquidhaskell - - liquidhaskell-cabal-demo - - list-t-attoparsec - - list-t-html-parser - - list-tuple - - list-witnesses - - listenbrainz-client - - live-sequencer - - llvm - - llvm-analysis - - llvm-base-types - - llvm-base-util - - llvm-data-interop - - llvm-dsl - - llvm-extension - - llvm-general - - llvm-general-quote - - llvm-hs-pretty - - llvm-pretty-bc-parser - - llvm-tools - - lmonad-yesod - - lnd-client - - lnurl-authenticator - - local-search - - localize - - locked-poll - - log - - log-effect-syslog - - log-effectful - - log-elasticsearch - - log-postgres - - log-utils - - log4hs - - logging-effect-extra - - logic-classes - - lojban - - lojysamban - - lol - - lol-apps - - lol-benches - - lol-cpp - - lol-repa - - lol-tests - - lol-typing - - loli - - longshot - - loop-effin - - lorentz - - lostcities - - loup - - lrucaching-haxl - - ls-usb - - lsystem - - ltext - - luachunk - - lucid-colonnade - - lucienne - - lui - - luminance-samples - - lvish - - lz4-conduit - - lzma-enumerator - - mDNSResponder-client - - macbeth-lib - - machines-amazonka - - machines-directory - - machines-process - - mackerel-client - - macosx-make-standalone - - magic-wormhole - - magicbane - - magico - - mahoro - - maid - - mailgun - - majordomo - - majority - - make-package - - manatee - - manatee-all - - manatee-anything - - manatee-browser - - manatee-core - - manatee-curl - - manatee-editor - - manatee-filemanager - - manatee-imageviewer - - manatee-ircclient - - manatee-mplayer - - manatee-pdfviewer - - manatee-processmanager - - manatee-reader - - manatee-template - - manatee-terminal - - manatee-welcome - - mangrove - - manifold-random - - manifolds - - marionetta - - markdown-pap - - markdown2svg - - markov-processes - - markup - - marmalade-upload - - marquise - - marvin - - masakazu-bot - - matchers - - math-programming-glpk - - math-programming-tests - - mathblog - - mathlink - - matsuri - - maxent - - maxent-learner-hw-gui - - maxsharing - - mcmc-samplers - - medea - - mediabus-fdk-aac - - mediabus-rtp - - mellon-gpio - - mellon-web - - memcache-conduit - - memis - - memory-cd - - memory-hexstring - - merkle-patricia-db - - meta-par-accelerate - - metaplug - - metar - - metar-http - - metronome - - micro-gateway - - microformats2-types - - midimory - - mighttpd - - minecraft-data - - minesweeper - - mini-egison - - minilight-lua - - minimung - - minioperational - - minirotate - - mismi-kernel - - miss - - miss-porcelain - - missing-py2 - - mixed-strategies - - mkbndl - - mlist - - mmsyn6ukr - - mmsyn6ukr-array - - mmsyn7h - - mmsyn7s - - mmsyn7ukr - - mmtl-base - - moan - - modify-fasta - - modsplit - - modular-prelude-classy - - modularity - - modulo - - mole - - monad-exception - - monad-http - - monad-metrics-extensible - - monad-state - - monad-stlike-stm - - monadiccp-gecode - - monarch - - monetdb-mapi - - mongrel2-handler - - monky - - monoidmap - - monte-carlo - - moo - - moonshine - - morley - - morley-client - - morley-prelude - - morley-upgradeable - - morloc - - morphisms-functors-inventory - - motor-diagrams - - mp - - mp3decoder - - mpdmate - - mprelude - - mpretty - - mprover - - mps - - mptcp - - mptcp-pm - - mptcpanalyzer - - msgpack-aeson - - msgpack-arbitrary - - msgpack-binary - - msgpack-idl - - msgpack-persist - - msgpack-rpc - - msgpack-rpc-conduit - - msgpack-testsuite - - msi-kb-backlit - - mu-avro - - mu-graphql - - mu-grpc-client - - mu-grpc-common - - mu-grpc-server - - mu-kafka - - mu-lens - - mu-optics - - mu-persistent - - mu-prometheus - - mu-protobuf - - mu-rpc - - mu-servant-server - - mu-tracing - - multi-cabal - - multibase - - multifocal - - multihash-serialise - - multilinear-io - - multiplicity - - multipool-persistent - - multipool-persistent-postgresql - - multipool-postgresql-simple - - multirec-alt-deriver - - multirec-binary - - multisetrewrite - - multivariant - - murder - - murmurhash3 - - mushu - - music-graphics - - music-parts - - music-pitch - - music-preludes - - music-score - - music-sibelius - - music-suite - - musicbrainz-email - - musicxml2 - - mutable-iter - - mute-unmute - - mvc-updates - - mvclient - - mwc-random-accelerate - - mxnet-dataiter - - mxnet-examples - - mxnet-nn - - myTestlll - - mybitcoin-sci - - mysnapsession-example - - mysql-haskell-openssl - - mysql-simple-typed - - mywatch - - n2o-web - - nakadi-client - - named-servant-client - - named-servant-server - - named-text - - nats-queue - - natural-number - - nemesis-titan - - nerf - - nero-wai - - nero-warp - - nested-routes - - net-mqtt_0_8_5_0 - - net-spider-cli - - net-spider-pangraph - - net-spider-rpl - - net-spider-rpl-cli - - netcore - - netlines - - netstring-enumerator - - nettle-frp - - nettle-netkit - - nettle-openflow - - network-anonymous-i2p - - network-anonymous-tor - - network-conduit-tls_1_4_0 - - network-connection - - network-enumerator - - network-hans - - network-interfacerequest - - network-minihttp - - network-netpacket - - network-pgi - - network-rpca - - network-stream - - network-topic-models - - network-unexceptional - - network-uri-json - - network-websocket - - neural - - neuron - - newsletter-mailgun - - newsynth - - ngx-export-tools-extra - - nikepub - - nirum - - nix-thunk - - nkjp - - nlp-scores-scripts - - nom - - nomyx-api - - nomyx-core - - nomyx-language - - nomyx-library - - nomyx-server - - nonlinear-optimization-ad - - nonlinear-optimization-backprop - - notmuch-web - - now-haskell - - nri-env-parser - - nri-http - - nri-kafka - - nri-observability - - nri-postgresql - - nri-redis - - nri-test-encoding - - numerals-base - - numeric-kinds - - numeric-ode - - numeric-optimization-backprop - - numerical - - numhask-hedgehog - - numhask-range - - numhask-test - - nyan - - nyan-interpolation - - nyan-interpolation-simple - - nymphaea - - oath - - oauth2-jwt-bearer - - obdd - - oberon0 - - obj - - objectid - - objective - - ochan - - ochintin-daicho - - octane - - octohat - - octopus - - oculus - - odd-jobs - - off-simple - - ogma-cli - - ogma-core - - ogma-language-fret-cs - - ogma-language-fret-reqs - - ois-input-manager - - olwrapper - - om-fork - - om-http - - om-kubernetes - - om-legion - - om-logging - - om-socket - - online - - online-csv - - opc-xml-da-client - - open-adt-tutorial - - opencv-extra - - openpgp - - openpgp-Crypto - - openpgp-crypto-api - - openssh-github-keys - - opentelemetry-lightstep - - opentok - - opentracing-http-client - - opentracing-jaeger - - opentracing-wai - - opentracing-zipkin-common - - opentracing-zipkin-v1 - - opentracing-zipkin-v2 - - oplang - - optima-for-hasql - - optimal-blocks - - optimusprime - - optparse-enum - - orchid - - orchid-demo - - order-maintenance - - orgstat - - osm-download - - otp-authenticator - - outsort - - package-o-tron - - padKONTROL - - pairing - - panda - - pandoc-highlighting-extensions - - pandoc-japanese-filters - - pandora-io - - papa - - papa-base - - papa-base-implement - - papa-export - - papa-implement - - papa-lens - - papa-semigroupoids - - paprika - - parallel-tree-search - - parameterized - - parco-attoparsec - - parco-parsec - - parconc-examples - - parquet-hs - - parse-help - - parsestar - - parsley - - parsley-core - - parsley-garnish - - passman-cli - - patch-image - - path-text-utf8_0_0_2_0 - - patterns - - pcap-enumerator - - pcapng - - pcf - - pdf-slave - - pdfname - - pdfsplit - - peakachu - - pec - - pell - - penny - - penny-bin - - penny-lib - - penrose - - peparser - - perceptual-hash - - perdure - - perf-analysis - - perfecthash - - periodic-client - - periodic-client-exe - - periodic-server - - perm - - permutations - - persistable-record - - persistable-types-HDBC-pg - - persistent-audit - - persistent-event-source - - persistent-eventsource - - persistent-hssqlppp - - persistent-map - - persistent-mtl - - persistent-protobuf - - persistent-relational-record - - persona-idp - - peyotls - - peyotls-codec - - pg-entity - - phatsort - - phladiprelio-general-shared - - phladiprelio-general-simple - - phladiprelio-ukrainian-shared - - phladiprelio-ukrainian-simple - - phonetic-languages-common - - phonetic-languages-constraints - - phonetic-languages-examples - - phonetic-languages-general - - phonetic-languages-permutations - - phonetic-languages-properties - - phonetic-languages-simplified-base - - phonetic-languages-simplified-common - - phonetic-languages-simplified-examples-array - - phonetic-languages-simplified-examples-common - - phonetic-languages-simplified-generalized-examples-array - - phonetic-languages-simplified-generalized-examples-common - - phonetic-languages-simplified-generalized-properties-array - - phonetic-languages-simplified-lists-examples - - phonetic-languages-simplified-properties-array - - phonetic-languages-simplified-properties-lists - - phonetic-languages-simplified-properties-lists-double - - phonetic-languages-ukrainian - - phooey - - pianola - - pier - - ping - - pinpon - - pipe-enumerator - - pipes-attoparsec-streaming - - pipes-bzip - - pipes-cacophony - - pipes-cereal-plus - - pipes-conduit - - pipes-courier - - pipes-extra - - pipes-files - - pipes-fluid - - pipes-illumina - - pipes-key-value-csv - - pipes-misc - - pipes-p2p - - pipes-p2p-examples - - pisigma - - pitchtrack - - piyo - - pkgtreediff - - planet-mitchell - - playlists-http - - plocketed - - plow-log-async - - plugins-auto - - png-file - - pngload - - point-octree - - pointless-lenses - - pointless-rewrite - - poker - - polh-lexicon - - polydata - - polyglot - - polysemy-RandomFu - - polysemy-account - - polysemy-account-api - - polysemy-conc - - polysemy-db - - polysemy-extra - - polysemy-fskvstore - - polysemy-hasql - - polysemy-hasql-test - - polysemy-http - - polysemy-log - - polysemy-log-co - - polysemy-log-di - - polysemy-methodology - - polysemy-methodology-composite - - polysemy-optics - - polysemy-process - - polysemy-scoped-fs - - polysemy-uncontrolled - - polyseq - - polytypeable-utils - - pomodoro - - pontarius-mediaserver - - popenhs - - porcupine-core - - porcupine-http - - porcupine-s3 - - ports - - poseidon - - poseidon-postgis - - postgresql-common-persistent - - postgresql-pure - - postgresql-simple-ltree - - postgresql-simple-queue - - postgresql-simple-typed - - postgresql-tx-query - - postgresql-tx-squeal - - postgresql-tx-squeal-compat-simple - - postgrest - - postmark - - potoki - - potoki-cereal - - potoki-conduit - - potoki-hasql - - potoki-zlib - - powerqueue-sqs - - pqueue-mtl - - practice-room - - pred-set - - pred-trie - - prednote-test - - prefork - - prelate - - presto-hdbc - - pretty-diff - - prettychart - - preview - - primal-memory - - primitive-containers - - primula-board - - primula-bot - - proc - - process-iterio - - process-progress - - process-qq - - process-streaming - - procrastinating-structure - - producer - - product - - prof2dot - - progressbar - - prolog-graph - - prolog-graph-lib - - prologue - - prolude - - prometheus-wai-middleware - - proof-assistant-bot - - propane - - proplang - - prosidyc - - proto-lens-descriptors - - proto-lens-protobuf-types - - proto-lens-protoc - - proto-lens-setup - - proto3-suite - - proto3-wire - - protobuf-native - - protocol-buffers-descriptor - - protocol-buffers-descriptor-fork - - proton - - psql - - ptera - - ptera-core - - ptera-th - - pubsub - - puffytools - - pugs-compat - - pugs-hsregex - - punkt - - puppetresources - - pure-cdb - - pure-priority-queue-tests - - purenix - - purescript - - purescript-iso - - pursuit-client - - push-notify - - push-notify-apn - - push-notify-ccs - - push-notify-general - - puzzle-draw-cmdline - - pvd - - qd-vec - - qhs - - qhull - - qnap-decrypt - - qr-repa - - qtah-cpp-qt5 - - qtah-examples - - qtah-generator - - qtah-qt5 - - quantfin - - quantum-random - - queryparser - - queryparser-demo - - queryparser-hive - - queryparser-presto - - queryparser-vertica - - queuelike - - quickbench - - quickcheck-poly - - quickcheck-regex - - quickcheck-relaxng - - quickcheck-state-machine - - quickcheck-state-machine-distributed - - quicktest - - quipper - - quipper-algorithms - - quipper-all - - quipper-cabal - - quipper-demos - - quipper-language - - quipper-libraries - - quipper-rendering - - quipper-tools - - quipper-utils - - quiver-binary - - quiver-bytestring - - quiver-cell - - quiver-csv - - quiver-enumerator - - quiver-groups - - quiver-http - - quiver-instances - - quiver-interleave - - quiver-sort - - qux - - rabocsv2qif - - rail-compiler-editor - - rails-session - - rainbow-tests - - raketka - - rallod - - randfile - - random-access-file - - random-class - - random-effin - - random-extras - - random-hypergeometric - - range-space - - rasa - - rasa-example-config - - rasa-ext-bufs - - rasa-ext-cmd - - rasa-ext-cursors - - rasa-ext-files - - rasa-ext-logger - - rasa-ext-slate - - rasa-ext-status-bar - - rasa-ext-style - - rasa-ext-views - - rasa-ext-vim - - rascal - - raw-feldspar - - rawr - - razom-text-util - - rbr - - rc - - rdioh - - react-flux-servant - - reactive - - reactive-balsa - - reactive-banana-sdl - - reactive-banana-wx - - reactive-fieldtrip - - reactive-glut - - reactive-jack - - reactive-midyim - - reactor - - readline-in-other-words - - readpyc - - reanimate - - record-aeson - - record-gl - - record-preprocessor - - record-syntax - - records-th - - recursion-schemes-ix - - redHandlers - - redact - - reddit - - redis-io - - redis-resp - - rediscaching-haxl - - reduce-equations - - refh - - reflex-animation - - reflex-backend-wai - - reflex-dom-colonnade - - reflex-dynamic-containers - - reflex-gadt-api - - reflex-ghci - - reflex-gloss-scene - - reflex-localize - - reflex-localize-dom - - reflex-monad-auth - - reflex-potatoes - - reflex-process - - refractor - - reg-alloc-graph-color - - regex-deriv - - regex-genex - - regex-pcre-text - - regex-pderiv - - regex-xmlschema - - regexchar - - regexp-tries - - regional-pointers - - regions-monadsfd - - regions-monadstf - - regions-mtl - - registry-aeson - - registry-hedgehog - - registry-hedgehog-aeson - - registry-messagepack - - registry-options - - regular-extras - - regular-web - - regular-xmlpickler - - reheat - - relational-postgresql8 - - relational-query - - relational-query-HDBC - - relational-query-postgresql-pure - - relational-record - - relational-record-examples - - relational-schemas - - relative-date - - remote-json - - remote-json-client - - remote-json-server - - remotion - - repa-algorithms - - repa-array - - repa-convert - - repa-fftw - - repa-flow - - repa-io - - repa-plugin - - repa-sndfile - - repa-stream - - repa-v4l2 - - replicant - - repr - - representable-tries - - req_3_13_1 - - reserve - - resin - - resistor-cube - - resource-simple - - rest-client - - rest-core - - rest-example - - rest-gen - - rest-happstack - - rest-snap - - rest-stringmap - - rest-types - - rest-wai - - restful-snap - - restricted-workers - - rethinkdb-model - - rethinkdb-wereHamster - - retroclash-lib - - retroclash-sim - - rewrite - - rewriting - - rezoom - - rfc-env - - rfc-http-client - - rfc-psql - - rfc-redis - - rfc-servant - - rhine-bayes - - rhine-gloss - - rhine-terminal - - rhythm-game-tutorial - - rib - - ribosome - - ribosome-app - - ribosome-host - - ribosome-host-test - - ribosome-root - - ribosome-test - - ridley-extras - - rio-process-pool - - riot - - ripple - - ripple-federation - - risc-v - - rivet - - rlwe-challenges - - rmonad - - rncryptor - - rob - - robot - - roc-cluster-demo - - rock - - roguestar-engine - - roguestar-gl - - roguestar-glut - - rollbar-cli - - rollbar-wai - - rollbar-yesod - - ron-rdt - - ron-schema - - ron-storage - - rose-trie - - roshask - - rosmsg-bin - - rounded-hw - - roundtrip-xml - - route-generator - - route-planning - - row - - rpc - - rpf - - rsagl - - rsagl-frp - - rsagl-math - - rtcm - - ruler - - ruler-core - - runtime-arbitrary - - rv - - s-expression - - safe-coloured-text-layout-gen - - safe-coupling - - safe-plugins - - safer-file-handles - - safer-file-handles-bytestring - - safer-file-handles-text - - sai-shape-syb - - sak - - salak-toml - - salak-yaml - - saltine-quickcheck - - salvia - - salvia-demo - - salvia-extras - - salvia-sessions - - salvia-websocket - - samtools - - samtools-conduit - - samtools-enumerator - - samtools-iteratee - - sarsi - - sasl - - sat-micro-hs - - satchmo-examples - - satchmo-funsat - - satchmo-toysat - - sauron - - sbv-program - - sbvPlugin - - sc2-lowlevel - - sc2-support - - sc2hs - - sc3-rdu - - scalable-server - - scalp-webhooks - - scalpel-search - - scan-metadata - - scan-vector-machine - - scgi - - scheduling - - schematic - - scholdoc - - scholdoc-citeproc - - scholdoc-texmath - - scion - - scion-browser - - scope - - scope-cairo - - scotty-fay - - scotty-form - - scotty-hastache - - scotty-haxl - - scp-streams - - scrabble-bot - - scrapbook - - scroll - - scubature - - sdl2-sprite - - sdp-binary - - sdp-deepseq - - sdp-hashable - - sdp-io - - sdp-quickcheck - - sdp4bytestring - - sdp4text - - sdp4unordered - - sdp4vector - - seakale-postgresql - - seakale-tests - - secrm - - sednaDBXML - - seitz-symbol - - selda-json - - selda-sqlite - - selenium-server - - self-extract - - semantic-source - - semi-iso - - semiring - - semiring-num - - sensenet - - sentence-jp - - sentiwordnet-parser - - seqaid - - seqloc - - seqloc-datafiles - - sequor - - serpentine - - serv - - serv-wai - - servant-auth-token - - servant-auth-token-acid - - servant-auth-token-api - - servant-auth-token-leveldb - - servant-auth-token-persistent - - servant-auth-token-rocksdb - - servant-cli - - servant-client-namedargs - - servant-csharp - - servant-db-postgresql - - servant-ede - - servant-ekg - - servant-examples - - servant-haxl-client - - servant-js - - servant-matrix-param - - servant-multipart - - servant-multipart-client - - servant-oauth2 - - servant-oauth2-examples - - servant-openapi3 - - servant-options - - servant-polysemy - - servant-postgresql - - servant-pushbullet-client - - servant-queryparam-openapi3 - - servant-rate-limit - - servant-reason - - servant-ruby - - servant-serialization - - servant-server-namedargs - - servant-snap - - servant-streaming-client - - servant-streaming-docs - - servant-streaming-server - - servant-subscriber - - servant-swagger-tags - - servant-to-elm - - servant-typescript - - servant-util - - servant-util-beam-pg - - servant-waargonaut - - servant-zeppelin-client - - servant-zeppelin-server - - servant-zeppelin-swagger - - serverless-haskell - - sessiontypes-distributed - - sgf - - sgrep - - shady-gen - - shady-graphics - - shake-bindist - - shake-minify-css - - shake-pack - - shake-plus-extended - - shakebook - - shaker - - shapefile - - shapely-data - - sheets - - shelduck - - shellmate-extras - - shine-varying - - short-vec-lens - - showdown - - shpider - - shuffle - - si-clock - - sibe - - sigma-ij - - signals - - signature - - signify-hs - - silvi - - simgi - - simple - - simple-c-value - - simple-firewire - - simple-log-syslog - - simple-nix - - simple-pascal - - simple-postgresql-orm - - simple-session - - simpleirc-lens - - simseq - - siphon - - siren-json - - sirkel - - sitemap - - skeleton - - skeletons - - sketch-frp-copilot - - skylark-client - - slate - - slip32 - - smallcheck-laws - - smallcheck-lens - - smallstring - - smarties - - smartword - - smash-aeson - - smash-lens - - smash-microlens - - smash-optics - - smcdel - - smith-cli - - smith-client - - smt - - smtlib-backends-process - - smtlib-backends-tests - - smtlib-backends-z3 - - smtlib2-debug - - smtlib2-pipe - - smtlib2-quickcheck - - smtlib2-timing - - smtp2mta - - snap-elm - - snap-extras - - snaplet-actionlog - - snaplet-customauth - - snaplet-fay - - snaplet-hasql - - snaplet-haxl - - snaplet-hdbc - - snaplet-lss - - snaplet-mongoDB - - snaplet-oauth - - snaplet-postmark - - snaplet-redson - - snaplet-rest - - snaplet-riak - - snaplet-sedna - - snaplet-stripe - - snaplet-tasks - - snaplet-wordpress - - sndfile-enumerators - - sneakyterm - - sneathlane-haste - - snm - - snmp - - snow-white - - snowflake-core - - snowflake-server - - snumber - - sock2stream - - socket-io - - socketson - - solga-swagger - - solr - - sonic-visualiser - - souffle-dsl - - source-code-server - - sparkle - - sparrow - - sparsebit - - sparser - - spartacon - - spata - - spatial-math_0_5_0_1 - - specialize-th - - spectral-clustering - - speculation-transformers - - speechmatics - - spelling-suggest - - sphero - - sphinx-cli - - spice - - spike - - spline3 - - splines - - sprinkles - - sproxy - - sproxy-web - - sproxy2 - - sqel - - sql-simple-mysql - - sql-simple-pool - - sql-simple-postgresql - - sql-simple-sqlite - - sqlite-simple-typed - - sqsd-local - - squeal-postgresql - - squeal-postgresql-ltree - - squeal-postgresql-uuid-ossp - - squeeze - - sr-extra - - srt-formatting - - sscgi - - sshd-lint - - sssp - - sstable - - stable-tree - - stack-hpc-coveralls - - stack-network - - stack-run-auto - - stackage - - stackage-build-plan - - stackage-cabal - - stackage-curator - - stackage-query - - stackage-sandbox - - stackage-setup - - stackage-upload - - stackage2nix - - stackctl - - stan - - starrover2 - - stateful-mtl - - static-closure - - statsd-client - - statsdi - - steeloverseer - - stern-brocot - - stm-actor - - stm-supply - - stmcontrol - - storablevector-streamfusion - - stratum-tool - - stratux - - stratux-demo - - stratux-http - - stratux-websockets - - streaming-base64 - - streaming-fft - - streaming-process - - strelka - - strelka-wai - - strict-containers-lens - - strict-containers-serialise - - strict-data - - string-interpreter - - string-typelits - - stripe-haskell - - stripe-http-client - - stripe-http-streams - - stripe-tests - - structural-induction - - structured-mongoDB - - stunts - - stutter - - subhask - - substring-parser - - sugar-data - - sugar-json - - sugar-scheme - - summoner-tui - - sunroof-examples - - sunroof-server - - supercollider-ht - - supercollider-midi - - superconstraints - - supernova - - sv - - sv-cassava - - sv-svfactor - - svg2q - - svgone - - swapper - - sweet-egison - - switch - - sydtest-amqp - - sydtest-webdriver-screenshot - - sydtest-webdriver-yesod - - sydtest-yesod - - sylvia - - symantic-atom - - symantic-http-demo - - symantic-http-test - - symantic-lib - - symbiote - - symmetry-operations-symbols - - syncthing-hs - - syntax - - syntax-attoparsec - - syntax-example - - syntax-example-json - - syntax-pretty - - syntax-printer - - syntaxnet-haskell - - synthesizer-llvm - - sys-process - - systemd-api - - systemstats - - t3-client - - ta - - tableaux - - tag-stream - - tagged-list - - tagged-th - - tagsoup-navigate - - tagstew - - tahoe-chk - - tahoe-great-black-swamp - - tahoe-ssk - - tak-ai - - tal - - talash - - tamarin-prover - - tamarin-prover-term - - tamarin-prover-theory - - tar-bytestring - - target - - task - - task-distribution - - tasty-bdd - - tasty-checklist - - tasty-groundhog-converters - - tasty-hspec_1_2_0_4 - - tasty-integrate - - tasty-jenkins-xml - - tasty-laws - - tasty-lens - - tasty-sugar - - tateti-tateti - - tbox - - tcache-AWS - - tccli - - techlab - - telegram-bot - - telegram-bot-api - - telegram-bot-simple - - telegram-raw-api - - temporal-csound - - ten-lens - - ten-unordered-containers - - tensorflow-opgen - - tensorflow-proto - - terminal-text - - terrahs - - test-sandbox-compose - - test-simple - - testbench - - text-json-qq - - text-locale-encoding - - text-plus - - text-xml-generic - - textmatetags - - th-alpha - - th-context - - th-instances - - th-typegraph - - theoremquest-client - - thimk - - threaded - - thumbnail-polish - - tic-tac-toe - - tickle - - tighttp - - timberc - - time-exts - - time-http - - time-io-access - - time-warp - - timeprint - - timezone-unix - - tinkoff-invest-sdk - - tintin - - tinytools - - tinytools-vty - - tip-haskell-frontend - - tip-lib - - titan - - tlex - - tlex-core - - tlex-debug - - tlex-encoding - - tlex-th - - tls-extra - - tmpl - - tn - - to-string-instances - - toboggan - - todos - - toktok - - tomlcheck - - tonatona - - tonatona-google-server-api - - tonatona-logger - - tonatona-persistent-postgresql - - tonatona-persistent-sqlite - - tonatona-servant - - too-many-cells - - top - - topaz - - total-map - - toxcore - - toxcore-c - - toysolver - - tpar - - tpb - - trajectory - - trans-fx-data - - trans-fx-io - - transf - - transfer-db - - transformations - - transformers-convert - - transient-universe - - transient-universe-tls - - translate-cli - - trasa - - trasa-client - - trasa-extra - - trasa-form - - trasa-reflex - - trasa-server - - trasa-th - - traversal-template - - treemap-html-tools - - treersec - - trek-app - - trek-db - - triangulation - - trimpolya - - trurl - - tsession-happstack - - tsweb - - tuntap-simple - - tup-functor - - tuple-append-instances - - tuple-ops - - turingMachine - - twee - - tweet-hs - - twentefp-eventloop-graphics - - twentefp-eventloop-trees - - twentefp-graphs - - twentefp-rosetree - - twentefp-trees - - twentyseven - - twidge - - twilight-stm - - twill - - twitter-enumerator - - txt - - type-assertions - - type-cache - - type-cereal - - type-combinators-quote - - type-combinators-singletons - - type-digits - - type-ord - - type-ord-spine-cereal - - type-sets - - type-structure - - type-sub-th - - typed-admin - - typed-encoding-encoding - - typed-streams - - typedflow - - typelevel - - typesafe-precure - - typescript-docs - - typson-beam - - typson-esqueleto - - typson-selda - - u2f - - uber - - ucam-webauth - - ucd - - udbus-model - - uhc-light - - uhc-util - - ukrainian-phonetics-basic - - unagi-bloomfilter - - unbound - - uni-events - - uni-graphs - - uni-htk - - uni-posixutil - - uni-reactor - - uni-uDrawGraph - - unicode-normalization - - unicoder - - uniform-http - - uniform-io - - uniform-latex2pdf - - uniform-pandoc - - uniform-shake - - uniform-watch - - uniqueness-periods - - uniqueness-periods-vector-examples - - uniqueness-periods-vector-filters - - uniqueness-periods-vector-general - - uniqueness-periods-vector-properties - - unitym-servant - - universal - - universe - - universe-dependent-sum - - universe-th - - unix-fcntl - - unpacked-these - - unpacked-validation - - unparse-attoparsec - - unscramble - - up - - urbit-airlock - - urbit-api - - ureader - - urembed - - uri-enumerator - - uri-enumerator-file - - urlpath - - usb - - usb-enumerator - - usb-hid - - usb-id-database - - usb-iteratee - - usb-safe - - utf - - util-exception - - util-primitive-control - - util-universe - - uu-cco-examples - - uu-cco-hut-parsing - - uu-cco-uu-parsinglib - - uu-options - - uuid-crypto - - uvector-algorithms - - v4l2 - - v4l2-examples - - vabal - - vacuum-cairo - - vacuum-graphviz - - vacuum-opengl - - vacuum-ubigraph - - valid - - variable-media-field-dhall - - variable-media-field-optics - - variable-precision - - vault-tool-server - - vault-trans - - vaultaire-common - - vcache-trie - - vcard - - vcsgui - - vect-floating-accelerate - - vector-instances-collections - - vector-text - - vectortiles - - venzone - - verdict-json - - verifiable-expressions - - verismith - - versioning-servant - - vessel - - vflow-types - - vformat-aeson - - vformat-time - - vfr-waypoints - - vigilance - - vimeta - - vinyl-generics - - vinyl-operational - - vision - - visual-graphrewrite - - vocoder - - vocoder-audio - - vocoder-conduit - - vocoder-dunai - - voicebase - - vorbiscomment - - vpq - - vty-ui-extras - - waargonaut - - wahsp - - wai-devel - - wai-dispatch - - wai-frontend-monadcgi - - wai-handler-hal - - wai-handler-snap - - wai-hastache - - wai-log - - wai-middleware-brotli - - wai-middleware-cache - - wai-middleware-cache-redis - - wai-middleware-consul - - wai-middleware-content-type - - wai-middleware-rollbar - - wai-middleware-route - - wai-middleware-throttle - - wai-middleware-verbs - - wai-route - - wai-routing - - wai-session-alt - - wai-session-tokyocabinet - - wai-thrift - - wai-transformers - - waldo - - warp-grpc - - warp-quic - - warped - - wavesurfer - - wavy - - weatherhs - - web-inv-route - - web-mongrel2 - - web-rep - - web-routes-regular - - web-routing - - web3 - - web3-bignum - - web3-crypto - - web3-ethereum - - web3-polkadot - - web3-provider - - web3-solidity - - webcloud - - webcrank-wai - - webdriver-w3c - - webgear-openapi - - webgear-server - - webify - - webserver - - websockets-rpc - - websockets-simple - - websockets-simple-extra - - weierstrass-functions - - weighted - - werewolf-slack - - wgpu-hs - - what4 - - wheb-mongo - - wheb-redis - - wheb-strapped - - whitespace - - wholepixels - - wikipedia4epub - - wild-bind-indicator - - wild-bind-task-x11 - - wild-bind-x11 - - winery - - winio - - wire-streams - - wl-pprint-ansiterm - - wl-pprint-terminfo - - wlc-hs - - wobsurv - - wolf - - word - - workflow-extra - - workflow-pure - - workflow-types - - wraxml - - wrecker - - wrecker-ui - - wright - - writer-cps-full - - wsjtx-udp - - wtk-gtk - - wu-wei - - wuerfelschlange - - wumpus-basic - - wumpus-drawing - - wumpus-microprint - - wumpus-tree - - wuss_2_0_1_4 - - wx - - wxAsteroids - - wxFruit - - wxSimpleCanvas - - wxc - - wxcore - - wxhnotepad - - wxturtle - - wyvern - - xdcc - - xdg-basedir-compliant - - xhb-atom-cache - - xhb-ewmh - - xml-catalog - - xml-enumerator - - xml-enumerator-combinators - - xml-isogen - - xml-monad - - xml-pipe - - xml-push - - xml-query-xml-conduit - - xml-tydom-conduit - - xml2x - - xmltv - - xmms2-client - - xmms2-client-glib - - xmonad-contrib-bluetilebranch - - xmpipe - - xournal-builder - - xournal-convert - - xournal-parser - - xournal-render - - xournal-types - - xrefcheck - - xtc - - yajl-enumerator - - yam - - yam-datasource - - yam-job - - yam-logger - - yam-redis - - yam-servant - - yam-transaction - - yam-transaction-odbc - - yam-transaction-postgresql - - yam-web - - yaml-rpc-scotty - - yaml-rpc-snap - - yaml-streamly - - yarr-image-io - - yasi - - yavie - - ycextra - - yeamer - - yeshql - - yesod-alerts - - yesod-articles - - yesod-auth-ldap - - yesod-colonnade - - yesod-continuations - - yesod-examples - - yesod-fay - - yesod-mangopay - - yesod-paypal-rest - - yesod-platform - - yesod-purescript - - yesod-raml-bin - - yesod-raml-docs - - yesod-raml-mock - - yesod-routes-typescript - - yesod-session-redis - - yesod-worker - - yi - - yi-contrib - - yi-core - - yi-dynamic-configuration - - yi-emacs-colours - - yi-frontend-pango - - yi-frontend-vty - - yi-fuzzy-open - - yi-ireader - - yi-keymap-cua - - yi-keymap-emacs - - yi-keymap-vim - - yi-misc-modes - - yi-mode-haskell - - yi-mode-javascript - - yi-monokai - - yi-snippet - - yi-solarized - - yi-spolsky - - yjftp - - yjftp-libs - - yoko - - york-lava - - yql - - yu-launch - - yuuko - - zasni-gerna - - zephyr-copilot - - zerobin - - zeromq3-conduit - - zeroth - - zeugma - - zifter-cabal - - zifter-git - - zifter-google-java-format - - zifter-hindent - - zifter-hlint - - zifter-stack - - zipper - - zippo - - ziptastic-client - - zlib-enum - - zm - - zmcat - - zoom-cache - - zoom-cache-pcm - - zoom-cache-sndfile - - zuramaru +dont-distribute-packages: [] diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index a6c28d9a3852..9f938591c9a0 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -20,8 +20,6 @@ self: { ]; description = "Haskell package for easy integration with the 2captcha API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "3d-graphics-examples" = callPackage @@ -35,8 +33,6 @@ self: { executableHaskellDepends = [ base GLUT OpenGL random ]; description = "Examples of 3D graphics programming with OpenGL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "3dmodels" = callPackage @@ -50,8 +46,6 @@ self: { ]; description = "3D model parsers"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "4Blocks" = callPackage @@ -67,7 +61,6 @@ self: { ]; description = "A tetris-like game (works with GHC 6.8.3 and Gtk2hs 0.9.13)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "4Blocks"; }) {}; @@ -80,8 +73,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Abstract Application Interface"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ABList" = callPackage @@ -132,8 +123,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Detect which OS you're running on"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "AC-Colour" = callPackage @@ -156,8 +145,6 @@ self: { libraryHaskellDepends = [ array base gtk ]; description = "GTK+ pixel plotting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "AC-HalfInteger" = callPackage @@ -171,8 +158,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Efficient half-integer type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "AC-MiniTest" = callPackage @@ -186,8 +171,6 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "A simple test framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "AC-PPM" = callPackage @@ -223,8 +206,6 @@ self: { libraryHaskellDepends = [ ansi-terminal base ]; description = "Trivial wrapper over ansi-terminal"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "AC-VanillaArray" = callPackage @@ -236,8 +217,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Immutable arrays with plain integer indicies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "AC-Vector" = callPackage @@ -251,8 +230,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Efficient geometric vectors and transformations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "AC-Vector-Fancy" = callPackage @@ -264,7 +241,6 @@ self: { libraryHaskellDepends = [ AC-Angle AC-Vector base ]; description = "Fancy type-system stuff for AC-Vector"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ACME" = callPackage @@ -282,8 +258,6 @@ self: { ]; description = "Essential features"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ADPfusion" = callPackage @@ -311,7 +285,6 @@ self: { ]; description = "Efficient, high-level dynamic programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ADPfusionForest" = callPackage @@ -338,7 +311,6 @@ self: { benchmarkHaskellDepends = [ base criterion ForestStructures ]; description = "Dynamic programming on tree and forest structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ADPfusionSet" = callPackage @@ -363,7 +335,6 @@ self: { ]; description = "Dynamic programming for Set data structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "AERN-Basics" = callPackage @@ -383,9 +354,7 @@ self: { executableHaskellDepends = [ base containers directory ]; description = "foundational type classes for approximating exact real numbers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "toolAERN-bench-csv-to-gnuplot"; - broken = true; }) {}; "AERN-Net" = callPackage @@ -401,7 +370,6 @@ self: { ]; description = "Compositional lazy dataflow networks for exact real number computation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "AERN-Real" = callPackage @@ -418,7 +386,6 @@ self: { ]; description = "arbitrary precision real interval arithmetic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "AERN-Real-Double" = callPackage @@ -442,7 +409,6 @@ self: { ]; description = "arbitrary precision real interval arithmetic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "AERN-Real-Interval" = callPackage @@ -459,7 +425,6 @@ self: { ]; description = "arbitrary precision real interval arithmetic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "AERN-RnToRm" = callPackage @@ -476,7 +441,6 @@ self: { ]; description = "polynomial function enclosures (PFEs) approximating exact real functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "AERN-RnToRm-Plot" = callPackage @@ -494,7 +458,6 @@ self: { ]; description = "GL plotting of polynomial function enclosures (PFEs)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "AES" = callPackage @@ -536,8 +499,6 @@ self: { ]; description = "A library for writing AGI scripts for Asterisk"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ALUT" = callPackage @@ -569,8 +530,6 @@ self: { ]; description = "Low-level bindings for Asterisk Manager Interface (AMI)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ANum" = callPackage @@ -598,7 +557,6 @@ self: { ]; description = "ASN.1 support for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "AVar" = callPackage @@ -633,7 +591,6 @@ self: { libraryHaskellDepends = [ AbortT-transformers base monads-tf ]; description = "Monads-tf instances for the AbortT monad transformer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "AbortT-mtl" = callPackage @@ -645,7 +602,6 @@ self: { libraryHaskellDepends = [ AbortT-transformers base mtl ]; description = "mtl instances for the AbortT monad transformer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "AbortT-transformers" = callPackage @@ -663,8 +619,6 @@ self: { ]; description = "A monad and monadic transformer providing \"abort\" functionality"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ActionKid" = callPackage @@ -688,9 +642,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "An easy-to-use video game framework for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "actionkid"; - broken = true; }) {}; "Adaptive" = callPackage @@ -706,9 +658,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Library for incremental computing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "spreadsheet"; - broken = true; }) {}; "Adaptive-Blaisorblade" = callPackage @@ -723,9 +673,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Library for incremental computing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "spreadsheet"; - broken = true; }) {}; "Advgame" = callPackage @@ -739,7 +687,6 @@ self: { executableHaskellDepends = [ base haskell98 mtl ]; description = "Lisperati's adventure game in Lisp translated to Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "advgame"; }) {}; @@ -770,7 +717,6 @@ self: { ]; description = "Assessment services for the Advise-Me project"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "AesonBson" = callPackage @@ -806,8 +752,6 @@ self: { ]; description = "Generator-generator for QuickCheck"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Agda" = callPackage @@ -861,9 +805,7 @@ self: { executableHaskellDepends = [ Agda base ]; description = "Command-line program for type-checking and compiling Agda programs"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "agda"; - broken = true; }) {}; "AhoCorasick" = callPackage @@ -878,8 +820,6 @@ self: { ]; description = "Aho-Corasick string matching algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "AlanDeniseEricLauren" = callPackage @@ -901,8 +841,6 @@ self: { benchmarkHaskellDepends = [ base containers criterion ]; description = "Find the minimal subset/submap satisfying some property"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "AlgoRhythm" = callPackage @@ -931,7 +869,6 @@ self: { ]; description = "Algorithmic music composition"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "music-exe"; }) {}; @@ -946,9 +883,7 @@ self: { executableHaskellDepends = [ base containers mtl pretty ]; description = "Example implementation of Algorithm W for Hindley-Milner type inference"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "AlgorithmW"; - broken = true; }) {}; "AlignmentAlgorithms" = callPackage @@ -965,7 +900,6 @@ self: { ]; description = "Collection of alignment algorithms"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "Allure" = callPackage @@ -994,7 +928,6 @@ self: { description = "Near-future Sci-Fi roguelike and tactical squad combat game"; license = lib.licenses.agpl3Plus; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; mainProgram = "Allure"; }) {}; @@ -1015,7 +948,6 @@ self: { ]; description = "Android view hierarchy importer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "AndroidViewHierarchyImporter"; }) {}; @@ -1028,8 +960,6 @@ self: { libraryHaskellDepends = [ base random ]; description = "Updated version of Yampa: a library for programming hybrid systems"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Annotations" = callPackage @@ -1042,7 +972,6 @@ self: { testHaskellDepends = [ base mtl multirec parsec ]; description = "Constructing, analyzing and destructing annotated trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Ansi2Html" = callPackage @@ -1071,8 +1000,6 @@ self: { ]; description = "A simple music library with the capability of generating .ly and .mid files."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ApplePush" = callPackage @@ -1091,7 +1018,6 @@ self: { executableHaskellDepends = [ base ]; description = "Library for Apple Push Notification Service"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "applepushtest"; }) {}; @@ -1104,8 +1030,6 @@ self: { doHaddock = false; description = "Call AppleScript from Haskell, and then call back into Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ApproxFun-hs" = callPackage @@ -1117,8 +1041,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Function approximation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ArrayRef" = callPackage @@ -1130,8 +1052,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Unboxed references, dynamic arrays and more"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ArrowVHDL" = callPackage @@ -1143,8 +1063,6 @@ self: { libraryHaskellDepends = [ base process ]; description = "A library to generate Netlist code from Arrow descriptions"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "AspectAG" = callPackage @@ -1163,8 +1081,6 @@ self: { ]; description = "Strongly typed Attribute Grammars implemented using type-level programming"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "AttoBencode" = callPackage @@ -1185,8 +1101,6 @@ self: { ]; description = "Fast Bencode encoding and parsing library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "AttoJson" = callPackage @@ -1203,7 +1117,6 @@ self: { ]; description = "Simple lightweight JSON parser, generator & manipulator based on ByteString"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Attrac" = callPackage @@ -1219,9 +1132,7 @@ self: { ]; description = "Visualisation of Strange Attractors in 3-Dimensions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Attrac"; - broken = true; }) {}; "Aurochs" = callPackage @@ -1235,9 +1146,7 @@ self: { executableHaskellDepends = [ base containers parsec pretty ]; description = "Yet another parser generator for C/C++"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Aurochs"; - broken = true; }) {}; "AutoForms" = callPackage @@ -1253,7 +1162,6 @@ self: { ]; description = "GUI library based upon generic programming (SYB3)"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "AvlTree" = callPackage @@ -1265,7 +1173,6 @@ self: { libraryHaskellDepends = [ base COrdering ]; description = "Balanced binary trees using the AVL algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "BASIC" = callPackage @@ -1277,7 +1184,6 @@ self: { libraryHaskellDepends = [ base containers llvm random timeit ]; description = "Embedded BASIC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "BCMtools" = callPackage @@ -1304,9 +1210,7 @@ self: { ]; description = "Big Contact Map Tools"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "bcmtools"; - broken = true; }) {}; "BNFC" = callPackage @@ -1378,8 +1282,6 @@ self: { ]; description = "Translations of classic Truth Maintenance Systems"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Baggins" = callPackage @@ -1393,8 +1295,6 @@ self: { libraryHaskellDepends = [ base cairo containers mtl ]; description = "Tools for self-assembly"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Bang" = callPackage @@ -1410,8 +1310,6 @@ self: { ]; description = "A Drum Machine DSL for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Barracuda" = callPackage @@ -1440,7 +1338,6 @@ self: { ]; description = "An ad-hoc P2P chat program"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "Barracuda"; }) {}; @@ -1455,9 +1352,7 @@ self: { executableHaskellDepends = [ array base mtl random ]; description = "An interpreter for the Befunge-93 Programming Language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Befunge93"; - broken = true; }) {}; "BenchmarkHistory" = callPackage @@ -1475,8 +1370,6 @@ self: { ]; description = "Benchmark functions with history"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "BerkeleyDB" = callPackage @@ -1503,8 +1396,6 @@ self: { librarySystemDepends = [ db dbxml xercesc xqilla ]; description = "Berkeley DB XML binding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) db; inherit (pkgs) dbxml; inherit (pkgs) xercesc; inherit (pkgs) xqilla;}; @@ -1517,7 +1408,6 @@ self: { libraryHaskellDepends = [ base besout ]; description = "Factorization of polynomials over finite field"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "BiGUL" = callPackage @@ -1532,8 +1422,6 @@ self: { ]; description = "The Bidirectional Generic Update Language"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "BigPixel" = callPackage @@ -1566,8 +1454,6 @@ self: { ]; description = "Source-to-source plugin for enhancing EDSLs with static annotations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Binpack" = callPackage @@ -1596,7 +1482,6 @@ self: { ]; description = "Libary for Hidden Markov Models in HMMER3 format"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "Biobase" = callPackage @@ -1618,7 +1503,6 @@ self: { ]; description = "Base library for bioinformatics"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "BiobaseBlast" = callPackage @@ -1645,7 +1529,6 @@ self: { ]; description = "BLAST-related tools"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "BiobaseDotP" = callPackage @@ -1657,7 +1540,6 @@ self: { libraryHaskellDepends = [ base bytestring iteratee ]; description = "Vienna / DotBracket / ExtSS parsers"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "BiobaseENA" = callPackage @@ -1680,7 +1562,6 @@ self: { ]; description = "European Nucleotide Archive data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "BiobaseEnsembl" = callPackage @@ -1698,7 +1579,6 @@ self: { ]; description = "Ensembl related datastructures and functions"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "BiobaseFR3D" = callPackage @@ -1714,7 +1594,6 @@ self: { ]; description = "Importer for FR3D resources"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "BiobaseFasta" = callPackage @@ -1745,7 +1624,6 @@ self: { ]; description = "streaming FASTA parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "fastaextract"; }) {}; @@ -1764,7 +1642,6 @@ self: { ]; description = "Libary to interface with the Bioinformatics HTTP services - Entrez Ensembl"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "BiobaseHTTPTools" = callPackage @@ -1785,7 +1662,6 @@ self: { ]; description = "Tools to query Bioinformatics HTTP services e.g. Entrez, Ensembl."; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "BiobaseInfernal" = callPackage @@ -1824,7 +1700,6 @@ self: { ]; description = "Infernal data structures and tools"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "cmsearchFilter"; }) {}; @@ -1837,7 +1712,6 @@ self: { libraryHaskellDepends = [ base bytestring containers iteratee ]; description = "Multiple Alignment Format"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "BiobaseNewick" = callPackage @@ -1867,9 +1741,7 @@ self: { ]; description = "Newick file format parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "TestForestStructure"; - broken = true; }) {}; "BiobaseTrainingData" = callPackage @@ -1889,7 +1761,6 @@ self: { executableHaskellDepends = [ cmdargs ]; description = "RNA folding training data"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "MkTrainingData"; }) {}; @@ -1908,7 +1779,6 @@ self: { ]; description = "Import Turner RNA parameters"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "BiobaseTypes" = callPackage @@ -1942,7 +1812,6 @@ self: { ]; description = "Collection of types for bioinformatics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "BiobaseVienna" = callPackage @@ -1958,7 +1827,6 @@ self: { ]; description = "Import Vienna energy parameters"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "BiobaseXNA" = callPackage @@ -2000,7 +1868,6 @@ self: { ]; description = "Efficient RNA/DNA/Protein Primary/Secondary Structure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "SubOptDistance"; }) {}; @@ -2015,7 +1882,6 @@ self: { executableHaskellDepends = [ base haskell98 ]; description = "A preprocessor for Bird-style Literate Haskell comments with Haddock markup"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "BirdPP"; }) {}; @@ -2036,8 +1902,6 @@ self: { transformers vector ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "BitSyntax" = callPackage @@ -2051,8 +1915,6 @@ self: { ]; description = "A module to aid in the (de)serialisation of binary data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Bitly" = callPackage @@ -2064,7 +1926,6 @@ self: { libraryHaskellDepends = [ base HTTP json2 ]; description = "A library to access bit.ly URL shortener."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Blammo" = callPackage @@ -2106,7 +1967,6 @@ self: { ]; description = "Libary to interface with the NCBI blast REST interface"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "Blobs" = callPackage @@ -2128,7 +1988,6 @@ self: { ]; description = "Diagram editor"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "blobs"; }) {}; @@ -2156,9 +2015,7 @@ self: { executableHaskellDepends = [ base cmdargs ]; description = "A tool for posting Haskelly articles to blogs"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "BlogLiterately"; - broken = true; }) {}; "BlogLiterately-diagrams" = callPackage @@ -2180,7 +2037,6 @@ self: { executableHaskellDepends = [ base BlogLiterately ]; description = "Include images in blog posts with inline diagrams code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "BlogLiteratelyD"; }) {}; @@ -2210,9 +2066,7 @@ self: { ]; description = "A markdown-like markup language designed for blog posts"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "Blogdown"; - broken = true; }) {}; "BluePrintCSS" = callPackage @@ -2235,8 +2089,6 @@ self: { doHaddock = false; description = "Preview of a new build system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Bookshelf" = callPackage @@ -2257,7 +2109,6 @@ self: { testHaskellDepends = [ base process ]; description = "A simple document organizer with some wiki functionality"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "bookshelf"; }) {}; @@ -2299,8 +2150,6 @@ self: { ]; description = "Static text template generation library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "BufferedSocket" = callPackage @@ -2312,8 +2161,6 @@ self: { libraryHaskellDepends = [ base bytestring network text ]; description = "A socker wrapper that makes the IO of sockets much cleaner"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Buster" = callPackage @@ -2338,9 +2185,7 @@ self: { ]; description = "Hits a set of urls periodically to bust caches"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "buster"; - broken = true; }) {}; "C-structs" = callPackage @@ -2359,8 +2204,6 @@ self: { ]; description = "C-Structs implementation for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "CBOR" = callPackage @@ -2381,7 +2224,6 @@ self: { ]; description = "Encode/Decode values to/from CBOR"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "CC-delcont" = callPackage @@ -2410,7 +2252,6 @@ self: { doHaddock = false; description = "Three new monad transformers for multi-prompt delimited control"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "CC-delcont-cxe" = callPackage @@ -2422,8 +2263,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "CC-delcont-exc" = callPackage @@ -2435,8 +2274,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "CC-delcont-ref" = callPackage @@ -2448,8 +2285,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control using refercence cells"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "CC-delcont-ref-tf" = callPackage @@ -2461,8 +2296,6 @@ self: { libraryHaskellDepends = [ base ref-tf transformers ]; description = "A monad transformers for multi-prompt delimited control using refercence cells"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "CCA" = callPackage @@ -2480,9 +2313,7 @@ self: { executableToolDepends = [ happy ]; description = "preprocessor and library for Causal Commutative Arrows (CCA)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ccap"; - broken = true; }) {}; "CHXHtml" = callPackage @@ -2512,8 +2343,6 @@ self: { ]; description = "Cursor Library for A Structured Editor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "CLI" = callPackage @@ -2526,8 +2355,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "CLI tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "CMCompare" = callPackage @@ -2546,7 +2373,6 @@ self: { executableHaskellDepends = [ cmdargs ]; description = "Infernal covariance model comparison"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "CMCompare"; }) {}; @@ -2564,8 +2390,6 @@ self: { ]; description = "cwmwl udp message queue"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "COrdering" = callPackage @@ -2577,8 +2401,6 @@ self: { libraryHaskellDepends = [ base ]; description = "An algebraic data type similar to Prelude Ordering"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "CPBrainfuck" = callPackage @@ -2593,7 +2415,6 @@ self: { executableHaskellDepends = [ base haskell98 ]; description = "A simple Brainfuck interpretter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bf"; }) {}; @@ -2638,7 +2459,6 @@ self: { ]; description = "Firing rules semantic of CSPM"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "CSPM-Frontend" = callPackage @@ -2656,8 +2476,6 @@ self: { libraryToolDepends = [ alex ]; description = "A CSP-M parser compatible with FDR-2.91"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "CSPM-Interpreter" = callPackage @@ -2674,7 +2492,6 @@ self: { ]; description = "An interpreter for CSPM"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "CSPM-ToProlog" = callPackage @@ -2688,7 +2505,6 @@ self: { ]; description = "some modules specific for the ProB tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "CSPM-cspm" = callPackage @@ -2714,7 +2530,6 @@ self: { ]; description = "cspm command line tool for analyzing CSPM specifications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cspm"; }) {}; @@ -2760,8 +2575,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "OpenCV based machine vision library"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {opencv_calib3d = null; opencv_contrib = null; opencv_core = null; opencv_features2d = null; opencv_flann = null; opencv_gpu = null; opencv_highgui = null; opencv_imgproc = null; @@ -2861,8 +2674,6 @@ self: { ]; description = "A framework for packaging Haskell software"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Cabal-syntax_3_6_0_0" = callPackage @@ -2931,9 +2742,7 @@ self: { ]; description = "Search cabal packages by name"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabalsearch"; - broken = true; }) {}; "Capabilities" = callPackage @@ -2945,7 +2754,6 @@ self: { libraryHaskellDepends = [ base compdata directory free unix ]; description = "Separate and contain effects of IO monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Cardinality" = callPackage @@ -2968,8 +2776,6 @@ self: { libraryHaskellDepends = [ base containers fgl parsec ]; description = "An implementation and DSL for the Carneades argumentation model"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "CarneadesIntoDung" = callPackage @@ -2986,7 +2792,6 @@ self: { ]; description = "A translation from the Carneades argumentation model into Dung's AFs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "caell"; }) {}; @@ -2999,8 +2804,6 @@ self: { libraryHaskellDepends = [ base lens linear template-haskell ]; description = "Coordinate systems"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Cascade" = callPackage @@ -3012,8 +2815,6 @@ self: { libraryHaskellDepends = [ base comonad ghc-prim mtl void ]; description = "Playing with reified categorical composition"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Cassava" = callPackage @@ -3040,8 +2841,6 @@ self: { ]; description = "A CSV parsing and encoding library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Catana" = callPackage @@ -3053,8 +2852,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad for complex manipulation of a stream"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ChannelT" = callPackage @@ -3068,8 +2865,6 @@ self: { libraryHaskellDepends = [ base free mmorph mtl transformers-base ]; description = "Generalized stream processors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Chart" = callPackage @@ -3147,7 +2942,6 @@ self: { ]; description = "A backend for the Chart library for FLTKHS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Chart-gtk" = callPackage @@ -3196,8 +2990,6 @@ self: { ]; description = "A wrapper for the chart library to assist with basic plots (Deprecated - use the Easy module instead)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Chart-tests" = callPackage @@ -3271,8 +3063,6 @@ self: { libraryHaskellDepends = [ base text ]; description = "Inbuilt checking for ultra reliable computing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Chitra" = callPackage @@ -3286,9 +3076,7 @@ self: { executableHaskellDepends = [ base binary bytestring mtl network ]; description = "A platform independent mechanism to render graphics using vnc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Chitra"; - broken = true; }) {}; "ChristmasTree" = callPackage @@ -3304,8 +3092,6 @@ self: { ]; description = "Alternative approach of 'read' that composes grammars instead of parsers"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "CirruParser" = callPackage @@ -3339,8 +3125,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "spam"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ClassLaws" = callPackage @@ -3352,8 +3136,6 @@ self: { libraryHaskellDepends = [ base ChasingBottoms mtl QuickCheck ]; description = "Stating and checking laws for type class methods"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ClassyPrelude" = callPackage @@ -3365,8 +3147,6 @@ self: { libraryHaskellDepends = [ base strict ]; description = "Prelude replacement using classes instead of concrete types where reasonable"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Clean" = callPackage @@ -3378,8 +3158,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A light, clean and powerful utility library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Clipboard" = callPackage @@ -3411,7 +3189,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Libary for parsing Clustal tools output"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "ClustalParserTest"; }) {}; @@ -3430,7 +3207,6 @@ self: { ]; description = "A generic build tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Codec-Compression-LZF" = callPackage @@ -3500,7 +3276,6 @@ self: { ]; description = "A concurrent bittorrent client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Combinatorrent"; }) {}; @@ -3513,8 +3288,6 @@ self: { libraryHaskellDepends = [ base directory process ]; description = "A replacement for System.Exit and System.Process"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Commando" = callPackage @@ -3537,9 +3310,7 @@ self: { ]; description = "Watch some files; Rerun a command"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "commando"; - broken = true; }) {}; "ComonadSheet" = callPackage @@ -3557,7 +3328,6 @@ self: { ]; description = "A library for expressing spreadsheet-like computations as the fixed-points of comonads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Compactable" = callPackage @@ -3569,8 +3339,6 @@ self: { libraryHaskellDepends = [ base containers transformers vector ]; description = "A generalization for containers that can be stripped of Nothing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ConClusion" = callPackage @@ -3593,9 +3361,7 @@ self: { ]; description = "Cluster algorithms, PCA, and chemical conformere analysis"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "conclusion"; - broken = true; }) {}; "Concurrent-Cache" = callPackage @@ -3607,8 +3373,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A Cached variable for IO functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Concurrential" = callPackage @@ -3620,8 +3384,6 @@ self: { libraryHaskellDepends = [ async base ]; description = "Mix concurrent and sequential computation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Condor" = callPackage @@ -3643,7 +3405,6 @@ self: { ]; description = "Information retrieval library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "condor"; }) {}; @@ -3673,8 +3434,6 @@ self: { ]; description = "Template haskell for reading ConfigFiles"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Configger" = callPackage @@ -3686,7 +3445,6 @@ self: { libraryHaskellDepends = [ base Dangerous MissingH mtl parsec ]; description = "Parse config files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "Configurable" = callPackage @@ -3698,8 +3456,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Declare types as Configurable then specialize them all in one place"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ConsStream" = callPackage @@ -3724,9 +3480,7 @@ self: { executableHaskellDepends = [ base process ]; description = "Restart a command on STDIN activity"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "conscript"; - broken = true; }) {}; "ConstraintKinds" = callPackage @@ -3738,8 +3492,6 @@ self: { libraryHaskellDepends = [ base dlist ghc-prim vector ]; description = "Repackages standard type classes with the ConstraintKinds extension"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Consumer" = callPackage @@ -3751,8 +3503,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad and monad transformer for consuming streams"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ContArrow" = callPackage @@ -3764,8 +3514,6 @@ self: { libraryHaskellDepends = [ arrows base ]; description = "Control.Arrow.Transformer.Cont"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ContextAlgebra" = callPackage @@ -3783,9 +3531,7 @@ self: { ]; description = "Implementation of the context algebra"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ContextAlgebra"; - broken = true; }) {}; "Contract" = callPackage @@ -3797,8 +3543,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Practical typed lazy contracts"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Control-Engine" = callPackage @@ -3830,7 +3574,6 @@ self: { ]; description = "A Library for Writing Multi-Pass Algorithms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Control-Monad-ST2" = callPackage @@ -3848,8 +3591,6 @@ self: { ]; description = "A variation on the ST monad with two type parameters"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "CoreDump" = callPackage @@ -3861,8 +3602,6 @@ self: { libraryHaskellDepends = [ base ghc pretty pretty-show ]; description = "A GHC plugin for printing GHC's internal Core data structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "CoreErlang" = callPackage @@ -3874,8 +3613,6 @@ self: { libraryHaskellDepends = [ base parsec pretty ]; description = "Manipulating Core Erlang source code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "CoreFoundation" = callPackage @@ -3894,7 +3631,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Bindings to Mac OSX's CoreFoundation framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Coroutine" = callPackage @@ -3906,8 +3642,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Type-safe coroutines using lightweight session types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "CouchDB" = callPackage @@ -3928,8 +3662,6 @@ self: { ]; description = "CouchDB interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Craft3e" = callPackage @@ -3946,8 +3678,6 @@ self: { doHaddock = false; description = "Code for Haskell: the Craft of Functional Programming, 3rd ed"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Crypto" = callPackage @@ -3997,8 +3727,6 @@ self: { ]; description = "CurryDB: In-memory Key/Value Database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "DAG-Tournament" = callPackage @@ -4016,9 +3744,7 @@ self: { ]; description = "Real-Time Game Tournament Evaluator"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "DAG-Tournament"; - broken = true; }) {}; "DAV" = callPackage @@ -4090,9 +3816,7 @@ self: { executableHaskellDepends = [ base containers parsec ]; description = "A command-line SQL interface for flat files (tdf,csv,etc.)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "DBlimited"; - broken = true; }) {}; "DBus" = callPackage @@ -4104,8 +3828,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "D-Bus bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "DCFL" = callPackage @@ -4130,7 +3852,6 @@ self: { executableHaskellDepends = [ base MuCheck ]; description = "Distributed Mutation Analysis framework for MuCheck"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "dummy"; }) {}; @@ -4157,8 +3878,6 @@ self: { ]; description = "Complete API bindings for DigitalOcean API V2"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "DOM" = callPackage @@ -4170,7 +3889,6 @@ self: { libraryHaskellDepends = [ base mtl WebBits ]; description = "DOM Level 2 bindings for the WebBits package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "DP" = callPackage @@ -4186,7 +3904,6 @@ self: { ]; description = "Pragmatic framework for dynamic programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "DPM" = callPackage @@ -4210,9 +3927,7 @@ self: { executableHaskellDepends = [ base ]; description = "Darcs Patch Manager"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "dpm"; - broken = true; }) {}; "DPutils" = callPackage @@ -4271,7 +3986,6 @@ self: { ]; description = "Deterministic random bit generator (aka RNG, PRNG) based HMACs, Hashes, and Ciphers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "DSA" = callPackage @@ -4295,7 +4009,6 @@ self: { ]; description = "Implementation of DSA, based on the description of FIPS 186-4"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "DSH" = callPackage @@ -4324,7 +4037,6 @@ self: { ]; description = "Database Supported Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "vldot"; }) {}; @@ -4347,7 +4059,6 @@ self: { ]; description = "A framework for using STM within distributed systems"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "DTC" = callPackage @@ -4359,8 +4070,6 @@ self: { libraryHaskellDepends = [ base haskell-src-exts ]; description = "Data To Class transformation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Dangerous" = callPackage @@ -4372,7 +4081,6 @@ self: { libraryHaskellDepends = [ base MaybeT mtl ]; description = "Monads for operations that can exit early and produce warnings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "Dao" = callPackage @@ -4403,9 +4111,7 @@ self: { ]; description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "dao"; - broken = true; }) {}; "DarcsHelpers" = callPackage @@ -4417,7 +4123,6 @@ self: { libraryHaskellDepends = [ base HaXml mtl parsec safe xml-parsec ]; description = "Code used by Patch-Shack that seemed sensible to open for reusability"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "Data-Angle" = callPackage @@ -4455,8 +4160,6 @@ self: { libraryHaskellDepends = [ base bytestring unix ]; description = "Ropes, an alternative to (Byte)Strings"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "DataIndex" = callPackage @@ -4473,9 +4176,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "A package for adding index column to data files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "DataIndex"; - broken = true; }) {}; "DataTreeView" = callPackage @@ -4493,8 +4194,6 @@ self: { ]; description = "A GTK widget for displaying arbitrary Data.Data.Data instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "DataVersion" = callPackage @@ -4536,9 +4235,7 @@ self: { testHaskellDepends = [ base doctest filemanip QuickCheck ]; description = "Write clients for Meteor's DDP Protocol"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "deadpan"; - broken = true; }) {}; "DebugTraceHelpers" = callPackage @@ -4578,8 +4275,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A very simple implementation of decision trees for discrete attributes"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "DeepArrow" = callPackage @@ -4591,7 +4286,6 @@ self: { libraryHaskellDepends = [ base haskell-src mtl TypeCompose ]; description = "Arrows for \"deep application\""; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "DeepDarkFantasy" = callPackage @@ -4609,8 +4303,6 @@ self: { testHaskellDepends = [ base constraints mtl QuickCheck random ]; description = "A DSL for creating neural network"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "DefendTheKing" = callPackage @@ -4630,7 +4322,6 @@ self: { ]; description = "A simple RTS game"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "Delta-Lambda" = callPackage @@ -4653,9 +4344,7 @@ self: { ]; description = "A demonstration interpreter for type system delta-lambda (of N.G. De-bruijn)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "Delta-Lambda"; - broken = true; }) {}; "DescriptiveKeys" = callPackage @@ -4684,8 +4373,6 @@ self: { ]; description = "Processing Real-time event streams"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Diff_0_3_4" = callPackage @@ -4734,7 +4421,6 @@ self: { ]; description = "A theory solver for conjunctions of literals in difference logic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "DifferentialEvolution" = callPackage @@ -4750,8 +4436,6 @@ self: { ]; description = "Global optimization using Differential Evolution"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Digit" = callPackage @@ -4797,8 +4481,6 @@ self: { testHaskellDepends = [ base hspec lens mtl text ]; description = "A client library for the DigitalOcean API"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "DimensionalHash" = callPackage @@ -4810,8 +4492,6 @@ self: { libraryHaskellDepends = [ base ]; description = "An n-dimensional hash using Morton numbers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "DirectSound" = callPackage @@ -4845,7 +4525,6 @@ self: { ]; description = "Distributed Bug Tracking System"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "DiscussionSupportSystem" = callPackage @@ -4862,8 +4541,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Discussion support system"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Dish" = callPackage @@ -4878,9 +4555,7 @@ self: { executableHaskellDepends = [ base bytestring ]; description = "Hash modules (currently Murmur3)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Dish"; - broken = true; }) {}; "Dist" = callPackage @@ -4893,8 +4568,6 @@ self: { testHaskellDepends = [ base containers MonadRandom ]; description = "A Haskell library for probability distributions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "DistanceTransform" = callPackage @@ -4948,7 +4621,6 @@ self: { ]; description = "Frameshift-aware alignment of protein sequences with DNA sequences"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "DnaProteinAlignment"; }) {}; @@ -4967,7 +4639,6 @@ self: { ]; description = "Test interactive Haskell examples"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "doctest"; }) {}; @@ -4998,7 +4669,6 @@ self: { executableHaskellDepends = [ array base containers pretty ]; description = "A tool for deriving hylomorphisms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "DrHylo"; }) {}; @@ -5017,8 +4687,6 @@ self: { ]; description = "Program to derive type class instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "DrIFT-cabalized" = callPackage @@ -5033,8 +4701,6 @@ self: { executableHaskellDepends = [ base old-time process random ]; description = "Program to derive type class instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Dung" = callPackage @@ -5048,9 +4714,7 @@ self: { libraryHaskellDepends = [ base cmdargs containers parsec ]; description = "An implementation of the Dung argumentation frameworks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dungell"; - broken = true; }) {}; "Dust" = callPackage @@ -5076,7 +4740,6 @@ self: { ]; description = "Polymorphic protocol engine"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "Dust-crypto" = callPackage @@ -5103,7 +4766,6 @@ self: { ]; description = "Cryptographic operations"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) openssl;}; "Dust-tools" = callPackage @@ -5128,7 +4790,6 @@ self: { ]; description = "Network filtering exploration tools"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "Dust-tools-pcap" = callPackage @@ -5150,7 +4811,6 @@ self: { ]; description = "Network filtering exploration tools that rely on pcap"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "DynamicTimeWarp" = callPackage @@ -5168,8 +4828,6 @@ self: { ]; description = "Dynamic time warping of sequences"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "DysFRP" = callPackage @@ -5183,8 +4841,6 @@ self: { ]; description = "dysFunctional Reactive Programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "DysFRP-Cairo" = callPackage @@ -5196,7 +4852,6 @@ self: { libraryHaskellDepends = [ base cairo DysFRP gtk mtl ]; description = "dysFunctional Reactive Programming on Cairo"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "DysFRP-Craftwerk" = callPackage @@ -5213,7 +4868,6 @@ self: { ]; description = "dysFunctional Reactive Programming on Craftwerk"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "EEConfig" = callPackage @@ -5330,7 +4984,6 @@ self: { ]; description = "Query language and report generator for edit logs"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "report"; }) {}; @@ -5354,8 +5007,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "spam"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "EitherT" = callPackage @@ -5373,8 +5024,6 @@ self: { ]; description = "EitherT monad transformer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Elm" = callPackage @@ -5430,9 +5079,7 @@ self: { ]; description = "derives heuristic rules from nominal data"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "emping"; - broken = true; }) {}; "Empty" = callPackage @@ -5444,8 +5091,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A type class for empty containers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Encode" = callPackage @@ -5476,7 +5121,6 @@ self: { ]; description = "Libary to interface with the NCBI Entrez REST service"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "Enum" = callPackage @@ -5500,8 +5144,6 @@ self: { libraryHaskellDepends = [ base containers deepseq ]; description = "Simple Enum-class-based int containers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "EnumMap" = callPackage @@ -5513,8 +5155,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "More general IntMap replacement"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Eq" = callPackage @@ -5533,9 +5173,7 @@ self: { ]; description = "Render math formula in ASCII, and perform some simplifications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "eq"; - broken = true; }) {}; "EqualitySolver" = callPackage @@ -5549,8 +5187,6 @@ self: { ]; description = "A theory solver for conjunctions of literals in the theory of uninterpreted functions with equality"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "EsounD" = callPackage @@ -5570,7 +5206,6 @@ self: { ]; description = "Type-safe bindings to EsounD (ESD; Enlightened Sound Daemon)"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "EstProgress" = callPackage @@ -5582,8 +5217,6 @@ self: { libraryHaskellDepends = [ ansi-terminal base mtl ]; description = "Methods for estimating the progress of functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "EtaMOO" = callPackage @@ -5609,7 +5242,6 @@ self: { executablePkgconfigDepends = [ pcre ]; description = "A new implementation of the LambdaMOO server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "etamoo"; }) {inherit (pkgs) libxcrypt; inherit (pkgs) pcre;}; @@ -5626,8 +5258,6 @@ self: { ]; description = "A general data-flow framework"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Etage-Graph" = callPackage @@ -5646,7 +5276,6 @@ self: { ]; description = "Data-flow based graph algorithms"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "etage-graph-test"; }) {}; @@ -5662,7 +5291,6 @@ self: { executableHaskellDepends = [ base haskell98 SDL SDL-mixer ]; description = "A 2-D shooting game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Eternal10Seconds"; }) {}; @@ -5685,7 +5313,6 @@ self: { executableSystemDepends = [ libpcap ]; description = "A network analysis toolkit for Haskell"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "etherbunny"; }) {inherit (pkgs) libpcap;}; @@ -5732,7 +5359,6 @@ self: { ]; description = "Interfaces with FreeSwitch Event Socket"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Extra" = callPackage @@ -5752,7 +5378,6 @@ self: { ]; description = "A grab bag of modules"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "FAI" = callPackage @@ -5790,7 +5415,6 @@ self: { ]; description = "Compose music"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "fcomp"; }) {}; @@ -5805,7 +5429,6 @@ self: { executableHaskellDepends = [ array base containers haskell98 ]; description = "A set of computational morphology tools for Swedish diachronic lexicons"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "FModExRaw" = callPackage @@ -5818,8 +5441,6 @@ self: { librarySystemDepends = [ fmodex64 ]; description = "The Haskell FModEx raw API"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {fmodex64 = null;}; "FPretty" = callPackage @@ -5833,8 +5454,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Efficient simple pretty printing combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "FSM" = callPackage @@ -5846,8 +5465,6 @@ self: { libraryHaskellDepends = [ base containers matrix vector ]; description = "Basic concepts of finite state machines"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "FTGL" = callPackage @@ -5877,8 +5494,6 @@ self: { librarySystemDepends = [ ftgl ]; description = "Portable TrueType font rendering for OpenGL using the Freetype2 library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) ftgl;}; "FTPLine" = callPackage @@ -5897,7 +5512,6 @@ self: { ]; description = "A command-line FTP client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "FTPLine"; }) {}; @@ -5923,8 +5537,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "spam"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Facts" = callPackage @@ -5940,8 +5552,6 @@ self: { ]; description = "A collection of facts about the real world"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "FailT" = callPackage @@ -5969,7 +5579,6 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols mmtl ]; description = "Failure Monad Transformer"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "FastPush" = callPackage @@ -5981,8 +5590,6 @@ self: { libraryHaskellDepends = [ base STMonadTrans vector ]; description = "A monad and monad transformer for pushing things onto a stack very fast"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "FastxPipe" = callPackage @@ -5999,8 +5606,6 @@ self: { ]; description = "Fasta and Fastq streaming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "FenwickTree" = callPackage @@ -6033,7 +5638,6 @@ self: { ]; description = "Annotate ps and pdf documents"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "flm"; }) {}; @@ -6051,8 +5655,6 @@ self: { ]; description = "Ferry Core Components"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Feval" = callPackage @@ -6066,9 +5668,7 @@ self: { executableHaskellDepends = [ base containers mtl parsec ]; description = "Evaluation using F-Algebras"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "Feval"; - broken = true; }) {}; "FieldTrip" = callPackage @@ -6085,7 +5685,6 @@ self: { ]; description = "Functional 3D"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "FileManip" = callPackage @@ -6101,8 +5700,6 @@ self: { ]; description = "Expressive file and directory manipulation for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "FileManipCompat" = callPackage @@ -6118,8 +5715,6 @@ self: { ]; description = "Expressive file and directory manipulation for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "FilePather" = callPackage @@ -6151,8 +5746,6 @@ self: { ]; description = "File system data structure and monad transformer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Files" = callPackage @@ -6169,9 +5762,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "File content extraction/rearrangement"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "Files"; - broken = true; }) {}; "Fin" = callPackage @@ -6189,7 +5780,6 @@ self: { ]; description = "Finite totally-ordered sets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Finance-Quote-Yahoo" = callPackage @@ -6205,8 +5795,6 @@ self: { ]; description = "Obtain quote data from finance.yahoo.com"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Finance-Treasury" = callPackage @@ -6223,7 +5811,6 @@ self: { ]; description = "Obtain Treasury yield curve data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "FindBin" = callPackage @@ -6255,8 +5842,6 @@ self: { ]; description = "Finite categories and usual categorical constructions on them"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "FiniteMap" = callPackage @@ -6268,7 +5853,6 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "A finite map implementation, derived from the paper: Efficient sets: a balancing act, S. Adams, Journal of functional programming 3(4) Oct 1993, pp553-562"; license = lib.licenses.bsdOriginal; - hydraPlatforms = lib.platforms.none; }) {}; "FirstOrderTheory" = callPackage @@ -6280,7 +5864,6 @@ self: { libraryHaskellDepends = [ base containers Proper ]; description = "Grammar and typeclass for first order theories"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "FirstPrelude" = callPackage @@ -6292,8 +5875,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A version of Prelude suitable for teaching"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "FixedPoint-simple" = callPackage @@ -6323,7 +5904,6 @@ self: { ]; description = "Wiki"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "flippi"; }) {}; @@ -6398,7 +5978,6 @@ self: { ]; description = "ForSyDe's Haskell-embedded Domain Specific Language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ForestStructures" = callPackage @@ -6446,7 +6025,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Comparison of trees and forests"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ForkableT" = callPackage @@ -6458,8 +6036,6 @@ self: { libraryHaskellDepends = [ base monad-control mtl resourcet ]; description = "Forkable monad transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "FormalGrammars" = callPackage @@ -6484,7 +6060,6 @@ self: { ]; description = "(Context-free) grammars in formal language theory"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "Fortnite-Hack-Cheats-Free-V-Bucks-Generator" = callPackage @@ -6507,8 +6082,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "spam"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Foster" = callPackage @@ -6529,7 +6102,6 @@ self: { ]; description = "Utilities to generate and solve puzzles"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "foster"; }) {}; @@ -6578,9 +6150,7 @@ self: { base FTGL GLFW-b OpenGLRaw parallel random time ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "Fractaler"; - broken = true; }) {}; "Frames" = callPackage @@ -6612,7 +6182,6 @@ self: { benchmarkHaskellDepends = [ base criterion pipes transformers ]; description = "Data frames For working with tabular data files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Frames-beam" = callPackage @@ -6636,7 +6205,6 @@ self: { ]; description = "A library for accessing Postgres tables as in-memory data structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Frames-dsv" = callPackage @@ -6654,7 +6222,6 @@ self: { testHaskellDepends = [ base Frames hspec pipes ]; description = "Alternative CSV parser for the Frames package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Frames-map-reduce" = callPackage @@ -6675,7 +6242,6 @@ self: { ]; description = "Frames wrapper for map-reduce-folds and some extra folds helpers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Frames-streamly" = callPackage @@ -6715,7 +6281,6 @@ self: { ]; description = "A streamly layer for Frames I/O"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Demo"; }) {}; @@ -6730,7 +6295,6 @@ self: { executableHaskellDepends = [ base mtl newtype she void ]; description = "An experimental programming language with typed algebraic effects"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "frank"; }) {}; @@ -6746,8 +6310,6 @@ self: { libraryHaskellDepends = [ base freetype2 OpenGL ]; description = "Loadable texture fonts for OpenGL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "FunGEn" = callPackage @@ -6784,9 +6346,7 @@ self: { ]; description = "Funge-98 interpreter written in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "fungi"; - broken = true; }) {}; "GA" = callPackage @@ -6811,9 +6371,7 @@ self: { executableHaskellDepends = [ base bimap ]; description = "GGg cipher"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "GGg"; - broken = true; }) {}; "GHood" = callPackage @@ -6840,8 +6398,6 @@ self: { librarySystemDepends = [ libGL libX11 libXext libXfixes ]; description = "A Haskell binding for GLFW"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libGL; inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXext; inherit (pkgs.xorg) libXfixes;}; @@ -6856,7 +6412,6 @@ self: { librarySystemDepends = [ libX11 libXrandr ]; description = "A binding for GLFW (OGL)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXrandr;}; "GLFW-b" = callPackage @@ -6891,9 +6446,7 @@ self: { ]; description = "GLFW-b demo"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "GLFW-b-demo"; - broken = true; }) {}; "GLFW-task" = callPackage @@ -6907,7 +6460,6 @@ self: { ]; description = "GLFW utility functions to use together with monad-task"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "GLHUI" = callPackage @@ -6960,8 +6512,6 @@ self: { libraryHaskellDepends = [ base OpenGLRaw ]; description = "Utilities for working with OpenGL matrices"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "GLURaw" = callPackage @@ -7029,7 +6579,6 @@ self: { ]; description = "Parse GPX files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "GPipe" = callPackage @@ -7047,8 +6596,6 @@ self: { ]; description = "Typesafe functional GPU graphics programming"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "GPipe-Collada" = callPackage @@ -7062,7 +6609,6 @@ self: { ]; description = "Load GPipe meshes from Collada files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "GPipe-Core" = callPackage @@ -7084,8 +6630,6 @@ self: { benchmarkHaskellDepends = [ base criterion lens ]; description = "Typesafe functional GPU graphics programming"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "GPipe-Examples" = callPackage @@ -7103,7 +6647,6 @@ self: { ]; description = "Examples for the GPipes package"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "GPipe-GLFW" = callPackage @@ -7116,7 +6659,6 @@ self: { libraryHaskellDepends = [ async base containers GLFW-b GPipe stm ]; description = "GLFW OpenGL context creation for GPipe"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "GPipe-GLFW4" = callPackage @@ -7146,7 +6688,6 @@ self: { ]; description = "GLFW OpenGL context creation for GPipe"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "playground"; }) {}; @@ -7159,7 +6700,6 @@ self: { libraryHaskellDepends = [ base bitmap GPipe stb-image ]; description = "Load GPipe textures from filesystem"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "GTALib" = callPackage @@ -7178,8 +6718,6 @@ self: { ]; description = "A library for GTA programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Gamgine" = callPackage @@ -7201,8 +6739,6 @@ self: { libraryToolDepends = [ cpphs ]; description = "Some kind of game library or set of utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Ganymede" = callPackage @@ -7220,9 +6756,7 @@ self: { ]; description = "An Io interpreter in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ganymede"; - broken = true; }) {}; "GaussQuadIntegration" = callPackage @@ -7250,7 +6784,6 @@ self: { ]; description = "Several games"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gebop"; }) {}; @@ -7285,7 +6818,6 @@ self: { ]; description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "geni"; }) {}; @@ -7300,7 +6832,6 @@ self: { executableHaskellDepends = [ base haskell98 QuickCheck random ]; description = "Automatic SMS message generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gensmspdu"; }) {}; @@ -7320,7 +6851,6 @@ self: { executableHaskellDepends = [ base cmdargs ]; description = "Libary for processing the NCBI genbank format"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "GenbankTest"; }) {}; @@ -7347,7 +6877,6 @@ self: { ]; description = "Hox gene clustering"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "GeneCluEDO"; }) {}; @@ -7362,9 +6891,7 @@ self: { executableHaskellDepends = [ base ]; description = "A general TicTacToe game implementation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "GeneralTicTacToe"; - broken = true; }) {}; "GenericPretty" = callPackage @@ -7403,7 +6930,6 @@ self: { ]; description = "MCFGs for Genus-1 RNA Pseudoknots"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "GenussFold"; }) {}; @@ -7416,8 +6942,6 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-mmap syb ]; description = "Pure bindings for the MaxMind IP database"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "GeocoderOpenCage" = callPackage @@ -7430,8 +6954,6 @@ self: { libraryHaskellDepends = [ aeson base bytestring HTTP text ]; description = "Geocoder and Reverse Geocoding Service Wrapper"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Geodetic" = callPackage @@ -7465,8 +6987,6 @@ self: { libraryHaskellDepends = [ base GeomPredicates ]; description = "Geometric predicates (Intel SSE)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Get" = callPackage @@ -7479,8 +6999,6 @@ self: { testHaskellDepends = [ base constraints singletons ]; description = "get stuff out of stuff"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "GiST" = callPackage @@ -7492,8 +7010,6 @@ self: { libraryHaskellDepends = [ base text ]; description = "A Haskell implementation of a Generalized Search Tree (GiST)"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Gifcurry" = callPackage @@ -7519,8 +7035,6 @@ self: { ]; description = "GIF creation utility"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "GiveYouAHead" = callPackage @@ -7543,8 +7057,6 @@ self: { libraryHaskellDepends = [ base mtl split threepenny-gui ]; description = "HTML Canvas graphics, animations and simulations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Glob" = callPackage @@ -7580,8 +7092,6 @@ self: { libraryHaskellDepends = [ array base GlomeVec ]; description = "Ray Tracing Library"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "GlomeVec" = callPackage @@ -7611,7 +7121,6 @@ self: { ]; description = "SDL Frontend for Glome ray tracer"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "Glome"; }) {}; @@ -7639,8 +7148,6 @@ self: { ]; description = "A monad for flexible parsing of Google Code Jam input files with automatic parallelization"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "GoogleDirections" = callPackage @@ -7656,7 +7163,6 @@ self: { ]; description = "Haskell Interface to Google Directions API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "GoogleSB" = callPackage @@ -7672,7 +7178,6 @@ self: { ]; description = "Interface to Google Safe Browsing API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "GoogleSuggest" = callPackage @@ -7700,7 +7205,6 @@ self: { ]; description = "Interface to Google Translate API"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "GotoT-transformers" = callPackage @@ -7712,8 +7216,6 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "A monad and monadic transformer providing \"goto\" functionality"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Grafos" = callPackage @@ -7725,8 +7227,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Grafos Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "GrammarProducts" = callPackage @@ -7749,7 +7249,6 @@ self: { testHaskellDepends = [ base ]; description = "Grammar products and higher-dimensional grammars"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "Graph500" = callPackage @@ -7768,9 +7267,7 @@ self: { executableHaskellDepends = [ array base mtl ]; description = "Graph500 benchmark-related definitions and data set generator"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "graph500gen"; - broken = true; }) {}; "GraphHammer" = callPackage @@ -7785,7 +7282,6 @@ self: { ]; description = "GraphHammer Haskell graph analyses framework inspired by STINGER"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "GraphHammer-examples" = callPackage @@ -7803,7 +7299,6 @@ self: { ]; description = "Test harness for TriangleCount analysis"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "TriangleCountTest"; }) {}; @@ -7832,8 +7327,6 @@ self: { ]; description = "Graph-Theoretic Analysis library"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Grempa" = callPackage @@ -7849,8 +7342,6 @@ self: { ]; description = "Embedded grammar DSL and LALR parser generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "GroteTrap" = callPackage @@ -7868,8 +7359,6 @@ self: { ]; description = "Parser and selection library for expression languages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Grow" = callPackage @@ -7891,7 +7380,6 @@ self: { ]; description = "A declarative make-like interpreter"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "GrowlNotify" = callPackage @@ -7912,7 +7400,6 @@ self: { ]; description = "Notification utility for Growl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "growlnotify"; }) {}; @@ -7929,7 +7416,6 @@ self: { ]; description = "Convenience functions to extend Gtk2hs"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "GtkGLTV" = callPackage @@ -7945,7 +7431,6 @@ self: { ]; description = "OpenGL support for Gtk-based GUIs for Tangible Values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "GtkTV" = callPackage @@ -7959,7 +7444,6 @@ self: { ]; description = "Gtk-based GUIs for Tangible Values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "GuiHaskell" = callPackage @@ -7978,7 +7462,6 @@ self: { ]; description = "A graphical REPL and development environment for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "guihaskell"; }) {}; @@ -7991,7 +7474,6 @@ self: { libraryHaskellDepends = [ base DeepArrow phooey TV TypeCompose ]; description = "GUIs for Tangible Values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "H" = callPackage @@ -8010,7 +7492,6 @@ self: { ]; description = "The Haskell/R mixed programming environment"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "H"; }) {}; @@ -8036,9 +7517,7 @@ self: { ]; description = "Hierarchical adaptive Bayesian quantum tomography for quantum bits"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "HABQT-simulation"; - broken = true; }) {}; "HARM" = callPackage @@ -8053,8 +7532,6 @@ self: { executableHaskellDepends = [ array base ]; description = "A simple ARM emulator in haskell"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HAppS-Data" = callPackage @@ -8071,7 +7548,6 @@ self: { ]; description = "HAppS data manipulation libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HAppS-IxSet" = callPackage @@ -8087,7 +7563,6 @@ self: { syb-with-class template-haskell ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HAppS-Server" = callPackage @@ -8108,7 +7583,6 @@ self: { ]; description = "Web related tools and services"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HAppS-State" = callPackage @@ -8128,7 +7602,6 @@ self: { ]; description = "Event-based distributed state"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HAppS-Util" = callPackage @@ -8145,8 +7618,6 @@ self: { ]; description = "Web framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HAppSHelpers" = callPackage @@ -8193,8 +7664,6 @@ self: { ]; description = "A library for implementing a Deck of Cards"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HCodecs" = callPackage @@ -8246,8 +7715,6 @@ self: { librarySystemDepends = [ mysqlclient openssl zlib ]; description = "MySQL driver for HDBC"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {mysqlclient = null; inherit (pkgs) openssl; inherit (pkgs) zlib;}; @@ -8298,8 +7765,6 @@ self: { libraryHaskellDepends = [ attoparsec base containers HDBC text ]; description = "Manipulate data in PostgreSQL \"hstore\" columns"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HDBC-session" = callPackage @@ -8341,8 +7806,6 @@ self: { description = "Utilities for reading, manipulating, and writing HDR images"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) pfstools;}; "HERA" = callPackage @@ -8354,8 +7817,6 @@ self: { libraryHaskellDepends = [ base ]; librarySystemDepends = [ mpfr ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) mpfr;}; "HExcel" = callPackage @@ -8372,8 +7833,6 @@ self: { librarySystemDepends = [ xlsxwriter zlib ]; description = "Create Excel files with Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {xlsxwriter = null; inherit (pkgs) zlib;}; "HFitUI" = callPackage @@ -8395,9 +7854,7 @@ self: { testHaskellDepends = [ base ]; description = "The library for generating a graphical interface on the web"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "HFitUI-exe"; - broken = true; }) {}; "HFrequencyQueue" = callPackage @@ -8409,8 +7866,6 @@ self: { libraryHaskellDepends = [ base c-storable-deriving ]; description = "A Queue with a random (weighted) pick function"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HFuse" = callPackage @@ -8445,8 +7900,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "2D game engine written in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HGL" = callPackage @@ -8475,8 +7928,6 @@ self: { ]; description = "Toolset for the Haskell Game Programmer"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HGamer3D-API" = callPackage @@ -8493,7 +7944,6 @@ self: { ]; description = "Library to enable 3D game development for Haskell - API"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-Audio" = callPackage @@ -8509,7 +7959,6 @@ self: { ]; description = "Toolset for the Haskell Game Programmer - Audio Functionality"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-Bullet-Binding" = callPackage @@ -8521,7 +7970,6 @@ self: { libraryHaskellDepends = [ base HGamer3D-Data ]; description = "Windows Game Engine for the Haskell Programmer - Bullet Bindings"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-CAudio-Binding" = callPackage @@ -8535,7 +7983,6 @@ self: { librarySystemDepends = [ HGamer3DCAudio015 ]; description = "Library to enable 3D game development for Haskell - cAudio Bindings"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {HGamer3DCAudio015 = null;}; "HGamer3D-CEGUI-Binding" = callPackage @@ -8552,7 +7999,6 @@ self: { ]; description = "A Toolset for the Haskell Game Programmer - CEGUI Bindings"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {CEGUIBase = null; CEGUIOgreRenderer = null; hg3dcegui050 = null;}; @@ -8570,7 +8016,6 @@ self: { ]; description = "Toolset for the Haskell Game Programmer - Game Engine and Utilities"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-Data" = callPackage @@ -8586,8 +8031,6 @@ self: { ]; description = "Toolset for the Haskell Game Programmer - Data Definitions"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HGamer3D-Enet-Binding" = callPackage @@ -8600,7 +8043,6 @@ self: { librarySystemDepends = [ enet hg3denet050 ]; description = "Enet Binding for HGamer3D"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) enet; hg3denet050 = null;}; "HGamer3D-GUI" = callPackage @@ -8616,7 +8058,6 @@ self: { ]; description = "GUI Functionality for HGamer3D"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-Graphics3D" = callPackage @@ -8636,7 +8077,6 @@ self: { ]; description = "Toolset for the Haskell Game Programmer - 3D Graphics Functionality"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-InputSystem" = callPackage @@ -8653,7 +8093,6 @@ self: { ]; description = "Joystick, Mouse and Keyboard Functionality for HGamer3D"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-Network" = callPackage @@ -8669,7 +8108,6 @@ self: { ]; description = "Networking Functionality for HGamer3D"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-OIS-Binding" = callPackage @@ -8686,7 +8124,6 @@ self: { librarySystemDepends = [ HGamer3DOIS015 ]; description = "Library to enable 3D game development for Haskell - OIS Bindings"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {HGamer3DOIS015 = null;}; "HGamer3D-Ogre-Binding" = callPackage @@ -8705,7 +8142,6 @@ self: { ]; description = "Ogre Binding for HGamer3D"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {OgreMain = null; OgrePaging = null; OgreProperty = null; OgreRTShaderSystem = null; OgreTerrain = null; hg3dogre050 = null;}; @@ -8724,7 +8160,6 @@ self: { librarySystemDepends = [ hg3dsdl2050 libX11 SDL2 ]; description = "SDL2 Binding for HGamer3D"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) SDL2; hg3dsdl2050 = null; inherit (pkgs.xorg) libX11;}; @@ -8742,7 +8177,6 @@ self: { ]; description = "SFML Binding for HGamer3D"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {hg3dsfml050 = null; sfml-audio = null; sfml-network = null; sfml-system = null; sfml-window = null;}; @@ -8758,7 +8192,6 @@ self: { ]; description = "Windowing and Event Functionality for HGamer3D"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-Wire" = callPackage @@ -8776,7 +8209,6 @@ self: { ]; description = "Wire Functionality for HGamer3D"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "HGraphStorage" = callPackage @@ -8807,8 +8239,6 @@ self: { ]; description = "Graph database stored on disk"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HHDL" = callPackage @@ -8820,8 +8250,6 @@ self: { libraryHaskellDepends = [ base containers mtl template-haskell ]; description = "Hardware Description Language embedded in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HJScript" = callPackage @@ -8833,7 +8261,6 @@ self: { libraryHaskellDepends = [ base HJavaScript hsp mtl text ]; description = "HJScript is a Haskell EDSL for writing JavaScript programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HJVM" = callPackage @@ -8856,8 +8283,6 @@ self: { ]; description = "A library to create a Java Virtual Machine and manipulate Java objects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) jdk;}; "HJavaScript" = callPackage @@ -8871,8 +8296,6 @@ self: { libraryHaskellDepends = [ base pretty ]; description = "HJavaScript is an abstract syntax for a typed subset of JavaScript"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HLearn-algebra" = callPackage @@ -8892,7 +8315,6 @@ self: { ]; description = "Algebraic foundation for homomorphic learning"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HLearn-approximation" = callPackage @@ -8911,7 +8333,6 @@ self: { HLearn-datastructures HLearn-distributions list-extras vector ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HLearn-classification" = callPackage @@ -8934,7 +8355,6 @@ self: { QuickCheck statistics vector vector-th-unbox ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HLearn-datastructures" = callPackage @@ -8950,7 +8370,6 @@ self: { MonadRandom QuickCheck vector ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HLearn-distributions" = callPackage @@ -8974,7 +8393,6 @@ self: { ]; description = "Distributions for use with the HLearn library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HList" = callPackage @@ -8998,8 +8416,6 @@ self: { ]; description = "Heterogeneous lists"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HListPP" = callPackage @@ -9028,9 +8444,7 @@ self: { executableHaskellDepends = [ base old-locale time ]; description = "Simple, concurrent and easy-to-use logging library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "logger-0.0.1.0-test"; - broken = true; }) {}; "HMM" = callPackage @@ -9041,8 +8455,6 @@ self: { sha256 = "01y8l76c56gysynbilp32yq0wfc129hl24siw8s9fmpn98qa71s6"; description = "A hidden markov model library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HMap" = callPackage @@ -9104,8 +8516,6 @@ self: { ]; description = "A flexible mock framework for testing effectful code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HNM" = callPackage @@ -9128,7 +8538,6 @@ self: { ]; description = "Happy Network Manager"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "HNM"; }) {}; @@ -9160,8 +8569,6 @@ self: { librarySystemDepends = [ ode ]; description = "Binding to libODE"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) ode;}; "HOpenCV" = callPackage @@ -9178,9 +8585,7 @@ self: { executablePkgconfigDepends = [ opencv ]; description = "A binding for the OpenCV computer vision library"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "cannyVideo"; - broken = true; }) {inherit (pkgs) opencv;}; "HPDF" = callPackage @@ -9228,9 +8633,7 @@ self: { ]; description = "Extract Haskell declarations by name"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hpath"; - broken = true; }) {}; "HPhone" = callPackage @@ -9247,7 +8650,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Phone number parser and validator - This is now DEPRECATED!"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "HPi" = callPackage @@ -9260,8 +8662,6 @@ self: { librarySystemDepends = [ bcm2835 ]; description = "GPIO, I2C and SPI functions for the Raspberry Pi"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {bcm2835 = null;}; "HPlot" = callPackage @@ -9279,7 +8679,6 @@ self: { executablePkgconfigDepends = [ plplotd-gnome2 ]; description = "A minimal monadic PLplot interface for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Example"; }) {plplotd-gnome2 = null;}; @@ -9299,7 +8698,6 @@ self: { ]; description = "A simple OpenGL Pong game based on GLFW"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hpong"; }) {}; @@ -9328,7 +8726,6 @@ self: { description = "quantitative finance library"; license = lib.licenses.mit; platforms = lib.platforms.x86; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gsl;}; "HROOT" = callPackage @@ -9346,7 +8743,6 @@ self: { ]; description = "Haskell binding to the ROOT data analysis framework"; license = lib.licenses.lgpl21Plus; - hydraPlatforms = lib.platforms.none; }) {}; "HROOT-core" = callPackage @@ -9363,8 +8759,6 @@ self: { ]; description = "Haskell binding to ROOT Core modules"; license = lib.licenses.lgpl21Plus; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HROOT-graf" = callPackage @@ -9381,7 +8775,6 @@ self: { ]; description = "Haskell binding to ROOT Graf modules"; license = lib.licenses.lgpl21Plus; - hydraPlatforms = lib.platforms.none; }) {}; "HROOT-hist" = callPackage @@ -9398,7 +8791,6 @@ self: { ]; description = "Haskell binding to ROOT Hist modules"; license = lib.licenses.lgpl21Plus; - hydraPlatforms = lib.platforms.none; }) {}; "HROOT-io" = callPackage @@ -9415,7 +8807,6 @@ self: { ]; description = "Haskell binding to ROOT IO modules"; license = lib.licenses.lgpl21Plus; - hydraPlatforms = lib.platforms.none; }) {}; "HROOT-math" = callPackage @@ -9432,7 +8823,6 @@ self: { ]; description = "Haskell binding to ROOT Math modules"; license = lib.licenses.lgpl21Plus; - hydraPlatforms = lib.platforms.none; }) {}; "HROOT-net" = callPackage @@ -9450,7 +8840,6 @@ self: { librarySystemDepends = [ RHTTP ]; description = "Haskell binding to ROOT Net modules"; license = lib.licenses.lgpl21Plus; - hydraPlatforms = lib.platforms.none; }) {RHTTP = null;}; "HROOT-tree" = callPackage @@ -9467,7 +8856,6 @@ self: { ]; description = "Haskell binding to ROOT Tree modules"; license = lib.licenses.lgpl21Plus; - hydraPlatforms = lib.platforms.none; }) {}; "HRay" = callPackage @@ -9482,7 +8870,6 @@ self: { executableHaskellDepends = [ array base directory haskell98 ]; description = "Haskell raytracer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "HRay"; }) {}; @@ -9504,8 +8891,6 @@ self: { ]; description = "Generate FFI import declarations from C include files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HSGEP" = callPackage @@ -9524,7 +8909,6 @@ self: { executableHaskellDepends = [ csv ]; description = "Gene Expression Programming evolutionary algorithm in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "HSGEP_Regression"; }) {}; @@ -9562,7 +8946,6 @@ self: { ]; description = "Convenience functions that use HSH, instances for HSH"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "HSet" = callPackage @@ -9574,8 +8957,6 @@ self: { libraryHaskellDepends = [ base containers hashable hashtables ]; description = "Faux heterogeneous sets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HSlippyMap" = callPackage @@ -9638,7 +9019,6 @@ self: { ]; description = "Audio file reading/writing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HStringTemplate" = callPackage @@ -9677,7 +9057,6 @@ self: { ]; description = "Convenience functions and instances for HStringTemplate"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "HSvm" = callPackage @@ -9778,7 +9157,6 @@ self: { ]; description = "Tableau based theorem prover for hybrid logics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "htab"; }) {}; @@ -9797,9 +9175,7 @@ self: { ]; description = "An SDL tic-tac-toe game"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "HTicTacToe"; - broken = true; }) {}; "HUnit" = callPackage @@ -9823,8 +9199,6 @@ self: { libraryHaskellDepends = [ ansi-terminal base Diff groom HUnit ]; description = "Assertions for HUnit with difference reporting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HUnit-Plus" = callPackage @@ -9846,8 +9220,6 @@ self: { ]; description = "A test framework building on HUnit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HUnit-approx" = callPackage @@ -9886,7 +9258,6 @@ self: { ]; description = "A (prototyped) easy to use XMPP library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hxmpp-0.0.1.0-test"; }) {}; @@ -9905,8 +9276,6 @@ self: { ]; description = "A Compiler from XQuery to Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HaGL" = callPackage @@ -9927,8 +9296,6 @@ self: { testHaskellDepends = [ base bytestring directory GLUT HUnit ]; description = "Haskell-embedded OpenGL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HaLeX" = callPackage @@ -9943,9 +9310,7 @@ self: { libraryHaskellDepends = [ base HUnit mtl QuickCheck ]; description = "HaLeX enables modelling, manipulation and visualization of regular languages"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "halex"; - broken = true; }) {}; "HaMinitel" = callPackage @@ -9957,8 +9322,6 @@ self: { libraryHaskellDepends = [ base bytestring serialport stm ]; description = "An Haskell library to drive the french Minitel through a serial port"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HaPy" = callPackage @@ -9970,8 +9333,6 @@ self: { libraryHaskellDepends = [ base template-haskell th-lift ]; description = "Haskell bindings for Python"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HaRe" = callPackage @@ -10008,7 +9369,6 @@ self: { ]; description = "the Haskell Refactorer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ghc-hare"; }) {}; @@ -10048,7 +9408,6 @@ self: { ]; description = "This package is deprecated. From version 3, HaTeX does not need this anymore."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "metahatex"; }) {}; @@ -10065,7 +9424,6 @@ self: { ]; description = "Quasiquoters for HaTeX"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HaVSA" = callPackage @@ -10085,7 +9443,6 @@ self: { ]; description = "An implementation of the Version Space Algebra learning framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tests"; }) {}; @@ -10099,7 +9456,6 @@ self: { testHaskellDepends = [ base bytestring HUnit text ]; description = "An XPath-generating embedded domain specific language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HaXml" = callPackage @@ -10134,7 +9490,6 @@ self: { executableHaskellDepends = [ text time vty vty-ui ]; description = "Simple chat"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "HackMail" = callPackage @@ -10155,9 +9510,7 @@ self: { ]; description = "A Procmail Replacement as Haskell EDSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hackmail"; - broken = true; }) {}; "Haggressive" = callPackage @@ -10175,8 +9528,6 @@ self: { testHaskellDepends = [ base Cabal containers HUnit tuple vector ]; description = "Aggression analysis for Tweets on Twitter"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HandlerSocketClient" = callPackage @@ -10188,8 +9539,6 @@ self: { libraryHaskellDepends = [ base bytestring network ]; description = "Haskell implementation of a HandlerSocket client (API)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HandsomeSoup" = callPackage @@ -10224,9 +9573,7 @@ self: { testHaskellDepends = [ base hspec transformers ]; description = "The classic game of Hangman"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "Hangman"; - broken = true; }) {}; "HangmanAscii" = callPackage @@ -10244,9 +9591,7 @@ self: { ]; description = "Yet another Hangman game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hangman-ascii"; - broken = true; }) {}; "HappyTree" = callPackage @@ -10264,8 +9609,6 @@ self: { ]; description = "Type Safe and End to End Decision Tree"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HarmTrace" = callPackage @@ -10289,7 +9632,6 @@ self: { ]; description = "Harmony Analysis and Retrieval of Music"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "harmtrace"; }) {}; @@ -10312,8 +9654,6 @@ self: { ]; description = "Parsing and unambiguously representing musical chords"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HasBigDecimal" = callPackage @@ -10347,8 +9687,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Haskell bindings for CacBDD"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {CacBDD = null;}; "HasGP" = callPackage @@ -10365,7 +9703,6 @@ self: { ]; description = "A Haskell library for inference using Gaussian processes"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "Haschoo" = callPackage @@ -10384,7 +9721,6 @@ self: { ]; description = "Minimalist R5RS Scheme interpreter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haschoo"; }) {}; @@ -10404,7 +9740,6 @@ self: { ]; description = "Simple shell written in Haskell"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hashell"; }) {}; @@ -10422,8 +9757,6 @@ self: { ]; description = "HaskRel, Haskell as a DBMS with support for the relational algebra"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HaskellAnalysisProgram" = callPackage @@ -10447,9 +9780,7 @@ self: { ]; description = "Haskell source code analysis program"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "HaskellAnalysisProgram"; - broken = true; }) {}; "HaskellForMaths" = callPackage @@ -10461,8 +9792,6 @@ self: { libraryHaskellDepends = [ array base containers random ]; description = "Combinatorics, group theory, commutative algebra, non-commutative algebra"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HaskellLM" = callPackage @@ -10474,8 +9803,6 @@ self: { libraryHaskellDepends = [ base hmatrix ]; description = "Pure Haskell implementation of the Levenberg-Marquardt algorithm"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HaskellNN" = callPackage @@ -10487,8 +9814,6 @@ self: { libraryHaskellDepends = [ base hmatrix random ]; description = "High Performance Neural Network in Haskell"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HaskellNet" = callPackage @@ -10547,9 +9872,7 @@ self: { ]; description = "A concurrent bittorrent client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "HaskellTorrent"; - broken = true; }) {}; "HaskellTutorials" = callPackage @@ -10563,9 +9886,7 @@ self: { executableHaskellDepends = [ base cmdargs text ]; description = "Haskell Tutorials by Evgeny Ukhanov"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "Haskell.Tutorials"; - broken = true; }) {}; "Haskelloids" = callPackage @@ -10583,9 +9904,7 @@ self: { ]; description = "A reproduction of the Atari 1979 classic \"Asteroids\""; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Haskelloids"; - broken = true; }) {}; "Hastodon" = callPackage @@ -10627,7 +9946,6 @@ self: { ]; description = "A small 2D game framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "Hawk" = callPackage @@ -10649,7 +9967,6 @@ self: { ]; description = "Haskell Web Application Kit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Hayoo" = callPackage @@ -10676,7 +9993,6 @@ self: { ]; description = "The Hayoo! search engine for Haskell API search on hackage"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "Hclip" = callPackage @@ -10709,7 +10025,6 @@ self: { ]; description = "Line oriented editor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hedi"; }) {}; @@ -10729,8 +10044,6 @@ self: { testHaskellDepends = [ base linear subhask ]; description = "automatically improve your code's numeric stability"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Hermes" = callPackage @@ -10749,8 +10062,6 @@ self: { ]; description = "Message-based middleware layer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Hieroglyph" = callPackage @@ -10768,7 +10079,6 @@ self: { ]; description = "Purely functional 2D graphics for visualization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HiggsSet" = callPackage @@ -10785,7 +10095,6 @@ self: { ]; description = "A multi-index set with advanced query capabilites"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Hipmunk" = callPackage @@ -10799,8 +10108,6 @@ self: { ]; description = "A Haskell binding for Chipmunk"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Hipmunk-Utils" = callPackage @@ -10813,7 +10120,6 @@ self: { testHaskellDepends = [ base ]; description = "Useful functions for Hipmunk"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HipmunkPlayground" = callPackage @@ -10831,7 +10137,6 @@ self: { ]; description = "A playground for testing Hipmunk"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "HipmunkPlayground"; }) {}; @@ -10852,9 +10157,7 @@ self: { base directory MissingH process regex-tdfa time ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hish"; - broken = true; }) {}; "Histogram" = callPackage @@ -10882,9 +10185,7 @@ self: { ]; description = "An MPD client designed for a Home Theatre PC"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hmpf"; - broken = true; }) {}; "Hoed" = callPackage @@ -10909,7 +10210,6 @@ self: { testHaskellDepends = [ base process QuickCheck ]; description = "Lightweight algorithmic debugging"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HoleyMonoid" = callPackage @@ -10940,7 +10240,6 @@ self: { ]; description = "intra- and inter-program communication"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "Holumbus-MapReduce" = callPackage @@ -10962,7 +10261,6 @@ self: { ]; description = "a distributed MapReduce framework"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "Holumbus-Searchengine" = callPackage @@ -10983,7 +10281,6 @@ self: { ]; description = "A search and indexing engine"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "Holumbus-Storage" = callPackage @@ -11003,7 +10300,6 @@ self: { ]; description = "a distributed storage system"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "Homology" = callPackage @@ -11034,7 +10330,6 @@ self: { testHaskellDepends = [ base process random ]; description = "A Simple Key Value Store"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HostAndPort" = callPackage @@ -11061,9 +10356,7 @@ self: { executableHaskellDepends = [ base containers ]; description = "A Cricket scoring application"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hricket"; - broken = true; }) {}; "Hs2lib" = callPackage @@ -11091,7 +10384,6 @@ self: { testHaskellDepends = [ base directory filepath process ]; description = "A Library and Preprocessor that makes it easier to create shared libs from Haskell programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HsASA" = callPackage @@ -11134,8 +10426,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell binding to libharu (http://libharu.sourceforge.net/)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HsHyperEstraier" = callPackage @@ -11152,8 +10442,6 @@ self: { libraryPkgconfigDepends = [ hyperestraier qdbm ]; description = "HyperEstraier binding for Haskell"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {hyperestraier = null; qdbm = null;}; "HsJudy" = callPackage @@ -11167,8 +10455,6 @@ self: { librarySystemDepends = [ Judy ]; description = "Judy bindings, and some nice APIs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {Judy = null;}; "HsOpenSSL" = callPackage @@ -11208,7 +10494,6 @@ self: { ]; description = "Haskell integration with Parrot virtual machine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "HsPerl5" = callPackage @@ -11220,8 +10505,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell interface to embedded Perl 5 interpreter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HsSVN" = callPackage @@ -11233,8 +10516,6 @@ self: { libraryHaskellDepends = [ base bytestring mtl stm ]; description = "Partial Subversion (SVN) binding for Haskell"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HsSyck" = callPackage @@ -11260,8 +10541,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Haskell helper functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HsWebots" = callPackage @@ -11285,7 +10564,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Webots bindings for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {Controller = null; driver = null;}; "HsYAML" = callPackage @@ -11352,7 +10630,6 @@ self: { ]; description = "Stream Editor in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Hsed"; }) {}; @@ -11371,8 +10648,6 @@ self: { ]; description = "Haskell library for easy interaction with SMT-LIB 2 compliant solvers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HueAPI" = callPackage @@ -11388,8 +10663,6 @@ self: { ]; description = "API for controlling Philips Hue lights"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "HulkImport" = callPackage @@ -11407,9 +10680,7 @@ self: { testHaskellDepends = [ base tasty tasty-golden ]; description = "Easily bulk import CSV data to SQL Server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "HulkImport-exe"; - broken = true; }) {}; "Hungarian-Munkres" = callPackage @@ -11427,7 +10698,6 @@ self: { benchmarkHaskellDepends = [ array base criterion Munkres random ]; description = "A Linear Sum Assignment Problem (LSAP) solver"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "Hydrogen" = callPackage @@ -11448,7 +10718,6 @@ self: { testHaskellDepends = [ base ]; description = "The library for generating a WebGL scene for the web"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Hydrogen-exe"; }) {}; @@ -11464,8 +10733,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; description = "Code for the Haskell course taught at the University of Seville"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "IDynamic" = callPackage @@ -11477,8 +10744,6 @@ self: { libraryHaskellDepends = [ base containers directory ]; description = "Indexable, serializable form of Data.Dynamic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "IFS" = callPackage @@ -11494,9 +10759,7 @@ self: { ]; description = "Iterated Function System generation for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "IFS"; - broken = true; }) {}; "INblobs" = callPackage @@ -11516,7 +10779,6 @@ self: { ]; description = "Editor and interpreter for Interaction Nets"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "INblobs"; }) {}; @@ -11530,8 +10792,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Region based resource management for the IO monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "IORefCAS" = callPackage @@ -11550,7 +10810,6 @@ self: { ]; description = "Atomic compare and swap for IORefs and STRefs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "IOSpec" = callPackage @@ -11608,9 +10867,7 @@ self: { ]; description = "A RESTful microService for IPv6-related data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ipv6db"; - broken = true; }) {}; "IcoGrid" = callPackage @@ -11622,8 +10879,6 @@ self: { libraryHaskellDepends = [ array base GlomeVec ]; description = "Library for generating grids of hexagons and pentagons mapped to a sphere"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "IfElse" = callPackage @@ -11657,8 +10912,6 @@ self: { libraryHaskellDepends = [ base mtl template-haskell ]; description = "A library for writing Imperative style haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "IndentParser" = callPackage @@ -11681,7 +10934,6 @@ self: { libraryHaskellDepends = [ base PeanoWitnesses ]; description = "Length- and element-indexed lists sitting somewhere between homogeneous and fully heterogeneous"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "InfixApplicative" = callPackage @@ -11693,7 +10945,6 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "liftA2 for infix operators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "IntFormats" = callPackage @@ -11706,8 +10957,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Convert integers in various bases to and from strings"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "IntGraph" = callPackage @@ -11746,7 +10995,6 @@ self: { ]; description = "Data interning (with compact regions where possible)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Interpolation" = callPackage @@ -11805,8 +11053,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "DSL for IRC bots"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "IrrHaskell" = callPackage @@ -11838,8 +11084,6 @@ self: { ]; description = "A typeclass to determine if a given value is null"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "JSON-Combinator" = callPackage @@ -11857,7 +11101,6 @@ self: { ]; description = "A combinator library on top of a generalised JSON type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "JSON-Combinator-Examples" = callPackage @@ -11871,7 +11114,6 @@ self: { ]; description = "Example uses of the JSON-Combinator library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "JSONParser" = callPackage @@ -11903,8 +11145,6 @@ self: { ]; description = "JSON parser that uses byte strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "JYU-Utils" = callPackage @@ -11924,8 +11164,6 @@ self: { ]; description = "Some utility functions for JYU projects"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "JackMiniMix" = callPackage @@ -11937,8 +11175,6 @@ self: { libraryHaskellDepends = [ base hosc ]; description = "control JackMiniMix"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Javasf" = callPackage @@ -11955,7 +11191,6 @@ self: { ]; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "javasf"; }) {}; @@ -11970,9 +11205,7 @@ self: { executableHaskellDepends = [ base ]; description = "A utility to print the target version of Java class files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "javav"; - broken = true; }) {}; "Jazzkell" = callPackage @@ -11996,8 +11229,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A Json implementation for Haskell, with JavaScript Values and Encoding/Decoding"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Jikka" = callPackage @@ -12028,9 +11259,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "A transpiler from Python to C++ for competitive programming"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "jikka"; - broken = true; }) {}; "JsContracts" = callPackage @@ -12053,7 +11282,6 @@ self: { ]; description = "Design-by-contract for JavaScript"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "jscc"; }) {}; @@ -12076,7 +11304,6 @@ self: { ]; description = "Combinators for bidirectional JSON parsing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "JuPyTer-notebook" = callPackage @@ -12093,7 +11320,6 @@ self: { ]; description = "JuPyTer notebook parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "jupyter-extract"; }) {}; @@ -12134,9 +11360,7 @@ self: { ]; description = "BLP format decoder/encoder over JuicyPixels library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "blp2any"; - broken = true; }) {}; "JuicyPixels-blurhash" = callPackage @@ -12166,9 +11390,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Blurhash is a very compact represenation of a placeholder for an image"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "JuicyPixels-blurhash-exe"; - broken = true; }) {}; "JuicyPixels-canvas" = callPackage @@ -12180,8 +11402,6 @@ self: { libraryHaskellDepends = [ base containers JuicyPixels ]; description = "Functions for drawing lines, squares and so on pixel by pixel"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "JuicyPixels-extra" = callPackage @@ -12212,7 +11432,6 @@ self: { ]; description = "Convenience functions to obtain array representations of images"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "JuicyPixels-scale-dct" = callPackage @@ -12259,8 +11478,6 @@ self: { libraryHaskellDepends = [ base JuicyPixels vector ]; description = "Convert JuicyPixel images into RGBA format, flip, trim and so on"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "JunkDB" = callPackage @@ -12276,8 +11493,6 @@ self: { filepath mtl network resourcet ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "JunkDB-driver-gdbm" = callPackage @@ -12292,7 +11507,6 @@ self: { base bytestring conduit directory filepath JunkDB mtl resourcet ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "JunkDB-driver-hashtables" = callPackage @@ -12307,7 +11521,6 @@ self: { base bytestring conduit hashable hashtables JunkDB mtl resourcet ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "JustParse" = callPackage @@ -12319,8 +11532,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A simple and comprehensive Haskell parsing library"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "KMP" = callPackage @@ -12344,8 +11555,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A library with the kerbal space program universe and demo code"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Kalman" = callPackage @@ -12357,8 +11566,6 @@ self: { libraryHaskellDepends = [ base hmatrix ]; description = "A slightly extended Kalman filter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Kawaii-Parser" = callPackage @@ -12370,8 +11577,6 @@ self: { libraryHaskellDepends = [ base containers mtl ]; description = "A simple parsing library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "KdTree" = callPackage @@ -12399,8 +11604,6 @@ self: { ]; description = "A super small web framework for those who don't like big and fancy codebases"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "KiCS" = callPackage @@ -12426,7 +11629,6 @@ self: { ]; description = "A compiler from Curry to Haskell"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) kics;}; "KiCS-debugger" = callPackage @@ -12448,7 +11650,6 @@ self: { ]; description = "debug features for kics"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "mkstrict"; }) {}; @@ -12465,7 +11666,6 @@ self: { executableHaskellDepends = [ base KiCS ]; description = "a transformation used by the kics debugger"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "prophecy"; }) {}; @@ -12489,8 +11689,6 @@ self: { libraryHaskellDepends = [ base containers parsec ]; description = "A configuration language and a parser"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Kriens" = callPackage @@ -12502,8 +11700,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Category for Continuation Passing Style"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Kulitta" = callPackage @@ -12534,8 +11730,6 @@ self: { librarySystemDepends = [ kyotocabinet ]; description = "Kyoto Cabinet DB bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) kyotocabinet;}; "L-seed" = callPackage @@ -12553,8 +11747,6 @@ self: { ]; description = "Plant growing programming game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "LATS" = callPackage @@ -12571,8 +11763,6 @@ self: { librarySystemDepends = [ openblasCompat ]; description = "Linear Algebra on Typed Spaces"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) openblasCompat;}; "LC3" = callPackage @@ -12588,9 +11778,7 @@ self: { ]; description = "LC-3 virtual machine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "LC3"; - broken = true; }) {}; "LDAP" = callPackage @@ -12630,7 +11818,6 @@ self: { ]; description = "Lightweight Directory Access Protocol (LDAP) version 3"; license = lib.licenses.gpl2Plus; - hydraPlatforms = lib.platforms.none; }) {}; "LPFP" = callPackage @@ -12683,7 +11870,6 @@ self: { ]; description = "An automated prover targeting problems that involve nonlinear real arithmetic"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "lppaver"; }) {}; @@ -12708,8 +11894,6 @@ self: { libraryHaskellDepends = [ base containers QuickCheck ]; description = "Implements an LRU data structure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "LTS" = callPackage @@ -12730,9 +11914,7 @@ self: { benchmarkHaskellDepends = [ base criterion time ]; description = "LTS: Labelled Transition System"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "LTS"; - broken = true; }) {}; "LTree" = callPackage @@ -12795,8 +11977,6 @@ self: { ]; description = "A type-safe EDSL for TouchDesigner written in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "LambdaHack" = callPackage @@ -12834,7 +12014,6 @@ self: { description = "A game engine library for tactical squad ASCII roguelike dungeon crawlers"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; mainProgram = "LambdaHack"; }) {}; @@ -12855,7 +12034,6 @@ self: { ]; description = "Graphical Interaction Net Evaluator for Optimal Evaluation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "LambdaINet"; }) {}; @@ -12872,8 +12050,6 @@ self: { ]; description = "A configurable and extensible neural network library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "LambdaPrettyQuote" = callPackage @@ -12898,7 +12074,6 @@ self: { ]; description = "Quasiquoter, and Arbitrary helpers for the lambda calculus"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "LambdaShell" = callPackage @@ -12916,7 +12091,6 @@ self: { ]; description = "Simple shell for evaluating lambda expressions"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "lambdaShell"; }) {}; @@ -12930,8 +12104,6 @@ self: { testHaskellDepends = [ base filepath hspec mtl process text ]; description = "A library to easily host Haskell based programming competitions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Lambdaya" = callPackage @@ -12948,8 +12120,6 @@ self: { ]; description = "Library for RedPitaya"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "LargeCardinalHierarchy" = callPackage @@ -12961,8 +12131,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A transfinite cardinal arithmetic library including all known large cardinals"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Lastik" = callPackage @@ -12979,8 +12147,6 @@ self: { ]; description = "A library for compiling programs in a variety of languages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Lattices" = callPackage @@ -12998,7 +12164,6 @@ self: { ]; description = "A library for lattices"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "Lazy-Pbkdf2" = callPackage @@ -13033,8 +12198,6 @@ self: { testHaskellDepends = [ base containers hmatrix vector ]; description = "The most frequently used machine learning tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "LetsBeRational" = callPackage @@ -13059,9 +12222,7 @@ self: { executableHaskellDepends = [ base directory random SDL SDL-ttf ]; description = "A Snake II clone written using SDL"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "Level0"; - broken = true; }) {}; "LibClang" = callPackage @@ -13082,8 +12243,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Haskell bindings for libclang (a C++ parsing library)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (self.llvmPackages) clang; inherit (pkgs) ncurses;}; "LibZip" = callPackage @@ -13114,8 +12273,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Wrapper for data that can be unbounded"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "LinearSplit" = callPackage @@ -13130,7 +12287,6 @@ self: { ]; description = "Partition the sequence of items to the subsequences in the order given"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "LinguisticsTypes" = callPackage @@ -13175,7 +12331,6 @@ self: { ]; description = "Check a bunch of local html files for broken links"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "linkchecker"; }) {}; @@ -13189,8 +12344,6 @@ self: { testHaskellDepends = [ base binary bytestring HTF mtl ]; description = "Algorithmic Doom map generation"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "List" = callPackage @@ -13243,7 +12396,6 @@ self: { ]; description = "List transformer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ListTree" = callPackage @@ -13296,9 +12448,7 @@ self: { doHaddock = false; description = "Converter to convert from .lhs to .md and vice versa."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "lhsc"; - broken = true; }) {}; "Logic" = callPackage @@ -13310,8 +12460,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Logic"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "LogicGrowsOnTrees" = callPackage @@ -13348,7 +12496,6 @@ self: { benchmarkHaskellDepends = [ base cereal criterion deepseq ]; description = "a parallel implementation of logic programming using distributed tree exploration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "LogicGrowsOnTrees-MPI" = callPackage @@ -13370,7 +12517,6 @@ self: { librarySystemDepends = [ openmpi ]; description = "an adapter for LogicGrowsOnTrees that uses MPI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) openmpi;}; "LogicGrowsOnTrees-network" = callPackage @@ -13396,7 +12542,6 @@ self: { ]; description = "an adapter for LogicGrowsOnTrees that uses multiple processes running in a network"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "LogicGrowsOnTrees-processes" = callPackage @@ -13423,7 +12568,6 @@ self: { benchmarkHaskellDepends = [ base criterion LogicGrowsOnTrees ]; description = "an adapter for LogicGrowsOnTrees that uses multiple processes for parallelism"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "LslPlus" = callPackage @@ -13444,7 +12588,6 @@ self: { ]; description = "An execution and testing framework for the Linden Scripting Language (LSL)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "LslPlus"; }) {}; @@ -13466,7 +12609,6 @@ self: { ]; description = "HTTP Daemonic Library"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "lucu-implant-file"; }) {}; @@ -13496,7 +12638,6 @@ self: { ]; description = "A static website and blog generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "lykah"; }) {}; @@ -13510,8 +12651,6 @@ self: { testHaskellDepends = [ base containers mtl ]; description = "Generate MASM code from haskell"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MBot" = callPackage @@ -13523,8 +12662,6 @@ self: { libraryHaskellDepends = [ base bytestring hidapi mtl ]; description = "Haskell interface for controlling the mBot educational robot"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MC-Fold-DP" = callPackage @@ -13543,7 +12680,6 @@ self: { executableHaskellDepends = [ cmdargs split ]; description = "Folding algorithm based on nucleotide cyclic motifs"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "MCFoldDP"; }) {}; @@ -13570,7 +12706,6 @@ self: { libraryToolDepends = [ cpphs ]; description = "stateful, RESTful web framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "MHask" = callPackage @@ -13582,8 +12717,6 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "The category of monads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MIP" = callPackage @@ -13611,8 +12744,6 @@ self: { ]; description = "Library for using Mixed Integer Programming (MIP)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MIP-glpk" = callPackage @@ -13637,7 +12768,6 @@ self: { ]; description = "A GLPK backend to the MIP library"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) glpk;}; "MSQueue" = callPackage @@ -13649,7 +12779,6 @@ self: { libraryHaskellDepends = [ base ghc-prim monad-loops ref-mtl stm ]; description = "Michael-Scott queue"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "MTGBuilder" = callPackage @@ -13663,9 +12792,7 @@ self: { executableHaskellDepends = [ base containers mtl parsec ]; description = "Builds decks out of a meta"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mtg-builder"; - broken = true; }) {}; "MagicHaskeller" = callPackage @@ -13695,7 +12822,6 @@ self: { ]; description = "Automatic inductive functional programmer by systematic search"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "MailchimpSimple" = callPackage @@ -13714,7 +12840,6 @@ self: { ]; description = "Haskell library to interact with Mailchimp JSON API Version 3.0"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Map" = callPackage @@ -13731,7 +12856,6 @@ self: { testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; description = "Class of key-value maps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "MapWith" = callPackage @@ -13745,8 +12869,6 @@ self: { benchmarkHaskellDepends = [ base ]; description = "mapWith: like fmap, but with additional parameters (isFirst, isLast, etc)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Mapping" = callPackage @@ -13758,8 +12880,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Mapping"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MaybeT" = callPackage @@ -13773,8 +12893,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "MaybeT monad transformer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MaybeT-monads-tf" = callPackage @@ -13786,8 +12904,6 @@ self: { libraryHaskellDepends = [ base monads-tf transformers ]; description = "MaybeT monad transformer compatible with monads-tf (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MaybeT-transformers" = callPackage @@ -13799,8 +12915,6 @@ self: { libraryHaskellDepends = [ base monads-fd transformers ]; description = "MaybeT monad transformer using transformers instead of mtl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MazesOfMonad" = callPackage @@ -13820,9 +12934,7 @@ self: { ]; description = "Console-based Role Playing Game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mazesofmonad"; - broken = true; }) {}; "MeanShift" = callPackage @@ -13834,8 +12946,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Mean shift algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Measure" = callPackage @@ -13847,8 +12957,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A library for units of measurement"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Mecha" = callPackage @@ -13860,8 +12968,6 @@ self: { libraryHaskellDepends = [ base machines ]; description = "mecha are the most complex composite machines known to humanity, lets build them well!"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Mechs" = callPackage @@ -13873,8 +12979,6 @@ self: { libraryHaskellDepends = [ base machines ]; description = "mecha are the most complex composite machines known to humanity, lets build them well!"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MemoTrie" = callPackage @@ -13903,8 +13007,6 @@ self: { ]; description = "Statically checked database access"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MetaObject" = callPackage @@ -13916,7 +13018,6 @@ self: { libraryHaskellDepends = [ base containers stringtable-atom ]; description = "A meta-object system for Haskell based on Perl 6"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Metrics" = callPackage @@ -13928,7 +13029,6 @@ self: { libraryHaskellDepends = [ base hstats ]; description = "Evaluation metrics commonly used in supervised machine learning"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Mhailist" = callPackage @@ -13947,7 +13047,6 @@ self: { ]; description = "Haskell mailing list manager"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mhailist"; }) {}; @@ -13965,7 +13064,6 @@ self: { ]; description = "OpenGL for dummies"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "MicrosoftTranslator" = callPackage @@ -13982,7 +13080,6 @@ self: { ]; description = "Interface for Microsoft Translator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "MiniAgda" = callPackage @@ -14004,9 +13101,7 @@ self: { testToolDepends = [ goldplate ]; description = "A toy dependently typed programming language with type-based termination"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "miniagda"; - broken = true; }) {}; "MissingH" = callPackage @@ -14068,7 +13163,6 @@ self: { libraryHaskellDepends = [ anydbm base MissingH ]; description = "Haskell interface to Python"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "Mobile-Legends-Hack-Cheats" = callPackage @@ -14091,8 +13185,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "spam"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Modulo" = callPackage @@ -14118,9 +13210,7 @@ self: { executableHaskellDepends = [ base GLUT random ]; description = "A FRP library based on signal functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "MoeExample"; - broken = true; }) {}; "MoeDict" = callPackage @@ -14136,8 +13226,6 @@ self: { ]; description = "Utilities working with MoeDict.tw JSON dataset"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MonadCatchIO-mtl" = callPackage @@ -14153,8 +13241,6 @@ self: { ]; description = "Monad-transformer version of the Control.Exception module"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MonadCatchIO-mtl-foreign" = callPackage @@ -14166,7 +13252,6 @@ self: { libraryHaskellDepends = [ base MonadCatchIO-mtl mtl primitive ]; description = "Polymorphic combinators for working with foreign functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "MonadCatchIO-transformers" = callPackage @@ -14197,8 +13282,6 @@ self: { ]; description = "Polymorphic combinators for working with foreign functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MonadCompose" = callPackage @@ -14210,8 +13293,6 @@ self: { libraryHaskellDepends = [ base free mmorph mtl transformers ]; description = "Methods for composing monads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MonadLab" = callPackage @@ -14228,7 +13309,6 @@ self: { executableHaskellDepends = [ base haskell98 process ]; description = "Automatically generate layered monads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mlab"; }) {}; @@ -14269,8 +13349,6 @@ self: { libraryHaskellDepends = [ base MonadRandom mtl random ]; description = "Lazy monad for psuedo random-number generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MonadStack" = callPackage @@ -14282,8 +13360,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Generalizing lift to monad stacks"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Monadius" = callPackage @@ -14298,9 +13374,7 @@ self: { executableHaskellDepends = [ array base directory GLUT OpenGL ]; description = "2-D arcade scroller"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "monadius"; - broken = true; }) {}; "Monadoro" = callPackage @@ -14336,7 +13410,6 @@ self: { ]; description = "A simple tetris clone"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Monaris"; }) {}; @@ -14349,8 +13422,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Monad transformer library with uniform liftings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Monatron-IO" = callPackage @@ -14362,7 +13433,6 @@ self: { libraryHaskellDepends = [ base Monatron transformers ]; description = "MonadIO instances for the Monatron transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Mondrian" = callPackage @@ -14387,7 +13457,6 @@ self: { testHaskellDepends = [ base ]; description = "Renders backgrounds & borders"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "Monocle" = callPackage @@ -14399,7 +13468,6 @@ self: { libraryHaskellDepends = [ base containers haskell98 mtl ]; description = "Symbolic computations in strict monoidal categories with LaTeX output"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "MorseCode" = callPackage @@ -14433,8 +13501,6 @@ self: { ]; description = "Automated Mutation Testing"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MuCheck-HUnit" = callPackage @@ -14449,7 +13515,6 @@ self: { executableHaskellDepends = [ base HUnit MuCheck ]; description = "Automated Mutation Testing for HUnit tests"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "mucheck-hunit"; }) {}; @@ -14465,7 +13530,6 @@ self: { executableHaskellDepends = [ base hspec hspec-core MuCheck ]; description = "Automated Mutation Testing for Hspec tests"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "mucheck-hspec"; }) {}; @@ -14481,7 +13545,6 @@ self: { executableHaskellDepends = [ base MuCheck QuickCheck ]; description = "Automated Mutation Testing for QuickCheck tests"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "mucheck-quickcheck"; }) {}; @@ -14497,7 +13560,6 @@ self: { executableHaskellDepends = [ base MuCheck smallcheck ]; description = "Automated Mutation Testing for SmallCheck tests"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "mucheck-smallcheck"; }) {}; @@ -14522,8 +13584,6 @@ self: { libraryHaskellDepends = [ array base ]; description = "Munkres' assignment algorithm (hungarian method)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Munkres-simple" = callPackage @@ -14535,8 +13595,6 @@ self: { libraryHaskellDepends = [ array base bimap containers Munkres ]; description = "Simple and typesafe layer over the Munkres package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "MusicBrainz" = callPackage @@ -14603,7 +13661,6 @@ self: { ]; description = "Most likely order of mutation events in RNA"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "MutationOrder"; }) {}; @@ -14620,9 +13677,7 @@ self: { benchmarkHaskellDepends = [ base time ]; description = "Generate all primes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "PrimesList"; - broken = true; }) {}; "NGLess" = callPackage @@ -14703,7 +13758,6 @@ self: { ]; description = "NGLess implements ngless, a DSL for processing sequencing data"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "ngless"; }) {}; @@ -14718,9 +13772,7 @@ self: { executableHaskellDepends = [ base HCL HTTP network regex-compat ]; description = "Simple application for calculating n-grams using Google"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ngrams"; - broken = true; }) {}; "NMap" = callPackage @@ -14732,8 +13784,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A transparent nested Map structure"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "NTRU" = callPackage @@ -14750,7 +13800,6 @@ self: { ]; description = "NTRU Cryptography"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "NXT" = callPackage @@ -14775,8 +13824,6 @@ self: { ]; description = "A Haskell interface to Lego Mindstorms NXT"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {bluetooth = null;}; "NXTDSL" = callPackage @@ -14795,9 +13842,7 @@ self: { ]; description = "Generate NXC Code from DSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "legoDSL"; - broken = true; }) {}; "NaCl" = callPackage @@ -14821,8 +13866,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Easy-and-safe-to-use high-level Haskell bindings to NaCl"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "NameGenerator" = callPackage @@ -14856,9 +13899,7 @@ self: { ]; description = "NanoID generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "nanoid"; - broken = true; }) {}; "NanoProlog" = callPackage @@ -14873,9 +13914,7 @@ self: { executableHaskellDepends = [ base uu-parsinglib ]; description = "Very small interpreter for a Prolog-like language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "nano-prolog"; - broken = true; }) {}; "Naperian" = callPackage @@ -14889,8 +13928,6 @@ self: { libraryHaskellDepends = [ base containers ghc-prim vector ]; description = "Naperian Functors for APL-like programming"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "NaperianNetCDF" = callPackage @@ -14905,7 +13942,6 @@ self: { executableHaskellDepends = [ base hnetcdf Naperian split ]; description = "Instances of NcStore for hypercuboids"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Main"; }) {}; @@ -14936,7 +13972,6 @@ self: { ]; description = "Simple scoring schemes for word alignments"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "NaturalSort" = callPackage @@ -14950,8 +13985,6 @@ self: { libraryHaskellDepends = [ base bytestring strict ]; description = "Natural sorting for strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "NearContextAlgebra" = callPackage @@ -14969,7 +14002,6 @@ self: { ]; description = "Context Algebra of near"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "NearContextAlgebra"; }) {}; @@ -14993,8 +14025,6 @@ self: { ]; description = "Simple networked key/value store"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "NestedFunctor" = callPackage @@ -15006,8 +14036,6 @@ self: { libraryHaskellDepends = [ base comonad distributive ]; description = "Nested composition of functors with a type index tracking nesting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "NestedSampling" = callPackage @@ -15032,8 +14060,6 @@ self: { testHaskellDepends = [ base bytestring HUnit process ]; description = "Bindings for net-snmp's C API for clients"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) net-snmp;}; "Network-NineP" = callPackage @@ -15096,7 +14122,6 @@ self: { ]; description = "Ninja game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Ninjas"; }) {}; @@ -15128,7 +14153,6 @@ self: { ]; description = "Microbenchmarks for various array libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "NoTrace" = callPackage @@ -15141,8 +14165,6 @@ self: { testHaskellDepends = [ base ]; description = "Remove all the functions come from Debug.Trace after debugging"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Noise" = callPackage @@ -15173,7 +14195,6 @@ self: { ]; description = "A Nomic game in haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Nomyx"; }) {}; @@ -15201,7 +14222,6 @@ self: { ]; description = "A Nomic game in haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Nomyx-Language" = callPackage @@ -15221,7 +14241,6 @@ self: { ]; description = "Language to express rules for Nomic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Nomyx-Rules" = callPackage @@ -15239,7 +14258,6 @@ self: { ]; description = "Language to express rules for Nomic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Nomyx-Web" = callPackage @@ -15264,7 +14282,6 @@ self: { ]; description = "Web gui for Nomyx"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "NonEmpty" = callPackage @@ -15276,8 +14293,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Library providing a non-empty list datatype, and total functions operating on it"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "NonEmptyList" = callPackage @@ -15294,7 +14309,6 @@ self: { ]; description = "A list with a length of at least one"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "NumInstances" = callPackage @@ -15328,8 +14342,6 @@ self: { libraryHaskellDepends = [ array base ]; description = "Number Theoretic Sieves: primes, factorization, and Euler's Totient"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "NumberTheory" = callPackage @@ -15342,8 +14354,6 @@ self: { testHaskellDepends = [ base containers HUnit primes ]; description = "A library for number theoretic computations, written in Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Numbers" = callPackage @@ -15372,7 +14382,6 @@ self: { ]; description = "Nussinov78 using the ADPfusion library"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "Nussinov78"; }) {}; @@ -15385,8 +14394,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A little library to calculate nutrition values of food items"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "OGDF" = callPackage @@ -15403,8 +14410,6 @@ self: { librarySystemDepends = [ COIN OGDF ]; description = "Haskell binding to OGDF"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {COIN = null; OGDF = null;}; "OGL" = callPackage @@ -15416,8 +14421,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A context aware binding for the OpenGL graphics system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ONC-RPC" = callPackage @@ -15442,9 +14445,7 @@ self: { executableHaskellDepends = [ base filepath ]; description = "ONC RPC (aka Sun RPC) and XDR library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "hsrpcgen"; - broken = true; }) {}; "OSM" = callPackage @@ -15460,8 +14461,6 @@ self: { ]; description = "Parse OpenStreetMap files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "OTP" = callPackage @@ -15481,8 +14480,6 @@ self: { testHaskellDepends = [ base bytestring tasty tasty-hunit time ]; description = "HMAC-Based and Time-Based One-Time Passwords (HOTP & TOTP)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Object" = callPackage @@ -15494,8 +14491,6 @@ self: { libraryHaskellDepends = [ base containers ghc template-haskell ]; description = "Object oriented programming for haskell using multiparameter typeclasses"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ObjectIO" = callPackage @@ -15511,8 +14506,6 @@ self: { winspool ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {comctl32 = null; comdlg32 = null; gdi32 = null; kernel32 = null; ole32 = null; shell32 = null; user32 = null; winmm = null; winspool = null;}; @@ -15561,8 +14554,6 @@ self: { ]; description = "Simple unbalanced Octree for storing data about 3D points"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "OddWord" = callPackage @@ -15578,8 +14569,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Provides a wrapper for deriving word types with fewer bits"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Omega" = callPackage @@ -15592,8 +14581,6 @@ self: { testHaskellDepends = [ base containers HUnit ]; description = "Integer sets and relations using Presburger arithmetic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "OnRmt" = callPackage @@ -15630,7 +14617,6 @@ self: { ]; description = "Text UI library for performing parallel remote SSH operations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "OneTuple" = callPackage @@ -15676,8 +14662,6 @@ self: { ]; description = "IBM AFP document format parser and generator"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "OpenAFP-Utils" = callPackage @@ -15698,7 +14682,6 @@ self: { ]; description = "Assorted utilities to work with AFP data streams"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "OpenAL" = callPackage @@ -15733,8 +14716,6 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Haskell high-level wrapper for OpenCL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {OpenCL = null;}; "OpenCLRaw" = callPackage @@ -15746,8 +14727,6 @@ self: { libraryHaskellDepends = [ base bytestring mtl ]; description = "The OpenCL Standard for heterogenous data-parallel computing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "OpenCLWrappers" = callPackage @@ -15759,8 +14738,6 @@ self: { libraryHaskellDepends = [ base bytestring mtl ]; description = "The OpenCL Standard for heterogenous data-parallel computing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "OpenGL" = callPackage @@ -15792,7 +14769,6 @@ self: { ]; description = "Quickcheck instances for various data structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "OpenGLRaw" = callPackage @@ -15822,8 +14798,6 @@ self: { libraryHaskellDepends = [ OpenGLRaw ]; description = "The intersection of OpenGL 2.1 and OpenGL 3.1 Core"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "OpenSCAD" = callPackage @@ -15843,7 +14817,6 @@ self: { ]; description = "ADT wrapper and renderer for OpenSCAD models"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "OpenVG" = callPackage @@ -15855,7 +14828,6 @@ self: { libraryHaskellDepends = [ base GLUT OpenGL OpenGLRaw OpenVGRaw ]; description = "OpenVG (ShivaVG-0.2.1) binding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "OpenVGRaw" = callPackage @@ -15867,8 +14839,6 @@ self: { libraryHaskellDepends = [ base OpenGLRaw ]; description = "Raw binding to OpenVG (ShivaVG-0.2.1 implementation)."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Operads" = callPackage @@ -15880,8 +14850,6 @@ self: { libraryHaskellDepends = [ array base containers mtl ]; description = "Groebner basis computation for Operads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "OptDir" = callPackage @@ -15909,8 +14877,6 @@ self: { ]; description = "A quasiquoter for or-patterns"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "OrchestrateDB" = callPackage @@ -15930,8 +14896,6 @@ self: { ]; description = "Unofficial Haskell Client Library for the Orchestrate.io API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "OrderedBits" = callPackage @@ -15978,9 +14942,7 @@ self: { testHaskellDepends = [ base safe threepenny-gui ]; description = "A Programming Language in Construction"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Ordinary-exe"; - broken = true; }) {}; "Oslo-Vectize" = callPackage @@ -15996,9 +14958,7 @@ self: { executableHaskellDepends = [ base ]; description = "spam"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "test1"; - broken = true; }) {}; "PArrows" = callPackage @@ -16010,8 +14970,6 @@ self: { libraryHaskellDepends = [ base containers ghc-prim mtl ]; description = "Arrow parser combinators similar to Parsec"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "PBKDF2" = callPackage @@ -16025,8 +14983,6 @@ self: { libraryHaskellDepends = [ base binary bytestring Crypto random ]; description = "Make password-based security schemes more secure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "PCLT" = callPackage @@ -16040,8 +14996,6 @@ self: { ]; description = "Extension to Show: templating, catalogizing, languages, parameters, etc"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "PCLT-DB" = callPackage @@ -16058,7 +15012,6 @@ self: { ]; description = "An addon to PCLT package: enchance PCLT catalog with PostgreSQL powers"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "PDBtools" = callPackage @@ -16083,8 +15036,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A generic derivable Haskell pretty printer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "PSQueue" = callPackage @@ -16114,8 +15065,6 @@ self: { ]; description = "An implementation of Montague's PTQ"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "PUH-Project" = callPackage @@ -16135,8 +15084,6 @@ self: { ]; description = "This is a package which includes Assignments, Email, User and Reviews modules for Programming in Haskell course"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "PageIO" = callPackage @@ -16163,7 +15110,6 @@ self: { ]; description = "Page-oriented extraction and composition library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pio"; }) {}; @@ -16183,7 +15129,6 @@ self: { ]; description = "a simple Paillier cryptosystem"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "PandocAgda" = callPackage @@ -16204,9 +15149,7 @@ self: { executableHaskellDepends = [ base ]; description = "Pandoc support for literate Agda"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "agdapandoc"; - broken = true; }) {}; "Paraiso" = callPackage @@ -16231,7 +15174,6 @@ self: { ]; description = "a code generator for partial differential equations solvers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Parallel-Arrows-BaseSpec" = callPackage @@ -16250,7 +15192,6 @@ self: { ]; description = "BaseSpecs used for @Parallel-Arrows-Definition@ and Co"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "Parallel-Arrows-Definition" = callPackage @@ -16262,8 +15203,6 @@ self: { libraryHaskellDepends = [ base deepseq split ]; description = "Multithreaded evaluation using Arrows"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Parallel-Arrows-Eden" = callPackage @@ -16284,7 +15223,6 @@ self: { ]; description = "Eden based backend for @Parallel-Arrows-Definition@"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "Parallel-Arrows-Multicore" = callPackage @@ -16304,7 +15242,6 @@ self: { ]; description = "GpH based backend for @Parallel-Arrows-Definition@ in a multicore variant"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "Parallel-Arrows-ParMonad" = callPackage @@ -16324,7 +15261,6 @@ self: { ]; description = "Par Monad (@monad-par@) based backend for @Parallel-Arrows-Definition@"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "Parry" = callPackage @@ -16342,8 +15278,6 @@ self: { ]; description = "A proven synchronization server for high performance computing"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ParsecTools" = callPackage @@ -16388,8 +15322,6 @@ self: { libraryHaskellDepends = [ base QuickCheck ]; description = "Simple library for generating passwords"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "PastePipe" = callPackage @@ -16421,8 +15353,6 @@ self: { ]; description = "A tree used to merge and maintain paths"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Pathfinder" = callPackage @@ -16435,8 +15365,6 @@ self: { librarySystemDepends = [ libxml2 ]; description = "Relational optimiser and code generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libxml2;}; "Peano" = callPackage @@ -16459,8 +15387,6 @@ self: { libraryHaskellDepends = [ base ]; description = "GADT type witnesses for Peano-style natural numbers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "PerfectHash" = callPackage @@ -16477,8 +15403,6 @@ self: { librarySystemDepends = [ cmph ]; description = "A perfect hashing library for mapping bytestrings to values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {cmph = null;}; "PermuteEffects" = callPackage @@ -16490,7 +15414,6 @@ self: { libraryHaskellDepends = [ base ReplicateEffects ]; description = "Permutations of effectful computations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Persistence" = callPackage @@ -16509,8 +15432,6 @@ self: { ]; description = "A versatile library for topological data analysis"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Phsu" = callPackage @@ -16535,9 +15456,7 @@ self: { ]; description = "Personal Happstack Server Utils"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "Phsu"; - broken = true; }) {}; "Pipe" = callPackage @@ -16549,8 +15468,6 @@ self: { libraryHaskellDepends = [ base filepath process unix ]; description = "Process piping library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Piso" = callPackage @@ -16562,8 +15479,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Partial isomorphisms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "PlayHangmanGame" = callPackage @@ -16598,8 +15513,6 @@ self: { ]; description = "Playing cards api"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Plot-ho-matic" = callPackage @@ -16621,7 +15534,6 @@ self: { ]; description = "Real-time line plotter for generic data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "PlslTools" = callPackage @@ -16641,7 +15553,6 @@ self: { ]; description = "So far just a lint like program for PL/SQL. Diff and refactoring tools are planned"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "PlslLint"; }) {}; @@ -16667,9 +15578,7 @@ self: { executableHaskellDepends = [ array base clock GLUT random ]; description = "An imaginary world"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "Pollutocracy"; - broken = true; }) {}; "PortFusion" = callPackage @@ -16683,9 +15592,7 @@ self: { executableHaskellDepends = [ base bytestring network splice ]; description = "high-performance distributed reverse / forward proxy & tunneling for TCP"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "PortFusion"; - broken = true; }) {}; "PortMidi" = callPackage @@ -16726,8 +15633,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Thin wrapper over the C postgresql library"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Prelude" = callPackage @@ -16741,8 +15646,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A Prelude module replacement"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "PrimitiveArray" = callPackage @@ -16778,8 +15681,6 @@ self: { ]; description = "Efficient multidimensional arrays"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "PrimitiveArray-Pretty" = callPackage @@ -16802,8 +15703,6 @@ self: { ]; description = "Pretty-printing for primitive arrays"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Printf-TH" = callPackage @@ -16814,7 +15713,6 @@ self: { sha256 = "0n1gva510p69vy25zvjkzwqqz2gilbns1wnrzz2p22rjkkbrinvx"; libraryHaskellDepends = [ base haskell98 pretty template-haskell ]; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "PriorityChansConverger" = callPackage @@ -16826,8 +15724,6 @@ self: { libraryHaskellDepends = [ base containers stm ]; description = "Read single output from an array of inputs - channels with priorities"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ProbabilityMonads" = callPackage @@ -16839,7 +15735,6 @@ self: { libraryHaskellDepends = [ base MaybeT MonadRandom mtl ]; description = "Probability distribution monads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Probnet" = callPackage @@ -16851,8 +15746,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Geometric Extrapolation of Integer Sequences with error prediction"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "PropLogic" = callPackage @@ -16899,8 +15792,6 @@ self: { ]; description = "Auto-active verification of floating-point programs"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Proper" = callPackage @@ -16915,8 +15806,6 @@ self: { executableHaskellDepends = [ base containers HUnit parsec syb ]; description = "An implementation of propositional logic in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ProxN" = callPackage @@ -16952,7 +15841,6 @@ self: { ]; description = "A Perl 6 Implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pugs"; }) {}; @@ -16973,7 +15861,6 @@ self: { doHaddock = false; description = "A networked event handling framework for hooking into other programs"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "pupevents-all"; }) {}; @@ -17008,7 +15895,6 @@ self: { ]; description = "A networked event handling framework for hooking into other programs"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "Pup-Events-PQueue" = callPackage @@ -17035,8 +15921,6 @@ self: { ]; description = "A networked event handling framework for hooking into other programs"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "PyF" = callPackage @@ -17068,8 +15952,6 @@ self: { libraryHaskellDepends = [ base containers mtl old-time random ]; description = "The Quantum IO Monad is a library for defining quantum computations in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "QLearn" = callPackage @@ -17081,8 +15963,6 @@ self: { libraryHaskellDepends = [ base random vector ]; description = "A library for fast, easy-to-use Q-learning"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "QuadEdge" = callPackage @@ -17094,8 +15974,6 @@ self: { libraryHaskellDepends = [ base random vector ]; description = "QuadEdge structure for representing triangulations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "QuadTree" = callPackage @@ -17108,8 +15986,6 @@ self: { testHaskellDepends = [ base composition lens QuickCheck ]; description = "QuadTree library for Haskell, with lens support"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "QuasiText" = callPackage @@ -17145,7 +16021,6 @@ self: { ]; description = "Programming with Eventual Consistency over Cassandra"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "QuickAnnotate" = callPackage @@ -17160,9 +16035,7 @@ self: { executableHaskellDepends = [ base haskell-src-exts ]; description = "Annotation Framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "qapp"; - broken = true; }) {}; "QuickCheck" = callPackage @@ -17217,8 +16090,6 @@ self: { benchmarkHaskellDepends = [ base hspec QuickCheck ]; description = "Valid and Invalid generator"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "QuickPlot" = callPackage @@ -17242,8 +16113,6 @@ self: { ]; description = "Quick and easy data visualization with Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Quickson" = callPackage @@ -17258,8 +16127,6 @@ self: { ]; description = "Quick JSON extractions with Aeson"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "R-pandoc" = callPackage @@ -17277,9 +16144,7 @@ self: { ]; executableHaskellDepends = [ base pandoc-types ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "R-pandoc"; - broken = true; }) {}; "RANSAC" = callPackage @@ -17323,7 +16188,6 @@ self: { ]; description = "A framework for writing RESTful applications"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "RFC1751" = callPackage @@ -17355,8 +16219,6 @@ self: { ]; description = "A reflective JSON serializer/parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "RLP" = callPackage @@ -17369,8 +16231,6 @@ self: { testHaskellDepends = [ base binary bytestring hspec ]; description = "RLP serialization as defined in Ethereum Yellow Paper"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "RMP" = callPackage @@ -17391,7 +16251,6 @@ self: { executableSystemDepends = [ canlib ftd2xx ]; description = "Binding to code that controls a Segway RMP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {canlib = null; ftd2xx = null;}; "RNAFold" = callPackage @@ -17414,7 +16273,6 @@ self: { ]; description = "RNA secondary structure prediction"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "RNAFoldProgs" = callPackage @@ -17434,7 +16292,6 @@ self: { ]; description = "RNA secondary structure folding"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "RNAdesign" = callPackage @@ -17460,7 +16317,6 @@ self: { executableHaskellDepends = [ bytestring cmdargs file-embed ]; description = "Multi-target RNA sequence design"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "RNAdesign"; }) {}; @@ -17481,7 +16337,6 @@ self: { executableHaskellDepends = [ cmdargs ]; description = "Draw RNA secondary structures"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "RNAdotplot"; }) {}; @@ -17515,7 +16370,6 @@ self: { ]; description = "Unsupervized construction of RNA family models"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "RNAwolf" = callPackage @@ -17536,7 +16390,6 @@ self: { executableHaskellDepends = [ cmdargs split ]; description = "RNA folding with non-canonical basepairs and base-triplets"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "RSA" = callPackage @@ -17592,8 +16445,6 @@ self: { ]; description = "AMQP 0-9-1 client library for RabbitMQ servers"; license = "BSD-3-Clause AND GPL-3.0-or-later"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Raincat" = callPackage @@ -17614,7 +16465,6 @@ self: { description = "A puzzle game written in Haskell with a cat in lead role"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; mainProgram = "raincat"; }) {}; @@ -17646,8 +16496,6 @@ self: { libraryHaskellDepends = [ base HTTP-Simple network ]; description = "Interface to random.org"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Randometer" = callPackage @@ -17661,9 +16509,7 @@ self: { executableHaskellDepends = [ base random-fu ]; description = "Randomness intuition trainer"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "randometer"; - broken = true; }) {}; "Range" = callPackage @@ -17675,8 +16521,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Data structure for managing ranges"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Ranged-sets" = callPackage @@ -17707,7 +16551,6 @@ self: { ]; description = "HTTP to XMPP omegle chats gate"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "Ranka"; }) {}; @@ -17729,9 +16572,7 @@ self: { ]; description = "Soccer simulation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Rasenschach"; - broken = true; }) {}; "Rasterific" = callPackage @@ -17805,8 +16646,6 @@ self: { ]; description = "Library to access Redmine's REST services"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Ref" = callPackage @@ -17818,8 +16657,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Generic Mutable Ref Abstraction Layer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "RefSerialize" = callPackage @@ -17855,9 +16692,7 @@ self: { ]; description = "A utility for computing distributions of material to review among reviewers"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "referees"; - broken = true; }) {}; "RepLib" = callPackage @@ -17873,8 +16708,6 @@ self: { ]; description = "Generic programming library with representation types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ReplaceUmlaut" = callPackage @@ -17905,7 +16738,6 @@ self: { ]; description = "converting text to properly encoded german umlauts"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "replaceUmlaut"; }) {}; @@ -17918,8 +16750,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Composable replication schemes of applicative functors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ReviewBoard" = callPackage @@ -17938,8 +16768,6 @@ self: { ]; description = "Haskell bindings to ReviewBoard"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "RichConditional" = callPackage @@ -17951,8 +16779,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Tiny library to replace classic if/else"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Ritt-Wu" = callPackage @@ -17981,9 +16807,7 @@ self: { ]; description = "Parallel implementation of Ritt-Wu's algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Ritt-Wu-exe"; - broken = true; }) {}; "Rlang-QQ" = callPackage @@ -18007,8 +16831,6 @@ self: { testHaskellDepends = [ base directory doctest hspec lens vector ]; description = "quasiquoter for inline-R code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "RollingDirectory" = callPackage @@ -18033,7 +16855,6 @@ self: { ]; description = "Limits the size of a directory's contents"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "RollingDirectory"; }) {}; @@ -18064,8 +16885,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit vector ]; description = "Haskell wrapper for RtMidi, the lightweight, cross-platform MIDI I/O library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) alsa-lib;}; "RxHaskell" = callPackage @@ -18077,8 +16896,6 @@ self: { libraryHaskellDepends = [ base containers stm transformers ]; description = "Reactive Extensions for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "S3" = callPackage @@ -18099,7 +16916,6 @@ self: { ]; description = "Library for accessing S3 compatible storage services"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; }) {}; "SBench" = callPackage @@ -18117,7 +16933,6 @@ self: { ]; description = "A benchmark suite for runtime and heap measurements over a series of inputs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "SCRIPTWriter" = callPackage @@ -18137,7 +16952,6 @@ self: { executableHaskellDepends = [ base ]; description = "ESCRIPT: a human friendly language for programming Bitcoin scripts"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "SCRIPTWriter-exe"; }) {}; @@ -18155,7 +16969,6 @@ self: { ]; description = "This is a library for handling calendars and resource availability based on the \"top-nodes algorithm\" and set operations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "SDL" = callPackage @@ -18273,8 +17086,6 @@ self: { ]; description = "SFML bindings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {csfml-audio = null; csfml-graphics = null; csfml-network = null; csfml-system = null; csfml-window = null; sfml-audio = null; sfml-graphics = null; sfml-network = null; @@ -18289,7 +17100,6 @@ self: { libraryHaskellDepends = [ base mtl SFML template-haskell ]; description = "Higher level library on top of SFML"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "SFont" = callPackage @@ -18301,7 +17111,6 @@ self: { libraryHaskellDepends = [ array base SDL Sprig ]; description = "SFont SDL Bitmap Fonts"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "SG" = callPackage @@ -18313,8 +17122,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Small geometry library for dealing with vectors and collision detection"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "SGdemo" = callPackage @@ -18328,7 +17135,6 @@ self: { executableHaskellDepends = [ base GLUT OpenGL SG ]; description = "An example of using the SG and OpenGL libraries"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "sgdemo"; }) {}; @@ -18341,8 +17147,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "(updated) Small geometry library for dealing with vectors and collision detection"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "SHA" = callPackage @@ -18398,9 +17202,7 @@ self: { benchmarkHaskellDepends = [ base directory filepath random time ]; description = "The Simple Javascript Wrench"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sjw"; - broken = true; }) {}; "SMTPClient" = callPackage @@ -18417,8 +17219,6 @@ self: { ]; description = "A simple SMTP client library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "SNet" = callPackage @@ -18435,8 +17235,6 @@ self: { libraryToolDepends = [ c2hsc ]; description = "Declarative coördination language for streaming networks"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "SQLDeps" = callPackage @@ -18467,9 +17265,7 @@ self: { testHaskellDepends = [ base containers ]; description = "STG Symbolic Execution"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "SSTG-exe"; - broken = true; }) {}; "STL" = callPackage @@ -18481,8 +17277,6 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring cereal text ]; description = "STL 3D geometry format parsing and pretty-printing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "STLinkUSB" = callPackage @@ -18498,7 +17292,6 @@ self: { ]; description = "STLink USB interface in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "STM32-Zombie" = callPackage @@ -18515,7 +17308,6 @@ self: { ]; description = "control a STM32F103 microcontroller"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "STM32F103xx-SVD" = callPackage @@ -18558,8 +17350,6 @@ self: { ]; description = "translate a SVD of a Microcontroller to Haskell tables"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "SVG2Q" = callPackage @@ -18577,7 +17367,6 @@ self: { ]; description = "Code generation tool for Quartz code from a SVG"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "svg2q"; }) {}; @@ -18645,9 +17434,7 @@ self: { ]; description = "Generate a parser (in Haskell) with the SableCC parser generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sable2hs"; - broken = true; }) {}; "Safe" = callPackage @@ -18685,8 +17472,6 @@ self: { librarySystemDepends = [ glib mono ]; description = "A .NET Bridge for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) glib; inherit (pkgs) mono;}; "Saturnin" = callPackage @@ -18710,9 +17495,7 @@ self: { testHaskellDepends = [ base data-default either hlint hspec mtl ]; description = "Saturnin CI / Job System"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "saturnin"; - broken = true; }) {}; "SciBaseTypes" = callPackage @@ -18763,7 +17546,6 @@ self: { ]; description = "Scientific workflow management system"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "SciFlow-drmaa" = callPackage @@ -18780,7 +17562,6 @@ self: { ]; description = "Scientific workflow management system"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ScratchFs" = callPackage @@ -18799,9 +17580,7 @@ self: { ]; description = "Size limited temp filesystem based on fuse"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "ScratchFs"; - broken = true; }) {}; "Scurry" = callPackage @@ -18820,7 +17599,6 @@ self: { ]; description = "A cross platform P2P VPN application built using Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "scurry"; }) {}; @@ -18835,8 +17613,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "simple static linked SHA3 using private symbols and the ref impl"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "SegmentTree" = callPackage @@ -18850,8 +17626,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Data structure for querying the set (or count) of intervals covering given point"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "SelectSequencesFromMSA" = callPackage @@ -18876,7 +17650,6 @@ self: { ]; description = "Selects a representative subset of sequences from multiple sequence alignment"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "SelectSequencesFromMSA"; }) {}; @@ -18896,9 +17669,7 @@ self: { ]; description = "Command-line tool for maintaining the Semantique database"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "semantique"; - broken = true; }) {}; "Semigroup" = callPackage @@ -18910,8 +17681,6 @@ self: { libraryHaskellDepends = [ base bytestring containers mtl ]; description = "A semigroup"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "SeqAlign" = callPackage @@ -18923,8 +17692,6 @@ self: { libraryHaskellDepends = [ base bytestring vector ]; description = "Sequence Alignment"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "SessionLogger" = callPackage @@ -18940,8 +17707,6 @@ self: { ]; description = "Easy Loggingframework"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Set" = callPackage @@ -18955,7 +17720,6 @@ self: { benchmarkHaskellDepends = [ base containers gauge util ]; description = "See README for more info"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "ShellCheck" = callPackage @@ -19000,8 +17764,6 @@ self: { libraryHaskellDepends = [ base directory mtl unix ]; description = "A framework for creating shell envinronments"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Shellac-compatline" = callPackage @@ -19015,7 +17777,6 @@ self: { libraryHaskellDepends = [ base Shellac Shellac-readline ]; description = "\"compatline\" backend module for Shellac"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Shellac-editline" = callPackage @@ -19029,7 +17790,6 @@ self: { libraryHaskellDepends = [ base editline Shellac ]; description = "Editline backend module for Shellac"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Shellac-haskeline" = callPackage @@ -19041,7 +17801,6 @@ self: { libraryHaskellDepends = [ base haskeline mtl Shellac ]; description = "Haskeline backend module for Shellac"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Shellac-readline" = callPackage @@ -19055,7 +17814,6 @@ self: { libraryHaskellDepends = [ base readline Shellac ]; description = "Readline backend module for Shellac"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ShortestPathProblems" = callPackage @@ -19076,7 +17834,6 @@ self: { ]; description = "grammars for TSP and SHP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ShowF" = callPackage @@ -19105,7 +17862,6 @@ self: { ]; description = "A programming model for declarative, high performance user interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-backend-pardiff" = callPackage @@ -19124,7 +17880,6 @@ self: { ]; description = "A Virtual Dom in pure Haskell, based on Html as an Alignable Functor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-backend-snabbdom" = callPackage @@ -19142,7 +17897,6 @@ self: { ]; description = "Use the high-performance Snabbdom virtual dom library written in JavaScript"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-backend-static" = callPackage @@ -19154,7 +17908,6 @@ self: { libraryHaskellDepends = [ base compactable Shpadoinkle text ]; description = "A backend for rendering Shpadoinkle as Text"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-console" = callPackage @@ -19166,8 +17919,6 @@ self: { libraryHaskellDepends = [ aeson base jsaddle lens text unliftio ]; description = "Support for the native browser console"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Shpadoinkle-debug" = callPackage @@ -19179,8 +17930,6 @@ self: { libraryHaskellDepends = [ aeson base jsaddle lens text unliftio ]; description = "Debugging tools for Shpadoinkle applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Shpadoinkle-developer-tools" = callPackage @@ -19204,7 +17953,6 @@ self: { ]; description = "Chrome extension to aide in development"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "devtools"; }) {}; @@ -19224,7 +17972,6 @@ self: { ]; description = "Shpadoinkle as a static site"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-examples" = callPackage @@ -19256,7 +18003,6 @@ self: { ]; description = "Example usages of Shpadoinkle"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-html" = callPackage @@ -19276,7 +18022,6 @@ self: { ]; description = "A typed, template generated Html DSL, and helpers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-isreal" = callPackage @@ -19300,9 +18045,7 @@ self: { ]; description = "Isreal Swan will make a snowman for you!"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "isreal"; - broken = true; }) {}; "Shpadoinkle-lens" = callPackage @@ -19314,7 +18057,6 @@ self: { libraryHaskellDepends = [ base lens Shpadoinkle text ]; description = "Lens combinators for Shpadoinkle applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-router" = callPackage @@ -19338,7 +18080,6 @@ self: { ]; description = "A single page application rounter for Shpadoinkle based on Servant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-streaming" = callPackage @@ -19350,7 +18091,6 @@ self: { libraryHaskellDepends = [ base lens Shpadoinkle streaming text ]; description = "Integration of the streaming library with Shpadoinkle continuations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-template" = callPackage @@ -19372,7 +18112,6 @@ self: { ]; description = "Read standard file formats into Shpadoinkle with Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-widgets" = callPackage @@ -19397,7 +18136,6 @@ self: { ]; description = "A collection of common reusable types and components"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Shrub" = callPackage @@ -19461,7 +18199,6 @@ self: { ]; description = "A Simple Graphics Library from the SimpleH framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "SimpleH" = callPackage @@ -19478,8 +18215,6 @@ self: { ]; description = "A light, clean and powerful Haskell utility library"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "SimpleLog" = callPackage @@ -19499,7 +18234,6 @@ self: { ]; description = "Simple, configurable logging"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "SimpleServer" = callPackage @@ -19520,7 +18254,6 @@ self: { ]; description = "A simple static file server, for when apache is overkill"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "simpleserver"; }) {}; @@ -19606,8 +18339,6 @@ self: { testHaskellDepends = [ base file-embed ]; description = "Generate slides from Haskell code"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "SmithNormalForm" = callPackage @@ -19619,8 +18350,6 @@ self: { libraryHaskellDepends = [ base matrix vector ]; description = "A lightweight Haskell implementation of Smith normal form over the integers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Smooth" = callPackage @@ -19636,7 +18365,6 @@ self: { ]; description = "A tiny, lazy SMT solver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "SmtLib" = callPackage @@ -19648,8 +18376,6 @@ self: { libraryHaskellDepends = [ base parsec transformers ]; description = "Library for parsing SMTLIB2"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Snusmumrik" = callPackage @@ -19672,7 +18398,6 @@ self: { executableToolDepends = [ cpphs ]; description = "E-library directory based on FUSE virtual file system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) zip;}; "SoOSiM" = callPackage @@ -19689,7 +18414,6 @@ self: { ]; description = "Abstract full system simulator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "SoccerFun" = callPackage @@ -19709,7 +18433,6 @@ self: { ]; description = "Football simulation framework for teaching functional programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sfRecord"; }) {}; @@ -19730,7 +18453,6 @@ self: { ]; description = "OpenGL UI for the SoccerFun framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Sonnex" = callPackage @@ -19743,8 +18465,6 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Sonnex is an alternative to Soundex for french language"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "SourceGraph" = callPackage @@ -19763,7 +18483,6 @@ self: { ]; description = "Static code analysis using graph-theoretic techniques"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "SourceGraph"; }) {}; @@ -19799,9 +18518,7 @@ self: { ]; description = "Video game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "spaceInvaders"; - broken = true; }) {}; "SpacePrivateers" = callPackage @@ -19823,7 +18540,6 @@ self: { ]; description = "Simple space pirate roguelike"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "SpacePrivateers"; }) {}; @@ -19836,7 +18552,6 @@ self: { libraryHaskellDepends = [ base monad-loops ref-mtl stm ]; description = "Lock free Spin Counter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Spintax" = callPackage @@ -19850,8 +18565,6 @@ self: { ]; description = "Random text generation based on spintax"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Spock" = callPackage @@ -19903,8 +18616,6 @@ self: { ]; description = "Another Haskell web framework for rapid development"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Spock-api-server" = callPackage @@ -19927,8 +18638,6 @@ self: { libraryHaskellDepends = [ base http-types Spock text time ]; description = "Provides authentification helpers for Spock"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Spock-core" = callPackage @@ -20025,8 +18734,6 @@ self: { libraryHaskellDepends = [ base SDL ]; description = "Binding to Sprig"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Stack" = callPackage @@ -20054,9 +18761,7 @@ self: { executableHaskellDepends = [ base ]; description = "A simple MVCC like library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Stasis"; - broken = true; }) {}; "StateVar" = callPackage @@ -20106,7 +18811,6 @@ self: { ]; description = "Libary for Stockholm aligmnent format"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "Stomp" = callPackage @@ -20122,8 +18826,6 @@ self: { ]; description = "Client library for Stomp brokers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Strafunski-ATermLib" = callPackage @@ -20135,8 +18837,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "An abstract data type designed for the exchange of tree-like data structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Strafunski-Sdf2Haskell" = callPackage @@ -20156,7 +18856,6 @@ self: { ]; description = "Converts SDF to Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Sdf2Haskell"; }) {}; @@ -20171,8 +18870,6 @@ self: { libraryHaskellDepends = [ base directory mtl syb transformers ]; description = "Library for strategic programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "StrappedTemplates" = callPackage @@ -20190,8 +18887,6 @@ self: { testHaskellDepends = [ base blaze-builder bytestring hspec text ]; description = "General purpose templates in haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "StrategyLib" = callPackage @@ -20202,8 +18897,6 @@ self: { sha256 = "1sskndywpm1gi4bs4i1gah73jk49inlscg4jzcqhq0phb8f886xk"; libraryHaskellDepends = [ base mtl ]; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Stream" = callPackage @@ -20227,8 +18920,6 @@ self: { libraryHaskellDepends = [ base benchpress parallel ]; description = "Benchmarking code through strict evaluation"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "StrictCheck" = callPackage @@ -20247,8 +18938,6 @@ self: { ]; description = "StrictCheck: Keep Your Laziness In Check"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "StringUtils" = callPackage @@ -20286,9 +18975,7 @@ self: { ]; description = "Suffix array construction"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mkesa"; - broken = true; }) {}; "SvgIcons" = callPackage @@ -20300,8 +18987,6 @@ self: { doHaddock = false; description = "Svg Icons and more"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "SybWidget" = callPackage @@ -20317,7 +19002,6 @@ self: { ]; description = "Library which aids constructing generic (SYB3-based) widgets"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "SyntaxMacros" = callPackage @@ -20334,7 +19018,6 @@ self: { ]; description = "Syntax Macros in the form of an EDSL"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "Sysmon" = callPackage @@ -20355,8 +19038,6 @@ self: { ]; description = "Sybase 15 sysmon reports processor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "TBC" = callPackage @@ -20377,9 +19058,7 @@ self: { ]; description = "Testing By Convention"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tbc"; - broken = true; }) {}; "TBit" = callPackage @@ -20396,8 +19075,6 @@ self: { ]; description = "Utilities for condensed matter physics tight binding calculations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "TCache" = callPackage @@ -20418,8 +19095,6 @@ self: { ]; description = "A Transactional cache with user-defined persistence"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "THEff" = callPackage @@ -20431,8 +19106,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "TH implementation of effects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "TLT" = callPackage @@ -20456,9 +19129,7 @@ self: { ]; description = "Testing in monads and transformers without explicit specs"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "TLT-exe"; - broken = true; }) {}; "TORCS" = callPackage @@ -20480,9 +19151,7 @@ self: { executableHaskellDepends = [ base bytestring Yampa ]; description = "Bindings to the TORCS vehicle simulator"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "Simple"; - broken = true; }) {}; "TTTAS" = callPackage @@ -20505,7 +19174,6 @@ self: { libraryHaskellDepends = [ base DeepArrow TypeCompose ]; description = "Tangible Values -- composable interfaces"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "TYB" = callPackage @@ -20521,8 +19189,6 @@ self: { ]; description = "Template Your Boilerplate - a Template Haskell version of SYB"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "TableAlgebra" = callPackage @@ -20551,9 +19217,7 @@ self: { executableHaskellDepends = [ base cookbook ]; description = "A client for Quill databases"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Tables"; - broken = true; }) {}; "Tablify" = callPackage @@ -20567,9 +19231,7 @@ self: { executableHaskellDepends = [ base parsec xhtml ]; description = "Tool to render CSV into tables of various formats"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tablify"; - broken = true; }) {}; "Tahin" = callPackage @@ -20614,8 +19276,6 @@ self: { libraryHaskellDepends = [ base mtl old-time time ]; description = "Database library with left-fold interface, for PostgreSQL, Oracle, SQLite, ODBC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Tape" = callPackage @@ -20627,8 +19287,6 @@ self: { libraryHaskellDepends = [ base comonad distributive Stream ]; description = "Bidirectionally infinite streams, akin to the tape of a Turing machine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "TaskMonad" = callPackage @@ -20647,8 +19305,6 @@ self: { ]; description = "A collection of tools which can be used to access taskwarrior from xmonad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "TastyTLT" = callPackage @@ -20675,9 +19331,7 @@ self: { ]; description = "Run TLT tests from Tasty"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "TLT-exe"; - broken = true; }) {}; "Taxonomy" = callPackage @@ -20693,7 +19347,6 @@ self: { ]; description = "Libary for parsing, processing and vizualization of taxonomy data"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "TaxonomyTools" = callPackage @@ -20713,7 +19366,6 @@ self: { ]; description = "Tool for parsing, processing, comparing and visualizing taxonomy data"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "TeX-my-math" = callPackage @@ -20740,7 +19392,6 @@ self: { ]; description = "Render general Haskell math to LaTeX. Or: math typesetting with high signal-to-noise–ratio."; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "TeXmyMath-example"; }) {}; @@ -20757,7 +19408,6 @@ self: { ]; description = "TeaHS Game Creation Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Tensor" = callPackage @@ -20802,8 +19452,6 @@ self: { ]; description = "Generates testcases from program-snippets"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Theora" = callPackage @@ -20815,8 +19463,6 @@ self: { libraryHaskellDepends = [ base ]; librarySystemDepends = [ ogg theora ]; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {ogg = null; theora = null;}; "Thingie" = callPackage @@ -20828,8 +19474,6 @@ self: { libraryHaskellDepends = [ base cairo gtk mtl ]; description = "Purely functional 2D drawing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ThreadObjects" = callPackage @@ -20857,8 +19501,6 @@ self: { ]; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Tic-Tac-Toe" = callPackage @@ -20889,8 +19531,6 @@ self: { ]; description = "A sub-project (exercise) for a functional programming course"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "TigerHash" = callPackage @@ -20902,8 +19542,6 @@ self: { libraryHaskellDepends = [ base binary bytestring dataenc ]; description = "TigerHash with C implementation"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "TimePiece" = callPackage @@ -20927,9 +19565,7 @@ self: { ]; description = "A simple tile-based digital clock screen saver"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "TimePiece"; - broken = true; }) {}; "TinyLaunchbury" = callPackage @@ -20941,8 +19577,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Simple implementation of call-by-need using Launchbury's semantics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "TinyURL" = callPackage @@ -20954,8 +19588,6 @@ self: { libraryHaskellDepends = [ base HTTP network ]; description = "Use TinyURL to compress URLs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Titim" = callPackage @@ -20969,9 +19601,7 @@ self: { executableHaskellDepends = [ base containers matrix random ]; description = "Game for Lounge Marmelade"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "titim"; - broken = true; }) {}; "Top" = callPackage @@ -20986,9 +19616,7 @@ self: { executableHaskellDepends = [ base containers mtl parsec ]; description = "Constraint solving framework employed by the Helium Compiler"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "topsolver"; - broken = true; }) {}; "TotalMap" = callPackage @@ -21008,8 +19636,6 @@ self: { testToolDepends = [ markdown-unlit ]; description = "A total map datatype"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Tournament" = callPackage @@ -21027,8 +19653,6 @@ self: { ]; description = "Tournament related algorithms"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "TraceUtils" = callPackage @@ -21057,9 +19681,7 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "eDSL in R for Safe Variable Transformarion"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "TransformeR-exe"; - broken = true; }) {}; "TransformersStepByStep" = callPackage @@ -21073,9 +19695,7 @@ self: { executableHaskellDepends = [ base containers mtl ]; description = "Tutorial on monad transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "TransformersStepByStep"; - broken = true; }) {}; "Transhare" = callPackage @@ -21098,7 +19718,6 @@ self: { libraryHaskellDepends = [ base ref-mtl stm ]; description = "Wait-free Tree Counter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "TreeStructures" = callPackage @@ -21110,8 +19729,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A collection of heaps and search trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "TreeT" = callPackage @@ -21134,7 +19751,6 @@ self: { libraryHaskellDepends = [ base ghc-prim monad-loops ref-mtl stm ]; description = "Lock free Treiber stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "TrendGraph" = callPackage @@ -21151,8 +19767,6 @@ self: { ]; description = "A simple trend Graph script"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "TrieMap" = callPackage @@ -21170,7 +19784,6 @@ self: { ]; description = "Automatic type inference of generalized tries with Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Twofish" = callPackage @@ -21209,7 +19822,6 @@ self: { ]; description = "Typing speed game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "TypeClass"; }) {}; @@ -21224,8 +19836,6 @@ self: { libraryHaskellDepends = [ base base-orphans ]; description = "Type composition classes & instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "TypeIlluminator" = callPackage @@ -21239,7 +19849,6 @@ self: { executableHaskellDepends = [ base haskell98 ]; description = "TypeIlluminator is a prototype tool exploring debugging of type errors/"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "typeilluminator"; }) {}; @@ -21298,7 +19907,6 @@ self: { ]; description = "A small command-line accounting tool"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "umm"; }) {}; @@ -21317,7 +19925,6 @@ self: { ]; description = "Library for maintaining correctness of URLs within an application"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "URLb" = callPackage @@ -21329,8 +19936,6 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring containers ]; description = "DEPRECATED A simple, liberal URL parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "UTFTConverter" = callPackage @@ -21354,7 +19959,6 @@ self: { ]; description = "Processing popular picture formats into .c or .raw format in RGB565"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "UTFTConverter"; }) {}; @@ -21422,8 +20026,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Monadic FRP library based on stm"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "UrlDisp" = callPackage @@ -21435,7 +20037,6 @@ self: { libraryHaskellDepends = [ base cgi MaybeT mtl ]; description = "Url dispatcher. Helps to retain friendly URLs in web applications."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Useful" = callPackage @@ -21488,9 +20089,7 @@ self: { ]; description = "Provides access to Vkontakte social network via public API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "vkq"; - broken = true; }) {}; "VRML" = callPackage @@ -21514,8 +20113,6 @@ self: { ]; description = "VRML parser and generator for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Validation" = callPackage @@ -21529,8 +20126,6 @@ self: { ]; description = "A data-type like Either but with an accumulating Applicative"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ValveValueKeyvalue" = callPackage @@ -21566,8 +20161,6 @@ self: { libraryHaskellDepends = [ base Boolean Vec ]; description = "Provides Boolean instances for the Vec package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Vec-OpenGLRaw" = callPackage @@ -21579,8 +20172,6 @@ self: { libraryHaskellDepends = [ base OpenGLRaw Vec ]; description = "Instances and functions to interoperate Vec and OpenGL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Vec-Transform" = callPackage @@ -21617,9 +20208,7 @@ self: { executableHaskellDepends = [ base containers matrix ]; description = "A solver for the WordBrain game"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "Verba"; - broken = true; }) {}; "ViennaRNA-bindings" = callPackage @@ -21662,7 +20251,6 @@ self: { ]; description = "ViennaRNA v2 extensions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ViennaRNAParser" = callPackage @@ -21709,9 +20297,7 @@ self: { ]; description = "Villefort is a task manager and time tracker"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Villefort"; - broken = true; }) {}; "Vulkan" = callPackage @@ -21772,8 +20358,6 @@ self: { doHaddock = false; description = "Generic text-editor logic for use with fixed-width fonts"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "WEditorBrick" = callPackage @@ -21788,7 +20372,6 @@ self: { executableHaskellDepends = [ base brick vty WEditor ]; description = "Text-editor widget with dynamic line-wrapping for use with Brick"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "brick-example"; }) {}; @@ -21802,7 +20385,6 @@ self: { testHaskellDepends = [ base directory hyphenation WEditor ]; description = "Language-specific hyphenation policies for WEditor"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "WL500gPControl" = callPackage @@ -21819,7 +20401,6 @@ self: { ]; description = "A simple command line tools to control the Asus WL500gP router"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "WL500gPLib" = callPackage @@ -21834,9 +20415,7 @@ self: { executableHaskellDepends = [ base ]; description = "A simple library to access to the WL 500gP router from the Haskell code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "test"; - broken = true; }) {}; "WMSigner" = callPackage @@ -21856,8 +20435,6 @@ self: { ]; description = "WebMoney authentication module"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "WURFL" = callPackage @@ -21869,7 +20446,6 @@ self: { libraryHaskellDepends = [ base haskell98 parsec ]; description = "Convert the WURFL file into a Parsec parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "WXDiffCtrl" = callPackage @@ -21882,7 +20458,6 @@ self: { libraryHaskellDepends = [ base containers wx wxcore ]; description = "WXDiffCtrl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "WashNGo" = callPackage @@ -21901,7 +20476,6 @@ self: { executableHaskellDepends = [ directory ghc-paths process ]; description = "WASH is a family of EDSLs for programming Web applications in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "WaveFront" = callPackage @@ -21918,7 +20492,6 @@ self: { ]; description = "Parsers and utilities for the OBJ WaveFront 3D model format"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "WeakSets" = callPackage @@ -21931,8 +20504,6 @@ self: { testHaskellDepends = [ base ]; description = "Simple set types. Useful to create sets of arbitrary types and nested sets."; license = lib.licenses.lgpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Weather" = callPackage @@ -21948,8 +20519,6 @@ self: { ]; description = "Library for interacting with the Weather Underground JSON API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "WebBits" = callPackage @@ -21961,8 +20530,6 @@ self: { libraryHaskellDepends = [ base containers mtl parsec pretty syb ]; description = "JavaScript analysis tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "WebBits-Html" = callPackage @@ -21978,7 +20545,6 @@ self: { ]; description = "JavaScript analysis tools"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "WebBits-multiplate" = callPackage @@ -21995,7 +20561,6 @@ self: { ]; description = "A Multiplate instance for JavaScript"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "WebCont" = callPackage @@ -22014,7 +20579,6 @@ self: { ]; description = "Continuation based web programming for Happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "WeberLogic" = callPackage @@ -22029,9 +20593,7 @@ self: { executableHaskellDepends = [ base parsec ]; description = "Logic interpreter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "WeberLogic"; - broken = true; }) {}; "Webrexp" = callPackage @@ -22058,9 +20620,7 @@ self: { ]; description = "Regexp-like engine to scrap web data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "webrexp"; - broken = true; }) {}; "Wheb" = callPackage @@ -22085,8 +20645,6 @@ self: { ]; description = "The frictionless WAI Framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "WikimediaParser" = callPackage @@ -22098,8 +20656,6 @@ self: { libraryHaskellDepends = [ base parsec ]; description = "A parser for wikimedia style article markup"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Win32" = callPackage @@ -22265,7 +20821,6 @@ self: { ]; description = "Wire-aware hardware description"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "WordAlignment" = callPackage @@ -22305,7 +20860,6 @@ self: { ]; description = "Bigram word pair alignments"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "WordAlign"; }) {}; @@ -22320,8 +20874,6 @@ self: { libraryHaskellDepends = [ array base containers filepath ]; description = "Haskell interface to the WordNet database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "WordNet-ghc74" = callPackage @@ -22335,8 +20887,6 @@ self: { libraryHaskellDepends = [ array base containers filepath ]; description = "Haskell interface to the WordNet database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Wordlint" = callPackage @@ -22351,9 +20901,7 @@ self: { executableHaskellDepends = [ base boxes cmdargs ]; description = "Plaintext prose redundancy linter"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "wordlint"; - broken = true; }) {}; "Workflow" = callPackage @@ -22373,7 +20921,6 @@ self: { ]; description = "Workflow patterns over a monad for thread state logging & recovery"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "WxGeneric" = callPackage @@ -22388,7 +20935,6 @@ self: { ]; description = "Generic (SYB3) construction of wxHaskell widgets"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "X" = callPackage @@ -22404,8 +20950,6 @@ self: { ]; description = "A light-weight XML library"; license = "BSD-3-Clause AND GPL-3.0-or-later"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "X11" = callPackage @@ -22438,8 +20982,6 @@ self: { librarySystemDepends = [ libX11 ]; description = "Missing bindings to the X11 graphics library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs.xorg) libX11;}; "X11-rm" = callPackage @@ -22451,8 +20993,6 @@ self: { libraryHaskellDepends = [ base X11 ]; description = "A binding to the resource management functions missing from X11"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "X11-xdamage" = callPackage @@ -22465,8 +21005,6 @@ self: { librarySystemDepends = [ Xdamage ]; description = "A binding to the Xdamage X11 extension library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {Xdamage = null;}; "X11-xfixes" = callPackage @@ -22479,8 +21017,6 @@ self: { librarySystemDepends = [ Xfixes ]; description = "A binding to the Xfixes X11 extension library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {Xfixes = null;}; "X11-xft" = callPackage @@ -22547,7 +21083,6 @@ self: { testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; description = "Extensible Markup Language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "XMLParser" = callPackage @@ -22572,8 +21107,6 @@ self: { librarySystemDepends = [ xmmsclient xmmsclient-glib ]; description = "XMMS2 client library"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {xmmsclient = null; xmmsclient-glib = null;}; "XMPP" = callPackage @@ -22590,7 +21123,6 @@ self: { ]; description = "XMPP library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "XSaiga" = callPackage @@ -22617,7 +21149,6 @@ self: { ]; description = "An implementation of a polynomial-time top-down parser suitable for NLP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "solarman.cgi"; }) {}; @@ -22649,9 +21180,7 @@ self: { ]; description = "Gtk command launcher with identicon"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Xec"; - broken = true; }) {}; "XmlHtmlWriter" = callPackage @@ -22663,8 +21192,6 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "A library for writing XML and HTML"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Xorshift128Plus" = callPackage @@ -22676,8 +21203,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Pure haskell implementation of xorshift128plus random number generator"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "YACPong" = callPackage @@ -22698,9 +21223,7 @@ self: { ]; description = "Yet Another Pong Clone using SDL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "YACPong"; - broken = true; }) {}; "YFrob" = callPackage @@ -22712,8 +21235,6 @@ self: { libraryHaskellDepends = [ array base HGL Yampa ]; description = "Yampa-based library for programming robots"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Yablog" = callPackage @@ -22748,7 +21269,6 @@ self: { ]; description = "A simple blog engine powered by Yesod"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Yablog"; }) {}; @@ -22777,9 +21297,7 @@ self: { ]; description = "YAML reference implementation"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "yaml2yeast"; - broken = true; }) {}; "Yampa" = callPackage @@ -22829,9 +21347,7 @@ self: { ]; description = "Software synthesizer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "yampasynth-wav"; - broken = true; }) {}; "Yocto" = callPackage @@ -22859,8 +21375,6 @@ self: { ]; description = "A MUD client library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Yogurt-Standalone" = callPackage @@ -22880,7 +21394,6 @@ self: { executableSystemDepends = [ readline ]; description = "A functional MUD client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "yogurt"; }) {inherit (pkgs) readline;}; @@ -22904,7 +21417,6 @@ self: { ]; description = "Crypto for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Z-Data" = callPackage @@ -22931,8 +21443,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Array, vector and text"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "Z-IO" = callPackage @@ -22959,7 +21469,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Simple and high performance IO toolkit for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Z-MessagePack" = callPackage @@ -22984,7 +21493,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "MessagePack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "Z-YAML" = callPackage @@ -23002,7 +21510,6 @@ self: { testHaskellDepends = [ base hspec Z-Data ]; description = "YAML tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ZEBEDDE" = callPackage @@ -23016,8 +21523,6 @@ self: { libraryHaskellDepends = [ base vect ]; description = "Polymer growth simulation method"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ZFS" = callPackage @@ -23033,8 +21538,6 @@ self: { ]; description = "Oleg's Zipper FS"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ZMachine" = callPackage @@ -23049,9 +21552,7 @@ self: { executableHaskellDepends = [ array base gtk mtl random ]; description = "A Z-machine interpreter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "zmachine"; - broken = true; }) {}; "ZipFold" = callPackage @@ -23063,7 +21564,6 @@ self: { libraryHaskellDepends = [ base TypeCompose ]; description = "Zipping folds"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ZipperAG" = callPackage @@ -23103,8 +21603,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Combinators for bidirectional URL routing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "a50" = callPackage @@ -23123,7 +21621,6 @@ self: { ]; description = "Compare genome assemblies"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "a50"; }) {}; @@ -23141,8 +21638,6 @@ self: { ]; description = "Convert distfix precedence grammars to unambiguous context-free grammars"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "abacate" = callPackage @@ -23155,8 +21650,6 @@ self: { testHaskellDepends = [ base HUnit text ]; description = "Parser for a language similar to Cucumber's Gherkin"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "abc-puzzle" = callPackage @@ -23198,7 +21691,6 @@ self: { ]; description = "Bindings for ABC, A System for Sequential Synthesis and Verification"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {abc = null;}; "abcnotation" = callPackage @@ -23212,8 +21704,6 @@ self: { ]; description = "Haskell representation and parser for ABC notation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "abeson" = callPackage @@ -23233,8 +21723,6 @@ self: { ]; description = "interconversion between aeson and bson"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "abides" = callPackage @@ -23247,8 +21735,6 @@ self: { testHaskellDepends = [ base comonad tasty tasty-quickcheck ]; description = "Simple boolean tests to see if a value abides by certain properties"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "abnf" = callPackage @@ -23268,8 +21754,6 @@ self: { ]; description = "Parse ABNF and generate parsers for the specified document"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "abstract-deque" = callPackage @@ -23325,7 +21809,6 @@ self: { ]; description = "Provides the class ParAccelerate, nothing more"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "abt" = callPackage @@ -23341,8 +21824,6 @@ self: { ]; description = "Abstract binding trees for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ac-machine" = callPackage @@ -23356,8 +21837,6 @@ self: { ]; description = "Aho-Corasick string matching algorithm in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ac-machine-conduit" = callPackage @@ -23369,7 +21848,6 @@ self: { libraryHaskellDepends = [ ac-machine base conduit text ]; description = "Drive Aho-Corasick machines in Conduit pipelines"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "acc" = callPackage @@ -23414,8 +21892,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "An embedded language for accelerated array processing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "accelerate-arithmetic" = callPackage @@ -23434,7 +21910,6 @@ self: { ]; description = "Linear algebra and interpolation using the Accelerate framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -23648,7 +22123,6 @@ self: { ]; description = "Accelerate frontend to the FFTW library (Fourier transform)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -23675,7 +22149,6 @@ self: { ]; description = "Fast Fourier transform and convolution using the Accelerate framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -23708,7 +22181,6 @@ self: { libraryHaskellDepends = [ accelerate base ]; description = "Convert between Accelerate arrays and raw pointers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "accelerate-io-JuicyPixels" = callPackage @@ -23810,7 +22282,6 @@ self: { ]; description = "Binary serialisation of Accelerate arrays using serialise"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "accelerate-io-vector" = callPackage @@ -23875,7 +22346,6 @@ self: { ]; description = "Accelerate backend component generating LLVM IR"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "accelerate-llvm-native" = callPackage @@ -23900,7 +22370,6 @@ self: { testHaskellDepends = [ accelerate base ]; description = "Accelerate backend for multicore CPUs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "accelerate-llvm-ptx" = callPackage @@ -23934,7 +22403,6 @@ self: { libraryHaskellDepends = [ accelerate base mwc-random ]; description = "Generate Accelerate arrays filled with high quality pseudorandom numbers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "accelerate-typelits" = callPackage @@ -23957,7 +22425,6 @@ self: { ]; description = "a typesafe way encode accelerate matrices and vectors"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; }) {}; "accelerate-utility" = callPackage @@ -23969,7 +22436,6 @@ self: { libraryHaskellDepends = [ accelerate base utility-ht ]; description = "Utility functions for the Accelerate framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -23982,8 +22448,6 @@ self: { libraryHaskellDepends = [ base bytestring HTTP json network text ]; description = "A Haskell implementation of the Accentuate.us API."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "access-time" = callPackage @@ -23995,8 +22459,6 @@ self: { libraryHaskellDepends = [ base filepath old-time time unix ]; description = "Cross-platform support for retrieving file access times"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "access-token-provider" = callPackage @@ -24023,7 +22485,6 @@ self: { ]; description = "Provides Access Token for Services"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "accuerr" = callPackage @@ -24035,8 +22496,6 @@ self: { libraryHaskellDepends = [ base bifunctors lens semigroups ]; description = "Data type like Either but with accumulating error type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ace" = callPackage @@ -24055,8 +22514,6 @@ self: { ]; description = "Attempto Controlled English parser and printer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "achille" = callPackage @@ -24080,8 +22537,6 @@ self: { ]; description = "A library for building static site generators"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acid-state" = callPackage @@ -24139,8 +22594,6 @@ self: { ]; description = "A replication backend for acid-state"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acid-state-tls" = callPackage @@ -24156,8 +22609,6 @@ self: { ]; description = "Add TLS support for Data.Acid.Remote"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acl2" = callPackage @@ -24180,8 +22631,6 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "A monad which is powerful enough to interpret any action"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-box" = callPackage @@ -24260,8 +22709,6 @@ self: { libraryHaskellDepends = [ base comonad ]; description = "A more efficient dualization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-cuteboy" = callPackage @@ -24315,8 +22762,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "A \"don't\" construct"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-flipping-tables" = callPackage @@ -24328,8 +22773,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Stop execution with rage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-functors" = callPackage @@ -24363,8 +22806,6 @@ self: { libraryHaskellDepends = [ base ]; description = "An embedded DSL for the HQ9+ programming language"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-http" = callPackage @@ -24382,8 +22823,6 @@ self: { ]; description = "fastest Haskell PONG server in the world"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-inator" = callPackage @@ -24398,9 +22837,7 @@ self: { executableHaskellDepends = [ base ]; description = "Evil inventions in the Tri-State area"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "evilplan"; - broken = true; }) {}; "acme-io" = callPackage @@ -24412,8 +22849,6 @@ self: { libraryHaskellDepends = [ base ]; description = "The only true way to do IO in Haskell!"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-iot" = callPackage @@ -24436,8 +22871,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A place for dumping that does-not-feel-right code while you improve it"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-left-pad" = callPackage @@ -24449,8 +22882,6 @@ self: { libraryHaskellDepends = [ base text ]; description = "free your haskell from the tyranny of npm!"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-lolcat" = callPackage @@ -24484,8 +22915,6 @@ self: { libraryHaskellDepends = [ base MemoTrie random ]; description = "Memoized random number generation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-microwave" = callPackage @@ -24508,8 +22937,6 @@ self: { libraryHaskellDepends = [ base random ]; description = "Miscellaneous newtypes for orderings of discutable use"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-missiles" = callPackage @@ -24535,8 +22962,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A mutable package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-now" = callPackage @@ -24548,8 +22973,6 @@ self: { libraryHaskellDepends = [ base time ]; description = "An interface to the philosophical and metaphysical \"now\""; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-numbersystem" = callPackage @@ -24561,8 +22984,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Define the less than and add and subtract for nats"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-omitted" = callPackage @@ -24597,8 +23018,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Operators of base, all in one place!"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-php" = callPackage @@ -24610,7 +23029,6 @@ self: { libraryHaskellDepends = [ acme-left-pad base ]; description = "The flexibility of Haskell and the safety of PHP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "acme-pointful-numbers" = callPackage @@ -24644,7 +23062,6 @@ self: { libraryHaskellDepends = [ acme-dont base ]; description = "Safe versions of some infamous haskell functions such as fromJust"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "acme-schoenfinkel" = callPackage @@ -24662,8 +23079,6 @@ self: { ]; description = "Proper names for curry and uncurry"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-smuggler" = callPackage @@ -24687,8 +23102,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "A binding to the glibc strfry function"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-stringly-typed" = callPackage @@ -24702,8 +23115,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Stringly Typed Programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-strtok" = callPackage @@ -24728,8 +23139,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "import This"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-timemachine" = callPackage @@ -24767,8 +23176,6 @@ self: { libraryHaskellDepends = [ array base random ]; description = "A somewhat flexible Zalgo̐ te̳͜x̥̖̉̓͞t̍̌̔ ̀̃t̴̢̞̜͓̝r̶̬̆̂̒͟á̧̡͎͔̯̰̕n̹̾̓ͬͦ̍͘ṡ̢͓͉ͮ͆l̠̖̹̗̳̖̽̌ͤ͞a͚̭͙̹̲ͭͩt͈͐o̢̭͇͍̟͐ͬ̾ͪ͜r͇.̸̅ͭ̐̀̊ͨ͛"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acme-zero" = callPackage @@ -24780,8 +23187,6 @@ self: { doHaddock = false; description = "The absorbing element of package dependencies"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acousticbrainz-client" = callPackage @@ -24805,8 +23210,6 @@ self: { ]; description = "AcousticBrainz API client"; license = lib.licenses.cc0; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "acquire" = callPackage @@ -24873,7 +23276,6 @@ self: { ]; description = "Haskell code presentation tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "activehs"; }) {}; @@ -24888,8 +23290,6 @@ self: { libraryHaskellDepends = [ base QuickCheck ]; description = "Basic definitions for activehs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "activitypub" = callPackage @@ -24901,8 +23301,6 @@ self: { libraryHaskellDepends = [ aeson base network-uri text time ]; description = "ActivityPub Haskell Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "activitystreams-aeson" = callPackage @@ -24916,8 +23314,6 @@ self: { ]; description = "An interface to the ActivityStreams specification"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "actor" = callPackage @@ -24930,7 +23326,6 @@ self: { libraryHaskellDepends = [ base haskell98 stm time ]; description = "Actors with multi-headed receive clauses"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "acts" = callPackage @@ -24946,7 +23341,6 @@ self: { doHaddock = false; description = "Semigroup actions and torsors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ad" = callPackage @@ -25001,8 +23395,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Self optimizing container types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "adaptive-tuple" = callPackage @@ -25014,8 +23406,6 @@ self: { libraryHaskellDepends = [ base template-haskell type-level ]; description = "Self-optimizing tuple types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "adb" = callPackage @@ -25030,8 +23420,6 @@ self: { ]; description = "Android Debug Bridge (ADB) protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "adblock2privoxy" = callPackage @@ -25089,8 +23477,6 @@ self: { ]; description = "A full-featured library for parsing, validating, and rendering email addresses"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "adhoc-fixtures" = callPackage @@ -25143,7 +23529,6 @@ self: { ]; description = "Ad-hoc P2P network protocol"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "adict" = callPackage @@ -25165,7 +23550,6 @@ self: { ]; description = "Approximate dictionary searching"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "adjunction" = callPackage @@ -25181,8 +23565,6 @@ self: { benchmarkHaskellDepends = [ base gauge hs-functors ]; description = "See README for more info"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "adjunctions" = callPackage @@ -25239,8 +23621,6 @@ self: { ]; description = "parse Adobe Swatch Exchange files and (optionally) output .css files with the colors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "adp-multi" = callPackage @@ -25261,8 +23641,6 @@ self: { ]; description = "ADP for multiple context-free languages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "adp-multi-monadiccp" = callPackage @@ -25282,7 +23660,6 @@ self: { ]; description = "Subword construction in adp-multi using monadiccp"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "adtrees" = callPackage @@ -25294,8 +23671,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Modelling, rendering and quantitative analysis on attack defense trees"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "advent-of-code-api" = callPackage @@ -25552,8 +23927,6 @@ self: { libraryHaskellDepends = [ aeson base text unordered-containers ]; description = "make To/From JSOn instances from an applicative description"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-attoparsec" = callPackage @@ -25601,8 +23974,6 @@ self: { ]; description = "Mapping between Aeson's JSON and Bson objects"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-casing" = callPackage @@ -25666,8 +24037,6 @@ self: { testHaskellDepends = [ aeson aeson-qq base hspec text ]; description = "Parse Aeson data with commitment"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-compat" = callPackage @@ -25696,8 +24065,6 @@ self: { ]; description = "Compatibility layer for aeson"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-decode" = callPackage @@ -25719,8 +24086,6 @@ self: { ]; description = "Easy functions for converting from Aeson.Value"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-default" = callPackage @@ -25733,8 +24098,6 @@ self: { testHaskellDepends = [ aeson base containers ]; description = "Apply default value to FromJSON instacnes' Maybe fields"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-dependent-sum" = callPackage @@ -25756,8 +24119,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "JSON encoding/decoding for dependent-sum"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-deriving" = callPackage @@ -25776,8 +24137,6 @@ self: { ]; description = "data types for compositional, type-directed serialization"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-diff" = callPackage @@ -25825,8 +24184,6 @@ self: { ]; description = "Apply a json-patch to any haskell datatype"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-extra" = callPackage @@ -25894,8 +24251,6 @@ self: { ]; description = "Several newtypes and combinators for dealing with less-than-cleanly JSON input"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-flat" = callPackage @@ -25910,8 +24265,6 @@ self: { testHaskellDepends = [ base ]; description = "Tools for creating flat JSON serializations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-flatten" = callPackage @@ -25926,8 +24279,6 @@ self: { testHaskellDepends = [ aeson base bytestring hspec ]; description = "JSON flatten for Aeson"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-flowtyped" = callPackage @@ -25951,8 +24302,6 @@ self: { ]; description = "Create Flow or TypeScript type definitions from Haskell data types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-gadt-th" = callPackage @@ -25978,9 +24327,7 @@ self: { ]; description = "Derivation of Aeson instances for GADTs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "readme"; - broken = true; }) {}; "aeson-generic-compat" = callPackage @@ -26025,8 +24372,6 @@ self: { ]; description = "Injecting fields into aeson values"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-iproute" = callPackage @@ -26050,8 +24395,6 @@ self: { libraryHaskellDepends = [ aeson base json-ast ]; description = "Integration layer for \"json-ast\" and \"aeson\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-lens" = callPackage @@ -26068,8 +24411,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Lens of Aeson"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-match-qq" = callPackage @@ -26092,8 +24433,6 @@ self: { ]; description = "Declarative JSON matchers"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-modern-tojson" = callPackage @@ -26106,8 +24445,6 @@ self: { testHaskellDepends = [ aeson base inspection-testing ]; description = "Provide a handy way for derving ToJSON proprely"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-native" = callPackage @@ -26128,7 +24465,6 @@ self: { ]; description = "Fast JSON parsing and encoding (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "aeson-optics" = callPackage @@ -26158,8 +24494,6 @@ self: { libraryHaskellDepends = [ aeson base ]; description = "Options to derive FromJSON/ToJSON instances"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-parsec-picky" = callPackage @@ -26175,8 +24509,6 @@ self: { ]; description = "Alternative JSON parser based on Parsec and Aeson"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-picker" = callPackage @@ -26205,8 +24537,6 @@ self: { testHaskellDepends = [ aeson base bytestring hspec mtl text ]; description = "Hiearchical prefixing for aeson"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-pretty" = callPackage @@ -26344,8 +24674,6 @@ self: { ]; description = "Haskell JSON schema validator and parser generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-schemas" = callPackage @@ -26399,8 +24727,6 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Conveniently wrap a single value in a record when encoding to and from JSON"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-smart" = callPackage @@ -26417,8 +24743,6 @@ self: { ]; description = "Smart derivation of Aeson instances"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-streams" = callPackage @@ -26434,8 +24758,6 @@ self: { ]; description = "An HTTP client library for JSON-based APIs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-t" = callPackage @@ -26455,8 +24777,6 @@ self: { ]; description = "Transform JSON"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-tiled" = callPackage @@ -26483,8 +24803,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "A generalization of Aeson over Failure"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-typescript" = callPackage @@ -26525,8 +24843,6 @@ self: { ]; description = "Utilities for working with Aeson"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-value-parser" = callPackage @@ -26562,8 +24878,6 @@ self: { ]; description = "Wrappers to derive-via Aeson ToJSON/FromJSON typeclasses"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-warning-parser" = callPackage @@ -26598,8 +24912,6 @@ self: { ]; description = "withXField combinators for aeson"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aeson-yak" = callPackage @@ -26655,8 +24967,6 @@ self: { ]; description = "A simple Game Engine using SDL"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "affine" = callPackage @@ -26670,7 +24980,6 @@ self: { libraryHaskellDepends = [ alg base ]; description = "Affine spaces (generalized)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "affine-invariant-ensemble-mcmc" = callPackage @@ -26686,8 +24995,6 @@ self: { ]; description = "General-purpose sampling"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "affinely-extended" = callPackage @@ -26737,7 +25044,6 @@ self: { ]; description = "Infinite state model checking of iterative C programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "afv"; }) {}; @@ -26752,9 +25058,7 @@ self: { executableHaskellDepends = [ base containers uuagc uulib ]; description = "Attribute Grammar picture generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ag-pictgen"; - broken = true; }) {}; "agda-language-server" = callPackage @@ -26783,9 +25087,7 @@ self: { ]; description = "An implementation of language server protocal (LSP) for Agda 2"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "als"; - broken = true; }) {}; "agda-server" = callPackage @@ -26806,7 +25108,6 @@ self: { ]; description = "Http server for Agda (prototype)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "agda-server"; }) {}; @@ -26828,9 +25129,7 @@ self: { executableHaskellDepends = [ Agda base network-uri transformers ]; description = "Render just the Agda snippets of a literate Agda file to HTML"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "agda-snippets"; - broken = true; }) {}; "agda-snippets-hakyll" = callPackage @@ -26847,7 +25146,6 @@ self: { ]; description = "Literate Agda support using agda-snippets, for Hakyll pages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "agda-unused" = callPackage @@ -26870,9 +25168,7 @@ self: { testHaskellDepends = [ base containers filepath hspec text ]; description = "Check for unused code in an Agda project"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "agda-unused"; - broken = true; }) {}; "agda2hs" = callPackage @@ -26933,7 +25229,6 @@ self: { ]; description = "AgentX protocol for write SNMP subagents"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "agreeing" = callPackage @@ -26979,8 +25274,6 @@ self: { ]; description = "And-inverter graphs in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aip" = callPackage @@ -27009,7 +25302,6 @@ self: { ]; description = "Aeronautical Information Package (AIP)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "aip"; }) {}; @@ -27042,8 +25334,6 @@ self: { ]; description = "air-extra"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "air-spec" = callPackage @@ -27067,8 +25357,6 @@ self: { libraryHaskellDepends = [ air base template-haskell ]; description = "air"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "airbrake" = callPackage @@ -27088,8 +25376,6 @@ self: { ]; description = "An Airbrake notifier for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "airship" = callPackage @@ -27119,8 +25405,6 @@ self: { ]; description = "A Webmachine-inspired HTTP library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "airtable-api" = callPackage @@ -27138,8 +25422,6 @@ self: { testHaskellDepends = [ base ]; description = "Requesting and introspecting Tables within an Airtable project"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aivika" = callPackage @@ -27188,7 +25470,6 @@ self: { ]; description = "Parallel distributed discrete event simulation module for the Aivika library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "aivika-experiment" = callPackage @@ -27270,8 +25551,6 @@ self: { ]; description = "GPSS-like DSL for Aivika"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aivika-lattice" = callPackage @@ -27347,8 +25626,6 @@ self: { ]; description = "Haskell compiler that produce binary through C language"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "al" = callPackage @@ -27415,8 +25692,6 @@ self: { ]; description = "Bindings to the alerta REST API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "alerts" = callPackage @@ -27428,8 +25703,6 @@ self: { libraryHaskellDepends = [ base blaze-html text ]; description = "Alert messages for web applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "alex" = callPackage @@ -27496,8 +25769,6 @@ self: { libraryHaskellDepends = [ base time ]; description = "Collection of useful functions for writing console applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "alex-tools" = callPackage @@ -27532,8 +25803,6 @@ self: { ]; description = "utility library for Alfred version 2"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "alfred-margaret" = callPackage @@ -27559,9 +25828,7 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq text vector ]; description = "Fast Aho-Corasick string searching"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dump-automaton"; - broken = true; }) {}; "alg" = callPackage @@ -27575,7 +25842,6 @@ self: { libraryHaskellDepends = [ base dual util ]; description = "Algebraic structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "alga" = callPackage @@ -27608,9 +25874,7 @@ self: { ]; description = "Algorithmic automation for various DAWs"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "alga"; - broken = true; }) {}; "algebra" = callPackage @@ -27646,7 +25910,6 @@ self: { ]; description = "Model and test API surfaces algebraically"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "algebra-dag" = callPackage @@ -27662,8 +25925,6 @@ self: { ]; description = "Infrastructure for DAG-shaped relational algebra plans"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "algebra-driven-design" = callPackage @@ -27682,7 +25943,6 @@ self: { ]; description = "Companion library for the book Algebra-Driven Design by Sandy Maguire"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "algebra-sql" = callPackage @@ -27709,7 +25969,6 @@ self: { ]; description = "Relational Algebra and SQL Code Generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "algebraic" = callPackage @@ -27721,7 +25980,6 @@ self: { libraryHaskellDepends = [ accelerate base ]; description = "General linear algebra structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "algebraic-classes" = callPackage @@ -27735,8 +25993,6 @@ self: { libraryHaskellDepends = [ base syb template-haskell ]; description = "Conversions between algebraic classes and F-algebras"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "algebraic-graphs_0_6_1" = callPackage @@ -27819,8 +26075,6 @@ self: { ]; description = "Algebraically structured Prelude"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "algo-s" = callPackage @@ -27846,9 +26100,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "An implementation of Knuth's algorithm S"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "sample"; - broken = true; }) {}; "algolia" = callPackage @@ -27874,7 +26126,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "A client implementing the Algolia search API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "algorithmic-composition-additional" = callPackage @@ -27903,9 +26154,7 @@ self: { ]; description = "Helps to create experimental music from a file (or its part) and a Ukrainian text"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "acb"; - broken = true; }) {}; "algorithmic-composition-basic" = callPackage @@ -27924,7 +26173,6 @@ self: { ]; description = "Helps to create experimental music from a file (or its part) and a Ukrainian text"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "algorithmic-composition-complex" = callPackage @@ -27945,8 +26193,6 @@ self: { ]; description = "Helps to create more complex experimental music from a file (especially timbre)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "algorithmic-composition-frequency-shift" = callPackage @@ -27963,7 +26209,6 @@ self: { ]; description = "Helps to create experimental music. Uses SoX inside."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "algorithmic-composition-overtones" = callPackage @@ -27975,7 +26220,6 @@ self: { libraryHaskellDepends = [ algorithmic-composition-basic base ]; description = "Some variants of the overtones functions to generate a timbre"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "align" = callPackage @@ -27998,8 +26242,6 @@ self: { libraryHaskellDepends = [ base containers transformers vector ]; description = "Sequence alignment with an affine gap penalty model"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "align-audio" = callPackage @@ -28035,9 +26277,7 @@ self: { executableHaskellDepends = [ base optparse-applicative text ]; description = "A simple unix filter to align text on specified substrings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "align"; - broken = true; }) {}; "aligned-foreignptr" = callPackage @@ -28126,8 +26366,6 @@ self: { ]; description = "Ally Invest integration library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "almost-fix" = callPackage @@ -28161,7 +26399,6 @@ self: { ]; description = "a practical affine language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "alms"; }) {}; @@ -28180,8 +26417,6 @@ self: { testHaskellDepends = [ base containers random tasty tasty-hunit ]; description = "Rollback/replay NetCode for realtime, deterministic, multiplayer games"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "alpha" = callPackage @@ -28202,7 +26437,6 @@ self: { ]; description = "A compiler for the Alpha language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "alpha"; }) {}; @@ -28222,8 +26456,6 @@ self: { ]; description = "A character between a-z"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "alpino-tools" = callPackage @@ -28246,8 +26478,6 @@ self: { ]; description = "Alpino data manipulation tools"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "alsa" = callPackage @@ -28264,8 +26494,6 @@ self: { librarySystemDepends = [ alsa-lib ]; description = "Binding to the ALSA Library API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) alsa-lib;}; "alsa-core" = callPackage @@ -28297,7 +26525,6 @@ self: { ]; description = "Some simple interactive programs for sending MIDI control messages via ALSA"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "alsa-midi" = callPackage @@ -28318,8 +26545,6 @@ self: { executableSystemDepends = [ alsa-lib ]; description = "Bindings for the ALSA sequencer API (MIDI stuff)"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) alsa-lib;}; "alsa-mixer" = callPackage @@ -28370,7 +26595,6 @@ self: { executableHaskellDepends = [ alsa base ]; description = "Tests for the ALSA audio signal library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "alsa-seq" = callPackage @@ -28408,7 +26632,6 @@ self: { executableHaskellDepends = [ alsa base ]; description = "Tests for the ALSA sequencer library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "altcomposition" = callPackage @@ -28420,8 +26643,6 @@ self: { libraryHaskellDepends = [ base composition ]; description = "Alternative combinators for unorthodox function composition"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "alternative-extra" = callPackage @@ -28433,8 +26654,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Extra utilities for alternatives"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "alternative-io" = callPackage @@ -28452,8 +26671,6 @@ self: { ]; description = "IO as Alternative instance (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "alternative-vector" = callPackage @@ -28491,8 +26708,6 @@ self: { libraryHaskellDepends = [ base ghc-prim integer-gmp ]; description = "Alternative floating point support for GHC"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "alto" = callPackage @@ -28517,7 +26732,6 @@ self: { executableHaskellDepends = [ base warp ]; description = "Implement a menu experience fit for web users"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "alto"; }) {}; @@ -28547,8 +26761,6 @@ self: { librarySystemDepends = [ alure ]; description = "A Haskell binding for ALURE"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) alure;}; "always" = callPackage @@ -28578,8 +26790,6 @@ self: { ]; description = "A queue daemon for Amazon's SES with a PostgreSQL table as a queue"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "amazon-emailer-client-snap" = callPackage @@ -28594,7 +26804,6 @@ self: { ]; description = "Client library for amazon-emailer daemon"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "amazon-products" = callPackage @@ -28620,9 +26829,7 @@ self: { ]; description = "Connector for Amazon Products API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "repl"; - broken = true; }) {}; "amazonka" = callPackage @@ -28643,7 +26850,6 @@ self: { ]; description = "Comprehensive Amazon Web Services SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-accessanalyzer" = callPackage @@ -28662,7 +26868,6 @@ self: { ]; description = "Amazon Access Analyzer SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-account" = callPackage @@ -28681,7 +26886,6 @@ self: { ]; description = "Amazon Account SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-alexa-business" = callPackage @@ -28700,7 +26904,6 @@ self: { ]; description = "Amazon Alexa For Business SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-amp" = callPackage @@ -28719,7 +26922,6 @@ self: { ]; description = "Amazon Prometheus Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-amplify" = callPackage @@ -28738,7 +26940,6 @@ self: { ]; description = "Amazon Amplify SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-amplifybackend" = callPackage @@ -28757,7 +26958,6 @@ self: { ]; description = "Amazon AmplifyBackend SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-amplifyuibuilder" = callPackage @@ -28776,7 +26976,6 @@ self: { ]; description = "Amazon Amplify UI Builder SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-apigateway" = callPackage @@ -28795,7 +26994,6 @@ self: { ]; description = "Amazon API Gateway SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-apigatewaymanagementapi" = callPackage @@ -28814,7 +27012,6 @@ self: { ]; description = "Amazon ApiGatewayManagementApi SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-apigatewayv2" = callPackage @@ -28833,7 +27030,6 @@ self: { ]; description = "Amazon ApiGatewayV2 SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-appconfig" = callPackage @@ -28852,7 +27048,6 @@ self: { ]; description = "Amazon AppConfig SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-appconfigdata" = callPackage @@ -28871,7 +27066,6 @@ self: { ]; description = "Amazon AppConfig Data SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-appflow" = callPackage @@ -28890,7 +27084,6 @@ self: { ]; description = "Amazon Appflow SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-appintegrations" = callPackage @@ -28909,7 +27102,6 @@ self: { ]; description = "Amazon AppIntegrations Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-application-autoscaling" = callPackage @@ -28928,7 +27120,6 @@ self: { ]; description = "Amazon Application Auto Scaling SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-application-insights" = callPackage @@ -28947,7 +27138,6 @@ self: { ]; description = "Amazon CloudWatch Application Insights SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-applicationcostprofiler" = callPackage @@ -28966,7 +27156,6 @@ self: { ]; description = "Amazon Application Cost Profiler SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-appmesh" = callPackage @@ -28985,7 +27174,6 @@ self: { ]; description = "Amazon App Mesh SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-apprunner" = callPackage @@ -29004,7 +27192,6 @@ self: { ]; description = "Amazon App Runner SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-appstream" = callPackage @@ -29023,7 +27210,6 @@ self: { ]; description = "Amazon AppStream SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-appsync" = callPackage @@ -29042,7 +27228,6 @@ self: { ]; description = "Amazon AppSync SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-arc-zonal-shift" = callPackage @@ -29061,7 +27246,6 @@ self: { ]; description = "Amazon ARC - Zonal Shift SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-athena" = callPackage @@ -29080,7 +27264,6 @@ self: { ]; description = "Amazon Athena SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-auditmanager" = callPackage @@ -29099,7 +27282,6 @@ self: { ]; description = "Amazon Audit Manager SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-autoscaling" = callPackage @@ -29118,7 +27300,6 @@ self: { ]; description = "Amazon Auto Scaling SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-autoscaling-plans" = callPackage @@ -29137,7 +27318,6 @@ self: { ]; description = "Amazon Auto Scaling Plans SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-backup" = callPackage @@ -29156,7 +27336,6 @@ self: { ]; description = "Amazon Backup SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-backup-gateway" = callPackage @@ -29175,7 +27354,6 @@ self: { ]; description = "Amazon Backup Gateway SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-backupstorage" = callPackage @@ -29194,7 +27372,6 @@ self: { ]; description = "Amazon Backup Storage SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-batch" = callPackage @@ -29213,7 +27390,6 @@ self: { ]; description = "Amazon Batch SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-billingconductor" = callPackage @@ -29232,7 +27408,6 @@ self: { ]; description = "Amazon BillingConductor SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-braket" = callPackage @@ -29251,7 +27426,6 @@ self: { ]; description = "Amazon Braket SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-budgets" = callPackage @@ -29270,7 +27444,6 @@ self: { ]; description = "Amazon Budgets SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-certificatemanager" = callPackage @@ -29289,7 +27462,6 @@ self: { ]; description = "Amazon Certificate Manager SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-certificatemanager-pca" = callPackage @@ -29308,7 +27480,6 @@ self: { ]; description = "Amazon Certificate Manager Private Certificate Authority SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-chime" = callPackage @@ -29327,7 +27498,6 @@ self: { ]; description = "Amazon Chime SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-chime-sdk-identity" = callPackage @@ -29346,7 +27516,6 @@ self: { ]; description = "Amazon Chime SDK Identity SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-chime-sdk-media-pipelines" = callPackage @@ -29365,7 +27534,6 @@ self: { ]; description = "Amazon Chime SDK Media Pipelines SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-chime-sdk-meetings" = callPackage @@ -29384,7 +27552,6 @@ self: { ]; description = "Amazon Chime SDK Meetings SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-chime-sdk-messaging" = callPackage @@ -29403,7 +27570,6 @@ self: { ]; description = "Amazon Chime SDK Messaging SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-chime-sdk-voice" = callPackage @@ -29422,7 +27588,6 @@ self: { ]; description = "Amazon Chime SDK Voice SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cloud9" = callPackage @@ -29441,7 +27606,6 @@ self: { ]; description = "Amazon Cloud9 SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cloudcontrol" = callPackage @@ -29460,7 +27624,6 @@ self: { ]; description = "Amazon Cloud Control API SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-clouddirectory" = callPackage @@ -29479,7 +27642,6 @@ self: { ]; description = "Amazon CloudDirectory SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cloudformation" = callPackage @@ -29498,7 +27660,6 @@ self: { ]; description = "Amazon CloudFormation SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cloudfront" = callPackage @@ -29517,7 +27678,6 @@ self: { ]; description = "Amazon CloudFront SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cloudhsm" = callPackage @@ -29536,7 +27696,6 @@ self: { ]; description = "Amazon CloudHSM SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cloudhsmv2" = callPackage @@ -29555,7 +27714,6 @@ self: { ]; description = "Amazon CloudHSM V2 SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cloudsearch" = callPackage @@ -29574,7 +27732,6 @@ self: { ]; description = "Amazon CloudSearch SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cloudsearch-domains" = callPackage @@ -29593,7 +27750,6 @@ self: { ]; description = "Amazon CloudSearch Domain SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cloudtrail" = callPackage @@ -29612,7 +27768,6 @@ self: { ]; description = "Amazon CloudTrail SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cloudwatch" = callPackage @@ -29631,7 +27786,6 @@ self: { ]; description = "Amazon CloudWatch SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cloudwatch-events" = callPackage @@ -29650,7 +27804,6 @@ self: { ]; description = "Amazon EventBridge SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cloudwatch-logs" = callPackage @@ -29669,7 +27822,6 @@ self: { ]; description = "Amazon CloudWatch Logs SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-codeartifact" = callPackage @@ -29688,7 +27840,6 @@ self: { ]; description = "Amazon CodeArtifact SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-codebuild" = callPackage @@ -29707,7 +27858,6 @@ self: { ]; description = "Amazon CodeBuild SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-codecommit" = callPackage @@ -29726,7 +27876,6 @@ self: { ]; description = "Amazon CodeCommit SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-codedeploy" = callPackage @@ -29745,7 +27894,6 @@ self: { ]; description = "Amazon CodeDeploy SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-codeguru-reviewer" = callPackage @@ -29764,7 +27912,6 @@ self: { ]; description = "Amazon CodeGuru Reviewer SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-codeguruprofiler" = callPackage @@ -29783,7 +27930,6 @@ self: { ]; description = "Amazon CodeGuru Profiler SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-codepipeline" = callPackage @@ -29802,7 +27948,6 @@ self: { ]; description = "Amazon CodePipeline SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-codestar" = callPackage @@ -29821,7 +27966,6 @@ self: { ]; description = "Amazon CodeStar SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-codestar-connections" = callPackage @@ -29840,7 +27984,6 @@ self: { ]; description = "Amazon CodeStar connections SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-codestar-notifications" = callPackage @@ -29859,7 +28002,6 @@ self: { ]; description = "Amazon CodeStar Notifications SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cognito-identity" = callPackage @@ -29878,7 +28020,6 @@ self: { ]; description = "Amazon Cognito Identity SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cognito-idp" = callPackage @@ -29897,7 +28038,6 @@ self: { ]; description = "Amazon Cognito Identity Provider SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cognito-sync" = callPackage @@ -29916,7 +28056,6 @@ self: { ]; description = "Amazon Cognito Sync SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-comprehend" = callPackage @@ -29935,7 +28074,6 @@ self: { ]; description = "Amazon Comprehend SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-comprehendmedical" = callPackage @@ -29954,7 +28092,6 @@ self: { ]; description = "Amazon Comprehend Medical SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-compute-optimizer" = callPackage @@ -29973,7 +28110,6 @@ self: { ]; description = "Amazon Compute Optimizer SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-config" = callPackage @@ -29992,7 +28128,6 @@ self: { ]; description = "Amazon Config SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-connect" = callPackage @@ -30011,7 +28146,6 @@ self: { ]; description = "Amazon Connect Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-connect-contact-lens" = callPackage @@ -30030,7 +28164,6 @@ self: { ]; description = "Amazon Connect Contact Lens SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-connectcampaigns" = callPackage @@ -30049,7 +28182,6 @@ self: { ]; description = "Amazon ConnectCampaignService SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-connectcases" = callPackage @@ -30068,7 +28200,6 @@ self: { ]; description = "Amazon Connect Cases SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-connectparticipant" = callPackage @@ -30087,7 +28218,6 @@ self: { ]; description = "Amazon Connect Participant Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-contrib-rds-utils" = callPackage @@ -30108,7 +28238,6 @@ self: { ]; description = "A Haskell equivalent of \"aws rds generate-db-auth-token\""; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "generate-db-auth-token"; }) {}; @@ -30128,7 +28257,6 @@ self: { ]; description = "Amazon Control Tower SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-core" = callPackage @@ -30158,8 +28286,6 @@ self: { ]; description = "Core data types and functionality for Amazonka libraries"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "amazonka-cost-explorer" = callPackage @@ -30178,7 +28304,6 @@ self: { ]; description = "Amazon Cost Explorer Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-cur" = callPackage @@ -30197,7 +28322,6 @@ self: { ]; description = "Amazon Cost and Usage Report Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-customer-profiles" = callPackage @@ -30216,7 +28340,6 @@ self: { ]; description = "Amazon Connect Customer Profiles SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-databrew" = callPackage @@ -30235,7 +28358,6 @@ self: { ]; description = "Amazon Glue DataBrew SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-dataexchange" = callPackage @@ -30254,7 +28376,6 @@ self: { ]; description = "Amazon Data Exchange SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-datapipeline" = callPackage @@ -30273,7 +28394,6 @@ self: { ]; description = "Amazon Data Pipeline SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-datasync" = callPackage @@ -30292,7 +28412,6 @@ self: { ]; description = "Amazon DataSync SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-detective" = callPackage @@ -30311,7 +28430,6 @@ self: { ]; description = "Amazon Detective SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-devicefarm" = callPackage @@ -30330,7 +28448,6 @@ self: { ]; description = "Amazon Device Farm SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-devops-guru" = callPackage @@ -30349,7 +28466,6 @@ self: { ]; description = "Amazon DevOps Guru SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-directconnect" = callPackage @@ -30368,7 +28484,6 @@ self: { ]; description = "Amazon Direct Connect SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-discovery" = callPackage @@ -30387,7 +28502,6 @@ self: { ]; description = "Amazon Application Discovery Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-dlm" = callPackage @@ -30406,7 +28520,6 @@ self: { ]; description = "Amazon Data Lifecycle Manager SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-dms" = callPackage @@ -30425,7 +28538,6 @@ self: { ]; description = "Amazon Database Migration Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-docdb" = callPackage @@ -30444,7 +28556,6 @@ self: { ]; description = "Amazon DocumentDB with MongoDB compatibility SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-docdb-elastic" = callPackage @@ -30463,7 +28574,6 @@ self: { ]; description = "Amazon DocumentDB Elastic Clusters SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-drs" = callPackage @@ -30482,7 +28592,6 @@ self: { ]; description = "Amazon Elastic Disaster Recovery Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ds" = callPackage @@ -30501,7 +28610,6 @@ self: { ]; description = "Amazon Directory Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-dynamodb" = callPackage @@ -30523,7 +28631,6 @@ self: { ]; description = "Amazon DynamoDB SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-dynamodb-dax" = callPackage @@ -30542,7 +28649,6 @@ self: { ]; description = "Amazon DynamoDB Accelerator (DAX) SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-dynamodb-streams" = callPackage @@ -30564,7 +28670,6 @@ self: { ]; description = "Amazon DynamoDB Streams SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ebs" = callPackage @@ -30583,7 +28688,6 @@ self: { ]; description = "Amazon Elastic Block Store SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ec2" = callPackage @@ -30602,7 +28706,6 @@ self: { ]; description = "Amazon Elastic Compute Cloud SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ec2-instance-connect" = callPackage @@ -30621,7 +28724,6 @@ self: { ]; description = "Amazon EC2 Instance Connect SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ecr" = callPackage @@ -30640,7 +28742,6 @@ self: { ]; description = "Amazon EC2 Container Registry SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ecr-public" = callPackage @@ -30659,7 +28760,6 @@ self: { ]; description = "Amazon Elastic Container Registry Public SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ecs" = callPackage @@ -30678,7 +28778,6 @@ self: { ]; description = "Amazon EC2 Container Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-efs" = callPackage @@ -30697,7 +28796,6 @@ self: { ]; description = "Amazon Elastic File System SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-eks" = callPackage @@ -30716,7 +28814,6 @@ self: { ]; description = "Amazon Elastic Kubernetes Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-elastic-inference" = callPackage @@ -30735,7 +28832,6 @@ self: { ]; description = "Amazon Elastic Inference SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-elasticache" = callPackage @@ -30754,7 +28850,6 @@ self: { ]; description = "Amazon ElastiCache SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-elasticbeanstalk" = callPackage @@ -30773,7 +28868,6 @@ self: { ]; description = "Amazon Elastic Beanstalk SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-elasticsearch" = callPackage @@ -30792,7 +28886,6 @@ self: { ]; description = "Amazon Elasticsearch Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-elastictranscoder" = callPackage @@ -30811,7 +28904,6 @@ self: { ]; description = "Amazon Elastic Transcoder SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-elb" = callPackage @@ -30830,7 +28922,6 @@ self: { ]; description = "Amazon Elastic Load Balancing SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-elbv2" = callPackage @@ -30849,7 +28940,6 @@ self: { ]; description = "Amazon Elastic Load Balancing SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-emr" = callPackage @@ -30868,7 +28958,6 @@ self: { ]; description = "Amazon EMR SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-emr-containers" = callPackage @@ -30887,7 +28976,6 @@ self: { ]; description = "Amazon EMR Containers SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-emr-serverless" = callPackage @@ -30906,7 +28994,6 @@ self: { ]; description = "Amazon EMR Serverless SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-evidently" = callPackage @@ -30925,7 +29012,6 @@ self: { ]; description = "Amazon CloudWatch Evidently SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-finspace" = callPackage @@ -30944,7 +29030,6 @@ self: { ]; description = "Amazon FinSpace User Environment Management service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-finspace-data" = callPackage @@ -30963,7 +29048,6 @@ self: { ]; description = "Amazon FinSpace Public API SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-fis" = callPackage @@ -30982,7 +29066,6 @@ self: { ]; description = "Amazon Fault Injection Simulator SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-fms" = callPackage @@ -31001,7 +29084,6 @@ self: { ]; description = "Amazon Firewall Management Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-forecast" = callPackage @@ -31020,7 +29102,6 @@ self: { ]; description = "Amazon Forecast Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-forecastquery" = callPackage @@ -31039,7 +29120,6 @@ self: { ]; description = "Amazon Forecast Query Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-frauddetector" = callPackage @@ -31058,7 +29138,6 @@ self: { ]; description = "Amazon Fraud Detector SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-fsx" = callPackage @@ -31077,7 +29156,6 @@ self: { ]; description = "Amazon FSx SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-gamelift" = callPackage @@ -31096,7 +29174,6 @@ self: { ]; description = "Amazon GameLift SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-gamesparks" = callPackage @@ -31115,7 +29192,6 @@ self: { ]; description = "Amazon GameSparks SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-glacier" = callPackage @@ -31134,7 +29210,6 @@ self: { ]; description = "Amazon Glacier SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-globalaccelerator" = callPackage @@ -31153,7 +29228,6 @@ self: { ]; description = "Amazon Global Accelerator SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-glue" = callPackage @@ -31172,7 +29246,6 @@ self: { ]; description = "Amazon Glue SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-grafana" = callPackage @@ -31191,7 +29264,6 @@ self: { ]; description = "Amazon Managed Grafana SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-greengrass" = callPackage @@ -31210,7 +29282,6 @@ self: { ]; description = "Amazon Greengrass SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-greengrassv2" = callPackage @@ -31229,7 +29300,6 @@ self: { ]; description = "Amazon IoT Greengrass V2 SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-groundstation" = callPackage @@ -31248,7 +29318,6 @@ self: { ]; description = "Amazon Ground Station SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-guardduty" = callPackage @@ -31267,7 +29336,6 @@ self: { ]; description = "Amazon GuardDuty SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-health" = callPackage @@ -31286,7 +29354,6 @@ self: { ]; description = "Amazon Health APIs and Notifications SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-healthlake" = callPackage @@ -31305,7 +29372,6 @@ self: { ]; description = "Amazon HealthLake SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-honeycode" = callPackage @@ -31324,7 +29390,6 @@ self: { ]; description = "Amazon Honeycode SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iam" = callPackage @@ -31343,7 +29408,6 @@ self: { ]; description = "Amazon Identity and Access Management SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iam-policy" = callPackage @@ -31365,8 +29429,6 @@ self: { ]; description = "Amazon IAM Policy Document DSL and Combinators"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "amazonka-identitystore" = callPackage @@ -31385,7 +29447,6 @@ self: { ]; description = "Amazon SSO Identity Store SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-imagebuilder" = callPackage @@ -31404,7 +29465,6 @@ self: { ]; description = "Amazon EC2 Image Builder SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-importexport" = callPackage @@ -31423,7 +29483,6 @@ self: { ]; description = "Amazon Import/Export SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-inspector" = callPackage @@ -31442,7 +29501,6 @@ self: { ]; description = "Amazon Inspector SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-inspector2" = callPackage @@ -31461,7 +29519,6 @@ self: { ]; description = "Amazon Inspector2 SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iot" = callPackage @@ -31480,7 +29537,6 @@ self: { ]; description = "Amazon IoT SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iot-analytics" = callPackage @@ -31499,7 +29555,6 @@ self: { ]; description = "Amazon IoT Analytics SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iot-dataplane" = callPackage @@ -31518,7 +29573,6 @@ self: { ]; description = "Amazon IoT Data Plane SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iot-jobs-dataplane" = callPackage @@ -31537,7 +29591,6 @@ self: { ]; description = "Amazon IoT Jobs Data Plane SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iot-roborunner" = callPackage @@ -31556,7 +29609,6 @@ self: { ]; description = "Amazon IoT RoboRunner SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iot1click-devices" = callPackage @@ -31575,7 +29627,6 @@ self: { ]; description = "Amazon IoT 1-Click Devices Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iot1click-projects" = callPackage @@ -31594,7 +29645,6 @@ self: { ]; description = "Amazon IoT 1-Click Projects Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotdeviceadvisor" = callPackage @@ -31613,7 +29663,6 @@ self: { ]; description = "Amazon IoT Core Device Advisor SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotevents" = callPackage @@ -31632,7 +29681,6 @@ self: { ]; description = "Amazon IoT Events SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotevents-data" = callPackage @@ -31651,7 +29699,6 @@ self: { ]; description = "Amazon IoT Events Data SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotfleethub" = callPackage @@ -31670,7 +29717,6 @@ self: { ]; description = "Amazon IoT Fleet Hub SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotfleetwise" = callPackage @@ -31689,7 +29735,6 @@ self: { ]; description = "Amazon IoT FleetWise SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotsecuretunneling" = callPackage @@ -31708,7 +29753,6 @@ self: { ]; description = "Amazon IoT Secure Tunneling SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotsitewise" = callPackage @@ -31727,7 +29771,6 @@ self: { ]; description = "Amazon IoT SiteWise SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotthingsgraph" = callPackage @@ -31746,7 +29789,6 @@ self: { ]; description = "Amazon IoT Things Graph SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iottwinmaker" = callPackage @@ -31765,7 +29807,6 @@ self: { ]; description = "Amazon IoT TwinMaker SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-iotwireless" = callPackage @@ -31784,7 +29825,6 @@ self: { ]; description = "Amazon IoT Wireless SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ivs" = callPackage @@ -31803,7 +29843,6 @@ self: { ]; description = "Amazon Interactive Video Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ivschat" = callPackage @@ -31822,7 +29861,6 @@ self: { ]; description = "Amazon Interactive Video Service Chat SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kafka" = callPackage @@ -31841,7 +29879,6 @@ self: { ]; description = "Amazon Managed Streaming for Kafka SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kafkaconnect" = callPackage @@ -31860,7 +29897,6 @@ self: { ]; description = "Amazon Managed Streaming for Kafka Connect SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kendra" = callPackage @@ -31879,7 +29915,6 @@ self: { ]; description = "Amazon KendraFrontendService SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-keyspaces" = callPackage @@ -31898,7 +29933,6 @@ self: { ]; description = "Amazon Keyspaces SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kinesis" = callPackage @@ -31917,7 +29951,6 @@ self: { ]; description = "Amazon Kinesis SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kinesis-analytics" = callPackage @@ -31936,7 +29969,6 @@ self: { ]; description = "Amazon Kinesis Analytics SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kinesis-firehose" = callPackage @@ -31955,7 +29987,6 @@ self: { ]; description = "Amazon Kinesis Firehose SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kinesis-video" = callPackage @@ -31974,7 +30005,6 @@ self: { ]; description = "Amazon Kinesis Video Streams SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kinesis-video-archived-media" = callPackage @@ -31993,7 +30023,6 @@ self: { ]; description = "Amazon Kinesis Video Streams Archived Media SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kinesis-video-media" = callPackage @@ -32012,7 +30041,6 @@ self: { ]; description = "Amazon Kinesis Video Streams Media SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kinesis-video-signaling" = callPackage @@ -32031,7 +30059,6 @@ self: { ]; description = "Amazon Kinesis Video Signaling Channels SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kinesis-video-webrtc-storage" = callPackage @@ -32050,7 +30077,6 @@ self: { ]; description = "Amazon Kinesis Video WebRTC Storage SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kinesisanalyticsv2" = callPackage @@ -32069,7 +30095,6 @@ self: { ]; description = "Amazon Kinesis Analytics SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-kms" = callPackage @@ -32088,7 +30113,6 @@ self: { ]; description = "Amazon Key Management Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-lakeformation" = callPackage @@ -32107,7 +30131,6 @@ self: { ]; description = "Amazon Lake Formation SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-lambda" = callPackage @@ -32126,7 +30149,6 @@ self: { ]; description = "Amazon Lambda SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-lex-models" = callPackage @@ -32145,7 +30167,6 @@ self: { ]; description = "Amazon Lex Model Building Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-lex-runtime" = callPackage @@ -32164,7 +30185,6 @@ self: { ]; description = "Amazon Lex Runtime Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-lexv2-models" = callPackage @@ -32183,7 +30203,6 @@ self: { ]; description = "Amazon Lex Model Building V2 SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-license-manager" = callPackage @@ -32202,7 +30221,6 @@ self: { ]; description = "Amazon License Manager SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-license-manager-linux-subscriptions" = callPackage @@ -32221,7 +30239,6 @@ self: { ]; description = "Amazon License Manager Linux Subscriptions SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-license-manager-user-subscriptions" = callPackage @@ -32240,7 +30257,6 @@ self: { ]; description = "Amazon License Manager User Subscriptions SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-lightsail" = callPackage @@ -32259,7 +30275,6 @@ self: { ]; description = "Amazon Lightsail SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-location" = callPackage @@ -32278,7 +30293,6 @@ self: { ]; description = "Amazon Location Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-lookoutequipment" = callPackage @@ -32297,7 +30311,6 @@ self: { ]; description = "Amazon Lookout for Equipment SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-lookoutmetrics" = callPackage @@ -32316,7 +30329,6 @@ self: { ]; description = "Amazon Lookout for Metrics SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-lookoutvision" = callPackage @@ -32335,7 +30347,6 @@ self: { ]; description = "Amazon Lookout for Vision SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-m2" = callPackage @@ -32354,7 +30365,6 @@ self: { ]; description = "Amazon MainframeModernization SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-macie" = callPackage @@ -32373,7 +30383,6 @@ self: { ]; description = "Amazon Macie SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-maciev2" = callPackage @@ -32392,7 +30401,6 @@ self: { ]; description = "Amazon Macie 2 SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-managedblockchain" = callPackage @@ -32411,7 +30419,6 @@ self: { ]; description = "Amazon Managed Blockchain SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-marketplace-analytics" = callPackage @@ -32430,7 +30437,6 @@ self: { ]; description = "Amazon Marketplace Commerce Analytics SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-marketplace-catalog" = callPackage @@ -32449,7 +30455,6 @@ self: { ]; description = "Amazon Marketplace Catalog Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-marketplace-entitlement" = callPackage @@ -32468,7 +30473,6 @@ self: { ]; description = "Amazon Marketplace Entitlement Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-marketplace-metering" = callPackage @@ -32487,7 +30491,6 @@ self: { ]; description = "Amazon Marketplace Metering SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-mechanicalturk" = callPackage @@ -32506,7 +30509,6 @@ self: { ]; description = "Amazon Mechanical Turk SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-mediaconnect" = callPackage @@ -32525,7 +30527,6 @@ self: { ]; description = "Amazon MediaConnect SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-mediaconvert" = callPackage @@ -32544,7 +30545,6 @@ self: { ]; description = "Amazon Elemental MediaConvert SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-medialive" = callPackage @@ -32563,7 +30563,6 @@ self: { ]; description = "Amazon Elemental MediaLive SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-mediapackage" = callPackage @@ -32582,7 +30581,6 @@ self: { ]; description = "Amazon Elemental MediaPackage SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-mediapackage-vod" = callPackage @@ -32601,7 +30599,6 @@ self: { ]; description = "Amazon Elemental MediaPackage VOD SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-mediastore" = callPackage @@ -32620,7 +30617,6 @@ self: { ]; description = "Amazon Elemental MediaStore SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-mediastore-dataplane" = callPackage @@ -32639,7 +30635,6 @@ self: { ]; description = "Amazon Elemental MediaStore Data Plane SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-mediatailor" = callPackage @@ -32658,7 +30653,6 @@ self: { ]; description = "Amazon MediaTailor SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-memorydb" = callPackage @@ -32677,7 +30671,6 @@ self: { ]; description = "Amazon MemoryDB SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-mgn" = callPackage @@ -32696,7 +30689,6 @@ self: { ]; description = "Amazon Application Migration Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-migration-hub-refactor-spaces" = callPackage @@ -32715,7 +30707,6 @@ self: { ]; description = "Amazon Migration Hub Refactor Spaces SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-migrationhub" = callPackage @@ -32734,7 +30725,6 @@ self: { ]; description = "Amazon Migration Hub SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-migrationhub-config" = callPackage @@ -32753,7 +30743,6 @@ self: { ]; description = "Amazon Migration Hub Config SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-migrationhuborchestrator" = callPackage @@ -32772,7 +30761,6 @@ self: { ]; description = "Amazon Migration Hub Orchestrator SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-migrationhubstrategy" = callPackage @@ -32791,7 +30779,6 @@ self: { ]; description = "Amazon Migration Hub Strategy Recommendations SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ml" = callPackage @@ -32810,7 +30797,6 @@ self: { ]; description = "Amazon Machine Learning SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-mobile" = callPackage @@ -32829,7 +30815,6 @@ self: { ]; description = "Amazon Mobile SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-mq" = callPackage @@ -32848,7 +30833,6 @@ self: { ]; description = "Amazon MQ SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-mwaa" = callPackage @@ -32867,7 +30851,6 @@ self: { ]; description = "Amazon MWAA SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-neptune" = callPackage @@ -32886,7 +30869,6 @@ self: { ]; description = "Amazon Neptune SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-network-firewall" = callPackage @@ -32905,7 +30887,6 @@ self: { ]; description = "Amazon Network Firewall SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-networkmanager" = callPackage @@ -32924,7 +30905,6 @@ self: { ]; description = "Amazon Network Manager SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-nimble" = callPackage @@ -32943,7 +30923,6 @@ self: { ]; description = "Amazon NimbleStudio SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-oam" = callPackage @@ -32962,7 +30941,6 @@ self: { ]; description = "Amazon CloudWatch Observability Access Manager SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-omics" = callPackage @@ -32981,7 +30959,6 @@ self: { ]; description = "Amazon Omics SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-opensearch" = callPackage @@ -33000,7 +30977,6 @@ self: { ]; description = "Amazon OpenSearch Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-opensearchserverless" = callPackage @@ -33019,7 +30995,6 @@ self: { ]; description = "Amazon OpenSearch Service Serverless SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-opsworks" = callPackage @@ -33038,7 +31013,6 @@ self: { ]; description = "Amazon OpsWorks SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-opsworks-cm" = callPackage @@ -33057,7 +31031,6 @@ self: { ]; description = "Amazon OpsWorks CM SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-organizations" = callPackage @@ -33076,7 +31049,6 @@ self: { ]; description = "Amazon Organizations SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-outposts" = callPackage @@ -33095,7 +31067,6 @@ self: { ]; description = "Amazon Outposts SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-panorama" = callPackage @@ -33114,7 +31085,6 @@ self: { ]; description = "Amazon Panorama SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-personalize" = callPackage @@ -33133,7 +31103,6 @@ self: { ]; description = "Amazon Personalize SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-personalize-events" = callPackage @@ -33152,7 +31121,6 @@ self: { ]; description = "Amazon Personalize Events SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-personalize-runtime" = callPackage @@ -33171,7 +31139,6 @@ self: { ]; description = "Amazon Personalize Runtime SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-pi" = callPackage @@ -33190,7 +31157,6 @@ self: { ]; description = "Amazon Performance Insights SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-pinpoint" = callPackage @@ -33209,7 +31175,6 @@ self: { ]; description = "Amazon Pinpoint SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-pinpoint-email" = callPackage @@ -33228,7 +31193,6 @@ self: { ]; description = "Amazon Pinpoint Email Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-pinpoint-sms-voice" = callPackage @@ -33247,7 +31211,6 @@ self: { ]; description = "Amazon Pinpoint SMS and Voice Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-pinpoint-sms-voice-v2" = callPackage @@ -33266,7 +31229,6 @@ self: { ]; description = "Amazon Pinpoint SMS Voice V2 SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-pipes" = callPackage @@ -33285,7 +31247,6 @@ self: { ]; description = "Amazon EventBridge Pipes SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-polly" = callPackage @@ -33304,7 +31265,6 @@ self: { ]; description = "Amazon Polly SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-pricing" = callPackage @@ -33323,7 +31283,6 @@ self: { ]; description = "Amazon Price List Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-privatenetworks" = callPackage @@ -33342,7 +31301,6 @@ self: { ]; description = "Amazon Private 5G SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-proton" = callPackage @@ -33361,7 +31319,6 @@ self: { ]; description = "Amazon Proton SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-qldb" = callPackage @@ -33380,7 +31337,6 @@ self: { ]; description = "Amazon QLDB SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-qldb-session" = callPackage @@ -33399,7 +31355,6 @@ self: { ]; description = "Amazon QLDB Session SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-quicksight" = callPackage @@ -33418,7 +31373,6 @@ self: { ]; description = "Amazon QuickSight SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ram" = callPackage @@ -33437,7 +31391,6 @@ self: { ]; description = "Amazon Resource Access Manager SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-rbin" = callPackage @@ -33456,7 +31409,6 @@ self: { ]; description = "Amazon Recycle Bin SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-rds" = callPackage @@ -33475,7 +31427,6 @@ self: { ]; description = "Amazon Relational Database Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-rds-data" = callPackage @@ -33494,7 +31445,6 @@ self: { ]; description = "Amazon RDS DataService SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-redshift" = callPackage @@ -33513,7 +31463,6 @@ self: { ]; description = "Amazon Redshift SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-redshift-data" = callPackage @@ -33532,7 +31481,6 @@ self: { ]; description = "Amazon Redshift Data API Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-redshift-serverless" = callPackage @@ -33551,7 +31499,6 @@ self: { ]; description = "Amazon Redshift Serverless SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-rekognition" = callPackage @@ -33570,7 +31517,6 @@ self: { ]; description = "Amazon Rekognition SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-resiliencehub" = callPackage @@ -33589,7 +31535,6 @@ self: { ]; description = "Amazon Resilience Hub SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-resource-explorer-v2" = callPackage @@ -33608,7 +31553,6 @@ self: { ]; description = "Amazon Resource Explorer SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-resourcegroups" = callPackage @@ -33627,7 +31571,6 @@ self: { ]; description = "Amazon Resource Groups SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-resourcegroupstagging" = callPackage @@ -33646,7 +31589,6 @@ self: { ]; description = "Amazon Resource Groups Tagging API SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-robomaker" = callPackage @@ -33665,7 +31607,6 @@ self: { ]; description = "Amazon RoboMaker SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-rolesanywhere" = callPackage @@ -33684,7 +31625,6 @@ self: { ]; description = "Amazon IAM Roles Anywhere SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-route53" = callPackage @@ -33703,7 +31643,6 @@ self: { ]; description = "Amazon Route 53 SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-route53-autonaming" = callPackage @@ -33722,7 +31661,6 @@ self: { ]; description = "Amazon Cloud Map SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-route53-domains" = callPackage @@ -33741,7 +31679,6 @@ self: { ]; description = "Amazon Route 53 Domains SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-route53-recovery-cluster" = callPackage @@ -33760,7 +31697,6 @@ self: { ]; description = "Amazon Route53 Recovery Cluster SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-route53-recovery-control-config" = callPackage @@ -33779,7 +31715,6 @@ self: { ]; description = "Amazon Route53 Recovery Control Config SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-route53-recovery-readiness" = callPackage @@ -33798,7 +31733,6 @@ self: { ]; description = "Amazon Route53 Recovery Readiness SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-route53resolver" = callPackage @@ -33817,7 +31751,6 @@ self: { ]; description = "Amazon Route 53 Resolver SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-rum" = callPackage @@ -33836,7 +31769,6 @@ self: { ]; description = "Amazon CloudWatch RUM SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-s3" = callPackage @@ -33855,7 +31787,6 @@ self: { ]; description = "Amazon Simple Storage Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-s3-encryption" = callPackage @@ -33881,7 +31812,6 @@ self: { ]; description = "Amazon Simple Storage Service SDK - Client-Side Encryption"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-s3-streaming" = callPackage @@ -33901,7 +31831,6 @@ self: { ]; description = "Provides conduits to upload data to S3 using the Multipart API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-s3outposts" = callPackage @@ -33920,7 +31849,6 @@ self: { ]; description = "Amazon S3 on Outposts SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sagemaker" = callPackage @@ -33939,7 +31867,6 @@ self: { ]; description = "Amazon SageMaker Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sagemaker-a2i-runtime" = callPackage @@ -33958,7 +31885,6 @@ self: { ]; description = "Amazon Augmented AI Runtime SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sagemaker-edge" = callPackage @@ -33977,7 +31903,6 @@ self: { ]; description = "Amazon Sagemaker Edge Manager SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sagemaker-featurestore-runtime" = callPackage @@ -33996,7 +31921,6 @@ self: { ]; description = "Amazon SageMaker Feature Store Runtime SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sagemaker-geospatial" = callPackage @@ -34015,7 +31939,6 @@ self: { ]; description = "Amazon SageMaker geospatial capabilities SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sagemaker-metrics" = callPackage @@ -34034,7 +31957,6 @@ self: { ]; description = "Amazon SageMaker Metrics Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sagemaker-runtime" = callPackage @@ -34053,7 +31975,6 @@ self: { ]; description = "Amazon SageMaker Runtime SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-savingsplans" = callPackage @@ -34072,7 +31993,6 @@ self: { ]; description = "Amazon Savings Plans SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-scheduler" = callPackage @@ -34091,7 +32011,6 @@ self: { ]; description = "Amazon EventBridge Scheduler SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-schemas" = callPackage @@ -34110,7 +32029,6 @@ self: { ]; description = "Amazon Schemas SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sdb" = callPackage @@ -34129,7 +32047,6 @@ self: { ]; description = "Amazon SimpleDB SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-secretsmanager" = callPackage @@ -34148,7 +32065,6 @@ self: { ]; description = "Amazon Secrets Manager SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-securityhub" = callPackage @@ -34167,7 +32083,6 @@ self: { ]; description = "Amazon SecurityHub SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-securitylake" = callPackage @@ -34186,7 +32101,6 @@ self: { ]; description = "Amazon Security Lake SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-serverlessrepo" = callPackage @@ -34205,7 +32119,6 @@ self: { ]; description = "Amazon ServerlessApplicationRepository SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-service-quotas" = callPackage @@ -34224,7 +32137,6 @@ self: { ]; description = "Amazon Quotas SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-servicecatalog" = callPackage @@ -34243,7 +32155,6 @@ self: { ]; description = "Amazon Service Catalog SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-servicecatalog-appregistry" = callPackage @@ -34262,7 +32173,6 @@ self: { ]; description = "Amazon Service Catalog App Registry SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ses" = callPackage @@ -34281,7 +32191,6 @@ self: { ]; description = "Amazon Simple Email Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sesv2" = callPackage @@ -34300,7 +32209,6 @@ self: { ]; description = "Amazon Simple Email Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-shield" = callPackage @@ -34319,7 +32227,6 @@ self: { ]; description = "Amazon Shield SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-signer" = callPackage @@ -34338,7 +32245,6 @@ self: { ]; description = "Amazon Signer SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-simspaceweaver" = callPackage @@ -34357,7 +32263,6 @@ self: { ]; description = "Amazon SimSpace Weaver SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sms" = callPackage @@ -34376,7 +32281,6 @@ self: { ]; description = "Amazon Server Migration Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sms-voice" = callPackage @@ -34395,7 +32299,6 @@ self: { ]; description = "Amazon Pinpoint SMS and Voice Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-snow-device-management" = callPackage @@ -34414,7 +32317,6 @@ self: { ]; description = "Amazon Snow Device Management SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-snowball" = callPackage @@ -34433,7 +32335,6 @@ self: { ]; description = "Amazon Import/Export Snowball SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sns" = callPackage @@ -34452,7 +32353,6 @@ self: { ]; description = "Amazon Simple Notification Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sqs" = callPackage @@ -34471,7 +32371,6 @@ self: { ]; description = "Amazon Simple Queue Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ssm" = callPackage @@ -34490,7 +32389,6 @@ self: { ]; description = "Amazon Simple Systems Manager (SSM) SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ssm-contacts" = callPackage @@ -34509,7 +32407,6 @@ self: { ]; description = "Amazon Systems Manager Incident Manager Contacts SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ssm-incidents" = callPackage @@ -34528,7 +32425,6 @@ self: { ]; description = "Amazon Systems Manager Incident Manager SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-ssm-sap" = callPackage @@ -34547,7 +32443,6 @@ self: { ]; description = "Amazon Systems Manager for SAP SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sso" = callPackage @@ -34566,7 +32461,6 @@ self: { ]; description = "Amazon Single Sign-On SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sso-admin" = callPackage @@ -34585,7 +32479,6 @@ self: { ]; description = "Amazon Single Sign-On Admin SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sso-oidc" = callPackage @@ -34604,7 +32497,6 @@ self: { ]; description = "Amazon SSO OIDC SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-stepfunctions" = callPackage @@ -34623,7 +32515,6 @@ self: { ]; description = "Amazon Step Functions SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-storagegateway" = callPackage @@ -34642,7 +32533,6 @@ self: { ]; description = "Amazon Storage Gateway SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-sts" = callPackage @@ -34661,7 +32551,6 @@ self: { ]; description = "Amazon Security Token Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-support" = callPackage @@ -34680,7 +32569,6 @@ self: { ]; description = "Amazon Support SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-support-app" = callPackage @@ -34699,7 +32587,6 @@ self: { ]; description = "Amazon Support App SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-swf" = callPackage @@ -34718,7 +32605,6 @@ self: { ]; description = "Amazon Simple Workflow Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-synthetics" = callPackage @@ -34737,7 +32623,6 @@ self: { ]; description = "Amazon Synthetics SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-test" = callPackage @@ -34759,7 +32644,6 @@ self: { ]; description = "Common functionality for Amazonka library test-suites"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-textract" = callPackage @@ -34778,7 +32662,6 @@ self: { ]; description = "Amazon Textract SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-timestream-query" = callPackage @@ -34797,7 +32680,6 @@ self: { ]; description = "Amazon Timestream Query SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-timestream-write" = callPackage @@ -34816,7 +32698,6 @@ self: { ]; description = "Amazon Timestream Write SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-transcribe" = callPackage @@ -34835,7 +32716,6 @@ self: { ]; description = "Amazon Transcribe Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-transfer" = callPackage @@ -34854,7 +32734,6 @@ self: { ]; description = "Amazon Transfer Family SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-translate" = callPackage @@ -34873,7 +32752,6 @@ self: { ]; description = "Amazon Translate SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-voice-id" = callPackage @@ -34892,7 +32770,6 @@ self: { ]; description = "Amazon Voice ID SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-waf" = callPackage @@ -34911,7 +32788,6 @@ self: { ]; description = "Amazon WAF SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-waf-regional" = callPackage @@ -34930,7 +32806,6 @@ self: { ]; description = "Amazon WAF Regional SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-wafv2" = callPackage @@ -34949,7 +32824,6 @@ self: { ]; description = "Amazon WAFV2 SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-wellarchitected" = callPackage @@ -34968,7 +32842,6 @@ self: { ]; description = "Amazon Well-Architected Tool SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-wisdom" = callPackage @@ -34987,7 +32860,6 @@ self: { ]; description = "Amazon Connect Wisdom Service SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-workdocs" = callPackage @@ -35006,7 +32878,6 @@ self: { ]; description = "Amazon WorkDocs SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-worklink" = callPackage @@ -35025,7 +32896,6 @@ self: { ]; description = "Amazon WorkLink SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-workmail" = callPackage @@ -35044,7 +32914,6 @@ self: { ]; description = "Amazon WorkMail SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-workmailmessageflow" = callPackage @@ -35063,7 +32932,6 @@ self: { ]; description = "Amazon WorkMail Message Flow SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-workspaces" = callPackage @@ -35082,7 +32950,6 @@ self: { ]; description = "Amazon WorkSpaces SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-workspaces-web" = callPackage @@ -35101,7 +32968,6 @@ self: { ]; description = "Amazon WorkSpaces Web SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amazonka-xray" = callPackage @@ -35120,7 +32986,6 @@ self: { ]; description = "Amazon X-Ray SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "amby" = callPackage @@ -35146,7 +33011,6 @@ self: { benchmarkHaskellDepends = [ base statistics ]; description = "Statistical data visualization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ampersand" = callPackage @@ -35177,7 +33041,6 @@ self: { ]; description = "Toolsuite for automated design of business processes"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "ampersand"; }) {}; @@ -35256,8 +33119,6 @@ self: { ]; description = "Conduit bindings for AMQP (see amqp package)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "amqp-streamly" = callPackage @@ -35274,7 +33135,6 @@ self: { ]; description = "A simple streamly wrapper for amqp"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "amqp-utils" = callPackage @@ -35407,8 +33267,6 @@ self: { ]; description = "making data science easy and safe with data frames"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "analyze-client" = callPackage @@ -35425,8 +33283,6 @@ self: { ]; description = "Client for analyze service"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "anansi" = callPackage @@ -35480,8 +33336,6 @@ self: { ]; description = "Looms which use Pandoc to parse and produce a variety of formats"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "anatomy" = callPackage @@ -35508,7 +33362,6 @@ self: { ]; description = "Anatomy: Atomo documentation system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "anatomy"; }) {}; @@ -35521,8 +33374,6 @@ self: { libraryHaskellDepends = [ base process ]; description = "Android methods exposed to Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "android-activity" = callPackage @@ -35534,8 +33385,6 @@ self: { libraryHaskellDepends = [ base data-default ]; description = "Turn regular Haskell programs into Android Activities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "android-lint-summary" = callPackage @@ -35562,9 +33411,7 @@ self: { ]; description = "A pretty printer for Android Lint errors"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "android-lint-summary"; - broken = true; }) {}; "angel" = callPackage @@ -35592,9 +33439,7 @@ self: { ]; description = "Process management and supervision daemon"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "angel"; - broken = true; }) {}; "angle" = callPackage @@ -35623,9 +33468,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "A small, general-purpose programming language"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "angle"; - broken = true; }) {}; "animalcase" = callPackage @@ -35637,8 +33480,6 @@ self: { libraryHaskellDepends = [ base bytestring text ]; description = "Convert camelCase to snake_case and vice versa"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "animascii" = callPackage @@ -35660,9 +33501,7 @@ self: { testHaskellDepends = [ ansi-terminal-game base hspec parsec ]; description = "text-file based ASCII animator"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "animascii"; - broken = true; }) {}; "animate" = callPackage @@ -35679,8 +33518,6 @@ self: { testHaskellDepends = [ aeson base containers hspec vector ]; description = "Animation for sprites"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "animate-example" = callPackage @@ -35699,7 +33536,6 @@ self: { ]; description = "Animation for sprites"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "animate-example"; }) {}; @@ -35722,7 +33558,6 @@ self: { testHaskellDepends = [ base tasty tasty-hspec ]; description = "Convert sprite frames to animate files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "animate-frames"; }) {}; @@ -35749,7 +33584,6 @@ self: { executableHaskellDepends = [ base ]; description = "Preview tool for sprite animation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "animate-preview"; }) {}; @@ -35762,7 +33596,6 @@ self: { libraryHaskellDepends = [ aeson animate base sdl2 sdl2-image ]; description = "sdl2 + animate auxiliary library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "anki-tools" = callPackage @@ -35783,9 +33616,7 @@ self: { executableHaskellDepends = [ base data-default ]; description = "Tools for interacting with Anki database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "anki-tools-test"; - broken = true; }) {}; "ann" = callPackage @@ -35822,7 +33653,6 @@ self: { ]; description = "Medium-level language that desugars to Morte"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "annah"; maintainers = [ lib.maintainers.Gabriella439 ]; }) {}; @@ -35866,8 +33696,6 @@ self: { libraryHaskellDepends = [ base recursion-schemes ]; description = "A fixpoint of a functor that can be annotated"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "annotated-wl-pprint" = callPackage @@ -35892,8 +33720,6 @@ self: { libraryHaskellDepends = [ base lens template-haskell ]; description = "Anonymous sum types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "anonymous-sums-tests" = callPackage @@ -35905,7 +33731,6 @@ self: { libraryHaskellDepends = [ anonymous-sums base QuickCheck ]; description = "QuickCheck functions to accompany the anonymous-sums package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ansi-escape-codes" = callPackage @@ -35937,8 +33762,6 @@ self: { ]; description = "AnsiPretty for ansi-wl-pprint"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ansi-terminal" = callPackage @@ -36053,8 +33876,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Terminal-based graphing via ANSI and Unicode"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "antagonist" = callPackage @@ -36080,7 +33901,6 @@ self: { ]; description = "A web interface to Antisplice dungeons"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "ironforge-yesod"; }) {}; @@ -36104,9 +33924,7 @@ self: { ]; description = "Referring expressions for definitions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "antfarm"; - broken = true; }) {}; "anticiv" = callPackage @@ -36132,7 +33950,6 @@ self: { ]; description = "This is an IRC bot for Mafia and Resistance"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "anticiv"; }) {}; @@ -36151,8 +33968,6 @@ self: { ]; description = "Interface for antigate.com captcha recognition API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "antimirov" = callPackage @@ -36167,9 +33982,7 @@ self: { executableHaskellDepends = [ base containers QuickCheck ]; description = "Define the language containment (=subtyping) relation on regulare expressions"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "test"; - broken = true; }) {}; "antiope-athena" = callPackage @@ -36191,7 +34004,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "antiope-contract" = callPackage @@ -36205,7 +34017,6 @@ self: { ]; description = "Please see the README on Github at "; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "antiope-core" = callPackage @@ -36232,7 +34043,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "antiope-dynamodb" = callPackage @@ -36255,7 +34065,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "antiope-es" = callPackage @@ -36275,7 +34084,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "antiope-messages" = callPackage @@ -36300,7 +34108,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "antiope-optparse-applicative" = callPackage @@ -36322,7 +34129,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "antiope-s3" = callPackage @@ -36351,7 +34157,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "antiope-shell" = callPackage @@ -36381,7 +34186,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "antiope-sns" = callPackage @@ -36405,7 +34209,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "antiope-sqs" = callPackage @@ -36432,7 +34235,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "antiope-swf" = callPackage @@ -36448,7 +34250,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "antiprimes" = callPackage @@ -36472,8 +34273,6 @@ self: { libraryHaskellDepends = [ base syb template-haskell ]; description = "Combinator library for quasi- and anti-quoting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "antisplice" = callPackage @@ -36490,8 +34289,6 @@ self: { ]; description = "An engine for text-based dungeons"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "antlr-haskell" = callPackage @@ -36516,8 +34313,6 @@ self: { ]; description = "A Haskell implementation of the ANTLR top-down parser generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "antlrc" = callPackage @@ -36538,7 +34333,6 @@ self: { ]; description = "Haskell binding to the ANTLR parser generator C runtime library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "antlrcmkenums"; }) {antlr3c = null;}; @@ -36572,8 +34366,6 @@ self: { libraryHaskellDepends = [ base containers MissingH mtl ]; description = "Interface for DBM-like database systems"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aop-prelude" = callPackage @@ -36586,8 +34378,6 @@ self: { testHaskellDepends = [ base ghc-prim ]; description = "prelude for Algebra of Programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aos-signature" = callPackage @@ -36628,8 +34418,6 @@ self: { ]; description = "Bindings to libaosd, a library for Cairo-based on-screen displays"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libaosd;}; "ap-normalize" = callPackage @@ -36679,8 +34467,6 @@ self: { benchmarkSystemDepends = [ openssl ]; description = "Apache specific MD5 digest algorighm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) openssl;}; "apart" = callPackage @@ -36704,9 +34490,7 @@ self: { ]; description = "Get all your structure and rip it apart"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "apecs" = callPackage @@ -36752,7 +34536,6 @@ self: { ]; description = "Simple gloss renderer for apecs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "apecs-physics" = callPackage @@ -36771,8 +34554,6 @@ self: { ]; description = "2D physics for apecs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "apecs-physics-gloss" = callPackage @@ -36784,7 +34565,6 @@ self: { libraryHaskellDepends = [ apecs apecs-physics base gloss ]; description = "Gloss rendering for apecs-physics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "apecs-stm" = callPackage @@ -36824,7 +34604,6 @@ self: { ]; description = "Server and community browser for the game Tremulous"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "apelsin"; }) {}; @@ -36847,8 +34626,6 @@ self: { ]; description = "Library for easily building REST API wrappers in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "api-field-json-th" = callPackage @@ -36953,7 +34730,6 @@ self: { testHaskellDepends = [ base bytestring ]; description = "JSON-RPC API client for Accumulate blockchain"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "acme-app"; }) {}; @@ -36980,9 +34756,7 @@ self: { testHaskellDepends = [ base bytestring ]; description = "RPC API client for Factom"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "factom-app"; - broken = true; }) {}; "api-rpc-pegnet" = callPackage @@ -37006,7 +34780,6 @@ self: { ]; description = "simple json-rpc client for PegNet"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "api-tools" = callPackage @@ -37062,7 +34835,6 @@ self: { testHaskellDepends = [ base bytestring text ]; description = "Api bindings for Yoti services"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "apiary" = callPackage @@ -37095,7 +34867,6 @@ self: { ]; description = "Simple and type safe web framework that generate web API documentation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "apiary-authenticate" = callPackage @@ -37115,7 +34886,6 @@ self: { ]; description = "authenticate support for apiary web framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "apiary-clientsession" = callPackage @@ -37133,7 +34903,6 @@ self: { ]; description = "clientsession support for apiary web framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "apiary-cookie" = callPackage @@ -37149,7 +34918,6 @@ self: { ]; description = "Cookie support for apiary web framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "apiary-eventsource" = callPackage @@ -37161,7 +34929,6 @@ self: { libraryHaskellDepends = [ apiary base blaze-builder wai-extra ]; description = "eventsource support for apiary web framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "apiary-helics" = callPackage @@ -37181,7 +34948,6 @@ self: { ]; description = "helics support for apiary web framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "apiary-http-client" = callPackage @@ -37198,7 +34964,6 @@ self: { ]; description = "A http client for Apiary"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "apiary-logger" = callPackage @@ -37216,7 +34981,6 @@ self: { ]; description = "fast-logger support for apiary web framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "apiary-memcached" = callPackage @@ -37235,7 +34999,6 @@ self: { ]; description = "memcached client for apiary web framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "apiary-mongoDB" = callPackage @@ -37253,7 +35016,6 @@ self: { ]; description = "mongoDB support for apiary web framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "apiary-persistent" = callPackage @@ -37271,7 +35033,6 @@ self: { ]; description = "persistent support for apiary web framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "apiary-purescript" = callPackage @@ -37291,7 +35052,6 @@ self: { ]; description = "purescript compiler for apiary web framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "apiary-redis" = callPackage @@ -37303,7 +35063,6 @@ self: { libraryHaskellDepends = [ apiary base hedis transformers ]; description = "redis support for apiary web framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "apiary-session" = callPackage @@ -37315,7 +35074,6 @@ self: { libraryHaskellDepends = [ apiary base wai ]; description = "session support for apiary web framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "apiary-websockets" = callPackage @@ -37327,7 +35085,6 @@ self: { libraryHaskellDepends = [ apiary base wai-websockets websockets ]; description = "websockets support for apiary web framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "apioiaf-client" = callPackage @@ -37360,7 +35117,6 @@ self: { ]; description = "A Template Haskell library for generating type safe API calls"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "apns-http2" = callPackage @@ -37389,9 +35145,7 @@ self: { ]; description = "Apple Push Notification service HTTP/2 integration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "apns-http2-example"; - broken = true; }) {}; "apotiki" = callPackage @@ -37421,7 +35175,6 @@ self: { ]; description = "a faster debian repository"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "apotiki"; }) {}; @@ -37437,8 +35190,6 @@ self: { ]; description = "applicative (functional) bidirectional programming beyond composition chains"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "app-settings" = callPackage @@ -37493,9 +35244,7 @@ self: { ]; description = "app container types and tools"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "appc"; - broken = true; }) {}; "appendful" = callPackage @@ -37535,8 +35284,6 @@ self: { ]; testToolDepends = [ sydtest-discover ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "appendmap" = callPackage @@ -37589,8 +35336,6 @@ self: { ]; description = "Applicative functor and monad which collects all your fails"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "applicative-numbers" = callPackage @@ -37618,8 +35363,6 @@ self: { ]; description = "An applicative parser combinator library"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "applicative-quoters" = callPackage @@ -37633,8 +35376,6 @@ self: { libraryHaskellDepends = [ base haskell-src-meta template-haskell ]; description = "Quasiquoters for idiom brackets and an applicative do-notation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "applicative-splice" = callPackage @@ -37650,8 +35391,6 @@ self: { ]; description = "Write applicative programs in direct style (generalizes idiom brackets)"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "apply-refact_0_9_3_0" = callPackage @@ -37771,8 +35510,6 @@ self: { ]; description = "Apply a function to an argument specified by a type level Nat"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "apply-unordered-mono" = callPackage @@ -37829,8 +35566,6 @@ self: { ]; description = "ApproveAPI Haskell Client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "approx" = callPackage @@ -37857,9 +35592,7 @@ self: { ]; description = "Easy-to-use emulation of approximate, ranges and tolerances in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "approx-exe"; - broken = true; }) {}; "approx-rand-test" = callPackage @@ -37890,7 +35623,6 @@ self: { ]; description = "Approximate randomization test"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "approximate" = callPackage @@ -37959,9 +35691,7 @@ self: { ]; description = "Pure Haskell arbitrary length FFT library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "profile-256"; - broken = true; }) {}; "arbb-vm" = callPackage @@ -37978,8 +35708,6 @@ self: { librarySystemDepends = [ arbb_dev ]; description = "FFI binding to the Intel Array Building Blocks (ArBB) virtual machine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {arbb_dev = null;}; "arbor-datadog" = callPackage @@ -38021,8 +35749,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "LRU cache based on STM"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "arbor-monad-counter" = callPackage @@ -38044,8 +35770,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Counter library for submitting metrics to a backend such as datadog"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "arbor-monad-logger" = callPackage @@ -38069,9 +35793,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Simple logging library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "arbor-monad-logger-example"; - broken = true; }) {}; "arbor-monad-metric" = callPackage @@ -38095,8 +35817,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Core metric library for publishing metrics"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "arbor-monad-metric-datadog" = callPackage @@ -38122,7 +35842,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Metric library backend for datadog"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "arbor-postgres" = callPackage @@ -38141,8 +35860,6 @@ self: { ]; description = "Convenience types and functions for postgresql-simple"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "arbtt" = callPackage @@ -38239,8 +35956,6 @@ self: { ]; description = "Distribute hackage packages to archlinux"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "arch-web" = callPackage @@ -38305,7 +36020,6 @@ self: { libraryToolDepends = [ cpphs ]; description = "Common interface using libarchive"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "archive-sig" = callPackage @@ -38352,7 +36066,6 @@ self: { libraryToolDepends = [ cpphs ]; description = "Common interface using the tar-bytestring package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "archiver" = callPackage @@ -38371,9 +36084,7 @@ self: { ]; description = "Archive supplied URLs in WebCite & Internet Archive"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "archiver"; - broken = true; }) {}; "archlinux" = callPackage @@ -38389,8 +36100,6 @@ self: { ]; description = "Support for working with Arch Linux packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "archlinux-web" = callPackage @@ -38416,7 +36125,6 @@ self: { ]; description = "Website maintenance for Arch Linux packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "archnews" = callPackage @@ -38432,9 +36140,7 @@ self: { ]; description = "Convert Arch Linux package updates in RSS to pretty markdown"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "archnews"; - broken = true; }) {}; "arduino-copilot" = callPackage @@ -38453,7 +36159,6 @@ self: { testHaskellDepends = [ base directory process temporary ]; description = "Arduino programming in haskell using the Copilot stream DSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "arena" = callPackage @@ -38479,8 +36184,6 @@ self: { ]; description = "A journaled data store"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "arff" = callPackage @@ -38497,7 +36200,6 @@ self: { ]; description = "Generate Attribute-Relation File Format (ARFF) files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "arghwxhaskell" = callPackage @@ -38511,7 +36213,6 @@ self: { executableHaskellDepends = [ base directory wx ]; description = "An interpreter for the Argh! programming language in wxHaskell"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "argh"; }) {}; @@ -38544,9 +36245,7 @@ self: { ]; description = "Parse and render JSON"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "argo"; - broken = true; }) {}; "argon" = callPackage @@ -38573,7 +36272,6 @@ self: { ]; description = "Measure your code's complexity"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; mainProgram = "argon"; }) {}; @@ -38593,8 +36291,6 @@ self: { ]; description = "Memory-hard password hash and proof-of-work function"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "argparser" = callPackage @@ -38607,8 +36303,6 @@ self: { testHaskellDepends = [ base containers HTF HUnit ]; description = "Command line parsing framework for console applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "arguedit" = callPackage @@ -38626,9 +36320,7 @@ self: { ]; description = "A computer assisted argumentation transcription and editing software"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "ArguEdit.bin"; - broken = true; }) {}; "ariadne" = callPackage @@ -38656,7 +36348,6 @@ self: { ]; description = "Go-to-definition for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "ariadne-server"; }) {}; @@ -38681,9 +36372,7 @@ self: { ]; description = "Watcher and runner for Hspec"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "arion"; - broken = true; }) {}; "arion-compose" = callPackage @@ -38736,7 +36425,6 @@ self: { ]; description = "A practical arithmetic encoding (aka Godel numbering) library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "arithmatic" = callPackage @@ -38812,7 +36500,6 @@ self: { ]; description = "Arithmetic circuits for zkSNARKs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "arithmoi" = callPackage @@ -38902,9 +36589,7 @@ self: { executableHaskellDepends = [ base GLUT mtl OpenGL stm ]; description = "Space-based real time strategy game"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "armada"; - broken = true; }) {}; "armor" = callPackage @@ -38923,8 +36608,6 @@ self: { ]; description = "Prevent serialization backwards compatibility problems using golden tests"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "arpa" = callPackage @@ -38939,9 +36622,7 @@ self: { executableHaskellDepends = [ base ]; description = "Library for reading ARPA n-gram models"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "arpa"; - broken = true; }) {}; "arpack" = callPackage @@ -38965,8 +36646,6 @@ self: { ]; description = "Solve large scale eigenvalue problems"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) arpack;}; "array_0_5_6_0" = callPackage @@ -39041,7 +36720,6 @@ self: { ]; description = "A simple interpreter for arrayForth, the language used on GreenArrays chips"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "array-forth"; }) {}; @@ -39057,8 +36735,6 @@ self: { ]; description = "IsList instances of Array for OverloadedLists extension"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "array-memoize" = callPackage @@ -39087,8 +36763,6 @@ self: { benchmarkHaskellDepends = [ base criterion ghc-prim ]; description = "Extra foreign primops for primitive arrays"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "array-utils" = callPackage @@ -39123,8 +36797,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell bindings to the ArrayFire general-purpose GPU library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {af = null;}; "arraylist" = callPackage @@ -39142,7 +36814,6 @@ self: { ]; description = "Memory-efficient ArrayList implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "arrow-extras" = callPackage @@ -39168,8 +36839,6 @@ self: { ]; description = "Improved arrows"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "arrow-list" = callPackage @@ -39181,8 +36850,6 @@ self: { libraryHaskellDepends = [ base containers fail mtl ]; description = "List arrows for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "arrow-utils" = callPackage @@ -39210,8 +36877,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Utilities for working with ArrowApply instances more naturally"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "arrowp" = callPackage @@ -39225,9 +36890,7 @@ self: { executableHaskellDepends = [ array base containers haskell-src ]; description = "preprocessor translating arrow notation into Haskell 98"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "arrowp"; - broken = true; }) {}; "arrowp-qq" = callPackage @@ -39248,9 +36911,7 @@ self: { executableHaskellDepends = [ base haskell-src-exts NoHoed ]; description = "A preprocessor and quasiquoter for translating arrow notation"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "arrowp"; - broken = true; }) {}; "arrows" = callPackage @@ -39275,8 +36936,6 @@ self: { ]; description = "A simple, arrow-based reactive programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "artifact" = callPackage @@ -39290,8 +36949,6 @@ self: { libraryHaskellDepends = [ aeson base bytestring containers text ]; description = "Basic types and instances for Valve's Artifact Card-set API"; license = lib.licenses.agpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "arx" = callPackage @@ -39362,8 +37019,6 @@ self: { testHaskellDepends = [ base hedgehog jwt mtl text time ]; description = "Atlassian Service Authentication Protocol"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ascetic" = callPackage @@ -39396,7 +37051,6 @@ self: { ]; description = "The ASCII character set and encoding"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "ascii-art-to-unicode" = callPackage @@ -39437,8 +37091,6 @@ self: { testHaskellDepends = [ ascii-case ascii-char base hspec ]; description = "ASCII character without an upper/lower case distinction"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ascii-char" = callPackage @@ -39464,7 +37116,6 @@ self: { libraryHaskellDepends = [ base random-extras random-fu text ]; description = "A collection of ASCII cows. Moo."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ascii-flatten" = callPackage @@ -39479,9 +37130,7 @@ self: { executableHaskellDepends = [ base text ]; description = "Flattens European non-ASCII characaters into ASCII"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "ascii-flatten"; - broken = true; }) {}; "ascii-group" = callPackage @@ -39529,7 +37178,6 @@ self: { ]; description = "ASCII representations of numbers"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "ascii-predicates" = callPackage @@ -39584,8 +37232,6 @@ self: { ]; description = "Compact representation of ASCII strings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ascii-superset" = callPackage @@ -39604,7 +37250,6 @@ self: { ]; description = "Representing ASCII with refined supersets"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "ascii-table" = callPackage @@ -39621,7 +37266,6 @@ self: { ]; description = "ASCII table"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ascii-th" = callPackage @@ -39642,7 +37286,6 @@ self: { ]; description = "Template Haskell support for ASCII"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "ascii-vector-avc" = callPackage @@ -39665,9 +37308,7 @@ self: { ]; description = "Process Ascii Vectors for Advantest 93k"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "SelectSigs"; - broken = true; }) {}; "ascii85-conduit" = callPackage @@ -39680,8 +37321,6 @@ self: { testHaskellDepends = [ base bytestring conduit hspec ]; description = "Conduit for encoding ByteString into Ascii85"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "asciichart" = callPackage @@ -39721,9 +37360,7 @@ self: { ]; description = "Pretty rendering of Ascii diagram into svg or png"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "asciidiagram"; - broken = true; }) {}; "asic" = callPackage @@ -39737,7 +37374,6 @@ self: { executableHaskellDepends = [ asil base bytestring utf8-string ]; description = "Action Script Instrumentation Compiler"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "asic"; }) {}; @@ -39781,9 +37417,7 @@ self: { testToolDepends = [ doctest-discover hspec-discover ]; description = "Library for creating and querying segmented feeds"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "asif"; - broken = true; }) {}; "asil" = callPackage @@ -39802,8 +37436,6 @@ self: { ]; description = "Action Script Instrumentation Library"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "asn" = callPackage @@ -39841,8 +37473,6 @@ self: { ]; description = "ASN.1 BER Encode and Decode"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "asn1-codec" = callPackage @@ -39867,8 +37497,6 @@ self: { ]; description = "Encode and decode ASN.1"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "asn1-data" = callPackage @@ -39885,8 +37513,6 @@ self: { libraryHaskellDepends = [ base bytestring cereal mtl text ]; description = "ASN1 data reader and writer in RAW, BER and DER forms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "asn1-encoding" = callPackage @@ -39991,8 +37617,6 @@ self: { ]; description = "Helpers for Control.Exception.assert"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "assert-failure" = callPackage @@ -40017,8 +37641,6 @@ self: { testHaskellDepends = [ base data-default pretty-diff tasty text ]; description = "A set of assertion for writing more readable tests cases"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "assert4hs-core" = callPackage @@ -40036,8 +37658,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A set of assertion for writing more readable tests cases"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "assert4hs-hspec" = callPackage @@ -40050,7 +37670,6 @@ self: { testHaskellDepends = [ assert4hs-core base hspec HUnit ]; description = "integration point of assert4hs and hspec"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "assert4hs-tasty" = callPackage @@ -40063,7 +37682,6 @@ self: { testHaskellDepends = [ assert4hs-core base tasty ]; description = "Provider for tasty runner to run assert4hs tests"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "assertions" = callPackage @@ -40079,8 +37697,6 @@ self: { testHaskellDepends = [ base interpolate process ]; description = "A simple testing framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "asset-bundle" = callPackage @@ -40109,8 +37725,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Asset map support for the JavaScript broccoli-asset-rev library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "assimp" = callPackage @@ -40124,7 +37738,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "The Assimp asset import library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) assimp;}; "assoc" = callPackage @@ -40150,8 +37763,6 @@ self: { testHaskellDepends = [ base contravariant hedgehog ]; description = "Association lists (lists of tuples)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "assoc-listlike" = callPackage @@ -40166,8 +37777,6 @@ self: { testHaskellDepends = [ base contravariant hedgehog ListLike ]; description = "Association lists (list-like collections of tuples)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "assumpta" = callPackage @@ -40189,8 +37798,6 @@ self: { ]; description = "An SMTP client library"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "assumpta-core" = callPackage @@ -40223,8 +37830,6 @@ self: { testHaskellDepends = [ base ]; description = "A library for constructing AST by using do-notation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ast-monad-json" = callPackage @@ -40239,7 +37844,6 @@ self: { testHaskellDepends = [ ast-monad base hspec text ]; description = "A library for writing JSON"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ast-path" = callPackage @@ -40295,9 +37899,7 @@ self: { ]; description = "an incomplete 2d space game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "astrds"; - broken = true; }) {}; "astro" = callPackage @@ -40315,8 +37917,6 @@ self: { ]; description = "Amateur astronomical computations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "astview" = callPackage @@ -40337,7 +37937,6 @@ self: { ]; description = "A GTK-based abstract syntax tree viewer for custom languages and parsers"; license = lib.licenses.bsdOriginal; - hydraPlatforms = lib.platforms.none; mainProgram = "astview"; }) {}; @@ -40402,8 +38001,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Async combinators"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "async-dejafu" = callPackage @@ -40420,8 +38017,6 @@ self: { ]; description = "Run MonadConc operations asynchronously and wait for their results"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "async-extra" = callPackage @@ -40474,9 +38069,7 @@ self: { executableHaskellDepends = [ async base stm unordered-containers ]; description = "A thread manager for async"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "thread-clean-up-test"; - broken = true; }) {}; "async-pool" = callPackage @@ -40559,8 +38152,6 @@ self: { ]; description = "Provides API for timer based execution of IO actions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "asynchronous-exceptions" = callPackage @@ -40572,8 +38163,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Distinguish between synchronous and asynchronous exceptions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aterm" = callPackage @@ -40587,8 +38176,6 @@ self: { libraryHaskellDepends = [ array base containers ghc-prim ]; description = "serialisation for Haskell values with sharing support"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aterm-utils" = callPackage @@ -40603,7 +38190,6 @@ self: { executableHaskellDepends = [ aterm base transformers wl-pprint ]; description = "Utility functions for working with aterms as generated by Minitermite"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ppaterm"; }) {}; @@ -40659,7 +38245,6 @@ self: { ]; description = "Atlassian Connect snaplet for the Snap Framework and helper code"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "atlassian-connect-descriptor" = callPackage @@ -40681,8 +38266,6 @@ self: { ]; description = "Code that helps you create a valid Atlassian Connect Descriptor"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "atmos" = callPackage @@ -40721,7 +38304,6 @@ self: { libraryHaskellDepends = [ atmos base dimensional-tf ]; description = "dimensional-tf wrapper on atmos package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "atndapi" = callPackage @@ -40746,8 +38328,6 @@ self: { ]; description = "An interface of ATND API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "atom" = callPackage @@ -40761,8 +38341,6 @@ self: { libraryHaskellDepends = [ base bimap containers mtl process syb ]; description = "An EDSL for embedded hard realtime applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "atom-basic" = callPackage @@ -40816,7 +38394,6 @@ self: { libraryHaskellDepends = [ atom base mtl ]; description = "Convenience functions for using Atom with the MSP430 microcontroller family"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "atomic-counter" = callPackage @@ -40861,8 +38438,6 @@ self: { libraryHaskellDepends = [ base stm ]; description = "A typeclass for mutable references that have an atomic modify operation"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "atomic-modify-general" = callPackage @@ -40904,7 +38479,6 @@ self: { ]; description = "An atomic counter implemented using the FFI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "atomic-primops-vector" = callPackage @@ -40917,8 +38491,6 @@ self: { testHaskellDepends = [ base vector ]; description = "Atomic operations on Data.Vector types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "atomic-write" = callPackage @@ -40962,9 +38534,7 @@ self: { ]; description = "A highly dynamic, extremely simple, very fun programming language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "atomo"; - broken = true; }) {}; "atp" = callPackage @@ -40983,7 +38553,6 @@ self: { ]; description = "Interface to automated theorem provers"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "atp-haskell" = callPackage @@ -41001,8 +38570,6 @@ self: { testHaskellDepends = [ base containers HUnit time ]; description = "Translation from Ocaml to Haskell of John Harrison's ATP code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "atrans" = callPackage @@ -41055,9 +38622,7 @@ self: { ]; description = "A source-code formatter for ATS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "atsfmt"; - broken = true; }) {}; "ats-pkg" = callPackage @@ -41092,9 +38657,7 @@ self: { doHaddock = false; description = "A build tool for ATS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "atspkg"; - broken = true; }) {}; "ats-setup" = callPackage @@ -41113,8 +38676,6 @@ self: { ]; description = "ATS scripts for Cabal builds"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ats-storable" = callPackage @@ -41132,8 +38693,6 @@ self: { testSystemDepends = [ storable ]; description = "Marshal ATS types into Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {storable = null;}; "attempt" = callPackage @@ -41145,8 +38704,6 @@ self: { libraryHaskellDepends = [ base failure ]; description = "Concrete data type for handling extensible exceptions as failures. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "attenuation" = callPackage @@ -41194,9 +38751,7 @@ self: { testHaskellDepends = [ base doctest ]; description = "A script I use to run \"attic\" for my backups"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "attic-schedule"; - broken = true; }) {}; "atto-lisp" = callPackage @@ -41220,8 +38775,6 @@ self: { ]; description = "Efficient parsing and serialisation of S-Expressions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "attomail" = callPackage @@ -41244,9 +38797,7 @@ self: { testHaskellDepends = [ base doctest Glob QuickCheck ]; description = "Minimal mail delivery agent (MDA) for local mail with maildir support"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "attomail"; - broken = true; }) {}; "attoparsec_0_13_2_5" = callPackage @@ -41321,8 +38872,6 @@ self: { doHaddock = false; description = "Parsing of aeson's Value with attoparsec"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "attoparsec-aeson_2_2_0_0" = callPackage @@ -41340,7 +38889,6 @@ self: { description = "Parsing of aeson's Value with attoparsec"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "attoparsec-arff" = callPackage @@ -41397,8 +38945,6 @@ self: { libraryHaskellDepends = [ attoparsec base text ]; description = "A parser for CSV files that uses Attoparsec"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "attoparsec-data" = callPackage @@ -41428,7 +38974,6 @@ self: { ]; description = "Pass input from an enumerator to an Attoparsec parser"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "attoparsec-expr" = callPackage @@ -41515,7 +39060,6 @@ self: { ]; description = "An adapter to convert attoparsec Parsers into blazing-fast Iteratees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "attoparsec-parsec" = callPackage @@ -41574,8 +39118,6 @@ self: { libraryHaskellDepends = [ array attoparsec base containers text ]; description = "(deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "attoparsec-text-enumerator" = callPackage @@ -41587,7 +39129,6 @@ self: { libraryHaskellDepends = [ attoparsec-text base enumerator text ]; description = "(deprecated)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "attoparsec-time" = callPackage @@ -41610,8 +39151,6 @@ self: { libraryHaskellDepends = [ attoparsec base transformers ]; description = "Interleaved effects for attoparsec parsers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "attoparsec-uri" = callPackage @@ -41650,8 +39189,6 @@ self: { ]; description = "Variable-length integer decoding for Attoparsec"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "attosplit" = callPackage @@ -41663,8 +39200,6 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring ]; description = "Split a lazy bytestring at boundaries defined by an attoparsec parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "atuin" = callPackage @@ -41681,7 +39216,6 @@ self: { ]; description = "Embedded Turtle language compiler in Haskell, with Epic output"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "atuin"; }) {}; @@ -41727,7 +39261,6 @@ self: { ]; description = "A battery-included audiovisual framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "augeas" = callPackage @@ -41747,9 +39280,7 @@ self: { executablePkgconfigDepends = [ augeas ]; description = "A Haskell FFI wrapper for the Augeas API"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "test-haskell-augeas"; - broken = true; }) {inherit (pkgs) augeas;}; "augur" = callPackage @@ -41768,9 +39299,7 @@ self: { ]; description = "Renaming media collections in a breeze"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "augur"; - broken = true; }) {}; "aur" = callPackage @@ -41791,8 +39320,6 @@ self: { ]; description = "Access metadata from the Arch Linux User Repository"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aur-api" = callPackage @@ -41809,8 +39336,6 @@ self: { ]; description = "ArchLinux AUR json v5 API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aura" = callPackage @@ -41847,7 +39372,6 @@ self: { ]; description = "A secure package manager for Arch Linux and the AUR"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "aura"; }) {}; @@ -41890,8 +39414,6 @@ self: { libraryHaskellDepends = [ base LDAP text transformers ]; description = "LDAP authentication for Haskell web applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "authenticate-oauth" = callPackage @@ -41923,8 +39445,6 @@ self: { libraryHaskellDepends = [ attoparsec base network text ]; description = "Password querying for .authinfo"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "authoring" = callPackage @@ -41943,7 +39463,6 @@ self: { ]; description = "A library for writing papers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "auto" = callPackage @@ -41961,8 +39480,6 @@ self: { ]; description = "Denotative, locally stateful programming DSL & platform"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "auto-lift-classes" = callPackage @@ -42040,7 +39557,6 @@ self: { ]; description = "Autodocodec interpreters for openapi3"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "autodocodec-schema" = callPackage @@ -42075,7 +39591,6 @@ self: { ]; description = "Autodocodec interpreters for Servant Multipart"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "autodocodec-swagger2" = callPackage @@ -42141,8 +39656,6 @@ self: { ]; description = "Generates and displays patterns from next nearest neighbors cellular automata"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "automata" = callPackage @@ -42167,7 +39680,6 @@ self: { ]; description = "automata"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "automitive-cse" = callPackage @@ -42226,8 +39738,6 @@ self: { ]; description = "Library for Nix expression dependency generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "autonix-deps-kf5" = callPackage @@ -42251,7 +39761,6 @@ self: { ]; description = "Generate dependencies for KDE 5 Nix expressions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "kf5-deps"; }) {}; @@ -42264,8 +39773,6 @@ self: { libraryHaskellDepends = [ base Cabal dir-traverse filepath ]; description = "Custom Setup to automate package modules discovery"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "autoproc" = callPackage @@ -42309,9 +39816,7 @@ self: { executableHaskellDepends = [ base JuicyPixels random ]; description = "A simple random avatar icon generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "avatar-generator"; - broken = true; }) {}; "average" = callPackage @@ -42358,7 +39863,6 @@ self: { ]; description = "Server-side implementation of the Avers storage model"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "avers-api" = callPackage @@ -42375,7 +39879,6 @@ self: { ]; description = "Types describing the core and extended Avers APIs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "avers-api-docs" = callPackage @@ -42394,7 +39897,6 @@ self: { ]; description = "Swagger documentation for the Avers API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "avers-server" = callPackage @@ -42415,7 +39917,6 @@ self: { ]; description = "Server implementation of the Avers API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "aviation-cessna172-diagrams" = callPackage @@ -42435,7 +39936,6 @@ self: { ]; description = "Diagrams for the Cessna 172 aircraft in aviation"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "aviation-cessna172-weight-balance" = callPackage @@ -42451,7 +39951,6 @@ self: { ]; description = "Weight and Balance for the Cessna 172 aircraft in aviation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "aviation-navigation" = callPackage @@ -42470,7 +39969,6 @@ self: { ]; description = "Aviation Navigation functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wind-correction"; }) {}; @@ -42483,8 +39981,6 @@ self: { libraryHaskellDepends = [ base lens ]; description = "Units of measurements used in aviation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aviation-weight-balance" = callPackage @@ -42496,7 +39992,6 @@ self: { libraryHaskellDepends = [ aviation-units base lens ]; description = "Weight and Balance structures used in aviation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "avif" = callPackage @@ -42530,8 +40025,6 @@ self: { ]; description = "A compile-time balanced AVL tree"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "avr-shake" = callPackage @@ -42543,8 +40036,6 @@ self: { libraryHaskellDepends = [ base dependent-sum mtl process shake ]; description = "AVR Crosspack actions for shake build systems"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "avro" = callPackage @@ -42617,9 +40108,7 @@ self: { ]; description = "Tool for decoding avro"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "avro-decode"; - broken = true; }) {}; "avwx" = callPackage @@ -42639,9 +40128,7 @@ self: { testHaskellDepends = [ attoparsec base lens pretty-show text ]; description = "Parse aviation weather reports"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "metar"; - broken = true; }) {}; "awesome-prelude" = callPackage @@ -42653,8 +40140,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A prelude which I can be happy with. Based on base-prelude."; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "awesomium" = callPackage @@ -42670,7 +40155,6 @@ self: { ]; description = "High-level Awesomium bindings"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "awesomium-glut" = callPackage @@ -42682,7 +40166,6 @@ self: { libraryHaskellDepends = [ awesomium awesomium-raw base GLUT ]; description = "Utilities for using Awesomium with GLUT"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "awesomium-raw" = callPackage @@ -42696,8 +40179,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Low-level Awesomium bindings"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {awesomium = null;}; "aws" = callPackage @@ -42796,8 +40277,6 @@ self: { ]; description = "For signing AWS CloudFront HTTP URL requests"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aws-configuration-tools" = callPackage @@ -42817,7 +40296,6 @@ self: { ]; description = "Configuration types, parsers & renderers for AWS services"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "aws-dynamodb-conduit" = callPackage @@ -42835,7 +40313,6 @@ self: { ]; description = "Conduit-based interface for AWS DynamoDB"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "aws-dynamodb-streams" = callPackage @@ -42858,7 +40335,6 @@ self: { ]; description = "Haskell bindings for Amazon DynamoDB Streams"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "aws-easy" = callPackage @@ -42882,7 +40358,6 @@ self: { ]; description = "Helper function and types for working with amazonka"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "aws-easy-demo"; }) {}; @@ -42913,8 +40388,6 @@ self: { ]; description = "AWS EC2/VPC, ELB and CloudWatch client library for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aws-ec2-knownhosts" = callPackage @@ -42937,8 +40410,6 @@ self: { ]; description = "Capture and manage AWS EC2 known_host pubkeys"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aws-elastic-transcoder" = callPackage @@ -42961,7 +40432,6 @@ self: { ]; description = "Haskell suite for the Elastic Transcoder service"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "aws-general" = callPackage @@ -42987,8 +40457,6 @@ self: { ]; description = "Bindings for Amazon Web Services (AWS) General Reference"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aws-kinesis" = callPackage @@ -43014,7 +40482,6 @@ self: { ]; description = "Bindings for Amazon Kinesis"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "aws-kinesis-client" = callPackage @@ -43049,7 +40516,6 @@ self: { ]; description = "A producer & consumer client library for AWS Kinesis"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "kinesis-cli"; }) {}; @@ -43079,7 +40545,6 @@ self: { ]; description = "Reshard AWS Kinesis streams in response to Cloud Watch metrics"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "kinesis-reshard"; }) {}; @@ -43100,7 +40565,6 @@ self: { ]; description = "Haskell bindings for AWS Lambda"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "aws-lambda-haskell-runtime" = callPackage @@ -43121,8 +40585,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Haskell runtime for AWS Lambda"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aws-lambda-haskell-runtime-wai" = callPackage @@ -43146,7 +40608,6 @@ self: { ]; description = "Run wai applications on AWS Lambda"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "aws-lambda-runtime" = callPackage @@ -43171,9 +40632,7 @@ self: { executableHaskellDepends = [ aeson base lens lens-aeson text ]; description = "Haskell on AWS Lambda Runtime API"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "example-lambda"; - broken = true; }) {}; "aws-larpi" = callPackage @@ -43189,8 +40648,6 @@ self: { ]; description = "Package Haskell functions for easy use on AWS Lambda"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aws-mfa-credentials" = callPackage @@ -43212,7 +40669,6 @@ self: { ]; description = "Keep your AWS credentials file up to date with MFA-carrying credentials"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "aws-mfa-credentials"; }) {}; @@ -43239,9 +40695,7 @@ self: { ]; description = "Performance Tests for the Haskell bindings for Amazon Web Services (AWS)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "dynamodb-performance"; - broken = true; }) {}; "aws-route53" = callPackage @@ -43259,8 +40713,6 @@ self: { ]; description = "Amazon Route53 DNS service plugin for the aws package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aws-sdk" = callPackage @@ -43289,7 +40741,6 @@ self: { ]; description = "AWS SDK for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "aws-sdk-text-converter" = callPackage @@ -43311,8 +40762,6 @@ self: { ]; description = "The text converter for aws-sdk"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "aws-sdk-xml-unordered" = callPackage @@ -43333,7 +40782,6 @@ self: { ]; description = "The xml parser for aws-sdk package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "aws-secrets" = callPackage @@ -43375,7 +40823,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Wrapper over Amazonka's SES"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "aws-sign4" = callPackage @@ -43399,7 +40846,6 @@ self: { ]; description = "Amazon Web Services (AWS) Signature v4 HTTP request signer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "aws-simple" = callPackage @@ -43417,7 +40863,6 @@ self: { ]; description = "Dead simple bindings to commonly used AWS Services"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "aws-sns" = callPackage @@ -43441,7 +40886,6 @@ self: { ]; description = "Bindings for AWS SNS Version 2013-03-31"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "aws-sns-verify" = callPackage @@ -43617,9 +41061,7 @@ self: { testToolDepends = [ hpack tasty-discover ]; description = "The Axel programming language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "axel"; - broken = true; }) {}; "axiom" = callPackage @@ -43636,7 +41078,6 @@ self: { ]; description = "Web EDSL for running in browsers and server nodes using transient"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "axiomatic-classes" = callPackage @@ -43676,7 +41117,6 @@ self: { testHaskellDepends = [ base hspec shelly text urbit-hob ]; description = "Interact with Azimuth from Haskell"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "azubi" = callPackage @@ -43695,8 +41135,6 @@ self: { ]; description = "A simple DevOps tool which will never \"reach\" enterprice level"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "azure-acs" = callPackage @@ -43714,8 +41152,6 @@ self: { ]; description = "Windows Azure ACS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "azure-email" = callPackage @@ -43734,8 +41170,6 @@ self: { ]; description = "send email with microsoft azure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "azure-functions-worker" = callPackage @@ -43763,7 +41197,6 @@ self: { testHaskellDepends = [ base ]; description = "Azure Functions Worker"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "azure-service-api" = callPackage @@ -43782,7 +41215,6 @@ self: { ]; description = "Haskell bindings for the Microsoft Azure Service Management API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "azure-servicebus" = callPackage @@ -43800,7 +41232,6 @@ self: { ]; description = "Haskell wrapper over Microsoft Azure ServiceBus REST API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "azurify" = callPackage @@ -43830,9 +41261,7 @@ self: { ]; description = "A simple library for accessing Azure blob storage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "azurify"; - broken = true; }) {}; "b-tree" = callPackage @@ -43858,7 +41287,6 @@ self: { benchmarkHaskellDepends = [ base criterion pipes ]; description = "Immutable disk-based B* trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "b9" = callPackage @@ -43900,9 +41328,7 @@ self: { ]; description = "A tool and library for building virtual machine images"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "b9c"; - broken = true; }) {}; "babl" = callPackage @@ -43916,8 +41342,6 @@ self: { libraryPkgconfigDepends = [ babl ]; description = "Haskell bindings to BABL library"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) babl;}; "babylon" = callPackage @@ -43934,7 +41358,6 @@ self: { ]; description = "An implementation of a simple 2-player board game"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "babylon"; }) {}; @@ -43968,7 +41391,6 @@ self: { ]; description = "A client library to access Backblaze B2 cloud storage in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "backblaze-b2-hs"; }) {}; @@ -43987,7 +41409,6 @@ self: { ]; description = "Rotates backdrops for X11 displays using Imagemagic"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "backdropper_consol"; }) {}; @@ -44010,8 +41431,6 @@ self: { ]; description = "Heterogeneous automatic differentation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "backstop" = callPackage @@ -44035,9 +41454,7 @@ self: { ]; description = "Backstop a target directory by source directories"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "backstop"; - broken = true; }) {}; "backtracking" = callPackage @@ -44069,8 +41486,6 @@ self: { ]; description = "A monad transformer for backtracking exceptions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "backward-state" = callPackage @@ -44082,8 +41497,6 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "A state monad that runs the state in reverse through the computation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bacteria" = callPackage @@ -44109,8 +41522,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A simple stable bag"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bake" = callPackage @@ -44144,9 +41555,7 @@ self: { ]; description = "Continuous integration system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bake-test"; - broken = true; }) {}; "balkon" = callPackage @@ -44171,7 +41580,6 @@ self: { doHaddock = false; description = "Text layout engine built on top of HarfBuzz"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "ballast" = callPackage @@ -44195,7 +41603,6 @@ self: { ]; description = "Shipwire API client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bamboo" = callPackage @@ -44216,7 +41623,6 @@ self: { ]; description = "A blog engine on Hack"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "bamboo-launcher" = callPackage @@ -44237,7 +41643,6 @@ self: { ]; description = "bamboo-launcher"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "bamboo"; }) {}; @@ -44256,7 +41661,6 @@ self: { ]; description = "A highlight middleware"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "bamboo-plugin-photo" = callPackage @@ -44275,7 +41679,6 @@ self: { ]; description = "A photo album middleware"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bamboo-theme-blueprint" = callPackage @@ -44294,7 +41697,6 @@ self: { ]; description = "bamboo blueprint theme"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bamboo-theme-mini-html5" = callPackage @@ -44317,7 +41719,6 @@ self: { ]; description = "bamboo mini html5 theme"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "bamse" = callPackage @@ -44335,7 +41736,6 @@ self: { ]; description = "A Windows Installer (MSI) generator framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hsDotnetGen"; }) {}; @@ -44350,7 +41750,6 @@ self: { executableHaskellDepends = [ base cmdargs samtools ]; description = "A program to extract various information from BAM alignmnet files"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "bam"; }) {}; @@ -44409,8 +41808,6 @@ self: { ]; description = "Generalized word blacklister"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "barbies" = callPackage @@ -44454,8 +41851,6 @@ self: { testHaskellDepends = [ barbies base ]; description = "Create strippable HKD via TH"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "barbly" = callPackage @@ -44492,9 +41887,7 @@ self: { executableHaskellDepends = [ base cmdargs csv diagrams filepath ]; description = "Creating Bar Charts in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "barchart"; - broken = true; }) {}; "barcodes-code128" = callPackage @@ -44506,8 +41899,6 @@ self: { libraryHaskellDepends = [ base bytestring HPDF ]; description = "Generate Code 128 barcodes as PDFs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "barecheck" = callPackage @@ -44519,8 +41910,6 @@ self: { libraryHaskellDepends = [ base containers QuickCheck text time ]; description = "QuickCheck implementations for common types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "barley" = callPackage @@ -44541,7 +41930,6 @@ self: { ]; description = "A web based environment for learning and tinkering with Haskell"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "barley"; }) {}; @@ -44554,8 +41942,6 @@ self: { libraryHaskellDepends = [ base containers filepath glib gtk ]; description = "Declarative Gtk GUI library"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "barrier" = callPackage @@ -44580,8 +41966,6 @@ self: { ]; description = "Shields.io style badge generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "barrier-monad" = callPackage @@ -44593,8 +41977,6 @@ self: { libraryHaskellDepends = [ base comonad mtl transformers ]; description = "Implementation of barrier monad, can use custom front/back type"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "base_4_18_0_0" = callPackage @@ -44677,8 +42059,6 @@ self: { doHaddock = false; description = "Helps migrating projects to base-compat(-batteries)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "base-encoding" = callPackage @@ -44695,8 +42075,6 @@ self: { ]; description = "RFC4648 Binary-to-text encodings (e.g. base64)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "base-feature-macros" = callPackage @@ -44709,8 +42087,6 @@ self: { doHaddock = false; description = "Semantic CPP feature macros for base"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "base-generics" = callPackage @@ -44722,8 +42098,6 @@ self: { libraryHaskellDepends = [ base ]; description = "This library provides some instances for extra GHC.Generic typeclass such as Int8, Word16 and some unboxed types as well."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "base-io-access" = callPackage @@ -44735,8 +42109,6 @@ self: { libraryHaskellDepends = [ base ]; description = "The IO functions included in base delimited into small, composable classes"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "base-noprelude" = callPackage @@ -44884,8 +42256,6 @@ self: { ]; description = "Optics for the Base16 library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "base32" = callPackage @@ -44924,7 +42294,6 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion ]; description = "Fast base32 and base32hex codec for ByteStrings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "base32-lens" = callPackage @@ -44939,8 +42308,6 @@ self: { ]; description = "Optics for the Base32 library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "base32-z-bytestring" = callPackage @@ -45013,8 +42380,6 @@ self: { ]; description = "Parsing and serialization for Base58 addresses (Bitcoin and Ripple)"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "base58string" = callPackage @@ -45049,8 +42414,6 @@ self: { ]; description = "Base62 encoding and decoding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "base64" = callPackage @@ -45103,8 +42466,6 @@ self: { ]; description = "Base64 encoding of byte sequences"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "base64-bytestring" = callPackage @@ -45168,8 +42529,6 @@ self: { ]; description = "Base64-encode and decode streams of bytes. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "base64-lens" = callPackage @@ -45186,8 +42545,6 @@ self: { ]; description = "Optics for the Base64 library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "base64-string" = callPackage @@ -45232,8 +42589,6 @@ self: { libraryHaskellDepends = [ base ]; description = "alternative prelude"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "basement_0_0_14" = callPackage @@ -45272,8 +42627,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Foundation scrap box of array & string"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "basen" = callPackage @@ -45291,8 +42644,6 @@ self: { ]; testToolDepends = [ tasty-discover ]; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "basen-bytestring" = callPackage @@ -45331,7 +42682,6 @@ self: { ]; description = "Baserock Definitions Schema"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "baserock"; }) {}; @@ -45344,8 +42694,6 @@ self: { libraryHaskellDepends = [ base network pureMD5 utf8-string ]; description = "A BaseX client for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bash" = callPackage @@ -45377,7 +42725,6 @@ self: { ]; description = "Lifting values from base types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "basic-cpuid" = callPackage @@ -45429,8 +42776,6 @@ self: { ]; description = "Basic examples and functions for generics-sop"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "baskell" = callPackage @@ -45447,9 +42792,7 @@ self: { ]; description = "An interpreter for a small functional language"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "baskell"; - broken = true; }) {}; "batch" = callPackage @@ -45519,7 +42862,6 @@ self: { ]; description = "Batch processing toolset for Linux / Unix"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "batchd-core" = callPackage @@ -45541,7 +42883,6 @@ self: { ]; description = "Core modules of batchd, to use in batchd extensions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "batchd-docker" = callPackage @@ -45557,7 +42898,6 @@ self: { ]; description = "docker containers host controller for batchd"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "batchd-libvirt" = callPackage @@ -45574,7 +42914,6 @@ self: { ]; description = "host controller for batchd, which controls virtual machines via libvirt library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "batching" = callPackage @@ -45594,7 +42933,6 @@ self: { ]; description = "An Applicative Functor deferring actions to run in a batch later"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "battlenet" = callPackage @@ -45608,8 +42946,6 @@ self: { ]; description = "API client for Battle.Net"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "battlenet-yesod" = callPackage @@ -45623,7 +42959,6 @@ self: { ]; description = "Yesod integration for the battlenet package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "battleplace" = callPackage @@ -45641,8 +42976,6 @@ self: { ]; description = "Core definitions for BattlePlace.io service"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "battleplace-api" = callPackage @@ -45656,7 +42989,6 @@ self: { ]; description = "Public API definitions of BattlePlace.io service"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "battleship-combinatorics" = callPackage @@ -45714,7 +43046,6 @@ self: { ]; description = "A web-based implementation of battleships including an AI opponent"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bayes-stack" = callPackage @@ -45734,7 +43065,6 @@ self: { ]; description = "Framework for inferring generative probabilistic models with Gibbs sampling"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bazel-coverage-report-renderer" = callPackage @@ -45752,9 +43082,7 @@ self: { ]; description = "HTML Coverage Reports for Rules_Haskell"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "bazel-coverage-report-renderer"; - broken = true; }) {}; "bazel-runfiles" = callPackage @@ -45802,7 +43130,6 @@ self: { ]; description = "Tools for reading Big Binary Indexed files, e.g., bigBed, bigWig"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bcp47" = callPackage @@ -45822,7 +43149,6 @@ self: { ]; description = "Language tags as specified by BCP 47"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "bcp47-orphans" = callPackage @@ -45844,7 +43170,6 @@ self: { ]; description = "BCP47 orphan instances"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "bcrypt" = callPackage @@ -45903,7 +43228,6 @@ self: { ]; description = "Tools for managing a content store of software packages"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) ostree;}; "bdcs-api" = callPackage @@ -45941,7 +43265,6 @@ self: { description = "BDCS API Server"; license = lib.licenses.gpl3Only; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; mainProgram = "bdcs-api-server"; }) {inherit (pkgs) libgit2-glib;}; @@ -45960,8 +43283,6 @@ self: { ]; description = "Behavior-Driven Development DSL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bdelta" = callPackage @@ -45973,8 +43294,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Simple, fast binary diff/patch"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bdo" = callPackage @@ -45990,9 +43309,7 @@ self: { executableHaskellDepends = [ aeson base network text url ]; description = "Update CSS in the browser without reloading the page"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bdo"; - broken = true; }) {}; "beam" = callPackage @@ -46012,8 +43329,6 @@ self: { ]; description = "A type-safe SQL mapper for Haskell that doesn't use Template Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "beam-automigrate" = callPackage @@ -46054,7 +43369,6 @@ self: { doHaddock = false; description = "DB migration library for beam, targeting Postgres"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "beam-core" = callPackage @@ -46113,8 +43427,6 @@ self: { ]; description = "Connection layer between beam and MySQL/MariaDB"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "beam-newtype-field" = callPackage @@ -46130,8 +43442,6 @@ self: { ]; description = "A newtype for wrapping newtypes into beam schemas"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "beam-postgres" = callPackage @@ -46204,7 +43514,6 @@ self: { ]; description = "Template Haskell utilities for beam"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "beamable" = callPackage @@ -46229,8 +43538,6 @@ self: { ]; description = "Generic serializer/deserializer with compact representation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bearriver" = callPackage @@ -46259,7 +43566,6 @@ self: { executableHaskellDepends = [ array base haskell98 mtl ]; description = "A pretty-printer for higher-order logic"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "beautifHOL"; }) {}; @@ -46288,9 +43594,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Implementation of the Bech32 cryptocurrency address format (BIP 0173)"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "bech32"; - broken = true; }) {}; "bech32_1_1_4" = callPackage @@ -46321,7 +43625,6 @@ self: { license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; mainProgram = "bech32"; - broken = true; }) {}; "bech32-th" = callPackage @@ -46337,7 +43640,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Template Haskell extensions to the Bech32 library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "bed-and-breakfast" = callPackage @@ -46354,8 +43656,6 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Efficient Matrix and Vector operations in 100% Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "beeminder-api" = callPackage @@ -46379,7 +43679,6 @@ self: { ]; description = "Bindings to the beeminder.com JSON API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bein" = callPackage @@ -46403,7 +43702,6 @@ self: { ]; description = "Bein is a provenance and workflow management system for bioinformatics"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "belgian-structured-communication" = callPackage @@ -46450,7 +43748,6 @@ self: { ]; description = "HTTP client DSL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "bench" = callPackage @@ -46488,8 +43785,6 @@ self: { testHaskellDepends = [ base split text ]; description = "Plot and compare benchmarks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bench-show" = callPackage @@ -46513,9 +43808,7 @@ self: { testHaskellDepends = [ base split text ]; description = "Show, plot and compare benchmark results"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bench-show"; - broken = true; }) {}; "benchmark-function" = callPackage @@ -46584,8 +43877,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Bencodex reader/writer for Haskell"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bencoding" = callPackage @@ -46627,8 +43918,6 @@ self: { ]; description = "Lenses for bencoded data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "benri-hspec" = callPackage @@ -46663,8 +43952,6 @@ self: { librarySystemDepends = [ db ]; description = "Pretty BerkeleyDB v4 binding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) db;}; "berp" = callPackage @@ -46690,9 +43977,7 @@ self: { ]; description = "An implementation of Python 3"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "berp"; - broken = true; }) {}; "bert" = callPackage @@ -46715,8 +44000,6 @@ self: { ]; description = "BERT implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "besout" = callPackage @@ -46728,8 +44011,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Extended GCD of polynomials over F_p[x]"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bet" = callPackage @@ -46756,8 +44037,6 @@ self: { ]; description = "Betfair API bindings. Bet on sports on betting exchanges."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "betacode" = callPackage @@ -46774,8 +44053,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck smallcheck ]; description = "A codec for beta code (http://en.wikipedia.org/wiki/Beta_Code)."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "betris" = callPackage @@ -46798,9 +44075,7 @@ self: { ]; description = "A horizontal version of tetris for braille users"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "betris"; - broken = true; }) {}; "between" = callPackage @@ -46840,7 +44115,6 @@ self: { ]; description = "Bidirectionalization for Free! (POPL'09)"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "bff-mono" = callPackage @@ -46873,7 +44147,6 @@ self: { ]; description = "Implementation of the BGAPI serial protocol"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "bglibtest"; }) {}; @@ -46886,8 +44159,6 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring time ]; description = "Parse BgMax-files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bgzf" = callPackage @@ -46903,8 +44174,6 @@ self: { ]; description = "Blocked GZip"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bhoogle" = callPackage @@ -46947,9 +44216,7 @@ self: { executableToolDepends = [ alex happy ]; description = "A database based bibliography manager for BibTeX"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "bibdb"; - broken = true; }) {}; "bibtex" = callPackage @@ -46986,8 +44253,6 @@ self: { ]; description = "The unicode bidirectional algorithm via ICU"; license = "(BSD-2-Clause OR Apache-2.0)"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) icu;}; "bidirectional" = callPackage @@ -47000,8 +44265,6 @@ self: { testHaskellDepends = [ base hedgehog mtl ]; description = "Simple bidirectional serialization and deserialization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bidirectional-instances" = callPackage @@ -47014,8 +44277,6 @@ self: { testHaskellDepends = [ base mtl transformers ]; description = "Make instance constraints bidirectional"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bidirectionalization-combined" = callPackage @@ -47037,7 +44298,6 @@ self: { ]; description = "Prototype Implementation of Combining Syntactic and Semantic Bidirectionalization (ICFP'10)"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "bidispec" = callPackage @@ -47049,8 +44309,6 @@ self: { libraryHaskellDepends = [ base bytestring mtl ]; description = "Specification of generators and parsers"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bidispec-extras" = callPackage @@ -47062,8 +44320,6 @@ self: { libraryHaskellDepends = [ base bytestring dataenc mtl ]; description = "Extra helper functions for bidirectional specifications"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bifunctor" = callPackage @@ -47077,7 +44333,6 @@ self: { libraryHaskellDepends = [ base category ]; description = "Bifunctors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bifunctor-classes-compat" = callPackage @@ -47171,7 +44426,6 @@ self: { ]; description = "A parser for the Billboard chord dataset"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "billboard-parser"; }) {}; @@ -47190,7 +44444,6 @@ self: { ]; description = "Leksah library"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "billeksah-main" = callPackage @@ -47209,7 +44462,6 @@ self: { ]; description = "Leksah plugin base"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "billeksah-main"; }) {}; @@ -47252,7 +44504,6 @@ self: { ]; description = "Leksah library"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "billeksah-services" = callPackage @@ -47268,8 +44519,6 @@ self: { ]; description = "Leksah library"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bimap" = callPackage @@ -47415,8 +44664,6 @@ self: { ]; description = "Bit parsing/writing on top of binary"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "binary-communicator" = callPackage @@ -47428,8 +44675,6 @@ self: { libraryHaskellDepends = [ base binary bytestring mtl ]; description = "Flexible way to ease transmission of binary data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "binary-conduit" = callPackage @@ -47460,8 +44705,6 @@ self: { libraryHaskellDepends = [ base binary ghc-prim ]; description = "Automatic deriving of Binary using GHC.Generics"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "binary-enum" = callPackage @@ -47498,8 +44741,6 @@ self: { ]; description = "An alternate with strong-typed errors for `Data.Binary.Get` monad from `binary` package."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "binary-file" = callPackage @@ -47515,7 +44756,6 @@ self: { ]; description = "read/write binary file"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "binary-generic" = callPackage @@ -47569,8 +44809,6 @@ self: { libraryHaskellDepends = [ array base ]; description = "Binary Indexed Trees (a.k.a. Fenwick Trees)."; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "binary-instances" = callPackage @@ -47713,8 +44951,6 @@ self: { ]; description = "Extends binary with parsec/attoparsec style parsing combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "binary-protocol" = callPackage @@ -47726,8 +44962,6 @@ self: { libraryHaskellDepends = [ base binary bytestring mtl ]; description = "Monad to ease implementing a binary network protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "binary-protocol-zmq" = callPackage @@ -47743,7 +44977,6 @@ self: { ]; description = "Monad to ease implementing a binary network protocol over ZeroMQ"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "binary-search" = callPackage @@ -47832,7 +45065,6 @@ self: { ]; description = "data serialization/deserialization io-streams library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "binary-strict" = callPackage @@ -47845,8 +45077,6 @@ self: { testHaskellDepends = [ base bytestring ]; description = "Binary deserialisation using strict ByteStrings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "binary-tagged" = callPackage @@ -47895,8 +45125,6 @@ self: { ]; benchmarkHaskellDepends = [ base criterion random ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "binary-typed" = callPackage @@ -47918,8 +45146,6 @@ self: { ]; description = "Type-safe binary serialization"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "binary-varint" = callPackage @@ -47972,8 +45198,6 @@ self: { ]; description = "Data marshaling library that uses type level equations to optimize buffering"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "binding-core" = callPackage @@ -47988,8 +45212,6 @@ self: { testHaskellDepends = [ base HTF HUnit QuickCheck random ]; description = "Data Binding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "binding-gtk" = callPackage @@ -48004,7 +45226,6 @@ self: { testHaskellDepends = [ base binding-core directory gtk ]; description = "Data Binding in Gtk2Hs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "binding-wx" = callPackage @@ -48019,7 +45240,6 @@ self: { testHaskellDepends = [ base binding-core directory wx ]; description = "Data Binding in WxHaskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bindings" = callPackage @@ -48054,8 +45274,6 @@ self: { libraryPkgconfigDepends = [ esound ]; description = "Low level bindings to EsounD (ESD; Enlightened Sound Daemon)"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {esound = null;}; "bindings-GLFW" = callPackage @@ -48094,8 +45312,6 @@ self: { librarySystemDepends = [ K8055D ]; description = "Bindings to Velleman K8055 dll"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {K8055D = null;}; "bindings-apr" = callPackage @@ -48108,8 +45324,6 @@ self: { libraryPkgconfigDepends = [ apr ]; description = "Low level bindings to Apache Portable Runtime (APR)"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) apr;}; "bindings-apr-util" = callPackage @@ -48122,7 +45336,6 @@ self: { libraryPkgconfigDepends = [ apr-util ]; description = "Low level bindings to Apache Portable Runtime Utility (APR Utility)"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {apr-util = null;}; "bindings-audiofile" = callPackage @@ -48150,8 +45363,6 @@ self: { libraryToolDepends = [ alex happy ]; description = "Bindings for libbfd, a library of the GNU `binutils'"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {bfd = null; opcodes = null;}; "bindings-cctools" = callPackage @@ -48164,8 +45375,6 @@ self: { librarySystemDepends = [ dttools ]; description = "Bindings to the CCTools WorkQueue C library"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {dttools = null;}; "bindings-codec2" = callPackage @@ -48197,8 +45406,6 @@ self: { libraryHaskellDepends = [ base ]; description = "This package is obsolete. Look for bindings-DSL instead."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bindings-dc1394" = callPackage @@ -48212,8 +45419,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Library for using firewire (iidc-1394) cameras"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {dc1394 = null;}; "bindings-directfb" = callPackage @@ -48240,8 +45445,6 @@ self: { libraryPkgconfigDepends = [ eskit ]; description = "Bindings to ESKit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {eskit = null;}; "bindings-fann" = callPackage @@ -48254,8 +45457,6 @@ self: { libraryPkgconfigDepends = [ fann ]; description = "Low level bindings to FANN neural network library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {fann = null;}; "bindings-fluidsynth" = callPackage @@ -48268,8 +45469,6 @@ self: { libraryPkgconfigDepends = [ fluidsynth ]; description = "Haskell FFI bindings for fluidsynth software synthesizer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) fluidsynth;}; "bindings-friso" = callPackage @@ -48282,8 +45481,6 @@ self: { librarySystemDepends = [ friso ]; description = "Low level bindings for friso"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {friso = null;}; "bindings-glib" = callPackage @@ -48332,8 +45529,6 @@ self: { libraryPkgconfigDepends = [ gsl ]; description = "Low level bindings to GNU GSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) gsl;}; "bindings-gts" = callPackage @@ -48363,9 +45558,7 @@ self: { executableHaskellDepends = [ base ]; description = "Hamlib bindings for Haskell"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hamlib-hs-demo"; - broken = true; }) {inherit (pkgs) hamlib;}; "bindings-hdf5" = callPackage @@ -48377,8 +45570,6 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "Project bindings-* raw interface to HDF5 library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bindings-levmar" = callPackage @@ -48427,8 +45618,6 @@ self: { libraryPkgconfigDepends = [ libftdi libusb ]; description = "Low level bindings to libftdi"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libftdi; libusb = null;}; "bindings-libg15" = callPackage @@ -48441,8 +45630,6 @@ self: { librarySystemDepends = [ g15 ]; description = "Bindings to libg15"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {g15 = null;}; "bindings-libpci" = callPackage @@ -48454,8 +45641,6 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "Low level bindings to libpci"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bindings-librrd" = callPackage @@ -48468,8 +45653,6 @@ self: { libraryPkgconfigDepends = [ librrd ]; description = "Low level bindings to RRDtool"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {librrd = null;}; "bindings-libstemmer" = callPackage @@ -48486,8 +45669,6 @@ self: { librarySystemDepends = [ stemmer ]; description = "Binding for libstemmer with low level binding"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {stemmer = null;}; "bindings-libusb" = callPackage @@ -48500,8 +45681,6 @@ self: { libraryPkgconfigDepends = [ libusb ]; description = "Low level bindings to libusb"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {libusb = null;}; "bindings-libv4l2" = callPackage @@ -48514,8 +45693,6 @@ self: { librarySystemDepends = [ v4l2 ]; description = "bindings to libv4l2 for Linux"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {v4l2 = null;}; "bindings-libzip" = callPackage @@ -48539,7 +45716,6 @@ self: { libraryHaskellDepends = [ base bindings-DSL ioctl ]; description = "bindings to Video For Linux Two (v4l2) kernel interfaces"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bindings-lxc" = callPackage @@ -48576,8 +45752,6 @@ self: { libraryPkgconfigDepends = [ monetdb-mapi ]; description = "Low-level bindings for the MonetDB API (mapi)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {monetdb-mapi = null;}; "bindings-mpdecimal" = callPackage @@ -48589,8 +45763,6 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "bindings to mpdecimal library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bindings-nettle" = callPackage @@ -48666,7 +45838,6 @@ self: { libraryHaskellDepends = [ base bindings-DSL ioctl ]; description = "PPDev bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bindings-saga-cmd" = callPackage @@ -48713,8 +45884,6 @@ self: { librarySystemDepends = [ scsynth ]; description = "Low-level bindings to the SuperCollider synthesis engine library"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {scsynth = null;}; "bindings-sipc" = callPackage @@ -48730,8 +45899,6 @@ self: { executableHaskellDepends = [ base ]; description = "Low level bindings to SIPC"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {sipc = null;}; "bindings-sophia" = callPackage @@ -48790,8 +45957,6 @@ self: { testHaskellDepends = [ base ]; description = "Bindings against the wlc library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) wlc;}; "bindings-yices" = callPackage @@ -48818,7 +45983,6 @@ self: { libraryHaskellDepends = [ base binary bytestring rank1dynamic ]; description = "A variation of Data.Dynamic.Dynamic with a Binary instance"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "binembed" = callPackage @@ -48837,9 +46001,7 @@ self: { ]; description = "Embed data into object files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "binembed"; - broken = true; }) {}; "binembed-example" = callPackage @@ -48856,7 +46018,6 @@ self: { ]; description = "Example project using binembed to embed data in object files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "binembed-example"; }) {}; @@ -48897,9 +46058,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Encode precise binary representations directly in types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.raehik ]; - broken = true; }) {}; "bins" = callPackage @@ -48935,9 +46094,7 @@ self: { ]; description = "binary files splitter and merger"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "binsm"; - broken = true; }) {}; "bio" = callPackage @@ -48958,8 +46115,6 @@ self: { executableHaskellDepends = [ base bytestring random ]; description = "A bioinformatics library"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bio-sequence" = callPackage @@ -48976,8 +46131,6 @@ self: { testHaskellDepends = [ base bytestring hspec QuickCheck ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bioace" = callPackage @@ -48991,7 +46144,6 @@ self: { ]; description = "Library for reading ace assembly files"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "bioalign" = callPackage @@ -49003,7 +46155,6 @@ self: { libraryHaskellDepends = [ base biocore bytestring ]; description = "Data structures and helper functions for calculating alignments"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "biocore" = callPackage @@ -49017,8 +46168,6 @@ self: { libraryHaskellDepends = [ base bytestring stringable ]; description = "A bioinformatics library"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "biofasta" = callPackage @@ -49030,7 +46179,6 @@ self: { libraryHaskellDepends = [ base biocore bytestring ]; description = "Library for reading fasta sequence files"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "biofastq" = callPackage @@ -49042,7 +46190,6 @@ self: { libraryHaskellDepends = [ base biocore bytestring ]; description = "A library for reading FASTQ files"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "biohazard" = callPackage @@ -49065,8 +46212,6 @@ self: { ]; description = "bioinformatics support library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bioinformatics-toolkit" = callPackage @@ -49103,7 +46248,6 @@ self: { ]; description = "A collection of bioinformatics tools"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "biophd" = callPackage @@ -49119,7 +46263,6 @@ self: { ]; description = "Library for reading phd sequence files"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "biopsl" = callPackage @@ -49136,7 +46279,6 @@ self: { executableHaskellDepends = [ cmdargs unordered-containers ]; description = "Library and executables for working with PSL files"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "biosff" = callPackage @@ -49153,7 +46295,6 @@ self: { executableHaskellDepends = [ array base cmdargs mtl ]; description = "Library and executables for working with SFF files"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; }) {}; "biostockholm" = callPackage @@ -49176,7 +46317,6 @@ self: { ]; description = "Parsing and rendering of Stockholm files (used by Pfam, Rfam and Infernal)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bip32" = callPackage @@ -49199,7 +46339,6 @@ self: { ]; description = "BIP-0032: Hierarchical Deterministic Wallets for Bitcoin and other cryptocurrencies"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "birch-beer" = callPackage @@ -49234,7 +46373,6 @@ self: { ]; description = "Plot a colorful tree"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "birch-beer"; }) {}; @@ -49256,7 +46394,6 @@ self: { ]; description = "A simple, sinatra-inspired web framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bird"; }) {}; @@ -49270,8 +46407,6 @@ self: { testHaskellDepends = [ base ]; description = "Birds of Paradise"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bisc" = callPackage @@ -49292,7 +46427,6 @@ self: { ]; description = "A small tool that clears cookies (and more)"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "bisc"; }) {}; @@ -49321,8 +46455,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Library support for the Biscuit security token"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "biscuit-servant" = callPackage @@ -49343,7 +46475,6 @@ self: { ]; description = "Servant support for the Biscuit security token"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bisect-binary" = callPackage @@ -49364,9 +46495,7 @@ self: { ]; description = "Determine relevant parts of binary data"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "bisect-binary"; - broken = true; }) {}; "bishbosh" = callPackage @@ -49396,8 +46525,6 @@ self: { ]; description = "Plays chess"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bit-array" = callPackage @@ -49410,7 +46537,6 @@ self: { testHaskellDepends = [ base directory doctest filepath ]; description = "A bit array (aka bitset, bitmap, bit vector) API for numeric types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "bit-protocol" = callPackage @@ -49450,8 +46576,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Lazy, infinite, compact stream of Bool with O(1) indexing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bit-vector" = callPackage @@ -49502,7 +46626,6 @@ self: { ]; description = "Bitcoin address generation and rendering. Parsing coming soon."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "bitcoin-api" = callPackage @@ -49527,7 +46650,6 @@ self: { ]; description = "Provides access to the RPC API of Bitcoin Core"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "bitcoin-api-extra" = callPackage @@ -49550,7 +46672,6 @@ self: { ]; description = "Higher level constructs on top of the bitcoin-api package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "bitcoin-block" = callPackage @@ -49571,7 +46692,6 @@ self: { ]; description = "Utility functions for manipulating bitcoin blocks"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "bitcoin-compact-filters" = callPackage @@ -49629,8 +46749,6 @@ self: { ]; description = "Partial implementation of the Bitcoin protocol (as of 2013)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bitcoin-keys" = callPackage @@ -49648,8 +46766,6 @@ self: { ]; description = "Bitcoin keys"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bitcoin-payment-channel" = callPackage @@ -49715,8 +46831,6 @@ self: { ]; description = "Library to communicate with the Satoshi Bitcoin daemon"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bitcoin-script" = callPackage @@ -49734,8 +46848,6 @@ self: { testHaskellDepends = [ base bytestring hspec ]; description = "Compilation, manipulation and decompilation of Bitcoin scripts"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bitcoin-scripting" = callPackage @@ -49777,7 +46889,6 @@ self: { ]; description = "Utility functions for manipulating bitcoin transactions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "bitcoin-types" = callPackage @@ -49797,7 +46908,6 @@ self: { ]; description = "Provides consistent low-level types used commonly among Bitcoin implementations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "bitcoind-regtest" = callPackage @@ -49827,7 +46937,6 @@ self: { ]; description = "A library for working with bitcoin-core regtest networks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bitcoind-rpc-explorer"; }) {}; @@ -49850,8 +46959,6 @@ self: { ]; description = "A streamlined interface to bitcoin core using Haskoin types and Servant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bitfield" = callPackage @@ -49869,8 +46976,6 @@ self: { testToolDepends = [ sydtest-discover ]; description = "Generic and easy to use haskell bitfields"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bitly-cli" = callPackage @@ -49886,7 +46991,6 @@ self: { ]; description = "A command line tool to access bit.ly URL shortener."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bitly"; }) {}; @@ -49926,7 +47030,6 @@ self: { ]; description = "Bitmap library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bits" = callPackage @@ -49953,8 +47056,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Atomic bit operations on memory locations for low-level synchronization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bits-bytestring" = callPackage @@ -50004,8 +47105,6 @@ self: { ]; description = "Bitstream support for Conduit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bits-extra" = callPackage @@ -50042,8 +47141,6 @@ self: { librarySystemDepends = [ gcc_s ]; description = "Efficient high-level bit operations not found in Data.Bits"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {gcc_s = null;}; "bits-show" = callPackage @@ -50078,8 +47175,6 @@ self: { benchmarkSystemDepends = [ gmp ]; description = "A space-efficient set data structure"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) gmp;}; "bitset-word8" = callPackage @@ -50122,9 +47217,7 @@ self: { executablePkgconfigDepends = [ gtk2 pango ]; description = "Proof-of-concept tool for writing using binary choices"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "bitspeak"; - broken = true; }) {inherit (pkgs) gtk2; inherit (pkgs) pango;}; "bitstream" = callPackage @@ -50143,8 +47236,6 @@ self: { ]; description = "Fast, packed, strict and lazy bit streams with stream fusion"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bitstring" = callPackage @@ -50188,7 +47279,6 @@ self: { ]; description = "Bittorrent protocol implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bittrex" = callPackage @@ -50318,8 +47408,6 @@ self: { ]; description = "A Haskell library for working with the BitX bitcoin exchange"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bizzlelude" = callPackage @@ -50335,8 +47423,6 @@ self: { ]; description = "A lousy Prelude replacement by a lousy dude"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bizzlelude-js" = callPackage @@ -50348,8 +47434,6 @@ self: { libraryHaskellDepends = [ base containers text ]; description = "A lousy Prelude replacement by a lousy dude"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bk-tree" = callPackage @@ -50384,9 +47468,7 @@ self: { ]; description = "Backup utility for backing up to cloud storage services (S3 only right now)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bkr"; - broken = true; }) {}; "bktrees" = callPackage @@ -50412,7 +47494,6 @@ self: { executableHaskellDepends = [ base haskell98 unix ]; description = "a stupid cron"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bla"; }) {}; @@ -50481,9 +47562,7 @@ self: { ]; description = "Shake frontend for Agda blogging"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "blagda"; - broken = true; }) {}; "blake2" = callPackage @@ -50547,8 +47626,6 @@ self: { libraryHaskellDepends = [ base bytestring text vector ]; description = "The BLAKE SHA-3 candidate hashes, in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "blakesum-demo" = callPackage @@ -50566,7 +47643,6 @@ self: { ]; description = "The BLAKE SHA-3 candidate hashes, in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "blakesum"; }) {}; @@ -50622,8 +47698,6 @@ self: { libraryHaskellDepends = [ base ieee QuickCheck storable-complex ]; description = "Bindings to the BLAS library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "blas-carray" = callPackage @@ -50701,7 +47775,6 @@ self: { ]; description = "Library for reading Blast XML output"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "blatex" = callPackage @@ -50719,7 +47792,6 @@ self: { ]; description = "Blog in LaTeX"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "blatex"; }) {}; @@ -50793,7 +47865,6 @@ self: { ]; description = "Enumeratees for the incremental conversion of builders to bytestrings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "blaze-colonnade" = callPackage @@ -50812,7 +47883,6 @@ self: { testHaskellDepends = [ base colonnade doctest ]; description = "blaze-html backend for colonnade"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "blaze-from-html" = callPackage @@ -50867,7 +47937,6 @@ self: { ]; description = "Some contributions to add handy things to blaze html"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "blaze-html-hexpat" = callPackage @@ -50879,8 +47948,6 @@ self: { libraryHaskellDepends = [ base blaze-html bytestring hexpat text ]; description = "A hexpat backend for blaze-html"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "blaze-html-truncate" = callPackage @@ -50896,8 +47963,6 @@ self: { ]; description = "A truncator for blaze-html"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "blaze-htmx" = callPackage @@ -50931,8 +47996,6 @@ self: { ]; description = "tiny library for encoding json"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "blaze-markup" = callPackage @@ -50965,8 +48028,6 @@ self: { ]; description = "create svg by Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "blaze-svg" = callPackage @@ -51015,8 +48076,6 @@ self: { ]; description = "Fast rendering of common datatypes (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "blazeMarker" = callPackage @@ -51045,8 +48104,6 @@ self: { ]; description = "A true monad (transformer) version of the blaze-markup and blaze-html libraries"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ble" = callPackage @@ -51078,7 +48135,6 @@ self: { ]; description = "Bluetooth Low Energy (BLE) peripherals"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "blindpass" = callPackage @@ -51094,9 +48150,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "Password entry tool"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "blindpass"; - broken = true; }) {}; "blink1" = callPackage @@ -51115,7 +48169,6 @@ self: { ]; description = "Control library for blink(1) LED from ThingM"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "blink1"; }) {}; @@ -51135,7 +48188,6 @@ self: { ]; description = "Python to bytecode compiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "blip"; }) {}; @@ -51152,8 +48204,6 @@ self: { ]; description = "Support code for Blip"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "blizzard-html" = callPackage @@ -51188,8 +48238,6 @@ self: { ]; description = "Generic blockchain implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "blockfrost-api" = callPackage @@ -51238,7 +48286,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "blockfrost.io basic client"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.sorki ]; }) {}; @@ -51261,7 +48308,6 @@ self: { ]; description = "blockfrost.io common client definitions / instances"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "blockfrost-pretty" = callPackage @@ -51300,9 +48346,7 @@ self: { testHaskellDepends = [ base ]; description = "Blockhash perceptual image hash algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "blockhash"; - broken = true; }) {}; "blocking-transactions" = callPackage @@ -51335,7 +48379,6 @@ self: { executableHaskellDepends = [ base ConfigFile haskell98 old-time ]; description = "Very simple static blog software"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "blogination"; }) {}; @@ -51387,7 +48430,6 @@ self: { ]; description = "Adds convenient Amazon ElasticSearch Service authentication to Bloodhound"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bloomfilter" = callPackage @@ -51426,8 +48468,6 @@ self: { benchmarkHaskellDepends = [ base criterion random ]; description = "Distributed bloom filters on Redis (using the Hedis client)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "blosum" = callPackage @@ -51449,9 +48489,7 @@ self: { ]; description = "BLOSUM generator"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "blosum"; - broken = true; }) {}; "bloxorz" = callPackage @@ -51466,7 +48504,6 @@ self: { executableHaskellDepends = [ base GLFW OpenGL ]; description = "OpenGL Logic Game"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "bloxorz"; }) {}; @@ -51485,7 +48522,6 @@ self: { ]; description = "The blubber client; connects to the blubber server"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "blubber"; }) {}; @@ -51508,9 +48544,7 @@ self: { ]; description = "The blubber server, serves blubber clients"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "blubber-server"; - broken = true; }) {}; "blucontrol" = callPackage @@ -51564,9 +48598,7 @@ self: { ]; description = "Configurable blue light filter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bludigon"; - broken = true; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXrandr;}; "bluemix-sdk" = callPackage @@ -51604,7 +48636,6 @@ self: { executablePkgconfigDepends = [ gtk2 ]; description = "full-featured tiling for the GNOME desktop environment"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gtk2;}; "bluetileutils" = callPackage @@ -51618,9 +48649,7 @@ self: { executableHaskellDepends = [ base gtk ]; description = "Utilities for Bluetile"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bluetilemockwin-obsolete"; - broken = true; }) {}; "blunk-hask-tests" = callPackage @@ -51636,9 +48665,7 @@ self: { executableHaskellDepends = [ base ]; description = "spam"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "test1"; - broken = true; }) {}; "blunt" = callPackage @@ -51660,7 +48687,6 @@ self: { executableHaskellDepends = [ base ]; description = "Convert between pointfree and pointful expressions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "blunt"; }) {}; @@ -51740,7 +48766,6 @@ self: { ]; description = "Library for communication with the Bosch BNO055 orientation sensor"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "board-games" = callPackage @@ -51775,7 +48800,6 @@ self: { ]; description = "Three games for inclusion in a web server"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "board-games"; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -51825,9 +48849,7 @@ self: { ]; description = "Copy a directory tree, making zero-size sparse copies of big files"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "bogocopy"; - broken = true; }) {}; "bogre-banana" = callPackage @@ -51845,7 +48867,6 @@ self: { ]; executableHaskellDepends = [ base hogre hois random ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bogre-banana-snake"; }) {}; @@ -51875,7 +48896,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Generate Haskell boilerplate"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "boilerplate"; }) {}; @@ -51900,8 +48920,6 @@ self: { ]; description = "Bolt driver for Neo4j"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "boltzmann-brain" = callPackage @@ -51927,9 +48945,7 @@ self: { ]; description = "Analytic sampler compiler for combinatorial systems"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bb"; - broken = true; }) {}; "boltzmann-samplers" = callPackage @@ -51980,7 +48996,6 @@ self: { ]; description = "Bond schema compiler and code generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "gbc"; }) {}; @@ -52010,7 +49025,6 @@ self: { ]; description = "Runtime support for BOND serialization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bond-haskell-compiler" = callPackage @@ -52032,7 +49046,6 @@ self: { testHaskellDepends = [ base ]; description = "Bond code generator for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hbc"; }) {}; @@ -52051,8 +49064,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Simple Parser Combinators"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bookhound-format" = callPackage @@ -52064,7 +49075,6 @@ self: { libraryHaskellDepends = [ base bookhound containers text time ]; description = "Parsers for usual data formats"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "bookkeeper" = callPackage @@ -52092,7 +49102,6 @@ self: { ]; description = "Anonymous records and overloaded labels"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "readme"; }) {}; @@ -52105,7 +49114,6 @@ self: { libraryHaskellDepends = [ base bookkeeper type-level-sets ]; description = "Permissions for bookkeeper records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bookkeeping" = callPackage @@ -52122,8 +49130,6 @@ self: { testHaskellDepends = [ base doctest Glob ]; description = "A module for bookkeeping by double entry"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bookkeeping-jp" = callPackage @@ -52140,7 +49146,6 @@ self: { testHaskellDepends = [ base doctest Glob ]; description = "Helper functions for Japanese bookkeeping"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "bool-extras" = callPackage @@ -52178,8 +49183,6 @@ self: { ]; description = "Logical combinatory operations dealing with datatypes representing booleans by their constructors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "boolean-list" = callPackage @@ -52207,8 +49210,6 @@ self: { ]; description = "Boolean normal form: NNF, DNF & CNF"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "boolector" = callPackage @@ -52240,8 +49241,6 @@ self: { libraryHaskellDepends = [ base extra parsec ]; description = "Boolean expressions with various representations and search queries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bools" = callPackage @@ -52300,8 +49299,6 @@ self: { ]; description = "Chronokinetic stream sources and incremental consumers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "boomerang" = callPackage @@ -52336,7 +49333,6 @@ self: { ]; description = "Boomshine clone"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "boomslang"; }) {}; @@ -52429,7 +49425,6 @@ self: { executableHaskellDepends = [ base time ]; description = "Factory for quickly building an application"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "demo-app"; }) {}; @@ -52448,7 +49443,6 @@ self: { ]; description = "Factory for quickly building a microservice"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "boots-web" = callPackage @@ -52468,7 +49462,6 @@ self: { ]; description = "Factory for quickly building a web application"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "bootstrap-types" = callPackage @@ -52523,7 +49516,6 @@ self: { ]; description = "Metering System for OpenStack metrics provided by Vaultaire"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "boring" = callPackage @@ -52565,9 +49557,7 @@ self: { executableHaskellDepends = [ base ]; description = "A boring window switcher"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "boring-window-switcher"; - broken = true; }) {}; "borsh" = callPackage @@ -52592,8 +49582,6 @@ self: { ]; description = "Implementation of BORSH serialisation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bot" = callPackage @@ -52605,8 +49593,6 @@ self: { libraryHaskellDepends = [ arrows base Stream ]; description = "bots for functional reactive programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "both" = callPackage @@ -52618,7 +49604,6 @@ self: { libraryHaskellDepends = [ base semigroups zero ]; description = "Like Maybe, but with a different Monoid instance"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "botpp" = callPackage @@ -52632,9 +49617,7 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Build tool for Lambdabot"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "BotPP"; - broken = true; }) {}; "bottom" = callPackage @@ -52659,9 +49642,7 @@ self: { ]; description = "Encoding and decoding for the Bottom spec"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "bottom"; - broken = true; }) {}; "bound" = callPackage @@ -52729,8 +49710,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "A lightweight implementation of 'bound'"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bounded-array" = callPackage @@ -52744,8 +49723,6 @@ self: { libraryHaskellDepends = [ array base ]; description = "Arrays with a value for every index"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bounded-queue" = callPackage @@ -52838,7 +49815,6 @@ self: { ]; description = "audio-visual pseudo-physical simulation of colliding circles"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "bowntz"; }) {}; @@ -52857,8 +49833,6 @@ self: { ]; description = "A profunctor effect system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "box-csv" = callPackage @@ -52870,7 +49844,6 @@ self: { libraryHaskellDepends = [ attoparsec base box text time ]; description = "CSV parsing in a box"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "box-socket" = callPackage @@ -52890,7 +49863,6 @@ self: { executableHaskellDepends = [ base optparse-generic ]; description = "Box websockets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "box-socket"; }) {}; @@ -52903,8 +49875,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "A hack to use GHC.Prim primitives in GHCi"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "boxes" = callPackage @@ -52945,8 +49915,6 @@ self: { testHaskellDepends = [ base ]; description = "A minimal typed unix path library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "braid" = callPackage @@ -52969,9 +49937,7 @@ self: { ]; description = "Types and functions to work with braids and Khovanov homology"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "KappaView"; - broken = true; }) {}; "brain-bleep" = callPackage @@ -52985,9 +49951,7 @@ self: { executableHaskellDepends = [ array base containers parsec ]; description = "primitive imperative language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "brain-bleep"; - broken = true; }) {}; "brainfuck" = callPackage @@ -53078,9 +50042,7 @@ self: { benchmarkHaskellDepends = [ base criterion file-embed text ]; description = "Featureful sound change applier"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "brassica"; - broken = true; }) {}; "break" = callPackage @@ -53108,7 +50070,6 @@ self: { executableHaskellDepends = [ base haskgame mtl SDL ]; description = "A simple Breakout game implementation"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "breakout"; }) {}; @@ -53165,9 +50126,7 @@ self: { executableHaskellDepends = [ array base parallel random SDL ]; description = "A Haskell implementation of the Brian's Brain cellular automaton"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "brians-brain"; - broken = true; }) {}; "brick_0_70_1" = callPackage @@ -53237,8 +50196,6 @@ self: { ]; description = "A drop-down menu widget for brick"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "brick-filetree" = callPackage @@ -53258,8 +50215,6 @@ self: { free vector vty ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "brick-list-search" = callPackage @@ -53273,8 +50228,6 @@ self: { libraryHaskellDepends = [ base brick containers microlens vector ]; description = "Search forward or backward for certain kinds of items in brick list"; license = lib.licenses.bsd0; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "brick-list-skip" = callPackage @@ -53288,8 +50241,6 @@ self: { libraryHaskellDepends = [ base brick containers microlens vector ]; description = "Skip a certain kind of items when moving in brick list"; license = lib.licenses.bsd0; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "brick-panes" = callPackage @@ -53310,9 +50261,7 @@ self: { testHaskellDepends = [ base ]; description = "Panes library for Brick providing composition and isolation for TUI apps"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; mainProgram = "mywork-example"; - broken = true; }) {}; "brick-skylighting_0_3" = callPackage @@ -53365,8 +50314,6 @@ self: { ]; description = "Tabular list widgets for brick"; license = lib.licenses.bsd0; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bricks" = callPackage @@ -53390,7 +50337,6 @@ self: { ]; description = "Bricks is a lazy functional language based on Nix"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "bricks-internal" = callPackage @@ -53409,8 +50355,6 @@ self: { ]; description = "..."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bricks-internal-test" = callPackage @@ -53426,7 +50370,6 @@ self: { ]; description = "..."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "bricks-parsec" = callPackage @@ -53447,7 +50390,6 @@ self: { ]; description = "..."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "bricks-rendering" = callPackage @@ -53468,7 +50410,6 @@ self: { ]; description = "..."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "bricks-syntax" = callPackage @@ -53489,7 +50430,6 @@ self: { ]; description = "..."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "brillig" = callPackage @@ -53510,9 +50450,7 @@ self: { ]; description = "Simple part of speech tagger"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "brillig"; - broken = true; }) {}; "brittany_0_13_1_2" = callPackage @@ -53547,7 +50485,6 @@ self: { license = lib.licenses.agpl3Only; hydraPlatforms = lib.platforms.none; mainProgram = "brittany"; - broken = true; }) {}; "brittany" = callPackage @@ -53583,9 +50520,7 @@ self: { ]; description = "Haskell source code formatter"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "brittany"; - broken = true; }) {}; "broadcast-chan" = callPackage @@ -53622,7 +50557,6 @@ self: { ]; description = "Conduit-based parallel streaming code for broadcast-chan"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "broadcast-chan-pipes" = callPackage @@ -53641,7 +50575,6 @@ self: { ]; description = "Pipes-based parallel streaming code for broadcast-chan"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "broadcast-chan-tests" = callPackage @@ -53666,8 +50599,6 @@ self: { ]; description = "Helpers for generating tests for broadcast-chan"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "broccoli" = callPackage @@ -53679,8 +50610,6 @@ self: { libraryHaskellDepends = [ base containers stm time ]; description = "Small library for interactive functional programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "brok" = callPackage @@ -53708,9 +50637,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Finds broken links in text files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "brok"; - broken = true; }) {}; "broker-haskell" = callPackage @@ -53724,8 +50651,6 @@ self: { testHaskellDepends = [ base bytestring hspec ]; description = "Haskell bindings to Broker, Bro's messaging library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {broker = null;}; "bronyradiogermany-common" = callPackage @@ -53743,8 +50668,6 @@ self: { ]; description = "Common types and URIs for the BronyRadioGermany API bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bronyradiogermany-streaming" = callPackage @@ -53765,7 +50688,6 @@ self: { ]; description = "Streaming interface for the BronyRadioGermany API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "brotli" = callPackage @@ -53805,8 +50727,6 @@ self: { ]; description = "Conduit interface for Brotli (RFC7932) compression"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "brotli-streams" = callPackage @@ -53843,8 +50763,6 @@ self: { ]; description = "A reader and interface for the Browser Capabilities Project data files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bsb-http-chunked" = callPackage @@ -53879,8 +50797,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Access to the BSD sysctl(3) interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bson" = callPackage @@ -53913,8 +50829,6 @@ self: { libraryHaskellDepends = [ base bson ghc-prim text ]; description = "Generic functionality for BSON"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bson-generics" = callPackage @@ -53926,8 +50840,6 @@ self: { libraryHaskellDepends = [ base bson ghc-prim ]; description = "Generics functionality for BSON"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bson-lens" = callPackage @@ -53952,8 +50864,6 @@ self: { ]; description = "Mapping between BSON and algebraic data types"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bspack" = callPackage @@ -53986,8 +50896,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "A simple unassuming parser for bytestring"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "btc-lsp" = callPackage @@ -54038,7 +50946,6 @@ self: { ]; description = "Lightning service provider"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "btree" = callPackage @@ -54058,7 +50965,6 @@ self: { benchmarkHaskellDepends = [ base clock ghc-prim hashable ]; description = "B-Tree on Unmanaged Heap"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "btree-concurrent" = callPackage @@ -54081,8 +50987,6 @@ self: { ]; description = "A backend agnostic, concurrent BTree"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "btrfs" = callPackage @@ -54097,8 +51001,6 @@ self: { description = "Bindings to the btrfs API"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "buchhaltung" = callPackage @@ -54137,7 +51039,6 @@ self: { ]; description = "Automates most of your plain text accounting data entry in ledger format"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "buchhaltung"; }) {}; @@ -54160,8 +51061,6 @@ self: { benchmarkHaskellDepends = [ bug criterion rerebase ]; description = "Simple mutable low-level buffer for IO"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "buffer-builder" = callPackage @@ -54212,8 +51111,6 @@ self: { ]; description = "Serialize Aeson values with Data.BufferBuilder"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "buffer-pipe" = callPackage @@ -54258,9 +51155,7 @@ self: { doHaddock = false; description = "Assembles many Dockerfiles in one"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "buffet"; - broken = true; }) {}; "buffon" = callPackage @@ -54277,8 +51172,6 @@ self: { ]; description = "An implementation of Buffon machines"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "buffon-machines" = callPackage @@ -54292,8 +51185,6 @@ self: { ]; description = "Perfect simulation of discrete random variables"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bug" = callPackage @@ -54426,8 +51317,6 @@ self: { ]; description = "A Haskell interface to the Bugzilla native REST API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bugzilla-redhat" = callPackage @@ -54468,8 +51357,6 @@ self: { testHaskellDepends = [ base containers extra mtl transformers ]; description = "Build systems a la carte"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "build-env" = callPackage @@ -54505,8 +51392,6 @@ self: { libraryHaskellDepends = [ base bytestring containers dlist text ]; description = "Typeclass for builders of linear data structures"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "buildbox" = callPackage @@ -54523,8 +51408,6 @@ self: { ]; description = "Rehackable components for writing buildbots and test harnesses"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "buildbox-tools" = callPackage @@ -54538,7 +51421,6 @@ self: { executableHaskellDepends = [ base buildbox parseargs ]; description = "Tools for working with buildbox benchmark result files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "buildbox-results"; }) {}; @@ -54554,8 +51436,6 @@ self: { ]; description = "bounded ByteArray builder type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "buildwrapper" = callPackage @@ -54593,7 +51473,6 @@ self: { ]; description = "A library and an executable that provide an easy API for a Haskell IDE"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "buildwrapper"; }) {}; @@ -54608,8 +51487,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "A wrapper for the Bullet physics engine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) bullet;}; "bulletproofs" = callPackage @@ -54647,7 +51524,6 @@ self: { ]; description = "Bulletproofs are short zero-knowledge proofs without a trusted setup"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "bulletproofs-example"; }) {}; @@ -54673,7 +51549,6 @@ self: { ]; description = "Reflex infused with bulma (css)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "bumper" = callPackage @@ -54693,9 +51568,7 @@ self: { ]; description = "Automatically bump package versions, also transitively"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bumper"; - broken = true; }) {}; "bunz" = callPackage @@ -54711,9 +51584,7 @@ self: { testHaskellDepends = [ base doctest hspec ]; description = "CLI tool to beautify JSON string"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "bunz"; - broken = true; }) {}; "burnt-explorer" = callPackage @@ -54731,7 +51602,6 @@ self: { ]; description = "List OP_RETURN cryptocurrency transaction outputs"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "burnt-explorer"; }) {}; @@ -54766,8 +51636,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Burst detection algorithms"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bus-pirate" = callPackage @@ -54784,8 +51652,6 @@ self: { ]; description = "Haskell interface to the Bus Pirate binary interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "buster" = callPackage @@ -54802,8 +51668,6 @@ self: { ]; description = "Almost but not quite entirely unlike FRP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "buster-gtk" = callPackage @@ -54820,7 +51684,6 @@ self: { ]; description = "Almost but not quite entirely unlike FRP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "buster-network" = callPackage @@ -54837,7 +51700,6 @@ self: { ]; description = "Almost but not quite entirely unlike FRP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bustle" = callPackage @@ -54917,8 +51779,6 @@ self: { ]; description = "Monad Transformer for Asyncronous Message Passing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "butterflies" = callPackage @@ -54940,7 +51800,6 @@ self: { ]; description = "butterfly tilings"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "butterflies-flat"; }) {}; @@ -54972,9 +51831,7 @@ self: { ]; description = "Client library for buttplug.io"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "buttplug-example"; - broken = true; }) {}; "bv" = callPackage @@ -55028,8 +51885,6 @@ self: { doHaddock = false; description = "Efficient little-endian bit vector library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bv-sized" = callPackage @@ -55051,7 +51906,6 @@ self: { ]; description = "a bitvector datatype that is parameterized by the vector width"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bv-sized-lens" = callPackage @@ -55063,7 +51917,6 @@ self: { libraryHaskellDepends = [ base bv-sized lens parameterized-utils ]; description = "Well-typed lenses for bv-sized bitvectors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "by-other-names" = callPackage @@ -55080,8 +51933,6 @@ self: { testHaskellDepends = [ aeson base doctest tasty tasty-hunit ]; description = "Give aliases to record fields"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "byline" = callPackage @@ -55105,8 +51956,6 @@ self: { ]; description = "Library for creating command-line interfaces (colors, menus, etc.)"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytable" = callPackage @@ -55118,7 +51967,6 @@ self: { libraryHaskellDepends = [ base bytestring word24 ]; description = "data from/to ByteString"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "byte-count-reader" = callPackage @@ -55173,8 +52021,6 @@ self: { libraryHaskellDepends = [ base bytestring primitive text ]; description = "Parsing of bytearray-based data"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytebuild" = callPackage @@ -55247,7 +52093,6 @@ self: { ]; description = "Universal hashing of bytes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "bytehash_0_1_1_0" = callPackage @@ -55291,7 +52136,6 @@ self: { description = "Fast logging"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; }) {}; "byteorder" = callPackage @@ -55337,7 +52181,6 @@ self: { description = "Patch byte-representable data in a bytestream"; license = lib.licenses.mit; platforms = lib.platforms.x86; - hydraPlatforms = lib.platforms.none; mainProgram = "bytepatch"; maintainers = [ lib.maintainers.raehik ]; }) {}; @@ -55453,8 +52296,6 @@ self: { ]; description = "Aeson instances for ByteString, using base 64 encoding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytestring-arbitrary" = callPackage @@ -55472,8 +52313,6 @@ self: { ]; description = "Arbitrary instances for ByteStrings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytestring-builder" = callPackage @@ -55502,7 +52341,6 @@ self: { ]; description = "Variable-length integer encoding"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "bytestring-class" = callPackage @@ -55516,8 +52354,6 @@ self: { libraryHaskellDepends = [ base bytestring utf8-string ]; description = "Classes for automatic conversion to and from strict and lazy bytestrings. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytestring-conversion" = callPackage @@ -55540,8 +52376,6 @@ self: { ]; description = "Type-classes to convert values to and from ByteString"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytestring-csv" = callPackage @@ -55553,8 +52387,6 @@ self: { libraryHaskellDepends = [ array base bytestring dlist ]; description = "Parse CSV formatted data efficiently"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytestring-delta" = callPackage @@ -55566,8 +52398,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Simple, fast binary diff/patch"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytestring-encoding" = callPackage @@ -55636,8 +52466,6 @@ self: { ]; description = "ByteString-backed Handles"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytestring-lexing" = callPackage @@ -55693,8 +52521,6 @@ self: { ]; description = "Plain byte strings ('ForeignPtr'-less 'ByteString's)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytestring-progress" = callPackage @@ -55734,7 +52560,6 @@ self: { ]; description = "fast ByteString to number converting library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "bytestring-rematch" = callPackage @@ -55748,8 +52573,6 @@ self: { doHaddock = false; description = "Rematch support for ByteString"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytestring-short" = callPackage @@ -55779,8 +52602,6 @@ self: { ]; description = "Efficient conversion of values into readable byte strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytestring-strict-builder" = callPackage @@ -55811,8 +52632,6 @@ self: { libraryHaskellDepends = [ base bytestring pipes primitive ]; description = "break bytestrings up into substrings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytestring-time" = callPackage @@ -55829,8 +52648,6 @@ self: { ]; description = "Library for Time parsing from ByteString"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytestring-to-vector" = callPackage @@ -55905,8 +52722,6 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion QuickCheck ]; description = "Bytestrings with typenat lengths"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytestringparser" = callPackage @@ -55918,8 +52733,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Combinator parsing with Data.ByteString.Lazy"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytestringparser-temporary" = callPackage @@ -55931,8 +52744,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Combinator parsing with Data.ByteString.Lazy"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "bytestringreadp" = callPackage @@ -55944,8 +52755,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "A ReadP style parser library for ByteString"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "byteunits" = callPackage @@ -56009,8 +52818,6 @@ self: { librarySystemDepends = [ bzip2 ]; description = "Compression and decompression in the bzip2 format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) bzip2;}; "bzlib-conduit" = callPackage @@ -56064,8 +52871,6 @@ self: { ]; description = "Streaming compression/decompression via conduits"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) bzip2;}; "c-dsl" = callPackage @@ -56077,8 +52882,6 @@ self: { libraryHaskellDepends = [ base language-c ]; description = "A higher level DSL on top of language-c"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "c-enum" = callPackage @@ -56102,8 +52905,6 @@ self: { libraryHaskellDepends = [ base ]; description = "C IO"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "c-mosquitto" = callPackage @@ -56124,9 +52925,7 @@ self: { testHaskellDepends = [ base ]; description = "Simpe mosquito MQTT binding able to work with the Amazons IoT"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "c-mosquitto"; - broken = true; }) {inherit (pkgs) mosquitto;}; "c-storable" = callPackage @@ -56198,8 +52997,6 @@ self: { libraryHaskellDepends = [ base network unix ]; description = "C10k server library using prefork"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "c14n" = callPackage @@ -56235,9 +53032,7 @@ self: { ]; description = "Translate C code into ATS"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "c2ats"; - broken = true; }) {}; "c2hs" = callPackage @@ -56316,7 +53111,6 @@ self: { libraryHaskellDepends = [ alg base ]; description = "Cellular Automata"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ca-patterns" = callPackage @@ -56331,8 +53125,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Manipulate patterns in cellular automata, create and parse RLE files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ca-province-codes" = callPackage @@ -56370,9 +53162,7 @@ self: { ]; description = "A maintenance command of Haskell cabal packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cab"; - broken = true; }) {}; "cabal" = callPackage @@ -56417,9 +53207,7 @@ self: { ]; description = "Check how up-to-date your .cabal dependencies are."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-audit"; - broken = true; }) {}; "cabal-auto-expose" = callPackage @@ -56431,8 +53219,6 @@ self: { libraryHaskellDepends = [ base Cabal directory extra filepath ]; description = "Build time library that autodetects exposed modules"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cabal-bounds" = callPackage @@ -56457,7 +53243,6 @@ self: { ]; description = "A command line program for managing the dependency versions in a cabal file"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-bounds"; }) {}; @@ -56486,8 +53271,6 @@ self: { ]; description = "Bundling C/C++ projects in Cabal package made easy"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cabal-cache" = callPackage @@ -56528,7 +53311,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "CI Assistant for Haskell projects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-cache"; }) {}; @@ -56552,7 +53334,6 @@ self: { testHaskellDepends = [ base filepath tasty tasty-golden ]; description = "A command line program for extracting compiler arguments from a cabal file"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-cargs"; }) {}; @@ -56588,9 +53369,7 @@ self: { executableHaskellDepends = [ base Cabal optparse-applicative ]; description = "Repeatable builds for cabalized Haskell projects"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-constraints"; - broken = true; }) {}; "cabal-db" = callPackage @@ -56612,9 +53391,7 @@ self: { ]; description = "query tools for the local cabal database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-db"; - broken = true; }) {}; "cabal-debian" = callPackage @@ -56639,9 +53416,7 @@ self: { executableHaskellDepends = [ base Cabal debian lens mtl pretty ]; description = "Create a Debianization for a Cabal package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-debian"; - broken = true; }) {}; "cabal-dependency-licenses" = callPackage @@ -56657,9 +53432,7 @@ self: { ]; description = "Compose a list of a project's transitive dependencies with their licenses"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-dependency-licenses"; - broken = true; }) {}; "cabal-detailed-quickcheck" = callPackage @@ -56693,8 +53466,6 @@ self: { executableToolDepends = [ cabal-install ]; description = "Manage sandboxed Haskell build environments"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cabal-dir" = callPackage @@ -56708,9 +53479,7 @@ self: { executableHaskellDepends = [ base Cabal directory filepath ]; description = "show dist dir of 'cabal copy/install'"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-dir"; - broken = true; }) {}; "cabal-doctest" = callPackage @@ -56745,9 +53514,7 @@ self: { ]; description = "Cabal utility"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-edit"; - broken = true; }) {}; "cabal-file" = callPackage @@ -56787,8 +53554,6 @@ self: { testHaskellDepends = [ base Cabal ]; description = "Template Haskell expressions for reading fields from a project's cabal file"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cabal-flatpak" = callPackage @@ -56813,7 +53578,6 @@ self: { ]; description = "Generate a FlatPak manifest from a Cabal package description"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-flatpak"; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -56858,8 +53622,6 @@ self: { libraryHaskellDepends = [ base Cabal ghc transformers ]; description = "Conveniently configure GHC's dynamic flags for use with Cabal projects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cabal-ghci" = callPackage @@ -56876,9 +53638,7 @@ self: { ]; description = "Set up ghci with options taken from a .cabal file"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-ghci"; - broken = true; }) {}; "cabal-graphdeps" = callPackage @@ -56896,9 +53656,7 @@ self: { ]; description = "Generate graphs of install-time Cabal dependencies"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-graphdeps"; - broken = true; }) {}; "cabal-helper" = callPackage @@ -56929,8 +53687,6 @@ self: { doCheck = false; description = "Give Haskell development tools access to Cabal project environment"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cabal-hoogle" = callPackage @@ -56956,9 +53712,7 @@ self: { testToolDepends = [ hoogle tasty-discover ]; description = "generate hoogle database for cabal project and dependencies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-hoogle"; - broken = true; }) {}; "cabal-info" = callPackage @@ -56981,9 +53735,7 @@ self: { ]; description = "Read information from cabal files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-info"; - broken = true; }) {}; "cabal-install" = callPackage @@ -57054,9 +53806,7 @@ self: { executableSystemDepends = [ zlib ]; description = "The (bundled) command-line interface for Cabal and Hackage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal"; - broken = true; }) {inherit (pkgs) zlib;}; "cabal-install-ghc72" = callPackage @@ -57076,9 +53826,7 @@ self: { ]; description = "Temporary version of cabal-install for ghc-7.2"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal"; - broken = true; }) {}; "cabal-install-ghc74" = callPackage @@ -57098,9 +53846,7 @@ self: { ]; description = "Temporary version of cabal-install for ghc-7.4"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal"; - broken = true; }) {}; "cabal-install-parsers" = callPackage @@ -57191,8 +53937,6 @@ self: { ]; description = "Lenses and traversals for the Cabal library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cabal-macosx" = callPackage @@ -57241,9 +53985,7 @@ self: { ]; description = "build multiple packages at once"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-meta"; - broken = true; }) {}; "cabal-mon" = callPackage @@ -57261,9 +54003,7 @@ self: { ]; description = "A monitor for cabal builds"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-mon"; - broken = true; }) {}; "cabal-nirvana" = callPackage @@ -57281,9 +54021,7 @@ self: { ]; description = "Avoid Cabal dependency hell by constraining to known good versions. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-nirvana"; - broken = true; }) {}; "cabal-pkg-config-version-hook" = callPackage @@ -57325,9 +54063,7 @@ self: { ]; description = "Library and utility for processing cabal's plan.json file"; license = lib.licenses.gpl2Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-plan"; - broken = true; }) {}; "cabal-plan-bounds" = callPackage @@ -57346,9 +54082,7 @@ self: { ]; description = "Derives cabal bounds from build plans"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-plan-bounds"; - broken = true; }) {}; "cabal-progdeps" = callPackage @@ -57362,9 +54096,7 @@ self: { executableHaskellDepends = [ base Cabal directory filepath ]; description = "Show dependencies of program being built in current directory"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-progdeps"; - broken = true; }) {}; "cabal-query" = callPackage @@ -57381,7 +54113,6 @@ self: { ]; description = "Helpers for quering .cabal files or hackageDB's 00-index.tar"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cabal-rpm" = callPackage @@ -57430,9 +54161,7 @@ self: { executableHaskellDepends = [ base Cabal ]; description = "The user interface for building and installing Cabal packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-setup"; - broken = true; }) {}; "cabal-sign" = callPackage @@ -57470,8 +54199,6 @@ self: { ]; description = "Topologically sort cabal packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cabal-src" = callPackage @@ -57493,8 +54220,6 @@ self: { ]; description = "Alternative install procedure to avoid the diamond dependency issue"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cabal-test" = callPackage @@ -57510,7 +54235,6 @@ self: { ]; description = "Automated test tool for cabal projects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-test"; }) {}; @@ -57554,8 +54278,6 @@ self: { libraryHaskellDepends = [ base Cabal QuickCheck ]; description = "QuickCheck for Cabal"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cabal-toolkit" = callPackage @@ -57571,8 +54293,6 @@ self: { ]; description = "Helper functions for writing custom Setup.hs scripts."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cabal-uninstall" = callPackage @@ -57600,9 +54320,7 @@ self: { executableHaskellDepends = [ base filepath HTTP network ]; description = "Command-line tool for uploading packages to Hackage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal-upload"; - broken = true; }) {}; "cabal2arch" = callPackage @@ -57622,7 +54340,6 @@ self: { ]; description = "Create Arch Linux packages from Cabal packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal2arch"; }) {}; @@ -57639,9 +54356,7 @@ self: { ]; description = "Cabal to Description-of-a-Project (DOAP)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal2doap"; - broken = true; }) {}; "cabal2ebuild" = callPackage @@ -57656,8 +54371,6 @@ self: { executableHaskellDepends = [ base curl directory ]; description = "make gentoo's .ebuild file from .cabal file"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cabal2ghci" = callPackage @@ -57676,9 +54389,7 @@ self: { ]; description = "A tool to generate .ghci file from .cabal"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal2ghci"; - broken = true; }) {}; "cabal2json" = callPackage @@ -57707,9 +54418,7 @@ self: { testToolDepends = [ sydtest-discover ]; description = "Turn a .cabal file into a .json file"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal2json"; - broken = true; }) {}; "cabal2nix" = callPackage @@ -57786,9 +54495,7 @@ self: { ]; description = "A simple tool to query cabal files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabalQuery"; - broken = true; }) {}; "cabalg" = callPackage @@ -57824,9 +54531,7 @@ self: { ]; description = "Generate pretty graphs of module trees from cabal files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabalgraph"; - broken = true; }) {}; "cabalish" = callPackage @@ -57845,9 +54550,7 @@ self: { ]; description = "Provides access to the cabal file data for shell scripts"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabalish"; - broken = true; }) {}; "cabalmdvrpm" = callPackage @@ -57862,7 +54565,6 @@ self: { executableHaskellDepends = [ base Cabal cabalrpmdeps haskell98 ]; description = "Create mandriva rpm from cabal package"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "cabalmdvspec"; }) {}; @@ -57878,7 +54580,6 @@ self: { executableHaskellDepends = [ base Cabal filepath haskell98 ]; description = "Autogenerate rpm dependencies from cabal files"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "cabalvchk" = callPackage @@ -57892,9 +54593,7 @@ self: { executableHaskellDepends = [ base Cabal ]; description = "Verify installed package version against user-specified constraints"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabalvchk"; - broken = true; }) {}; "cabin" = callPackage @@ -57913,9 +54612,7 @@ self: { ]; description = "Cabal binary sandboxes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabin"; - broken = true; }) {}; "cabocha" = callPackage @@ -57928,8 +54625,6 @@ self: { librarySystemDepends = [ cabocha ]; testHaskellDepends = [ base text-format ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {cabocha = null;}; "cache" = callPackage @@ -57964,8 +54659,6 @@ self: { ]; description = "cached hashmaps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cached" = callPackage @@ -57983,8 +54676,6 @@ self: { ]; description = "Cache values to disk"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cached-io" = callPackage @@ -58051,8 +54742,6 @@ self: { ]; description = "Cache combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "caching-vault" = callPackage @@ -58236,8 +54925,6 @@ self: { ]; description = "A library implementing the Noise protocol"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "caerbannog" = callPackage @@ -58276,8 +54963,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Prelude subsets—take only what you want!"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "caffegraph" = callPackage @@ -58296,7 +54981,6 @@ self: { protocol-buffers-descriptor template-haskell temporary text ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cairo" = callPackage @@ -58363,8 +55047,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Cairo Haskell binding (partial)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) cairo;}; "cake" = callPackage @@ -58387,7 +55069,6 @@ self: { ]; description = "A build-system library and driver"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "cake"; }) {}; @@ -58418,8 +55099,6 @@ self: { ]; description = "Third cake the Makefile EDSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cakyrespa" = callPackage @@ -58437,7 +55116,6 @@ self: { ]; description = "run turtle like LOGO with lojban"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cakyrespa"; }) {}; @@ -58453,9 +55131,7 @@ self: { executableHaskellDepends = [ base ]; description = "Calendar Layout Algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bookings-test"; - broken = true; }) {}; "cal3d" = callPackage @@ -58468,8 +55144,6 @@ self: { librarySystemDepends = [ cal3d ]; description = "Haskell binding to the Cal3D animation library"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {cal3d = null;}; "cal3d-examples" = callPackage @@ -58484,7 +55158,6 @@ self: { executableHaskellDepends = [ base cal3d cal3d-opengl OpenGL SDL ]; description = "Examples for the Cal3d animation library"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "cal3d-opengl" = callPackage @@ -58496,7 +55169,6 @@ self: { libraryHaskellDepends = [ base cal3d OpenGL ]; description = "OpenGL rendering for the Cal3D animation library"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "calamity" = callPackage @@ -58527,7 +55199,6 @@ self: { ]; description = "A library for writing discord bots in haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "calamity-commands" = callPackage @@ -58557,7 +55228,6 @@ self: { executableHaskellDepends = [ array base harpy haskell98 mtl ]; description = "A small compiler for arithmetic expressions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "calc"; }) {}; @@ -58580,7 +55250,6 @@ self: { ]; description = "A calculator repl, with variables, functions & Mathematica like dynamic plots"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "calculator"; }) {}; @@ -58602,7 +55271,6 @@ self: { ]; description = "Calculation tool and library supporting units"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "caldims"; }) {}; @@ -58621,9 +55289,7 @@ self: { ]; description = "a logic programming language based on the calculus of constructions"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "caledon"; - broken = true; }) {}; "calendar-recycling" = callPackage @@ -58656,9 +55322,7 @@ self: { ]; description = "Commandline tool to get week of the year"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "kw"; - broken = true; }) {}; "call" = callPackage @@ -58684,7 +55348,6 @@ self: { ]; description = "The call game engine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "call-alloy" = callPackage @@ -58709,8 +55372,6 @@ self: { ]; description = "A simple library to call Alloy given a specification"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "call-haskell-from-anything" = callPackage @@ -58729,9 +55390,7 @@ self: { executableHaskellDepends = [ base bytestring data-msgpack mtl ]; description = "Call Haskell functions from other languages via serialization and dynamic libraries"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "call-haskell-from-anything.so"; - broken = true; }) {}; "call-plantuml" = callPackage @@ -58750,8 +55409,6 @@ self: { ]; description = "A simple library to call PlantUML given a diagram specification"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "call-stack" = callPackage @@ -58827,7 +55484,6 @@ self: { description = "CamFort - Cambridge Fortran infrastructure"; license = lib.licenses.asl20; badPlatforms = [ "aarch64-linux" ]; - hydraPlatforms = lib.platforms.none; mainProgram = "camfort"; }) {inherit (pkgs) flint;}; @@ -58862,7 +55518,6 @@ self: { ]; description = "Haskell implementation of the Campfire API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "can-i-haz" = callPackage @@ -58899,7 +55554,6 @@ self: { ]; description = "Canadian income tax calculation"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "complete-canadian-taxes"; }) {}; @@ -58948,8 +55602,6 @@ self: { libraryHaskellDepends = [ arithmoi array base containers random ]; description = "Arithmetic for Psychedelically Large Numbers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "canonical-filepath" = callPackage @@ -58961,8 +55613,6 @@ self: { libraryHaskellDepends = [ base deepseq directory filepath ]; description = "Abstract data type for canonical file paths"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "canonical-json" = callPackage @@ -59014,7 +55664,6 @@ self: { ]; description = "Utilities for HTTP programming"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "canteven-listen-http" = callPackage @@ -59026,8 +55675,6 @@ self: { libraryHaskellDepends = [ aeson base ]; description = "data types to describe HTTP services"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "canteven-log" = callPackage @@ -59045,8 +55692,6 @@ self: { ]; description = "A canteven way of setting up logging for your program"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "canteven-parsedate" = callPackage @@ -59062,8 +55707,6 @@ self: { ]; description = "Date / time parsing utilities that try to guess the date / time format"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "canteven-template" = callPackage @@ -59102,9 +55745,7 @@ self: { ]; description = "Application for analysis of java source code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cantor"; - broken = true; }) {}; "cantor-pairing" = callPackage @@ -59143,7 +55784,6 @@ self: { executableToolDepends = [ alex happy ]; description = "CAO Compiler"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "cao"; }) {}; @@ -59159,7 +55799,6 @@ self: { executableHaskellDepends = [ array base containers haskell98 ]; description = "Interprets and debug the cap language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cap"; }) {}; @@ -59207,8 +55846,6 @@ self: { ]; description = "OTP-like supervision trees in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "capnp" = callPackage @@ -59254,7 +55891,6 @@ self: { ]; description = "Cap'n Proto for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "capnpc-haskell"; }) {}; @@ -59267,8 +55903,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A list-like type for lazy sequences, with a user-defined termination value"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "capri" = callPackage @@ -59284,9 +55918,7 @@ self: { ]; description = "A simple wrapper over cabal-install to operate in project-private mode"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "capri"; - broken = true; }) {}; "caps" = callPackage @@ -59303,8 +55935,6 @@ self: { testHaskellDepends = [ base mtl tasty tasty-hunit ]; description = "Monadic capabilities with late binding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "captcha-2captcha" = callPackage @@ -59331,7 +55961,6 @@ self: { ]; description = "A package for integrating a variety of captcha solving services"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "captcha-capmonster" = callPackage @@ -59358,7 +55987,6 @@ self: { ]; description = "A package for integrating a variety of captcha solving services"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "captcha-core" = callPackage @@ -59378,7 +56006,6 @@ self: { ]; description = "A package for integrating a variety of captcha solving services"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "car-pool" = callPackage @@ -59401,7 +56028,6 @@ self: { ]; description = "Simple web-server for organizing car-pooling for an event"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "car-pool"; }) {}; @@ -59427,8 +56053,6 @@ self: { ]; description = "High-level OpenGL bindings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "carbonara" = callPackage @@ -59443,8 +56067,6 @@ self: { ]; description = "some spaghetti code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "carboncopy" = callPackage @@ -59462,7 +56084,6 @@ self: { ]; description = "Drop emails from threads being watched into special CC folder"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "carboncopy"; }) {}; @@ -59542,8 +56163,6 @@ self: { ]; description = "A presentation tool written with Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "carray" = callPackage @@ -59582,9 +56201,7 @@ self: { ]; description = "Carte: A commandline pastebin server"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "carte"; - broken = true; }) {}; "cartel" = callPackage @@ -59613,7 +56230,6 @@ self: { ]; description = "Specify Cabal files in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cartel-init"; }) {}; @@ -59634,8 +56250,6 @@ self: { ]; description = "A hashing class for content-addressed storage"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cas-hashable-s3" = callPackage @@ -59652,7 +56266,6 @@ self: { ]; description = "ContentHashable instances for S3 objects"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "cas-store" = callPackage @@ -59677,7 +56290,6 @@ self: { ]; description = "A content-addressed storage"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "casa-abbreviations-and-acronyms" = callPackage @@ -59701,8 +56313,6 @@ self: { ]; description = "CASA Abbreviations and Acronyms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "casa-client" = callPackage @@ -59786,7 +56396,6 @@ self: { ]; description = "mid-level bindings to CasADi"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {casadi = null;}; "casadi-bindings-control" = callPackage @@ -59803,7 +56412,6 @@ self: { libraryPkgconfigDepends = [ casadi_control ]; description = "low level bindings to casadi-control"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {casadi_control = null;}; "casadi-bindings-core" = callPackage @@ -59820,7 +56428,6 @@ self: { librarySystemDepends = [ casadi ]; description = "autogenerated low level bindings to casadi"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {casadi = null;}; "casadi-bindings-internal" = callPackage @@ -59833,8 +56440,6 @@ self: { librarySystemDepends = [ casadi ]; description = "low level bindings to CasADi"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {casadi = null;}; "casadi-bindings-ipopt-interface" = callPackage @@ -59851,7 +56456,6 @@ self: { libraryPkgconfigDepends = [ casadi_ipopt_interface ]; description = "low level bindings to casadi-ipopt_interface"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {casadi_ipopt_interface = null;}; "casadi-bindings-snopt-interface" = callPackage @@ -59868,7 +56472,6 @@ self: { libraryPkgconfigDepends = [ casadi_snopt_interface ]; description = "low level bindings to casadi-snopt_interface"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {casadi_snopt_interface = null;}; "cascading" = callPackage @@ -59885,8 +56488,6 @@ self: { ]; description = "DSL for HTML CSS (Cascading Style Sheets)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "case-conversion" = callPackage @@ -59941,9 +56542,7 @@ self: { ]; description = "A simplified, faster way to do case-insensitive matching"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "readme-example"; - broken = true; }) {}; "cased" = callPackage @@ -59967,8 +56566,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Combinators for casing on constructors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cases" = callPackage @@ -60000,7 +56597,6 @@ self: { ]; description = "the Computer Algebra SHell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "casing" = callPackage @@ -60029,8 +56625,6 @@ self: { ]; description = "CASR 61.345 Pilot Personal Logbook"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "casr-logbook-html" = callPackage @@ -60050,7 +56644,6 @@ self: { ]; description = "CASR 61.345 Pilot Personal Logbook HTML output"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "casr-logbook-meta" = callPackage @@ -60067,7 +56660,6 @@ self: { ]; description = "Meta-information about entries in a CASR 61.345 logbook (casr-logbook)"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "casr-logbook-meta-html" = callPackage @@ -60088,7 +56680,6 @@ self: { ]; description = "Meta-information about entries in a CASR 61.345 logbook (casr-logbook) HTML output"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "casr-logbook-reports" = callPackage @@ -60107,7 +56698,6 @@ self: { ]; description = "CASR 61.345 logbook (casr-logbook) reports."; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "casr-logbook-reports-html" = callPackage @@ -60128,7 +56718,6 @@ self: { ]; description = "CASR 61.345 logbook reports HTML output"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "casr-logbook-reports-meta" = callPackage @@ -60147,7 +56736,6 @@ self: { ]; description = "Reports on meta-information about entries in a CASR 61.345 logbook (casr-logbook)"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "casr-logbook-reports-meta-html" = callPackage @@ -60170,7 +56758,6 @@ self: { ]; description = "HTML output for reports on meta-information about entries in a CASR 61.345 logbook"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "casr-logbook-types" = callPackage @@ -60189,8 +56776,6 @@ self: { ]; description = "CASR 61.345 Pilot Personal Logbook"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cassandra-cql" = callPackage @@ -60209,8 +56794,6 @@ self: { ]; description = "Haskell client for Cassandra's CQL protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cassandra-thrift" = callPackage @@ -60222,7 +56805,6 @@ self: { libraryHaskellDepends = [ base bytestring containers Thrift ]; description = "thrift bindings to the cassandra database"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "cassava" = callPackage @@ -60270,8 +56852,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Conduit interface for cassava package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cassava-embed" = callPackage @@ -60348,8 +56928,6 @@ self: { ]; description = "Auto-generation of records data type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cassava-streams" = callPackage @@ -60371,8 +56949,6 @@ self: { ]; description = "io-streams interface for the cassava CSV library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cassette" = callPackage @@ -60384,8 +56960,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A combinator library for simultaneously defining parsers and pretty printers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cassy" = callPackage @@ -60413,7 +56987,6 @@ self: { ]; description = "A high level driver for the Cassandra datastore"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cast" = callPackage @@ -60443,8 +57016,6 @@ self: { testHaskellDepends = [ base bytestring primitive text ]; description = "Portable CRC-32C"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "caster" = callPackage @@ -60485,9 +57056,7 @@ self: { ]; description = "A tool to manage shared cabal-install sandboxes"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "castle"; - broken = true; }) {}; "casui" = callPackage @@ -60502,7 +57071,6 @@ self: { executableHaskellDepends = [ base gtk haskell98 mtl parsec ]; description = "Equation Manipulator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "casui"; }) {}; @@ -60527,8 +57095,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Exposes a Template Haskell function for generating catamorphisms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "catch-fd" = callPackage @@ -60540,8 +57106,6 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "MonadThrow and MonadCatch, using functional dependencies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "categorical-algebra" = callPackage @@ -60553,7 +57117,6 @@ self: { libraryHaskellDepends = [ base newtype pointless-haskell void ]; description = "Categorical Monoids and Semirings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "categories" = callPackage @@ -60578,7 +57141,6 @@ self: { libraryHaskellDepends = [ alg base dual transformers ]; description = "Categorical types and classes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "category-extras" = callPackage @@ -60606,7 +57168,6 @@ self: { doHaddock = false; description = "A meta-package documenting various packages inspired by category theory"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "category-printf" = callPackage @@ -60618,8 +57179,6 @@ self: { libraryHaskellDepends = [ base bytestring comonad text ]; description = "Highbrow approach to type-safe printf format specifications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "category-traced" = callPackage @@ -60633,8 +57192,6 @@ self: { libraryHaskellDepends = [ base categories ]; description = "Traced monoidal categories"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "catnplus" = callPackage @@ -60654,9 +57211,7 @@ self: { ]; description = "Simple tool to display text files with line numbers and paging"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "catnplus"; - broken = true; }) {}; "cattrap" = callPackage @@ -60683,7 +57238,6 @@ self: { ]; description = "Lays out boxes according to the CSS Box Model"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "cattrap"; }) {}; @@ -60714,8 +57268,6 @@ self: { ]; description = "Ways to write a file cautiously, to reduce the chances of problems such as data loss due to crashes or power failures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cautious-gen" = callPackage @@ -60732,8 +57284,6 @@ self: { hspec QuickCheck ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cayene-lpp" = callPackage @@ -60750,8 +57300,6 @@ self: { testHaskellDepends = [ base base16-bytestring hspec ]; description = "Cayenne Low Power Payload"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cayenne-lpp" = callPackage @@ -60789,8 +57337,6 @@ self: { testHaskellDepends = [ aeson base hspec unordered-containers ]; description = "A Haskell client for the Cayley graph database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cayley-dickson" = callPackage @@ -60825,9 +57371,7 @@ self: { ]; description = "Tool to maintain a database of CABAL packages and their dependencies"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "cblrepo"; - broken = true; }) {}; "cbor-tool" = callPackage @@ -60849,9 +57393,7 @@ self: { ]; description = "A tool for manipulating CBOR"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cbor-tool"; - broken = true; }) {}; "cborg" = callPackage @@ -60910,8 +57452,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "typesafe c-style casts; useful for FFI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cci" = callPackage @@ -60934,8 +57474,6 @@ self: { ]; description = "Bindings for the CCI networking library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {cci = null;}; "ccnx" = callPackage @@ -60947,8 +57485,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "A Haskell implementation of the CCNx network protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cctools-workqueue" = callPackage @@ -60965,7 +57501,6 @@ self: { librarySystemDepends = [ dttools ]; description = "High-level interface to CCTools' WorkQueue library"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {dttools = null;}; "cdar-mBound" = callPackage @@ -61042,8 +57577,6 @@ self: { ]; description = "A library for the Chrome Devtools Protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cedict" = callPackage @@ -61061,9 +57594,7 @@ self: { ]; description = "Convenient Chinese phrase & character lookup"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "zi4pu3"; - broken = true; }) {}; "cef" = callPackage @@ -61078,8 +57609,6 @@ self: { testHaskellDepends = [ base directory doctest filepath ]; description = "CEF log format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cef3-raw" = callPackage @@ -61093,8 +57622,6 @@ self: { libraryPkgconfigDepends = [ gtk2 ]; description = "Raw CEF3 bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {cef = null; inherit (pkgs) gtk2;}; "cef3-simple" = callPackage @@ -61106,7 +57633,6 @@ self: { libraryHaskellDepends = [ base cef3-raw ]; description = "Simple wrapper around cef3-raw"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ceilometer-common" = callPackage @@ -61130,7 +57656,6 @@ self: { ]; description = "Common Haskell types and encoding for OpenStack Ceilometer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cellrenderer-cairo" = callPackage @@ -61144,8 +57669,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Cairo-based CellRenderer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) gtk2;}; "celtchar" = callPackage @@ -61170,7 +57693,6 @@ self: { testHaskellDepends = [ base hspec raw-strings-qq ]; description = "A tool to build a novel"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "celtchar"; }) {}; @@ -61199,7 +57721,6 @@ self: { testHaskellDepends = [ base ]; description = "Protect and control API access with cerberus"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cerberus"; }) {}; @@ -61262,8 +57783,6 @@ self: { libraryHaskellDepends = [ base cereal ghc-prim ]; description = "Automatic deriving of Serialize using GHC.Generics"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cereal-enumerator" = callPackage @@ -61275,7 +57794,6 @@ self: { libraryHaskellDepends = [ base bytestring cereal enumerator ]; description = "Deserialize things with cereal and enumerator"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "cereal-ieee754" = callPackage @@ -61287,8 +57805,6 @@ self: { libraryHaskellDepends = [ array base cereal ]; description = "Floating point support for the 'cereal' serialization library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cereal-io-streams" = callPackage @@ -61311,7 +57827,6 @@ self: { ]; description = "io-streams support for the cereal binary serialization library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cereal-plus" = callPackage @@ -61335,8 +57850,6 @@ self: { ]; description = "An extended serialization library on top of \"cereal\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cereal-streams" = callPackage @@ -61359,7 +57872,6 @@ self: { ]; description = "Use cereal to encode/decode io-streams"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cereal-text" = callPackage @@ -61440,7 +57952,6 @@ self: { ]; description = "Certificates and Key Reader/Writer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cf" = callPackage @@ -61458,8 +57969,6 @@ self: { ]; description = "Exact real arithmetic using continued fractions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cfenv" = callPackage @@ -61476,8 +57985,6 @@ self: { ]; description = "A library getting the environment when running on Cloud Foundry"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cfg" = callPackage @@ -61519,7 +58026,6 @@ self: { ]; description = "cfipu processor for toy brainfuck-like language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cfipu"; }) {}; @@ -61539,7 +58045,6 @@ self: { ]; description = "Constraint Functional-Logic Programming in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cfn-flip" = callPackage @@ -61560,8 +58065,6 @@ self: { ]; description = "Haskell implementation of aws/cfn-flip"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cfopu" = callPackage @@ -61579,7 +58082,6 @@ self: { ]; description = "cfopu processor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cfopu"; }) {}; @@ -61601,9 +58103,7 @@ self: { ]; description = "Parser for categorial grammars"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "CG"; - broken = true; }) {}; "cgen" = callPackage @@ -61623,8 +58123,6 @@ self: { doHaddock = false; description = "generates Haskell bindings and C wrappers for C++ libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cgi" = callPackage @@ -61645,8 +58143,6 @@ self: { ]; description = "A library for writing CGI programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cgi-undecidable" = callPackage @@ -61658,7 +58154,6 @@ self: { libraryHaskellDepends = [ base cgi mtl ]; description = "Undecidable instances for the cgi package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cgi-utils" = callPackage @@ -61672,7 +58167,6 @@ self: { libraryHaskellDepends = [ base cgi containers mtl random ]; description = "Simple modular utilities for CGI/FastCGI (sessions, etc.)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cgrep" = callPackage @@ -61719,8 +58213,6 @@ self: { ]; description = "A container-/cgroup-aware substitute for the GHC RTS `-N` flag"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "chain-codes" = callPackage @@ -61766,7 +58258,6 @@ self: { ]; description = "Mining Client for Kadena Chainweb"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "chainweb-mining-client"; }) {}; @@ -61808,9 +58299,7 @@ self: { ]; description = "A REST Web Api server template for building (micro)services"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "chakra-exe"; - broken = true; }) {}; "chalk" = callPackage @@ -61840,9 +58329,7 @@ self: { ]; description = "Combinators for building and processing 2D images"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "chalkboard-server-1_9_0_16"; - broken = true; }) {}; "chalkboard-viewer" = callPackage @@ -61854,7 +58341,6 @@ self: { libraryHaskellDepends = [ array base chalkboard GLUT OpenGL time ]; description = "OpenGL based viewer for chalkboard rendered images"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "chalmers-lava2000" = callPackage @@ -61867,8 +58353,6 @@ self: { libraryHaskellDepends = [ array base process random ]; description = "Hardware description EDSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "chan" = callPackage @@ -61938,9 +58422,7 @@ self: { ]; description = "Changelog manager for Git projects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "changelogged"; - broken = true; }) {}; "chapelure" = callPackage @@ -61961,7 +58443,6 @@ self: { ]; description = "A diagnostics library for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "char-decode" = callPackage @@ -62006,8 +58487,6 @@ self: { ]; description = "Exposes subspecies types of Char. And naming cases."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "charade" = callPackage @@ -62031,7 +58510,6 @@ self: { ]; description = "Rapid prototyping websites with Snap and Heist"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "charade"; }) {}; @@ -62090,7 +58568,6 @@ self: { ]; description = "Command-line utility to draw charts from input data easily"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "chart"; }) {}; @@ -62103,8 +58580,6 @@ self: { libraryHaskellDepends = [ base Chart ]; description = "Easily render histograms with Chart"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "chart-svg" = callPackage @@ -62127,7 +58602,6 @@ self: { ]; description = "Charting library targetting SVGs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "chart-svg-various" = callPackage @@ -62151,7 +58625,6 @@ self: { testHaskellDepends = [ base doctest numhask ]; description = "See readme.md"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "chart-svg-various"; }) {}; @@ -62177,7 +58650,6 @@ self: { ]; description = "Native haskell charts"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "charter" = callPackage @@ -62205,9 +58677,7 @@ self: { process scientific text wai warp ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "charter-exe"; - broken = true; }) {}; "chaselev-deque" = callPackage @@ -62230,8 +58700,6 @@ self: { ]; description = "Chase & Lev work-stealing lock-free double-ended queues (deques)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "chassis" = callPackage @@ -62249,7 +58717,6 @@ self: { ]; description = "Polykinded Prelude Kernel"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "chatter" = callPackage @@ -62315,8 +58782,6 @@ self: { libraryHaskellDepends = [ base chatty transformers ]; description = "Provides some classes and types for dealing with text, using the fundaments of Chatty"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "chatty-utils" = callPackage @@ -62356,9 +58821,7 @@ self: { ]; description = "The ChatWork API in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sample-exe"; - broken = true; }) {}; "cheapskate" = callPackage @@ -62380,9 +58843,7 @@ self: { executableHaskellDepends = [ base blaze-html bytestring text ]; description = "Experimental markdown processor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cheapskate"; - broken = true; }) {}; "cheapskate-highlight" = callPackage @@ -62400,7 +58861,6 @@ self: { ]; description = "Code highlighting for cheapskate"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cheapskate-lucid" = callPackage @@ -62414,7 +58874,6 @@ self: { libraryHaskellDepends = [ base blaze-html cheapskate lucid ]; description = "Use cheapskate with Lucid"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cheapskate-terminal" = callPackage @@ -62441,7 +58900,6 @@ self: { ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cheapskate-terminal"; }) {}; @@ -62455,8 +58913,6 @@ self: { testHaskellDepends = [ base doctest QuickCheck ]; description = "Checks context free grammar for ambiguity using brute force up to given limit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "check-email" = callPackage @@ -62488,7 +58944,6 @@ self: { ]; description = "Check whether module and package imports conform to the PVP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -62503,8 +58958,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Bounds-checking integer types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "checkers" = callPackage @@ -62550,9 +59003,7 @@ self: { ]; description = "Generate checklists relevant to a given patch"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "checkmate"; - broken = true; }) {}; "checksum" = callPackage @@ -62715,7 +59166,6 @@ self: { ]; description = "Query interface for Chevalier"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "chez-grater" = callPackage @@ -62746,9 +59196,7 @@ self: { ]; description = "Parse and scrape recipe blogs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "chez-grater"; - broken = true; }) {}; "chiasma" = callPackage @@ -62772,7 +59220,6 @@ self: { ]; description = "A tmux client for Polysemy"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "chiasma-test" = callPackage @@ -62798,7 +59245,6 @@ self: { ]; description = "A tmux client for Polysemy"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "chimera" = callPackage @@ -62838,8 +59284,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Haskell bindings for Chipmunk2D physics engine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "chitauri" = callPackage @@ -62859,7 +59303,6 @@ self: { testHaskellDepends = [ base ]; description = "Helper for the Major System"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "chitauri"; }) {}; @@ -62895,8 +59338,6 @@ self: { libraryHaskellDepends = [ base MonadRandom ]; description = "Choose random elements from a stream"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "choose-exe" = callPackage @@ -62913,7 +59354,6 @@ self: { ]; description = "Command-line program to choose random element from a stream"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "choose"; }) {}; @@ -62932,8 +59372,6 @@ self: { ]; description = "A module containing basic functions that the prelude does not offer"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "chorale-geo" = callPackage @@ -62951,7 +59389,6 @@ self: { ]; description = "A module containing basic geo functions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "chp" = callPackage @@ -62967,8 +59404,6 @@ self: { ]; description = "An implementation of concurrency ideas from Communicating Sequential Processes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "chp-mtl" = callPackage @@ -62980,7 +59415,6 @@ self: { libraryHaskellDepends = [ base chp chp-plus mtl ]; description = "MTL class instances for the CHP library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "chp-plus" = callPackage @@ -62997,7 +59431,6 @@ self: { ]; description = "A set of high-level concurrency utilities built on Communicating Haskell Processes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "chp-spec" = callPackage @@ -63013,7 +59446,6 @@ self: { ]; description = "A mirror implementation of chp that generates a specification of the program"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "chp-transformers" = callPackage @@ -63025,7 +59457,6 @@ self: { libraryHaskellDepends = [ base chp chp-plus transformers ]; description = "Transformers instances for the CHP library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "chr-core" = callPackage @@ -63079,7 +59510,6 @@ self: { executableHaskellDepends = [ base chr-data ]; description = "AST + surface language around chr"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "chr-term"; }) {}; @@ -63094,8 +59524,6 @@ self: { libraryHaskellDepends = [ base containers uulib ]; description = "Parsing for chr library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "chr-pretty" = callPackage @@ -63144,7 +59572,6 @@ self: { ]; description = "neovim package manager"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "chromatin"; }) {}; @@ -63159,8 +59586,6 @@ self: { ]; description = "measure timings of data evaluation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "chronologique" = callPackage @@ -63276,7 +59701,6 @@ self: { ]; description = "FFI for Chu2 Agda Web Server Interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "chuchu" = callPackage @@ -63294,7 +59718,6 @@ self: { testHaskellDepends = [ base HUnit text transformers unix ]; description = "Behaviour Driven Development like Cucumber for Haskell"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "chunked-data" = callPackage @@ -63321,7 +59744,6 @@ self: { libraryHaskellDepends = [ base haskell98 parsec template-haskell ]; description = "Simple template library with static safety"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "chunky" = callPackage @@ -63337,9 +59759,7 @@ self: { testHaskellDepends = [ base binary bytestring HUnit text ]; description = "Human-readable storage of text/binary objects"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "chunky-test"; - broken = true; }) {}; "church" = callPackage @@ -63351,8 +59771,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Automatically convert Generic instances to and from church representations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "church-list" = callPackage @@ -63376,8 +59794,6 @@ self: { libraryHaskellDepends = [ base deepseq semigroupoids semigroups ]; description = "Church encoded Maybe"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "church-pair" = callPackage @@ -63409,8 +59825,6 @@ self: { ]; description = "Channel/Arrow based streaming computation library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cicero-api" = callPackage @@ -63435,9 +59849,7 @@ self: { ]; description = "API bindings to IOHK's Cicero job scheduler"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "cicero-cli"; - broken = true; }) {}; "cielo" = callPackage @@ -63460,8 +59872,6 @@ self: { ]; description = "Cielo API v3 Bindings for Haskell"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cil" = callPackage @@ -63473,8 +59883,6 @@ self: { libraryHaskellDepends = [ base bytestring language-c ]; description = "An interface to CIL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cimple" = callPackage @@ -63502,8 +59910,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Simple C-like programming language"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cinvoke" = callPackage @@ -63516,8 +59922,6 @@ self: { librarySystemDepends = [ cinvoke ]; description = "A binding to cinvoke"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {cinvoke = null;}; "cio" = callPackage @@ -63529,8 +59933,6 @@ self: { libraryHaskellDepends = [ base monad-stm mtl parallel-io stm ]; description = "A monad for concurrent IO on a thread pool"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cipher-aes" = callPackage @@ -63577,8 +59979,6 @@ self: { ]; description = "AES and common modes using AES-NI when available"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cipher-blowfish" = callPackage @@ -63604,8 +60004,6 @@ self: { ]; description = "Blowfish cipher"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cipher-camellia" = callPackage @@ -63656,8 +60054,6 @@ self: { ]; description = "DES and 3DES primitives"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cipher-rc4" = callPackage @@ -63744,8 +60140,6 @@ self: { ]; description = "Circle API client for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "circle-packing" = callPackage @@ -63776,8 +60170,6 @@ self: { ]; description = "The CircleCI REST API for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "circuit-breaker" = callPackage @@ -63837,8 +60229,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Make bounded enum types circular"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "circus" = callPackage @@ -63917,7 +60307,6 @@ self: { ]; description = "convert document IDs such as DOI, ISBN, arXiv ID to bibliographic reference"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "citeproc" = callPackage @@ -63964,8 +60353,6 @@ self: { ]; description = "A Citation Style Language implementation in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "citeproc-hs-pandoc-filter" = callPackage @@ -63985,7 +60372,6 @@ self: { ]; description = "A Pandoc filter for processing bibliographic references with citeproc-hs"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "citeproc-hs"; }) {}; @@ -64026,9 +60412,7 @@ self: { ]; description = "A new Haskeleton package"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; mainProgram = "cj-token"; - broken = true; }) {}; "cjk" = callPackage @@ -64046,8 +60430,6 @@ self: { testHaskellDepends = [ base ]; description = "Data about Chinese, Japanese and Korean characters and languages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cl3" = callPackage @@ -64076,8 +60458,6 @@ self: { libraryHaskellDepends = [ base cl3 hmatrix ]; description = "Interface to/from Cl3 and HMatrix"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cl3-linear-interface" = callPackage @@ -64089,8 +60469,6 @@ self: { libraryHaskellDepends = [ base cl3 linear ]; description = "Interface to/from Cl3 and Linear"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clac" = callPackage @@ -64109,7 +60487,6 @@ self: { ]; description = "Simple CLI RPN calculator"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "clac"; }) {}; @@ -64145,7 +60522,6 @@ self: { ]; description = "Compiles Clafer models to other formats: Alloy, JavaScript, JSON, HTML, Dot"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "clafer"; }) {}; @@ -64179,7 +60555,6 @@ self: { ]; description = "claferIG is an interactive tool that generates instances of Clafer models"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "claferIG"; }) {}; @@ -64200,7 +60575,6 @@ self: { ]; description = "A wiki-based IDE for literate modeling with Clafer"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "clang-compilation-database" = callPackage @@ -64213,8 +60587,6 @@ self: { testHaskellDepends = [ aeson base bytestring ]; description = "JSON Compilation Database Format encoding and decoding"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clang-pure" = callPackage @@ -64237,8 +60609,6 @@ self: { testHaskellDepends = [ base bytestring lens ]; description = "Pure C++ code analysis with libclang"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (self.llvmPackages) clang;}; "clanki" = callPackage @@ -64254,9 +60624,7 @@ self: { ]; description = "Command-line spaced-repetition software"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "clanki"; - broken = true; }) {}; "clarifai" = callPackage @@ -64274,8 +60642,6 @@ self: { ]; description = "API Client for the Clarifai API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clash" = callPackage @@ -64295,7 +60661,6 @@ self: { ]; description = "CAES Language for Synchronous Hardware (CLaSH)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "clash-ghc" = callPackage @@ -64326,7 +60691,6 @@ self: { executableHaskellDepends = [ base ]; description = "Clash: a functional hardware description language - GHC frontend"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "clash-lib" = callPackage @@ -64373,7 +60737,6 @@ self: { ]; description = "Clash: a functional hardware description language - As a library"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "v16-upgrade-primitives"; }) {}; @@ -64395,7 +60758,6 @@ self: { ]; description = "Hedgehog Generators for clash-lib"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "clash-multisignal" = callPackage @@ -64410,7 +60772,6 @@ self: { base clash-prelude deepseq ghc-typelits-knownnat QuickCheck ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "clash-prelude" = callPackage @@ -64449,8 +60810,6 @@ self: { ]; description = "Clash: a functional hardware description language - Prelude library"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clash-prelude-hedgehog" = callPackage @@ -64467,7 +60826,6 @@ self: { ]; description = "Hedgehog Generators for clash-prelude"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "clash-prelude-quickcheck" = callPackage @@ -64480,7 +60838,6 @@ self: { libraryHaskellDepends = [ base clash-prelude QuickCheck ]; description = "QuickCheck instances for various types in the CλaSH Prelude"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "clash-shake" = callPackage @@ -64498,7 +60855,6 @@ self: { ]; description = "Shake rules for building Clash programs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "clash-systemverilog" = callPackage @@ -64516,7 +60872,6 @@ self: { ]; description = "CAES Language for Synchronous Hardware - SystemVerilog backend"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "clash-verilog" = callPackage @@ -64534,7 +60889,6 @@ self: { ]; description = "CAES Language for Synchronous Hardware - Verilog backend"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "clash-vhdl" = callPackage @@ -64552,7 +60906,6 @@ self: { ]; description = "CAES Language for Synchronous Hardware - VHDL backend"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "clashilator" = callPackage @@ -64576,7 +60929,6 @@ self: { ]; description = "Automated Clash to Verilator bridge"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "clashilator"; }) {}; @@ -64620,7 +60972,6 @@ self: { ]; description = "Classify sounds produced by Xenopus laevis"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "classify-frog"; }) {}; @@ -64638,8 +60989,6 @@ self: { ]; description = "Super simple InfluxDB package in Classy-MTL style"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "classy-miso" = callPackage @@ -64660,7 +61009,6 @@ self: { testHaskellDepends = [ base miso rfc ]; description = "Typeclass based support for Miso, the Tasty Web Framework for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "classy-miso-demo"; }) {}; @@ -64677,8 +61025,6 @@ self: { ]; description = "Fork of the monad-parallel package using monad-control"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "classy-prelude" = callPackage @@ -64756,8 +61102,6 @@ self: { benchmarkHaskellDepends = [ base criterion parallel uniplate ]; description = "Fuseable type-class based generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clay" = callPackage @@ -64808,7 +61152,6 @@ self: { libraryToolDepends = [ hsx2hs ]; description = "A secure, reliable content management system (CMS) and blogging platform"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) openssl;}; "clckwrks-cli" = callPackage @@ -64831,7 +61174,6 @@ self: { ]; description = "a command-line interface for adminstrating some aspects of clckwrks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "clckwrks-cli"; }) {}; @@ -64854,7 +61196,6 @@ self: { executableToolDepends = [ hsx2hs ]; description = "clckwrks.com"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "clckwrks-dot-com-server"; }) {}; @@ -64881,8 +61222,6 @@ self: { libraryToolDepends = [ hsx2hs ]; description = "bug tracking plugin for clckwrks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clckwrks-plugin-ircbot" = callPackage @@ -64906,7 +61245,6 @@ self: { libraryToolDepends = [ hsx2hs ]; description = "ircbot plugin for clckwrks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "clckwrks-plugin-mailinglist" = callPackage @@ -64931,8 +61269,6 @@ self: { ]; description = "mailing list plugin for clckwrks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clckwrks-plugin-media" = callPackage @@ -64955,7 +61291,6 @@ self: { ]; description = "media plugin for clckwrks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "clckwrks-plugin-page" = callPackage @@ -64981,7 +61316,6 @@ self: { libraryToolDepends = [ hsx2hs ]; description = "support for CMS/Blogging in clckwrks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "clckwrks-plugin-redirect" = callPackage @@ -65006,7 +61340,6 @@ self: { ]; description = "support redirects for CMS/Blogging in clckwrks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "clckwrks-theme-bootstrap" = callPackage @@ -65024,7 +61357,6 @@ self: { ]; description = "simple bootstrap based template for clckwrks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "clckwrks-theme-clckwrks" = callPackage @@ -65042,8 +61374,6 @@ self: { ]; description = "simple bootstrap based template for clckwrks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clckwrks-theme-geo-bootstrap" = callPackage @@ -65056,8 +61386,6 @@ self: { libraryHaskellDepends = [ base clckwrks hsp text ]; description = "geo bootstrap based template for clckwrks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cld2" = callPackage @@ -65069,8 +61397,6 @@ self: { libraryHaskellDepends = [ base bytestring hashable text ]; description = "Haskell bindings to Google's Compact Language Detector 2"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clean-home" = callPackage @@ -65100,8 +61426,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Open unions without need for Typeable"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cleff" = callPackage @@ -65127,8 +61451,6 @@ self: { ]; description = "Fast and concise extensible effects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cleff-plugin" = callPackage @@ -65146,7 +61468,6 @@ self: { ]; description = "Automatic disambiguation for extensible effects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "clerk" = callPackage @@ -65168,8 +61489,6 @@ self: { testToolDepends = [ lima ]; description = "Declaratively describe spreadsheets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cless" = callPackage @@ -65188,7 +61507,6 @@ self: { ]; description = "Colorized LESS"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "cless"; }) {}; @@ -65226,7 +61544,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Testing framework for Morley"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "clevercss" = callPackage @@ -65241,9 +61558,7 @@ self: { executableHaskellDepends = [ parsec ]; description = "A CSS preprocessor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "clevercss"; - broken = true; }) {}; "clexer" = callPackage @@ -65255,8 +61570,6 @@ self: { libraryHaskellDepends = [ base containers mtl parsec ]; description = "Lexes C++ code into simple tokens"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cli" = callPackage @@ -65312,8 +61625,6 @@ self: { testHaskellDepends = [ base doctest filemanip hspec QuickCheck ]; description = "Simple project template from stack"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cli-extras" = callPackage @@ -65333,8 +61644,6 @@ self: { ]; description = "Miscellaneous utilities for building and working with command line interfaces"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cli-git" = callPackage @@ -65351,8 +61660,6 @@ self: { ]; description = "Bindings to the git command-line interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cli-nix" = callPackage @@ -65369,8 +61676,6 @@ self: { ]; description = "Bindings to the nix command-line interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cli-setup" = callPackage @@ -65400,7 +61705,6 @@ self: { ]; description = "Toy game (tetris on billiard board). Hipmunk in action."; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "click-clack"; }) {}; @@ -65438,7 +61742,6 @@ self: { ]; description = "A Haskell library as database client for Clickhouse"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "clientsession" = callPackage @@ -65483,8 +61786,6 @@ self: { benchmarkHaskellDepends = [ base time ]; description = "A Clifford algebra number type for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clifford" = callPackage @@ -65517,7 +61818,6 @@ self: { ]; description = "A Clifford algebra library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pendulum"; }) {}; @@ -65538,9 +61838,7 @@ self: { ]; description = "Command Line Interface File Manager"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "clifm"; - broken = true; }) {}; "climb" = callPackage @@ -65563,7 +61861,6 @@ self: { ]; description = "Building blocks for a GHCi-like REPL with colon-commands"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "climb-demo"; }) {}; @@ -65584,8 +61881,6 @@ self: { librarySystemDepends = [ clingo ]; description = "Haskell bindings to the Clingo ASP solver"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) clingo;}; "clippard" = callPackage @@ -65597,8 +61892,6 @@ self: { libraryHaskellDepends = [ base process ]; description = "A simple Haskell library for copying text to the clipboard in a cross-platform way"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clipper" = callPackage @@ -65610,8 +61903,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell API to clipper (2d polygon union/intersection/xor/clipping API)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clippings" = callPackage @@ -65637,7 +61928,6 @@ self: { ]; description = "A parser/generator for Kindle-format clipping files (`My Clippings.txt`),"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "clippings2tsv"; }) {}; @@ -65651,8 +61941,6 @@ self: { testHaskellDepends = [ base ]; description = "Tiny library to pretty print sparklines onto the CLI"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clist" = callPackage @@ -65686,9 +61974,7 @@ self: { executableHaskellDepends = [ base ]; description = "Post tweets from stdin"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tweet"; - broken = true; }) {}; "cloben" = callPackage @@ -65706,9 +61992,7 @@ self: { ]; description = "Clone and benchmark Haskell cabal projects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cloben"; - broken = true; }) {}; "clock" = callPackage @@ -65734,8 +62018,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "A couple functions that probably should be in the 'clock' package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clocked" = callPackage @@ -65752,8 +62034,6 @@ self: { libraryPkgconfigDepends = [ QtCore ]; description = "timer functionality to clock IO commands"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {QtCore = null;}; "clogparse" = callPackage @@ -65770,8 +62050,6 @@ self: { ]; description = "Parse IRC logs such as the #haskell logs on tunes.org"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clone-all" = callPackage @@ -65791,9 +62069,7 @@ self: { ]; description = "Clone all github repositories from a given user"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "clone-all"; - broken = true; }) {}; "closed" = callPackage @@ -65824,8 +62100,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Closed type class declarations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "closed-intervals" = callPackage @@ -65843,8 +62117,6 @@ self: { ]; description = "Closed intervals of totally ordered types"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "closure" = callPackage @@ -65856,8 +62128,6 @@ self: { libraryHaskellDepends = [ base hashable unordered-containers ]; description = "Depth- and breadth-first set closures"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cloud-haskell" = callPackage @@ -65881,7 +62151,6 @@ self: { doHaddock = false; description = "The Cloud Haskell Application Platform"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cloud-seeder" = callPackage @@ -65910,7 +62179,6 @@ self: { ]; description = "A tool for interacting with AWS CloudFormation"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; }) {}; "cloudfront-signer" = callPackage @@ -65927,8 +62195,6 @@ self: { ]; description = "CloudFront URL signer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cloudi" = callPackage @@ -65963,7 +62229,6 @@ self: { ]; description = "A cloud in the file system"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "cloudyfs"; }) {}; @@ -65983,8 +62248,6 @@ self: { ]; description = "Create Core Lightning Plugins"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clr-bindings" = callPackage @@ -66001,7 +62264,6 @@ self: { testHaskellDepends = [ base ]; description = "Glue between clr-host and clr-typed"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "clr-host" = callPackage @@ -66022,8 +62284,6 @@ self: { testHaskellDepends = [ base ]; description = "Hosting the Common Language Runtime"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) glib; inherit (pkgs) mono;}; "clr-inline" = callPackage @@ -66053,8 +62313,6 @@ self: { ]; description = "Quasiquoters for inline C# and F#"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clr-marshal" = callPackage @@ -66078,8 +62336,6 @@ self: { testHaskellDepends = [ base clr-marshal hspec text ]; description = "A strongly typed Haskell interface to the CLR type system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clr-win-linker" = callPackage @@ -66127,7 +62383,6 @@ self: { ]; description = "C to Lua data wrapper generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "clua"; }) {}; @@ -66151,8 +62406,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "simple alternative to type classes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clustering" = callPackage @@ -66178,8 +62431,6 @@ self: { ]; description = "High performance clustering algorithms"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "clustertools" = callPackage @@ -66198,7 +62449,6 @@ self: { ]; description = "Tools for manipulating sequence clusters"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "clutterhs" = callPackage @@ -66216,7 +62466,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Bindings to the Clutter animation library"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) clutter; inherit (pkgs) pango;}; "cmaes" = callPackage @@ -66296,8 +62545,6 @@ self: { ]; description = "Code highlighting for cmark"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cmark-lucid" = callPackage @@ -66322,8 +62569,6 @@ self: { libraryHaskellDepends = [ base cmark ]; description = "Pattern synonyms for cmark"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cmark-sections" = callPackage @@ -66342,8 +62587,6 @@ self: { ]; description = "Represent cmark-parsed Markdown as a tree of sections"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cmath" = callPackage @@ -66355,8 +62598,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A binding to the standard C math library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cmathml3" = callPackage @@ -66376,7 +62617,6 @@ self: { executableHaskellDepends = [ base Cabal filepath ]; description = "Data model, parser, serialiser and transformations for Content MathML 3"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mathtest"; }) {}; @@ -66394,8 +62634,6 @@ self: { ]; description = "Library to compose and reuse command line fragments"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cmdargs" = callPackage @@ -66449,8 +62687,6 @@ self: { libraryHaskellDepends = [ base mtl split syb transformers ]; description = "a library for command line parsing & online help"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cmdtheline" = callPackage @@ -66472,8 +62708,6 @@ self: { ]; description = "Declarative command-line option parsing and documentation library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cmf" = callPackage @@ -66486,8 +62720,6 @@ self: { testHaskellDepends = [ base containers hedgehog ]; description = "(C)oncurrent (M)onoidal (F)olds"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cml" = callPackage @@ -66510,8 +62742,6 @@ self: { libraryHaskellDepends = [ array base ]; description = "A library for C-like programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cmph" = callPackage @@ -66530,8 +62760,6 @@ self: { testSystemDepends = [ cmph ]; description = "low level interface to CMPH"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {cmph = null;}; "cmptype" = callPackage @@ -66546,7 +62774,6 @@ self: { ]; description = "Compare types of any kinds"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cmt" = callPackage @@ -66573,9 +62800,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Write consistent git commit messages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cmt"; - broken = true; }) {}; "cmu" = callPackage @@ -66619,7 +62844,6 @@ self: { ]; description = "Detailed visualization of CMs, HMMs and their comparisions"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "cnc-spec-compiler" = callPackage @@ -66641,7 +62865,6 @@ self: { ]; description = "Compiler/Translator for CnC Specification Files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cnc"; }) {}; @@ -66675,7 +62898,6 @@ self: { ]; description = "Hardware software co-design Feldspar"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "co-log" = callPackage @@ -66702,7 +62924,6 @@ self: { testHaskellDepends = [ base co-log-core doctest Glob hedgehog ]; description = "Composable Contravariant Comonadic Logging Library"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "co-log-concurrent" = callPackage @@ -66716,8 +62937,6 @@ self: { libraryHaskellDepends = [ base co-log-core stm ]; description = "Asynchronous backend for co-log library"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "co-log-core" = callPackage @@ -66747,8 +62966,6 @@ self: { ]; description = "Structured messages support in co-log ecosystem"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "co-log-polysemy" = callPackage @@ -66789,7 +63006,6 @@ self: { ]; description = "A Polysemy logging effect for high quality (unstructured) logs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -66811,8 +63027,6 @@ self: { ]; description = "Syslog implementation on top of 'co-log-core'"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "coalpit" = callPackage @@ -66831,8 +63045,6 @@ self: { ]; description = "Command-line options and DSV parsing and printing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cobot" = callPackage @@ -66885,7 +63097,6 @@ self: { ]; description = "Biological data file formats and IO"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cobot-tools" = callPackage @@ -66909,8 +63120,6 @@ self: { ]; description = "Biological data file formats and IO"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {RNA = null;}; "code-builder" = callPackage @@ -66922,8 +63131,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Simple system for generating code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "code-conjure" = callPackage @@ -66974,7 +63181,6 @@ self: { ]; description = "Simple bidirectional serialization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "codec-beam" = callPackage @@ -66989,8 +63195,6 @@ self: { testHaskellDepends = [ base bytestring filepath process text ]; description = "Erlang VM byte code assembler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "codec-libevent" = callPackage @@ -67013,7 +63217,6 @@ self: { ]; description = "Cross-platform structure serialisation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "codec-libevent-generate"; }) {}; @@ -67049,7 +63252,6 @@ self: { ]; description = "A library for manipulating RPM files"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; }) {}; "codecov-haskell" = callPackage @@ -67073,8 +63275,6 @@ self: { testHaskellDepends = [ base HUnit ]; description = "Codecov.io support for Haskell."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "codeforces-cli" = callPackage @@ -67103,9 +63303,7 @@ self: { ]; description = "Command line interface to interact with Codeforces"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "cf"; - broken = true; }) {}; "codemonitor" = callPackage @@ -67124,7 +63322,6 @@ self: { ]; description = "Tool that automatically runs arbitrary commands when files change on disk"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "codemonitor"; }) {}; @@ -67139,8 +63336,6 @@ self: { libraryHaskellDepends = [ base curl mtl network tagsoup ]; description = "Submit and retrieve paste output from CodePad.org."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "codeworld-api" = callPackage @@ -67193,9 +63388,7 @@ self: { ]; description = "A ctags file generator for cabal project dependencies"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "codex"; - broken = true; }) {}; "codo-notation" = callPackage @@ -67211,8 +63404,6 @@ self: { ]; description = "A notation for comonads, analogous to the do-notation for monads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "coerce-role" = callPackage @@ -67262,8 +63453,6 @@ self: { benchmarkHaskellDepends = [ base gauge ]; description = "Utility functions for Coercible types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "coercion-extras" = callPackage @@ -67314,7 +63503,6 @@ self: { ]; description = "Generate clang-format config based on some existing code base"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "coformat-exe"; }) {}; @@ -67353,7 +63541,6 @@ self: { ]; description = "Utilities for Cognimeta products (such as perdure). API may change often."; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "cognimeta-utils"; }) {}; @@ -67378,9 +63565,7 @@ self: { ]; description = "Simple account manager"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "coin"; - broken = true; }) {}; "coinbase-exchange" = callPackage @@ -67419,7 +63604,6 @@ self: { ]; description = "Connector library for the coinbase exchange"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sandbox"; }) {}; @@ -67464,8 +63648,6 @@ self: { ]; description = "Client for Coinbase Pro"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "coincident-root-loci" = callPackage @@ -67485,7 +63667,6 @@ self: { ]; description = "Equivariant CSM classes of coincident root loci"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "coinor-clp" = callPackage @@ -67555,7 +63736,6 @@ self: { ]; description = "Colada implements incremental word class class induction using online LDA"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "colada"; }) {}; @@ -67574,8 +63754,6 @@ self: { ]; description = "Rudimentary JSON-RPC 2.0 client over raw TCP."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cold-widow" = callPackage @@ -67608,9 +63786,7 @@ self: { ]; description = "Generate animated 3d objects in COLLADA"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Examples"; - broken = true; }) {}; "collada-types" = callPackage @@ -67644,7 +63820,6 @@ self: { ]; description = "Collapse the duplication output into clones and return their frequencies"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "collapse-duplication"; }) {}; @@ -67659,9 +63834,7 @@ self: { executableHaskellDepends = [ base ]; description = "utility for collapsing adjacent writes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "collapse"; - broken = true; }) {}; "collate" = callPackage @@ -67683,8 +63856,6 @@ self: { ]; description = "An Applicative Functor for extracting parts of a stream of values"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "collect-errors" = callPackage @@ -67718,7 +63889,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Collection+JSON—Hypermedia Type Tools"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "collections" = callPackage @@ -67732,8 +63902,6 @@ self: { ]; description = "Useful standard collections types and related functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "collections-api" = callPackage @@ -67747,8 +63915,6 @@ self: { libraryHaskellDepends = [ array base QuickCheck ]; description = "API for collection data structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "collections-base-instances" = callPackage @@ -67764,7 +63930,6 @@ self: { ]; description = "Useful standard collections types and related functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "colock" = callPackage @@ -67797,8 +63962,6 @@ self: { ]; description = "Generic types and functions for columnar encoding and decoding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "color-counter" = callPackage @@ -67823,7 +63986,6 @@ self: { ]; description = "Count colors in images"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "color-counter"; }) {}; @@ -67874,8 +64036,6 @@ self: { ]; description = "Colorless | The Programmatic IDL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "colorless-http-client" = callPackage @@ -67892,7 +64052,6 @@ self: { ]; description = "Http Client addon for Colorless"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "colorless-scotty" = callPackage @@ -67906,7 +64065,6 @@ self: { ]; description = "Scotty server add-on for Colorless"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "colors" = callPackage @@ -67948,7 +64106,6 @@ self: { libraryHaskellDepends = [ accelerate base ]; description = "Working with colours in Accelerate"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "colour-space" = callPackage @@ -67972,7 +64129,6 @@ self: { ]; description = "Instances of the manifold-classes for colour types"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "colour-text" = callPackage @@ -68021,8 +64177,6 @@ self: { ]; description = "A jazzy, minimal web framework for Haskell, inspired by Sinatra"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "columbia" = callPackage @@ -68043,7 +64197,6 @@ self: { doHaddock = false; description = "Enhanced serialization using seeking"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "columnar" = callPackage @@ -68061,7 +64214,6 @@ self: { ]; description = "A CSV toolkit based on cassava and enum-text"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "com" = callPackage @@ -68073,8 +64225,6 @@ self: { doHaddock = false; description = "Haskell COM support library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "comark" = callPackage @@ -68093,7 +64243,6 @@ self: { executableHaskellDepends = [ base text ]; description = "Commonmark processing in pure haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "comark-hs"; }) {}; @@ -68154,8 +64303,6 @@ self: { libraryHaskellDepends = [ base containers deepseq ]; description = "Definitions of AST that represents a Commonmark (markdown) document"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "combinat" = callPackage @@ -68177,8 +64324,6 @@ self: { ]; description = "Generate and manipulate various combinatorial objects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "combinat-compat" = callPackage @@ -68198,8 +64343,6 @@ self: { ]; description = "Generate and manipulate various combinatorial objects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "combinat-diagrams" = callPackage @@ -68216,8 +64359,6 @@ self: { ]; description = "Graphical representations for various combinatorial objects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "combinator-interactive" = callPackage @@ -68239,9 +64380,7 @@ self: { ]; description = "SKI Combinator interpreter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lazyi"; - broken = true; }) {}; "combinatorial" = callPackage @@ -68277,8 +64416,6 @@ self: { ]; description = "A number of data structures to represent and allow the manipulation of standard combinatorial problems, used as test problems in computer science"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "combinatorics" = callPackage @@ -68305,8 +64442,6 @@ self: { ]; description = "Various buffer implementations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "comfort-array" = callPackage @@ -68462,8 +64597,6 @@ self: { ]; description = "A format for describing comics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "comma" = callPackage @@ -68518,9 +64651,7 @@ self: { testHaskellDepends = [ base ]; description = "pattern matching against string based commands"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example1"; - broken = true; }) {}; "commander-cli" = callPackage @@ -68542,9 +64673,7 @@ self: { testHaskellDepends = [ base commandert text unordered-containers ]; description = "A command line argument/option parser library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "task-manager"; - broken = true; }) {}; "commandert" = callPackage @@ -68580,8 +64709,6 @@ self: { ]; description = "Library for working with commoditized amounts and price histories"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "commonmark" = callPackage @@ -68733,7 +64860,6 @@ self: { ]; description = "Provide communications security using symmetric ephemeral keys"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "commsec-keyexchange" = callPackage @@ -68752,7 +64878,6 @@ self: { ]; description = "Key agreement for commsec"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "commutative" = callPackage @@ -68826,7 +64951,6 @@ self: { libraryHaskellDepends = [ base category-extras random ]; description = "Comonadic interface for random values"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "comonad-transformers" = callPackage @@ -68887,7 +65011,6 @@ self: { ]; description = "Compatibility checker for OpenAPI"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "compact" = callPackage @@ -68903,8 +65026,6 @@ self: { testHaskellDepends = [ base directory ]; description = "Non-GC'd, contiguous storage for immutable data structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "compact-list" = callPackage @@ -68917,8 +65038,6 @@ self: { testHaskellDepends = [ base ]; description = "An append only list in a compact region"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "compact-map" = callPackage @@ -68932,8 +65051,6 @@ self: { ]; description = "Compact Data.Map implementation using Data.Binary"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "compact-mutable" = callPackage @@ -68953,7 +65070,6 @@ self: { ]; description = "Mutable arrays living on the compact heap"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "compact-mutable-vector" = callPackage @@ -68967,7 +65083,6 @@ self: { testHaskellDepends = [ base compact hspec ]; description = "Mutable vector with different GC characteristics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "compact-sequences" = callPackage @@ -68982,8 +65097,6 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; description = "Stacks, queues, and deques with compact representations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "compact-socket" = callPackage @@ -69000,7 +65113,6 @@ self: { ]; description = "Socket functions for compact normal form"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "compact-string" = callPackage @@ -69014,8 +65126,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Fast, packed and strict strings with Unicode support, based on bytestrings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "compact-string-fix" = callPackage @@ -69029,8 +65139,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Same as compact-string except with a small fix so it builds on ghc-6.12"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "compact-word-vectors" = callPackage @@ -69075,8 +65183,6 @@ self: { ]; description = "A typeclass for structures which can be catMaybed, filtered, and partitioned"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "compactmap" = callPackage @@ -69127,8 +65233,6 @@ self: { ]; description = "A highly generic parser combinators library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "compdata" = callPackage @@ -69156,8 +65260,6 @@ self: { ]; description = "Compositional Data Types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "compdata-automata" = callPackage @@ -69173,7 +65275,6 @@ self: { ]; description = "Tree automata on Compositional Data Types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "compdata-dags" = callPackage @@ -69195,7 +65296,6 @@ self: { ]; description = "Compositional Data Types on DAGs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "compdata-fixplate" = callPackage @@ -69231,7 +65331,6 @@ self: { ]; description = "Parametric Compositional Data Types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "compdoc" = callPackage @@ -69251,7 +65350,6 @@ self: { ]; description = "Parse a Pandoc to a composite value"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "compdoc-dhall-decoder" = callPackage @@ -69270,7 +65368,6 @@ self: { ]; description = "Allows you to write FromDhall instances for Compdoc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "compendium-client" = callPackage @@ -69287,8 +65384,6 @@ self: { ]; description = "Client for the Compendium schema server"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "compensated" = callPackage @@ -69320,8 +65415,6 @@ self: { libraryHaskellDepends = [ base filepath parsec ]; description = "Helpers and runners for code competitions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "compilation" = callPackage @@ -69333,8 +65426,6 @@ self: { libraryHaskellDepends = [ base MissingH ]; description = "Haskell functionality for quickly assembling simple compilers"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "compiler-warnings" = callPackage @@ -69364,8 +65455,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "complex numbers with non-mandatory RealFloat"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "complex-integrate" = callPackage @@ -69393,7 +65482,6 @@ self: { ]; description = "Empirical algorithmic complexity"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "componentm" = callPackage @@ -69458,8 +65546,6 @@ self: { ]; description = "Aeson ToJSON/FromJSON implementation for the types of composable-associations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "compose-ltr" = callPackage @@ -69483,8 +65569,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Composable monad transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "composite-aeson" = callPackage @@ -69512,7 +65596,6 @@ self: { ]; description = "JSON for Vinyl records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "composite-aeson-cofree-list" = callPackage @@ -69528,7 +65611,6 @@ self: { ]; description = "Print a Cofree [] as a JSON value"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "composite-aeson-path" = callPackage @@ -69540,8 +65622,6 @@ self: { libraryHaskellDepends = [ base composite-aeson path ]; description = "Formatting data for the path library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "composite-aeson-refined" = callPackage @@ -69557,8 +65637,6 @@ self: { ]; description = "composite-aeson support for Refined from the refined package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "composite-aeson-throw" = callPackage @@ -69574,7 +65652,6 @@ self: { ]; description = "MonadThrow behaviour for composite-aeson"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "composite-aeson-writeonly" = callPackage @@ -69589,7 +65666,6 @@ self: { ]; description = "WriteOnly indicators for composite-aeson"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "composite-base" = callPackage @@ -69615,8 +65691,6 @@ self: { ]; description = "Shared utilities for composite-* packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "composite-binary" = callPackage @@ -69628,7 +65702,6 @@ self: { libraryHaskellDepends = [ base binary composite-base ]; description = "Orphan binary instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "composite-cassava" = callPackage @@ -69648,8 +65721,6 @@ self: { ]; description = "Csv parsing functionality for composite"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "composite-dhall" = callPackage @@ -69666,7 +65737,6 @@ self: { ]; description = "Dhall instances for composite records"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "composite-ekg" = callPackage @@ -69681,7 +65751,6 @@ self: { ]; description = "EKG Metrics for Vinyl records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "composite-hashable" = callPackage @@ -69693,7 +65762,6 @@ self: { libraryHaskellDepends = [ base composite-base hashable ]; description = "Orphan hashable instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "composite-ix" = callPackage @@ -69712,7 +65780,6 @@ self: { ]; description = "Indexing utilities for composite records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "composite-lens-extra" = callPackage @@ -69724,7 +65791,6 @@ self: { libraryHaskellDepends = [ base composite-base lens vinyl ]; description = "Extra lens functions for composite"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "composite-opaleye" = callPackage @@ -69747,7 +65813,6 @@ self: { ]; description = "Opaleye SQL for Vinyl records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "composite-swagger" = callPackage @@ -69769,7 +65834,6 @@ self: { ]; description = "Swagger for Vinyl records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "composite-tuple" = callPackage @@ -69783,7 +65847,6 @@ self: { libraryHaskellDepends = [ base composite-base ]; description = "Tuple functions for composite records"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "composite-xml" = callPackage @@ -69803,7 +65866,6 @@ self: { ]; description = "RecXML Type"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "composite-xstep" = callPackage @@ -69815,7 +65877,6 @@ self: { libraryHaskellDepends = [ base composite-base vinyl ]; description = "ReaderT transformer pattern for higher kinded composite data"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "composition" = callPackage @@ -69860,8 +65921,6 @@ self: { testHaskellDepends = [ base doctest QuickCheck ]; description = "Composition trees for arbitrary monoids"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "compositional-data" = callPackage @@ -69909,7 +65968,6 @@ self: { testHaskellDepends = [ base ]; description = "Plugin to generalize comprehensions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "compressed" = callPackage @@ -69929,8 +65987,6 @@ self: { ]; description = "Compressed containers and reducers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "compression" = callPackage @@ -69942,8 +65998,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Common compression algorithms"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "compstrat" = callPackage @@ -69959,7 +66013,6 @@ self: { ]; description = "Strategy combinators for compositional data types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "comptrans" = callPackage @@ -69977,7 +66030,6 @@ self: { ]; description = "Automatically converting ASTs into compositional data types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "computational-algebra" = callPackage @@ -70029,7 +66081,6 @@ self: { ]; description = "Well-kinded computational algebra library, currently supporting Groebner basis"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "computational-geometry" = callPackage @@ -70046,8 +66097,6 @@ self: { ]; description = "Collection of algorithms in Computational Geometry"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "computations" = callPackage @@ -70059,8 +66108,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Advanced notions of computation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conala-dataset" = callPackage @@ -70153,7 +66200,6 @@ self: { ]; description = "Morphological disambiguation based on constrained CRFs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "concraft-hr" = callPackage @@ -70175,7 +66221,6 @@ self: { executableHaskellDepends = [ cmdargs ]; description = "Part-of-speech tagger for Croatian"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "concraft-hr"; }) {}; @@ -70205,7 +66250,6 @@ self: { ]; description = "Morphological tagger for Polish"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "concraft-pl"; }) {}; @@ -70250,7 +66294,6 @@ self: { ]; description = "Library for the Concrete data format"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "concrete-haskell-autogen" = callPackage @@ -70267,7 +66310,6 @@ self: { ]; description = "Automatically generated Thrift definitions for the Concrete data format"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "concrete-relaxng-parser" = callPackage @@ -70287,9 +66329,7 @@ self: { ]; description = "A parser driven by a standard RELAX NG schema with concrete syntax extensions"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "parse-concrete"; - broken = true; }) {}; "concrete-typerep" = callPackage @@ -70309,8 +66349,6 @@ self: { ]; description = "Binary and Hashable instances for TypeRep"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "concur-core" = callPackage @@ -70364,9 +66402,7 @@ self: { ]; description = "Benchmarks to compare concurrency APIs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "makecharts"; - broken = true; }) {}; "concurrent-barrier" = callPackage @@ -70408,8 +66444,6 @@ self: { benchmarkHaskellDepends = [ bug criterion rerebase ]; description = "Concurrent expanding buffer"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "concurrent-dns-cache" = callPackage @@ -70572,8 +66606,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Concurrent Haskell in ST"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "concurrent-state" = callPackage @@ -70587,8 +66619,6 @@ self: { libraryHaskellDepends = [ base exceptions mtl stm transformers ]; description = "MTL-like library using TVars"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "concurrent-supply" = callPackage @@ -70603,8 +66633,6 @@ self: { testHaskellDepends = [ base containers ]; description = "A fast concurrent unique identifier supply with a pure API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "concurrent-utilities" = callPackage @@ -70618,8 +66646,6 @@ self: { libraryHaskellDepends = [ base ]; description = "More utilities and broad-used datastructures for concurrency"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "concurrentoutput" = callPackage @@ -70657,9 +66683,7 @@ self: { testHaskellDepends = [ base cmdargs hourglass hspec QuickCheck ]; description = "Parser and interpreter of OpenStreetMap conditional restriction values"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "conditional-restriction-parser-exe"; - broken = true; }) {}; "condor" = callPackage @@ -70681,7 +66705,6 @@ self: { ]; description = "Information retrieval library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "condor"; }) {}; @@ -70694,8 +66717,6 @@ self: { libraryHaskellDepends = [ array base ]; description = "Library for Condorcet voting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conductive-base" = callPackage @@ -70707,8 +66728,6 @@ self: { libraryHaskellDepends = [ array base containers random stm time ]; description = "a library for live coding and real-time musical applications"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conductive-clock" = callPackage @@ -70736,7 +66755,6 @@ self: { ]; description = "a library with examples of using Conductive with hsc3"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "conductive-song" = callPackage @@ -70748,7 +66766,6 @@ self: { libraryHaskellDepends = [ base conductive-base random ]; description = "a library of functions which are useful for composing music"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "conduino" = callPackage @@ -70878,8 +66895,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "conduit-audio interface to the LAME MP3 library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {mp3lame = null;}; "conduit-audio-samplerate" = callPackage @@ -70899,8 +66914,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "conduit-audio interface to the libsamplerate resampling library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {samplerate = null;}; "conduit-audio-sndfile" = callPackage @@ -70965,8 +66978,6 @@ self: { ]; description = "Conduit source and sink for Network.Connection."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conduit-extra" = callPackage @@ -71030,9 +67041,7 @@ self: { ]; description = "A file-finding conduit that allows user control over traversals"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "find-hs"; - broken = true; }) {}; "conduit-iconv" = callPackage @@ -71053,8 +67062,6 @@ self: { ]; description = "Conduit for character encoding conversion"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conduit-merge" = callPackage @@ -71081,8 +67088,6 @@ self: { ]; description = "A base layer for network protocols using Conduits"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conduit-parse" = callPackage @@ -71121,8 +67126,6 @@ self: { ]; description = "Allows conduit to resume sinks to feed multiple sources into it"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conduit-throttle" = callPackage @@ -71146,7 +67149,6 @@ self: { ]; description = "Throttle Conduit Producers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "conduit-tokenize-attoparsec" = callPackage @@ -71166,9 +67168,7 @@ self: { testHaskellDepends = [ attoparsec base conduit hspec resourcet ]; description = "Conduits for tokenizing streams"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "conduit-tokenize-attoparsec-example"; - broken = true; }) {}; "conduit-vfs" = callPackage @@ -71193,8 +67193,6 @@ self: { ]; description = "Virtual file system for Conduit; disk, pure, and in-memory impls"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conduit-vfs-zip" = callPackage @@ -71221,7 +67219,6 @@ self: { ]; description = "Zip archive interface for the Conduit Virtual File System"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "conduit-zstd" = callPackage @@ -71256,8 +67253,6 @@ self: { ]; description = "Parser for Haskell-based configuration files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conf-json" = callPackage @@ -71309,7 +67304,6 @@ self: { text transformers ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "confcrypt"; }) {}; @@ -71332,8 +67326,6 @@ self: { ]; description = "Configuration management library"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conferer-aeson" = callPackage @@ -71356,7 +67348,6 @@ self: { ]; description = "conferer's source for reading json files"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "conferer-dhall" = callPackage @@ -71379,8 +67370,6 @@ self: { ]; description = "Configuration for reading dhall files"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conferer-hedis" = callPackage @@ -71395,7 +67384,6 @@ self: { testHaskellDepends = [ base conferer hedis hspec text ]; description = "conferer's FromConfig instances for hedis settings"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "conferer-hspec" = callPackage @@ -71410,8 +67398,6 @@ self: { testHaskellDepends = [ base conferer hspec hspec-core text ]; description = "conferer's FromConfig instances for hspec Config"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conferer-provider-dhall" = callPackage @@ -71432,7 +67418,6 @@ self: { ]; description = "Configuration for reading dhall files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "conferer-provider-json" = callPackage @@ -71453,8 +67438,6 @@ self: { ]; description = "conferer's provider for reading json files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conferer-provider-yaml" = callPackage @@ -71473,7 +67456,6 @@ self: { ]; description = "Configuration for reading yaml files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "conferer-snap" = callPackage @@ -71494,8 +67476,6 @@ self: { ]; description = "conferer's FromConfig instances for snap Config"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conferer-source-dhall" = callPackage @@ -71516,7 +67496,6 @@ self: { ]; description = "Configuration for reading dhall files"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "conferer-source-json" = callPackage @@ -71537,8 +67516,6 @@ self: { ]; description = "conferer's source for reading json files"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conferer-source-yaml" = callPackage @@ -71556,7 +67533,6 @@ self: { ]; description = "Configuration for reading yaml files"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "conferer-warp" = callPackage @@ -71572,7 +67548,6 @@ self: { ]; description = "conferer's FromConfig instances for warp settings"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "conferer-yaml" = callPackage @@ -71587,7 +67562,6 @@ self: { testHaskellDepends = [ base conferer conferer-aeson hspec yaml ]; description = "Configuration for reading yaml files"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "confetti" = callPackage @@ -71627,7 +67601,6 @@ self: { ]; description = "A .conf file formatter"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "conffmt"; }) {}; @@ -71643,8 +67616,6 @@ self: { testHaskellDepends = [ base deiko-config tasty tasty-hunit text ]; description = "derive typeclass instances for decoding types from HOCON conf"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "config-ini" = callPackage @@ -71696,8 +67667,6 @@ self: { testHaskellDepends = [ base extra hspec lens parsec text ]; description = "Parse config files using parsec and generate parse errors on unhandled keys"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "config-schema" = callPackage @@ -71733,7 +67702,6 @@ self: { ]; description = "A small program for swapping out dot files"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "config-select"; }) {}; @@ -71765,8 +67733,6 @@ self: { libraryHaskellDepends = [ base config-value text ]; description = "Interface between config-value and System.GetOpt"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "configifier" = callPackage @@ -71795,7 +67761,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "parser for config files, shell variables, command line args"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "configuration" = callPackage @@ -71807,8 +67772,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Simple data type for application configuration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "configuration-tools" = callPackage @@ -71939,7 +67902,6 @@ self: { ]; description = "The next generation of configuration management"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "configurator-pg" = callPackage @@ -71960,8 +67922,6 @@ self: { ]; description = "Reduced parser for configurator-ng config files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "confsolve" = callPackage @@ -71980,9 +67940,7 @@ self: { ]; description = "A command line tool for resolving conflicts of file synchronizers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "confsolve"; - broken = true; }) {}; "congruence-relation" = callPackage @@ -71994,8 +67952,6 @@ self: { libraryHaskellDepends = [ array base containers ]; description = "Decidable congruence relations for Haskell: up to you whether this is a joke"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conic-graphs" = callPackage @@ -72011,7 +67967,6 @@ self: { ]; description = "Vinyl-style extensible graphs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "conjugateGradient" = callPackage @@ -72043,9 +67998,7 @@ self: { ]; description = "A BitTorrent client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "conjure"; - broken = true; }) {}; "conkin" = callPackage @@ -72063,8 +68016,6 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Tools for functors from Hask^k to Hask"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "conlogger" = callPackage @@ -72079,9 +68030,7 @@ self: { executableHaskellDepends = [ base text ]; description = "A logger for a concurrent program"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "connection" = callPackage @@ -72118,8 +68067,6 @@ self: { ]; description = "Connection pool built on top of resource-pool and streaming-commons"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "connection-string" = callPackage @@ -72136,8 +68083,6 @@ self: { testHaskellDepends = [ base doctest text ]; description = "A library for parsing connection strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "connections" = callPackage @@ -72155,9 +68100,7 @@ self: { testHaskellDepends = [ base hedgehog time ]; description = "Orders, Galois connections, and lattices"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "doctest"; - broken = true; }) {}; "consistent" = callPackage @@ -72175,8 +68118,6 @@ self: { testHaskellDepends = [ base lifted-async transformers ]; description = "Eventually consistent STM transactions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "console-program" = callPackage @@ -72194,8 +68135,6 @@ self: { ]; description = "Interpret the command line and a config file as commands and options"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "console-prompt" = callPackage @@ -72229,8 +68168,6 @@ self: { libraryHaskellDepends = [ base bytestring primitive ptrdiff ]; description = "Read-only mutable primitives"; license = "(BSD-2-Clause OR Apache-2.0)"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "const-math-ghc-plugin" = callPackage @@ -72243,8 +68180,6 @@ self: { testHaskellDepends = [ base directory process ]; description = "Compiler plugin for constant math elimination"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "constable" = callPackage @@ -72257,8 +68192,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "A safe interface for Const summarization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "constaparser" = callPackage @@ -72281,8 +68214,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Equality by only Constructor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "constrained" = callPackage @@ -72294,8 +68225,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Generalization of standard Functor, Foldable, and Traversable classes"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "constrained-categories" = callPackage @@ -72311,8 +68240,6 @@ self: { ]; description = "Constrained clones of the category-theory type classes, using ConstraintKinds"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "constrained-category" = callPackage @@ -72332,7 +68259,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Constrained Categories"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "constrained-dynamic" = callPackage @@ -72345,8 +68271,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Dynamic typing with retained constraints"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "constrained-monads" = callPackage @@ -72370,8 +68294,6 @@ self: { ]; description = "Typeclasses and instances for monads with constraints"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "constrained-normal" = callPackage @@ -72398,7 +68320,6 @@ self: { ]; description = "Instances of standard platform types for 'constrained' package"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "constraint" = callPackage @@ -72412,7 +68333,6 @@ self: { libraryHaskellDepends = [ base category unconstrained ]; description = "Reified constraints"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "constraint-classes" = callPackage @@ -72435,7 +68355,6 @@ self: { libraryHaskellDepends = [ base indextype ]; description = "Some conviencience type functions for manipulating constraints"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "constraint-reflection" = callPackage @@ -72447,7 +68366,6 @@ self: { libraryHaskellDepends = [ base category constraint reflection ]; description = "Constraint reflection"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "constraint-tuples" = callPackage @@ -72499,8 +68417,6 @@ self: { ]; description = "Manipulating constraints and deriving class instances programmatically"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "constraints-emerge" = callPackage @@ -72517,8 +68433,6 @@ self: { testHaskellDepends = [ base constraints hspec transformers ]; description = "Defer instance lookups until runtime"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "constraints-extras" = callPackage @@ -72573,8 +68487,6 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Haskell version of the Construct library for easy specification of file formats"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "constructible" = callPackage @@ -72590,7 +68502,6 @@ self: { ]; description = "Exact computation with constructible real numbers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "constructive-algebra" = callPackage @@ -72602,8 +68513,6 @@ self: { libraryHaskellDepends = [ base QuickCheck type-level ]; description = "A library of constructive algebra"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "consul-haskell" = callPackage @@ -72628,8 +68537,6 @@ self: { ]; description = "A consul client for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "consumers" = callPackage @@ -72656,7 +68563,6 @@ self: { ]; description = "Concurrent PostgreSQL data consumers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "container" = callPackage @@ -72670,7 +68576,6 @@ self: { ]; description = "Containers abstraction and utilities"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "container-builder" = callPackage @@ -72741,9 +68646,7 @@ self: { ]; description = "Extensive benchmark suite for containers package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "benchmark"; - broken = true; }) {}; "containers-deepseq" = callPackage @@ -72778,8 +68681,6 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols containers ]; description = "Unicode alternatives for common functions and operators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "containers-verified" = callPackage @@ -72791,8 +68692,6 @@ self: { libraryHaskellDepends = [ containers ]; description = "Formally verified drop-in replacement of containers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "content-store" = callPackage @@ -72817,7 +68716,6 @@ self: { ]; description = "Store and retrieve data from an on-disk store"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; }) {}; "context" = callPackage @@ -72927,8 +68825,6 @@ self: { ]; description = "An abstraction of a stack and stack-based monadic context"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "context-wai-middleware" = callPackage @@ -73007,8 +68903,6 @@ self: { libraryHaskellDepends = [ base contiguous primitive ]; description = "contiguous with bounds checks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "contiguous-fft" = callPackage @@ -73020,8 +68914,6 @@ self: { libraryHaskellDepends = [ base contiguous primitive semirings ]; description = "dft of contiguous memory structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "continue" = callPackage @@ -73038,8 +68930,6 @@ self: { ]; description = "Monads with suspension and arbitrary-spot reentry"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "continued-fraction" = callPackage @@ -73070,8 +68960,6 @@ self: { ]; description = "Continued fractions"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "continuum" = callPackage @@ -73088,7 +68976,6 @@ self: { base bytestring cereal containers mtl nanomsg-haskell time ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "continuum-client" = callPackage @@ -73103,7 +68990,6 @@ self: { base bytestring cereal containers mtl nanomsg-haskell time ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "contra-tracer" = callPackage @@ -73126,8 +69012,6 @@ self: { libraryHaskellDepends = [ aeson base contra-tracer ]; description = "A logging library built on top of contra-tracer to make configuring and declaring multiple tracers easy (via generics)"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "contracheck-applicative" = callPackage @@ -73143,8 +69027,6 @@ self: { ]; description = "Validation types/typeclass based on the contravariance"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "contravariant" = callPackage @@ -73187,7 +69069,6 @@ self: { ]; description = "Class of monad transformers which control operations can be lifted thru"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "control-block" = callPackage @@ -73239,8 +69120,6 @@ self: { ]; description = "An alternative to monads in do-notation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "control-event" = callPackage @@ -73268,8 +69147,6 @@ self: { ]; description = "A typeclass for type isomorphisms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "control-monad-attempt" = callPackage @@ -73281,7 +69158,6 @@ self: { libraryHaskellDepends = [ attempt base transformers ]; description = "Monad transformer for attempt. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "control-monad-exception" = callPackage @@ -73351,8 +69227,6 @@ self: { libraryHaskellDepends = [ base failure transformers ]; description = "A class for monads which can fail with an error. (deprecated)"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "control-monad-failure-mtl" = callPackage @@ -73364,8 +69238,6 @@ self: { libraryHaskellDepends = [ base failure mtl ]; description = "A class for monads which can fail with an error for mtl 1 (deprecated)"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "control-monad-free" = callPackage @@ -73443,8 +69315,6 @@ self: { libraryHaskellDepends = [ base contstuff monads-tf ]; description = "ContStuff instances for monads-tf transformers (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "contstuff-transformers" = callPackage @@ -73456,8 +69326,6 @@ self: { libraryHaskellDepends = [ base contstuff transformers ]; description = "Deprecated interface between contstuff 0.7.0 and the transformers package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "converge" = callPackage @@ -73540,7 +69408,6 @@ self: { ]; description = "Injective explicit total and partial conversions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "convert" = callPackage @@ -73558,7 +69425,6 @@ self: { ]; description = "Safe and unsafe data conversion utilities with strong type-level operation. checking."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "convert-annotation" = callPackage @@ -73582,9 +69448,7 @@ self: { ]; description = "Convert the annotation of a gene to another in a delimited file using a variety of different databases"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "convert-annotation"; - broken = true; }) {}; "convertible" = callPackage @@ -73617,7 +69481,6 @@ self: { ]; description = "convertible instances for ascii"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "convertible-text" = callPackage @@ -73638,7 +69501,6 @@ self: { ]; description = "Typeclasses and instances for converting between types (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cookbook" = callPackage @@ -73713,7 +69575,6 @@ self: { testHaskellDepends = [ base HUnit lens ]; description = "A representation of latitude and longitude"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "copilot" = callPackage @@ -73734,7 +69595,6 @@ self: { ]; description = "A stream DSL for writing embedded C programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "copilot-c99" = callPackage @@ -73757,8 +69617,6 @@ self: { ]; description = "A compiler for Copilot targeting C99"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "copilot-cbmc" = callPackage @@ -73775,7 +69633,6 @@ self: { ]; description = "Copilot interface to a C model-checker"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "copilot-core" = callPackage @@ -73810,7 +69667,6 @@ self: { ]; description = "FRP sketch programming with Copilot"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "copilot-interpreter" = callPackage @@ -73850,7 +69706,6 @@ self: { ]; description = "A Haskell-embedded DSL for monitoring hard real-time distributed systems"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "copilot-libraries" = callPackage @@ -73864,7 +69719,6 @@ self: { ]; description = "Libraries for the Copilot language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "copilot-prettyprinter" = callPackage @@ -73891,7 +69745,6 @@ self: { ]; description = "A compiler for CoPilot targeting SBV"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "copilot-theorem" = callPackage @@ -73911,7 +69764,6 @@ self: { ]; description = "k-induction for Copilot"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "copr" = callPackage @@ -73931,8 +69783,6 @@ self: { testHaskellDepends = [ base hlint ]; description = "Haskell interface to the Fedora Copr system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "copr-api" = callPackage @@ -73975,9 +69825,7 @@ self: { ]; description = "Yet another shell monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "readme"; - broken = true; }) {}; "core" = callPackage @@ -73989,8 +69837,6 @@ self: { libraryHaskellDepends = [ base bytestring parsec pretty ]; description = "External core parser and pretty printer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "core-compiler" = callPackage @@ -74010,9 +69856,7 @@ self: { executableToolDepends = [ alex happy ]; description = "compile your own mini functional language with Core"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "core-compiler-exe"; - broken = true; }) {}; "core-data" = callPackage @@ -74060,9 +69904,7 @@ self: { ]; description = "A subset of Haskell using in UCC for teaching purpose"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "core-haskell"; - broken = true; }) {}; "core-program" = callPackage @@ -74135,8 +69977,6 @@ self: { testHaskellDepends = [ base ]; description = "\"Provide warnings for unexpected Core generation\""; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "core-webserver-servant" = callPackage @@ -74198,9 +70038,7 @@ self: { ]; description = "A bliki written using yesod. Uses pandoc to process files stored in git."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "corebot-bliki"; - broken = true; }) {}; "corecursive-main" = callPackage @@ -74239,8 +70077,6 @@ self: { librarySystemDepends = [ rocksdb ]; description = "Launches CoreNLP and parses the JSON output"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) rocksdb;}; "cornea" = callPackage @@ -74273,7 +70109,6 @@ self: { libraryHaskellDepends = [ base enumerator monad-coroutine ]; description = "Bridge between the monad-coroutine and enumerator packages"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "coroutine-iteratee" = callPackage @@ -74285,7 +70120,6 @@ self: { libraryHaskellDepends = [ base iteratee monad-coroutine ]; description = "Bridge between the monad-coroutine and iteratee packages"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "coroutine-object" = callPackage @@ -74297,8 +70131,6 @@ self: { libraryHaskellDepends = [ base either free mtl transformers ]; description = "Object-oriented programming realization using coroutine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "couch-hs" = callPackage @@ -74317,9 +70149,7 @@ self: { ]; description = "A CouchDB view server for Haskell"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "couch-hs"; - broken = true; }) {}; "couch-simple" = callPackage @@ -74346,7 +70176,6 @@ self: { testToolDepends = [ couchdb ]; description = "A modern, lightweight, complete client for CouchDB"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {couchdb = null;}; "couchdb-conduit" = callPackage @@ -74376,8 +70205,6 @@ self: { ]; description = "Couch DB client library using http-conduit and aeson"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "couchdb-enumerator" = callPackage @@ -74405,7 +70232,6 @@ self: { ]; description = "Couch DB client library using http-enumerator and aeson"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "count" = callPackage @@ -74460,8 +70286,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "An object frequency counter"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "country" = callPackage @@ -74491,7 +70315,6 @@ self: { ]; description = "Country data type and functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "country_0_2_4_0" = callPackage @@ -74536,8 +70359,6 @@ self: { testHaskellDepends = [ aeson base HTF HUnit ]; description = "ISO 3166 country codes and i18n names"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "courier" = callPackage @@ -74562,8 +70383,6 @@ self: { ]; description = "A message-passing library for simplifying network applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "court" = callPackage @@ -74583,8 +70402,6 @@ self: { ]; description = "Simple and flexible CI system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "covariance" = callPackage @@ -74612,8 +70429,6 @@ self: { testHaskellDepends = [ base hspec HUnit QuickCheck ]; description = "Exhaustivity Checking Library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "coya" = callPackage @@ -74643,8 +70458,6 @@ self: { ]; description = "A simple C++ parser with preprocessor features. C++ refactorings included."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cpio-conduit" = callPackage @@ -74664,8 +70477,6 @@ self: { ]; description = "Conduit-based CPIO"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cpkg" = callPackage @@ -74696,7 +70507,6 @@ self: { testHaskellDepends = [ base hspec hspec-megaparsec megaparsec ]; description = "Build tool for C"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cpkg"; }) {}; @@ -74732,8 +70542,6 @@ self: { testHaskellDepends = [ base process QuickCheck ]; description = "C++ Foreign Import Generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cppfilt" = callPackage @@ -74803,7 +70611,6 @@ self: { ]; description = "Run random effect using cprng-aes, a crypto pseudo number generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "cps-except" = callPackage @@ -74857,8 +70664,6 @@ self: { description = "Binding for the cpuid machine instruction on x86 compatible processors"; license = lib.licenses.gpl2Only; platforms = lib.platforms.x86; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cpuinfo" = callPackage @@ -74883,9 +70688,7 @@ self: { executableHaskellDepends = [ base mtl process ]; description = "Modify the cpu frequency on OpenBSD systems"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cpuperf"; - broken = true; }) {}; "cpython" = callPackage @@ -74901,8 +70704,6 @@ self: { testPkgconfigDepends = [ python3 ]; description = "Bindings for libpython"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) python3;}; "cql" = callPackage @@ -74951,8 +70752,6 @@ self: { doHaddock = false; description = "Cassandra CQL client"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cql-io-tinylog" = callPackage @@ -74964,7 +70763,6 @@ self: { libraryHaskellDepends = [ base bytestring cql-io tinylog ]; description = "Tinylog integration for cql-io"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "cqrs" = callPackage @@ -74993,8 +70791,6 @@ self: { ]; description = "Command-Query Responsibility Segregation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cqrs-example" = callPackage @@ -75016,7 +70812,6 @@ self: { ]; description = "Example for cqrs package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "cqrs-example"; }) {}; @@ -75034,7 +70829,6 @@ self: { testHaskellDepends = [ base cqrs-core cqrs-testkit hspec random ]; description = "Memory backend for the cqrs package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "cqrs-postgresql" = callPackage @@ -75058,7 +70852,6 @@ self: { ]; description = "PostgreSQL backend for the cqrs package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "cqrs-sqlite3" = callPackage @@ -75079,7 +70872,6 @@ self: { ]; description = "SQLite3 backend for the cqrs package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "cqrs-test" = callPackage @@ -75096,7 +70888,6 @@ self: { ]; description = "Command-Query Responsibility Segregation Test Support"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "cqrs-testkit" = callPackage @@ -75114,7 +70905,6 @@ self: { ]; description = "Command-Query Responsibility Segregation Test Support"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "cqrs-types" = callPackage @@ -75145,9 +70935,7 @@ self: { ]; description = "Code review tool"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "cr"; - broken = true; }) {}; "crack" = callPackage @@ -75160,8 +70948,6 @@ self: { librarySystemDepends = [ crack ]; description = "A haskell binding to cracklib"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {crack = null;}; "crackNum_2_4" = callPackage @@ -75195,7 +70981,6 @@ self: { ]; description = "Crack various integer and floating-point data formats"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "crackNum"; }) {}; @@ -75228,7 +71013,6 @@ self: { ]; description = "A UNIX configuration management library in Haskell"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "craftwerk" = callPackage @@ -75242,8 +71026,6 @@ self: { libraryHaskellDepends = [ base colour mtl vector-space ]; description = "2D graphics library with integrated TikZ output"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "craftwerk-cairo" = callPackage @@ -75255,7 +71037,6 @@ self: { libraryHaskellDepends = [ base cairo craftwerk mtl ]; description = "Cairo backend for Craftwerk"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "craftwerk-gtk" = callPackage @@ -75273,7 +71054,6 @@ self: { ]; description = "Gtk UI for Craftwerk"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "crawlchain" = callPackage @@ -75294,8 +71074,6 @@ self: { ]; description = "Simulation user crawl paths"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "craze" = callPackage @@ -75328,7 +71106,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "HTTP Racing Library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "craze-example"; }) {}; @@ -75358,8 +71135,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Calculate the crc16-ccitt"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "crc16-table" = callPackage @@ -75389,8 +71164,6 @@ self: { description = "Haskell bindings for crc32c"; license = lib.licenses.bsd3; platforms = lib.platforms.x86; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "crdt" = callPackage @@ -75407,8 +71180,6 @@ self: { ]; description = "Conflict-free replicated data types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "crdt-event-fold" = callPackage @@ -75434,8 +71205,6 @@ self: { ]; description = "Garbage collected event folding CRDT"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "creatur" = callPackage @@ -75461,8 +71230,6 @@ self: { ]; description = "Framework for artificial life experiments"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "credential-store" = callPackage @@ -75482,9 +71249,7 @@ self: { testHaskellDepends = [ base bytestring tasty tasty-hunit ]; description = "Library to access secure credential storage providers"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "credential-store-exe"; - broken = true; }) {}; "credentials" = callPackage @@ -75507,7 +71272,6 @@ self: { testHaskellDepends = [ base ]; description = "Secure Credentials Storage and Distribution"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "credentials-cli" = callPackage @@ -75532,7 +71296,6 @@ self: { ]; description = "Secure Credentials Administration"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "credentials"; }) {}; @@ -75555,8 +71318,6 @@ self: { doHaddock = false; description = "Compositional representable executable machines"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "crf-chain1" = callPackage @@ -75574,7 +71335,6 @@ self: { ]; description = "First-order, linear-chain conditional random fields"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "crf-chain1-constrained" = callPackage @@ -75594,7 +71354,6 @@ self: { ]; description = "First-order, constrained, linear-chain conditional random fields"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "crf-chain2-generic" = callPackage @@ -75612,7 +71371,6 @@ self: { ]; description = "Second-order, generic, constrained, linear conditional random fields"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "crf-chain2-tiers" = callPackage @@ -75631,7 +71389,6 @@ self: { ]; description = "Second-order, tiered, constrained, linear conditional random fields"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "critbit" = callPackage @@ -75660,8 +71417,6 @@ self: { ]; description = "Crit-bit maps and sets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "criterion" = callPackage @@ -75755,9 +71510,7 @@ self: { ]; description = "A simple tool for comparing in Criterion benchmark results"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "criterion-cmp"; - broken = true; }) {}; "criterion-compare" = callPackage @@ -75779,9 +71532,7 @@ self: { ]; description = "A simple tool for visualising differences in Criterion benchmark results"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "criterion-compare"; - broken = true; }) {}; "criterion-measurement" = callPackage @@ -75824,8 +71575,6 @@ self: { ]; description = "Enhancement of the \"criterion\" benchmarking library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "criterion-to-html" = callPackage @@ -75844,9 +71593,7 @@ self: { ]; description = "Convert criterion output to HTML reports"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "criterion-to-html"; - broken = true; }) {}; "criu-rpc" = callPackage @@ -75863,7 +71610,6 @@ self: { ]; description = "CRIU RPC client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "criu-rpc-types" = callPackage @@ -75877,8 +71623,6 @@ self: { libraryPkgconfigDepends = [ protobuf ]; description = "Criu RPC protocol buffer types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) protobuf;}; "crjdt-haskell" = callPackage @@ -75894,8 +71638,6 @@ self: { testHaskellDepends = [ base containers hedgehog hspec mtl ]; description = "A Conflict-Free Replicated JSON Datatype for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "crockford" = callPackage @@ -75907,8 +71649,6 @@ self: { libraryHaskellDepends = [ base digits QuickCheck safe ]; description = "An implementation of Douglas Crockford's base32 encoding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "crocodile" = callPackage @@ -75927,9 +71667,7 @@ self: { ]; description = "An offline renderer supporting ray tracing and photon mapping"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "crocodile"; - broken = true; }) {}; "cron" = callPackage @@ -75975,7 +71713,6 @@ self: { ]; description = "Cron datatypes and Attoparsec parser"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "cronus" = callPackage @@ -75993,8 +71730,6 @@ self: { ]; description = "Another bloated standard library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cropty" = callPackage @@ -76021,8 +71756,6 @@ self: { testHaskellDepends = [ base hlint ]; description = "Request and Response types for Eval.so's API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "crunghc" = callPackage @@ -76041,9 +71774,7 @@ self: { ]; description = "A runghc replacement with transparent caching"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "crunghc"; - broken = true; }) {}; "crypt-sha512" = callPackage @@ -76119,8 +71850,6 @@ self: { ]; description = "Generic cryptography cipher benchmarks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "crypto-cipher-tests" = callPackage @@ -76172,7 +71901,6 @@ self: { testHaskellDepends = [ base bytestring QuickCheck ]; description = "An educational tool for studying classical cryptography schemes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "crypto-conduit" = callPackage @@ -76194,7 +71922,6 @@ self: { ]; description = "Conduit interface for cryptographic operations (from crypto-api)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "crypto-enigma" = callPackage @@ -76230,8 +71957,6 @@ self: { ]; description = "Like crypto-pubkey-openssh but not dependent on any specific crypto library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "crypto-multihash" = callPackage @@ -76252,9 +71977,7 @@ self: { testHaskellDepends = [ base bytestring hspec QuickCheck ]; description = "Multihash library on top of cryptonite crypto library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mh"; - broken = true; }) {}; "crypto-numbers" = callPackage @@ -76278,8 +72001,6 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion mtl ]; description = "Cryptographic numbers: functions and algorithms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "crypto-pubkey" = callPackage @@ -76306,7 +72027,6 @@ self: { ]; description = "Public Key cryptography"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "crypto-pubkey-openssh" = callPackage @@ -76330,8 +72050,6 @@ self: { ]; description = "OpenSSH keys decoder/encoder"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "crypto-pubkey-types" = callPackage @@ -76385,8 +72103,6 @@ self: { ]; description = "A random effect using crypto-random"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "crypto-rng" = callPackage @@ -76437,8 +72153,6 @@ self: { ]; description = "A simple high level encryption interface based on cryptonite"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "crypto-sodium" = callPackage @@ -76462,7 +72176,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Easy-and-safe-to-use high-level cryptography based on Sodium"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "crypto-token" = callPackage @@ -76505,7 +72218,6 @@ self: { ]; description = "Symmetrical block and stream ciphers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cryptocompare" = callPackage @@ -76524,8 +72236,6 @@ self: { testHaskellDepends = [ base hspec hspec-expectations MissingH ]; description = "Haskell wrapper for the cryptocompare API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cryptoconditions" = callPackage @@ -76549,8 +72259,6 @@ self: { ]; description = "Interledger Crypto-Conditions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cryptohash" = callPackage @@ -76706,7 +72414,6 @@ self: { ]; description = "Reversable and secure encoding of object ids as a bytestring"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cryptoids-class" = callPackage @@ -76720,7 +72427,6 @@ self: { libraryHaskellDepends = [ base cryptoids-types exceptions ]; description = "Typeclass-based interface to cryptoids"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cryptoids-types" = callPackage @@ -76738,8 +72444,6 @@ self: { ]; description = "Shared types for encrypting internal object identifiers before exposure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cryptol" = callPackage @@ -76781,7 +72485,6 @@ self: { ]; description = "Cryptol: The Language of Cryptography"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "crypton" = callPackage @@ -76866,8 +72569,6 @@ self: { ]; description = "Simple and easy network connections API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "crypton-x509" = callPackage @@ -76998,7 +72699,6 @@ self: { ]; description = "Cryptography Primitives sink"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cryptonite-conduit" = callPackage @@ -77084,8 +72784,6 @@ self: { ]; description = "Bindings for Cryptsy cryptocurrency exchange API"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "crystalfontz" = callPackage @@ -77097,7 +72795,6 @@ self: { libraryHaskellDepends = [ base crc16-table MaybeT serialport ]; description = "Control Crystalfontz LCD displays"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "csa" = callPackage @@ -77114,8 +72811,6 @@ self: { ]; description = "Connection-set algebra (CSA) library"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cse-ghc-plugin" = callPackage @@ -77127,8 +72822,6 @@ self: { libraryHaskellDepends = [ base ghc ]; description = "Compiler plugin for common subexpression elimination"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "csg" = callPackage @@ -77160,9 +72853,7 @@ self: { ]; description = "Analytical CSG (Constructive Solid Geometry) library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "csg-raycaster"; - broken = true; }) {}; "csound-catalog" = callPackage @@ -77180,7 +72871,6 @@ self: { ]; description = "a gallery of Csound instruments"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "csound-controllers" = callPackage @@ -77192,7 +72882,6 @@ self: { libraryHaskellDepends = [ base csound-expression ]; testHaskellDepends = [ base csound-expression ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "csound-expression" = callPackage @@ -77214,7 +72903,6 @@ self: { ]; description = "library to make electronic music"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "csound-expression-dynamic" = callPackage @@ -77234,8 +72922,6 @@ self: { ]; description = "dynamic core for csound-expression library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "csound-expression-opcodes" = callPackage @@ -77253,7 +72939,6 @@ self: { ]; description = "opcodes for the library csound-expression"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "csound-expression-typed" = callPackage @@ -77276,7 +72961,6 @@ self: { ]; description = "typed core for the library csound-expression"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "csound-sampler" = callPackage @@ -77290,7 +72974,6 @@ self: { libraryHaskellDepends = [ base csound-expression transformers ]; description = "A musical sampler based on Csound"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "csp" = callPackage @@ -77321,7 +73004,6 @@ self: { ]; description = "A command line type checker for CSPM files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cspretty" = callPackage @@ -77333,8 +73015,6 @@ self: { libraryHaskellDepends = [ base containers pretty ]; description = "AST and pretty printer for CSPm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "css" = callPackage @@ -77346,8 +73026,6 @@ self: { libraryHaskellDepends = [ base mtl text ]; description = "Minimal monadic CSS DSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "css-easings" = callPackage @@ -77364,8 +73042,6 @@ self: { ]; description = "Defining and manipulating css easing strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "css-selectors" = callPackage @@ -77390,8 +73066,6 @@ self: { ]; description = "Parsing, rendering and manipulating css selectors in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "css-simple" = callPackage @@ -77405,8 +73079,6 @@ self: { benchmarkHaskellDepends = [ base criterion mtl text text-builder ]; description = "eDSL for CSS"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "css-syntax" = callPackage @@ -77495,7 +73167,6 @@ self: { ]; description = "A flexible, fast, enumerator-based CSV parser library for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "csv-nptools" = callPackage @@ -77513,8 +73184,6 @@ self: { ]; description = "A collection of CSV tools"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "csv-sip" = callPackage @@ -77533,8 +73202,6 @@ self: { ]; description = "extracts data from a CSV file"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "csv-table" = callPackage @@ -77580,8 +73247,6 @@ self: { librarySystemDepends = [ ctemplate ]; description = "Binding to the Google ctemplate library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {ctemplate = null;}; "ctkl" = callPackage @@ -77593,8 +73258,6 @@ self: { libraryHaskellDepends = [ array base ]; description = "packaging of Manuel Chakravarty's CTK Light for Hackage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ctpl" = callPackage @@ -77611,7 +73274,6 @@ self: { executableHaskellDepends = [ array base chatty-text chatty-utils ]; description = "A programming language for text modification"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "ctrie" = callPackage @@ -77652,7 +73314,6 @@ self: { ]; description = "Cubic DSL for 3D printing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "cubical" = callPackage @@ -77732,9 +73393,7 @@ self: { executableHaskellDepends = [ base GLUT Yampa ]; description = "3D Yampa/GLUT Puzzle Game"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "cuboid"; - broken = true; }) {}; "cuckoo" = callPackage @@ -77757,8 +73416,6 @@ self: { doHaddock = false; description = "Haskell Implementation of Cuckoo Filters"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cuckoo-filter" = callPackage @@ -77785,9 +73442,7 @@ self: { ]; description = "Pure and impure Cuckoo Filter"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "benchmarks"; - broken = true; }) {}; "cuda" = callPackage @@ -77891,8 +73546,6 @@ self: { libraryHaskellDepends = [ aeson base bytestring curl text ]; description = "Communicate with web services using JSON"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "curl-cookiejar" = callPackage @@ -77939,9 +73592,7 @@ self: { ]; description = "A framework for declaratively writing curl based API tests"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "curl-runnings"; - broken = true; }) {}; "curlhs" = callPackage @@ -77968,8 +73619,6 @@ self: { testHaskellDepends = [ base parsec text ]; description = "Curly braces (brackets) expanding"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "currencies" = callPackage @@ -77982,8 +73631,6 @@ self: { testHaskellDepends = [ base hspec text ]; description = "Currencies representation, pretty printing and conversion"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "currency" = callPackage @@ -78029,8 +73676,6 @@ self: { ]; description = "Typesafe currency conversion"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "current-locale" = callPackage @@ -78072,8 +73717,6 @@ self: { testHaskellDepends = [ base Cabal filepath mtl ]; description = "Functions for manipulating Curry programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "curry-frontend" = callPackage @@ -78101,9 +73744,7 @@ self: { ]; description = "Compile the functional logic language Curry to several intermediate formats"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "curry-frontend"; - broken = true; }) {}; "currycarbon" = callPackage @@ -78172,8 +73813,6 @@ self: { ]; description = "Fast, Haskell RPC"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "curryrs" = callPackage @@ -78187,8 +73826,6 @@ self: { benchmarkHaskellDepends = [ base ]; description = "Easy to use FFI Bridge for using Rust in Haskell"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cursedcsv" = callPackage @@ -78208,9 +73845,7 @@ self: { ]; description = "Terminal tool for viewing tabular data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cursedcsv"; - broken = true; }) {}; "cursor" = callPackage @@ -78337,8 +73972,6 @@ self: { ]; description = "Library for drawing curve based images"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cusolver" = callPackage @@ -78401,8 +74034,6 @@ self: { libraryHaskellDepends = [ base basic-prelude monad-loops ]; description = "An enhanced prelude, serving as a foundation for my projects"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "cut-the-crap" = callPackage @@ -78441,9 +74072,7 @@ self: { description = "Cuts out uninteresting parts of videos by detecting silences"; license = lib.licenses.mit; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; mainProgram = "cut-the-crap"; - broken = true; }) {pocketsphinx = null; sphinxbase = null;}; "cutter" = callPackage @@ -78484,7 +74113,6 @@ self: { ]; description = "Functional Combinators for Computer Vision"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "test-cv-combinators"; }) {}; @@ -78564,7 +74192,6 @@ self: { ]; description = "Haskell bindings for the neo4j \"cypher\" query language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "czipwith" = callPackage @@ -78609,8 +74236,6 @@ self: { ]; description = "Permissively licensed D-Bus client library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "d10" = callPackage @@ -78658,8 +74283,6 @@ self: { libraryHaskellDepends = [ base mtl random text ]; description = "Declarative visualization on a web browser with DSL approach"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "daemonize-doublefork" = callPackage @@ -78716,8 +74339,6 @@ self: { ]; description = "Compile-time, type-safe directed acyclic graphs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dahdit" = callPackage @@ -78739,8 +74360,6 @@ self: { ]; description = "Binary parsing and serialization with integrated size"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "daino" = callPackage @@ -78772,7 +74391,6 @@ self: { ]; description = "daino is a static site generator (SSG) using shake and pandoc"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "daino"; }) {}; @@ -78792,8 +74410,6 @@ self: { testHaskellDepends = [ base bytestring hspec HUnit QuickCheck ]; description = "Parsing dAmn messages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "danibot" = callPackage @@ -78816,9 +74432,7 @@ self: { executableHaskellDepends = [ base optparse-applicative ]; description = "Basic Slack bot framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "danibot"; - broken = true; }) {}; "dao" = callPackage @@ -78849,9 +74463,7 @@ self: { ]; description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "dao"; - broken = true; }) {}; "dapi" = callPackage @@ -78870,7 +74482,6 @@ self: { ]; description = "Prints a series of dates"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dapi"; }) {}; @@ -78944,7 +74555,6 @@ self: { ]; description = "Comparative benchmark suite for darcs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "darcs-benchmark"; }) {}; @@ -78977,7 +74587,6 @@ self: { executableSystemDepends = [ curl ]; description = "a distributed, interactive, smart revision control system"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "darcs"; }) {inherit (pkgs) curl;}; @@ -78997,8 +74606,6 @@ self: { ]; description = "Tools to help manage Debian packages with Darcs"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "darcs-cabalized" = callPackage @@ -79020,9 +74627,7 @@ self: { executableSystemDepends = [ curl ncurses zlib ]; description = "David's Advanced Version Control System"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "darcs"; - broken = true; }) {inherit (pkgs) curl; inherit (pkgs) ncurses; inherit (pkgs) zlib;}; @@ -79043,7 +74648,6 @@ self: { ]; description = "Import/export git fast-import streams to/from darcs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "darcs-fastconvert"; }) {}; @@ -79063,9 +74667,7 @@ self: { ]; description = "Generate graphs of darcs repository activity"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "darcs-graph"; - broken = true; }) {}; "darcs-monitor" = callPackage @@ -79083,9 +74685,7 @@ self: { ]; description = "Darcs repository monitor (sends email)"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "darcs-monitor"; - broken = true; }) {}; "darcs-scripts" = callPackage @@ -79116,9 +74716,7 @@ self: { ]; description = "Outputs dependencies of darcs patches in dot format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "darcs2dot"; - broken = true; }) {}; "darcsden" = callPackage @@ -79146,7 +74744,6 @@ self: { ]; description = "Darcs repository UI and hosting/collaboration app (hub.darcs.net branch)."; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "darcswatch" = callPackage @@ -79169,7 +74766,6 @@ self: { ]; description = "Track application of Darcs patches"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "darkplaces-demo" = callPackage @@ -79197,7 +74793,6 @@ self: { ]; description = "Utility and parser for DarkPlaces demo files"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "demoinfo"; }) {}; @@ -79215,8 +74810,6 @@ self: { testHaskellDepends = [ base bytestring hspec hspec-core ]; description = "Darkplaces rcon client library"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "darkplaces-rcon-util" = callPackage @@ -79246,7 +74839,6 @@ self: { ]; description = "Darplaces rcon utility"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "drcon"; }) {}; @@ -79265,8 +74857,6 @@ self: { testHaskellDepends = [ base bytestring hspec QuickCheck ]; description = "Parser for darkplaces colorful text"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dash-haskell" = callPackage @@ -79287,7 +74877,6 @@ self: { ]; description = "Convert package Haddock to Dash docsets (IDE docs)"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "dash-haskell"; }) {}; @@ -79312,8 +74901,6 @@ self: { libraryHaskellDepends = [ base data-accessor monadLib ]; description = "Accessor functions for monadLib's monads"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-accessor-monads-fd" = callPackage @@ -79327,8 +74914,6 @@ self: { ]; description = "Use Accessor to access state in monads-fd State monad class"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-accessor-monads-tf" = callPackage @@ -79342,8 +74927,6 @@ self: { ]; description = "Use Accessor to access state in monads-tf State monad type family"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-accessor-mtl" = callPackage @@ -79372,9 +74955,7 @@ self: { ]; description = "Utilities for accessing and manipulating fields of records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; - broken = true; }) {}; "data-accessor-transformers" = callPackage @@ -79434,8 +75015,6 @@ self: { ]; description = "Type-safe, bytestring-based ASCII values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-aviary" = callPackage @@ -79447,8 +75026,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Combinator birds"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-base" = callPackage @@ -79460,8 +75037,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Utilities for accessing and comparing types based on so called bases - representations with limited polymorphism"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-basic" = callPackage @@ -79485,7 +75060,6 @@ self: { ]; description = "A database library with a focus on ease of use, type safety and useful error messages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "data-binary-ieee754" = callPackage @@ -79556,8 +75130,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Library for checking and normalization of data (e.g. from web forms)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-checked" = callPackage @@ -79592,8 +75164,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Generate a special combinator from any data type"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-compat" = callPackage @@ -79616,8 +75186,6 @@ self: { libraryHaskellDepends = [ base stm ]; description = "A Library for directional queues"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-construction" = callPackage @@ -79629,8 +75197,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Data construction abstractions including Constructor, Destructor, Maker, Destroyer, Producer and Consumer"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-constructors" = callPackage @@ -79646,8 +75212,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq QuickCheck ]; description = "Generically compare data by their constructors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-cycle" = callPackage @@ -79662,7 +75226,6 @@ self: { ]; description = "a cyclic doubly linked list"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "data-default" = callPackage @@ -79717,7 +75280,6 @@ self: { ]; description = "A class for types with a default value"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "data-default-generics" = callPackage @@ -79809,8 +75371,6 @@ self: { libraryHaskellDepends = [ base data-default-class ]; description = "Default instances for types in newer versions of base package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-default-instances-old-locale" = callPackage @@ -79835,8 +75395,6 @@ self: { libraryHaskellDepends = [ base data-default-class text ]; description = "Default instances for (lazy and strict) Text and Text Builder"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-default-instances-unordered-containers" = callPackage @@ -79886,8 +75444,6 @@ self: { ]; description = "Space-efficient and privacy-preserving data dispersal algorithms"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-diverse" = callPackage @@ -79905,8 +75461,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Extensible records and polymorphic variants"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-diverse-lens" = callPackage @@ -79923,7 +75477,6 @@ self: { testHaskellDepends = [ base data-diverse hspec lens tagged ]; description = "Isos & Lens for Data.Diverse.Many and Prisms for Data.Diverse.Which"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "data-dword" = callPackage @@ -79958,8 +75511,6 @@ self: { ]; description = "Consistent set of utility functions for Maybe, Either, List and Monoids"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-elevator" = callPackage @@ -80009,9 +75560,7 @@ self: { ]; description = "Embed files and other binary blobs inside executables without Template Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "embedtool"; - broken = true; }) {}; "data-emoticons" = callPackage @@ -80023,8 +75572,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Combinator emoticons: data-aviary in the flavor of emoticons"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-endian" = callPackage @@ -80076,8 +75623,6 @@ self: { ]; description = "A type safe file path data structure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-files-gen" = callPackage @@ -80109,8 +75654,6 @@ self: { libraryHaskellDepends = [ base data-default ]; description = "Utilities for filtering"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-fin" = callPackage @@ -80127,8 +75670,6 @@ self: { ]; description = "Finite totally ordered sets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-fin-simple" = callPackage @@ -80141,8 +75682,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Simple integral finite set"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-fix" = callPackage @@ -80189,8 +75728,6 @@ self: { libraryHaskellDepends = [ base ]; description = "An efficient data type for sets of flags"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-foldapp" = callPackage @@ -80214,8 +75751,6 @@ self: { testHaskellDepends = [ base containers HUnit ]; description = "Specify that lifted values were forced to WHNF or NF"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-forest" = callPackage @@ -80314,8 +75849,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Extending the concept of indices for lists and other containers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-interval" = callPackage @@ -80362,8 +75895,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Write-once variables with concurrency support"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-json-token" = callPackage @@ -80395,8 +75926,6 @@ self: { ]; description = "Sculpt mutable recursive data with reference equality; bake it using a data kiln into an immutable lazy structure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-layer" = callPackage @@ -80408,7 +75937,6 @@ self: { libraryHaskellDepends = [ base convert data-construction lens ]; description = "Data layering utilities. Layer is a data-type which wrapps other one, but keeping additional information. If you want to access content of simple newtype object, use Lens.Wrapper instead."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "data-layout" = callPackage @@ -80448,8 +75976,6 @@ self: { ]; description = "Lenses"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-lens-ixset" = callPackage @@ -80462,8 +75988,6 @@ self: { testHaskellDepends = [ QuickCheck ]; description = "A Lens for IxSet"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-lens-light" = callPackage @@ -80487,8 +76011,6 @@ self: { libraryHaskellDepends = [ base data-lens template-haskell ]; description = "Utilities for Data.Lens"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-list-sequences" = callPackage @@ -80522,8 +76044,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Data.Map with multiple, unique keys"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-memocombinators" = callPackage @@ -80590,8 +76110,6 @@ self: { libraryHaskellDepends = [ attoparsec base binary containers text ]; description = "Data types for named entities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-nat" = callPackage @@ -80603,8 +76121,6 @@ self: { libraryHaskellDepends = [ base semigroups ]; description = "data Nat = Zero | Succ Nat"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-object" = callPackage @@ -80616,8 +76132,6 @@ self: { libraryHaskellDepends = [ base bytestring failure text time ]; description = "Represent hierachichal structures, called objects in JSON. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-object-json" = callPackage @@ -80634,7 +76148,6 @@ self: { ]; description = "Serialize JSON data to/from Haskell using the data-object library. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "data-object-yaml" = callPackage @@ -80653,7 +76166,6 @@ self: { ]; description = "Serialize data to and from Yaml files (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "data-or" = callPackage @@ -80707,9 +76219,7 @@ self: { ]; description = "Read PDF form fields"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "pdfreader"; - broken = true; }) {}; "data-pprint" = callPackage @@ -80721,8 +76231,6 @@ self: { libraryHaskellDepends = [ base deepseq mtl parallel pretty time ]; description = "Prettyprint and compare Data values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-quotientref" = callPackage @@ -80734,8 +76242,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Reference cells that need two independent indices to be accessed"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-r-tree" = callPackage @@ -80754,8 +76260,6 @@ self: { ]; description = "R-Tree is a spatial data structure similar to Quadtrees or B-Trees"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-ref" = callPackage @@ -80800,8 +76304,6 @@ self: { libraryHaskellDepends = [ base containers data-reify ]; description = "Common Sub-Expression Elimination for graphs generated by Data.Reify."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-repr" = callPackage @@ -80813,8 +76315,6 @@ self: { libraryHaskellDepends = [ base generic-deriving lens ]; description = "Alternative to Show data printing utility"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-result" = callPackage @@ -80826,7 +76326,6 @@ self: { libraryHaskellDepends = [ base poly-control prologue ]; description = "Data types for returning results distinguishable by types"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "data-rev" = callPackage @@ -80838,8 +76337,6 @@ self: { libraryHaskellDepends = [ base bytestring containers text vector ]; description = "A typeclass for reversing order of contents"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-rope" = callPackage @@ -80851,8 +76348,6 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-mmap unix ]; description = "Ropes, an alternative to (Byte)Strings"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-rtuple" = callPackage @@ -80864,7 +76359,6 @@ self: { libraryHaskellDepends = [ base lens typelevel ]; description = "Recursive tuple data structure. It is very usefull when implementing some lo-level operations, allowing to traverse different elements using Haskell's type classes."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "data-serializer" = callPackage @@ -80896,8 +76390,6 @@ self: { ]; description = "Profiling of data structures"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-sketches" = callPackage @@ -80952,8 +76444,6 @@ self: { libraryHaskellDepends = [ base vector-space ]; description = "Deprecated. Now called \"spacepart\". Space partitioning data structures."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-standards" = callPackage @@ -80965,8 +76455,6 @@ self: { libraryHaskellDepends = [ base hashable unordered-containers ]; description = "A collection of standards representable by simple data types"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-stm32" = callPackage @@ -81020,8 +76508,6 @@ self: { ]; description = "Type safe, in-memory dictionary with multidimensional keys"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-stringmap" = callPackage @@ -81040,8 +76526,6 @@ self: { ]; description = "An efficient implementation of maps from strings to arbitrary values"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-structure-inferrer" = callPackage @@ -81062,7 +76546,6 @@ self: { executableToolDepends = [ alex happy ]; description = "Program that infers the fastest data structure available for your program"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "dsinf"; }) {}; @@ -81172,8 +76655,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Basic type wrangling types and classes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-util" = callPackage @@ -81185,8 +76666,6 @@ self: { libraryHaskellDepends = [ base ]; description = "utilities for handle data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-validation" = callPackage @@ -81203,8 +76682,6 @@ self: { ]; description = "A library for creating type safe validations"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-variant" = callPackage @@ -81216,8 +76693,6 @@ self: { libraryHaskellDepends = [ base safe ]; description = "A variant data type, useful for modeling dynamically-typed programming languages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "data-vector-growable" = callPackage @@ -81234,8 +76709,6 @@ self: { testHaskellDepends = [ async base vector ]; description = "Dynamic growable resizable mutable generic vector"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "database-id-class" = callPackage @@ -81262,7 +76735,6 @@ self: { ]; description = "HasId/Groundhog interop"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "database-migrate" = callPackage @@ -81280,8 +76752,6 @@ self: { ]; description = "Database versioning and migration (experimental)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "database-study" = callPackage @@ -81293,8 +76763,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Demonstrate how a database can be implemented the functional way"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "datadog" = callPackage @@ -81322,8 +76790,6 @@ self: { ]; description = "Datadog client for Haskell. Supports both the HTTP API and StatsD."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "datadog-tracing" = callPackage @@ -81359,7 +76825,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Datadog tracing client and mock agent"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "datadog-agent"; }) {}; @@ -81406,7 +76871,6 @@ self: { ]; description = "Fixing data-flow problems"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; mainProgram = "firstfollow-example"; }) {}; @@ -81431,7 +76895,6 @@ self: { ]; description = "Generate Graphviz documents from a Haskell representation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dataflow"; }) {}; @@ -81477,9 +76940,7 @@ self: { ]; description = "An implementation of datalog in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "datalog-repl"; - broken = true; }) {}; "datapacker" = callPackage @@ -81497,9 +76958,7 @@ self: { ]; description = "Tool to help pack files into the minimum number of CDs/DVDs/etc"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "datapacker"; - broken = true; }) {}; "datarobot" = callPackage @@ -81521,8 +76980,6 @@ self: { ]; description = "Client for DataRobot API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "datasets" = callPackage @@ -81553,7 +77010,6 @@ self: { ]; description = "Classical data sets for statistics and machine learning"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "dataurl" = callPackage @@ -81595,7 +77051,6 @@ self: { testHaskellDepends = [ base dates hspec QuickCheck time ]; description = "Date conversions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "dates" = callPackage @@ -81612,8 +77067,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Small library for parsing different dates formats"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "datetime" = callPackage @@ -81632,8 +77085,6 @@ self: { ]; description = "Utilities to make Data.Time.* easier to use"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "datetime-sb" = callPackage @@ -81652,8 +77103,6 @@ self: { ]; description = "Utilities to make Data.Time.* easier to use."; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dawdle" = callPackage @@ -81668,9 +77117,7 @@ self: { executableHaskellDepends = [ base filepath parsec pretty text ]; description = "Generates DDL suggestions based on a CSV file"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "dawdle"; - broken = true; }) {}; "dawg" = callPackage @@ -81686,8 +77133,6 @@ self: { ]; description = "Directed acyclic word graphs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dawg-ord" = callPackage @@ -81708,8 +77153,6 @@ self: { ]; description = "Directed acyclic word graphs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "daytripper" = callPackage @@ -81730,8 +77173,6 @@ self: { ]; description = "Helpers for round-trip tests"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dbcleaner" = callPackage @@ -81744,8 +77185,6 @@ self: { testHaskellDepends = [ base hspec postgresql-simple text ]; description = "Clean database tables automatically around hspec tests"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dbf" = callPackage @@ -81759,8 +77198,6 @@ self: { ]; description = "Read and write XBase \".dbf\" files"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dbjava" = callPackage @@ -81781,7 +77218,6 @@ self: { ]; description = "Decompiler Bytecode Java"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dbjava"; }) {}; @@ -81801,9 +77237,7 @@ self: { ]; description = "A *simple* database migration tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dbm"; - broken = true; }) {}; "dbmigrations" = callPackage @@ -81832,9 +77266,7 @@ self: { ]; description = "An implementation of relational database \"migrations\""; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "moo"; - broken = true; }) {}; "dbmigrations-mysql" = callPackage @@ -81856,7 +77288,6 @@ self: { ]; description = "The dbmigrations tool built for MySQL databases"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "moo-mysql"; }) {}; @@ -81876,7 +77307,6 @@ self: { ]; description = "The dbmigrations tool built for PostgreSQL databases"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "moo-postgresql"; }) {}; @@ -81892,7 +77322,6 @@ self: { testHaskellDepends = [ base dbmigrations HDBC HDBC-sqlite3 HUnit ]; description = "The dbmigrations tool built for SQLite databases"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "moo-sqlite"; }) {}; @@ -81924,9 +77353,7 @@ self: { ]; description = "Data consistency alerting for PostgreSQL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dbmonitor"; - broken = true; }) {}; "dbus" = callPackage @@ -81969,7 +77396,6 @@ self: { ]; description = "Monadic and object-oriented interfaces to DBus"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "dbus-core" = callPackage @@ -81987,8 +77413,6 @@ self: { ]; description = "Low-level D-Bus protocol implementation"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dbus-hslogger" = callPackage @@ -82022,8 +77446,6 @@ self: { testHaskellDepends = [ base containers dbus QuickCheck ]; description = "Quasi-quoter for DBus functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dbus-th" = callPackage @@ -82082,8 +77504,6 @@ self: { ]; description = "This packge is deprecated. See the the \"LIO.DCLabel\" in the \"lio\" package."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dclabel-eci11" = callPackage @@ -82095,8 +77515,6 @@ self: { libraryHaskellDepends = [ base pretty QuickCheck ]; description = "The Disjunction Category Label Format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dcpu16" = callPackage @@ -82116,9 +77534,7 @@ self: { testHaskellDepends = [ base ]; description = "DCPU-16 Emulator & Assembler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dcpu16-exe"; - broken = true; }) {}; "ddate" = callPackage @@ -82130,7 +77546,6 @@ self: { libraryHaskellDepends = [ base dates time ]; description = "Discordian Date Types for Haskell"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "ddc-base" = callPackage @@ -82146,8 +77561,6 @@ self: { ]; description = "Disciplined Disciple Compiler common utilities"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ddc-build" = callPackage @@ -82167,7 +77580,6 @@ self: { ]; description = "Disciplined Disciple Compiler build framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ddc-code" = callPackage @@ -82180,8 +77592,6 @@ self: { libraryHaskellDepends = [ base filepath ]; description = "Disciplined Disciple Compiler base libraries"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ddc-core" = callPackage @@ -82198,7 +77608,6 @@ self: { ]; description = "Disciplined Disciple Compiler core language and type checker"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ddc-core-babel" = callPackage @@ -82212,7 +77621,6 @@ self: { ]; description = "Disciplined Disciple Compiler PHP code generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ddc-core-eval" = callPackage @@ -82228,7 +77636,6 @@ self: { ]; description = "Disciplined Disciple Compiler semantic evaluator for the core language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ddc-core-flow" = callPackage @@ -82246,7 +77653,6 @@ self: { ]; description = "Disciplined Disciple Compiler data flow compiler"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ddc-core-llvm" = callPackage @@ -82263,7 +77669,6 @@ self: { ]; description = "Disciplined Disciple Compiler LLVM code generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ddc-core-salt" = callPackage @@ -82279,7 +77684,6 @@ self: { ]; description = "Disciplined Disciple Compiler C code generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ddc-core-simpl" = callPackage @@ -82295,7 +77699,6 @@ self: { ]; description = "Disciplined Disciple Compiler code transformations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ddc-core-tetra" = callPackage @@ -82312,7 +77715,6 @@ self: { ]; description = "Disciplined Disciple Compiler intermediate language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ddc-driver" = callPackage @@ -82332,7 +77734,6 @@ self: { ]; description = "Disciplined Disciple Compiler top-level driver"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ddc-interface" = callPackage @@ -82344,7 +77745,6 @@ self: { libraryHaskellDepends = [ base containers ddc-base directory ]; description = "Disciplined Disciple Compiler user interface support"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ddc-source-tetra" = callPackage @@ -82361,7 +77761,6 @@ self: { ]; description = "Disciplined Disciple Compiler source language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ddc-tools" = callPackage @@ -82384,7 +77783,6 @@ self: { ]; description = "Disciplined Disciple Compiler command line tools"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ddc-war" = callPackage @@ -82402,7 +77800,6 @@ self: { ]; description = "Disciplined Disciple Compiler test driver and buildbot"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "ddc-war"; }) {}; @@ -82422,7 +77819,6 @@ self: { ]; description = "Disciple Core language interactive interpreter"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "ddci-core"; }) {}; @@ -82475,9 +77871,7 @@ self: { ]; description = "detect dead code in haskell projects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dead-code-detection"; - broken = true; }) {}; "dead-simple-json" = callPackage @@ -82493,8 +77887,6 @@ self: { ]; description = "Dead simple JSON parser, with some Template Haskell sugar"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dear-imgui" = callPackage @@ -82521,8 +77913,6 @@ self: { doHaddock = false; description = "Haskell bindings for Dear ImGui"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) SDL2; inherit (pkgs) glew;}; "debian" = callPackage @@ -82612,7 +78002,6 @@ self: { ]; description = "Simple trace-based debugger"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "debug-pp"; }) {}; @@ -82664,9 +78053,7 @@ self: { ]; description = "secure remote debugging"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "debug-me"; - broken = true; }) {}; "debug-pp" = callPackage @@ -82710,8 +78097,6 @@ self: { testHaskellDepends = [ base directory tasty tasty-golden ]; description = "Like Debug.Trace but writing to files."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "debug-trace-var" = callPackage @@ -82737,9 +78122,7 @@ self: { executableHaskellDepends = [ base ]; description = "More useful trace functions for investigating bugs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "test"; - broken = true; }) {}; "debugger-hs" = callPackage @@ -82753,8 +78136,6 @@ self: { testHaskellDepends = [ base hspec mtl neat-interpolation text ]; description = "Write your GDB scripts in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "deburr" = callPackage @@ -82791,8 +78172,6 @@ self: { libraryHaskellDepends = [ base comonad-transformers ]; description = "The categorical dual of transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "decidable" = callPackage @@ -82808,7 +78187,6 @@ self: { ]; description = "Combinators for manipulating dependently-typed predicates"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "decimal-arithmetic" = callPackage @@ -82823,7 +78201,6 @@ self: { testHaskellDepends = [ base binary doctest hspec QuickCheck ]; description = "An implementation of the General Decimal Arithmetic Specification"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "decimal-literals" = callPackage @@ -82864,8 +78241,6 @@ self: { ]; description = "Binary Decision Diagrams (BDD) and Zero-suppressed Binary Decision Diagrams (ZDD)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "declarative" = callPackage @@ -82885,7 +78260,6 @@ self: { testHaskellDepends = [ base mwc-probability ]; description = "DIY Markov Chains"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "decode-utf8" = callPackage @@ -82914,8 +78288,6 @@ self: { libraryHaskellDepends = [ base binary bytestring conduit ]; description = "Conduit for decoding ByteStrings using Data.Binary.Get"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dedukti" = callPackage @@ -82938,7 +78310,6 @@ self: { ]; description = "A type-checker for the λΠ-modulo calculus"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "dedukti"; }) {}; @@ -82990,8 +78361,6 @@ self: { ]; description = "A library that provides deep-level programming style and(or) notation on Applicative and Monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "deepl" = callPackage @@ -83015,9 +78384,7 @@ self: { ]; description = "Call DeepL to translate you files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "deepl"; - broken = true; }) {}; "deeplearning-hs" = callPackage @@ -83045,7 +78412,6 @@ self: { ]; description = "Deep Learning in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "deeplearning_demonstration"; }) {}; @@ -83083,8 +78449,6 @@ self: { ]; description = "Bounded deepseq, including support for generic deriving"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "deepseq-generics" = callPackage @@ -83114,8 +78478,6 @@ self: { libraryHaskellDepends = [ array base deepseq stm ]; description = "Candidate NFData Instances for Types in base"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "deepseq-magic" = callPackage @@ -83127,8 +78489,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Deep evaluation of data structures without NFData"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "deepseq-th" = callPackage @@ -83141,8 +78501,6 @@ self: { testHaskellDepends = [ base deepseq template-haskell ]; description = "Template Haskell based deriver for optimised NFData instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "deepzoom" = callPackage @@ -83154,7 +78512,6 @@ self: { libraryHaskellDepends = [ base directory filepath hsmagick ]; description = "A DeepZoom image slicer. Only known to work on 32bit Linux"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "defargs" = callPackage @@ -83166,7 +78523,6 @@ self: { libraryHaskellDepends = [ base cluss ]; description = "default arguments in haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "defaultable-map" = callPackage @@ -83218,8 +78574,6 @@ self: { ]; description = "The base modules of the Definitive framework"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "definitive-filesystem" = callPackage @@ -83240,7 +78594,6 @@ self: { ]; description = "A library that enable you to interact with the filesystem in a definitive way"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "definitive-graphics" = callPackage @@ -83263,7 +78616,6 @@ self: { ]; description = "A definitive package allowing you to open windows, read image files and render text to be displayed or saved"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "definitive-parser" = callPackage @@ -83281,7 +78633,6 @@ self: { ]; description = "A parser combinator library for the Definitive framework"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "definitive-reactive" = callPackage @@ -83300,7 +78651,6 @@ self: { ]; description = "A simple Reactive library"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "definitive-sound" = callPackage @@ -83320,7 +78670,6 @@ self: { ]; description = "A definitive package to handle sound and play it back"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "deiko-config" = callPackage @@ -83336,8 +78685,6 @@ self: { ]; description = "Small and typesafe configuration library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dejafu" = callPackage @@ -83366,8 +78713,6 @@ self: { librarySystemDepends = [ mpdec ]; description = "Decimal floating point arithmetic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {mpdec = null;}; "deka-tests" = callPackage @@ -83388,7 +78733,6 @@ self: { testHaskellDepends = [ base bytestring deka QuickCheck quickpull ]; description = "Tests for deka, decimal floating point arithmetic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "deka-dectest"; }) {}; @@ -83406,7 +78750,6 @@ self: { testHaskellDepends = [ AC-Vector base HUnit QuickCheck ]; description = "Build a Delaunay triangulation of a set of points"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "delay" = callPackage @@ -83437,7 +78780,6 @@ self: { ]; description = "Accessing the del.icio.us APIs from Haskell (v2)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "delimited-text" = callPackage @@ -83453,7 +78795,6 @@ self: { ]; description = "Parse character delimited textual data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "delimiter-separated" = callPackage @@ -83466,7 +78807,6 @@ self: { libraryHaskellDepends = [ base uhc-util uulib ]; description = "Library for dealing with tab and/or comma (or other) separated files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "delta" = callPackage @@ -83490,7 +78830,6 @@ self: { testHaskellDepends = [ base directory filepath hspec ]; description = "A library for detecting file changes"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "delta-h" = callPackage @@ -83512,7 +78851,6 @@ self: { ]; description = "Online entropy-based model of lexical category acquisition"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "delta-h"; }) {}; @@ -83525,8 +78863,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Generalized the Prelude more functionally"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "demarcate" = callPackage @@ -83539,8 +78875,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Demarcating transformed monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "denominate" = callPackage @@ -83555,9 +78889,7 @@ self: { executableHaskellDepends = [ base directory filepath ]; description = "Functions supporting bulk file and directory name normalization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "denominate"; - broken = true; }) {}; "dense" = callPackage @@ -83582,8 +78914,6 @@ self: { ]; description = "Mutable and immutable dense multidimensional arrays"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dense-int-set" = callPackage @@ -83605,8 +78935,6 @@ self: { ]; description = "Dense int-set"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dense-linear-algebra" = callPackage @@ -83644,8 +78972,6 @@ self: { ]; description = "Dependency injection for records-of-functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dep-t-advice" = callPackage @@ -83671,7 +78997,6 @@ self: { ]; description = "Giving good advice to functions in records-of-functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dep-t-dynamic" = callPackage @@ -83696,8 +79021,6 @@ self: { ]; description = "A dynamic environment for dependency injection"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dep-t-value" = callPackage @@ -83719,8 +79042,6 @@ self: { ]; description = "Pair resources files with types within your program"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dependency" = callPackage @@ -83759,8 +79080,6 @@ self: { ]; description = "Dependent hash maps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dependent-literals" = callPackage @@ -83778,7 +79097,6 @@ self: { ]; description = "Library for dependent-literals-plugin"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "dependent-literals-plugin" = callPackage @@ -83798,7 +79116,6 @@ self: { ]; description = "Dependent integer literals"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "dependent-map_0_2_4_0" = callPackage @@ -83846,8 +79163,6 @@ self: { ]; description = "Dependent map that uses semigroup mappend"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dependent-state" = callPackage @@ -83859,7 +79174,6 @@ self: { libraryHaskellDepends = [ base lens mtl prologue ]; description = "Control structure similar to Control.Monad.State, allowing multiple nested states, distinguishable by provided phantom types."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "dependent-sum_0_4" = callPackage @@ -83959,7 +79273,6 @@ self: { ]; description = "A simple configuration management tool for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "depends"; }) {}; @@ -83979,7 +79292,6 @@ self: { ]; description = "Analyze quality of nucleotide sequences"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "depq" = callPackage @@ -84007,8 +79319,6 @@ self: { libraryHaskellDepends = [ base containers dlist mtl parsec ]; description = "DepTrack Core types and model"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "deptrack-devops" = callPackage @@ -84027,7 +79337,6 @@ self: { ]; description = "DepTrack applied to DevOps"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "deptrack-dot" = callPackage @@ -84040,7 +79349,6 @@ self: { testHaskellDepends = [ base containers deptrack-core dotgen ]; description = "Facilitate Graphviz representations of DepTrack dependencies"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "deque" = callPackage @@ -84073,7 +79381,6 @@ self: { testHaskellDepends = [ base Cabal cabal-test-quickcheck ]; description = "A typeclass and an implementation for double-ended queues"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "derangement" = callPackage @@ -84085,8 +79392,6 @@ self: { libraryHaskellDepends = [ base fgl ]; description = "Find derangements of lists"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "derivation-trees" = callPackage @@ -84100,8 +79405,6 @@ self: { ]; description = "Typeset Derivation Trees via MetaPost"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "derive" = callPackage @@ -84122,9 +79425,7 @@ self: { executableHaskellDepends = [ base ]; description = "A program and library to derive instances for data types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "derive"; - broken = true; }) {}; "derive-IG" = callPackage @@ -84136,7 +79437,6 @@ self: { libraryHaskellDepends = [ base instant-generics template-haskell ]; description = "Macro to derive instances for Instant-Generics using Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "derive-enumerable" = callPackage @@ -84148,8 +79448,6 @@ self: { libraryHaskellDepends = [ base data-default ]; description = "Generic instances for enumerating complex data types"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "derive-gadt" = callPackage @@ -84171,8 +79469,6 @@ self: { ]; description = "Instance deriving for (a subset of) GADTs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "derive-lifted-instances" = callPackage @@ -84186,8 +79482,6 @@ self: { ]; description = "Derive class instances though various kinds of lifting"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "derive-monoid" = callPackage @@ -84203,9 +79497,7 @@ self: { testHaskellDepends = [ base semigroups ]; description = "derive Semigroup/Monoid/IsList"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "example-derive-monoid"; - broken = true; }) {}; "derive-storable" = callPackage @@ -84264,8 +79556,6 @@ self: { libraryHaskellDepends = [ array base containers template-haskell ]; description = "Automatic derivation of Trie implementations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "deriveJsonNoPrefix" = callPackage @@ -84282,8 +79572,6 @@ self: { ]; description = "Derive ToJSON/FromJSON instances in a more prefix-friendly manner"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "deriving-aeson" = callPackage @@ -84337,8 +79625,6 @@ self: { ]; description = "DerivingVia for OpenAPI 3"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "deriving-show-simple" = callPackage @@ -84368,8 +79654,6 @@ self: { ]; description = "Derive instances for monad transformer stacks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "deriving-trans_0_9_1_0" = callPackage @@ -84389,7 +79673,6 @@ self: { description = "Derive instances for monad transformer stacks"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "derivingvia-extras" = callPackage @@ -84423,8 +79706,6 @@ self: { libraryHaskellDepends = [ base derp ]; description = "combinators based on parsing with derivatives (derp) package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "derulo" = callPackage @@ -84462,8 +79743,6 @@ self: { ]; description = "Combinators for describing binary data structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "descrilo" = callPackage @@ -84509,7 +79788,6 @@ self: { ]; description = "Library, interpreter, and CLI for Descript programming language"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "descript-cli"; }) {}; @@ -84530,8 +79808,6 @@ self: { ]; description = "Self-describing consumers/parsers; forms, cmd-line args, JSON, etc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "desert" = callPackage @@ -84575,8 +79851,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Desktop Portal"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "despair" = callPackage @@ -84600,8 +79874,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Simple deterministic game engine"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "detour-via-sci" = callPackage @@ -84645,7 +79917,6 @@ self: { ]; description = "JSON and CSV encoding for quantities"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "detrospector" = callPackage @@ -84664,9 +79935,7 @@ self: { ]; description = "Markov chain text generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "detrospector"; - broken = true; }) {}; "deunicode" = callPackage @@ -84680,9 +79949,7 @@ self: { executableHaskellDepends = [ base bytestring utf8-string ]; description = "Get rid of unicode (utf-8) symbols in Haskell sources"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "deunicode"; - broken = true; }) {}; "devil" = callPackage @@ -84701,9 +79968,7 @@ self: { ]; description = "A small tool to make it easier to update program managed by Angel"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "devil"; - broken = true; }) {}; "devtools" = callPackage @@ -84725,7 +79990,6 @@ self: { ]; description = "Haskell development tool agregate"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dewdrop" = callPackage @@ -84739,7 +80003,6 @@ self: { ]; description = "Find gadgets for return-oriented programming on x86"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "df1" = callPackage @@ -84779,8 +80042,6 @@ self: { ]; description = "Render and parse df1 logs as HTML"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dfinity-radix-tree" = callPackage @@ -84816,7 +80077,6 @@ self: { ]; description = "A generic data integrity layer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dfinity-radix-tree-example"; }) {inherit (pkgs) leveldb;}; @@ -84848,9 +80108,7 @@ self: { ]; description = "Build Debian From Scratch CD/DVD images"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "dfsbuild"; - broken = true; }) {}; "dgim" = callPackage @@ -84863,8 +80121,6 @@ self: { testHaskellDepends = [ base Cabal QuickCheck ]; description = "Implementation of DGIM algorithm"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dgs" = callPackage @@ -84876,8 +80132,6 @@ self: { libraryHaskellDepends = [ base HTTP mtl network split ]; description = "Haskell front-end for DGS' bot interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dhall_1_29_0" = callPackage @@ -85231,9 +80485,7 @@ self: { ]; description = "Check all dhall files in a project"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dhall-check"; - broken = true; }) {}; "dhall-csv" = callPackage @@ -85264,8 +80516,6 @@ self: { ]; description = "Convert bidirectionally between Dhall and CSV files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dhall-docs" = callPackage @@ -85330,9 +80580,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Translate concourse config from Dhall to YAML"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dhall-fly"; - broken = true; }) {}; "dhall-json" = callPackage @@ -85446,10 +80694,8 @@ self: { ]; description = "Language Server Protocol (LSP) server for Dhall"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "dhall-lsp-server"; maintainers = [ lib.maintainers.Gabriella439 ]; - broken = true; }) {}; "dhall-nix" = callPackage @@ -85595,7 +80841,6 @@ self: { ]; description = "Convert recursive ADTs from and to Dhall"; license = lib.licenses.cc0; - hydraPlatforms = lib.platforms.none; }) {}; "dhall-secret" = callPackage @@ -85624,7 +80869,6 @@ self: { ]; description = "Encrypt Decrypt Dhall expressions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dhall-secret"; }) {}; @@ -85643,10 +80887,8 @@ self: { ]; description = "Template text using Dhall"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dhall-to-text"; maintainers = [ lib.maintainers.Gabriella439 ]; - broken = true; }) {}; "dhall-text-shell" = callPackage @@ -85696,8 +80938,6 @@ self: { ]; description = "Compile Dhall expressions to Cabal files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dhall-toml" = callPackage @@ -85771,8 +81011,6 @@ self: { ]; description = "Parse a DHCP lease file"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dhrun" = callPackage @@ -85806,9 +81044,7 @@ self: { doHaddock = false; description = "Dhall/YAML configurable concurrent integration test executor"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "dhrun"; - broken = true; }) {}; "di" = callPackage @@ -85916,8 +81152,6 @@ self: { libraryHaskellDepends = [ base deepseq ]; description = "An EDSL for teaching Haskell with diagrams - data types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dia-functions" = callPackage @@ -85935,7 +81169,6 @@ self: { ]; description = "An EDSL for teaching Haskell with diagrams - functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "diagnose" = callPackage @@ -85957,8 +81190,6 @@ self: { ]; description = "Beautiful error reporting done easily"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "diagrams" = callPackage @@ -85989,8 +81220,6 @@ self: { libraryHaskellDepends = [ base cubicbezier diagrams-lib ]; description = "deprecated, part of diagrams-contrib since 1.4"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "diagrams-braille" = callPackage @@ -86045,8 +81274,6 @@ self: { ]; description = "hint-based build service for the diagrams graphics EDSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "diagrams-cairo" = callPackage @@ -86213,7 +81440,6 @@ self: { ]; description = "Preprocessor for embedding diagrams in Haddock documentation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "diagrams-haddock"; }) {}; @@ -86252,7 +81478,6 @@ self: { ]; description = "HTML5 canvas backend for diagrams drawing EDSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "diagrams-input" = callPackage @@ -86334,7 +81559,6 @@ self: { ]; description = "A Pandoc filter to express diagrams inline using the Haskell EDSL _Diagrams_"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "diagrams-pandoc"; }) {}; @@ -86353,8 +81577,6 @@ self: { ]; description = "PDF backend for diagrams drawing EDSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "diagrams-pgf" = callPackage @@ -86408,8 +81630,6 @@ self: { ]; description = "Draw QR codes to SVG, PNG, PDF or PS files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "diagrams-rasterific" = callPackage @@ -86447,7 +81667,6 @@ self: { ]; description = "reflex backend for diagrams drawing EDSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "diagrams-rubiks-cube" = callPackage @@ -86463,8 +81682,6 @@ self: { ]; description = "Library for drawing the Rubik's Cube"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "diagrams-solve" = callPackage @@ -86517,8 +81734,6 @@ self: { ]; description = "TikZ backend for diagrams drawing EDSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "diagrams-wx" = callPackage @@ -86536,7 +81751,6 @@ self: { ]; description = "Backend for rendering diagrams in wxWidgets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dialog" = callPackage @@ -86575,8 +81789,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A Dialogflow Fulfillment library for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dialogue" = callPackage @@ -86591,9 +81803,7 @@ self: { executableHaskellDepends = [ base ]; description = "I/O in Haskell Report 1.2"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "examples"; - broken = true; }) {}; "dib" = callPackage @@ -86617,9 +81827,7 @@ self: { ]; description = "A simple, forward build system"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "dib"; - broken = true; }) {}; "dice" = callPackage @@ -86669,9 +81877,7 @@ self: { executableHaskellDepends = [ base ]; description = "Convert a Diceware wordlist into a printer-ready LaTeX file"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "dice2tex"; - broken = true; }) {}; "dicom" = callPackage @@ -86685,8 +81891,6 @@ self: { ]; description = "A library for reading and writing DICOM files in the Explicit VR Little Endian transfer syntax"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dictionaries" = callPackage @@ -86715,9 +81919,7 @@ self: { ]; description = "Tools to handle StarDict dictionaries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bench"; - broken = true; }) {}; "dictionary-sharing" = callPackage @@ -86746,9 +81948,7 @@ self: { testHaskellDepends = [ base hspec parsec ]; description = "Parsec parsers for the DICT format produced by dictfmt -t"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dictparser"; - broken = true; }) {}; "diet" = callPackage @@ -86766,8 +81966,6 @@ self: { ]; description = "Discrete Interval Encoding Trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "diff" = callPackage @@ -86779,7 +81977,6 @@ self: { libraryHaskellDepends = [ base Enum util ]; description = "Diff and patch"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "diff-gestalt" = callPackage @@ -86794,8 +81991,6 @@ self: { testHaskellDepends = [ base Diff ]; description = "A diff algorithm based on recursive longest common substrings"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "diff-loc" = callPackage @@ -86866,9 +82061,7 @@ self: { ]; description = "Diff two .cabal files syntactically"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "diffcabal"; - broken = true; }) {}; "diffdump" = callPackage @@ -86907,7 +82100,6 @@ self: { groups hedgehog hedgehog-checkers QuickCheck semigroupoids ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "differential" = callPackage @@ -86933,9 +82125,7 @@ self: { ]; description = "Finds out whether an entity comes from different distributions (statuses)"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "differential"; - broken = true; }) {}; "diffmap" = callPackage @@ -86949,8 +82139,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "diff on maps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "difftodo" = callPackage @@ -86976,8 +82164,6 @@ self: { ]; description = "Generate todo lists from source code"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "digamma" = callPackage @@ -87013,8 +82199,6 @@ self: { testHaskellDepends = [ array base bytestring digest QuickCheck ]; description = "Pure hash functions for bytestrings"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "digest-sig" = callPackage @@ -87045,8 +82229,6 @@ self: { ]; description = "Speed up form designing using digestive functors and bootstrap"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "digestive-foundation-lucid" = callPackage @@ -87063,8 +82245,6 @@ self: { ]; description = "Speed up form designing using digestive functors and foundation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "digestive-functors" = callPackage @@ -87107,8 +82287,6 @@ self: { ]; description = "Run digestive-functors forms against JSON"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "digestive-functors-blaze" = callPackage @@ -87139,8 +82317,6 @@ self: { ]; description = "Happstack backend for the digestive-functors library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "digestive-functors-heist" = callPackage @@ -87157,8 +82333,6 @@ self: { ]; description = "Heist frontend for the digestive-functors library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "digestive-functors-hsp" = callPackage @@ -87171,7 +82345,6 @@ self: { libraryToolDepends = [ trhsx ]; description = "HSP support for digestive-functors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "digestive-functors-lucid" = callPackage @@ -87183,8 +82356,6 @@ self: { libraryHaskellDepends = [ base digestive-functors lucid text ]; description = "Lucid frontend for the digestive-functors library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "digestive-functors-scotty" = callPackage @@ -87219,8 +82390,6 @@ self: { ]; description = "Snap backend for the digestive-functors library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "digit" = callPackage @@ -87259,8 +82428,6 @@ self: { testHaskellDepends = [ base doctest hspec ]; description = "digitalocean api for haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "digits" = callPackage @@ -87291,8 +82458,6 @@ self: { testHaskellDepends = [ base fgl hashable massiv QuickCheck ]; description = "Directed Graphs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dihaa" = callPackage @@ -87323,8 +82488,6 @@ self: { testHaskellDepends = [ base containers fingertree hspec ]; description = "A simpler Dijkstra shortest paths implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dimensional" = callPackage @@ -87368,7 +82531,6 @@ self: { libraryHaskellDepends = [ base numtype-tf time ]; description = "Statically checked physical dimensions, implemented using type families"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dimensions" = callPackage @@ -87384,7 +82546,6 @@ self: { ]; description = "Safe type-level dimensionality for multidimensional data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dingo-core" = callPackage @@ -87408,7 +82569,6 @@ self: { ]; description = "Dingo is a Rich Internet Application platform based on the Warp web server"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "dingo-example" = callPackage @@ -87428,7 +82588,6 @@ self: { ]; description = "Dingo Example"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "dingo-example"; }) {}; @@ -87448,7 +82607,6 @@ self: { ]; description = "Dingo Widgets"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "dino" = callPackage @@ -87509,8 +82667,6 @@ self: { libraryToolDepends = [ happy ]; description = "A quadratic diophantine equation solving library"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "diplomacy" = callPackage @@ -87526,8 +82682,6 @@ self: { ]; description = "Diplomacy board game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "diplomacy-server" = callPackage @@ -87551,7 +82705,6 @@ self: { ]; description = "Play Diplomacy over HTTP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "diplomacy-server"; }) {}; @@ -87580,8 +82733,6 @@ self: { libraryHaskellDepends = [ base bytestring mtl ]; description = "Serialization and deserialization monads for streams and ByteStrings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "direct-daemonize" = callPackage @@ -87608,8 +82759,6 @@ self: { ]; description = "Native implementation of the FastCGI protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "direct-http" = callPackage @@ -87628,8 +82777,6 @@ self: { ]; description = "Native webserver that acts as a library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "direct-murmur-hash" = callPackage @@ -87652,8 +82799,6 @@ self: { libraryHaskellDepends = [ base ghc ghc-paths ]; description = "Lightweight replacement for Plugins, specific to GHC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "direct-rocksdb" = callPackage @@ -87673,7 +82818,6 @@ self: { ]; description = "Bindings to RocksDB"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "direct-sqlite" = callPackage @@ -87706,8 +82850,6 @@ self: { ]; description = "Finite directed cubical complexes and associated algorithms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "directory_1_3_7_1" = callPackage @@ -87757,7 +82899,6 @@ self: { ]; description = "Recursively build, navigate, and operate on a tree of directory contents"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "readme"; }) {}; @@ -87813,8 +82954,6 @@ self: { ]; description = "Stream directory entries in constant memory in vanilla IO"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "directory-tree" = callPackage @@ -87840,9 +82979,7 @@ self: { executableHaskellDepends = [ base directory ]; description = "Deletes a directory and retains its contents in the parent directory"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "direm"; - broken = true; }) {}; "dirfiles" = callPackage @@ -87858,7 +82995,6 @@ self: { unordered-containers ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dirforest" = callPackage @@ -87979,9 +83115,7 @@ self: { ]; description = "Functional programming language for teaching discrete math"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "disco"; - broken = true; }) {}; "discogs-haskell" = callPackage @@ -88005,7 +83139,6 @@ self: { ]; description = "Client for Discogs REST API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "discokitty" = callPackage @@ -88034,7 +83167,6 @@ self: { ]; description = "An API wrapper for Discord in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "discord-haskell" = callPackage @@ -88059,8 +83191,6 @@ self: { executableHaskellDepends = [ base bytestring text unliftio ]; description = "Write bots for Discord in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "discord-haskell-voice" = callPackage @@ -88107,7 +83237,6 @@ self: { ]; description = "An API wrapper for Discord in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "discord-register" = callPackage @@ -88137,9 +83266,7 @@ self: { ]; description = "Discord verification bot"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "discord-register-exe"; - broken = true; }) {}; "discord-rest" = callPackage @@ -88159,7 +83286,6 @@ self: { ]; description = "An API wrapper for Discord in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "discord-types" = callPackage @@ -88178,8 +83304,6 @@ self: { ]; description = "Type information for discord-hs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "discordian-calendar" = callPackage @@ -88191,8 +83315,6 @@ self: { libraryHaskellDepends = [ base time ]; description = "library for handling Discordian calendar dates"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "discount" = callPackage @@ -88233,8 +83355,6 @@ self: { libraryHaskellDepends = [ base ]; description = "replacement for enum"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "discrete-intervals" = callPackage @@ -88311,8 +83431,6 @@ self: { ]; description = "Disjoint containers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "disjoint-set" = callPackage @@ -88329,8 +83447,6 @@ self: { ]; description = "Persistent disjoint-sets, a.k.a union-find."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "disjoint-set-stateful" = callPackage @@ -88343,8 +83459,6 @@ self: { testHaskellDepends = [ base hspec primitive ref-tf vector ]; description = "Monadic disjoint set"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "disjoint-sets-st" = callPackage @@ -88403,8 +83517,6 @@ self: { ]; description = "Disk-based hash table"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "display" = callPackage @@ -88438,7 +83550,6 @@ self: { libraryHaskellDepends = [ base ghcjs-base-stub stm ]; description = "Allows storing different resource-releasing actions together"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dist-upload" = callPackage @@ -88453,9 +83564,7 @@ self: { doHaddock = false; description = "Generate/Upload cabal package to Hackage"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "dist-upload"; - broken = true; }) {}; "distance" = callPackage @@ -88469,8 +83578,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Useful distance datatype and functions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "distance-of-time" = callPackage @@ -88502,9 +83609,7 @@ self: { testHaskellDepends = [ base binary hspec QuickCheck ]; description = "Serializable closures for distributed programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example-client-server"; - broken = true; }) {}; "distributed-fork" = callPackage @@ -88523,7 +83628,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit unix ]; description = "Like 'forkIO', but uses remote machines instead of local threads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-fork-aws-lambda" = callPackage @@ -88550,7 +83654,6 @@ self: { ]; description = "AWS Lambda backend for distributed-fork"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process" = callPackage @@ -88575,7 +83678,6 @@ self: { ]; description = "Cloud Haskell: Erlang-style concurrency in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-async" = callPackage @@ -88603,7 +83705,6 @@ self: { ]; description = "Cloud Haskell Async API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-azure" = callPackage @@ -88626,7 +83727,6 @@ self: { ]; description = "Microsoft Azure backend for Cloud Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-client-server" = callPackage @@ -88656,7 +83756,6 @@ self: { ]; description = "The Cloud Haskell Application Platform"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-ekg" = callPackage @@ -88672,7 +83771,6 @@ self: { ]; description = "Collect node stats for EKG"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-execution" = callPackage @@ -88708,7 +83806,6 @@ self: { ]; description = "Execution Framework for The Cloud Haskell Application Platform"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-extras" = callPackage @@ -88739,7 +83836,6 @@ self: { ]; description = "Cloud Haskell Extras"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-fsm" = callPackage @@ -88772,7 +83868,6 @@ self: { ]; description = "The Cloud Haskell implementation of Erlang/OTP gen_statem"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-lifted" = callPackage @@ -88798,7 +83893,6 @@ self: { ]; description = "monad-control style typeclass and transformer instances for Process monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-monad-control" = callPackage @@ -88815,7 +83909,6 @@ self: { ]; description = "Orphan instances for MonadBase and MonadBaseControl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-p2p" = callPackage @@ -88836,7 +83929,6 @@ self: { executableHaskellDepends = [ base distributed-process mtl ]; description = "Peer-to-peer node discovery for Cloud Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "jollycloud"; }) {}; @@ -88868,7 +83960,6 @@ self: { ]; description = "The Cloud Haskell Application Platform"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-registry" = callPackage @@ -88901,7 +83992,6 @@ self: { ]; description = "Cloud Haskell Extended Process Registry"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-simplelocalnet" = callPackage @@ -88924,7 +84014,6 @@ self: { ]; description = "Simple zero-configuration backend for Cloud Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-supervisor" = callPackage @@ -88956,7 +84045,6 @@ self: { ]; description = "Supervisors for The Cloud Haskell Application Platform"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-systest" = callPackage @@ -88976,7 +84064,6 @@ self: { ]; description = "Cloud Haskell Test Support"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-task" = callPackage @@ -89013,7 +84100,6 @@ self: { ]; description = "Task Framework for The Cloud Haskell Application Platform"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-tests" = callPackage @@ -89037,7 +84123,6 @@ self: { ]; description = "Tests and test support tools for distributed-process"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-zookeeper" = callPackage @@ -89084,7 +84169,6 @@ self: { ]; description = "Compositional, type-safe, polymorphic static values and closures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "distribution" = callPackage @@ -89098,8 +84182,6 @@ self: { ]; description = "Finite discrete probability distributions"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "distribution-nixpkgs" = callPackage @@ -89159,7 +84241,6 @@ self: { ]; description = "Easily plot distributions from the distribution package.."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "distributive" = callPackage @@ -89199,8 +84280,6 @@ self: { libraryHaskellDepends = [ base ditto lucid path-pieces text ]; description = "Add support for using lucid with Ditto"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "diversity" = callPackage @@ -89261,7 +84340,6 @@ self: { ]; description = "A wiki implemented with a firm theoretical foundation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dixi"; }) {}; @@ -89278,8 +84356,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Hit drums with haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "djinn" = callPackage @@ -89311,8 +84387,6 @@ self: { ]; description = "Generate Haskell code from a type. Bridge from Djinn to GHC API."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "djinn-lib" = callPackage @@ -89337,8 +84411,6 @@ self: { ]; description = "Generate executable Haskell code from a type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dl-fedora" = callPackage @@ -89361,7 +84433,6 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "Fedora image download tool"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "dl-fedora"; }) {}; @@ -89448,9 +84519,7 @@ self: { ]; description = "AVAYA DMCC API bindings and WebSockets server for AVAYA"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dmcc-ws"; - broken = true; }) {}; "dmenu" = callPackage @@ -89466,8 +84535,6 @@ self: { ]; description = "Complete bindings to the dmenu and dmenu2 command line tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dmenu-pkill" = callPackage @@ -89485,7 +84552,6 @@ self: { ]; description = "dmenu script for killing applications. Sortable by process id or CPU/MEM usage."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dmenu-pkill"; }) {}; @@ -89504,7 +84570,6 @@ self: { ]; description = "Mounting and unmounting linux devices as user with dmenu and pmount"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dmenu-pmount"; }) {}; @@ -89523,7 +84588,6 @@ self: { ]; description = "dmenu script for searching the web with customizable search engines"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dmenu-search"; }) {}; @@ -89545,7 +84609,6 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "DNF wrapper tool to control repos"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dnf-repo"; }) {}; @@ -89621,8 +84684,6 @@ self: { ]; description = "DNS name parsing and pattern matching utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dnscache" = callPackage @@ -89641,9 +84702,7 @@ self: { executableHaskellDepends = [ base ]; description = "Caching DNS resolver library and mass DNS resolver utility"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "massdns"; - broken = true; }) {}; "dnsrbl" = callPackage @@ -89656,8 +84715,6 @@ self: { libraryHaskellDepends = [ base containers hsdns HUnit network ]; description = "Asynchronous DNS RBL lookup"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dnssd" = callPackage @@ -89670,8 +84727,6 @@ self: { librarySystemDepends = [ dns_sd ]; description = "DNS service discovery bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {dns_sd = null;}; "do-list" = callPackage @@ -89713,8 +84768,6 @@ self: { ]; description = "An alternative to monads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "do-spaces" = callPackage @@ -89743,8 +84796,6 @@ self: { ]; description = "DigitalOcean Spaces API bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dobutok" = callPackage @@ -89756,8 +84807,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Creates the time intervals for CLI changing messages on the screen"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dobutokO" = callPackage @@ -89769,8 +84818,6 @@ self: { libraryHaskellDepends = [ base ]; description = "The library is intended to print updated messages on the terminal screen"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dobutokO-effects" = callPackage @@ -89815,7 +84862,6 @@ self: { ]; description = "Helps to order the 7 or less Ukrainian words to obtain somewhat suitable for poetry or music text"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "dobutokO-poetry"; }) {}; @@ -89828,7 +84874,6 @@ self: { libraryHaskellDepends = [ base mmsyn3 mmsyn6ukr mmsyn7s vector ]; description = "Helps to order the 7 or less words (first of all the Ukrainian ones) to obtain somewhat suitable for poetry or music text"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "dobutokO-poetry-general-languages" = callPackage @@ -89845,7 +84890,6 @@ self: { ]; description = "Helps to order the 7 or less words to obtain somewhat suitable for poetry or music text"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "dobutokO2" = callPackage @@ -89869,7 +84913,6 @@ self: { ]; description = "Helps to create experimental music from a file (or its part) and a Ukrainian text"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "dobutokO2"; }) {}; @@ -89887,7 +84930,6 @@ self: { ]; description = "Helps to create more complex experimental music from a file (especially timbre)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "dobutokO4" = callPackage @@ -89904,7 +84946,6 @@ self: { ]; description = "Helps to create experimental music. Uses SoX inside."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "doc-review" = callPackage @@ -89930,7 +84971,6 @@ self: { ]; description = "Document review Web application, like http://book.realworldhaskell.org/"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "doc-review"; }) {}; @@ -89950,9 +84990,7 @@ self: { ]; description = "Checks Haddock comments for pitfalls and version changes"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "doccheck"; - broken = true; }) {}; "docidx" = callPackage @@ -89971,9 +85009,7 @@ self: { ]; description = "Generate an HTML index of installed Haskell packages and their documentation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "docidx"; - broken = true; }) {}; "docker" = callPackage @@ -90007,8 +85043,6 @@ self: { ]; description = "An API client for docker written in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "docker-build-cacher" = callPackage @@ -90031,9 +85065,7 @@ self: { ]; description = "Builds a docker image and caches all of its intermediate stages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "docker-build-cacher"; - broken = true; }) {}; "dockercook" = callPackage @@ -90067,9 +85099,7 @@ self: { testHaskellDepends = [ base HTF text vector ]; description = "A build tool for multiple docker image layers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "dockercook"; - broken = true; }) {}; "dockerfile" = callPackage @@ -90103,8 +85133,6 @@ self: { th-lift th-lift-instances time ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "doclayout" = callPackage @@ -90146,8 +85174,6 @@ self: { ]; description = "A command-line interface parser that will make you smile"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "docrecords" = callPackage @@ -90170,8 +85196,6 @@ self: { ]; description = "Vinyl-based records with hierarchical field names, default values and documentation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "docstrings" = callPackage @@ -90352,9 +85376,7 @@ self: { doHaddock = false; description = "Easy way to run doctests via cabal (no aeson dependency, uses configurator instead)"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "doctest-discover"; - broken = true; }) {}; "doctest-driver-gen" = callPackage @@ -90461,8 +85483,6 @@ self: { testHaskellDepends = [ base doctest HUnit QuickCheck ]; description = "Allow QuickCheck-style property testing within doctest"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "docusign-base" = callPackage @@ -90532,9 +85552,7 @@ self: { ]; description = "DocuSign examples"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "docusign-example"; - broken = true; }) {}; "docvim" = callPackage @@ -90561,9 +85579,7 @@ self: { ]; description = "Documentation generator for Vim plug-ins"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "docvim"; - broken = true; }) {}; "doi" = callPackage @@ -90592,9 +85608,7 @@ self: { ]; description = "Automatic Bibtex and fulltext of scientific articles"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "doi"; - broken = true; }) {}; "doldol" = callPackage @@ -90638,8 +85652,6 @@ self: { testHaskellDepends = [ base ]; description = "DOM Events expressed as Haskell types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dom-lt" = callPackage @@ -90675,8 +85687,6 @@ self: { ]; description = "Simple monadic DOM parser"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dom-selector" = callPackage @@ -90697,8 +85707,6 @@ self: { ]; description = "DOM traversal by CSS selectors for xml-conduit package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "domain" = callPackage @@ -90724,7 +85732,6 @@ self: { ]; description = "Codegen helping you define domain models"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "domain-aeson" = callPackage @@ -90747,7 +85754,6 @@ self: { ]; description = "Integration of domain with aeson"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "domain-auth" = callPackage @@ -90784,7 +85790,6 @@ self: { testHaskellDepends = [ cereal cereal-text domain rerebase ]; description = "Integration of domain with cereal"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "domain-core" = callPackage @@ -90819,8 +85824,6 @@ self: { testHaskellDepends = [ domain optics rerebase ]; description = "Integration of domain with optics"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "domaindriven" = callPackage @@ -90850,7 +85853,6 @@ self: { ]; description = "Batteries included event sourcing and CQRS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "domaindriven-core" = callPackage @@ -90875,8 +85877,6 @@ self: { ]; description = "Batteries included event sourcing and CQRS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dominion" = callPackage @@ -90909,8 +85909,6 @@ self: { ]; description = "A simple templating library using HTML5 as its template language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dormouse-client" = callPackage @@ -90940,7 +85938,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Simple, type-safe and testable HTTP client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dormouse-uri" = callPackage @@ -90965,8 +85962,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Library for type-safe representations of Uri/Urls"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dot" = callPackage @@ -91006,9 +86001,7 @@ self: { ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dot-linker"; - broken = true; }) {}; "dot2graphml" = callPackage @@ -91095,9 +86088,7 @@ self: { doHaddock = false; description = "Filesystem to manage and parse dotfiles"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dotfs"; - broken = true; }) {}; "dotgen" = callPackage @@ -91140,8 +86131,6 @@ self: { ]; description = "dot language parsing and printing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "double-conversion" = callPackage @@ -91202,8 +86191,6 @@ self: { libraryHaskellDepends = [ base foldable-ix ]; description = "Some special functions to work with lists (with zip)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "doublify-toolkit" = callPackage @@ -91215,8 +86202,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Doublify API toolkit for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dove" = callPackage @@ -91252,7 +86237,6 @@ self: { ]; description = "A PureScript interpreter with a Haskell FFI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dovetail-aeson" = callPackage @@ -91269,7 +86253,6 @@ self: { ]; description = "Use Aeson from your Dovetail programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dovin" = callPackage @@ -91316,7 +86299,6 @@ self: { ]; description = "Dungeons of Wor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dow"; }) {}; @@ -91380,7 +86362,6 @@ self: { ]; description = "Simple tool to download images from RSS feeds (e.g. Flickr, Picasa)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "download-media-content"; }) {}; @@ -91398,8 +86379,6 @@ self: { ]; description = "A small, low-dependency library that provides turn-key file download over HTTP and HTTPS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dozenal" = callPackage @@ -91411,8 +86390,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A Haskell library for using Dozenal (Duodecimal - Base 12) numbers"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dozens" = callPackage @@ -91432,8 +86409,6 @@ self: { ]; description = "dozens api library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dph-base" = callPackage @@ -91447,8 +86422,6 @@ self: { ]; description = "Data Parallel Haskell common config and debugging functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dph-examples" = callPackage @@ -91467,7 +86440,6 @@ self: { ]; description = "Data Parallel Haskell example programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dph-lifted-base" = callPackage @@ -91484,7 +86456,6 @@ self: { ]; description = "Data Parallel Haskell common definitions used by other dph-lifted packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dph-lifted-copy" = callPackage @@ -91500,7 +86471,6 @@ self: { ]; description = "Data Parallel Haskell lifted array combinators. (deprecated version)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dph-lifted-vseg" = callPackage @@ -91517,7 +86487,6 @@ self: { ]; description = "Data Parallel Haskell lifted array combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dph-par" = callPackage @@ -91540,7 +86509,6 @@ self: { libraryHaskellDepends = [ base dph-base random vector ]; description = "Data Parallel Haskell segmented arrays. (abstract interface)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dph-prim-par" = callPackage @@ -91557,7 +86525,6 @@ self: { ]; description = "Data Parallel Haskell segmented arrays. (production version)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dph-prim-seq" = callPackage @@ -91573,7 +86540,6 @@ self: { ]; description = "Data Parallel Haskell segmented arrays. (sequential implementation)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dph-seq" = callPackage @@ -91605,8 +86571,6 @@ self: { testPkgconfigDepends = [ libdpkg ]; description = "libdpkg bindings"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) dpkg; libdpkg = null;}; "dpor" = callPackage @@ -91620,8 +86584,6 @@ self: { ]; description = "A generic implementation of dynamic partial-order reduction (DPOR) for testing arbitrary models of concurrency"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dprox" = callPackage @@ -91668,9 +86630,7 @@ self: { executableHaskellDepends = [ base relude ]; description = "See README for more info"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "dr-cabal"; - broken = true; }) {}; "drClickOn" = callPackage @@ -91682,8 +86642,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Monadic FRP"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dragen" = callPackage @@ -91704,8 +86662,6 @@ self: { ]; description = "Automatic derivation of optimized QuickCheck random generators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "drama" = callPackage @@ -91755,8 +86711,6 @@ self: { testHaskellDepends = [ base containers hspec QuickCheck ]; description = "A port of asciimoo's drawille to haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dresdner-verkehrsbetriebe" = callPackage @@ -91779,9 +86733,7 @@ self: { ]; description = "Library and program for querying DVB (Dresdner Verkehrsbetriebe AG)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "dresdner-verkehrsbetriebe"; - broken = true; }) {}; "drifter" = callPackage @@ -91818,8 +86770,6 @@ self: { ]; description = "PostgreSQL support for the drifter schema migration tool"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "drifter-sqlite" = callPackage @@ -91875,8 +86825,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "A Haskell bindings to the DRMAA C library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {drmaa = null;}; "drone" = callPackage @@ -91895,8 +86843,6 @@ self: { microlens req servant-server text warp ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dropbox" = callPackage @@ -91925,9 +86871,7 @@ self: { ]; description = "Dropbox API client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "exe"; - broken = true; }) {}; "dropbox-sdk" = callPackage @@ -91949,7 +86893,6 @@ self: { ]; description = "A library to access the Dropbox HTTP API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "dropsolve" = callPackage @@ -91968,7 +86911,6 @@ self: { ]; description = "A command line tool for resolving dropbox conflicts. Deprecated! Please use confsolve."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dropsolve"; }) {}; @@ -91999,8 +86941,6 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; description = "A subset of the miniKanren language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dsc" = callPackage @@ -92020,8 +86960,6 @@ self: { ]; description = "Helper functions for setting up Double Submit Cookie defense for forms"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dsh-sql" = callPackage @@ -92049,7 +86987,6 @@ self: { ]; description = "SQL backend for Database Supported Haskell (DSH)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sqltests"; }) {}; @@ -92068,8 +87005,6 @@ self: { ]; description = "DSMC library for rarefied gas dynamics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dsmc-tools" = callPackage @@ -92089,7 +87024,6 @@ self: { ]; description = "DSMC toolkit for rarefied gas dynamics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dson" = callPackage @@ -92101,8 +87035,6 @@ self: { libraryHaskellDepends = [ base parsec ]; description = "Haskell Doge Serialized Object Notation Parser"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dson-parsec" = callPackage @@ -92114,8 +87046,6 @@ self: { libraryHaskellDepends = [ base parsec ]; description = "DSON parser"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dsp" = callPackage @@ -92142,8 +87072,6 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols dlist ]; description = "Difference strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dsv" = callPackage @@ -92167,8 +87095,6 @@ self: { ]; description = "DSV (delimiter-separated values)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dtab" = callPackage @@ -92209,7 +87135,6 @@ self: { ]; description = "Parse and render DTD files (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dtd-text" = callPackage @@ -92225,8 +87150,6 @@ self: { ]; description = "Parse and render XML DTDs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dtd-types" = callPackage @@ -92268,8 +87191,6 @@ self: { ]; description = "(Fast) Dynamic Time Warping"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dual" = callPackage @@ -92302,9 +87223,7 @@ self: { ]; description = "Network multiplayer 2D shooting game"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "dual"; - broken = true; }) {}; "dual-tree" = callPackage @@ -92339,8 +87258,6 @@ self: { ]; description = "Automatically generate dual constructions"; license = "AGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dublincore-xml-conduit" = callPackage @@ -92396,8 +87313,6 @@ self: { ]; description = "A Haskell library for parsing text into structured data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "duet" = callPackage @@ -92425,9 +87340,7 @@ self: { ]; description = "A tiny language, a subset of Haskell (with type classes) aimed at aiding teachers to teach Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "duet"; - broken = true; }) {}; "dumb-cas" = callPackage @@ -92445,8 +87358,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "A computer “algebra” system that knows nothing about algebra, at the core"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dump" = callPackage @@ -92484,8 +87395,6 @@ self: { ]; description = "A plug-in for rendering GHC core"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dunai" = callPackage @@ -92517,8 +87426,6 @@ self: { ]; description = "Generalised reactive framework supporting classic, arrowized and monadic FRP. (Core library fork.)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dunai-test" = callPackage @@ -92568,9 +87475,7 @@ self: { ]; description = "Frontend development build tool"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "duplo"; - broken = true; }) {}; "dura" = callPackage @@ -92584,8 +87489,6 @@ self: { libraryHaskellDepends = [ base bytestring directory filepath ]; description = "durable/atomic file system writes (from rio package)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "duration" = callPackage @@ -92602,8 +87505,6 @@ self: { ]; description = "A tiny compile-time time utility library inspired by zeit/ms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dustme" = callPackage @@ -92645,9 +87546,7 @@ self: { ]; description = "Dead simple password manager"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "dvault"; - broken = true; }) {}; "dvda" = callPackage @@ -92670,7 +87569,6 @@ self: { ]; description = "Efficient automatic differentiation and code generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dvdread" = callPackage @@ -92684,8 +87582,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "A monadic interface to libdvdread"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {dvdread = null;}; "dvi-processing" = callPackage @@ -92697,8 +87593,6 @@ self: { libraryHaskellDepends = [ base bytestring filepath transformers ]; description = "Read/write DVI and TFM file"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dvorak" = callPackage @@ -92723,8 +87617,6 @@ self: { libraryHaskellDepends = [ base binary bytestring containers ]; description = "Parser for DWARF debug format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dwarf-el" = callPackage @@ -92763,8 +87655,6 @@ self: { executableHaskellDepends = [ base containers dwarf-el ]; description = "High-level wrapper around the dwarf library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dwergaz" = callPackage @@ -92831,8 +87721,6 @@ self: { testHaskellDepends = [ ansi-terminal base hspec text ]; description = "A library for working with binary Dyck words"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dyepack" = callPackage @@ -92887,8 +87775,6 @@ self: { testHaskellDepends = [ base ]; description = "FRP for brick Terminal user interface library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dyna-gloss" = callPackage @@ -92927,8 +87813,6 @@ self: { testHaskellDepends = [ base ]; description = "FRP library for processing-for-haskell package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dynamic" = callPackage @@ -92966,7 +87850,6 @@ self: { ]; description = "Access the functions from the Cabal library without depending on it"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dynamic-graph" = callPackage @@ -93010,8 +87893,6 @@ self: { benchmarkHaskellDepends = [ base criterion primitive ]; description = "Dynamic graph algorithms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dynamic-linker-template" = callPackage @@ -93050,8 +87931,6 @@ self: { libraryHaskellDepends = [ base primitive vector ]; description = "A wrapper around MVector that enables pushing, popping and extending"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dynamic-object" = callPackage @@ -93070,8 +87949,6 @@ self: { ]; description = "Object-oriented programming with duck typing and singleton classes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dynamic-pipeline" = callPackage @@ -93098,9 +87975,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Library Type Safe implementation of Dynamic Pipeline Paradigm (DPP)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "examples"; - broken = true; }) {}; "dynamic-plot" = callPackage @@ -93125,7 +88000,6 @@ self: { ]; description = "Interactive diagram windows"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "dynamic-pp" = callPackage @@ -93146,7 +88020,6 @@ self: { ]; description = "A pretty-print library that employs a dynamic programming algorithm for optimal rendering"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dynamic-state" = callPackage @@ -93189,7 +88062,6 @@ self: { ]; description = "Typesafe library for working with DynamoDB database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "dynloader" = callPackage @@ -93202,8 +88074,6 @@ self: { testHaskellDepends = [ base ghc ghc-paths hspec ]; description = "Dynamically runtime loading packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dynobud" = callPackage @@ -93235,7 +88105,6 @@ self: { ]; description = "your dynamic optimization buddy"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "dyre" = callPackage @@ -93264,8 +88133,6 @@ self: { libraryHaskellDepends = [ base bytestring transformers ]; description = "Bindings to the dywapitchtrack pitch tracking library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "dzen-dhall" = callPackage @@ -93301,9 +88168,7 @@ self: { ]; description = "Configure dzen2 bars in Dhall language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dzen-dhall"; - broken = true; }) {}; "dzen-utils" = callPackage @@ -93315,8 +88180,6 @@ self: { libraryHaskellDepends = [ base colour process ]; description = "Utilities for creating inputs for dzen"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "each" = callPackage @@ -93330,8 +88193,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Template Haskell library for writing monadic expressions more easily"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eager-sockets" = callPackage @@ -93345,8 +88206,6 @@ self: { libraryHaskellDepends = [ base bytestring network ]; description = "Socket operations with timeouts"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eap" = callPackage @@ -93379,9 +88238,7 @@ self: { testHaskellDepends = [ base filepath hspec ]; description = "Ear Clipping Triangulation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "earclipper"; - broken = true; }) {}; "earcut" = callPackage @@ -93393,8 +88250,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Binding to C++ earcut library"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "early" = callPackage @@ -93416,9 +88271,7 @@ self: { testHaskellDepends = [ base ]; description = "Early return syntax in do-notation (GHC plugin)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "early"; - broken = true; }) {}; "ease" = callPackage @@ -93445,8 +88298,6 @@ self: { ]; description = "Utility code for building HTTP API bindings more quickly"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "easy-args" = callPackage @@ -93459,8 +88310,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Parses command line arguments"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "easy-bitcoin" = callPackage @@ -93478,8 +88327,6 @@ self: { ]; description = "types and functions for bitcoin applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "easy-file" = callPackage @@ -93531,8 +88378,6 @@ self: { ]; description = "Haskell JSON library with an emphasis on simplicity, minimal dependencies, and ease of use"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "easyplot" = callPackage @@ -93544,8 +88389,6 @@ self: { libraryHaskellDepends = [ base process ]; description = "A tiny plotting library, utilizes gnuplot for plotting"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "easyrender" = callPackage @@ -93578,7 +88421,6 @@ self: { ]; description = "Pure, type-indexed haskell vector, matrix, and tensor library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "easytensor-vulkan" = callPackage @@ -93590,7 +88432,6 @@ self: { libraryHaskellDepends = [ base dimensions easytensor vulkan-api ]; description = "Use easytensor with vulkan-api"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "easytest" = callPackage @@ -93610,8 +88451,6 @@ self: { ]; description = "Simple, expressive testing library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ebeats" = callPackage @@ -93623,8 +88462,6 @@ self: { libraryHaskellDepends = [ base time ]; description = "Time in ebeats"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ebird-api" = callPackage @@ -93715,9 +88552,7 @@ self: { ]; description = "Parser combinators & EBNF, BFFs!"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "ebnf-parse"; - broken = true; }) {}; "ec2-signature" = callPackage @@ -93756,7 +88591,6 @@ self: { ]; description = "A handy tool for uploading unikernels to Amazon's EC2"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ec2-unikernel"; }) {}; @@ -93776,8 +88610,6 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion random ]; description = "Elliptic Curve Cryptography for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eccrypto-ed25519-bindings" = callPackage @@ -93789,7 +88621,6 @@ self: { libraryHaskellDepends = [ base bytestring eccrypto ]; description = "provides \"ed25519\" API using \"eccrypto\""; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ecdsa" = callPackage @@ -93805,7 +88636,6 @@ self: { ]; description = "Basic ECDSA signing implementation"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "echo" = callPackage @@ -93837,9 +88667,7 @@ self: { executableHaskellDepends = [ base ]; description = "A ECMA-262 interpreter library"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "ecma262"; - broken = true; }) {}; "ecstasy" = callPackage @@ -93891,7 +88719,6 @@ self: { pretty-simple text time unordered-containers vector ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hectare"; }) {}; @@ -93904,8 +88731,6 @@ self: { libraryHaskellDepends = [ base containers ecta ghc text ]; description = "Hole-Fit Synthesis using ECTAs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ecu" = callPackage @@ -93924,8 +88749,6 @@ self: { executableSystemDepends = [ canlib ]; description = "Tools for automotive ECU development"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {canlib = null;}; "ed25519" = callPackage @@ -93973,9 +88796,7 @@ self: { ]; description = "Command line file filtering with haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "eddie"; - broken = true; }) {}; "ede" = callPackage @@ -94007,9 +88828,7 @@ self: { ]; description = "Templating language with similar syntax and features to Liquid or Jinja2"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "ede"; - broken = true; }) {}; "edenmodules" = callPackage @@ -94021,8 +88840,6 @@ self: { libraryHaskellDepends = [ base containers deepseq parallel ]; description = "Semi-explicit parallel programming library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "edenskel" = callPackage @@ -94034,7 +88851,6 @@ self: { libraryHaskellDepends = [ base edenmodules parallel ]; description = "Semi-explicit parallel programming skeleton library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "edentv" = callPackage @@ -94055,7 +88871,6 @@ self: { ]; description = "A Tool to Visualize Parallel Functional Program Executions"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "edentv"; }) {}; @@ -94068,8 +88883,6 @@ self: { libraryHaskellDepends = [ base binary bytestring text ]; description = "EDF parsing library"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "edge" = callPackage @@ -94088,7 +88901,6 @@ self: { ]; description = "Top view space combat arcade game"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "edge"; }) {}; @@ -94117,7 +88929,6 @@ self: { ]; description = "Tools for efficient immutable graphs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "edis" = callPackage @@ -94129,8 +88940,6 @@ self: { libraryHaskellDepends = [ base bytestring cereal hedis ]; description = "Statically typechecked client for Redis"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "edit" = callPackage @@ -94151,8 +88960,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "A monad for rewriting things"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "edit-distance" = callPackage @@ -94224,8 +89031,6 @@ self: { ]; description = "Symmetric, stateful edit lenses"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "edit-lenses-demo" = callPackage @@ -94251,7 +89056,6 @@ self: { libraryHaskellDepends = [ base text vty vty-ui ]; description = "Interactive editors for Generics"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "editline" = callPackage @@ -94263,8 +89067,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Bindings to the editline library (libedit)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "editor-open" = callPackage @@ -94326,7 +89128,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "show the differences between 2 pieces of Text using the Levenshtein distance"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "effect-handlers" = callPackage @@ -94345,8 +89146,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "A library for writing extensible algebraic effects and handlers. Similar to extensible-effects but with deep handlers."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "effect-monad" = callPackage @@ -94358,7 +89157,6 @@ self: { libraryHaskellDepends = [ base type-level-sets ]; description = "Embeds effect systems and program logics into Haskell using graded monads and parameterised monads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "effect-stack" = callPackage @@ -94370,8 +89168,6 @@ self: { libraryHaskellDepends = [ base constraints mtl transformers ]; description = "Reducing the pain of transformer stacks with duplicated effects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "effectful" = callPackage @@ -94435,8 +89231,6 @@ self: { libraryHaskellDepends = [ base effectful-core primitive ]; description = "`ST`-style mutation for `effectful`"; license = lib.licenses.cc0; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "effectful-th" = callPackage @@ -94476,8 +89270,6 @@ self: { ]; description = "A monadic embedding of aspect oriented programming"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "effective-aspects-mzv" = callPackage @@ -94498,7 +89290,6 @@ self: { ]; description = "A monadic embedding of aspect oriented programming, using \"Monads, Zippers and Views\" instead of mtl"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "effects" = callPackage @@ -94541,8 +89332,6 @@ self: { ]; description = "An Effect System based on Type Classes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "effin" = callPackage @@ -94554,8 +89343,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A Typeable-free implementation of extensible effects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eflint" = callPackage @@ -94580,8 +89367,6 @@ self: { ]; description = "Simulation interpreter for FLINT policy descriptions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "egison" = callPackage @@ -94616,7 +89401,6 @@ self: { benchmarkHaskellDepends = [ base criterion transformers ]; description = "Programming language with non-linear pattern-matching against non-free data"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "egison-pattern-src" = callPackage @@ -94638,8 +89422,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Manipulating Egison patterns: abstract syntax, parser, and pretty-printer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "egison-pattern-src-haskell-mode" = callPackage @@ -94659,7 +89441,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Parser and pretty printer for Egison pattern expressions in Haskell source code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "egison-pattern-src-th-mode" = callPackage @@ -94682,7 +89463,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Parser and pretty printer for Egison pattern expressions to use with TH"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "egison-quote" = callPackage @@ -94696,7 +89476,6 @@ self: { ]; description = "A quasi quotes for using Egison expression in Haskell code"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "egison-tutorial" = callPackage @@ -94715,7 +89494,6 @@ self: { ]; description = "A tutorial program for the Egison programming language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "egison-tutorial"; }) {}; @@ -94746,9 +89524,7 @@ self: { ]; description = "like eruby, ehaskell is embedded haskell"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "ehs"; - broken = true; }) {}; "ehlo" = callPackage @@ -94785,8 +89561,6 @@ self: { ]; description = "Embedded haskell template using quasiquotes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eibd-client-simple" = callPackage @@ -94805,8 +89579,6 @@ self: { librarySystemDepends = [ eibclient ]; description = "EIBd Client"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {eibclient = null;}; "eigen" = callPackage @@ -94826,8 +89598,6 @@ self: { ]; description = "Eigen C++ library (linear algebra: matrices, sparse matrices, vectors, numerical solvers)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eio" = callPackage @@ -94843,9 +89613,7 @@ self: { executableToolDepends = [ markdown-unlit ]; description = "IO with Exceptions tracked on the type-level"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "readme"; - broken = true; }) {}; "either" = callPackage @@ -94918,8 +89686,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Functions for probing and unwrapping values inside of Either"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eithers" = callPackage @@ -94951,8 +89717,6 @@ self: { ]; description = "Binding to EJDB2 C library, an embedded JSON noSQL database"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {ejdb2 = null; libejdb2 = null;}; "ekg" = callPackage @@ -94973,7 +89737,6 @@ self: { ]; description = "Remote monitoring of processes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ekg-bosun" = callPackage @@ -94991,8 +89754,6 @@ self: { ]; description = "Send ekg metrics to a Bosun instance"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ekg-carbon" = callPackage @@ -95009,7 +89770,6 @@ self: { ]; description = "An EKG backend to send statistics to Carbon (part of Graphite monitoring tools)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ekg-cloudwatch" = callPackage @@ -95027,7 +89787,6 @@ self: { ]; description = "An ekg backend for Amazon Cloudwatch"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ekg-core" = callPackage @@ -95062,8 +89821,6 @@ self: { ]; description = "Push metrics to elastic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ekg-elasticsearch" = callPackage @@ -95081,8 +89838,6 @@ self: { ]; description = "Push metrics to elasticsearch"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ekg-influxdb" = callPackage @@ -95115,8 +89870,6 @@ self: { ]; description = "JSON encoding of ekg metrics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ekg-log" = callPackage @@ -95133,8 +89886,6 @@ self: { ]; description = "Push metrics to a log file"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ekg-prometheus-adapter" = callPackage @@ -95154,7 +89905,6 @@ self: { testHaskellDepends = [ base ]; description = "Easily expose your EKG metrics to Prometheus"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ekg-push" = callPackage @@ -95172,8 +89922,6 @@ self: { ]; description = "Small framework to push metric deltas to a broadcast channel using the ekg-core library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ekg-rrd" = callPackage @@ -95194,8 +89942,6 @@ self: { ]; description = "Passes ekg statistics to rrdtool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ekg-statsd" = callPackage @@ -95211,8 +89957,6 @@ self: { ]; description = "Push metrics to statsd"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ekg-wai" = callPackage @@ -95231,7 +89975,6 @@ self: { ]; description = "Remote monitoring of processes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "elasticsearch-interchange" = callPackage @@ -95254,7 +89997,6 @@ self: { ]; description = "Serialization of Elasticsearch requests and responses"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "elbow" = callPackage @@ -95286,7 +90028,6 @@ self: { testHaskellDepends = [ base hspec network-bitcoin ]; description = "Electrs client library for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "electrum-mnemonic" = callPackage @@ -95338,7 +90079,6 @@ self: { executableHaskellDepends = [ base elerea GLFW OpenGL ]; description = "Example applications for Elerea"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "elerea-sdl" = callPackage @@ -95361,8 +90101,6 @@ self: { libraryHaskellDepends = [ base extensible transformers ]; description = "Immediately lifts to a desired level"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "elf" = callPackage @@ -95394,8 +90132,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Dependently typed elimination functions using singletons"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eliminators_0_9_3" = callPackage @@ -95416,7 +90152,6 @@ self: { description = "Dependently typed elimination functions using singletons"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "elision" = callPackage @@ -95431,9 +90166,7 @@ self: { executableHaskellDepends = [ base ]; description = "Arrows with holes"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "elliptic-curve" = callPackage @@ -95459,7 +90192,6 @@ self: { ]; description = "Elliptic curve library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "elliptic-integrals" = callPackage @@ -95594,9 +90326,7 @@ self: { ]; description = "elm-export persistent entities"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.jb55 ]; - broken = true; }) {}; "elm-get" = callPackage @@ -95803,8 +90533,6 @@ self: { doHaddock = false; description = "Crossing the road between Haskell and Elm"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "elm-syntax" = callPackage @@ -95854,8 +90582,6 @@ self: { ]; description = "Generate ELM code from a Wai websocket application"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "elm-yesod" = callPackage @@ -95949,9 +90675,7 @@ self: { ]; description = "Generate easy-to-remember, hard-to-guess passwords"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "elocrypt"; - broken = true; }) {}; "elsa" = callPackage @@ -95973,7 +90697,6 @@ self: { testHaskellDepends = [ base directory filepath tasty tasty-hunit ]; description = "A tiny language for understanding the lambda-calculus"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "elsa"; }) {}; @@ -96163,7 +90886,6 @@ self: { ]; description = "Useful route types for Ema"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "ema-generics" = callPackage @@ -96184,8 +90906,6 @@ self: { ]; description = "Generic deriving for Ema routes"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "emacs-keys" = callPackage @@ -96204,7 +90924,6 @@ self: { ]; description = "library to parse emacs style keybinding into the modifiers and the chars"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; }) {}; "emacs-module" = callPackage @@ -96261,7 +90980,6 @@ self: { ]; description = "Sending eMail in Haskell made easy"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "email-header" = callPackage @@ -96283,8 +91001,6 @@ self: { ]; description = "Parsing and rendering of email and MIME headers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "email-postmark" = callPackage @@ -96300,8 +91016,6 @@ self: { ]; description = "A simple wrapper to send emails via the api of the service postmark (http://postmarkapp.com/)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "email-validate" = callPackage @@ -96373,8 +91087,6 @@ self: { testHaskellDepends = [ base doctest Glob ]; description = "Wrapper around email-validate library adding instances for common type classes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "emailparse" = callPackage @@ -96397,7 +91109,6 @@ self: { ]; description = "An email parser that will parse everything"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "emanote" = callPackage @@ -96467,7 +91178,6 @@ self: { description = "Emanate a structured view of your plain-text notes"; license = lib.licenses.agpl3Only; badPlatforms = [ "x86_64-darwin" ]; - hydraPlatforms = lib.platforms.none; mainProgram = "emanote"; maintainers = [ lib.maintainers.maralorn ]; }) {}; @@ -96486,8 +91196,6 @@ self: { testHaskellDepends = [ aeson base hspec ]; description = "Reasonable conventions for embedding YAML configuration with Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "embeddock" = callPackage @@ -96527,8 +91235,6 @@ self: { libraryHaskellDepends = [ base chronos ]; description = "execute actions periodically while avoiding drift"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "embroidery" = callPackage @@ -96547,7 +91253,6 @@ self: { executableHaskellDepends = [ base ]; description = "support for embroidery formats in haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -96579,7 +91284,6 @@ self: { ]; description = "Empirical Mode Decomposition and Hilbert-Huang Transform"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "emgm" = callPackage @@ -96592,8 +91296,6 @@ self: { testHaskellDepends = [ base HUnit QuickCheck syb ]; description = "Extensible and Modular Generics for the Masses"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "emoji" = callPackage @@ -96647,8 +91349,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A container that always has no values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "enchant" = callPackage @@ -96665,8 +91365,6 @@ self: { testHaskellDepends = [ base ]; description = "Binding to the Enchant library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) enchant;}; "enclosed-exceptions" = callPackage @@ -96703,8 +91401,6 @@ self: { ]; description = "Safe string conversion and encoding"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "encoding" = callPackage @@ -96726,8 +91422,6 @@ self: { testHaskellDepends = [ base bytestring HUnit QuickCheck ]; description = "A library for various character encodings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "encoding-io" = callPackage @@ -96741,8 +91435,6 @@ self: { ]; description = "Encoding-aware file I/O"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "encryptable" = callPackage @@ -96766,8 +91458,6 @@ self: { ]; description = "Typed encryption with persistent support"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "endo" = callPackage @@ -96785,8 +91475,6 @@ self: { ]; description = "Endomorphism utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eng-stemmer" = callPackage @@ -96825,8 +91513,6 @@ self: { ]; description = "A Haskell implementation of Engine.IO"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "engine-io-growler" = callPackage @@ -96845,7 +91531,6 @@ self: { unordered-containers wai wai-websockets websockets ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "engine-io-snap" = callPackage @@ -96862,7 +91547,6 @@ self: { snap-core unordered-containers websockets websockets-snap ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "engine-io-wai" = callPackage @@ -96881,7 +91565,6 @@ self: { ]; description = "An @engine-io@ @ServerAPI@ that is compatible with @Wai@"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "engine-io-yesod" = callPackage @@ -96898,7 +91581,6 @@ self: { unordered-containers wai wai-websockets websockets yesod-core ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "engineering-units" = callPackage @@ -96926,7 +91608,6 @@ self: { executableHaskellDepends = [ base matrix quipper-core ]; description = "An application (and library) to convert quipper circuits into Qpmc models"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "entangle"; }) {}; @@ -96973,8 +91654,6 @@ self: { ]; description = "entwine - Concurrency tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "enum-subset-generate" = callPackage @@ -96991,8 +91670,6 @@ self: { ]; description = "Generate an ADT being a subset of another ADT, and the corresponding mappings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "enum-text" = callPackage @@ -97014,8 +91691,6 @@ self: { ]; description = "A text rendering and parsing toolkit for enumerated types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "enum-text-rio" = callPackage @@ -97032,7 +91707,6 @@ self: { ]; description = "Making fmt available with rio"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "demo-enum-text-rio"; }) {}; @@ -97061,8 +91735,6 @@ self: { ]; description = "An experimental Utf8 parsing toolkit for enumerated types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "enumerable" = callPackage @@ -97093,7 +91765,6 @@ self: { executableHaskellDepends = [ base ]; description = "enumerate all the values in a finite type (automatically)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "example-enumerate"; }) {}; @@ -97115,7 +91786,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "simple package for inverting functions and testing totality, via brute enumeration of the domain"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example-enumerate-function"; }) {}; @@ -97133,7 +91803,6 @@ self: { testHaskellDepends = [ arith-encode base binary HUnit-Plus ]; description = "A practical API for building recursive enumeration procedures and enumerating datatypes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "enumerator" = callPackage @@ -97150,8 +91819,6 @@ self: { ]; description = "Reliable, high-performance processing with left-fold enumerators"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "enumerator-fd" = callPackage @@ -97163,7 +91830,6 @@ self: { libraryHaskellDepends = [ base enumerator mtl ]; description = "Enumerator instances for monads-fd classes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "enumerator-tf" = callPackage @@ -97175,7 +91841,6 @@ self: { libraryHaskellDepends = [ base enumerator monads-tf ]; description = "Enumerator instances for monads-tf classes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "enumfun" = callPackage @@ -97187,7 +91852,6 @@ self: { libraryHaskellDepends = [ base enummapset-th ]; description = "Finitely represented /total/ EnumMaps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "enummapmap" = callPackage @@ -97212,8 +91876,6 @@ self: { ]; description = "Map of maps using Enum types as keys"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "enummaps" = callPackage @@ -97225,8 +91887,6 @@ self: { libraryHaskellDepends = [ base containers deepseq ]; description = "Enum wrappers for IntMap and IntSet"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "enummapset" = callPackage @@ -97260,8 +91920,6 @@ self: { ]; description = "TH-generated EnumSet/EnumMap wrappers around IntSet/IntMap"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "enumset" = callPackage @@ -97295,8 +91953,6 @@ self: { ]; description = "Safe helpers for accessing and modifying environment variables"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "env-guard" = callPackage @@ -97340,8 +91996,6 @@ self: { ]; description = "Pull configuration information from the ENV"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "envelope" = callPackage @@ -97356,8 +92010,6 @@ self: { testHaskellDepends = [ base doctest Glob ]; description = "Defines generic 'Envelope' type to wrap reponses from a JSON API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "envparse" = callPackage @@ -97391,9 +92043,7 @@ self: { ]; description = "Display efficiently the state of the local environment"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "envstatus"; - broken = true; }) {}; "envy" = callPackage @@ -97431,8 +92081,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Provides FromEnv in envy instance for Record of extensible"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "epanet-haskell" = callPackage @@ -97444,8 +92092,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell binding for EPANET"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "epass" = callPackage @@ -97457,8 +92103,6 @@ self: { libraryHaskellDepends = [ base stm time ]; description = "Baisc, Erlang-like message passing supporting sockets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ephemeral" = callPackage @@ -97481,7 +92125,6 @@ self: { testHaskellDepends = [ base doctest numhask ]; description = "See readme.md"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "epi-sim" = callPackage @@ -97500,8 +92143,6 @@ self: { ]; description = "A library for simulating epidemics as birth-death processes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "epic" = callPackage @@ -97519,9 +92160,7 @@ self: { ]; description = "Compiler for a simple functional language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "epic"; - broken = true; }) {}; "epoll" = callPackage @@ -97535,8 +92174,6 @@ self: { libraryHaskellDepends = [ base unix ]; description = "epoll bindings"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eprocess" = callPackage @@ -97629,9 +92266,7 @@ self: { ]; description = "Rename epub ebook files based on meta information"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "epubname"; - broken = true; }) {}; "eq" = callPackage @@ -97697,8 +92332,6 @@ self: { ]; description = "Proof assistant for Haskell using DataKinds & PolyKinds"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "equeue" = callPackage @@ -97720,8 +92353,6 @@ self: { ]; description = "Application level triggered, and edge triggered event multiqueues"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "equivalence" = callPackage @@ -97764,9 +92395,7 @@ self: { ]; description = "An entity-relationship diagram generator from a plain text description"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "erd"; - broken = true; }) {}; "erf" = callPackage @@ -97789,7 +92418,6 @@ self: { libraryHaskellDepends = [ base polynomial ]; description = "Native Haskell implementation of the interface from the erf package"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "erlang" = callPackage @@ -97805,8 +92433,6 @@ self: { ]; description = "FFI interface to Erlang"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "erlang-ffi" = callPackage @@ -97826,8 +92452,6 @@ self: { ]; description = "Send messages to an Erlang node using Haskell"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eros" = callPackage @@ -97840,8 +92464,6 @@ self: { libraryHaskellDepends = [ aeson base bytestring containers text ]; description = "A text censorship library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eros-client" = callPackage @@ -97860,7 +92482,6 @@ self: { ]; description = "DEPRECATED in favor of eros-http"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "erosc"; }) {}; @@ -97881,7 +92502,6 @@ self: { ]; description = "JSON HTTP interface to Eros"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "eros-http"; }) {}; @@ -97971,8 +92591,6 @@ self: { ]; description = "Provides API for enriching errors with contexts"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "error-continuations" = callPackage @@ -97984,8 +92602,6 @@ self: { libraryHaskellDepends = [ base either mtl transformers ]; description = "Error Continuations"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "error-list" = callPackage @@ -97997,8 +92613,6 @@ self: { libraryHaskellDepends = [ base mtl text text-render ]; description = "A useful type for collecting error messages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "error-loc" = callPackage @@ -98010,8 +92624,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "An error replacement with call-site metadata"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "error-location" = callPackage @@ -98038,7 +92650,6 @@ self: { ]; description = "Composable error messages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "error-or" = callPackage @@ -98072,8 +92683,6 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Set of utils and operators for error handling"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "errorcall-eq-instance" = callPackage @@ -98123,7 +92732,6 @@ self: { ]; description = "`bracket`-like functions for `ExceptT` over `IO` monad"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "ersaconcat" = callPackage @@ -98147,9 +92755,7 @@ self: { ]; description = "A script to concatenate AIP ERSA"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ersaconcat"; - broken = true; }) {}; "ersatz" = callPackage @@ -98177,8 +92783,6 @@ self: { testHaskellDepends = [ array base ]; description = "A monad for expressing SAT or QSAT problems using observable sharing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ersatz-toysat" = callPackage @@ -98198,7 +92802,6 @@ self: { ]; description = "toysat driver as backend for ersatz"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ert" = callPackage @@ -98221,9 +92824,7 @@ self: { ]; description = "Easy Runtime Templates"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "ert"; - broken = true; }) {}; "escape-artist" = callPackage @@ -98240,8 +92841,6 @@ self: { ]; description = "ANSI Escape Sequence Text Decoration Made Easy"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "escaped" = callPackage @@ -98290,9 +92889,7 @@ self: { doHaddock = false; description = "Terminal fuzzy selector"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "escoger"; - broken = true; }) {}; "esotericbot" = callPackage @@ -98316,7 +92913,6 @@ self: { doHaddock = false; description = "Esotericbot is a sophisticated, lightweight IRC bot"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "esotericbot"; }) {}; @@ -98431,8 +93027,6 @@ self: { ]; description = "Esqueleto support for the pgcrypto PostgreSQL module"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "esqueleto-streaming" = callPackage @@ -98449,7 +93043,6 @@ self: { ]; description = "Memory-constant streaming of Esqueleto results from PostgreSQL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "esqueleto-textsearch" = callPackage @@ -98484,8 +93077,6 @@ self: { libraryHaskellDepends = [ base ]; description = "The type-level S combinator in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "essence-of-live-coding" = callPackage @@ -98510,9 +93101,7 @@ self: { ]; description = "General purpose live coding framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.turion ]; - broken = true; }) {}; "essence-of-live-coding-PortMidi" = callPackage @@ -98529,7 +93118,6 @@ self: { description = "General purpose live coding framework - PortMidi backend"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; }) {}; "essence-of-live-coding-gloss" = callPackage @@ -98545,7 +93133,6 @@ self: { ]; description = "General purpose live coding framework - Gloss backend"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.turion ]; }) {}; @@ -98565,7 +93152,6 @@ self: { ]; description = "General purpose live coding framework - Gloss example"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "essence-of-live-coding-gloss-example"; }) {}; @@ -98582,7 +93168,6 @@ self: { ]; description = "General purpose live coding framework - pulse backend"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.turion ]; }) {}; @@ -98602,7 +93187,6 @@ self: { ]; description = "General purpose live coding framework - pulse backend example"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "essence-of-live-coding-pulse-example"; }) {}; @@ -98620,7 +93204,6 @@ self: { ]; description = "General purpose live coding framework - QuickCheck integration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.turion ]; }) {}; @@ -98633,7 +93216,6 @@ self: { libraryHaskellDepends = [ base essence-of-live-coding vivid ]; description = "General purpose live coding framework - vivid backend"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "essence-of-live-coding-warp" = callPackage @@ -98652,7 +93234,6 @@ self: { ]; description = "General purpose live coding framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.turion ]; }) {}; @@ -98684,7 +93265,6 @@ self: { ]; description = "Tool for managing probability estimation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "estreps" = callPackage @@ -98701,7 +93281,6 @@ self: { ]; description = "Repeats from ESTs"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "etc" = callPackage @@ -98719,8 +93298,6 @@ self: { testHaskellDepends = [ aeson base rio tasty tasty-hunit ]; description = "Declarative configuration spec for Haskell projects"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "etcd" = callPackage @@ -98739,8 +93316,6 @@ self: { testHaskellDepends = [ async base hspec MonadRandom mtl text ]; description = "Client for etcd, a highly-available key value store"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eternal" = callPackage @@ -98777,7 +93352,6 @@ self: { ]; description = "Native event-sourcing database"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "eternity-timestamped" = callPackage @@ -98795,7 +93369,6 @@ self: { ]; description = "Automatic timestamping for Eternity"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ether" = callPackage @@ -98824,7 +93397,6 @@ self: { ]; description = "Monad transformers and classes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ethereum-analyzer" = callPackage @@ -98848,7 +93420,6 @@ self: { ]; description = "A Ethereum contract analyzer"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "ethereum-analyzer-cli" = callPackage @@ -98876,7 +93447,6 @@ self: { ]; description = "A CLI frontend for ethereum-analyzer"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "ethereum-analyzer-deps" = callPackage @@ -98922,7 +93492,6 @@ self: { ]; description = "A web frontend for ethereum-analyzer"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "ethereum-analyzer-webui"; }) {}; @@ -98952,7 +93521,6 @@ self: { ]; description = "A Haskell version of an Ethereum client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ethereum-merkle-patricia-db" = callPackage @@ -98977,7 +93545,6 @@ self: { ]; description = "A modified Merkle Patricia DB"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ethereum-rlp" = callPackage @@ -98996,8 +93563,6 @@ self: { ]; description = "Ethereum Recursive Length Prefix Encoding"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eths-rlp" = callPackage @@ -99014,7 +93579,6 @@ self: { ]; description = "Ethereum Recursive Length Prefix Encoding"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ety" = callPackage @@ -99096,7 +93660,6 @@ self: { ]; description = "Dynamic network FRP with events and continuous values"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "eurofxref" = callPackage @@ -99114,8 +93677,6 @@ self: { ]; description = "Free foreign exchange/currency feed from the European Central Bank"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "evdev" = callPackage @@ -99160,8 +93721,6 @@ self: { description = "Bridge for working with evdev and streamly"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eve" = callPackage @@ -99196,9 +93755,7 @@ self: { ]; testHaskellDepends = [ base bytestring eve lens mtl text vty ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "eve-cli-exe"; - broken = true; }) {}; "eved" = callPackage @@ -99216,8 +93773,6 @@ self: { ]; description = "A value level web framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eveff" = callPackage @@ -99242,8 +93797,6 @@ self: { ]; description = "Monoidal, monadic and first-class events"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "event-driven" = callPackage @@ -99255,8 +93808,6 @@ self: { libraryHaskellDepends = [ base monads-tf yjtools ]; description = "library for event driven programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "event-handlers" = callPackage @@ -99306,7 +93857,6 @@ self: { ]; description = "Event-graph simulation monad transformer"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "event-transformer" = callPackage @@ -99345,7 +93895,6 @@ self: { ]; description = "Core module for eventful"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "eventful-dynamodb" = callPackage @@ -99369,7 +93918,6 @@ self: { ]; description = "Library for eventful DynamoDB event stores"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "eventful-memory" = callPackage @@ -99389,7 +93937,6 @@ self: { ]; description = "In-memory implementations for eventful"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "eventful-postgresql" = callPackage @@ -99412,7 +93959,6 @@ self: { ]; description = "Postgres implementations for eventful"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "eventful-sql-common" = callPackage @@ -99431,7 +93977,6 @@ self: { ]; description = "Common library for SQL event stores"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "eventful-sqlite" = callPackage @@ -99454,7 +93999,6 @@ self: { ]; description = "SQLite implementations for eventful"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "eventful-test-helpers" = callPackage @@ -99470,7 +94014,6 @@ self: { ]; description = "Common module used for eventful tests"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "eventlog-socket" = callPackage @@ -99526,7 +94069,6 @@ self: { ]; description = "A different take on an IO system. Based on Amanda's IO loop, this eventloop takes a function that maps input events to output events. It can easily be extended by modules that represent IO devices or join multiple modules together."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "eventsource-api" = callPackage @@ -99546,8 +94088,6 @@ self: { ]; description = "Provides an eventsourcing high level API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eventsource-geteventstore-store" = callPackage @@ -99572,7 +94112,6 @@ self: { ]; description = "GetEventStore store implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "eventsource-store-specs" = callPackage @@ -99589,7 +94128,6 @@ self: { ]; description = "Provides common test specification for Store implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "eventsource-stub-store" = callPackage @@ -99611,7 +94149,6 @@ self: { ]; description = "An in-memory stub store implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "eventsourced" = callPackage @@ -99633,9 +94170,7 @@ self: { ]; description = "Server-Sent Events the UNIX way"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "eventsourced"; - broken = true; }) {}; "eventsourcing" = callPackage @@ -99708,8 +94243,6 @@ self: { description = "EventStore TCP Client"; license = lib.licenses.bsd3; platforms = lib.platforms.x86_64; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eventstore_1_4_3" = callPackage @@ -99746,7 +94279,6 @@ self: { license = lib.licenses.bsd3; platforms = lib.platforms.x86_64; hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "eventuo11y" = callPackage @@ -99764,7 +94296,6 @@ self: { ]; description = "An event-oriented observability library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "eventuo11y-batteries" = callPackage @@ -99788,7 +94319,6 @@ self: { ]; description = "Grab bag of eventuo11y-enriched functionality"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "eventuo11y-dsl" = callPackage @@ -99816,7 +94346,6 @@ self: { ]; description = "aeson-based rendering for eventuo11y"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "eventuo11y-otel" = callPackage @@ -99830,7 +94359,6 @@ self: { ]; description = "OpenTelemetry-based rendering for eventuo11y"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "eventuo11y-prometheus" = callPackage @@ -99842,7 +94370,6 @@ self: { libraryHaskellDepends = [ base containers eventuo11y prometheus ]; description = "Prometheus backend for eventuo11y"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "every" = callPackage @@ -99865,7 +94392,6 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "A functional pearl on encoding and decoding using question-and-answer strategies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "evm-opcodes" = callPackage @@ -99907,8 +94433,6 @@ self: { ]; description = "A GHC plugin to derive instances"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ewe" = callPackage @@ -99928,9 +94452,7 @@ self: { executableToolDepends = [ alex happy uuagc ]; description = "An interpreter for EWE programming language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ewe"; - broken = true; }) {}; "ex-pool" = callPackage @@ -99971,8 +94493,6 @@ self: { testHaskellDepends = [ base containers tasty tasty-hunit ]; description = "Efficient exact cover solver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "exact-pi" = callPackage @@ -100021,8 +94541,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Framework for Exact Real Arithmetic in the Positional Number System"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "example-haskell-project" = callPackage @@ -100051,8 +94569,6 @@ self: { libraryHaskellDepends = [ base exceptions transformers ]; description = "Safely deal with exceptions in ExceptT"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "exception-hierarchy" = callPackage @@ -100090,8 +94606,6 @@ self: { ]; description = "Exception monad transformer instances for monads-fd classes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "exception-monads-tf" = callPackage @@ -100150,8 +94664,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "DerivingVia for your hierarchical exceptions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "exceptional" = callPackage @@ -100163,8 +94675,6 @@ self: { libraryHaskellDepends = [ base exceptions ]; description = "Essentially the Maybe type with error messages"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "exceptionfree-readfile" = callPackage @@ -100180,8 +94690,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "An exception-free readFile for use with '+RTS -xc -RTS' projects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "exceptions_0_10_7" = callPackage @@ -100252,8 +94760,6 @@ self: { ]; description = "A Haskell client for https://exchangeratesapi.io/"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "execs" = callPackage @@ -100268,9 +94774,7 @@ self: { executableHaskellDepends = [ base directory process text ]; description = "Tool to run stack exec prj-exe more easy"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "execs"; - broken = true; }) {}; "executable-hash" = callPackage @@ -100319,8 +94823,6 @@ self: { testHaskellDepends = [ async base doctest hspec process ]; description = "Shell helpers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "exference" = callPackage @@ -100351,7 +94853,6 @@ self: { ]; description = "Tool to search/generate (haskell) expressions with a given type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "exference"; }) {}; @@ -100378,8 +94879,6 @@ self: { ]; description = "A library for crawling exhentai"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "exhaustive" = callPackage @@ -100394,8 +94893,6 @@ self: { ]; description = "Compile time checks that a computation considers producing data through all possible constructors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "exherbo-cabal" = callPackage @@ -100420,9 +94917,7 @@ self: { testHaskellDepends = [ base doctest ]; description = "Exheres generator for cabal packages"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "exherbo-cabal"; - broken = true; }) {}; "exif" = callPackage @@ -100435,8 +94930,6 @@ self: { librarySystemDepends = [ exif ]; description = "A Haskell binding to a subset of libexif"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) exif;}; "exiftool" = callPackage @@ -100478,8 +94971,6 @@ self: { ]; description = "database schema for exigo marking/assessment tools"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "exinst" = callPackage @@ -100496,8 +94987,6 @@ self: { ]; description = "Dependent pairs and their instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "exinst-aeson" = callPackage @@ -100517,7 +95006,6 @@ self: { ]; description = "@exinst@ support for @aeson@ package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "exinst-base" = callPackage @@ -100538,7 +95026,6 @@ self: { ]; description = "@exinst@ support for @base@ package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "exinst-bytes" = callPackage @@ -100559,7 +95046,6 @@ self: { ]; description = "@exinst@ support for @bytes@ package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "exinst-cereal" = callPackage @@ -100580,7 +95066,6 @@ self: { ]; description = "@exinst@ support for @cereal@ package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "exinst-deepseq" = callPackage @@ -100592,7 +95077,6 @@ self: { libraryHaskellDepends = [ base constraints deepseq exinst ]; description = "Derive instances for the `deepseq` library for your existential types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "exinst-hashable" = callPackage @@ -100606,7 +95090,6 @@ self: { ]; description = "Derive instances for the `hashable` library for your existential types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "exinst-serialise" = callPackage @@ -100626,7 +95109,6 @@ self: { ]; description = "Dependent pairs and their instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "exist" = callPackage @@ -100638,7 +95120,6 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols util ]; description = "Dependent sum type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "exist-instances" = callPackage @@ -100654,7 +95135,6 @@ self: { ]; description = "Instances for \"exist\" package (requires more language extensions and dependencies)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "existential" = callPackage @@ -100688,8 +95168,6 @@ self: { libraryHaskellDepends = [ base contravariant ]; description = "Existential datatypes holding evidence of constraints"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "exit-codes" = callPackage @@ -100722,8 +95200,6 @@ self: { ]; description = "Monad transformer for exit codes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "exomizer" = callPackage @@ -100758,8 +95234,6 @@ self: { benchmarkHaskellDepends = [ base criterion incipit-base ]; description = "Customizable Quasiquote Interpolation"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "exotic-list-monads" = callPackage @@ -100797,9 +95271,7 @@ self: { base HUnit QuickCheck random tasty tasty-hunit tasty-quickcheck ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "exp-cache-benchmarks"; - broken = true; }) {}; "exp-extended" = callPackage @@ -100813,8 +95285,6 @@ self: { libraryHaskellDepends = [ base ]; description = "floating point with extended exponent range"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "exp-pairs" = callPackage @@ -100852,7 +95322,6 @@ self: { ]; description = "Extensible Pandoc"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "expat-enumerator" = callPackage @@ -100868,7 +95337,6 @@ self: { ]; description = "Enumerator-based API for Expat"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "experimenter" = callPackage @@ -100944,7 +95412,6 @@ self: { ]; description = "Expiring containers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "expiring-mvar" = callPackage @@ -100971,9 +95438,7 @@ self: { ]; description = "Show how expressions are parsed"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "explain"; - broken = true; }) {}; "explainable-predicates" = callPackage @@ -101010,8 +95475,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Fully-flexible polymorphic lenses, without any bizarre profunctors"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "explicit-determinant" = callPackage @@ -101023,8 +95486,6 @@ self: { libraryHaskellDepends = [ base ]; description = "explicit computation of determinant of small matrices"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "explicit-exception" = callPackage @@ -101052,8 +95513,6 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols tagged ]; description = "File handles with explicit IOModes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "explicit-iomodes-bytestring" = callPackage @@ -101065,7 +95524,6 @@ self: { libraryHaskellDepends = [ base bytestring explicit-iomodes ]; description = "Extends explicit-iomodes with ByteString operations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "explicit-iomodes-text" = callPackage @@ -101077,7 +95535,6 @@ self: { libraryHaskellDepends = [ base explicit-iomodes text ]; description = "Extends explicit-iomodes with Text operations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "explicit-sharing" = callPackage @@ -101091,7 +95548,6 @@ self: { ]; description = "Explicit Sharing of Monadic Effects"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "explore" = callPackage @@ -101105,7 +95561,6 @@ self: { executableHaskellDepends = [ array base directory pngload ]; description = "Experimental Plot data Reconstructor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "explore"; }) {}; @@ -101124,8 +95579,6 @@ self: { ]; description = "A generic exploring interpreter for exploratory programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "exposed-containers" = callPackage @@ -101146,8 +95599,6 @@ self: { ]; description = "A distribution of the 'containers' package, with all modules exposed"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "express" = callPackage @@ -101172,8 +95623,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Generalization of parsec's expression parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "expressions" = callPackage @@ -101191,8 +95640,6 @@ self: { testHaskellDepends = [ base singletons text ]; description = "Expressions and Formulae a la carte"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "expressions-z3" = callPackage @@ -101211,7 +95658,6 @@ self: { ]; description = "Encode and Decode expressions from Z3 ASTs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "expresso" = callPackage @@ -101240,9 +95686,7 @@ self: { ]; description = "A simple expressions language based on row types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "expresso"; - broken = true; }) {}; "extcore" = callPackage @@ -101260,8 +95704,6 @@ self: { ]; description = "Libraries for processing GHC Core"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "extemp" = callPackage @@ -101284,7 +95726,6 @@ self: { ]; description = "automated printing for extemp speakers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "extemp"; }) {}; @@ -101309,8 +95750,6 @@ self: { libraryHaskellDepends = [ base constraints ghc-prim tagged ]; description = "Extended Categories"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "extended-containers" = callPackage @@ -101323,8 +95762,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Heap and Vector container types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "extended-containers-lens" = callPackage @@ -101336,7 +95773,6 @@ self: { libraryHaskellDepends = [ base extended-containers lens ]; description = "lens instances for extended-containers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "extended-reals" = callPackage @@ -101395,8 +95831,6 @@ self: { ]; description = "Sums/products/lists/trees which can be extended in other modules"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "extensible-effects" = callPackage @@ -101456,8 +95890,6 @@ self: { ]; description = "Message passing concurrency as extensible-effect"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "extensible-exceptions" = callPackage @@ -101487,8 +95919,6 @@ self: { testHaskellDepends = [ base extensible ]; description = "Operational-based extensible effect library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "extensible-sp" = callPackage @@ -101517,9 +95947,7 @@ self: { ]; description = "Inspect extensions in cabal and hpack files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "extensioneer"; - broken = true; }) {}; "extensions" = callPackage @@ -101561,8 +95989,6 @@ self: { ]; description = "Sort large arrays on your hard drive. Kind of like the unix util sort."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "extism" = callPackage @@ -101578,8 +96004,6 @@ self: { testHaskellDepends = [ base bytestring HUnit ]; description = "Extism bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {extism = null;}; "extism-manifest" = callPackage @@ -101629,7 +96053,6 @@ self: { ]; description = "Given a hackage package outputs the list of its dependencies"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "extract-dependencies"; }) {}; @@ -101660,9 +96083,7 @@ self: { ]; description = "Extract an ELF's metadata and sections into files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "extractelf"; - broken = true; }) {}; "extralife" = callPackage @@ -101678,8 +96099,6 @@ self: { ]; description = "API Client for ExtraLife team and user data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "extrapolate" = callPackage @@ -101719,8 +96138,6 @@ self: { ]; description = "A high level static library for working with CouchDB"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ez3" = callPackage @@ -101734,8 +96151,6 @@ self: { libraryHaskellDepends = [ base transformers z3 ]; description = "Z3 bonds with pure interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "f-algebra-gen" = callPackage @@ -101747,8 +96162,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Generate a special f-algebra combinator from any data type"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "f-ree-hack-cheats-free-v-bucks-generator" = callPackage @@ -101764,9 +96177,7 @@ self: { executableHaskellDepends = [ base ]; description = "Spam"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "test1"; - broken = true; }) {}; "faceted" = callPackage @@ -101778,8 +96189,6 @@ self: { libraryHaskellDepends = [ base free ]; description = "Faceted computation for dynamic information flow security"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "factor" = callPackage @@ -101829,9 +96238,7 @@ self: { ]; description = "Rational arithmetic in an irrational world"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "factory"; - broken = true; }) {}; "facts" = callPackage @@ -101845,8 +96252,6 @@ self: { libraryHaskellDepends = [ base exceptions mtl template-haskell ]; description = "Refined types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "factual-api" = callPackage @@ -101864,7 +96269,6 @@ self: { ]; description = "A driver for the Factual API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fad" = callPackage @@ -101896,7 +96300,6 @@ self: { ]; description = "Minimal library for music generation and notation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fadno-braids" = callPackage @@ -101913,8 +96316,6 @@ self: { ]; description = "Braid representations in Haskell"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fadno-xml" = callPackage @@ -101929,8 +96330,6 @@ self: { ]; description = "XML/XSD combinators/schemas/codegen"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fail" = callPackage @@ -101964,8 +96363,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A list-like type for lazy streams, which might terminate with an error"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "failure" = callPackage @@ -101993,8 +96390,6 @@ self: { ]; description = "Failure Detectors implimented in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fair" = callPackage @@ -102012,7 +96407,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Lists with fair choice"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fair-predicates" = callPackage @@ -102041,8 +96435,6 @@ self: { testHaskellDepends = [ base hspec lens random text time ]; description = "Randomly generated fake data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fake-type" = callPackage @@ -102055,8 +96447,6 @@ self: { librarySystemDepends = [ libXtst ]; description = "A crossplatform library to simulate keyboard input"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs.xorg) libXtst;}; "fakedata" = callPackage @@ -102185,8 +96575,6 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Faktory Worker for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "faktory_1_1_2_5" = callPackage @@ -102215,7 +96603,6 @@ self: { description = "Faktory Worker for Haskell"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fallible" = callPackage @@ -102246,9 +96633,7 @@ self: { ]; description = "Falling sand game/cellular automata simulation using regular parallel arrays"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "falling-turnip"; - broken = true; }) {}; "fallingblocks" = callPackage @@ -102267,7 +96652,6 @@ self: { ]; description = "A fun falling blocks game"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "fallingblocks"; }) {}; @@ -102318,7 +96702,6 @@ self: { ]; description = "A family tree library for the Haskell programming language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "farmhash" = callPackage @@ -102350,7 +96733,6 @@ self: { doHaddock = false; description = "Fast functions on integers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fast-bech32" = callPackage @@ -102373,7 +96755,6 @@ self: { ]; description = "Fast implementation of the Bech32 encoding format"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "fast-builder" = callPackage @@ -102411,8 +96792,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Fast combinatorics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fast-digits" = callPackage @@ -102446,8 +96825,6 @@ self: { ]; description = "Solve classical planning problems (STRIPS/SAS+) using Haskell & Fast Downward"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fast-logger" = callPackage @@ -102513,8 +96890,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Natural Numbers with no overhead"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fast-tags" = callPackage @@ -102568,8 +96943,6 @@ self: { libraryHaskellDepends = [ base bytestring tagsoup text ]; description = "Fast parser for tagsoup package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fasta" = callPackage @@ -102598,8 +96971,6 @@ self: { libraryHaskellDepends = [ base hmatrix vector ]; description = "Bayesian modeling algorithms accelerated for particular model structures"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fastcdc" = callPackage @@ -102618,7 +96989,6 @@ self: { ]; description = "An implementation of FastCDC, a content-defined chunking algorithm based on the Gear hash rolling hash algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "fastcdc"; }) {}; @@ -102632,7 +97002,6 @@ self: { librarySystemDepends = [ fcgi ]; description = "A Haskell library for writing FastCGI programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) fcgi;}; "fastedit" = callPackage @@ -102654,8 +97023,6 @@ self: { ]; description = "find nearest neighbours by edit-distance"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "faster-megaparsec" = callPackage @@ -102693,7 +97060,6 @@ self: { ]; description = "Fast Internet Relay Chat (IRC) library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fastly" = callPackage @@ -102713,8 +97079,6 @@ self: { testHaskellDepends = [ base hspec text ]; description = "A highly experimental Fastly API client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fastmemo" = callPackage @@ -102750,8 +97114,6 @@ self: { benchmarkHaskellDepends = [ base bytestring ]; description = "A fast, but bare bones, bytestring parser combinators library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fastpbkdf2" = callPackage @@ -102772,8 +97134,6 @@ self: { ]; description = "Haskell bindings to the fastpbkdf2 C library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) openssl;}; "fastsum" = callPackage @@ -102807,8 +97167,6 @@ self: { ]; description = "Utilities for working with DuckDuckHack's FatHead Instant Answers"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fault-tree" = callPackage @@ -102820,7 +97178,6 @@ self: { libraryHaskellDepends = [ base yices ]; description = "A fault tree analysis library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fay" = callPackage @@ -102851,9 +97208,7 @@ self: { executableHaskellDepends = [ base mtl optparse-applicative split ]; description = "A compiler for Fay, a Haskell subset that compiles to JavaScript"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "fay"; - broken = true; }) {}; "fay-base" = callPackage @@ -102866,7 +97221,6 @@ self: { libraryHaskellDepends = [ base fay ]; description = "The base package for Fay"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fay-builder" = callPackage @@ -102884,7 +97238,6 @@ self: { ]; description = "Compile Fay code on cabal install, and ad-hoc recompile during development"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fay-dom" = callPackage @@ -102899,7 +97252,6 @@ self: { libraryHaskellDepends = [ fay-base ]; description = "DOM FFI wrapper library for Fay"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fay-geoposition" = callPackage @@ -102912,7 +97264,6 @@ self: { libraryHaskellDepends = [ fay-base fay-text ]; description = "W3C compliant implementation of GeoPosition API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fay-hsx" = callPackage @@ -102925,7 +97276,6 @@ self: { libraryHaskellDepends = [ fay-base fay-jquery ]; description = "Clientside HTML generation for fay"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fay-jquery" = callPackage @@ -102938,7 +97288,6 @@ self: { libraryHaskellDepends = [ fay-base fay-text ]; description = "jQuery bindings for Fay"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fay-ref" = callPackage @@ -102951,7 +97300,6 @@ self: { libraryHaskellDepends = [ fay-base ]; description = "Like IORef but for Fay"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fay-simplejson" = callPackage @@ -102964,7 +97312,6 @@ self: { libraryHaskellDepends = [ fay-base ]; description = "SimpleJSON library for Fay"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fay-text" = callPackage @@ -102979,7 +97326,6 @@ self: { libraryHaskellDepends = [ fay fay-base text ]; description = "Fay Text type represented as JavaScript strings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "fay-uri" = callPackage @@ -102992,7 +97338,6 @@ self: { libraryHaskellDepends = [ fay-base ]; description = "Persistent FFI bindings for using jsUri in Fay"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fay-websockets" = callPackage @@ -103005,7 +97350,6 @@ self: { libraryHaskellDepends = [ fay-base ]; description = "Websockets FFI library for Fay"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fb" = callPackage @@ -103043,8 +97387,6 @@ self: { libraryHaskellDepends = [ base cereal fb persistent text time ]; description = "Provides Persistent instances to Facebook types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fbmessenger-api" = callPackage @@ -103073,9 +97415,7 @@ self: { testHaskellDepends = [ aeson base bytestring filepath hspec text ]; description = "High-level bindings to Facebook Messenger Platform API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "fbrnch" = callPackage @@ -103103,7 +97443,6 @@ self: { ]; description = "Fedora packager tool to build package branches"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "fbrnch"; }) {}; @@ -103121,8 +97460,6 @@ self: { ]; description = "Algo for Formal Concept Analysis"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fcache" = callPackage @@ -103139,8 +97476,6 @@ self: { testHaskellDepends = [ base hspec mtl ]; description = "Cache a function (a -> b)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fcd" = callPackage @@ -103160,7 +97495,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "A faster way to navigate directories using the command line"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "fcd"; }) {}; @@ -103195,8 +97529,6 @@ self: { ]; description = "Type-level computation for composite using first-class-families"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fcf-containers" = callPackage @@ -103252,8 +97584,6 @@ self: { ]; description = "Type-level version of algebraic-graphs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fcf-vinyl" = callPackage @@ -103279,9 +97609,7 @@ self: { isExecutable = true; description = "TBA"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "fcg"; - broken = true; }) {}; "fckeditor" = callPackage @@ -103293,7 +97621,6 @@ self: { libraryHaskellDepends = [ base cgi HaXml xhtml ]; description = "Server-Side Integration for FCKeditor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fclabels" = callPackage @@ -103326,8 +97653,6 @@ self: { libraryHaskellDepends = [ base fclabels monadLib ]; description = "MonadLib monadic interface for the \"fclabels\" package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fcm-client" = callPackage @@ -103359,9 +97684,7 @@ self: { ]; description = "Admin API for Firebase Cloud Messaging"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "fcm-client"; - broken = true; }) {}; "fdo-notify" = callPackage @@ -103393,9 +97716,7 @@ self: { ]; description = "Utilities related to freedesktop Trash standard"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "fdo-trash"; - broken = true; }) {}; "feather" = callPackage @@ -103407,8 +97728,6 @@ self: { libraryHaskellDepends = [ base containers microlens-platform mtl ]; testHaskellDepends = [ base containers microlens-platform mtl ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "feature-flags" = callPackage @@ -103438,8 +97757,6 @@ self: { ]; description = "A minimally obtrusive feature flag library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "feature-flipper-postgres" = callPackage @@ -103461,7 +97778,6 @@ self: { ]; description = "A minimally obtrusive feature flag library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "fec" = callPackage @@ -103492,7 +97808,6 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "Query Fedora composes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "fedora-composes"; }) {}; @@ -103546,7 +97861,6 @@ self: { ]; description = "Fedora image download tool"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "fedora-img-dl"; }) {}; @@ -103570,8 +97884,6 @@ self: { ]; description = "Haskell interface to the Fedora Packages webapp API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fedora-repoquery" = callPackage @@ -103594,7 +97906,6 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "Fedora repoquery tool"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "fdrq"; }) {}; @@ -103656,9 +97967,7 @@ self: { ]; description = "A simple command line interface for creating and updating feeds like RSS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "feed-cli"; - broken = true; }) {}; "feed-collect" = callPackage @@ -103676,8 +97985,6 @@ self: { ]; description = "Watch RSS/Atom feeds (and do with them whatever you like)"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "feed-crawl" = callPackage @@ -103694,8 +98001,6 @@ self: { ]; description = "Utility for fetching feeds with redirect info and HTML link detection"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "feed-gipeda" = callPackage @@ -103734,7 +98039,6 @@ self: { ]; description = "CI service around gipeda"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "feed-gipeda"; }) {}; @@ -103757,7 +98061,6 @@ self: { ]; description = "Translate syndication feeds"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "feed-translator"; }) {}; @@ -103777,7 +98080,6 @@ self: { ]; description = "(unsupported)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "feed2lj"; }) {}; @@ -103795,7 +98097,6 @@ self: { ]; description = "Send posts from a feed to Twitter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "feed2twitter"; }) {}; @@ -103822,7 +98123,6 @@ self: { executableHaskellDepends = [ base ]; description = "Declarative feedback loop manager"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "fei-base" = callPackage @@ -103850,7 +98150,6 @@ self: { executableToolDepends = [ c2hs ]; description = "FFI to MXNet"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mxnet-op-gen"; }) {inherit (pkgs) mxnet;}; @@ -103879,9 +98178,7 @@ self: { ]; description = "Cocodataset with cocoapi"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "imageutils"; - broken = true; }) {}; "fei-dataiter" = callPackage @@ -103908,7 +98205,6 @@ self: { testHaskellDepends = [ base fei-base hspec streaming ]; description = "mxnet dataiters"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mxnet-dataiter-gen"; }) {inherit (pkgs) mxnet;}; @@ -103939,7 +98235,6 @@ self: { ]; description = "Some datasets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fei-examples" = callPackage @@ -103960,7 +98255,6 @@ self: { ]; description = "fei examples"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fei-modelzoo" = callPackage @@ -103977,7 +98271,6 @@ self: { ]; description = "A collection of standard models"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fei-nn" = callPackage @@ -103999,7 +98292,6 @@ self: { ]; description = "Train a neural network with MXNet in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "feldspar-compiler" = callPackage @@ -104028,7 +98320,6 @@ self: { ]; description = "Compiler for the Feldspar language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {gcc_s = null;}; "feldspar-language" = callPackage @@ -104052,8 +98343,6 @@ self: { ]; description = "A functional embedded language for DSP and parallelism"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "feldspar-signal" = callPackage @@ -104127,8 +98416,6 @@ self: { executableSystemDepends = [ raptor ]; description = "Graph-based notetaking system"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {raptor = null;}; "fernet" = callPackage @@ -104154,9 +98441,7 @@ self: { ]; description = "Generate and verify HMAC-based authentication tokens"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "fernet"; - broken = true; }) {}; "festival" = callPackage @@ -104174,8 +98459,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "C bindings plus conveniences for the festival tts system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {Festival = null; inherit (pkgs) alsa-lib; estbase = null; estools = null; eststring = null; inherit (pkgs) gomp; inherit (pkgs) ncurses;}; @@ -104208,7 +98491,6 @@ self: { ]; description = "Remote multi-db SQLCipher server"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "festung"; }) {}; @@ -104221,8 +98503,6 @@ self: { libraryHaskellDepends = [ base containers regex-compat ]; description = "Simple functions for loading config files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ffeed" = callPackage @@ -104237,8 +98517,6 @@ self: { executableHaskellDepends = [ base pretty ]; description = "Haskell binding to the FriendFeed API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fficxx" = callPackage @@ -104260,7 +98538,6 @@ self: { ]; description = "Automatic C++ binding generation"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "fficxx-runtime" = callPackage @@ -104294,8 +98571,6 @@ self: { ]; description = "Minimal bindings to the FFmpeg library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) ffmpeg; libavcodec = null; libavdevice = null; libavformat = null; libswresample = null; libswscale = null;}; @@ -104313,7 +98588,6 @@ self: { ]; description = "Tutorials on ffmpeg usage to play video/audio"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fft" = callPackage @@ -104380,8 +98654,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "FFunctor typeclass"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fgl" = callPackage @@ -104442,8 +98714,6 @@ self: { libraryHaskellDepends = [ base containers fgl ]; description = "Graph decomposition algorithms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fgl-visualize" = callPackage @@ -104466,8 +98736,6 @@ self: { libraryHaskellDepends = [ base-noprelude integer-gmp semirings ]; description = "fibonacci algebra"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fibon" = callPackage @@ -104489,8 +98757,6 @@ self: { ]; description = "Tools for running and analyzing Haskell benchmarks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fibonacci" = callPackage @@ -104522,7 +98788,6 @@ self: { ]; description = "update statically hosted file in a push stule through socketed"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "ficketed"; }) {}; @@ -104539,8 +98804,6 @@ self: { ]; description = "First-class record field combinators with infix record field syntax"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fields-json" = callPackage @@ -104568,8 +98831,6 @@ self: { testHaskellDepends = [ base template-haskell ]; description = "Provides Fieldwise typeclass for operations of fields of records treated as independent components"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fig" = callPackage @@ -104581,8 +98842,6 @@ self: { libraryHaskellDepends = [ base containers parsec pretty ]; description = "Manipulation of FIG files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "file-collection" = callPackage @@ -104596,8 +98855,6 @@ self: { ]; description = "Provide a uniform interface over file archives and directories"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "file-command-qq" = callPackage @@ -104613,8 +98870,6 @@ self: { ]; description = "Quasiquoter for system commands involving filepaths"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "file-embed" = callPackage @@ -104668,8 +98923,6 @@ self: { ]; description = "Use Template Haskell to embed file contents directly"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "file-io" = callPackage @@ -104683,8 +98936,6 @@ self: { libraryHaskellDepends = [ base bytestring filepath unix ]; description = "Basic file IO operations via 'OsPath'"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "file-location" = callPackage @@ -104702,8 +98953,6 @@ self: { testHaskellDepends = [ base lifted-base process ]; description = "common functions that show file location information"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "file-modules" = callPackage @@ -104762,9 +99011,7 @@ self: { ]; description = "Use templates for files and directories"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "new"; - broken = true; }) {}; "filecache" = callPackage @@ -104784,8 +99031,6 @@ self: { ]; description = "A cache system associating values to files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "filediff" = callPackage @@ -104807,8 +99052,6 @@ self: { ]; description = "Diffing and patching module"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "filelock" = callPackage @@ -104849,8 +99092,6 @@ self: { libraryHaskellDepends = [ base hinotify stm ]; description = "Block thread until a file stops being modified"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "filepath_1_4_100_4" = callPackage @@ -104905,7 +99146,6 @@ self: { ]; description = "Reversable and secure encoding of object ids as filepaths"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "filepath-io-access" = callPackage @@ -104917,7 +99157,6 @@ self: { libraryHaskellDepends = [ base base-io-access filepath ]; description = "IO Access for filepath"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "filepather" = callPackage @@ -105002,7 +99241,6 @@ self: { ]; description = "A shared set of abstractions and types for representing filessytem data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "filesystem-conduit" = callPackage @@ -105024,8 +99262,6 @@ self: { ]; description = "Use system-filepath data types with conduits. (deprecated)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "filesystem-enumerator" = callPackage @@ -105041,7 +99277,6 @@ self: { ]; description = "Enumerator-based API for manipulating the filesystem"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "filesystem-trees" = callPackage @@ -105058,8 +99293,6 @@ self: { ]; description = "Recursively manipulate and traverse filesystems as lazy rose trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fillit" = callPackage @@ -105076,8 +99309,6 @@ self: { testHaskellDepends = [ base doctest hspec unordered-containers ]; description = "Flexible string substitution"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "filter-logger" = callPackage @@ -105160,7 +99391,6 @@ self: { ]; description = "Finite sets of static size"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "final" = callPackage @@ -105187,8 +99417,6 @@ self: { ]; description = "Extensible pretty printing with semantic annotations and proportional fonts"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "find-clumpiness" = callPackage @@ -105214,7 +99442,6 @@ self: { ]; description = "Find the clumpiness of labels in a tree"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "find-clumpiness"; }) {}; @@ -105250,9 +99477,7 @@ self: { ]; description = "A file-finding conduit that allows user control over traversals"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "find-hs"; - broken = true; }) {}; "find-source-files" = callPackage @@ -105264,8 +99489,6 @@ self: { libraryHaskellDepends = [ base Cabal directory filepath mtl ]; description = "Initial project template from stack"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "findhttp" = callPackage @@ -105284,7 +99507,6 @@ self: { ]; description = "List http/html files"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "findhttp"; }) {}; @@ -105314,8 +99536,6 @@ self: { libraryHaskellDepends = [ base fingertree ]; description = "Implementation of priority search queues as finger trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fingertree-tf" = callPackage @@ -105327,8 +99547,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Generic finger-tree structure using type families"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "finitary" = callPackage @@ -105353,7 +99571,6 @@ self: { ]; description = "A better, more type-safe Enum"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; }) {}; "finitary-derive" = callPackage @@ -105377,7 +99594,6 @@ self: { ]; description = "Flexible and easy deriving of type classes for finitary types"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; }) {}; "finitary-optics" = callPackage @@ -105398,7 +99614,6 @@ self: { ]; description = "Prisms and Isos between finitary types"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; }) {}; "finite" = callPackage @@ -105415,8 +99630,6 @@ self: { testHaskellDepends = [ base Cabal hashable QuickCheck ]; description = "Finite ranges via types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "finite-field" = callPackage @@ -105454,8 +99667,6 @@ self: { ]; description = "Arithmetic in finite fields"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "finite-table" = callPackage @@ -105483,7 +99694,6 @@ self: { ]; description = "Types isomorphic to Fin, and Tables indexed by them"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "finite-typelits" = callPackage @@ -105578,9 +99788,7 @@ self: { ]; description = "A simple example using Firefly"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "firefly-example-exe"; - broken = true; }) {}; "firestore" = callPackage @@ -105605,7 +99813,6 @@ self: { ]; description = "Wrapper for Google Firestore/Datastore API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "first-and-last" = callPackage @@ -105618,8 +99825,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "First and Last generalized to return up to n values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "first-class-families" = callPackage @@ -105651,8 +99856,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "First class typeclass instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "first-class-patterns" = callPackage @@ -105681,7 +99884,6 @@ self: { ]; description = "Defunctionalisation for Yhc Core"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "firstify"; }) {}; @@ -105706,7 +99908,6 @@ self: { ]; description = "Calculates file-size frequency-distribution"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "fishfood"; }) {}; @@ -105727,8 +99928,6 @@ self: { ]; description = "FIT file decoder"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fits-parse" = callPackage @@ -105752,9 +99951,7 @@ self: { ]; description = "Parse FITS files"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "omnibus"; - broken = true; }) {}; "fitsio" = callPackage @@ -105767,8 +99964,6 @@ self: { librarySystemDepends = [ cfitsio ]; description = "A library for reading and writing data files in the FITS data format"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) cfitsio;}; "fitspec" = callPackage @@ -105810,9 +100005,7 @@ self: { ]; description = "Program to manage the imports of a haskell module"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "fix-imports"; - broken = true; }) {}; "fix-parser-simple" = callPackage @@ -105826,7 +100019,6 @@ self: { libraryHaskellDepends = [ base mmtl ]; description = "Simple fix-expression parser"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "fix-symbols-gitit" = callPackage @@ -105838,8 +100030,6 @@ self: { libraryHaskellDepends = [ base containers gitit ]; description = "Gitit plugin: Turn some Haskell symbols into pretty math symbols"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fix-whitespace" = callPackage @@ -105932,8 +100122,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Binary fixed-point arithmetic"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fixed-point-vector" = callPackage @@ -105945,7 +100133,6 @@ self: { libraryHaskellDepends = [ base fixed-point vector ]; description = "Unbox instances for the fixed-point package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "fixed-point-vector-space" = callPackage @@ -105957,7 +100144,6 @@ self: { libraryHaskellDepends = [ base fixed-point vector-space ]; description = "vector-space instances for the fixed-point package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "fixed-precision" = callPackage @@ -105973,8 +100159,6 @@ self: { ]; description = "Fixed Precision Arithmetic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fixed-storable-array" = callPackage @@ -105986,8 +100170,6 @@ self: { libraryHaskellDepends = [ array base tagged ]; description = "Fixed-size wrapper for StorableArray, providing a Storable instance. Deprecated - use storable-static-array instead."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fixed-timestep" = callPackage @@ -105999,8 +100181,6 @@ self: { libraryHaskellDepends = [ async base clock time ]; description = "Pure Haskell library to repeat an action at a specific frequency"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fixed-vector" = callPackage @@ -106073,8 +100253,6 @@ self: { testHaskellDepends = [ base doctest fixed-vector ]; description = "Library for working with product types generically"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fixed-width" = callPackage @@ -106086,8 +100264,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Fixed width subsets of an Int64/Word64"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fixedprec" = callPackage @@ -106099,8 +100275,6 @@ self: { libraryHaskellDepends = [ base random ]; description = "A fixed-precision real number type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fixedwidth-hs" = callPackage @@ -106146,8 +100320,6 @@ self: { ]; description = "A Haskell client for http://fixer.io/"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fixfile" = callPackage @@ -106169,8 +100341,6 @@ self: { ]; description = "File-backed recursive data structures"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fixhs" = callPackage @@ -106195,7 +100365,6 @@ self: { ]; description = "FIX (co)parser"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; mainProgram = "fix-generator"; }) {}; @@ -106218,8 +100387,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Opininated testing framework for mtl style (spies, stubs, and mocks)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fixplate" = callPackage @@ -106280,8 +100447,6 @@ self: { libraryHaskellDepends = [ base ]; description = "test"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fizzbuzz-as-a-service" = callPackage @@ -106299,9 +100464,7 @@ self: { ]; description = "FizzBuzz as a service"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "fizzbuzz-server"; - broken = true; }) {}; "flac" = callPackage @@ -106365,9 +100528,7 @@ self: { ]; description = "Verify FLAC files ripped form CD using AccurateRip™"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "flaccuraterip"; - broken = true; }) {}; "flag" = callPackage @@ -106417,8 +100578,6 @@ self: { libraryHaskellDepends = [ base template-haskell text ]; description = "A template engine for HTML"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "flamingra" = callPackage @@ -106435,9 +100594,7 @@ self: { ]; description = "FlameGraphs of profiling"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "flamingra"; - broken = true; }) {}; "flashblast" = callPackage @@ -106482,7 +100639,6 @@ self: { ]; description = "Generate language learning flashcards from video"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "flashblast"; }) {}; @@ -106522,8 +100678,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Strict Maybe without space and indirection overhead"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "flat-mcmc" = callPackage @@ -106542,8 +100696,6 @@ self: { testHaskellDepends = [ base vector ]; description = "Painless general-purpose sampling"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "flat-tex" = callPackage @@ -106593,7 +100745,6 @@ self: { ]; description = "Haskell implementation of the FlatBuffers protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "flatparse" = callPackage @@ -106659,8 +100810,6 @@ self: { testHaskellDepends = [ base tasty tasty-quickcheck transformers ]; description = "Work generically on your datatype without knowing its shape nor its contents"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "flexible-defaults" = callPackage @@ -106704,8 +100853,6 @@ self: { libraryHaskellDepends = [ base bytestring unix-time ]; description = "simple extension of Data.UnixTime."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "flexible-unlit" = callPackage @@ -106732,7 +100879,6 @@ self: { libraryHaskellDepends = [ base data-type mtl QuickCheck ]; description = "Flexible wrappers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "flexiwrap-smallcheck" = callPackage @@ -106746,7 +100892,6 @@ self: { ]; description = "SmallCheck (Serial) instances for flexiwrap"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "flick-duration" = callPackage @@ -106777,8 +100922,6 @@ self: { executableHaskellDepends = [ xhtml ]; description = "Haskell binding to the Flickr API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "flight-igc" = callPackage @@ -106835,8 +100978,6 @@ self: { libraryToolDepends = [ proto-lens-protoc ]; description = "Flink stateful functions SDK"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "flip-cmd" = callPackage @@ -106880,7 +101021,6 @@ self: { ]; description = "f-lite compiler, interpreter and libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "flite"; }) {}; @@ -106919,8 +101059,6 @@ self: { ]; description = "C99 printf \"%a\" style formatting and parsing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "float128" = callPackage @@ -106947,8 +101085,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Conversions between floating and integral values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "floatshow" = callPackage @@ -106977,8 +101113,6 @@ self: { ]; description = "Wrapper for flock(2)"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "floskell" = callPackage @@ -107039,8 +101173,6 @@ self: { testHaskellDepends = [ base doctest flow QuickCheck ]; description = "More directional operators"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "flow2dot" = callPackage @@ -107079,8 +101211,6 @@ self: { ]; description = "Flowdock client library for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "flowdock-api" = callPackage @@ -107117,9 +101247,7 @@ self: { ]; description = "API integration with Flowdock"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "flowdock"; - broken = true; }) {}; "flowdock-rest" = callPackage @@ -107147,8 +101275,6 @@ self: { ]; description = "Flowdock REST API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "flower" = callPackage @@ -107166,7 +101292,6 @@ self: { ]; description = "Analyze 454 flowgrams (.SFF files)"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "flowlocks-framework" = callPackage @@ -107179,8 +101304,6 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Generalized Flow Locks Framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "flowsim" = callPackage @@ -107199,7 +101322,6 @@ self: { ]; description = "Simulate 454 pyrosequencing"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "flp" = callPackage @@ -107232,8 +101354,6 @@ self: { testToolDepends = [ alex happy ]; description = "A layout spec language for memory managers implemented in Rust"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fltkhs" = callPackage @@ -107258,8 +101378,6 @@ self: { ]; description = "FLTK bindings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) fltk14; inherit (pkgs) libGL; inherit (pkgs) libGLU; inherit (pkgs) pkg-config;}; @@ -107277,7 +101395,6 @@ self: { ]; description = "FLTKHS demos. Please scroll to the bottom for more information."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "fltkhs-fluid-demos" = callPackage @@ -107291,7 +101408,6 @@ self: { executableHaskellDepends = [ base bytestring fltkhs ]; description = "Fltkhs Fluid Demos"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "fltkhs-fluid-examples" = callPackage @@ -107305,7 +101421,6 @@ self: { executableHaskellDepends = [ base bytestring fltkhs ]; description = "Fltkhs Fluid Examples"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "fltkhs-hello-world" = callPackage @@ -107319,7 +101434,6 @@ self: { executableHaskellDepends = [ base fltkhs ]; description = "Fltkhs template project"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "fltkhs-hello-world"; }) {}; @@ -107339,7 +101453,6 @@ self: { librarySystemDepends = [ fontconfig ]; description = "A set of themed widgets that provides drop in replacements to the ones in FLTKHS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) fontconfig;}; "fluent-logger" = callPackage @@ -107364,7 +101477,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "A structured logger for Fluentd (Haskell)"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "fluent-logger-conduit" = callPackage @@ -107380,7 +101492,6 @@ self: { ]; description = "Conduit interface for fluent-logger"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "fluffy" = callPackage @@ -107417,8 +101528,6 @@ self: { ]; description = "The parser for fluffy to parsec the question bank in .docx type"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fluid-idl" = callPackage @@ -107441,8 +101550,6 @@ self: { ]; description = "Code-generated, Auto-versioned, & Smart Web APIs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fluid-idl-http-client" = callPackage @@ -107486,8 +101593,6 @@ self: { librarySystemDepends = [ fluidsynth ]; description = "Haskell bindings to FluidSynth"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) fluidsynth;}; "flush-queue" = callPackage @@ -107514,8 +101619,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A monoid for tracking changes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fmark" = callPackage @@ -107533,9 +101636,7 @@ self: { ]; description = "A Friendly Markup language without syntax"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "fmark"; - broken = true; }) {}; "fmlist" = callPackage @@ -107596,7 +101697,6 @@ self: { libraryHaskellDepends = [ base enum-text-rio ]; description = "Adaptor for getting fmt to work with rio"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fmt-terminal-colors" = callPackage @@ -107649,8 +101749,6 @@ self: { ]; description = "Extras for Fn, a functional web framework"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "focus" = callPackage @@ -107726,8 +101824,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Regulate input traffic from conduit Source with Control.FoldDebounce"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "foldable-ix" = callPackage @@ -107752,7 +101848,6 @@ self: { libraryHaskellDepends = [ base transformers util ]; description = "Foldable types with at least 1 element"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "foldable1-classes-compat" = callPackage @@ -107833,8 +101928,6 @@ self: { benchmarkHaskellDepends = [ base containers criterion foldl ]; description = "incremental folds"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "foldl-statistics" = callPackage @@ -107859,8 +101952,6 @@ self: { ]; description = "Statistical functions from the statistics package implemented as Folds"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "foldl-transduce" = callPackage @@ -107887,8 +101978,6 @@ self: { ]; description = "Transducers for foldl folds"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "foldl-transduce-attoparsec" = callPackage @@ -107910,7 +101999,6 @@ self: { ]; description = "Attoparsec and foldl-transduce integration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "folds" = callPackage @@ -107946,8 +102034,6 @@ self: { testHaskellDepends = [ base containers tasty tasty-quickcheck ]; description = "A playground of common folds for folds"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "folgerhs" = callPackage @@ -107995,9 +102081,7 @@ self: { ]; description = "Haskell library to follow content published on any subject"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "follow_pocket_auth"; - broken = true; }) {}; "follow-file" = callPackage @@ -108042,7 +102126,6 @@ self: { ]; description = "Follow Tweets anonymously"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "follower"; }) {}; @@ -108081,9 +102164,7 @@ self: { executableHaskellDepends = [ base GLFW-b OpenGL ]; description = "Basic4x6 font for OpenGL"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "show-font-basic4x6"; - broken = true; }) {}; "fontconfig-pure" = callPackage @@ -108106,9 +102187,7 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Pure-functional language bindings to FontConfig"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "fontconfig-pure"; - broken = true; }) {inherit (pkgs) fontconfig;}; "foo" = callPackage @@ -108124,7 +102203,6 @@ self: { ]; description = "Paper soccer, an OpenGL game"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "foo"; }) {}; @@ -108158,8 +102236,6 @@ self: { ]; description = "Functor, Monad, MonadPlus, etc for free"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "forbidden-fruit" = callPackage @@ -108180,8 +102256,6 @@ self: { ]; description = "A library accelerates imperative style programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "force-layout" = callPackage @@ -108211,9 +102285,7 @@ self: { executableHaskellDepends = [ base process transformers ]; description = "Run a command on files with magic substituion support (sequencing and regexp)"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "fordo"; - broken = true; }) {}; "forecast-io" = callPackage @@ -108225,8 +102297,6 @@ self: { libraryHaskellDepends = [ aeson base text ]; description = "A Haskell library for working with forecast.io data."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "foreign" = callPackage @@ -108246,8 +102316,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A collection of helpers for ffi"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "foreign-storable-asymmetric" = callPackage @@ -108283,8 +102351,6 @@ self: { libraryHaskellDepends = [ base stm transformers ]; description = "Encapsulating mutatable state in external libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "forest" = callPackage @@ -108300,8 +102366,6 @@ self: { ]; description = "Tree and Forest types"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "forest-fire" = callPackage @@ -108323,9 +102387,7 @@ self: { ]; description = "Recursively delete CloudFormation stacks and their dependants"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "forest-fire"; - broken = true; }) {}; "forex2ledger" = callPackage @@ -108353,9 +102415,7 @@ self: { ]; description = "Print Forex quotes in Ledger format"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "forex2ledger"; - broken = true; }) {}; "forger" = callPackage @@ -108370,9 +102430,7 @@ self: { executableHaskellDepends = [ base ]; description = "Library for generating fake placeholder data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "forger"; - broken = true; }) {}; "forkable-monad" = callPackage @@ -108398,8 +102456,6 @@ self: { testHaskellDepends = [ aeson base containers hspec mtl text ]; description = "Parse and validate forms in JSON format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "formal" = callPackage @@ -108422,9 +102478,7 @@ self: { ]; description = "A statically typed, functional programming language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "formal"; - broken = true; }) {}; "format" = callPackage @@ -108437,7 +102491,6 @@ self: { testHaskellDepends = [ haskell2010 parsec QuickCheck ]; description = "Rendering from and scanning to format strings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "format-numbers" = callPackage @@ -108467,7 +102520,6 @@ self: { ]; description = "A utility for writing the date to dzen2"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "format-status"; }) {}; @@ -108500,8 +102552,6 @@ self: { ]; description = "Business-quality formatting of numbers, dates, and other things"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "formatting" = callPackage @@ -108544,9 +102594,7 @@ self: { ]; description = "A statically typed, functional programming language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "forml"; - broken = true; }) {}; "formlets" = callPackage @@ -108563,7 +102611,6 @@ self: { ]; description = "Formlets implemented in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "formlets-hsp" = callPackage @@ -108580,7 +102627,6 @@ self: { libraryToolDepends = [ trhsx ]; description = "HSP support for Formlets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "forms-data-format" = callPackage @@ -108597,7 +102643,6 @@ self: { ]; description = "Parse and serialize FDF, the Forms Data Format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "formura" = callPackage @@ -108619,8 +102664,6 @@ self: { ]; description = "Formura is a simple language to describe stencil computation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "forsyde-deep" = callPackage @@ -108648,7 +102691,6 @@ self: { ]; description = "ForSyDe's Haskell-embedded Domain Specific Language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "forsyde-shallow" = callPackage @@ -108676,7 +102718,6 @@ self: { libraryHaskellDepends = [ array-forth base free mtl ]; description = "A simple eDSL for generating arrayForth code"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "fortran-src" = callPackage @@ -108742,9 +102783,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Common functions and utils for fortran-src"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "fortran-src-extras"; - broken = true; }) {}; "fortran-vars" = callPackage @@ -108773,7 +102812,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Fortran memory model and other static analysis tools"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "fortran-vars"; }) {}; @@ -108789,8 +102827,6 @@ self: { testHaskellDepends = [ base doctest hspec ]; description = "Interactive terminal prompt"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "forward-chan" = callPackage @@ -108821,7 +102857,6 @@ self: { ]; description = "Foscam File format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "foscam-filename" = callPackage @@ -108841,8 +102876,6 @@ self: { ]; description = "Foscam File format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "foscam-sort" = callPackage @@ -108869,7 +102902,6 @@ self: { ]; description = "Foscam File format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "foscam-sort"; }) {}; @@ -109082,8 +103114,6 @@ self: { benchmarkHaskellDepends = [ base tasty-bench ]; description = "IEEE 754-2019 compliant operations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fpco-api" = callPackage @@ -109120,7 +103150,6 @@ self: { ]; description = "Simple interface to the FP Complete IDE API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "fpco-api"; }) {}; @@ -109140,8 +103169,6 @@ self: { ]; description = "Format-preserving encryption"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fpipe" = callPackage @@ -109169,7 +103196,6 @@ self: { testHaskellDepends = [ base ]; description = "Haskell bindings to "; license = lib.licenses.lgpl21Plus; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) fplll;}; "fpnla" = callPackage @@ -109205,7 +103231,6 @@ self: { ]; description = "Example implementations for FPNLA library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fptest" = callPackage @@ -109231,8 +103256,6 @@ self: { ]; description = "IEEE754r floating point conformance tests"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fquery" = callPackage @@ -109250,9 +103273,7 @@ self: { ]; description = "Installed package query tool for Gentoo Linux"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "fquery"; - broken = true; }) {}; "fractal" = callPackage @@ -109279,8 +103300,6 @@ self: { testHaskellDepends = [ base integer-gmp QuickCheck ]; description = "A collection of useful fractal curve encoders"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fraction" = callPackage @@ -109292,8 +103311,6 @@ self: { libraryHaskellDepends = [ base semigroups ]; description = "Fractions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fractionizer" = callPackage @@ -109319,9 +103336,7 @@ self: { executableHaskellDepends = [ array base GLUT OpenGL random ]; description = "A 3-D First Person Shooter Game"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "frag"; - broken = true; }) {}; "frame" = callPackage @@ -109359,7 +103374,6 @@ self: { libraryHaskellDepends = [ base frame pandoc ]; description = "A markdown to Frame GUI writer for Pandoc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "franchise" = callPackage @@ -109371,8 +103385,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A package for configuring and building Haskell software"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "franz" = callPackage @@ -109419,8 +103431,6 @@ self: { benchmarkHaskellDepends = [ base time ]; description = "Cached and parallel data fetching"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "frecently" = callPackage @@ -109486,7 +103496,6 @@ self: { ]; description = "Haskell application toolkit used at Freckle"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "freddy" = callPackage @@ -109506,8 +103515,6 @@ self: { ]; description = "RabbitMQ Messaging API supporting request-response"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "free" = callPackage @@ -109620,8 +103627,6 @@ self: { libraryHaskellDepends = [ base type-aligned ]; description = "Free monads suitable for concurrent computation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "free-er" = callPackage @@ -109654,7 +103659,6 @@ self: { ]; description = "Free functors, adjoint to functors that forget class constraints"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "free-game" = callPackage @@ -109678,7 +103682,6 @@ self: { ]; description = "Create games for free"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "free-http" = callPackage @@ -109695,8 +103698,6 @@ self: { ]; description = "An HTTP Client based on Free Monads"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "free-operational" = callPackage @@ -109712,8 +103713,6 @@ self: { ]; description = "Operational Applicative, Alternative, Monad and MonadPlus from free types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "free-theorems" = callPackage @@ -109727,8 +103726,6 @@ self: { ]; description = "Automatic generation of free theorems"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "free-theorems-counterexamples" = callPackage @@ -109747,7 +103744,6 @@ self: { executableHaskellDepends = [ cgi free-theorems utf8-string xhtml ]; description = "Automatically Generating Counterexamples to Naive Free Theorems"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "counterexamples.cgi"; }) {}; @@ -109766,7 +103762,6 @@ self: { ]; description = "Taming Selective Strictness"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "free-theorems-seq-webui" = callPackage @@ -109785,7 +103780,6 @@ self: { ]; description = "Taming Selective Strictness"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "free-theorems-seq-webui.cgi"; }) {}; @@ -109806,7 +103800,6 @@ self: { ]; description = "CGI-based web interface for the free-theorems package"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "free-v-bucks-generator-no-survey" = callPackage @@ -109822,9 +103815,7 @@ self: { executableHaskellDepends = [ base ]; description = "Spam"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "test1"; - broken = true; }) {}; "free-v-bucks-generator-ps4-no-survey" = callPackage @@ -109840,9 +103831,7 @@ self: { executableHaskellDepends = [ base ]; description = "Spam"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "test1"; - broken = true; }) {}; "free-vector-spaces" = callPackage @@ -109898,7 +103887,6 @@ self: { ]; description = "A soccer game"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "freelude" = callPackage @@ -109918,7 +103906,6 @@ self: { ]; description = "A generalisation of the Category->Functor->Applicative->Monad hierarchy and more"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "freenect" = callPackage @@ -109934,8 +103921,6 @@ self: { description = "Interface to the Kinect device"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) freenect; freenect_sync = null; libfreenect = null;}; @@ -109974,7 +103959,6 @@ self: { ]; description = "Handle effects conversely using monadic conversation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "freer-effects" = callPackage @@ -109995,9 +103979,7 @@ self: { benchmarkHaskellDepends = [ base criterion free mtl ]; description = "Implementation of effect system for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "freer-examples"; - broken = true; }) {}; "freer-indexed" = callPackage @@ -110034,9 +104016,7 @@ self: { ]; description = "A friendly effect system for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "freer-simple-examples"; - broken = true; }) {}; "freer-simple-catching" = callPackage @@ -110049,8 +104029,6 @@ self: { testHaskellDepends = [ base freer-simple hspec ]; description = "Checked runtime exceptions with freer-simple"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "freer-simple-http" = callPackage @@ -110071,8 +104049,6 @@ self: { ]; description = "Make HTTP requests with freer-simple!"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "freer-simple-profiling" = callPackage @@ -110085,8 +104061,6 @@ self: { testHaskellDepends = [ base containers freer-simple hspec time ]; description = "Automatic profling of freer-simple programs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "freer-simple-random" = callPackage @@ -110099,8 +104073,6 @@ self: { testHaskellDepends = [ base containers freer-simple hspec random ]; description = "Random number generators using freer-simple"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "freer-simple-time" = callPackage @@ -110113,8 +104085,6 @@ self: { testHaskellDepends = [ base freer-simple hspec time ]; description = "freer-simple interface to IO based time functions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "freesect" = callPackage @@ -110132,9 +104102,7 @@ self: { ]; description = "A Haskell syntax extension for generalised sections"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "freesect"; - broken = true; }) {}; "freesound" = callPackage @@ -110156,8 +104124,6 @@ self: { ]; description = "Access the Freesound Project database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "freetype-simple" = callPackage @@ -110172,8 +104138,6 @@ self: { ]; description = "Single line text rendering for OpenGL ES"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "freetype2" = callPackage @@ -110232,8 +104196,6 @@ self: { benchmarkHaskellDepends = [ base bytestring containers gauge ]; description = "Are you ready to get freaky?"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fresco-binding" = callPackage @@ -110260,8 +104222,6 @@ self: { libraryHaskellDepends = [ base containers haskell-src-exts syb ]; description = "Introduce fresh variables into Haskell source code"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fresnel" = callPackage @@ -110283,8 +104243,6 @@ self: { ]; description = "high-powered optics in a small package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fresnel-fused-effects" = callPackage @@ -110296,7 +104254,6 @@ self: { libraryHaskellDepends = [ base fresnel fused-effects ]; description = "fresnel/fused-effects integration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "friday" = callPackage @@ -110317,8 +104274,6 @@ self: { ]; description = "A functional image processing library for Haskell"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "friday-devil" = callPackage @@ -110335,8 +104290,6 @@ self: { librarySystemDepends = [ libdevil ]; description = "Uses the DevIL C library to read and write images from and to files and memory buffers"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libdevil;}; "friday-juicypixels" = callPackage @@ -110353,7 +104306,6 @@ self: { ]; description = "Converts between the Friday and JuicyPixels image types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "friday-scale-dct" = callPackage @@ -110369,8 +104321,6 @@ self: { ]; description = "Scale Friday images with DCT"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "friendly" = callPackage @@ -110388,9 +104338,7 @@ self: { ]; description = "Attempt to pretty-print any input"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "friendly"; - broken = true; }) {}; "friendly-time" = callPackage @@ -110477,7 +104425,6 @@ self: { ]; description = "A reactive frontend web framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "frontmatter" = callPackage @@ -110522,9 +104469,7 @@ self: { executableHaskellDepends = [ base directory ]; description = "LALR(k) parser generator"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "frown"; - broken = true; }) {}; "frp-arduino" = callPackage @@ -110536,8 +104481,6 @@ self: { libraryHaskellDepends = [ base containers mtl ]; description = "Arduino programming without the hassle of C"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "frpnow" = callPackage @@ -110552,8 +104495,6 @@ self: { libraryHaskellDepends = [ base containers mtl transformers ]; description = "Principled practical FRP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "frpnow-gloss" = callPackage @@ -110569,7 +104510,6 @@ self: { ]; description = "Program awesome stuff with Gloss and frpnow!"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "frpnow-gtk" = callPackage @@ -110586,7 +104526,6 @@ self: { ]; description = "Program GUIs with GTK and frpnow!"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "frpnow-gtk3" = callPackage @@ -110600,7 +104539,6 @@ self: { ]; description = "Program GUIs with GTK3 and frpnow!"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "frpnow-vty" = callPackage @@ -110615,7 +104553,6 @@ self: { executableHaskellDepends = [ base containers frpnow vty ]; description = "Program terminal applications with vty and frpnow!"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "frpnow-vty-demo"; }) {}; @@ -110643,8 +104580,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A haskell binding to the FSEvents API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fsh-csv" = callPackage @@ -110656,8 +104591,6 @@ self: { libraryHaskellDepends = [ base hint ]; description = "csv parser for fsh"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fsharp" = callPackage @@ -110684,8 +104617,6 @@ self: { ]; description = "Finite state machines and FSM actions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fsnotify" = callPackage @@ -110727,8 +104658,6 @@ self: { ]; description = "Get filesystem notifications as a stream of events"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fst" = callPackage @@ -110748,9 +104677,7 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Finite state transducers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "fststudio"; - broken = true; }) {}; "fsutils" = callPackage @@ -110762,8 +104689,6 @@ self: { libraryHaskellDepends = [ base directory filepath ]; description = "File system utilities for Haskell that are missing from built in libraries"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fswait" = callPackage @@ -110783,9 +104708,7 @@ self: { ]; description = "Wait and observe events on the filesystem for a path, with a timeout"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "fswait"; - broken = true; }) {}; "fswatch" = callPackage @@ -110806,9 +104729,7 @@ self: { ]; description = "File System watching tool with cli and slave functionalities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hfswatch"; - broken = true; }) {}; "fswatcher" = callPackage @@ -110827,9 +104748,7 @@ self: { ]; description = "Watch a file/directory and run a command when it's modified"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "fswatcher"; - broken = true; }) {}; "ft-generator" = callPackage @@ -110843,9 +104762,7 @@ self: { executableHaskellDepends = [ base mtl parsec ]; description = "implementation accompanying a WFLP'19 paper"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "ft-generator"; - broken = true; }) {}; "ftdi" = callPackage @@ -110867,7 +104784,6 @@ self: { ]; description = "A thin layer over USB to communicate with FTDI chips"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ftp-client" = callPackage @@ -110887,8 +104803,6 @@ self: { testHaskellDepends = [ base bytestring tasty tasty-hspec ]; description = "Transfer files with FTP and FTPS"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ftp-client-conduit" = callPackage @@ -110905,7 +104819,6 @@ self: { testHaskellDepends = [ base ]; description = "Transfer file with FTP and FTPS with Conduit"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "ftp-conduit" = callPackage @@ -110922,8 +104835,6 @@ self: { ]; description = "FTP client package with conduit interface based off http-conduit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ftphs" = callPackage @@ -110941,8 +104852,6 @@ self: { ]; description = "FTP Client and Server Library"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ftree" = callPackage @@ -110954,7 +104863,6 @@ self: { libraryHaskellDepends = [ base ShowF type-unary ]; description = "Depth-typed functor-based trees, both top-down and bottom-up"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ftshell" = callPackage @@ -110973,7 +104881,6 @@ self: { ]; description = "Shell interface to the FreeTheorems library"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "ftshell"; }) {}; @@ -111017,8 +104924,6 @@ self: { libraryHaskellDepends = [ base ghc network ]; description = "a monad for protocol-typed network programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "full-text-search" = callPackage @@ -111085,7 +104990,6 @@ self: { ]; description = "IRC bot for fun, learning, creativity and collaboration"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "funbot"; }) {}; @@ -111105,8 +105009,6 @@ self: { ]; description = "Report events to FunBot over a JSON/HTTP API"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "funbot-ext-events" = callPackage @@ -111137,7 +105039,6 @@ self: { ]; description = "Git hook which sends events to FunBot"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "funbot-client-post-receive"; }) {}; @@ -111191,9 +105092,7 @@ self: { ]; description = "call-by-value lambda-calculus with meta-programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lambda-cbv"; - broken = true; }) {}; "funcons-simple" = callPackage @@ -111209,7 +105108,6 @@ self: { executableHaskellDepends = [ base funcons-tools funcons-values ]; description = "A modular interpreter for executing SIMPLE funcons"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "runfct-SIMPLE"; }) {}; @@ -111236,7 +105134,6 @@ self: { ]; description = "A modular interpreter for executing funcons"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "funcons-values" = callPackage @@ -111252,8 +105149,6 @@ self: { ]; description = "Library providing values and operations on values in a fixed universe"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "function-builder" = callPackage @@ -111277,7 +105172,6 @@ self: { libraryHaskellDepends = [ base data-type ]; description = "Combining functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "function-instances-algebra" = callPackage @@ -111289,8 +105183,6 @@ self: { libraryHaskellDepends = [ base numeric-prelude ]; description = "Instances of the Algebra.* classes for functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "functional-arrow" = callPackage @@ -111302,8 +105194,6 @@ self: { libraryHaskellDepends = [ base HList ]; description = "Combinators that allow for a more functional/monadic style of Arrow programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "functional-kmp" = callPackage @@ -111328,7 +105218,6 @@ self: { libraryHaskellDepends = [ base category ]; description = "Functors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "functor-apply" = callPackage @@ -111381,8 +105270,6 @@ self: { ]; description = "Tools for functor combinator-based program design"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "functor-combo" = callPackage @@ -111399,7 +105286,6 @@ self: { ]; description = "Functor combinators with tries & zippers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "functor-friends" = callPackage @@ -111411,8 +105297,6 @@ self: { libraryHaskellDepends = [ base recursion-schemes ]; description = "Friendly helpers for your recursion schemes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "functor-infix" = callPackage @@ -111426,8 +105310,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Infix operators for mapping over compositions of functors. Lots of them."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "functor-monadic" = callPackage @@ -111454,8 +105336,6 @@ self: { ]; description = "General functor products for various Foldable instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "functor-utils" = callPackage @@ -111467,8 +105347,6 @@ self: { libraryHaskellDepends = [ base ghc-prim lens ]; description = "Collection of functor utilities, providing handy operators, like generalization of (.)."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "functorm" = callPackage @@ -111480,8 +105358,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Data.FunctorM (compatibility package)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "functors" = callPackage @@ -111532,7 +105408,6 @@ self: { ]; description = "Workflows with arrows"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "ffexecutord"; }) {}; @@ -111555,7 +105430,6 @@ self: { ]; description = "Utility functions for using funflow with nix"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fungll-combinators" = callPackage @@ -111588,7 +105462,6 @@ self: { ]; description = "A unioning file-system using HFuse"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "funion"; }) {}; @@ -111605,7 +105478,6 @@ self: { benchmarkHaskellDepends = [ base criterion hscolour ipprint ]; description = "funnyPrint function to colorize GHCi output"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "funpat" = callPackage @@ -111617,8 +105489,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A generalization of pattern matching"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "funsat" = callPackage @@ -111640,7 +105510,6 @@ self: { ]; description = "A modern DPLL-style SAT solver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "funsat"; }) {}; @@ -111653,8 +105522,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Type-level function utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fused-effects" = callPackage @@ -111692,8 +105559,6 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Handle exceptions thrown in IO with fused-effects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fused-effects-lens" = callPackage @@ -111726,8 +105591,6 @@ self: { benchmarkHaskellDepends = [ base fused-effects-random gauge ]; description = "High-quality random number generation as an effect"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fused-effects-optics" = callPackage @@ -111782,8 +105645,6 @@ self: { ]; description = "Resumable exceptions for the fused-effects ecosystem"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fused-effects-squeal" = callPackage @@ -111800,7 +105661,6 @@ self: { ]; description = "A fused-effects adapter for squeal-postgresql"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fused-effects-th" = callPackage @@ -111819,8 +105679,6 @@ self: { ]; description = "Template Haskell helpers for fused-effects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fusion" = callPackage @@ -111835,8 +105693,6 @@ self: { testHaskellDepends = [ base directory doctest filepath ]; description = "Effectful streaming library based on shortcut fusion techniques"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fusion-plugin" = callPackage @@ -111976,9 +105832,7 @@ self: { executableHaskellDepends = [ base directory raw-strings-qq split ]; description = "Generate Haskell wrappers for Futhark libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "futhask"; - broken = true; }) {}; "futun" = callPackage @@ -111992,9 +105846,7 @@ self: { executableHaskellDepends = [ base bytestring network unix ]; description = "Simple IP-over-UDP tunnel using TUNTAP"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "futun"; - broken = true; }) {}; "future" = callPackage @@ -112006,8 +105858,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Supposed to mimics and enhance proposed C++ \"future\" features"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "future-resource" = callPackage @@ -112030,8 +105880,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Simple and fast implementation of Future"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fuzzcheck" = callPackage @@ -112151,8 +105999,6 @@ self: { ]; 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 = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fuzzyfind" = callPackage @@ -112170,9 +106016,7 @@ self: { testHaskellDepends = [ base containers hspec QuickCheck ]; description = "Fuzzy text matching"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "bench"; - broken = true; }) {}; "fuzzyset" = callPackage @@ -112192,8 +106036,6 @@ self: { ]; description = "Fuzzy set for approximate string matching"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fuzzytime" = callPackage @@ -112243,8 +106085,6 @@ self: { ]; description = "Game engine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "fwgl-glfw" = callPackage @@ -112261,7 +106101,6 @@ self: { ]; description = "FWGL GLFW backend"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fwgl-javascript" = callPackage @@ -112277,7 +106116,6 @@ self: { ]; description = "FWGL GHCJS backend"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "fx" = callPackage @@ -112300,8 +106138,6 @@ self: { libraryHaskellDepends = [ base bytestring serialport ]; description = "Interface to the FXPak/FXPak Pro USB interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "g-npm" = callPackage @@ -112315,9 +106151,7 @@ self: { executableHaskellDepends = [ base HTTP json ]; description = "Generate Gentoo ebuilds from NodeJS/npm packages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "g-npm"; - broken = true; }) {}; "g2" = callPackage @@ -112350,7 +106184,6 @@ self: { ]; description = "Haskell symbolic execution engine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "g2q" = callPackage @@ -112362,7 +106195,6 @@ self: { libraryHaskellDepends = [ base g2 ]; description = "G2Q allows constraint programming, via writing Haskell predicates"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "g4ip" = callPackage @@ -112375,8 +106207,6 @@ self: { testHaskellDepends = [ base ]; description = "A theorem prover for propositional logic that uses G4ip"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "g4ip-prover" = callPackage @@ -112412,7 +106242,6 @@ self: { ]; description = "General Alignment Clustering Tool"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "gact"; }) {}; @@ -112440,7 +106269,6 @@ self: { ]; description = "FFTs over finite fields"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "galois-field" = callPackage @@ -112468,8 +106296,6 @@ self: { ]; description = "Galois field library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gambler" = callPackage @@ -112510,8 +106336,6 @@ self: { libraryHaskellDepends = [ base containers probability random ]; description = "Simple probability library for dice rolls, card games and similar"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "game-tree" = callPackage @@ -112536,9 +106360,7 @@ self: { executableHaskellDepends = [ base cairo containers glib gtk time ]; description = "Game clock that shows two analog clock faces"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "gameclock"; - broken = true; }) {}; "gamgee" = callPackage @@ -112569,9 +106391,7 @@ self: { ]; description = "Tool for generating TOTP MFA tokens"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "gamgee"; - broken = true; }) {}; "gamma" = callPackage @@ -112592,8 +106412,6 @@ self: { ]; description = "Gamma function and related functions"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gang-of-threads" = callPackage @@ -112619,8 +106437,6 @@ self: { executableHaskellDepends = [ base haskeline transformers ]; description = "reverse prefix notation calculator and calculation library"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "garfield" = callPackage @@ -112647,8 +106463,6 @@ self: { ]; description = "Automatically spin up and spin down local daemons"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gargoyle-postgresql" = callPackage @@ -112670,7 +106484,6 @@ self: { ]; description = "Manage PostgreSQL servers with gargoyle"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gargoyle-postgresql-connect" = callPackage @@ -112688,7 +106501,6 @@ self: { ]; description = "Connect to gargoyle-managed postgresql instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gargoyle-postgresql-nix" = callPackage @@ -112709,8 +106521,6 @@ self: { ]; description = "Manage PostgreSQL servers with gargoyle and nix"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "garlic-bread" = callPackage @@ -112745,8 +106555,6 @@ self: { libraryHaskellDepends = [ base free transformers ]; description = "Limit how many steps a program may take"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gasp" = callPackage @@ -112769,8 +106577,6 @@ self: { libraryHaskellDepends = [ base ]; description = "An applicative for parsing unordered things, heterogenous sorting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gauge" = callPackage @@ -112805,7 +106611,6 @@ self: { ]; description = "planar graph embedding into a plane"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gc" = callPackage @@ -112835,8 +106640,6 @@ self: { ]; description = "a wai application to show GHC.GCStats"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gcodehs" = callPackage @@ -112884,8 +106687,6 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the GNOME configuration database system"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs.gnome2) GConf;}; "gd" = callPackage @@ -112939,7 +106740,6 @@ self: { ]; description = "API Wrapping for Coinbase's GDAX exchange"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sandbox"; }) {}; @@ -112981,7 +106781,6 @@ self: { ]; description = "Generic diff for the instant-generics library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gdiff-th" = callPackage @@ -113000,8 +106799,6 @@ self: { ]; description = "Generate gdiff GADTs and Instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gdo" = callPackage @@ -113074,7 +106871,6 @@ self: { ]; description = "An implementation of Gear hash, a fast rolling hash algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gedcom" = callPackage @@ -113092,7 +106888,6 @@ self: { testHaskellDepends = [ base hspec megaparsec text-all ]; description = "Parser for the GEDCOM genealogy file format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "geek" = callPackage @@ -113113,7 +106908,6 @@ self: { ]; description = "Geek blog engine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "geek-server" = callPackage @@ -113137,7 +106931,6 @@ self: { ]; description = "Geek blog engine server"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "geek"; }) {}; @@ -113159,8 +106952,6 @@ self: { libraryPkgconfigDepends = [ gegl ]; description = "Haskell bindings to GEGL library"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) gegl;}; "gelatin" = callPackage @@ -113179,9 +106970,7 @@ self: { executableHaskellDepends = [ base linear mtl vector ]; description = "A graphics description language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "gelatin-freetype2" = callPackage @@ -113199,7 +106988,6 @@ self: { testHaskellDepends = [ base ]; description = "FreeType2 based text rendering for the gelatin realtime rendering system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gelatin-fruity" = callPackage @@ -113211,7 +106999,6 @@ self: { libraryHaskellDepends = [ base FontyFruity gelatin linear vector ]; description = "Gelatin's support for rendering TTF outlines, using FontyFruity"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gelatin-gl" = callPackage @@ -113233,7 +107020,6 @@ self: { executableHaskellDepends = [ base gelatin lens linear mtl vector ]; description = "OpenGL rendering routines for the gelatin-picture graphics EDSL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "gelatin-gl-example"; }) {}; @@ -113252,7 +107038,6 @@ self: { executableHaskellDepends = [ base either filepath sdl2 ]; description = "An SDL2 backend for the gelatin renderer"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "gelatin-sdl2-example"; }) {}; @@ -113266,7 +107051,6 @@ self: { libraryHaskellDepends = [ base bytestring filepath gelatin ]; description = "Gelatin's OpenGL shaders"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gemcap" = callPackage @@ -113287,8 +107071,6 @@ self: { ]; description = "a simple Gemini capsule (server)"; license = lib.licenses.agpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gemini-exports" = callPackage @@ -113330,7 +107112,6 @@ self: { ]; description = "A simple Happstack-style Gemini router"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gemini-server" = callPackage @@ -113349,8 +107130,6 @@ self: { ]; description = "A lightweight server for the Gemini protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gemini-textboard" = callPackage @@ -113373,7 +107152,6 @@ self: { ]; description = "A barebones textboard for the Gemini protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gemini-textboard"; }) {}; @@ -113392,8 +107170,6 @@ self: { ]; description = "A simple library of helpers for SDL+GL games"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gen-imports" = callPackage @@ -113409,8 +107185,6 @@ self: { ]; description = "Code to generate instances for the package \"ghc-instances\""; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gen-passwd" = callPackage @@ -113428,9 +107202,7 @@ self: { ]; description = "Create wordlist-based passwords easily"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gen-passwd"; - broken = true; }) {}; "gencheck" = callPackage @@ -113449,8 +107221,6 @@ self: { ]; description = "A testing framework inspired by QuickCheck and SmallCheck"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gender" = callPackage @@ -113466,9 +107236,7 @@ self: { executableHaskellDepends = [ attoparsec base text ]; description = "Identify a persons gender by their first name"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; mainProgram = "gender"; - broken = true; }) {}; "genders" = callPackage @@ -113484,8 +107252,6 @@ self: { testHaskellDepends = [ base bytestring hspec network vector ]; description = "Bindings to libgenders"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {genders = null;}; "gendocs" = callPackage @@ -113517,8 +107283,6 @@ self: { ]; description = "Exception-safe resource management in more monads"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "general-games" = callPackage @@ -113549,8 +107313,6 @@ self: { ]; description = "Prelude replacement using generalized type classes where possible"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generator" = callPackage @@ -113562,8 +107324,6 @@ self: { libraryHaskellDepends = [ base List transformers ]; description = "Python-generators notation for creation of monadic lists"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generators" = callPackage @@ -113575,8 +107335,6 @@ self: { libraryHaskellDepends = [ base mtl random ]; description = "Actually useful monadic random value generators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-accessors" = callPackage @@ -113596,7 +107354,6 @@ self: { ]; description = "stringly-named getters for generic data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "generic-aeson" = callPackage @@ -113613,8 +107370,6 @@ self: { ]; description = "Derivation of Aeson instances using GHC generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-arbitrary" = callPackage @@ -113644,8 +107399,6 @@ self: { libraryHaskellDepends = [ base binary bytestring ghc-prim ]; description = "Generic Data.Binary derivation using GHC generics."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-church" = callPackage @@ -113661,8 +107414,6 @@ self: { ]; description = "Automatically convert Generic instances to and from church representations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-constraints" = callPackage @@ -113766,8 +107517,6 @@ self: { testHaskellDepends = [ array base bytestring hspec ]; description = "An Enum class that fixes some deficiences with Prelude's Enum"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-enumeration" = callPackage @@ -113779,8 +107528,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Generically derived enumerations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-env" = callPackage @@ -113819,8 +107566,6 @@ self: { testHaskellDepends = [ base Cabal inspection-testing ]; description = "Generically extract and replace collections of record fields"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-lens" = callPackage @@ -113863,8 +107608,6 @@ self: { libraryHaskellDepends = [ base generic-lens ]; description = "GHC.OverloadedLabels.IsLabel instance for lenses from ghc-generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-lens-lite" = callPackage @@ -113902,8 +107645,6 @@ self: { libraryHaskellDepends = [ base lucid text ]; description = "General-purpose web page scaffold for Lucid"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-match" = callPackage @@ -113915,8 +107656,6 @@ self: { libraryHaskellDepends = [ base generics-sop ]; description = "First class pattern matching"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-maybe" = callPackage @@ -113938,8 +107677,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "A generic version of Data.Maybe"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-monoid" = callPackage @@ -114000,8 +107737,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Provides functionality for overriding instances for generic derivation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-override-aeson" = callPackage @@ -114014,7 +107749,6 @@ self: { testHaskellDepends = [ aeson base generic-override hspec text ]; description = "Provides orphan instances necessary for integrating generic-override and aeson"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "generic-persistence" = callPackage @@ -114035,8 +107769,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Database persistence using generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-pretty" = callPackage @@ -114055,8 +107787,6 @@ self: { ]; description = "Pretty printing for Generic value"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-pretty-instances" = callPackage @@ -114081,8 +107811,6 @@ self: { ]; description = "GenericPretty canonical instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-random" = callPackage @@ -114106,8 +107834,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Magic record operations using generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-server" = callPackage @@ -114119,8 +107845,6 @@ self: { libraryHaskellDepends = [ base bytestring network ]; description = "Simple generic TCP/IP server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-storable" = callPackage @@ -114133,8 +107857,6 @@ self: { testHaskellDepends = [ base ghc-prim hspec QuickCheck ]; description = "Generic implementation of Storable"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-tree" = callPackage @@ -114146,8 +107868,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Generic Tree data type"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-trie" = callPackage @@ -114177,8 +107897,6 @@ self: { ]; description = "Marshalling Haskell values to/from XML"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generic-xmlpickler" = callPackage @@ -114193,8 +107911,6 @@ self: { testHaskellDepends = [ base hxt tasty tasty-hunit tasty-th ]; description = "Generic generation of HXT XmlPickler instances using GHC Generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generically" = callPackage @@ -114240,8 +107956,6 @@ self: { ]; description = "Generic Programming with Mutually Recursive Sums of Products"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "generics-mrsop-gdiff" = callPackage @@ -114253,7 +107967,6 @@ self: { libraryHaskellDepends = [ base generics-mrsop ]; description = "Reimplementation of the gdiff algorithm for generics-mrsop"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "generics-sop" = callPackage @@ -114298,8 +108011,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Serialization library using Data.Generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "genesis" = callPackage @@ -114327,7 +108038,6 @@ self: { ]; description = "Opinionated bootstrapping for Haskell web services"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; }) {}; "genesis-test" = callPackage @@ -114351,7 +108061,6 @@ self: { ]; description = "Opinionated bootstrapping for Haskell web services"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; }) {}; "genetics" = callPackage @@ -114365,9 +108074,7 @@ self: { executableHaskellDepends = [ base random-fu ]; description = "A Genetic Algorithm library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hellogenetics"; - broken = true; }) {}; "geni-gui" = callPackage @@ -114391,7 +108098,6 @@ self: { executableHaskellDepends = [ base GenI ]; description = "GenI graphical user interface"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "geni-gui"; }) {}; @@ -114416,7 +108122,6 @@ self: { ]; description = "Companion tools for use with the GenI surface realiser"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "geni-util"; }) {}; @@ -114437,7 +108142,6 @@ self: { ]; description = "Conversion utility for the GenI generator"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "geniconvert"; }) {}; @@ -114451,8 +108155,6 @@ self: { testHaskellDepends = [ base containers mtl template-haskell ]; description = "Generate generalized fmap, foldMap and traverse"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "geniplate" = callPackage @@ -114464,8 +108166,6 @@ self: { libraryHaskellDepends = [ base mtl template-haskell ]; description = "Use Template Haskell to generate Uniplate-like functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "geniplate-mirror" = callPackage @@ -114477,8 +108177,6 @@ self: { libraryHaskellDepends = [ base mtl template-haskell ]; description = "Use Template Haskell to generate Uniplate-like functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "geniserver" = callPackage @@ -114500,7 +108198,6 @@ self: { ]; description = "Simple HTTP server for GenI results"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "geniserver"; }) {}; @@ -114513,8 +108210,6 @@ self: { libraryHaskellDepends = [ base MonadRandom syb syz ]; description = "Genetic programming library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gentlemark" = callPackage @@ -114527,8 +108222,6 @@ self: { testHaskellDepends = [ base HUnit parsec transformers ]; description = "Gentle markup language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "genvalidity" = callPackage @@ -114933,7 +108626,6 @@ self: { ]; description = "GenValidity support for URI"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "genvalidity-path" = callPackage @@ -115265,8 +108957,6 @@ self: { ]; description = "Performs geo location lookups and parses the results"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "geo-uk" = callPackage @@ -115283,7 +108973,6 @@ self: { ]; description = "High precision conversion between GPS and UK Grid"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "geocalc" = callPackage @@ -115310,8 +108999,6 @@ self: { ]; description = "Geocoding using the Google Web API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "geodetic" = callPackage @@ -115328,7 +109015,6 @@ self: { ]; description = "Geodetic calculations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "geodetic-types" = callPackage @@ -115340,8 +109026,6 @@ self: { libraryHaskellDepends = [ base dimensional lens semigroups ]; description = "Types for geodetic operations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "geodetics" = callPackage @@ -115420,8 +109104,6 @@ self: { libraryHaskellDepends = [ aeson base bson bytestring lens text ]; description = "GeoJSON data types including JSON/BSON conversion"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "geolite-csv" = callPackage @@ -115440,7 +109122,6 @@ self: { ]; description = "Geolite CSV Parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "geom2d" = callPackage @@ -115453,8 +109134,6 @@ self: { testHaskellDepends = [ base ieee754 linear QuickCheck ]; description = "package for geometry in euklidean 2d space"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "geomancy" = callPackage @@ -115498,8 +109177,6 @@ self: { testSystemDepends = [ geos ]; description = "Bindings for GEOS"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) geos;}; "gerrit" = callPackage @@ -115520,8 +109197,6 @@ self: { ]; description = "A gerrit client library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "getemx" = callPackage @@ -115540,7 +109215,6 @@ self: { ]; description = "Fetch from emusic using .emx files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "getemx"; }) {}; @@ -115553,8 +109227,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Command-line parser"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "getopt-generics" = callPackage @@ -115613,8 +109285,6 @@ self: { testHaskellDepends = [ base HUnit ]; description = "The family of Extreme Value Distributions"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gf" = callPackage @@ -115649,7 +109319,6 @@ self: { preBuild = ''export LD_LIBRARY_PATH=`pwd`/dist/build''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH''; description = "Grammatical Framework"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "gf"; }) {}; @@ -115665,9 +109334,7 @@ self: { executableHaskellDepends = [ base containers parsec ]; description = "A type checker and runtime system of rCOS/g (impl. of ggts-FCS)."; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "TC"; - broken = true; }) {}; "gh-labeler" = callPackage @@ -115685,9 +109352,7 @@ self: { ]; description = "Github Standard Labeler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gh-labeler"; - broken = true; }) {}; "gh-pocket-knife" = callPackage @@ -115745,7 +109410,6 @@ self: { description = "GHC-API compatibility helpers"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-api-compat_8_10_7" = callPackage @@ -115759,7 +109423,6 @@ self: { description = "GHC-API compatibility helpers"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-api-compat" = callPackage @@ -115771,8 +109434,6 @@ self: { libraryHaskellDepends = [ base containers ghc ]; description = "GHC-API compatibility helpers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-bignum_1_3" = callPackage @@ -115797,8 +109458,6 @@ self: { libraryHaskellDepends = [ base ghc-bignum ]; description = "Backwards-compatible orphan instances for ghc-bignum"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-boot_9_6_1" = callPackage @@ -115889,8 +109548,6 @@ self: { ]; description = "Override GHC error messages to the user's liking"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-compact_0_1_0_0" = callPackage @@ -115954,8 +109611,6 @@ self: { testHaskellDepends = [ base ghc ghc-paths ]; description = "A small-step semantics for Core"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-corroborate" = callPackage @@ -115967,8 +109622,6 @@ self: { libraryHaskellDepends = [ base ghc-tcplugins-extra ]; description = "An flatter API for GHC typechecker plugins"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-datasize" = callPackage @@ -115980,8 +109633,6 @@ self: { libraryHaskellDepends = [ base deepseq ghc-heap ghc-prim ]; description = "Determine the size of data structures in GHC's memory"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-debug-brick" = callPackage @@ -116082,8 +109733,6 @@ self: { libraryHaskellDepends = [ base constraints ghc template-haskell ]; description = "Automatically generate GHC API counterparts to Haskell declarations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-dump-core" = callPackage @@ -116099,8 +109748,6 @@ self: { ]; description = "An AST and compiler plugin for dumping GHC's Core representation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-dump-tree" = callPackage @@ -116125,9 +109772,7 @@ self: { ]; description = "Dump GHC's parsed, renamed, and type checked ASTs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ghc-dump-tree"; - broken = true; }) {}; "ghc-dump-util" = callPackage @@ -116152,7 +109797,6 @@ self: { ]; description = "Handy tools for working with ghc-dump dumps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ghc-dump"; }) {}; @@ -116165,8 +109809,6 @@ self: { libraryHaskellDepends = [ base ghc ]; description = "Explicitly prevent sharing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-events" = callPackage @@ -116210,9 +109852,7 @@ self: { ]; description = "Analyze and visualize event logs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ghc-events-analyze"; - broken = true; }) {}; "ghc-events-parallel" = callPackage @@ -116236,9 +109876,7 @@ self: { ]; description = "Library and tool for parsing .eventlog files from parallel GHC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ghc-events"; - broken = true; }) {}; "ghc-exactprint_0_6_4" = callPackage @@ -116352,8 +109990,6 @@ self: { description = "GHC garbage collection hook"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-gc-tune" = callPackage @@ -116379,8 +110015,6 @@ self: { libraryHaskellDepends = [ base ghc ]; description = "Derived instances of GHC.Generic of the GHC AST"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-heap_9_6_1" = callPackage @@ -116423,8 +110057,6 @@ self: { libraryHaskellDepends = [ base concurrent-extra deepseq ghci ]; description = "Library for hot-swapping shared objects in GHC"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-hs-meta" = callPackage @@ -116479,7 +110111,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Find the Haddock documentation for a symbol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ghc-instances" = callPackage @@ -116501,7 +110132,6 @@ self: { ]; description = "Easily import all instances contained in GHC distributed libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ghc-justdoit" = callPackage @@ -116514,8 +110144,6 @@ self: { testHaskellDepends = [ base inspection-testing ]; description = "A magic typeclass that just does it"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-lib_8_10_7_20220219" = callPackage @@ -116792,9 +110420,7 @@ self: { executableHaskellDepends = [ base parsec process ]; description = "Generate a bash completion from the GHC manpage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ghc-man-completion"; - broken = true; }) {}; "ghc-mod" = callPackage @@ -116841,7 +110467,6 @@ self: { ]; description = "Happy Haskell Hacking"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "ghc-mtl" = callPackage @@ -116856,8 +110481,6 @@ self: { ]; description = "An mtl compatible version of the Ghc-Api monads and monad-transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-options" = callPackage @@ -116908,9 +110531,7 @@ self: { ]; description = "A parallel wrapper for 'ghc --make'"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ghc-parmake"; - broken = true; }) {}; "ghc-parser" = callPackage @@ -116953,9 +110574,7 @@ self: { ]; description = "Simple utility to fix BROKEN package dependencies for cabal-install"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ghc-pkg-autofix"; - broken = true; }) {}; "ghc-pkg-lib" = callPackage @@ -116970,8 +110589,6 @@ self: { ]; description = "Provide library support for ghc-pkg information"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-plugin-non-empty" = callPackage @@ -116984,8 +110601,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "GHC Plugin for non-empty lists"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-plugs-out" = callPackage @@ -117001,8 +110616,6 @@ self: { doHaddock = false; description = "Type checker plugins without the type checking"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-prim_0_10_0" = callPackage @@ -117099,8 +110712,6 @@ self: { testHaskellDepends = [ base transformers ]; description = "GHC plugin to prove program equations by simplification"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-server" = callPackage @@ -117131,7 +110742,6 @@ self: { executableHaskellDepends = [ base transformers ]; description = "Simplified GHC API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "ghc-test"; }) {}; @@ -117148,8 +110758,6 @@ self: { ]; description = "Simplified interface to the GHC API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-source-gen" = callPackage @@ -117166,8 +110774,6 @@ self: { ]; description = "Constructs Haskell syntax trees for the GHC API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-srcspan-plugin" = callPackage @@ -117179,8 +110785,6 @@ self: { libraryHaskellDepends = [ array base containers ghc hpc ]; description = "Generic GHC Plugin for annotating Haskell code with source location data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-stdin" = callPackage @@ -117207,8 +110811,6 @@ self: { libraryHaskellDepends = [ base ghc ]; description = "Data and Typeable instances for the GHC API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-syb-utils" = callPackage @@ -117220,8 +110822,6 @@ self: { libraryHaskellDepends = [ base bytestring ghc syb ]; description = "Scrap Your Boilerplate utilities for the GHC API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-symbol" = callPackage @@ -117353,8 +110953,6 @@ self: { ]; description = "CTags and ETags from Haskell syntax tree"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-tags-pipes" = callPackage @@ -117371,7 +110969,6 @@ self: { ]; description = "Streaming interface for ghc-tags-core"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "ghc-tags-plugin" = callPackage @@ -117392,7 +110989,6 @@ self: { ]; description = "A compiler plugin which generates tags file from GHC parsed syntax tree"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "ghc-tcplugin-api" = callPackage @@ -117434,8 +111030,6 @@ self: { ]; description = "Library for parsing GHC time and allocation profiling reports"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghc-timers" = callPackage @@ -117558,9 +111152,7 @@ self: { executableHaskellDepends = [ base ghc-paths unix ]; description = "Print minimal export lists"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ghc-usage"; - broken = true; }) {}; "ghc-vis" = callPackage @@ -117592,8 +111184,6 @@ self: { libraryHaskellDepends = [ base directory ghc time ]; description = "Dump the ghc flags during compilation"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghci_8_10_2" = callPackage @@ -117650,8 +111240,6 @@ self: { libraryHaskellDepends = [ base cairo colour diagrams gtk ]; description = "Display simple diagrams from ghci"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghci-haskeline" = callPackage @@ -117670,9 +111258,7 @@ self: { ]; description = "An implementation of ghci using the Haskeline line-input library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ghci-haskeline"; - broken = true; }) {}; "ghci-hexcalc" = callPackage @@ -117697,8 +111283,6 @@ self: { testHaskellDepends = [ base doctest hspec parsec ]; description = "parse output of ghci \":history\" command"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghci-lib" = callPackage @@ -117710,8 +111294,6 @@ self: { libraryHaskellDepends = [ base ghc MissingH ]; description = "A library for interactively evaluating Haskell code"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghci-ng" = callPackage @@ -117733,9 +111315,7 @@ self: { ]; description = "Next generation GHCi"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ghci-ng"; - broken = true; }) {}; "ghci-pretty" = callPackage @@ -117747,7 +111327,6 @@ self: { libraryHaskellDepends = [ base hscolour ipprint ]; description = "colored pretty-printing within ghci"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ghci-websockets" = callPackage @@ -117938,8 +111517,6 @@ self: { ]; description = "Allow GHCJS projects to compile under GHC and develop using intero"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghcjs-codemirror" = callPackage @@ -117989,7 +111566,6 @@ self: { description = "GHCJS DOM Hello World, an example package"; license = lib.licenses.mit; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; }) {}; "ghcjs-dom-jsaddle" = callPackage @@ -118012,8 +111588,6 @@ self: { sha256 = "1pmxrhpdh4630q0z8a8pqg5m7323a1w1z8ny2fvb1acr12x6l1f0"; description = "DOM library using JSFFI and GHCJS"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghcjs-dom-webkit" = callPackage @@ -118046,7 +111620,6 @@ self: { ]; description = "GHCJS bindings for the JavaScript Fetch API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ghcjs-hplay" = callPackage @@ -118063,7 +111636,6 @@ self: { ]; description = "Client-side web EDSL for transient nodes running in the web browser"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ghcjs-perch" = callPackage @@ -118086,8 +111658,6 @@ self: { libraryHaskellDepends = [ base ghcjs-base protolude ]; description = "Bidirectional bidings to javascript's promise"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghcjs-vdom" = callPackage @@ -118136,8 +111706,6 @@ self: { libraryHaskellDepends = [ base ghcjs-base text ]; description = "XmlHttpRequest (\"AJAX\") bindings for GHCJS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ghclive" = callPackage @@ -118164,9 +111732,7 @@ self: { ]; description = "Interactive Haskell interpreter in a browser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ghclive"; - broken = true; }) {}; "ghcprofview" = callPackage @@ -118237,7 +111803,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "ghc toolchain installer"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "ghcup"; }) {}; @@ -118288,7 +111853,6 @@ self: { ]; description = "Trivial routines for inspecting git repositories"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "ght"; }) {}; @@ -118315,8 +111879,6 @@ self: { description = "Adwaita bindings"; license = lib.licenses.lgpl21Only; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libadwaita;}; "gi-atk" = callPackage @@ -118374,7 +111936,6 @@ self: { ]; description = "Bridge between packages gi-* and cairo-core"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gi-cairo-connector" = callPackage @@ -118431,7 +111992,6 @@ self: { libraryPkgconfigDepends = [ clutter ]; description = "clutter GObject bindings"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) clutter;}; "gi-cogl" = callPackage @@ -118451,8 +112011,6 @@ self: { libraryPkgconfigDepends = [ cogl ]; description = "COGL GObject bindings"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) cogl;}; "gi-coglpango" = callPackage @@ -118476,7 +112034,6 @@ self: { libraryPkgconfigDepends = [ cogl-pango ]; description = "Cogl Pango GObject bindings"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; }) {cogl-pango = null;}; "gi-dbusmenu" = callPackage @@ -118680,7 +112237,6 @@ self: { libraryPkgconfigDepends = [ gst-editing-services ]; description = "libges bindings"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; }) {gst-editing-services = null;}; "gi-ggit" = callPackage @@ -118737,8 +112293,6 @@ self: { ]; description = "Haskell implementation of GListModel interface from gi-gio"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gi-girepository" = callPackage @@ -118834,8 +112388,6 @@ self: { libraryPkgconfigDepends = [ graphene-gobject ]; description = "Graphene bindings"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {graphene-gobject = null;}; "gi-gsk" = callPackage @@ -118860,7 +112412,6 @@ self: { libraryPkgconfigDepends = [ gtk4 ]; description = "Gsk bindings"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gtk4;}; "gi-gst" = callPackage @@ -118946,7 +112497,6 @@ self: { libraryPkgconfigDepends = [ gstreamer-pbutils ]; description = "GStreamer Plugins Base Utils bindings"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; }) {gstreamer-pbutils = null;}; "gi-gsttag" = callPackage @@ -118968,8 +112518,6 @@ self: { libraryPkgconfigDepends = [ gstreamer-tag ]; description = "GStreamer Tag bindings"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {gstreamer-tag = null;}; "gi-gstvideo" = callPackage @@ -119064,8 +112612,6 @@ self: { ]; description = "Declarative GTK+ programming in Haskell"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gi-gtk-declarative-app-simple" = callPackage @@ -119087,7 +112633,6 @@ self: { ]; description = "Declarative GTK+ programming in Haskell in the style of Pux"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "gi-gtk-hs" = callPackage @@ -119124,8 +112669,6 @@ self: { libraryPkgconfigDepends = [ gtk-layer-shell ]; description = "gtk-layer-shell bindings"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) gtk-layer-shell;}; "gi-gtkosxapplication" = callPackage @@ -119172,8 +112715,6 @@ self: { libraryPkgconfigDepends = [ gtksheet ]; description = "GtkSheet bindings"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {gtksheet = null;}; "gi-gtksource" = callPackage @@ -119198,8 +112739,6 @@ self: { libraryPkgconfigDepends = [ gtksourceview ]; description = "GtkSource bindings"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) gtksourceview;}; "gi-handy" = callPackage @@ -119224,8 +112763,6 @@ self: { libraryPkgconfigDepends = [ libhandy ]; description = "libhandy bindings"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libhandy;}; "gi-harfbuzz" = callPackage @@ -119269,8 +112806,6 @@ self: { description = "IBus bindings"; license = lib.licenses.lgpl21Only; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) ibus;}; "gi-javascriptcore" = callPackage @@ -119680,8 +113215,6 @@ self: { libraryPkgconfigDepends = [ webkitgtk-web-process-extension ]; description = "WebKitWebProcessExtension bindings"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {webkitgtk-web-process-extension = null;}; "gi-wnck" = callPackage @@ -119745,9 +113278,7 @@ self: { ]; description = "Fuzzy finder for cabal executables"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "giak"; - broken = true; }) {}; "gibbon" = callPackage @@ -119827,8 +113358,6 @@ self: { ]; description = "Consistent and safe JSON APIs with snap-core and (by default) postgresql-simple"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ginsu" = callPackage @@ -119852,9 +113381,7 @@ self: { executableSystemDepends = [ openssl ]; description = "Ginsu Gale Client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "ginsu"; - broken = true; }) {inherit (pkgs) openssl;}; "gio" = callPackage @@ -119895,9 +113422,7 @@ self: { ]; description = "Git Performance Dashboard"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "gipeda"; - broken = true; }) {}; "giphy-api" = callPackage @@ -119923,8 +113448,6 @@ self: { ]; description = "Giphy HTTP API wrapper and CLI search tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gist" = callPackage @@ -119942,9 +113465,7 @@ self: { ]; description = "A reliable command-line client for gist.github.com"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "gist"; - broken = true; }) {}; "git" = callPackage @@ -119969,8 +113490,6 @@ self: { doCheck = false; description = "Git operations in haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "git-all" = callPackage @@ -119989,9 +113508,7 @@ self: { ]; description = "Determine which Git repositories need actions to be taken"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "git-all"; - broken = true; }) {}; "git-annex" = callPackage @@ -120091,9 +113608,7 @@ self: { ]; description = "git checkout command-line tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "git-brunch"; - broken = true; }) {}; "git-checklist" = callPackage @@ -120112,9 +113627,7 @@ self: { ]; description = "Maintain per-branch checklists in Git"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "git-checklist"; - broken = true; }) {}; "git-config" = callPackage @@ -120136,7 +113649,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "A simple parser for Git configuration files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "git-cuk" = callPackage @@ -120156,9 +113668,7 @@ self: { executableHaskellDepends = [ base relude ]; description = "Haskell Git Helper Tool"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "cuk"; - broken = true; }) {}; "git-date" = callPackage @@ -120179,8 +113689,6 @@ self: { ]; description = "Bindings to the date parsing from Git"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "git-embed" = callPackage @@ -120218,7 +113726,6 @@ self: { ]; description = "Custom git command for formatting code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "git-fmt"; }) {}; @@ -120263,7 +113770,6 @@ self: { ]; description = "More intelligent push-to-GitHub utility"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "git-gpush"; }) {}; @@ -120278,9 +113784,7 @@ self: { executableHaskellDepends = [ base base-compat process ]; description = "Move a git branch"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "git-jump"; - broken = true; }) {}; "git-lfs" = callPackage @@ -120357,7 +113861,6 @@ self: { ]; description = "Git object and its parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "git-remote-ipfs" = callPackage @@ -120389,7 +113892,6 @@ self: { ]; description = "Git remote helper to store git objects on IPFS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "git-remote-ipfs"; }) {}; @@ -120419,9 +113921,7 @@ self: { ]; description = "repairs a damaged git repository"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "git-repair"; - broken = true; }) {}; "git-sanity" = callPackage @@ -120441,7 +113941,6 @@ self: { executableHaskellDepends = [ base Cabal ]; description = "A sanity checker for your git history"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "git-sanity"; }) {}; @@ -120472,8 +113971,6 @@ self: { testToolDepends = [ git ]; description = "A framework for pre-commit checks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gitHUD" = callPackage @@ -120493,9 +113990,7 @@ self: { ]; description = "More efficient replacement to the great git-radar"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gitHUD"; - broken = true; }) {}; "gitcache" = callPackage @@ -120533,7 +114028,6 @@ self: { ]; description = "Create Github issues out of TODO comments in code"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "gitdo"; }) {}; @@ -120645,8 +114139,6 @@ self: { executableToolDepends = [ git ]; description = "backs up everything github knows about a repository, to the repository"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) git;}; "github-data" = callPackage @@ -120672,8 +114164,6 @@ self: { ]; description = "Access to the GitHub API, v3"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "github-post-receive" = callPackage @@ -120690,8 +114180,6 @@ self: { ]; description = "GitHub webhooks library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "github-release" = callPackage @@ -120759,8 +114247,6 @@ self: { ]; description = "Various Github helper utilities"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "github-types" = callPackage @@ -120790,8 +114276,6 @@ self: { libraryHaskellDepends = [ base basic-prelude github text ]; description = "Useful functions that use the GitHub API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "github-webhook-handler" = callPackage @@ -120810,8 +114294,6 @@ self: { ]; description = "GitHub WebHook Handler"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "github-webhook-handler-snap" = callPackage @@ -120830,7 +114312,6 @@ self: { ]; description = "GitHub WebHook Handler implementation for Snap"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "github-webhooks" = callPackage @@ -120874,8 +114355,6 @@ self: { ]; description = "Heads up, and you see your GIT context"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gitignore" = callPackage @@ -120894,9 +114373,7 @@ self: { ]; description = "Apply GitHub .gitignore templates to already existing repositories."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gitignore"; - broken = true; }) {}; "gitit" = callPackage @@ -120950,8 +114427,6 @@ self: { testHaskellDepends = [ base hspec rio ]; description = "Gitlab Web API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gitlab-haskell" = callPackage @@ -120975,8 +114450,6 @@ self: { ]; description = "A Haskell library for the GitLab web API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gitlib" = callPackage @@ -121024,8 +114497,6 @@ self: { ]; description = "Gitlib repository backend that uses the git command-line tool"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gitlib-cross" = callPackage @@ -121043,7 +114514,6 @@ self: { ]; description = "Run tests between repositories"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "gitlib-libgit2" = callPackage @@ -121099,7 +114569,6 @@ self: { ]; description = "Gitlib repository backend for storing Git objects in Amazon S3"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "gitlib-sample" = callPackage @@ -121149,8 +114618,6 @@ self: { ]; description = "Generic utility functions for working with Git repositories"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gitrev" = callPackage @@ -121193,7 +114660,6 @@ self: { ]; description = "A document store library for Git + JSON"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "gitter" = callPackage @@ -121209,8 +114675,6 @@ self: { ]; description = "Gitter.im API client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "givegif" = callPackage @@ -121238,7 +114702,6 @@ self: { ]; description = "CLI Giphy search tool with previews in iTerm 2"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "givegif"; }) {}; @@ -121355,8 +114818,6 @@ self: { libraryPkgconfigDepends = [ libglade ]; description = "Binding to the glade library"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs.gnome2) libglade;}; "gladexml-accessor" = callPackage @@ -121368,7 +114829,6 @@ self: { libraryHaskellDepends = [ base glade HaXml template-haskell ]; description = "Automagically declares getters for widget handles in specified interface file"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "glambda" = callPackage @@ -121410,9 +114870,7 @@ self: { ]; description = "An OpenGL micro framework"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "glasso" = callPackage @@ -121438,8 +114896,6 @@ self: { libraryHaskellDepends = [ base lens ]; description = "Framework for rendering things with metadata/headers and values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "glazier" = callPackage @@ -121461,7 +114917,6 @@ self: { ]; description = "Extensible effects using ContT, State and variants"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "glazier-pipes" = callPackage @@ -121477,7 +114932,6 @@ self: { ]; description = "A threaded rendering framework using glaizer and pipes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "glazier-react" = callPackage @@ -121497,7 +114951,6 @@ self: { ]; description = "ReactJS binding using Glazier.Command."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "glazier-react-examples" = callPackage @@ -121522,7 +114975,6 @@ self: { ]; description = "Examples of using glazier-react"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "glazier-react-todo"; }) {}; @@ -121543,7 +114995,6 @@ self: { ]; description = "Generic widget library using glazier-react"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gli" = callPackage @@ -121568,9 +115019,7 @@ self: { testHaskellDepends = [ base ]; description = "Tiny cli to fetch PR info from gitlab"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gli"; - broken = true; }) {}; "glib" = callPackage @@ -121604,8 +115053,6 @@ self: { testHaskellDepends = [ base data-default hspec ]; description = "Glicko-2 implementation in Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "glider-nlp" = callPackage @@ -121618,8 +115065,6 @@ self: { testHaskellDepends = [ base Cabal containers hspec text ]; description = "Natural Language Processing library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "glintcollider" = callPackage @@ -121664,7 +115109,6 @@ self: { testHaskellDepends = [ base HUnit ]; description = "Console IRC client"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; mainProgram = "glirc"; maintainers = [ lib.maintainers.kiwi ]; }) {}; @@ -121700,8 +115144,6 @@ self: { benchmarkHaskellDepends = [ base criterion Glob MissingH ]; description = "Haskell bindings for POSIX glob library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "global" = callPackage @@ -121719,7 +115161,6 @@ self: { ]; description = "Library enabling unique top-level declarations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "global-config" = callPackage @@ -121740,7 +115181,6 @@ self: { ]; description = "Global mutable configuration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "global-lock" = callPackage @@ -121763,8 +115203,6 @@ self: { libraryHaskellDepends = [ base containers stm ]; description = "Namespaced, global, and top-level mutable variables without unsafePerformIO"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "glome-hs" = callPackage @@ -121788,7 +115226,6 @@ self: { doHaddock = false; description = "ray tracer"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "Glome"; }) {}; @@ -121820,7 +115257,6 @@ self: { ]; description = "Extras to interface Gloss and Accelerate"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gloss-algorithms" = callPackage @@ -121845,8 +115281,6 @@ self: { libraryHaskellDepends = [ base gloss reactive-banana ]; description = "An Interface for gloss in terms of a reactive-banana Behavior"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gloss-devil" = callPackage @@ -121858,7 +115292,6 @@ self: { libraryHaskellDepends = [ base bytestring gloss repa repa-devil ]; description = "Display images in Gloss using libdevil for decoding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gloss-examples" = callPackage @@ -121878,7 +115311,6 @@ self: { ]; description = "Examples using the gloss library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "gloss-export" = callPackage @@ -121898,9 +115330,7 @@ self: { testHaskellDepends = [ base directory filepath gloss JuicyPixels ]; description = "Export Gloss pictures to png, bmp, tga, tiff, gif and juicy-pixels-image"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "gloss-export-exe"; - broken = true; }) {}; "gloss-game" = callPackage @@ -121912,8 +115342,6 @@ self: { libraryHaskellDepends = [ base gloss gloss-juicy ]; description = "Gloss wrapper that simplifies writing games"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gloss-juicy" = callPackage @@ -121951,7 +115379,6 @@ self: { ]; description = "Parallel rendering of raster images"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "gloss-raster-accelerate" = callPackage @@ -122009,7 +115436,6 @@ self: { libraryHaskellDepends = [ base gloss sodium ]; description = "A Sodium interface to the Gloss drawing package"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "glpk-headers" = callPackage @@ -122068,9 +115494,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Parser and optimizer for a small subset of GLSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "optshader"; - broken = true; }) {}; "gltf-codec" = callPackage @@ -122091,8 +115515,6 @@ self: { testHaskellDepends = [ base bytestring directory filepath shower ]; description = "glTF scene loader"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gltf-loader" = callPackage @@ -122121,7 +115543,6 @@ self: { ]; description = "High level GlTF loader"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "gltf-loader"; }) {}; @@ -122180,9 +115601,7 @@ self: { ]; description = "Make better services"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "glue-example"; - broken = true; }) {}; "glue-common" = callPackage @@ -122322,7 +115741,6 @@ self: { ]; description = "Composable maps and generic tries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gmndl" = callPackage @@ -122341,7 +115759,6 @@ self: { ]; description = "Mandelbrot Set explorer using GTK"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "gmndl"; }) {}; @@ -122370,7 +115787,6 @@ self: { ]; description = "Randomly set a picture as the GNOME desktop background"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "gnome-desktop"; }) {}; @@ -122407,7 +115823,6 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the GNOME Virtual File System library"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {gnome-vfs = null; gnome-vfs_module = null;}; "gnss-converters" = callPackage @@ -122435,7 +115850,6 @@ self: { ]; description = "GNSS Converters"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gnuidn" = callPackage @@ -122510,8 +115924,6 @@ self: { libraryHaskellDepends = [ base directory filepath process ]; description = "GHCi bindings to lambdabot"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "goal-core" = callPackage @@ -122536,8 +115948,6 @@ self: { ]; description = "Common, non-geometric tools for use with Goal"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "goal-geometry" = callPackage @@ -122554,7 +115964,6 @@ self: { ]; description = "The basic geometric type system of Goal"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "goal-graphical" = callPackage @@ -122578,7 +115987,6 @@ self: { ]; description = "Optimization of latent variable and dynamical models with Goal"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "goal-probability" = callPackage @@ -122601,7 +116009,6 @@ self: { ]; description = "Optimization on manifolds of probability distributions with Goal"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "goal-simulation" = callPackage @@ -122625,7 +116032,6 @@ self: { ]; description = "Mealy based simulation tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "goat" = callPackage @@ -122642,7 +116048,6 @@ self: { testHaskellDepends = [ base bytestring cereal QuickCheck safe ]; description = "Time Series Compression"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "goatee" = callPackage @@ -122660,8 +116065,6 @@ self: { testHaskellDepends = [ base containers HUnit mtl parsec ]; description = "A monadic take on a 2,500-year-old board game - library"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "goatee-gtk" = callPackage @@ -122682,7 +116085,6 @@ self: { testHaskellDepends = [ base HUnit ]; description = "A monadic take on a 2,500-year-old board game - GTK+ UI"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "goatee-gtk"; }) {}; @@ -122705,8 +116107,6 @@ self: { testHaskellDepends = [ base hspec hspec-core ]; description = "Go-style channels"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "godot-haskell" = callPackage @@ -122729,8 +116129,6 @@ self: { doHaddock = false; description = "Haskell bindings for the Godot game engine API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "godot-megaparsec" = callPackage @@ -122749,9 +116147,7 @@ self: { executableHaskellDepends = [ base criterion megaparsec text ]; description = "Megaparsec parser for Godot `tscn` and `gdextension` files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "bench"; - broken = true; }) {}; "gofer-prelude" = callPackage @@ -122763,8 +116159,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "The Gofer 2.30 standard prelude"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "goggles" = callPackage @@ -122826,7 +116220,6 @@ self: { ]; description = "Comprehensive Google Services SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-abusiveexperiencereport" = callPackage @@ -122838,7 +116231,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Abusive Experience Report SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-acceleratedmobilepageurl" = callPackage @@ -122850,7 +116242,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Accelerated Mobile Pages (AMP) URL SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-accessapproval" = callPackage @@ -122862,7 +116253,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Access Approval SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-accesscontextmanager" = callPackage @@ -122874,7 +116264,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Access Context Manager SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-adexchange-buyer" = callPackage @@ -122886,7 +116275,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Ad Exchange Buyer SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-adexchange-seller" = callPackage @@ -122898,7 +116286,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Ad Exchange Seller SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-adexchangebuyer2" = callPackage @@ -122910,7 +116297,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Ad Exchange Buyer API II SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-adexperiencereport" = callPackage @@ -122922,7 +116308,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Ad Experience Report SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-admin-datatransfer" = callPackage @@ -122934,7 +116319,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Admin Data Transfer SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-admin-directory" = callPackage @@ -122946,7 +116330,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Admin Directory SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-admin-emailmigration" = callPackage @@ -122958,7 +116341,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Email Migration API v2 SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-admin-reports" = callPackage @@ -122970,7 +116352,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Admin Reports SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-adsense" = callPackage @@ -122982,7 +116363,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google AdSense Management SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-adsense-host" = callPackage @@ -122994,7 +116374,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google AdSense Host SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-affiliates" = callPackage @@ -123006,7 +116385,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Affiliate Network SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-alertcenter" = callPackage @@ -123018,7 +116396,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google G Suite Alert Center SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-analytics" = callPackage @@ -123030,7 +116407,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Analytics SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-analyticsreporting" = callPackage @@ -123042,7 +116418,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Analytics Reporting SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-android-enterprise" = callPackage @@ -123054,7 +116429,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Play EMM SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-android-publisher" = callPackage @@ -123066,7 +116440,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Play Developer SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-androiddeviceprovisioning" = callPackage @@ -123078,7 +116451,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Android Device Provisioning Partner SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-androidmanagement" = callPackage @@ -123090,7 +116462,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Android Management SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-appengine" = callPackage @@ -123102,7 +116473,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google App Engine Admin SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-apps-activity" = callPackage @@ -123114,7 +116484,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Drive Activity SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-apps-calendar" = callPackage @@ -123126,7 +116495,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Calendar SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-apps-licensing" = callPackage @@ -123138,7 +116506,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Enterprise License Manager SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-apps-reseller" = callPackage @@ -123150,7 +116517,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Enterprise Apps Reseller SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-apps-tasks" = callPackage @@ -123162,7 +116528,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Tasks SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-appstate" = callPackage @@ -123174,7 +116539,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google App State SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-autoscaler" = callPackage @@ -123186,7 +116550,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Compute Engine Autoscaler SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-bigquery" = callPackage @@ -123198,7 +116561,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google BigQuery SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-bigquerydatatransfer" = callPackage @@ -123210,7 +116572,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google BigQuery Data Transfer SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-bigtableadmin" = callPackage @@ -123222,7 +116583,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Bigtable Admin SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-billing" = callPackage @@ -123234,7 +116594,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Billing SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-binaryauthorization" = callPackage @@ -123246,7 +116605,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Binary Authorization SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-blogger" = callPackage @@ -123258,7 +116616,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Blogger SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-books" = callPackage @@ -123270,7 +116627,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Books SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-chat" = callPackage @@ -123282,7 +116638,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Hangouts Chat SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-civicinfo" = callPackage @@ -123294,7 +116649,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Civic Information SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-classroom" = callPackage @@ -123306,7 +116660,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Classroom SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudasset" = callPackage @@ -123318,7 +116671,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Asset SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-clouderrorreporting" = callPackage @@ -123330,7 +116682,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Stackdriver Error Reporting SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudfunctions" = callPackage @@ -123342,7 +116693,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Functions SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudidentity" = callPackage @@ -123354,7 +116704,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Identity SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudiot" = callPackage @@ -123366,7 +116715,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud IoT SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudkms" = callPackage @@ -123378,7 +116726,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Key Management Service (KMS) SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudmonitoring" = callPackage @@ -123390,7 +116737,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Monitoring SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudprivatecatalog" = callPackage @@ -123402,7 +116748,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Private Catalog SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudprivatecatalogproducer" = callPackage @@ -123414,7 +116759,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Private Catalog Producer SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudprofiler" = callPackage @@ -123426,7 +116770,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Stackdriver Profiler SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudscheduler" = callPackage @@ -123438,7 +116781,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Scheduler SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudsearch" = callPackage @@ -123450,7 +116792,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Search SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudshell" = callPackage @@ -123462,7 +116803,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Shell SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudtasks" = callPackage @@ -123474,7 +116814,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Tasks SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudtrace" = callPackage @@ -123486,7 +116825,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Stackdriver Trace SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-commentanalyzer" = callPackage @@ -123498,7 +116836,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Perspective Comment Analyzer SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-composer" = callPackage @@ -123510,7 +116847,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Composer SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-compute" = callPackage @@ -123522,7 +116858,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Compute Engine SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-consumersurveys" = callPackage @@ -123534,7 +116869,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Consumer Surveys SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-container" = callPackage @@ -123546,7 +116880,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Kubernetes Engine SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-containeranalysis" = callPackage @@ -123558,7 +116891,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Container Analysis SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-containerbuilder" = callPackage @@ -123570,7 +116902,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Build SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-core" = callPackage @@ -123595,8 +116926,6 @@ self: { testHaskellDepends = [ base tasty ]; description = "Core data types and functionality for Gogol libraries"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gogol-customsearch" = callPackage @@ -123608,7 +116937,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google CustomSearch SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-dataflow" = callPackage @@ -123620,7 +116948,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Dataflow SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-datafusion" = callPackage @@ -123632,7 +116959,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Data Fusion SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-dataproc" = callPackage @@ -123644,7 +116970,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Dataproc SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-datastore" = callPackage @@ -123656,7 +116981,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Datastore SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-debugger" = callPackage @@ -123668,7 +116992,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Stackdriver Debugger SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-deploymentmanager" = callPackage @@ -123680,7 +117003,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Deployment Manager SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-dfareporting" = callPackage @@ -123692,7 +117014,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google DCM/DFA Reporting And Trafficking SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-dialogflow" = callPackage @@ -123704,7 +117025,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Dialogflow SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-digitalassetlinks" = callPackage @@ -123716,7 +117036,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Digital Asset Links SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-discovery" = callPackage @@ -123728,7 +117047,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google API Discovery Service SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-dlp" = callPackage @@ -123740,7 +117058,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Data Loss Prevention (DLP) SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-dns" = callPackage @@ -123752,7 +117069,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud DNS SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-docs" = callPackage @@ -123764,7 +117080,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Docs SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-doubleclick-bids" = callPackage @@ -123776,7 +117091,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google DoubleClick Bid Manager SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-doubleclick-search" = callPackage @@ -123788,7 +117102,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google DoubleClick Search SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-drive" = callPackage @@ -123800,7 +117113,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Drive SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-driveactivity" = callPackage @@ -123812,7 +117124,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Drive Activity SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-factchecktools" = callPackage @@ -123824,7 +117135,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Fact Check Tools SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-file" = callPackage @@ -123836,7 +117146,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Filestore SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-firebase-dynamiclinks" = callPackage @@ -123848,7 +117157,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Firebase Dynamic Links SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-firebase-rules" = callPackage @@ -123860,7 +117168,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Firebase Rules SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-firebasehosting" = callPackage @@ -123872,7 +117179,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Firebase Hosting SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-firebaseremoteconfig" = callPackage @@ -123884,7 +117190,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Firebase Remote Config SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-firestore" = callPackage @@ -123896,7 +117201,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Firestore SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-fitness" = callPackage @@ -123908,7 +117212,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Fitness SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-fonts" = callPackage @@ -123920,7 +117223,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Fonts Developer SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-freebasesearch" = callPackage @@ -123932,7 +117234,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Freebase Search SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-fusiontables" = callPackage @@ -123944,7 +117245,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Fusion Tables SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-games" = callPackage @@ -123956,7 +117256,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Play Game Services SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-games-configuration" = callPackage @@ -123968,7 +117267,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Play Game Services Publishing SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-games-management" = callPackage @@ -123980,7 +117278,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Play Game Services Management SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-genomics" = callPackage @@ -123992,7 +117289,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Genomics SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-gmail" = callPackage @@ -124004,7 +117300,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Gmail SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-groups-migration" = callPackage @@ -124016,7 +117311,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Groups Migration SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-groups-settings" = callPackage @@ -124028,7 +117322,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Groups Settings SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-healthcare" = callPackage @@ -124040,7 +117333,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Healthcare SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-iam" = callPackage @@ -124052,7 +117344,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Identity and Access Management (IAM) SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-iamcredentials" = callPackage @@ -124064,7 +117355,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google IAM Service Account Credentials SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-iap" = callPackage @@ -124076,7 +117366,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Identity-Aware Proxy SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-identity-toolkit" = callPackage @@ -124088,7 +117377,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Identity Toolkit SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-indexing" = callPackage @@ -124100,7 +117388,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Indexing SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-jobs" = callPackage @@ -124112,7 +117399,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Talent Solution SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-kgsearch" = callPackage @@ -124124,7 +117410,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Knowledge Graph Search SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-language" = callPackage @@ -124136,7 +117421,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Natural Language SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-latencytest" = callPackage @@ -124148,7 +117432,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Network Performance Monitoring SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-libraryagent" = callPackage @@ -124160,7 +117443,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Library Agent SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-logging" = callPackage @@ -124172,7 +117454,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Stackdriver Logging SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-manufacturers" = callPackage @@ -124184,7 +117465,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Manufacturer Center SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-maps-coordinate" = callPackage @@ -124196,7 +117476,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Maps Coordinate SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-maps-engine" = callPackage @@ -124208,7 +117487,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Maps Engine SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-mirror" = callPackage @@ -124220,7 +117498,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Mirror SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-ml" = callPackage @@ -124232,7 +117509,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Machine Learning Engine SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-monitoring" = callPackage @@ -124244,7 +117520,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Stackdriver Monitoring SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-oauth2" = callPackage @@ -124256,7 +117531,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google OAuth2 SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-oslogin" = callPackage @@ -124268,7 +117542,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud OS Login SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-pagespeed" = callPackage @@ -124280,7 +117553,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google PageSpeed Insights SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-partners" = callPackage @@ -124292,7 +117564,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Partners SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-people" = callPackage @@ -124304,7 +117575,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google People SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-photoslibrary" = callPackage @@ -124316,7 +117586,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Photos Library SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-play-moviespartner" = callPackage @@ -124328,7 +117597,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Play Movies Partner SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-playcustomapp" = callPackage @@ -124340,7 +117608,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Play Custom App Publishing SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-plus" = callPackage @@ -124352,7 +117619,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google + SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-plus-domains" = callPackage @@ -124364,7 +117630,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google + Domains SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-poly" = callPackage @@ -124376,7 +117641,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Poly SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-prediction" = callPackage @@ -124388,7 +117652,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Prediction SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-proximitybeacon" = callPackage @@ -124400,7 +117663,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Proximity Beacon SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-pubsub" = callPackage @@ -124412,7 +117674,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Pub/Sub SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-qpxexpress" = callPackage @@ -124424,7 +117685,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google QPX Express SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-redis" = callPackage @@ -124436,7 +117696,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Memorystore for Redis SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-remotebuildexecution" = callPackage @@ -124448,7 +117707,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Remote Build Execution SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-replicapool" = callPackage @@ -124460,7 +117718,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Replica Pool SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-replicapool-updater" = callPackage @@ -124472,7 +117729,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Compute Engine Instance Group Updater SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-resourcemanager" = callPackage @@ -124484,7 +117740,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Resource Manager SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-resourceviews" = callPackage @@ -124496,7 +117751,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Compute Engine Instance Groups SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-run" = callPackage @@ -124508,7 +117762,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Run SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-runtimeconfig" = callPackage @@ -124520,7 +117773,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Runtime Configuration SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-safebrowsing" = callPackage @@ -124532,7 +117784,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Safe Browsing SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-script" = callPackage @@ -124544,7 +117795,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Apps Script SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-searchconsole" = callPackage @@ -124556,7 +117806,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Search Console URL Testing Tools SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-securitycenter" = callPackage @@ -124568,7 +117817,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Security Command Center SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-servicebroker" = callPackage @@ -124580,7 +117828,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Service Broker SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-serviceconsumermanagement" = callPackage @@ -124592,7 +117839,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Service Consumer Management SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-servicecontrol" = callPackage @@ -124604,7 +117850,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Service Control SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-servicemanagement" = callPackage @@ -124616,7 +117861,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Service Management SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-servicenetworking" = callPackage @@ -124628,7 +117872,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Service Networking SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-serviceusage" = callPackage @@ -124640,7 +117883,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Service Usage SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-serviceuser" = callPackage @@ -124652,7 +117894,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Service User SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-sheets" = callPackage @@ -124664,7 +117905,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Sheets SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-shopping-content" = callPackage @@ -124676,7 +117916,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Content API for Shopping SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-siteverification" = callPackage @@ -124688,7 +117927,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Site Verification SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-slides" = callPackage @@ -124700,7 +117938,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Slides SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-sourcerepo" = callPackage @@ -124712,7 +117949,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Source Repositories SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-spanner" = callPackage @@ -124724,7 +117960,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Spanner SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-spectrum" = callPackage @@ -124736,7 +117971,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Spectrum Database SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-speech" = callPackage @@ -124748,7 +117982,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Speech-to-Text SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-sqladmin" = callPackage @@ -124760,7 +117993,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud SQL Admin SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-storage" = callPackage @@ -124772,7 +118004,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Storage JSON SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-storage-transfer" = callPackage @@ -124784,7 +118015,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Storage Transfer SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-streetviewpublish" = callPackage @@ -124796,7 +118026,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Street View Publish SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-surveys" = callPackage @@ -124808,7 +118037,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Surveys SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-tagmanager" = callPackage @@ -124820,7 +118048,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Tag Manager SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-taskqueue" = callPackage @@ -124832,7 +118059,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google TaskQueue SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-testing" = callPackage @@ -124844,7 +118070,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Testing SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-texttospeech" = callPackage @@ -124856,7 +118081,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Text-to-Speech SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-toolresults" = callPackage @@ -124868,7 +118092,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Tool Results SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-tpu" = callPackage @@ -124880,7 +118103,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud TPU SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-tracing" = callPackage @@ -124892,7 +118114,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Tracing SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-translate" = callPackage @@ -124904,7 +118125,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Translation SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-urlshortener" = callPackage @@ -124916,7 +118136,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google URL Shortener SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-useraccounts" = callPackage @@ -124928,7 +118147,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud User Accounts SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-vault" = callPackage @@ -124940,7 +118158,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google G Suite Vault SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-videointelligence" = callPackage @@ -124952,7 +118169,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Video Intelligence SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-vision" = callPackage @@ -124964,7 +118180,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Vision SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-webmaster-tools" = callPackage @@ -124976,7 +118191,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Search Console SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-websecurityscanner" = callPackage @@ -124988,7 +118202,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Web Security Scanner SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-youtube" = callPackage @@ -125000,7 +118213,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google YouTube Data SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-youtube-analytics" = callPackage @@ -125012,7 +118224,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google YouTube Analytics SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gogol-youtube-reporting" = callPackage @@ -125024,7 +118235,6 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google YouTube Reporting SDK"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "goldplate" = callPackage @@ -125060,8 +118270,6 @@ self: { libraryHaskellDepends = [ base renderable transformers varying ]; description = "Graphical user interfaces that are renderable, change over time and eventually produce a value"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "google-cloud" = callPackage @@ -125081,8 +118289,6 @@ self: { ]; description = "Client for the Google Cloud APIs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "google-dictionary" = callPackage @@ -125119,7 +118325,6 @@ self: { ]; description = "Google Drive API access"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "google-html5-slide" = callPackage @@ -125138,9 +118343,7 @@ self: { ]; description = "Google HTML5 Slide generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "google-html5-slide"; - broken = true; }) {}; "google-isbn" = callPackage @@ -125171,7 +118374,6 @@ self: { testHaskellDepends = [ base google-search text time xml-conduit ]; description = "Write GMail filters and output to importable XML"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "google-maps-geocoding" = callPackage @@ -125188,7 +118390,6 @@ self: { ]; description = "Bindings to the Google Geocoding API (formerly Maps Geocoding API)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "google-oauth2" = callPackage @@ -125209,8 +118410,6 @@ self: { ]; description = "Google OAuth2 token negotiation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "google-oauth2-easy" = callPackage @@ -125230,8 +118429,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Opininated use of Google Authentication for ease"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "google-oauth2-for-cli" = callPackage @@ -125264,8 +118461,6 @@ self: { ]; description = "Get a signed JWT for Google Service Accounts"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "google-search" = callPackage @@ -125277,8 +118472,6 @@ self: { libraryHaskellDepends = [ base free nats text time ]; description = "EDSL for Google and GMail search expressions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "google-server-api" = callPackage @@ -125302,8 +118495,6 @@ self: { ]; description = "Google APIs for server to server applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "google-static-maps" = callPackage @@ -125323,8 +118514,6 @@ self: { ]; description = "Bindings to the Google Maps Static API (formerly Static Maps API)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "google-translate" = callPackage @@ -125341,8 +118530,6 @@ self: { ]; description = "Google Translate API bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "googleplus" = callPackage @@ -125360,7 +118547,6 @@ self: { ]; description = "Haskell implementation of the Google+ API v1"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "googlepolyline" = callPackage @@ -125379,8 +118565,6 @@ self: { ]; description = "Google Polyline Encoder/Decoder"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gopher-proxy" = callPackage @@ -125420,9 +118604,7 @@ self: { ]; description = "Spidering robot to download files from Gopherspace"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "gopherbot"; - broken = true; }) {}; "gopro-plus" = callPackage @@ -125453,8 +118635,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "GoPro Plus Client API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gore-and-ash" = callPackage @@ -125473,8 +118653,6 @@ self: { ]; description = "Core of FRP game engine called Gore&Ash"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gore-and-ash-actor" = callPackage @@ -125492,7 +118670,6 @@ self: { ]; description = "Gore&Ash engine extension that implements actor style of programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gore-and-ash-async" = callPackage @@ -125515,7 +118692,6 @@ self: { ]; description = "Core module for Gore&Ash engine that embeds async IO actions into game loop"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gore-and-ash-demo" = callPackage @@ -125541,7 +118717,6 @@ self: { ]; description = "Demonstration game for Gore&Ash game engine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gore-and-ash-glfw" = callPackage @@ -125558,7 +118733,6 @@ self: { ]; description = "Core module for Gore&Ash engine for GLFW input events"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gore-and-ash-lambdacube" = callPackage @@ -125578,7 +118752,6 @@ self: { ]; description = "Core module for Gore&Ash engine that do something"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gore-and-ash-logging" = callPackage @@ -125597,7 +118770,6 @@ self: { ]; description = "Core module for gore-and-ash with logging utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gore-and-ash-network" = callPackage @@ -125619,7 +118791,6 @@ self: { ]; description = "Core module for Gore&Ash engine with low level network API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gore-and-ash-sdl" = callPackage @@ -125638,7 +118809,6 @@ self: { ]; description = "Gore&Ash core module for integration with SDL library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gore-and-ash-sync" = callPackage @@ -125658,7 +118828,6 @@ self: { ]; description = "Gore&Ash module for high level network synchronization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gothic" = callPackage @@ -125678,8 +118847,6 @@ self: { ]; description = "A Haskell Vault KVv2 secret engine client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gotta-go-fast" = callPackage @@ -125698,9 +118865,7 @@ self: { ]; description = "A command line utility for practicing typing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gotta-go-fast"; - broken = true; }) {}; "gotyno-hs" = callPackage @@ -125725,9 +118890,7 @@ self: { ]; description = "A type definition compiler supporting multiple output languages"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "gotyno-hs"; - broken = true; }) {}; "gpah" = callPackage @@ -125748,9 +118911,7 @@ self: { ]; description = "Generic Programming Use in Hackage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gpah"; - broken = true; }) {}; "gpcsets" = callPackage @@ -125813,9 +118974,7 @@ self: { tasty-quickcheck time transformers ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gpmf"; - broken = true; }) {}; "gpolyline" = callPackage @@ -125847,7 +119006,6 @@ self: { ]; description = "For manipulating GPS coordinates and trails"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gps2htmlReport" = callPackage @@ -125868,7 +119026,6 @@ self: { ]; description = "GPS to HTML Summary Report"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gps2htmlReport"; }) {}; @@ -125886,8 +119043,6 @@ self: { ]; description = "Read GPX files using conduits"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "grab" = callPackage @@ -125933,8 +119088,6 @@ self: { ]; description = "Library to write graceful shutdown / upgrade service"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "grafana" = callPackage @@ -125953,8 +119106,6 @@ self: { ]; description = "API for creating grafana dashboards represented as json"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "grafdhall" = callPackage @@ -125993,7 +119144,6 @@ self: { ]; description = "Monadic correlated log events"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "grakn" = callPackage @@ -126017,8 +119167,6 @@ self: { testToolDepends = [ markdown-unlit ]; description = "A Haskell client for Grakn"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "grammar-combinators" = callPackage @@ -126036,7 +119184,6 @@ self: { ]; description = "A parsing library of context-free grammar combinators"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "grammatical-parsers" = callPackage @@ -126071,8 +119218,6 @@ self: { ]; description = "parsers that combine into grammars"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "grapefruit-examples" = callPackage @@ -126089,7 +119234,6 @@ self: { ]; description = "Examples using the Grapefruit library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "grapefruit-frp" = callPackage @@ -126107,7 +119251,6 @@ self: { ]; description = "Functional Reactive Programming core"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "grapefruit-records" = callPackage @@ -126119,7 +119262,6 @@ self: { libraryHaskellDepends = [ arrows base grapefruit-frp ]; description = "A record system for Functional Reactive Programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "grapefruit-ui" = callPackage @@ -126138,7 +119280,6 @@ self: { ]; description = "Declarative user interface programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "grapefruit-ui-gtk" = callPackage @@ -126158,7 +119299,6 @@ self: { ]; description = "GTK+-based backend for declarative user interface programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "graph" = callPackage @@ -126229,8 +119369,6 @@ self: { libraryHaskellDepends = [ base containers fgl ]; description = "An implementation of algorithms for matchings in graphs"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "graph-rewriting" = callPackage @@ -126244,8 +119382,6 @@ self: { ]; description = "Monadic graph rewriting of hypergraphs with ports and multiedges"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "graph-rewriting-cl" = callPackage @@ -126265,7 +119401,6 @@ self: { ]; description = "Interactive graph rewriting system implementing various well-known combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cl"; }) {}; @@ -126283,7 +119418,6 @@ self: { ]; description = "OpenGL interface for interactive port graph rewriting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "graph-rewriting-lambdascope" = callPackage @@ -126305,7 +119439,6 @@ self: { ]; description = "Lambdascope, an optimal evaluator of the lambda calculus, as an interactive graph-rewriting system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lambdascope"; }) {}; @@ -126322,7 +119455,6 @@ self: { ]; description = "Force-directed node placement intended for incremental graph drawing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "graph-rewriting-ski" = callPackage @@ -126342,7 +119474,6 @@ self: { ]; description = "Two evalutors of the SKI combinator calculus as interactive graph rewrite systems"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "graph-rewriting-strategies" = callPackage @@ -126358,7 +119489,6 @@ self: { ]; description = "Evaluation strategies for port-graph rewriting systems"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "graph-rewriting-trs" = callPackage @@ -126380,7 +119510,6 @@ self: { ]; description = "Evaluate first-order applicative term rewrite systems interactively using graph reduction"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "trs"; }) {}; @@ -126402,7 +119531,6 @@ self: { ]; description = "Evaluator of the lambda-calculus in an interactive graph rewriting system with explicit sharing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ww"; }) {}; @@ -126415,8 +119543,6 @@ self: { libraryHaskellDepends = [ array base bytestring containers ]; description = "Serialization of data structures with references"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "graph-trace" = callPackage @@ -126488,8 +119614,6 @@ self: { ]; description = "A simple wrapper & quasi quoter for fgl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "graph-visit" = callPackage @@ -126505,7 +119629,6 @@ self: { ]; description = "Graph walk abstraction"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "graph-wrapper" = callPackage @@ -126539,8 +119662,6 @@ self: { ]; description = "A declarative, monadic graph construction language for small graphs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "graphene" = callPackage @@ -126557,8 +119678,6 @@ self: { ]; description = "A minimal Graph Theory library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "graphics-drawingcombinators" = callPackage @@ -126576,8 +119695,6 @@ self: { ]; description = "A functional interface to 2D drawing in OpenGL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "graphics-formats-collada" = callPackage @@ -126593,8 +119710,6 @@ self: { ]; description = "Load 3D geometry in the COLLADA format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "graphicsFormats" = callPackage @@ -126606,7 +119721,6 @@ self: { libraryHaskellDepends = [ base haskell98 OpenGL QuickCheck ]; description = "Classes for renderable objects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "graphicstools" = callPackage @@ -126625,7 +119739,6 @@ self: { executableHaskellDepends = [ base CV wx wxcore ]; description = "Tools for creating graphical UIs, based on wxHaskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cvexample"; }) {}; @@ -126685,9 +119798,7 @@ self: { executableHaskellDepends = [ base ]; description = "A reimplementation of graphmod as a source plugin"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "graphmod-plugin"; - broken = true; }) {}; "graphql" = callPackage @@ -126740,8 +119851,6 @@ self: { ]; description = "GraphQL API"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "graphql-client" = callPackage @@ -126793,8 +119902,6 @@ self: { ]; description = "GraphQL with batteries"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "graphql-utils" = callPackage @@ -126810,8 +119917,6 @@ self: { ]; description = "GraphQL Utils"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "graphql-w-persistent" = callPackage @@ -126823,8 +119928,6 @@ self: { libraryHaskellDepends = [ base containers json text ]; description = "GraphQL interface middleware for SQL databases"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "graphs" = callPackage @@ -126851,8 +119954,6 @@ self: { libraryHaskellDepends = [ base indexed ]; description = "Graph indexed monads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "graphtype" = callPackage @@ -126870,7 +119971,6 @@ self: { ]; description = "A simple tool to illustrate dependencies between Haskell types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "graphtype"; }) {}; @@ -126925,8 +120025,6 @@ self: { testToolDepends = [ markdown-unlit ]; description = "A declarative library for describing dependencies between data"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "graphviz" = callPackage @@ -126972,8 +120070,6 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Execute Graql queries on a Grakn graph"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "grasp" = callPackage @@ -126998,9 +120094,7 @@ self: { testHaskellDepends = [ base ]; description = "GRASP implementation for the AMMM project"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "grasp-exe"; - broken = true; }) {}; "gravatar" = callPackage @@ -127029,8 +120123,6 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Gray code encoder/decoder"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gray-extended" = callPackage @@ -127068,8 +120160,6 @@ self: { ]; description = "Support for graylog output"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "greencard" = callPackage @@ -127084,9 +120174,7 @@ self: { executableHaskellDepends = [ array base containers pretty ]; description = "GreenCard, a foreign function pre-processor for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "greencard"; - broken = true; }) {}; "greencard-lib" = callPackage @@ -127099,7 +120187,6 @@ self: { libraryHaskellDepends = [ array base containers greencard pretty ]; description = "A foreign function interface pre-processor library for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "greenclip" = callPackage @@ -127139,8 +120226,6 @@ self: { ]; description = "A scalable distributed logger with a high-precision global time axis"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gremlin-haskell" = callPackage @@ -127164,9 +120249,7 @@ self: { testHaskellDepends = [ aeson-qq base hspec lens lens-aeson mtl ]; description = "Graph database client for TinkerPop3 Gremlin Server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gremlin-haskell-examples"; - broken = true; }) {}; "grenade" = callPackage @@ -127190,7 +120273,6 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion hmatrix ]; description = "Practical Deep Learning in Haskell"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "greplicate" = callPackage @@ -127207,8 +120289,6 @@ self: { ]; description = "Generalised replicate functions"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "greskell" = callPackage @@ -127231,7 +120311,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell binding for Gremlin graph query language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "greskell-core" = callPackage @@ -127254,8 +120333,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell binding for Gremlin graph query language - core data types and tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "greskell-websocket" = callPackage @@ -127279,7 +120356,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell client for Gremlin Server using WebSocket serializer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "grid" = callPackage @@ -127316,8 +120392,6 @@ self: { description = "Game engine for Prototyping on a Grid"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gridbounds" = callPackage @@ -127330,7 +120404,6 @@ self: { testHaskellDepends = [ base earclipper gjk gridbox hspec ]; description = "Collision detection for GridBox"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "gridbox" = callPackage @@ -127360,8 +120433,6 @@ self: { ]; description = "GridFS (MongoDB file storage) implementation"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gridland" = callPackage @@ -127380,7 +120451,6 @@ self: { ]; description = "Grid-based multimedia engine"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "grids" = callPackage @@ -127403,8 +120473,6 @@ self: { vector ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gridtables" = callPackage @@ -127450,7 +120518,6 @@ self: { ]; description = "Symbolic evaluation as a library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "grisette-monad-coroutine" = callPackage @@ -127470,7 +120537,6 @@ self: { ]; description = "Support for monad-coroutine package with Grisette"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "grm" = callPackage @@ -127492,9 +120558,7 @@ self: { executableToolDepends = [ happy ]; description = "grm grammar converter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "grm"; - broken = true; }) {}; "groom" = callPackage @@ -127559,7 +120623,6 @@ self: { ]; description = "Command line utility to manage AWS ECS resources"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "groot"; }) {}; @@ -127575,7 +120638,6 @@ self: { executableHaskellDepends = [ base lens mtl ncurses ]; description = "A spoof on gloss for terminal animation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -127596,8 +120658,6 @@ self: { ]; description = "Type-safe datatype-database mapping library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "groundhog-converters" = callPackage @@ -127616,7 +120676,6 @@ self: { ]; description = "Extended Converter Library for groundhog embedded types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "groundhog-inspector" = callPackage @@ -127640,7 +120699,6 @@ self: { ]; description = "Type-safe datatype-database mapping library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "groundhog_inspector"; }) {}; @@ -127659,7 +120717,6 @@ self: { ]; description = "MySQL backend for the groundhog library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "groundhog-postgresql" = callPackage @@ -127678,7 +120735,6 @@ self: { ]; description = "PostgreSQL backend for the groundhog library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "groundhog-sqlite" = callPackage @@ -127696,7 +120752,6 @@ self: { ]; description = "Sqlite3 backend for the groundhog library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "groundhog-th" = callPackage @@ -127715,7 +120770,6 @@ self: { ]; description = "Type-safe datatype-database mapping library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "group-by-date" = callPackage @@ -127749,8 +120803,6 @@ self: { libraryHaskellDepends = [ base containers groups ]; description = "The theory of groups"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "group-with" = callPackage @@ -127767,8 +120819,6 @@ self: { ]; description = "Classify objects by key-generating function, like SQL GROUP BY"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "groupBy" = callPackage @@ -127801,8 +120851,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Grouped lists. Equal consecutive elements are grouped."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "groupoid" = callPackage @@ -127848,8 +120896,6 @@ self: { libraryHaskellDepends = [ base groups ]; description = "Generically derive Group instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "grow-vector" = callPackage @@ -127871,8 +120917,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Mutable vector with efficient appends"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "growable-vector" = callPackage @@ -127912,8 +120956,6 @@ self: { ]; description = "A revised version of the scotty library that attempts to be simpler and more performant"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "grpc-api-etcd" = callPackage @@ -127925,8 +120967,6 @@ self: { libraryHaskellDepends = [ base proto-lens proto-lens-runtime ]; description = "Generated messages and instances for etcd gRPC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "grpc-etcd-client" = callPackage @@ -127943,7 +120983,6 @@ self: { ]; description = "gRPC client for etcd"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "grpc-haskell" = callPackage @@ -127974,7 +121013,6 @@ self: { ]; description = "Haskell implementation of gRPC layered on shared C library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "grpc-haskell-core" = callPackage @@ -128000,7 +121038,6 @@ self: { ]; description = "Haskell implementation of gRPC layered on shared C library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {gpr = null; inherit (pkgs) grpc;}; "gruff" = callPackage @@ -128022,7 +121059,6 @@ self: { ]; description = "fractal explorer GUI using the ruff library"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "gruff"; }) {}; @@ -128042,7 +121078,6 @@ self: { ]; description = "Mandelbrot Set examples using ruff and gruff"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "gsasl" = callPackage @@ -128071,7 +121106,6 @@ self: { libraryHaskellDepends = [ base hierarchical-clustering ]; description = "Generic implementation of Gerstein/Sonnhammer/Chothia weighting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gscholar-rss" = callPackage @@ -128089,7 +121123,6 @@ self: { ]; description = "scrapes google scholar, provides RSS feed"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "gscholar-rss"; }) {}; @@ -128103,8 +121136,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Bindings the the GSL random number generation facilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gsl-random-fu" = callPackage @@ -128116,7 +121147,6 @@ self: { libraryHaskellDepends = [ base gsl-random random-fu ]; description = "Instances for using gsl-random with random-fu"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "gsmenu" = callPackage @@ -128134,7 +121164,6 @@ self: { ]; description = "A visual generic menu"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gsmenu"; }) {}; @@ -128182,7 +121211,6 @@ self: { ]; description = "Generic implementation of Storable"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gstreamer" = callPackage @@ -128202,8 +121230,6 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the GStreamer open source multimedia framework"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {gst-plugins-base = null; gstreamer = null;}; "gt-tools" = callPackage @@ -128238,7 +121264,6 @@ self: { ]; description = "The General Transit Feed Specification format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gtfs-realtime" = callPackage @@ -128254,7 +121279,6 @@ self: { ]; description = "GTFS RealTime protobafs library (autogenerated from .proto file)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "gtk" = callPackage @@ -128288,8 +121312,6 @@ self: { ]; description = "A collection of auxiliary operations and widgets related to Gtk+"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gtk-jsinput" = callPackage @@ -128351,7 +121373,6 @@ self: { libraryPkgconfigDepends = [ gtk2 ]; description = "GTK+ Serialized event"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gtk2;}; "gtk-simple-list-view" = callPackage @@ -128432,8 +121453,6 @@ self: { libraryHaskellDepends = [ base containers gtk ]; description = "Convenient Gtk canvas with mouse and keyboard input"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gtk-traymanager" = callPackage @@ -128482,7 +121501,6 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: glade package"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gtk2hs-cast-glib" = callPackage @@ -128509,7 +121527,6 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gnomevfs package"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gtk2hs-cast-gtk" = callPackage @@ -128525,7 +121542,6 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtk package"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gtk2hs-cast-gtkglext" = callPackage @@ -128541,7 +121557,6 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtkglext package"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gtk2hs-cast-gtksourceview2" = callPackage @@ -128558,7 +121573,6 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtksourceview2 package"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "gtk2hs-cast-th" = callPackage @@ -128570,8 +121584,6 @@ self: { libraryHaskellDepends = [ base hint template-haskell ]; description = "A type class for cast functions of Gtk2hs: TH package"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gtk2hs-hello" = callPackage @@ -128585,9 +121597,7 @@ self: { executableHaskellDepends = [ base glib gtk3 transformers ]; description = "Gtk2Hs Hello World, an example package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "gtk2hs-hello"; - broken = true; }) {}; "gtk2hs-rpn" = callPackage @@ -128599,8 +121609,6 @@ self: { libraryHaskellDepends = [ base cairo glib gtk mtl ]; description = "Adds a module to gtk2hs allowing layouts to be defined using reverse polish notation"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gtk3" = callPackage @@ -128636,8 +121644,6 @@ self: { ]; description = "A collection of auxiliary operations and widgets related to Gtk"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "gtk3-mac-integration" = callPackage @@ -128673,8 +121679,6 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the GTK+ OpenGL Extension"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) gtk2; inherit (pkgs.gnome2) gtkglext; inherit (pkgs) libGLU; inherit (pkgs.xorg) libICE; inherit (pkgs.xorg) libSM; inherit (pkgs.xorg) libXmu; @@ -128696,7 +121700,6 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the GtkImageView library"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gtkimageview;}; "gtkrsync" = callPackage @@ -128715,7 +121718,6 @@ self: { ]; description = "Gnome rsync progress display"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "gtksourceview2" = callPackage @@ -128735,8 +121737,6 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the GtkSourceView library"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) gtksourceview;}; "gtksourceview3" = callPackage @@ -128756,8 +121756,6 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the GtkSourceView library"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) gtksourceview3;}; "guarded-allocation" = callPackage @@ -128781,7 +121779,6 @@ self: { libraryHaskellDepends = [ base instant-generics ]; description = "Datatype-generic rewriting with preconditions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "guardian" = callPackage @@ -128814,9 +121811,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "The border guardian for your package dependencies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "guardian"; - broken = true; }) {}; "guess-combinator" = callPackage @@ -128828,8 +121823,6 @@ self: { libraryHaskellDepends = [ base HList ]; description = "Generate simple combinators given their type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "guid" = callPackage @@ -128856,9 +121849,7 @@ self: { executableHaskellDepends = [ base cairo containers filepath gtk ]; description = "graphical untyped lambda calculus interactive interpreter"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "gulcii"; - broken = true; }) {}; "gutenberg-fibonaccis" = callPackage @@ -128902,9 +121893,7 @@ self: { executableHaskellDepends = [ base unix ]; description = "ghcWithPackages cmdline util"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gw"; - broken = true; }) {}; "gyah-bin" = callPackage @@ -128918,9 +121907,7 @@ self: { executableHaskellDepends = [ base extra GiveYouAHead ]; description = "A binary version of GiveYouAHead"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "gyah"; - broken = true; }) {}; "gym-http-api" = callPackage @@ -128942,9 +121929,7 @@ self: { ]; description = "REST client to the gym-http-api project"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "h-booru" = callPackage @@ -128968,9 +121953,7 @@ self: { ]; description = "Haskell library for retrieving data from various booru image sites"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "h-booru"; - broken = true; }) {}; "h-gpgme" = callPackage @@ -128994,8 +121977,6 @@ self: { ]; description = "High Level Binding for GnuPG Made Easy (gpgme)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "h-raylib" = callPackage @@ -129041,9 +122022,7 @@ self: { ]; description = "Reversi game in haskell/blank-canvas"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "h-reversi"; - broken = true; }) {}; "h2048" = callPackage @@ -129070,8 +122049,6 @@ self: { ]; description = "An Implementation of Game 2048"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "h2c" = callPackage @@ -129083,8 +122060,6 @@ self: { libraryHaskellDepends = [ base bytestring mtl resourcet ]; description = "Bindings to Linux I2C with support for repeated-start transactions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hArduino" = callPackage @@ -129102,7 +122077,6 @@ self: { ]; description = "Control your Arduino board from Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hBDD" = callPackage @@ -129129,8 +122103,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "An FFI binding to CMU/Long's BDD library"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {bdd = null; mem = null;}; "hBDD-CUDD" = callPackage @@ -129146,8 +122118,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "An FFI binding to the CUDD library"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) cudd; epd = null; inherit (pkgs) mtr; inherit (pkgs) st; util = null;}; @@ -129180,8 +122150,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "interface to CSound API"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {csound64 = null; inherit (pkgs) libsndfile;}; "hDFA" = callPackage @@ -129193,8 +122161,6 @@ self: { libraryHaskellDepends = [ base containers directory process ]; description = "A simple library for representing and minimising DFAs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hF2" = callPackage @@ -129207,8 +122173,6 @@ self: { libraryHaskellDepends = [ base cereal vector ]; description = "F(2^e) math for cryptography"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hGelf" = callPackage @@ -129225,8 +122189,6 @@ self: { ]; description = "Haskell GELF library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hLLVM" = callPackage @@ -129270,8 +122232,6 @@ self: { ]; description = "Library to interact with the @Mollom anti-spam service"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hOff-display" = callPackage @@ -129286,7 +122246,6 @@ self: { executableHaskellDepends = [ base GLFW hOff-parser OpenGL parsec ]; description = "The tool to transform the OFF to other image format"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hOff-display-gl"; }) {}; @@ -129345,7 +122304,6 @@ self: { ]; description = "native Haskell implementation of OpenPGP (RFC4880)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hPDB" = callPackage @@ -129365,7 +122323,6 @@ self: { ]; description = "Protein Databank file format library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hPDB-examples" = callPackage @@ -129392,7 +122349,6 @@ self: { ]; description = "Examples for hPDB library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hPushover" = callPackage @@ -129408,8 +122364,6 @@ self: { ]; description = "Pushover.net API functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hR" = callPackage @@ -129421,8 +122375,6 @@ self: { libraryHaskellDepends = [ array base containers unix ]; description = "R bindings and interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hRESP" = callPackage @@ -129434,8 +122386,6 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring ]; description = "haskell implementation of RESP (REdis Serialization Protocol)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hS3" = callPackage @@ -129472,8 +122422,6 @@ self: { ]; description = "A Haskell library to scrape and crawl web-pages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hSimpleDB" = callPackage @@ -129490,8 +122438,6 @@ self: { ]; description = "Interface to Amazon's SimpleDB service"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hTalos" = callPackage @@ -129505,8 +122451,6 @@ self: { testHaskellDepends = [ base ]; description = "Parser, print and manipulate structures in PDB file format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hTensor" = callPackage @@ -129518,8 +122462,6 @@ self: { libraryHaskellDepends = [ base containers hmatrix random ]; description = "Multidimensional arrays and simple tensor computations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hVOIDP" = callPackage @@ -129535,9 +122477,7 @@ self: { executableSystemDepends = [ blas liblapack ]; description = "Optimal variable selection in chain graphical model"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hVOIDP"; - broken = true; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hXmixer" = callPackage @@ -129572,8 +122512,6 @@ self: { ]; description = "Haar wavelet transforms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "habit" = callPackage @@ -129598,7 +122536,6 @@ self: { executableHaskellDepends = [ base text ]; description = "Haskell message bot framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hello-bot"; }) {}; @@ -129635,7 +122572,6 @@ self: { ]; description = "A minimalist static blog generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hablo"; }) {}; @@ -129659,7 +122595,6 @@ self: { executableHaskellDepends = [ base optparse-applicative text ]; description = "A blog system"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hablog"; }) {}; @@ -129703,7 +122638,6 @@ self: { ]; description = "Hack contrib"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hack-contrib-press" = callPackage @@ -129720,7 +122654,6 @@ self: { ]; description = "Hack helper that renders Press templates"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hack-frontend-happstack" = callPackage @@ -129738,8 +122671,6 @@ self: { ]; description = "hack-frontend-happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hack-frontend-monadcgi" = callPackage @@ -129751,7 +122682,6 @@ self: { libraryHaskellDepends = [ base bytestring cgi containers hack ]; description = "Allows programs written against MonadCGI to run with any hack handler. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hack-handler-cgi" = callPackage @@ -129763,8 +122693,6 @@ self: { libraryHaskellDepends = [ base bytestring hack ]; description = "Hack handler using CGI protocol. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hack-handler-epoll" = callPackage @@ -129783,7 +122711,6 @@ self: { ]; description = "hack handler implementation using epoll"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hack-handler-evhttp" = callPackage @@ -129802,7 +122729,6 @@ self: { librarySystemDepends = [ event ]; description = "Hack EvHTTP (libevent) Handler"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {event = null;}; "hack-handler-fastcgi" = callPackage @@ -129815,7 +122741,6 @@ self: { librarySystemDepends = [ fcgi ]; description = "Hack handler direct to fastcgi (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) fcgi;}; "hack-handler-happstack" = callPackage @@ -129833,7 +122758,6 @@ self: { ]; description = "Hack Happstack server handler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hack-handler-hyena" = callPackage @@ -129850,7 +122774,6 @@ self: { ]; description = "Hyena hack handler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hack-handler-kibro" = callPackage @@ -129865,7 +122788,6 @@ self: { ]; description = "Hack Kibro handler"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hack-handler-simpleserver" = callPackage @@ -129881,7 +122803,6 @@ self: { ]; description = "A simplistic HTTP server handler for Hack. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hack-middleware-cleanpath" = callPackage @@ -129895,7 +122816,6 @@ self: { ]; description = "Applies some basic redirect rules to get cleaner paths. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hack-middleware-clientsession" = callPackage @@ -129911,7 +122831,6 @@ self: { ]; description = "Middleware for easily keeping session data in client cookies. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hack-middleware-gzip" = callPackage @@ -129938,7 +122857,6 @@ self: { ]; description = "Automatic wrapping of JSON responses to convert into JSONP. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hack2" = callPackage @@ -129966,8 +122884,6 @@ self: { ]; description = "Hack2 contrib"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hack2-contrib-extra" = callPackage @@ -129986,7 +122902,6 @@ self: { ]; description = "Hack2 contrib extra"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hack2-handler-happstack-server" = callPackage @@ -130004,7 +122919,6 @@ self: { ]; description = "Hack2 Happstack server handler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hack2-handler-mongrel2-http" = callPackage @@ -130025,7 +122939,6 @@ self: { ]; description = "Hack2 Mongrel2 HTTP handler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hack2-handler-snap-server" = callPackage @@ -130044,7 +122957,6 @@ self: { ]; description = "Hack2 Snap server handler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hack2-handler-warp" = callPackage @@ -130061,8 +122973,6 @@ self: { ]; description = "Hack2 warp handler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hack2-interface-wai" = callPackage @@ -130097,8 +123007,6 @@ self: { testHaskellDepends = [ base http-client-tls servant-client ]; description = "An API binding to Hackage API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hackage-cli" = callPackage @@ -130173,9 +123081,7 @@ self: { ]; description = "Compare the public API of different versions of a Hackage library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hackage-diff"; - broken = true; }) {}; "hackage-mirror" = callPackage @@ -130205,9 +123111,7 @@ self: { ]; description = "Simple mirroring utility for Hackage"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hackage-mirror"; - broken = true; }) {}; "hackage-plot" = callPackage @@ -130240,9 +123144,7 @@ self: { executableHaskellDepends = [ base Cabal containers hackage-db ]; description = "Process 00-index.tar.gz from Hackage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hackage-find-contribution"; - broken = true; }) {}; "hackage-proxy" = callPackage @@ -130266,9 +123168,7 @@ self: { ]; description = "Provide a proxy for Hackage which modifies responses in some way. (deprecated)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hackage-proxy"; - broken = true; }) {}; "hackage-repo-tool" = callPackage @@ -130377,8 +123277,6 @@ self: { ]; description = "The Hackage web server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libxcrypt;}; "hackage-sparks" = callPackage @@ -130416,9 +123314,7 @@ self: { ]; description = "Check for differences between working directory and hackage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hackage-whatsnew"; - broken = true; }) {}; "hackage2hwn" = callPackage @@ -130432,9 +123328,7 @@ self: { executableHaskellDepends = [ base download feed tagsoup ]; description = "Convert Hackage RSS feeds to wiki format for publishing on Haskell.org"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hackage2hwn"; - broken = true; }) {}; "hackage2twitter" = callPackage @@ -130448,7 +123342,6 @@ self: { executableHaskellDepends = [ base feed feed2twitter ]; description = "Send new Hackage releases to Twitter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hackage2twitter"; }) {}; @@ -130469,9 +123362,7 @@ self: { ]; description = "Hackage testing tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hackager"; - broken = true; }) {}; "hackernews" = callPackage @@ -130496,9 +123387,7 @@ self: { ]; description = "API for Hacker News"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hackernews-example"; - broken = true; }) {}; "hackertyper" = callPackage @@ -130536,7 +123425,6 @@ self: { executableHaskellDepends = [ base optparse-applicative text ]; description = "Generate useful files for Haskell projects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hackmanager"; }) {}; @@ -130582,9 +123470,7 @@ self: { doHaddock = false; description = "Hackage and Portage integration tool"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "hackport"; - broken = true; }) {}; "hactor" = callPackage @@ -130601,8 +123487,6 @@ self: { ]; description = "Lightweight Erlang-style actors for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hactors" = callPackage @@ -130614,8 +123498,6 @@ self: { libraryHaskellDepends = [ base stm ]; description = "Practical actors for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haddock_2_23_1" = callPackage @@ -130650,7 +123532,6 @@ self: { preCheck = "unset GHC_PACKAGE_PATH"; description = "A documentation-generation tool for Haskell libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haddock"; }) {}; @@ -130677,7 +123558,6 @@ self: { description = "A documentation-generation tool for Haskell libraries"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haddock-api" = callPackage @@ -130704,8 +123584,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A documentation-generation tool for Haskell libraries"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haddock-cheatsheet" = callPackage @@ -130735,9 +123613,7 @@ self: { ]; description = "A documentation-generation tool for Haskell libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haddock"; - broken = true; }) {}; "haddock-library_1_7_0" = callPackage @@ -130795,8 +123671,6 @@ self: { ]; description = "Test utilities for Haddock"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haddocset" = callPackage @@ -130818,7 +123692,6 @@ self: { ]; description = "Generate docset of Dash by Haddock haskell documentation tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haddocset"; }) {}; @@ -130856,7 +123729,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Dockerfile Linter JavaScript API"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hadolint"; }) {}; @@ -130875,8 +123747,6 @@ self: { testHaskellDepends = [ base bytestring filepath text vector ]; description = "Read/write file formats commonly used by Hadoop"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) snappy;}; "hadoop-rpc" = callPackage @@ -130897,8 +123767,6 @@ self: { testHaskellDepends = [ base protobuf tasty tasty-hunit vector ]; description = "Use the Hadoop RPC interface from Haskell"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hadoop-streaming" = callPackage @@ -130914,8 +123782,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A simple Hadoop streaming library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hadoop-tools" = callPackage @@ -130942,7 +123808,6 @@ self: { ]; description = "Fast command line tools for working with Hadoop"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "hh"; }) {}; @@ -130975,8 +123840,6 @@ self: { testHaskellDepends = [ base intervals mtl QuickCheck ]; description = "Affine arithmetic library for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haggis" = callPackage @@ -131003,7 +123866,6 @@ self: { ]; description = "A static site generator with blogging/comments support"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "haggis"; }) {}; @@ -131027,8 +123889,6 @@ self: { ]; description = "A graph library offering mutable, immutable, and inductive graphs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haha" = callPackage @@ -131061,9 +123921,7 @@ self: { executableHaskellDepends = [ base time ]; description = "Analytic Hierarchy Process"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hahp-example"; - broken = true; }) {}; "haiji" = callPackage @@ -131086,8 +123944,6 @@ self: { ]; description = "A typed template engine, subset of jinja2"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hail" = callPackage @@ -131108,9 +123964,7 @@ self: { ]; description = "A service for pull-based continuous deployment based on hydra"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "hail"; - broken = true; }) {}; "hailgun" = callPackage @@ -131129,8 +123983,6 @@ self: { ]; description = "Mailgun REST api interface for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hailgun-send" = callPackage @@ -131146,7 +123998,6 @@ self: { ]; description = "A program to send emails throught the Mailgun api"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hailgun-send"; }) {}; @@ -131163,7 +124014,6 @@ self: { ]; description = "Easy-to-use wrapper for the hailgun package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hails" = callPackage @@ -131226,7 +124076,6 @@ self: { ]; description = "Dynamic launcher of Hails applications"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hails"; }) {}; @@ -131256,9 +124105,7 @@ self: { ]; description = "A JSON REST API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hairy"; - broken = true; }) {}; "hakaru" = callPackage @@ -131288,8 +124135,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ghc-prim ]; description = "A probabilistic programming embedded DSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hake" = callPackage @@ -131318,8 +124163,6 @@ self: { libraryHaskellDepends = [ base HTTP network ]; description = "Akismet spam protection library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hakka" = callPackage @@ -131334,9 +124177,7 @@ self: { executableHaskellDepends = [ base ]; description = "Minimal akka-inspired actor library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hakka-example"; - broken = true; }) {}; "hako" = callPackage @@ -131353,8 +124194,6 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "A mako-like quasi-quoter template library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hakyll" = callPackage @@ -131411,8 +124250,6 @@ self: { ]; description = "A package allowing to write Hakyll blog posts in Rmd"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hakyll-agda" = callPackage @@ -131429,8 +124266,6 @@ self: { ]; description = "Wrapper to integrate literate Agda files with Hakyll"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hakyll-alectryon" = callPackage @@ -131458,8 +124293,6 @@ self: { libraryHaskellDepends = [ base blaze-html blaze-markup hakyll ]; description = "Blaze templates for Hakyll"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hakyll-contrib" = callPackage @@ -131475,9 +124308,7 @@ self: { executableHaskellDepends = [ base directory filepath hakyll ]; description = "Extra modules for the hakyll website compiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hakyll-contrib"; - broken = true; }) {}; "hakyll-contrib-csv" = callPackage @@ -131494,8 +124325,6 @@ self: { testHaskellDepends = [ base blaze-html bytestring cassava hspec ]; description = "Generate Html tables from Csv files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hakyll-contrib-elm" = callPackage @@ -131514,9 +124343,7 @@ self: { executableHaskellDepends = [ base hakyll ]; description = "Compile Elm code for inclusion in Hakyll static site"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hakyll-contrib-elm-example"; - broken = true; }) {}; "hakyll-contrib-hyphenation" = callPackage @@ -131552,9 +124379,7 @@ self: { ]; description = "A Hakyll library for internationalization"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "haki18nll"; - broken = true; }) {}; "hakyll-contrib-links" = callPackage @@ -131574,8 +124399,6 @@ self: { ]; description = "A hakyll library that helps maintain a separate links database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hakyll-convert" = callPackage @@ -131606,9 +124429,7 @@ self: { ]; description = "Convert from other blog engines to Hakyll"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hakyll-convert"; - broken = true; }) {}; "hakyll-dhall" = callPackage @@ -131629,9 +124450,7 @@ self: { executableHaskellDepends = [ base dhall hakyll ]; description = "Dhall compiler for Hakyll"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hakyll-dhall-test-app"; - broken = true; }) {}; "hakyll-dir-list" = callPackage @@ -131646,8 +124465,6 @@ self: { ]; description = "Allow Hakyll to create hierarchical menues from directories"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hakyll-elm" = callPackage @@ -131662,7 +124479,6 @@ self: { ]; description = "Hakyll wrapper for the Elm compiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hakyll-favicon" = callPackage @@ -131724,7 +124540,6 @@ self: { libraryHaskellDepends = [ base hakyll ogmarkup ]; description = "Integrate ogmarkup document with Hakyll"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hakyll-process" = callPackage @@ -131762,8 +124577,6 @@ self: { libraryHaskellDepends = [ base containers hakyll ]; description = "Adds series functionality to hakyll"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hakyll-shakespeare" = callPackage @@ -131802,8 +124615,6 @@ self: { ]; description = "A shortcode extension module for Hakyll"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hakyll-shortcut-links" = callPackage @@ -131820,7 +124631,6 @@ self: { testHaskellDepends = [ base hspec mtl pandoc text ]; description = "Use shortcut-links in markdown file for Hakyll"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "hakyll-typescript" = callPackage @@ -131837,8 +124647,6 @@ self: { testHaskellDepends = [ base directory hakyll tasty tasty-hunit ]; description = "Typescript and javascript hakyll compilers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hal" = callPackage @@ -131866,8 +124674,6 @@ self: { ]; description = "A runtime environment for Haskell applications running on AWS Lambda"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "halberd" = callPackage @@ -131896,7 +124702,6 @@ self: { ]; description = "A tool to generate missing import statements for Haskell modules"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "halberd"; }) {}; @@ -131930,8 +124735,6 @@ self: { ]; description = "Additive monoids generalising vector spaces"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "halfs" = callPackage @@ -131955,8 +124758,6 @@ self: { ]; description = "The HAskelL File System (\"halfs\" -- intended for use on the HaLVM)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "halfsplit" = callPackage @@ -131982,7 +124783,6 @@ self: { description = "Integration between Halide and JuicyPixels"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; }) {}; "halide-arrayfire" = callPackage @@ -131995,7 +124795,6 @@ self: { testHaskellDepends = [ arrayfire base halide-haskell hspec ]; description = "Integration between Halide and ArrayFire"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "halide-haskell" = callPackage @@ -132021,8 +124820,6 @@ self: { description = "Haskell bindings to Halide"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; - broken = true; }) {Halide = null;}; "halipeto" = callPackage @@ -132036,8 +124833,6 @@ self: { libraryHaskellDepends = [ base directory HaXml pandoc ]; description = "Haskell Static Web Page Generator"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "halive" = callPackage @@ -132067,9 +124862,7 @@ self: { ]; description = "A live recompiler"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "halive"; - broken = true; }) {}; "hall-symbols" = callPackage @@ -132086,7 +124879,6 @@ self: { ]; description = "Symmetry operations generater of Hall Symbols"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "halma" = callPackage @@ -132107,8 +124899,6 @@ self: { ]; description = "Library implementing Halma rules"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "halma-gui" = callPackage @@ -132127,7 +124917,6 @@ self: { ]; description = "GTK application for playing Halma"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "halma-gui"; }) {}; @@ -132153,7 +124942,6 @@ self: { ]; description = "Telegram bot for playing Halma"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "halma-telegram-bot"; }) {}; @@ -132183,8 +124971,6 @@ self: { testHaskellDepends = [ base hedgehog lens ]; description = "Split or combine data structures to and from halves, quarters, eighths"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "halvm-web" = callPackage @@ -132232,9 +125018,7 @@ self: { ]; testHaskellDepends = [ base bytestring ]; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hamlog"; - broken = true; }) {}; "hamid" = callPackage @@ -132271,7 +125055,6 @@ self: { ]; description = "Physics on generalized coordinate systems using Hamiltonian Mechanics and AD"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hamilton-examples"; }) {}; @@ -132303,9 +125086,7 @@ self: { ]; description = "Haskell macro preprocessor"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "hampp"; - broken = true; }) {}; "hamsql" = callPackage @@ -132329,9 +125110,7 @@ self: { testHaskellDepends = [ base ]; description = "Interpreter for SQL-structure definitions in YAML (YamSql)"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hamsql"; - broken = true; }) {}; "hamtmap" = callPackage @@ -132345,8 +125124,6 @@ self: { libraryHaskellDepends = [ array base deepseq hashable ]; description = "A purely functional and persistent hash map"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hamtsolo" = callPackage @@ -132388,7 +125165,6 @@ self: { executableHaskellDepends = [ filepath ]; description = "Library to handle abstract music"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "han2zen" = callPackage @@ -132414,8 +125190,6 @@ self: { libraryHaskellDepends = [ array base containers random tf-random ]; description = "Hanabi card game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "handa-data" = callPackage @@ -132456,9 +125230,7 @@ self: { ]; description = "Library and command-line utility for accessing Google services and APIs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hgdata"; - broken = true; }) {}; "handa-geodata" = callPackage @@ -132505,8 +125277,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "HandleLike class"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "handsy" = callPackage @@ -132527,8 +125297,6 @@ self: { ]; description = "A DSL to describe common shell operations and interpeters for running them locally and remotely"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "handwriting" = callPackage @@ -132589,9 +125357,7 @@ self: { ]; description = "Simple Continuous Integration/Deployment System"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hannahci"; - broken = true; }) {}; "hans" = callPackage @@ -132615,8 +125381,6 @@ self: { ]; description = "Network Stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hans-pcap" = callPackage @@ -132628,7 +125392,6 @@ self: { libraryHaskellDepends = [ base bytestring hans pcap ]; description = "Driver for real ethernet devices for HaNS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hans-pfq" = callPackage @@ -132673,9 +125436,7 @@ self: { ]; description = "Korean spell checker"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hanspell"; - broken = true; }) {}; "haphviz" = callPackage @@ -132694,8 +125455,6 @@ self: { ]; description = "Graphviz code generation with Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hapistrano" = callPackage @@ -132724,9 +125483,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "A deployment library for Haskell applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hap"; - broken = true; }) {}; "happindicator" = callPackage @@ -132745,8 +125502,6 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the appindicator library"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libappindicator-gtk2;}; "happindicator3" = callPackage @@ -132761,8 +125516,6 @@ self: { libraryPkgconfigDepends = [ libappindicator-gtk3 ]; description = "Binding to the appindicator library"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libappindicator-gtk3;}; "happlets" = callPackage @@ -132780,8 +125533,6 @@ self: { ]; description = "\"Haskell Applets\" provides an event handler and a canvas for building simple GUI apps"; license = "AGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "happlets-lib-gtk" = callPackage @@ -132803,7 +125554,6 @@ self: { ]; description = "The \"Haskell Applets\" Gtk+ ver. 2 back-end for \"happlets\"."; license = "AGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "happraise" = callPackage @@ -132817,9 +125567,7 @@ self: { executableHaskellDepends = [ base directory filepath ]; description = "A small program for counting the comments in haskell source"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "happraise"; - broken = true; }) {}; "happs-hsp" = callPackage @@ -132833,7 +125581,6 @@ self: { base bytestring HAppS-Server hsp mtl plugins ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happs-hsp-template" = callPackage @@ -132850,7 +125597,6 @@ self: { ]; description = "Utilities for using HSP templates in HAppS applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happs-tutorial" = callPackage @@ -132875,7 +125621,6 @@ self: { ]; description = "A Happstack Tutorial that is its own web 2.0-type demo."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "happs-tutorial"; }) {}; @@ -132891,8 +125636,6 @@ self: { doHaddock = false; description = "The haskell application server stack + code generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "happstack-auth" = callPackage @@ -132911,7 +125654,6 @@ self: { ]; description = "A Happstack Authentication Suite"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happstack-authenticate" = callPackage @@ -132942,7 +125684,6 @@ self: { ]; description = "Happstack Authentication Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happstack-clientsession" = callPackage @@ -132959,8 +125700,6 @@ self: { ]; description = "client-side session data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "happstack-contrib" = callPackage @@ -132981,7 +125720,6 @@ self: { ]; description = "Web related tools and services"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happstack-data" = callPackage @@ -133003,7 +125741,6 @@ self: { ]; description = "Happstack data manipulation libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happstack-dlg" = callPackage @@ -133021,7 +125758,6 @@ self: { ]; description = "Cross-request user interactions for Happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happstack-facebook" = callPackage @@ -133047,7 +125783,6 @@ self: { ]; description = "A package for building Facebook applications using Happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happstack-fastcgi" = callPackage @@ -133064,7 +125799,6 @@ self: { ]; description = "Happstack extension for use with FastCGI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happstack-fay" = callPackage @@ -133080,7 +125814,6 @@ self: { ]; description = "Support for using Fay with Happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happstack-fay-ajax" = callPackage @@ -133093,7 +125826,6 @@ self: { libraryHaskellDepends = [ fay-base fay-jquery ]; description = "Support for using Fay with Happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happstack-foundation" = callPackage @@ -133114,7 +125846,6 @@ self: { ]; description = "Glue code for using Happstack with acid-state, web-routes, reform, and HSP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happstack-hamlet" = callPackage @@ -133126,8 +125857,6 @@ self: { libraryHaskellDepends = [ base happstack-server shakespeare text ]; description = "Support for Hamlet HTML templates in Happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "happstack-heist" = callPackage @@ -133144,8 +125873,6 @@ self: { ]; description = "Support for using Heist templates in Happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "happstack-helpers" = callPackage @@ -133169,7 +125896,6 @@ self: { ]; description = "Convenience functions for Happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happstack-hsp" = callPackage @@ -133201,8 +125927,6 @@ self: { ]; description = "Support for using HStringTemplate in Happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "happstack-ixset" = callPackage @@ -133221,7 +125945,6 @@ self: { ]; description = "Efficient relational queries on Haskell sets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happstack-jmacro" = callPackage @@ -133252,8 +125975,6 @@ self: { ]; description = "Happstack minus the useless stuff"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "happstack-monad-peel" = callPackage @@ -133269,8 +125990,6 @@ self: { ]; description = "monad-peel instances for Happstack types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "happstack-plugins" = callPackage @@ -133286,7 +126005,6 @@ self: { ]; description = "The haskell application server stack + reload"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happstack-server" = callPackage @@ -133349,8 +126067,6 @@ self: { ]; description = "Extend happstack-server with native HTTPS support (TLS/SSL)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "happstack-state" = callPackage @@ -133371,7 +126087,6 @@ self: { ]; description = "Event-based distributed state"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happstack-static-routing" = callPackage @@ -133387,7 +126102,6 @@ self: { ]; description = "Support for static URL routing with overlap detection for Happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "happstack-util" = callPackage @@ -133411,8 +126125,6 @@ self: { ]; description = "Web framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "happstack-yui" = callPackage @@ -133434,8 +126146,6 @@ self: { ]; description = "Utilities for using YUI3 with Happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "happy_1_19_12" = callPackage @@ -133500,8 +126210,6 @@ self: { libraryHaskellDepends = [ base Chart Chart-diagrams ]; description = "Generate simple okay-looking bar plots without much effort"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "happy-meta" = callPackage @@ -133534,8 +126242,6 @@ self: { ]; description = "Acceptance test framework for web applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "happybara-webkit" = callPackage @@ -133555,7 +126261,6 @@ self: { ]; description = "WebKit Happybara driver"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "happybara-webkit-server" = callPackage @@ -133567,8 +126272,6 @@ self: { libraryHaskellDepends = [ base directory filepath process ]; description = "WebKit Server binary for Happybara (taken from capybara-webkit)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hapstone" = callPackage @@ -133587,8 +126290,6 @@ self: { ]; description = "Capstone bindings for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) capstone;}; "haquery" = callPackage @@ -133604,8 +126305,6 @@ self: { ]; description = "jQuery for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haquil" = callPackage @@ -133627,7 +126326,6 @@ self: { ]; description = "A Haskell implementation of the Quil instruction set for quantum computing"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "har" = callPackage @@ -133660,8 +126358,6 @@ self: { executableSystemDepends = [ openssl sqlite ]; description = "Networked content addressed backup and restore software"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) openssl; inherit (pkgs) sqlite;}; "hardware-edsl" = callPackage @@ -133679,8 +126375,6 @@ self: { ]; description = "Deep embedding of hardware descriptions with code generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "harfbuzz-pure" = callPackage @@ -133700,9 +126394,7 @@ self: { executableHaskellDepends = [ base bytestring parallel text ]; description = "Pure-functional Harfbuzz language bindings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "shape-text"; - broken = true; }) {inherit (pkgs) harfbuzz;}; "harg" = callPackage @@ -133720,7 +126412,6 @@ self: { testHaskellDepends = [ base ]; description = "Haskell program configuration using higher kinded data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hark" = callPackage @@ -133739,7 +126430,6 @@ self: { ]; description = "A Gentoo package query tool"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hark"; }) {}; @@ -133766,7 +126456,6 @@ self: { ]; description = "A web service specification compiler that generates implementation and tests"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "harmony"; }) {}; @@ -133784,8 +126473,6 @@ self: { libraryPkgconfigDepends = [ groonga ]; description = "Low level bindings for Groonga"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) groonga;}; "haroonga-httpd" = callPackage @@ -133804,7 +126491,6 @@ self: { ]; description = "Yet another Groonga http server"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; mainProgram = "haroonga-httpd"; }) {}; @@ -133833,8 +126519,6 @@ self: { ]; description = "Runtime code generation for x86 machine code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "harvest-api" = callPackage @@ -133855,8 +126539,6 @@ self: { ]; description = "Bindings for Harvest API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "has" = callPackage @@ -133870,8 +126552,6 @@ self: { libraryHaskellDepends = [ base QuickCheck ]; description = "Entity based records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "has-th" = callPackage @@ -133883,7 +126563,6 @@ self: { libraryHaskellDepends = [ base has template-haskell ]; description = "Template Haskell function for Has records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "has-transformers" = callPackage @@ -133927,8 +126606,6 @@ self: { ]; description = "Haskell driver for Neo4j 3+ (BOLT protocol)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasbolt-extras" = callPackage @@ -133954,7 +126631,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Extras for hasbolt library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -133998,9 +126674,7 @@ self: { ]; description = "Decompress SAPCAR archives"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hascar"; - broken = true; }) {}; "hascard" = callPackage @@ -134036,9 +126710,7 @@ self: { ]; description = "A TUI for reviewing notes using 'flashcards' written with markdown-like syntax"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hascard"; - broken = true; }) {}; "hascas" = callPackage @@ -134060,8 +126732,6 @@ self: { ]; description = "Cassandra driver for haskell"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hascat" = callPackage @@ -134080,7 +126750,6 @@ self: { ]; description = "Hascat Web Server"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "hascat"; }) {}; @@ -134099,7 +126768,6 @@ self: { ]; description = "Hascat Package"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "hascat-setup" = callPackage @@ -134121,7 +126789,6 @@ self: { doHaddock = false; description = "Hascat Installation helper"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "hascat-setup"; }) {}; @@ -134139,7 +126806,6 @@ self: { ]; description = "Hascat System Package"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "hash" = callPackage @@ -134158,8 +126824,6 @@ self: { testHaskellDepends = [ base directory doctest filepath ]; description = "Hashing tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hash-addressed" = callPackage @@ -134292,8 +126956,6 @@ self: { testHaskellDepends = [ base directory doctest filepath ]; description = "Higher-rank Hashable"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hashable-generics" = callPackage @@ -134312,8 +126974,6 @@ self: { benchmarkHaskellDepends = [ base criterion ghc-prim hashable ]; description = "Automatically generates Hashable instances with GHC.Generics."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hashable-orphans" = callPackage @@ -134355,8 +127015,6 @@ self: { ]; description = "Principled, portable & extensible hashing of data and types, including an implementation of the FNV-1a and SipHash algorithms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hashed-storage" = callPackage @@ -134375,8 +127033,6 @@ self: { ]; description = "Hashed file storage support code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasherize" = callPackage @@ -134402,7 +127058,6 @@ self: { ]; description = "Hash digests for files and directories"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "hasherize"; }) {}; @@ -134437,7 +127092,6 @@ self: { libraryHaskellDepends = [ base containers simple-money ]; description = "A library for working with HashFlare.io contracts and hashrates"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "hashids" = callPackage @@ -134538,8 +127192,6 @@ self: { ]; description = "Efficient consistent hashing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hashtable-benchmark" = callPackage @@ -134601,8 +127253,6 @@ self: { ]; description = "Extensions for a \"hashtables\" library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasim" = callPackage @@ -134614,8 +127264,6 @@ self: { libraryHaskellDepends = [ base containers mtl ]; description = "Process-Based Discrete Event Simulation library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hask" = callPackage @@ -134633,8 +127281,6 @@ self: { ]; description = "Categories"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hask-home" = callPackage @@ -134653,7 +127299,6 @@ self: { ]; description = "Generate homepages for cabal packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskades" = callPackage @@ -134671,9 +127316,7 @@ self: { ]; description = "Utility to generate bindings for BlackBerry Cascades"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "haskades"; - broken = true; }) {}; "haskakafka" = callPackage @@ -134718,9 +127361,7 @@ self: { ]; description = "A breakout game written in Yampa using SDL"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "haskanoid"; - broken = true; }) {}; "haskarrow" = callPackage @@ -134738,9 +127379,7 @@ self: { ]; description = "A dialect of haskell with order of execution based on dependency resolution"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "haskarrowPrecompiler"; - broken = true; }) {}; "haskbot-core" = callPackage @@ -134761,8 +127400,6 @@ self: { ]; description = "Easily-extensible chatbot for Slack messaging service"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskdeep" = callPackage @@ -134787,7 +127424,6 @@ self: { ]; description = "Computes and audits file hashes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haskdeep"; }) {}; @@ -134826,7 +127462,6 @@ self: { ]; description = "A small scheme interpreter"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "haskeem"; }) {}; @@ -134865,8 +127500,6 @@ self: { libraryHaskellDepends = [ base haskeline mtl ]; description = "Class interface for working with Haskeline"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskeline-repl" = callPackage @@ -134890,8 +127523,6 @@ self: { libraryHaskellDepends = [ base containers mtl protolude text ]; description = "Write Emacs module in Haskell, using Emacs 25's Dynamic Module feature"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-abci" = callPackage @@ -134917,9 +127548,7 @@ self: { ]; description = "Haskell Application BlockChain Interface (ABCI) Server Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haskell-abci-counter"; - broken = true; }) {}; "haskell-admin" = callPackage @@ -134936,7 +127565,6 @@ self: { ]; description = "Remote Management Platform for Haskell Applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-admin-core" = callPackage @@ -134958,8 +127586,6 @@ self: { ]; description = "Core Modules of Haskell Admin"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-admin-health" = callPackage @@ -134979,7 +127605,6 @@ self: { ]; description = "Application Health Component for Haskell Admin"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-admin-managed-functions" = callPackage @@ -135001,7 +127626,6 @@ self: { ]; description = "Managed Functions integration for Haskell Admin"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-aliyun" = callPackage @@ -135024,7 +127648,6 @@ self: { ]; description = "haskell client of aliyun service"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-awk" = callPackage @@ -135058,9 +127681,7 @@ self: { ]; description = "Transform text from the command-line using Haskell expressions"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "hawk"; - broken = true; }) {}; "haskell-bcrypt" = callPackage @@ -135073,8 +127694,6 @@ self: { testHaskellDepends = [ base bytestring QuickCheck random ]; description = "A bcrypt implementation for haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-bitmex-client" = callPackage @@ -135101,7 +127720,6 @@ self: { ]; description = "Complete BitMEX Client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -135130,8 +127748,6 @@ self: { ]; description = "Auto-generated bitmex API Client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-brainfuck" = callPackage @@ -135151,9 +127767,7 @@ self: { ]; description = "BrainFuck interpreter"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "brainfuck"; - broken = true; }) {}; "haskell-ci" = callPackage @@ -135212,9 +127826,7 @@ self: { executableHaskellDepends = [ base directory process ]; description = "Library for parallel programming in the Intel Concurrent Collections paradigm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haskell-cnc-runTests"; - broken = true; }) {}; "haskell-coffee" = callPackage @@ -135247,9 +127859,7 @@ self: { ]; description = "compress files"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hs-compress"; - broken = true; }) {}; "haskell-conll" = callPackage @@ -135265,8 +127875,6 @@ self: { ]; description = "Core Types for NLP"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-course-preludes" = callPackage @@ -135278,8 +127886,6 @@ self: { libraryHaskellDepends = [ base deepseq ]; description = "Small modules for a Haskell course in which Haskell is taught by implementing Prelude functionality"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-dap" = callPackage @@ -135343,8 +127949,6 @@ self: { testHaskellDepends = [ base ]; description = "Client library for the Disque datastore"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-docs" = callPackage @@ -135367,7 +127971,6 @@ self: { testHaskellDepends = [ base ]; description = "A program to find and display the docs and type of a name"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haskell-docs"; }) {}; @@ -135420,7 +128023,6 @@ self: { testHaskellDepends = [ base eigen vector ]; description = "Some utility functions for haskell-eigen library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-exp-parser" = callPackage @@ -135473,9 +128075,7 @@ self: { ]; description = "Haskell source code formatter"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "haskell-formatter"; - broken = true; }) {}; "haskell-ftp" = callPackage @@ -135502,7 +128102,6 @@ self: { ]; description = "A Haskell ftp server with configurable backend"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "simple-ftp-server"; }) {}; @@ -135520,8 +128119,6 @@ self: { testHaskellDepends = [ base directory doctest filepath ]; description = "Typesafe generation of haskell source code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-gettext" = callPackage @@ -135602,9 +128199,7 @@ self: { executableHaskellDepends = [ base containers gloss ]; description = "Go and Checkers game in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "haskell-go-checkers"; - broken = true; }) {}; "haskell-google-trends" = callPackage @@ -135635,8 +128230,6 @@ self: { testHaskellDepends = [ base template-haskell transformers ]; description = "Infer haskell code by given type"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-igraph" = callPackage @@ -135659,8 +128252,6 @@ self: { ]; description = "Bindings to the igraph C library (v0.8.0)."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-import-graph" = callPackage @@ -135679,9 +128270,7 @@ self: { executableHaskellDepends = [ base ]; description = "create haskell import graph for graphviz"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "haskell-import-graph"; - broken = true; }) {}; "haskell-in-space" = callPackage @@ -135695,8 +128284,6 @@ self: { executableHaskellDepends = [ base HGL random ]; description = "'Asteroids' arcade games"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-kubernetes" = callPackage @@ -135716,8 +128303,6 @@ self: { ]; description = "Haskell bindings to the Kubernetes API (via swagger-codegen)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-language-server" = callPackage @@ -135836,7 +128421,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell library for the Microsoft Language Server Protocol"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-lsp-client" = callPackage @@ -135857,7 +128441,6 @@ self: { ]; description = "A haskell package to build your own Language Server client"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "example-client"; }) {}; @@ -135878,8 +128461,6 @@ self: { ]; description = "Haskell library for the Microsoft Language Server Protocol, data types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-menu" = callPackage @@ -135910,9 +128491,7 @@ self: { testHaskellDepends = [ base MonadRandom ]; description = "Machine learning in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "iris"; - broken = true; }) {}; "haskell-modbus" = callPackage @@ -135936,8 +128515,6 @@ self: { libraryHaskellDepends = [ base ghc-prim integer-gmp ]; description = "Correctly-rounded arbitrary-precision floating-point arithmetic"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-mpi" = callPackage @@ -135980,8 +128557,6 @@ self: { ]; description = "Name resolution library for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-neo4j-client" = callPackage @@ -136013,8 +128588,6 @@ self: { ]; description = "A Haskell neo4j client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-openflow" = callPackage @@ -136029,8 +128602,6 @@ self: { testHaskellDepends = [ base ]; description = "OpenFlow protocol in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-overridez" = callPackage @@ -136052,9 +128623,7 @@ self: { ]; description = "Manage nix overrides for haskell packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haskell-overridez"; - broken = true; }) {}; "haskell-packages" = callPackage @@ -136073,8 +128642,6 @@ self: { ]; description = "Haskell suite library for package management and integration with Cabal"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-pdf-presenter" = callPackage @@ -136094,7 +128661,6 @@ self: { ]; description = "Tool for presenting PDF-based presentations"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hpdfp"; }) {}; @@ -136124,7 +128690,6 @@ self: { executableToolDepends = [ alex happy ]; description = "A test system for the Haskell Platform environment"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haskell-platform-test"; }) {}; @@ -136147,9 +128712,7 @@ self: { testHaskellDepends = [ base ]; description = "A terminal music player based on afplay"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haskell-player"; - broken = true; }) {}; "haskell-plot" = callPackage @@ -136166,8 +128729,6 @@ self: { ]; description = "A library for generating 2D plots painlessly"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-postal" = callPackage @@ -136183,8 +128744,6 @@ self: { testPkgconfigDepends = [ libpostal ]; description = "Haskell binding for the libpostal library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libpostal;}; "haskell-postgis" = callPackage @@ -136208,8 +128767,6 @@ self: { ]; description = "A haskell library for PostGIS geometry types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-proxy-list" = callPackage @@ -136252,8 +128809,6 @@ self: { testHaskellDepends = [ base directory hspec process ]; description = "Opens a temporary file on the system's EDITOR and returns the resulting edits"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-reflect" = callPackage @@ -136270,7 +128825,6 @@ self: { ]; description = "Reflect Haskell types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-rules" = callPackage @@ -136282,8 +128836,6 @@ self: { libraryHaskellDepends = [ base syb ]; description = "A DSL for expressing natural deduction rules in Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-say" = callPackage @@ -136320,9 +128872,7 @@ self: { description = "Snake game implemetation in Haskell using SDL2"; license = lib.licenses.gpl3Only; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; mainProgram = "haskell-snake"; - broken = true; }) {}; "haskell-spacegoo" = callPackage @@ -136339,8 +128889,6 @@ self: { ]; description = "Client API for Rocket Scissor Spacegoo"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-src" = callPackage @@ -136388,7 +128936,6 @@ self: { libraryHaskellDepends = [ base haskell-src-exts Hoed ]; description = "Observable orphan instances for haskell-src-exts"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-src-exts-prisms" = callPackage @@ -136402,8 +128949,6 @@ self: { ]; description = "Prisms with newtype wrappers for haskell-src-exts"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-src-exts-qq" = callPackage @@ -136420,8 +128965,6 @@ self: { testHaskellDepends = [ base haskell-src-exts hspec ]; description = "A quasiquoter for haskell-src-exts"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-src-exts-sc" = callPackage @@ -136435,8 +128978,6 @@ self: { libraryHaskellDepends = [ base haskell-src-exts ]; description = "Pretty print haskell code with comments"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-src-exts-simple" = callPackage @@ -136484,8 +129025,6 @@ self: { ]; description = "Testing code generators piece by piece"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-src-meta" = callPackage @@ -136521,8 +129060,6 @@ self: { ]; description = "Parse source to template-haskell abstract syntax"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-stack-trace-plugin" = callPackage @@ -136541,9 +129078,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "haskell-stack-trace-plugin"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "haskell-time-range" = callPackage @@ -136578,8 +129113,6 @@ self: { ]; description = "Generate Elm types and JSON encoders and decoders from Haskell types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-token-utils" = callPackage @@ -136603,7 +129136,6 @@ self: { ]; description = "Utilities to tie up tokens to an AST"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-ast" = callPackage @@ -136620,7 +129152,6 @@ self: { ]; description = "Haskell AST for efficient tooling"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-ast-fromghc" = callPackage @@ -136638,7 +129169,6 @@ self: { ]; description = "Creating the Haskell-Tools AST from GHC's representations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-ast-gen" = callPackage @@ -136655,7 +129185,6 @@ self: { ]; description = "Facilities for generating new parts of the Haskell-Tools AST"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-ast-trf" = callPackage @@ -136671,7 +129200,6 @@ self: { ]; description = "Conversions on Haskell-Tools AST to prepare for refactorings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-backend-ghc" = callPackage @@ -136689,7 +129217,6 @@ self: { ]; description = "Creating the Haskell-Tools AST from GHC's representations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-builtin-refactorings" = callPackage @@ -136721,7 +129248,6 @@ self: { ]; description = "Refactoring Tool for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-cli" = callPackage @@ -136757,7 +129283,6 @@ self: { ]; description = "Command-line frontend for Haskell-tools Refact"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-daemon" = callPackage @@ -136791,7 +129316,6 @@ self: { ]; description = "Background process for Haskell-tools that editors can connect to"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ht-daemon"; }) {}; @@ -136817,7 +129341,6 @@ self: { executableHaskellDepends = [ base ]; description = "Debugging Tools for Haskell-tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ht-debug"; }) {}; @@ -136849,7 +129372,6 @@ self: { ]; description = "A web-based demo for Haskell-tools Refactor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ht-demo"; }) {}; @@ -136881,7 +129403,6 @@ self: { ]; description = "Refactoring Tool for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-prettyprint" = callPackage @@ -136898,7 +129419,6 @@ self: { ]; description = "Pretty printing of Haskell-Tools AST"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-refactor" = callPackage @@ -136928,7 +129448,6 @@ self: { ]; description = "Refactoring Tool for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-rewrite" = callPackage @@ -136950,7 +129469,6 @@ self: { ]; description = "Facilities for generating new parts of the Haskell-Tools AST"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskell-tor" = callPackage @@ -136984,7 +129502,6 @@ self: { ]; description = "A Haskell Tor Node"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haskell-tor"; }) {}; @@ -136999,8 +129516,6 @@ self: { ]; description = "A type checker for Haskell/haskell-src-exts"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-typescript" = callPackage @@ -137012,8 +129527,6 @@ self: { libraryHaskellDepends = [ base process ]; description = "Simple TypeScript API"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-tyrant" = callPackage @@ -137025,8 +129538,6 @@ self: { libraryHaskellDepends = [ base binary bytestring network ]; description = "Haskell implementation of the Tokyo Tyrant binary protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell-updater" = callPackage @@ -137070,7 +129581,6 @@ self: { executableToolDepends = [ hspec-discover ]; description = "Haskell XMPP (eXtensible Message Passing Protocol, a.k.a. Jabber) library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haskell-xmpp-io-test"; }) {}; @@ -137083,8 +129593,6 @@ self: { libraryHaskellDepends = [ array base ghc-prim ]; description = "Compatibility with Haskell 2010"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell2020" = callPackage @@ -137096,8 +129604,6 @@ self: { libraryHaskellDepends = [ array base ]; description = "Haskell 2020[draft] Standard Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell98" = callPackage @@ -137113,8 +129619,6 @@ self: { ]; description = "Compatibility with Haskell 98"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskell98libraries" = callPackage @@ -137130,8 +129634,6 @@ self: { ]; description = "Compatibility with Haskell 98"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskelldb" = callPackage @@ -137147,8 +129649,6 @@ self: { ]; description = "A library of combinators for generating and executing SQL statements"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskelldb-connect-hdbc" = callPackage @@ -137160,7 +129660,6 @@ self: { libraryHaskellDepends = [ base containers haskelldb HDBC ]; description = "Bracketed HDBC session for HaskellDB"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskelldb-connect-hdbc-catchio-mtl" = callPackage @@ -137176,7 +129675,6 @@ self: { ]; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-mtl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskelldb-connect-hdbc-catchio-tf" = callPackage @@ -137193,7 +129691,6 @@ self: { ]; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskelldb-connect-hdbc-catchio-transformers" = callPackage @@ -137210,7 +129707,6 @@ self: { ]; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskelldb-connect-hdbc-lifted" = callPackage @@ -137227,7 +129723,6 @@ self: { ]; description = "Bracketed HaskellDB HDBC session using lifted-base"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskelldb-dynamic" = callPackage @@ -137242,7 +129737,6 @@ self: { executableHaskellDepends = [ haskelldb ]; description = "HaskellDB support for the dynamically loaded drivers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-dynamic"; }) {}; @@ -137261,7 +129755,6 @@ self: { ]; description = "An experimental HaskellDB back-end in pure Haskell (no SQL)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-flat"; }) {}; @@ -137278,7 +129771,6 @@ self: { ]; description = "HaskellDB support for HDBC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskelldb-hdbc-mysql" = callPackage @@ -137296,7 +129788,6 @@ self: { ]; description = "HaskellDB support for the HDBC MySQL driver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-hdbc-mysql"; }) {}; @@ -137315,7 +129806,6 @@ self: { ]; description = "HaskellDB support for the HDBC ODBC driver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-hdbc-odbc"; }) {}; @@ -137335,7 +129825,6 @@ self: { executableSystemDepends = [ postgresql ]; description = "HaskellDB support for the HDBC PostgreSQL driver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-hdbc-postgresql"; }) {inherit (pkgs) postgresql;}; @@ -137354,7 +129843,6 @@ self: { ]; description = "HaskellDB support for the HDBC SQLite driver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-hdbc-sqlite3"; }) {}; @@ -137367,7 +129855,6 @@ self: { libraryHaskellDepends = [ base haskelldb hsql mtl old-time ]; description = "HaskellDB support for HSQL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskelldb-hsql-mysql" = callPackage @@ -137385,7 +129872,6 @@ self: { ]; description = "HaskellDB support for the HSQL MySQL driver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-hsql-mysql"; }) {}; @@ -137404,7 +129890,6 @@ self: { ]; description = "HaskellDB support for the HSQL ODBC driver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-hsql-odbc"; }) {}; @@ -137443,7 +129928,6 @@ self: { ]; description = "HaskellDB support for the HSQL PostgreSQL driver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-hsql-postgresql"; }) {}; @@ -137482,7 +129966,6 @@ self: { ]; description = "HaskellDB support for the HSQL SQLite3 driver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-hsql-sqlite3"; }) {}; @@ -137495,7 +129978,6 @@ self: { libraryHaskellDepends = [ base haskelldb mtl template-haskell ]; description = "Template Haskell utilities for HaskellDB"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskelldb-wx" = callPackage @@ -137506,8 +129988,6 @@ self: { sha256 = "01652m0bym80400navqlpdv5n0gfgnfzd1d0857f3kd13ksqk2hy"; description = "HaskellDB support for WXHaskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskellish" = callPackage @@ -137546,8 +130026,6 @@ self: { ]; description = "A scrabble library capturing the core game logic of scrabble"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskellscript" = callPackage @@ -137565,9 +130043,7 @@ self: { ]; description = "Command line tool for running Haskell scripts with a hashbang"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haskellscript"; - broken = true; }) {}; "haskelm" = callPackage @@ -137600,7 +130076,6 @@ self: { ]; description = "Elm to Haskell translation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haskelm"; }) {}; @@ -137618,8 +130093,6 @@ self: { ]; description = "CP in Haskell through MiniZinc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskeme" = callPackage @@ -137634,9 +130107,7 @@ self: { executableHaskellDepends = [ base ]; description = "Compiler from I- to S-Expressions for the Scheme Programming Language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haskeme"; - broken = true; }) {}; "haskey" = callPackage @@ -137664,8 +130135,6 @@ self: { ]; description = "A transactional, ACID compliant, embeddable key-value store"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskey-btree" = callPackage @@ -137689,8 +130158,6 @@ self: { ]; description = "B+-tree implementation in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskey-mtl" = callPackage @@ -137711,7 +130178,6 @@ self: { ]; description = "A monad transformer supporting Haskey transactions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskgame" = callPackage @@ -137723,7 +130189,6 @@ self: { libraryHaskellDepends = [ base containers haskell98 SDL SDL-ttf ]; description = "Haskell game library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskheap" = callPackage @@ -137740,8 +130205,6 @@ self: { ]; description = "Haskell bindings to refheap"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskhol-core" = callPackage @@ -137761,8 +130224,6 @@ self: { ]; description = "The core logical system of HaskHOL, an EDSL for HOL theorem proving"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskintex" = callPackage @@ -137783,9 +130244,7 @@ self: { executableHaskellDepends = [ base ]; description = "Haskell Evaluation inside of LaTeX code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haskintex"; - broken = true; }) {}; "hasklepias" = callPackage @@ -137820,7 +130279,6 @@ self: { ]; description = "embedded DSL for defining epidemiologic cohorts"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskmon" = callPackage @@ -137837,8 +130295,6 @@ self: { ]; description = "A haskell wrapper for PokeAPI.co (www.pokeapi.co)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskoin" = callPackage @@ -137864,8 +130320,6 @@ self: { ]; description = "Implementation of the Bitcoin protocol"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskoin-bitcoind" = callPackage @@ -137883,7 +130337,6 @@ self: { ]; description = "An adapter for haskoin to network-bitcoin"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskoin-core" = callPackage @@ -137969,7 +130422,6 @@ self: { ]; description = "Implementation of Bitcoin cryptographic primitives"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "haskoin-node" = callPackage @@ -138055,7 +130507,6 @@ self: { ]; description = "Implementation of the Bitcoin network protocol messages"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "haskoin-script" = callPackage @@ -138080,7 +130531,6 @@ self: { ]; description = "Implementation of Bitcoin script parsing and evaluation"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "haskoin-store" = callPackage @@ -138133,7 +130583,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Storage and index for Bitcoin and Bitcoin Cash"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "haskoin-store"; }) {}; @@ -138214,8 +130663,6 @@ self: { ]; description = "Utility functions for the Network.Haskoin project"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskoin-wallet" = callPackage @@ -138258,8 +130705,6 @@ self: { ]; description = "Implementation of a Bitcoin SPV Wallet with BIP32 and multisig support"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskoon" = callPackage @@ -138277,7 +130722,6 @@ self: { ]; description = "Web Application Abstraction"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "haskoon-httpspec" = callPackage @@ -138293,7 +130737,6 @@ self: { ]; description = "Integrating HttpSpec with Haskoon"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "haskoon-salvia" = callPackage @@ -138311,7 +130754,6 @@ self: { ]; description = "Integrating HttpSpec with Haskoon"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "haskore" = callPackage @@ -138338,8 +130780,6 @@ self: { ]; description = "The Haskore Computer Music System"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskore-realtime" = callPackage @@ -138357,7 +130797,6 @@ self: { ]; description = "Routines for realtime playback of Haskore songs"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "haskore-supercollider" = callPackage @@ -138379,7 +130818,6 @@ self: { ]; description = "Haskore back-end for SuperCollider"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "song-air"; }) {}; @@ -138400,7 +130838,6 @@ self: { ]; description = "Music rendering coded in Haskell"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "haskore-vintage" = callPackage @@ -138412,8 +130849,6 @@ self: { libraryHaskellDepends = [ base ]; description = "The February 2000 version of Haskore"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskseg" = callPackage @@ -138528,7 +130963,6 @@ self: { doHaddock = false; description = "Torch for tensors and neural networks in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hasktorch-codegen" = callPackage @@ -138558,9 +130992,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Code generation tools for Hasktorch"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ht-codegen"; - broken = true; }) {}; "hasktorch-ffi-tests" = callPackage @@ -138595,8 +131027,6 @@ self: { ]; description = "Bindings to Torch"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {ATen = null;}; "hasktorch-ffi-thc" = callPackage @@ -138619,7 +131049,6 @@ self: { ]; description = "Bindings to Cutorch"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {ATen = null;}; "hasktorch-indef" = callPackage @@ -138648,7 +131077,6 @@ self: { doHaddock = false; description = "Core Hasktorch abstractions wrapping FFI bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hasktorch-signatures" = callPackage @@ -138674,7 +131102,6 @@ self: { doHaddock = false; description = "Backpack signatures for Tensor operations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hasktorch-signatures-partial" = callPackage @@ -138690,8 +131117,6 @@ self: { ]; description = "Functions to partially satisfy tensor signatures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasktorch-signatures-support" = callPackage @@ -138708,8 +131133,6 @@ self: { doHaddock = false; description = "Signatures for support tensors in hasktorch"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasktorch-signatures-types" = callPackage @@ -138770,7 +131193,6 @@ self: { ]; description = "Neural architectures in hasktorch"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskus-binary" = callPackage @@ -138795,7 +131217,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Haskus binary format manipulation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskus-system-build" = callPackage @@ -138815,7 +131236,6 @@ self: { ]; description = "Haskus system build tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haskus-system-build"; }) {}; @@ -138839,7 +131259,6 @@ self: { ]; description = "Haskus utility modules"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskus-utils-compat" = callPackage @@ -138856,7 +131275,6 @@ self: { ]; description = "Compatibility modules with other external packages (ByteString, etc.)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskus-utils-data" = callPackage @@ -138908,8 +131326,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq QuickCheck ]; description = "Variant and EADT"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haskus-web" = callPackage @@ -138926,7 +131342,6 @@ self: { ]; description = "Haskus web"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haskyapi" = callPackage @@ -138958,9 +131373,7 @@ self: { ]; description = "HTTP server"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "haskyapi"; - broken = true; }) {}; "haslo" = callPackage @@ -138975,7 +131388,6 @@ self: { executableHaskellDepends = [ mtl old-time QuickCheck time wtk ]; description = "Loan calculator engine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hasloGUI" = callPackage @@ -138994,7 +131406,6 @@ self: { ]; description = "Loan calculator Gtk GUI. Based on haslo (Haskell Loan) library."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "HasloGUI"; }) {}; @@ -139026,9 +131437,7 @@ self: { benchmarkHaskellDepends = [ base criterion directory text ]; description = "CSS Minifier"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hasmin"; - broken = true; }) {}; "haspara" = callPackage @@ -139049,8 +131458,6 @@ self: { ]; description = "A library providing definitions to work with monetary values"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasparql-client" = callPackage @@ -139062,8 +131469,6 @@ self: { libraryHaskellDepends = [ base HTTP monads-fd network xml ]; description = "This package enables to write SPARQL queries to remote endpoints"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haspell" = callPackage @@ -139120,8 +131525,6 @@ self: { ]; description = "API for backends of \"hasql\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasql-class" = callPackage @@ -139144,8 +131547,6 @@ self: { ]; description = "Encodable and Decodable classes for hasql"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasql-cursor-query" = callPackage @@ -139168,7 +131569,6 @@ self: { ]; description = "A declarative abstraction over PostgreSQL Cursor"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hasql-cursor-transaction" = callPackage @@ -139186,8 +131586,6 @@ self: { ]; description = "An abstraction for simultaneous fetching from multiple PostgreSQL cursors"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasql-dynamic-statements" = callPackage @@ -139224,8 +131622,6 @@ self: { testHaskellDepends = [ base hasql tasty tasty-hunit ]; description = "Hasql queries testing interface"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasql-generic" = callPackage @@ -139244,8 +131640,6 @@ self: { ]; description = "Generic encoder and decoder deriving for Hasql"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasql-implicits" = callPackage @@ -139286,8 +131680,6 @@ self: { ]; description = "QuasiQuoter that supports expression interpolation for hasql"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasql-listen-notify" = callPackage @@ -139457,7 +131849,6 @@ self: { ]; description = "A \"PostgreSQL\" backend for the \"hasql\" library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hasql-postgres-options" = callPackage @@ -139472,7 +131863,6 @@ self: { ]; description = "An \"optparse-applicative\" parser for \"hasql-postgres\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hasql-queue" = callPackage @@ -139523,8 +131913,6 @@ self: { testHaskellDepends = [ base-prelude hasql hspec ]; description = "A pool of connections for Hasql based on resource-pool"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasql-simple" = callPackage @@ -139541,8 +131929,6 @@ self: { ]; description = "A somewhat opinionated \"simpler\" API to hasql"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasql-streams-conduit" = callPackage @@ -139559,7 +131945,6 @@ self: { ]; description = "Stream Hasql queries with Conduit"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hasql-streams-core" = callPackage @@ -139571,8 +131956,6 @@ self: { libraryHaskellDepends = [ base hasql hasql-transaction-io ]; description = "Stream Hasql queries"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasql-streams-example" = callPackage @@ -139597,7 +131980,6 @@ self: { ]; description = "An example program that shows how to use Hasql streams with Rel8"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hasql-streaming"; }) {}; @@ -139615,7 +131997,6 @@ self: { ]; description = "Stream Hasql queries with Pipes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hasql-streams-streaming" = callPackage @@ -139632,7 +132013,6 @@ self: { ]; description = "Stream Hasql queries with Streaming"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hasql-streams-streamly" = callPackage @@ -139649,7 +132029,6 @@ self: { ]; description = "Stream Hasql queries with Streamly"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hasql-th" = callPackage @@ -139703,8 +132082,6 @@ self: { ]; description = "Perform IO actions during transactions for Hasql"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasql-url" = callPackage @@ -139721,8 +132098,6 @@ self: { testHaskellDepends = [ base hasql tasty tasty-quickcheck ]; description = "Parse PostgreSQL connection URI into Hasql.Connection Settings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hasqlator-mysql" = callPackage @@ -139785,9 +132160,7 @@ self: { ]; description = "Haskell implementation of Mustache templates"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mkReadme"; - broken = true; }) {}; "hastache-aeson" = callPackage @@ -139804,7 +132177,6 @@ self: { ]; description = "render hastache templates using aeson values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haste" = callPackage @@ -139818,9 +132190,7 @@ self: { executableHaskellDepends = [ base curl filepath mtl ]; description = "A universal pastebin tool, written in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haste"; - broken = true; }) {}; "haste-app" = callPackage @@ -139840,7 +132210,6 @@ self: { ]; description = "Framework for type-safe, distributed web applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "haste-compiler" = callPackage @@ -139884,7 +132253,6 @@ self: { ]; description = "Google API bindings for the Haste compiler"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "haste-lib" = callPackage @@ -139903,7 +132271,6 @@ self: { ]; description = "Base libraries for haste-compiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haste-markup" = callPackage @@ -139918,7 +132285,6 @@ self: { ]; description = "A port of blaze-markup and blaze-html to Haste"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "haste-perch" = callPackage @@ -139930,7 +132296,6 @@ self: { libraryHaskellDepends = [ base haste-compiler transformers ]; description = "Create, navigate and modify the DOM tree with composable syntax, with the haste compiler"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "haste-prim" = callPackage @@ -139942,8 +132307,6 @@ self: { libraryHaskellDepends = [ base ghc-prim integer-gmp ]; description = "Low level primitives for the Haste compiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hastily" = callPackage @@ -140010,8 +132373,6 @@ self: { ]; description = "The Haskell tracer, generating and viewing Haskell execution traces"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hatex-guide" = callPackage @@ -140028,8 +132389,6 @@ self: { ]; description = "HaTeX User's Guide"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hatexmpp3" = callPackage @@ -140052,7 +132411,6 @@ self: { ]; description = "XMPP client with 9P and (optionally) GTK interfaces"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "hatexmpp"; }) {}; @@ -140105,9 +132463,7 @@ self: { ]; description = "Haskell client for the NATS messaging system"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hats-examples"; - broken = true; }) {}; "hatt" = callPackage @@ -140130,9 +132486,7 @@ self: { ]; description = "A truth table generator for classical propositional logic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hatt"; - broken = true; }) {}; "haveibeenpwned" = callPackage @@ -140155,9 +132509,7 @@ self: { ]; description = "Library for checking for weak/compromised passwords"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "readme"; - broken = true; }) {}; "haven" = callPackage @@ -140177,9 +132529,7 @@ self: { ]; description = "Recursively retrieve maven dependencies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haven"; - broken = true; }) {}; "haverer" = callPackage @@ -140204,9 +132554,7 @@ self: { ]; description = "Implementation of the rules of Love Letter"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "haverer"; - broken = true; }) {}; "hawitter" = callPackage @@ -140228,7 +132576,6 @@ self: { ]; description = "A twitter client for GTK+. Beta version."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hawitter"; }) {}; @@ -140255,9 +132602,7 @@ self: { ]; description = "Haskell cash-flow and tax simulation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hax"; - broken = true; }) {}; "haxl" = callPackage @@ -140284,8 +132629,6 @@ self: { ]; description = "A Haskell library for efficient, concurrent, and concise data access"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haxl-amazonka" = callPackage @@ -140302,7 +132645,6 @@ self: { ]; description = "Haxl data source for accessing AWS services through amazonka"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haxl-facebook" = callPackage @@ -140325,7 +132667,6 @@ self: { ]; description = "An example Haxl data source for accessing the Facebook Graph API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "haxparse" = callPackage @@ -140350,9 +132691,7 @@ self: { ]; description = "Readable HaxBall replays"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "haxparse"; - broken = true; }) {}; "haxr" = callPackage @@ -140386,8 +132725,6 @@ self: { libraryHaskellDepends = [ base haxr template-haskell ]; description = "Automatic deriving of XML-RPC structs for Haskell records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "haxy" = callPackage @@ -140404,7 +132741,6 @@ self: { ]; description = "A simple HTTP proxy server library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hayland" = callPackage @@ -140425,9 +132761,7 @@ self: { testHaskellDepends = [ base process xml ]; description = "Haskell bindings for the C Wayland library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "wayland-list-globals"; - broken = true; }) {inherit (pkgs) libGL; inherit (pkgs) wayland;}; "hayoo-cli" = callPackage @@ -140446,9 +132780,7 @@ self: { ]; description = "Hayoo CLI"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hayoo"; - broken = true; }) {}; "hb3sum" = callPackage @@ -140463,9 +132795,7 @@ self: { description = "A command line tool to compute BLAKE3 hashes"; license = lib.licenses.agpl3Only; badPlatforms = [ "aarch64-linux" ]; - hydraPlatforms = lib.platforms.none; mainProgram = "hb3sum"; - broken = true; }) {}; "hback" = callPackage @@ -140484,7 +132814,6 @@ self: { ]; description = "N-back memory game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hback"; }) {}; @@ -140515,7 +132844,6 @@ self: { ]; description = "Bayesian Networks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hbb" = callPackage @@ -140532,7 +132860,6 @@ self: { ]; description = "Haskell Busy Bee, a backend for text editors"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hbb"; }) {}; @@ -140560,8 +132887,6 @@ self: { ]; description = "Client for the beanstalkd workqueue service"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hbeat" = callPackage @@ -140580,9 +132905,7 @@ self: { executableSystemDepends = [ SDL_mixer ]; description = "A simple step sequencer GUI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hbeat"; - broken = true; }) {inherit (pkgs) SDL_mixer;}; "hbf" = callPackage @@ -140619,7 +132942,6 @@ self: { ]; description = "An optimizing Brainfuck compiler and evaluator"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "hblas" = callPackage @@ -140637,8 +132959,6 @@ self: { testHaskellDepends = [ base hspec primitive vector ]; description = "Human friendly BLAS and Lapack bindings for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hblock" = callPackage @@ -140658,8 +132978,6 @@ self: { ]; description = "A mutable vector that provides indexation on the datatype fields it stores"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hbro" = callPackage @@ -140693,7 +133011,6 @@ self: { executableHaskellDepends = [ base ]; description = "Minimal extensible web-browser"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "hbro"; }) {}; @@ -140727,7 +133044,6 @@ self: { ]; description = "Third-party extensions to hbro"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -140749,9 +133065,7 @@ self: { executableToolDepends = [ alex happy ]; description = "Haskell Bottom Up Rewrite Generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hburg"; - broken = true; }) {}; "hcad" = callPackage @@ -140763,8 +133077,6 @@ self: { libraryHaskellDepends = [ base containers gasp mtl ]; description = "Haskell CAD library"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hcc" = callPackage @@ -140778,9 +133090,7 @@ self: { executableHaskellDepends = [ base bytestring language-c ]; description = "A toy C compiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hcc"; - broken = true; }) {}; "hcdt" = callPackage @@ -140804,8 +133114,6 @@ self: { libraryHaskellDepends = [ base colour random ]; description = "haskell cg (minus)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hcg-minus-cairo" = callPackage @@ -140821,7 +133129,6 @@ self: { ]; description = "haskell cg (minus) (cairo rendering)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hcheat" = callPackage @@ -140834,7 +133141,6 @@ self: { libraryHaskellDepends = [ base mps ]; description = "A collection of code cheatsheet"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hcheckers" = callPackage @@ -140868,7 +133174,6 @@ self: { ]; description = "Implementation of checkers (\"draughts\") board game - server application"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hcheckersd"; }) {}; @@ -140886,8 +133191,6 @@ self: { ]; description = "Chess library"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hcltest" = callPackage @@ -140908,8 +133211,6 @@ self: { testHaskellDepends = [ base directory doctest filepath ]; description = "A testing library for command line applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hcoap" = callPackage @@ -140932,8 +133233,6 @@ self: { ]; description = "CoAP implementation for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hcobs" = callPackage @@ -140957,8 +133256,6 @@ self: { ]; description = "An implementation of the Consistent Overhead Byte Stuffing algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hcom" = callPackage @@ -140970,8 +133267,6 @@ self: { doHaddock = false; description = "Haskell COM support library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hcoord" = callPackage @@ -141010,7 +133305,6 @@ self: { ]; description = "Haskell name counts"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hcount"; }) {}; @@ -141028,8 +133322,6 @@ self: { ]; description = "A simple job scheduler, which just runs some IO action at a given time"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hcube" = callPackage @@ -141050,7 +133342,6 @@ self: { ]; description = "Virtual Rubik's cube of arbitrary size"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hcube"; }) {}; @@ -141095,8 +133386,6 @@ self: { ]; description = "Library to handle the details of writing daemons for UNIX"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hdbc-aeson" = callPackage @@ -141113,8 +133402,6 @@ self: { ]; description = "Deserialize from HDBC rows to FromJSON instances"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hdbc-postgresql-hstore" = callPackage @@ -141126,8 +133413,6 @@ self: { libraryHaskellDepends = [ attoparsec base containers HDBC text ]; description = "Manipulate data in PostgreSQL \"hstore\" columns"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hdbc-tuple" = callPackage @@ -141166,7 +133451,6 @@ self: { ]; description = "Haskell Database Independent interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hdbi-conduit" = callPackage @@ -141187,7 +133471,6 @@ self: { ]; description = "Conduit glue for HDBI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hdbi-postgresql" = callPackage @@ -141215,7 +133498,6 @@ self: { ]; description = "PostgreSQL driver for hdbi"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hdbi-sqlite" = callPackage @@ -141235,7 +133517,6 @@ self: { ]; description = "SQlite driver for HDBI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hdbi-tests" = callPackage @@ -141255,7 +133536,6 @@ self: { ]; description = "test suite for testing HDBI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hdevtools" = callPackage @@ -141275,9 +133555,7 @@ self: { ]; description = "Persistent GHC powered background server for FAST haskell development tools"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hdevtools"; - broken = true; }) {}; "hdf" = callPackage @@ -141295,7 +133573,6 @@ self: { ]; description = "HDF: Uniform Rate Audio Signal Processing in Haskell"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hdf5" = callPackage @@ -141317,8 +133594,6 @@ self: { ]; description = "Haskell interface to the HDF5 scientific data storage library"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {hdf5-serial = null;}; "hdf5-lite" = callPackage @@ -141371,7 +133646,6 @@ self: { ]; description = "Pattern-Expression-based differencing of arbitrary types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hdiff"; }) {}; @@ -141387,7 +133661,6 @@ self: { ]; description = "Server-side HTTP Digest (RFC2617) in the CGI monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hdirect" = callPackage @@ -141406,7 +133679,6 @@ self: { executableToolDepends = [ happy ]; description = "An IDL compiler for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hdirect"; }) {}; @@ -141419,8 +133691,6 @@ self: { libraryHaskellDepends = [ base bytestring containers QuickCheck ]; description = "Interface to the udis86 disassembler for x86 and x86-64 / AMD64"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hdiscount" = callPackage @@ -141433,8 +133703,6 @@ self: { librarySystemDepends = [ markdown ]; description = "Haskell bindings to the Discount markdown library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {markdown = null;}; "hdm" = callPackage @@ -141448,9 +133716,7 @@ self: { executableHaskellDepends = [ base directory process unix vty ]; description = "a small display manager"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hdm"; - broken = true; }) {}; "hdo" = callPackage @@ -141478,9 +133744,7 @@ self: { ]; description = "A Digital Ocean client in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "docean"; - broken = true; }) {}; "hdocs" = callPackage @@ -141505,7 +133769,6 @@ self: { testHaskellDepends = [ base containers mtl ]; description = "Haskell docs tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hdocs"; }) {}; @@ -141533,7 +133796,6 @@ self: { ]; description = "Haskell distributed parallel Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hdph-closure" = callPackage @@ -141549,8 +133811,6 @@ self: { ]; description = "Explicit closures in Haskell distributed parallel Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hdr-histogram" = callPackage @@ -141570,8 +133830,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq primitive ]; description = "Haskell implementation of High Dynamic Range (HDR) Histograms"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "headed-megaparsec" = callPackage @@ -141606,9 +133864,7 @@ self: { ]; description = "Creates a header for a haskell source file"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "headergen"; - broken = true; }) {}; "headroom" = callPackage @@ -141640,9 +133896,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "License Header Manager"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "headroom"; - broken = true; }) {}; "heap" = callPackage @@ -141673,8 +133927,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "interactively inspect Haskell values at runtime"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "heaps" = callPackage @@ -141717,9 +133969,7 @@ self: { executableHaskellDepends = [ array base ]; description = "Heapsort of MArrays as a demo of imperative programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "heapsort-example"; - broken = true; }) {}; "heart-app" = callPackage @@ -141735,7 +133985,6 @@ self: { ]; description = "An opinionated app prelude and framework in the UnliftIO style"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "heart-core" = callPackage @@ -141755,8 +134004,6 @@ self: { ]; description = "An opinionated library prelude in the UnliftIO style"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "heartbeat-streams" = callPackage @@ -141768,8 +134015,6 @@ self: { libraryHaskellDepends = [ async base io-streams time ]; description = "Heartbeats for io-streams"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "heatitup" = callPackage @@ -141799,7 +134044,6 @@ self: { ]; description = "Find and annotate ITDs"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "heatitup"; }) {}; @@ -141824,9 +134068,7 @@ self: { ]; description = "Find and annotate ITDs with assembly or read pair joining"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "heatitup-complete"; - broken = true; }) {}; "heatshrink" = callPackage @@ -141860,7 +134102,6 @@ self: { ]; description = "Simle api for heavy logger"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "heavy-logger" = callPackage @@ -141882,7 +134123,6 @@ self: { ]; description = "Full-weight logging based on fast-logger"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "heavy-logger-amazon" = callPackage @@ -141898,7 +134138,6 @@ self: { ]; description = "heavy-logger compatibility with amazonka-core logging"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "heavy-logger-instances" = callPackage @@ -141919,7 +134158,6 @@ self: { ]; description = "Orphan instances for data types in heavy-logger package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hebrew-time" = callPackage @@ -141932,8 +134170,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck time ]; description = "Hebrew dates and prayer times"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hecc" = callPackage @@ -141946,7 +134182,6 @@ self: { libraryHaskellDepends = [ base cereal crypto-api hF2 ]; description = "Elliptic Curve Cryptography for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "heckin" = callPackage @@ -141978,9 +134213,7 @@ self: { executableHaskellDepends = [ base directory process split ]; description = "Jekyll in Haskell (feat. LaTeX)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "heckle"; - broken = true; }) {}; "heddit" = callPackage @@ -142011,8 +134244,6 @@ self: { ]; description = "Reddit API bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hedgehog" = callPackage @@ -142084,8 +134315,6 @@ self: { ]; testHaskellDepends = [ base either hedgehog ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hedgehog-checkers-lens" = callPackage @@ -142097,7 +134326,6 @@ self: { libraryHaskellDepends = [ base hedgehog hedgehog-checkers lens ]; testHaskellDepends = [ base hedgehog hedgehog-checkers lens ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hedgehog-classes" = callPackage @@ -142196,8 +134424,6 @@ self: { ]; description = "Customizable Gen for ADT using Generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hedgehog-gen-json" = callPackage @@ -142222,7 +134448,6 @@ self: { ]; description = "JSON generators for Hedgehog"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hedgehog-generic" = callPackage @@ -142234,8 +134459,6 @@ self: { libraryHaskellDepends = [ base hedgehog ]; description = "GHC Generics automatically derived hedgehog generators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hedgehog-golden" = callPackage @@ -142253,8 +134476,6 @@ self: { testHaskellDepends = [ aeson base hedgehog ]; description = "Golden testing capabilities for hedgehog using Aeson"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hedgehog-lens" = callPackage @@ -142266,8 +134487,6 @@ self: { libraryHaskellDepends = [ base hedgehog lens ]; description = "Hedgehog properties for lens laws"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hedgehog-optics" = callPackage @@ -142315,8 +134534,6 @@ self: { ]; description = "Hedgehog property testing for Servant APIs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hedis" = callPackage @@ -142357,8 +134574,6 @@ self: { ]; description = "Easy trivial configuration for Redis"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hedis-envy" = callPackage @@ -142400,9 +134615,7 @@ self: { testHaskellDepends = [ base ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hedis-namespace-exe"; - broken = true; }) {}; "hedis-pile" = callPackage @@ -142424,7 +134637,6 @@ self: { ]; description = "Caching mandatory data with Redis"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hedis-simple" = callPackage @@ -142436,8 +134648,6 @@ self: { libraryHaskellDepends = [ base bytestring either hedis mtl ]; description = "A simplified API for hedis"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hedis-tags" = callPackage @@ -142455,8 +134665,6 @@ self: { ]; description = "Tags for hedis"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hedn" = callPackage @@ -142512,9 +134720,7 @@ self: { testHaskellDepends = [ base doctest ]; description = "A small library and executable for generating dice rolls"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hedra"; - broken = true; }) {}; "hegg" = callPackage @@ -142560,9 +134766,7 @@ self: { benchmarkHaskellDepends = [ base criterion weigh ]; description = "Tidy data in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "app"; - broken = true; }) {}; "hein" = callPackage @@ -142581,9 +134785,7 @@ self: { ]; description = "An extensible build helper for haskell, in the vein of leiningen"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "hein"; - broken = true; }) {}; "heist" = callPackage @@ -142643,8 +134845,6 @@ self: { ]; description = "Use JSON directly from Heist templates"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "heist-async" = callPackage @@ -142658,8 +134858,6 @@ self: { ]; description = "Adding support for asynchronous updates (\"AJAX\") with heist"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "heist-emanote" = callPackage @@ -142701,8 +134899,6 @@ self: { ]; description = "An Haskell template system supporting both HTML5 and XML"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "heist-extra" = callPackage @@ -142719,8 +134915,6 @@ self: { ]; description = "Extra heist functionality"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "helf" = callPackage @@ -142776,7 +134970,6 @@ self: { ]; description = "Clipboard Manager"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; mainProgram = "hel"; }) {}; @@ -142801,7 +134994,6 @@ self: { ]; description = "New Relic® agent SDK wrapper for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {newrelic-collector-client = null; newrelic-common = null; newrelic-transaction = null;}; @@ -142820,7 +135012,6 @@ self: { ]; description = "New Relic® agent SDK wrapper for wai"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "helisp" = callPackage @@ -142834,9 +135025,7 @@ self: { executableHaskellDepends = [ base containers mtl parsec process ]; description = "An incomplete Elisp compiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "helisp"; - broken = true; }) {}; "helium" = callPackage @@ -142860,7 +135049,6 @@ self: { ]; description = "The Helium Compiler"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "helium-overture" = callPackage @@ -142900,8 +135088,6 @@ self: { ]; description = "Web development micro framework for haskell with typesafe URLs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hell" = callPackage @@ -142926,7 +135112,6 @@ self: { executableHaskellDepends = [ base transformers utf8-string ]; description = "A Haskell shell based on shell-conduit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hell"; }) {}; @@ -142947,7 +135132,6 @@ self: { ]; description = "Distributed hackage mirror"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hellnet" = callPackage @@ -142972,7 +135156,6 @@ self: { ]; description = "Simple, distributed, anonymous data sharing network"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "hello" = callPackage @@ -143009,9 +135192,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "A functionally reactive game engine"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "helm-example-flappy"; - broken = true; }) {}; "help-esb" = callPackage @@ -143028,8 +135209,6 @@ self: { ]; description = "A Haskell client for the Help.com team's ESB."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hemkay" = callPackage @@ -143047,9 +135226,7 @@ self: { ]; description = "A module music mixer and player"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hemkay"; - broken = true; }) {}; "hemkay-core" = callPackage @@ -143090,7 +135267,6 @@ self: { benchmarkHaskellDepends = [ base conduit criterion mtl ]; description = "Haskell port of the Emokit EEG project"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hen" = callPackage @@ -143111,7 +135287,6 @@ self: { ]; description = "Haskell bindings to Xen hypervisor interface"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {xenctrl = null;}; "henet" = callPackage @@ -143126,7 +135301,6 @@ self: { ]; description = "Bindings and high level interface for to ENet v1.3.9"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hepevt" = callPackage @@ -143138,7 +135312,6 @@ self: { libraryHaskellDepends = [ bytestring haskell2010 lha ]; description = "HEPEVT parser"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "her-lexer" = callPackage @@ -143161,8 +135334,6 @@ self: { libraryHaskellDepends = [ base her-lexer parsec transformers ]; description = "Parsec frontend to \"her-lexer\" for Haskell source code"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "herbalizer" = callPackage @@ -143180,9 +135351,7 @@ self: { ]; description = "HAML to ERB translator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "herbalizer"; - broken = true; }) {}; "hercules-ci-agent" = callPackage @@ -143487,8 +135656,6 @@ self: { testHaskellDepends = [ base bytestring doctest text ]; description = "Heredocument on Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "herf-time" = callPackage @@ -143553,7 +135720,6 @@ self: { ]; description = "Haskell Equational Reasoning Model-to-Implementation Tunnel"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hermit"; }) {}; @@ -143570,7 +135736,6 @@ self: { ]; description = "HERMIT plugin for optimizing Scrap-Your-Boilerplate traversals"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "herms" = callPackage @@ -143591,9 +135756,7 @@ self: { ]; description = "A command-line manager for delicious kitchen recipes"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "herms"; - broken = true; }) {}; "hero-club-five-tenets" = callPackage @@ -143637,8 +135800,6 @@ self: { testHaskellDepends = [ base hspec persistent-postgresql ]; description = "Parse DATABASE_URL into configuration types for Persistent"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "herringbone" = callPackage @@ -143658,7 +135819,6 @@ self: { ]; description = "A library for compiling and serving static web assets"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "herringbone-embed" = callPackage @@ -143675,7 +135835,6 @@ self: { ]; description = "Embed preprocessed web assets in your executable with Template Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "herringbone-wai" = callPackage @@ -143692,7 +135851,6 @@ self: { ]; description = "Wai adapter for the Herringbone web asset preprocessor"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hesh" = callPackage @@ -143719,7 +135877,6 @@ self: { ]; description = "the Haskell Extensible Shell: Haskell for Bash-style scripts"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hesh"; }) {}; @@ -143738,7 +135895,6 @@ self: { ]; description = "Haskell's embedded SQL"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hesql"; }) {}; @@ -143760,8 +135916,6 @@ self: { ]; description = "Fast heterogeneous data structures"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hetero-map" = callPackage @@ -143804,8 +135958,6 @@ self: { testHaskellDepends = [ base ]; description = "Allows the use of tuples as literals for Heterogeneous collections"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "heterolist" = callPackage @@ -143823,7 +135975,6 @@ self: { ]; description = "A heterogeneous list type"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hetris" = callPackage @@ -143840,9 +135991,7 @@ self: { executableSystemDepends = [ ncurses ]; description = "Text Tetris"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hetris"; - broken = true; }) {inherit (pkgs) ncurses;}; "hetzner" = callPackage @@ -143861,7 +136010,6 @@ self: { testHaskellDepends = [ base ]; description = "Hetzner Cloud and DNS library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "heukarya" = callPackage @@ -143876,8 +136024,6 @@ self: { ]; description = "A genetic programming based on tree structure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hevm" = callPackage @@ -143956,7 +136102,6 @@ self: { ]; description = "Genetic Mona Lisa problem in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hevolisa"; }) {}; @@ -143976,7 +136121,6 @@ self: { ]; description = "Genetic Mona Lisa problem in Haskell - using Data Parallel Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hevolisa"; }) {}; @@ -144015,8 +136159,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Haskell scripting interface for HexChat"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hexdump" = callPackage @@ -144040,8 +136182,6 @@ self: { libraryHaskellDepends = [ base binary bytestring filepath ]; description = "Reading Exif data form a JPEG file with Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hexmino" = callPackage @@ -144060,9 +136200,7 @@ self: { ]; description = "A small game based on domino-like hexagonal tiles"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hexmino"; - broken = true; }) {}; "hexml" = callPackage @@ -144095,8 +136233,6 @@ self: { ]; description = "Lenses for the hexml package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hexpat" = callPackage @@ -144131,7 +136267,6 @@ self: { transformers ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hexpat-iteratee" = callPackage @@ -144149,7 +136284,6 @@ self: { ]; description = "Chunked XML parsing using iteratees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hexpat-lens" = callPackage @@ -144165,8 +136299,6 @@ self: { ]; description = "Lenses for Hexpat"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hexpat-pickle" = callPackage @@ -144200,8 +136332,6 @@ self: { ]; description = "Picklers for de/serialising Generic data types to and from XML"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hexpat-streamparser" = callPackage @@ -144218,8 +136348,6 @@ self: { ]; testHaskellDepends = [ base hexpat hspec ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hexpat-tagsoup" = callPackage @@ -144245,8 +136373,6 @@ self: { ]; description = "A framework for symbolic, homoiconic languages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hexpress" = callPackage @@ -144264,8 +136390,6 @@ self: { ]; description = "An express-like http framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hexquote" = callPackage @@ -144281,8 +136405,6 @@ self: { ]; description = "Hexadecimal ByteString literals, with placeholders that bind variables"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hexstring" = callPackage @@ -144300,8 +136422,6 @@ self: { testHaskellDepends = [ base binary bytestring hspec text ]; description = "Fast and safe representation of a hex string"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hext" = callPackage @@ -144318,9 +136438,7 @@ self: { executableHaskellDepends = [ base text ]; description = "a text classification library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hext-exe"; - broken = true; }) {}; "hextra" = callPackage @@ -144332,8 +136450,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Generic and niche utility functions and more for Haskell"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hextream" = callPackage @@ -144388,9 +136504,7 @@ self: { ]; description = "A server for Eye-Fi SD cards"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "heyefi"; - broken = true; }) {}; "heystone" = callPackage @@ -144426,8 +136540,6 @@ self: { ]; description = "Heyting and Boolean algebras"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hfann" = callPackage @@ -144443,8 +136555,6 @@ self: { libraryPkgconfigDepends = [ fann ]; description = "Haskell binding to the FANN library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {doublefann = null; fann = null;}; "hfd" = callPackage @@ -144463,7 +136573,6 @@ self: { ]; description = "Flash debugger"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hfd"; }) {}; @@ -144480,7 +136589,6 @@ self: { executableHaskellDepends = [ wx wxcore ]; description = "Four in a Row in Haskell!!"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hfiar"; }) {}; @@ -144527,9 +136635,7 @@ self: { ]; description = "Haskell source code formatter"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hfmt"; - broken = true; }) {}; "hfoil" = callPackage @@ -144549,9 +136655,7 @@ self: { executableHaskellDepends = [ base ]; description = "Hess-Smith panel code for inviscid 2-d airfoil analysis"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hfoil"; - broken = true; }) {}; "hformat" = callPackage @@ -144579,8 +136683,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Field-of-view calculation for low-resolution 2D raster grids"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hfractal" = callPackage @@ -144599,7 +136701,6 @@ self: { ]; description = "OpenGL fractal renderer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hfractal"; }) {}; @@ -144631,8 +136732,6 @@ self: { ]; description = "A library for fusing a subset of Haskell programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hg-buildpackage" = callPackage @@ -144651,8 +136750,6 @@ self: { ]; description = "Tools to help manage Debian packages with Mercurial"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hgal" = callPackage @@ -144680,7 +136777,6 @@ self: { libraryHaskellDepends = [ array base haskell98 mtl ]; description = "Haskell Genetic Algorithm Library"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "hgdal" = callPackage @@ -144715,8 +136811,6 @@ self: { ]; description = "GDB Machine Interface: program-driven control of GDB"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hgearman" = callPackage @@ -144734,8 +136828,6 @@ self: { ]; description = "A Gearman client for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hgen" = callPackage @@ -144751,7 +136843,6 @@ self: { ]; description = "Random generation of modal and hybrid logic formulas"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hgen"; }) {}; @@ -144764,8 +136855,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A geometric library with bindings to GPC"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hgeometry" = callPackage @@ -144804,7 +136893,6 @@ self: { ]; description = "Geometric Algorithms, Data structures, and Data types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hgeometry-combinatorial" = callPackage @@ -144839,7 +136927,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Data structures, and Data types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hgeometry-ipe" = callPackage @@ -144874,8 +136961,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Reading and Writing ipe7 files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hgeometry-svg" = callPackage @@ -144896,7 +136981,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Writing geometric primitives from HGeometry as SVG Files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hgeos" = callPackage @@ -144957,8 +137041,6 @@ self: { doHaddock = false; description = "Library and for GIS with Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hgithub" = callPackage @@ -144979,7 +137061,6 @@ self: { executableHaskellDepends = [ base cmdargs directory ]; description = "Haskell bindings to the GitHub API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hgithub"; }) {}; @@ -145029,9 +137110,7 @@ self: { ]; description = "An haskell port of the java version of gom"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hgom"; - broken = true; }) {}; "hgopher" = callPackage @@ -145043,8 +137122,6 @@ self: { libraryHaskellDepends = [ base bytestring network ]; description = "Gopher server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hgraph" = callPackage @@ -145077,8 +137154,6 @@ self: { libraryHaskellDepends = [ aeson base bytestring cpu hosc network ]; description = "Haskell module to interact with the greetd daemon trough it's IPC protocol"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hgrep" = callPackage @@ -145101,9 +137176,7 @@ self: { ]; description = "Search Haskell source code from the command line"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hgrep"; - broken = true; }) {}; "hgrev" = callPackage @@ -145119,8 +137192,6 @@ self: { ]; description = "Compile Mercurial (hg) version info into Haskell code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hgrib" = callPackage @@ -145139,8 +137210,6 @@ self: { testHaskellDepends = [ base directory hspec ]; description = "Unofficial bindings for GRIB API"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {grib_api = null;}; "hharp" = callPackage @@ -145153,8 +137222,6 @@ self: { librarySystemDepends = [ harp ]; description = "Binding to libharp"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {harp = null;}; "hhp" = callPackage @@ -145181,8 +137248,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Happy Haskell Programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hhwloc" = callPackage @@ -145196,8 +137261,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Bindings to https://www.open-mpi.org/projects/hwloc"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hi" = callPackage @@ -145228,9 +137291,7 @@ self: { ]; description = "Generate scaffold for cabal project"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hi"; - broken = true; }) {}; "hi-file-parser" = callPackage @@ -145266,8 +137327,6 @@ self: { executableHaskellDepends = [ base dbus process ]; description = "Status line for i3bar"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hiccup" = callPackage @@ -145287,7 +137346,6 @@ self: { ]; description = "Relatively efficient Tcl interpreter with support for basic operations"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hiccup"; }) {}; @@ -145302,9 +137360,7 @@ self: { executableHaskellDepends = [ array base bytestring mtl network ]; description = "haskell robot for IChat protocol"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hichi"; - broken = true; }) {}; "hid" = callPackage @@ -145318,8 +137374,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Interface to hidapi library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) hidapi;}; "hid-examples" = callPackage @@ -145354,8 +137408,6 @@ self: { doHaddock = false; description = "Examples to accompany the book \"Haskell in Depth\""; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hidapi" = callPackage @@ -145387,8 +137439,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Provides cross-platform getHiddenChar function"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hie-bios" = callPackage @@ -145477,7 +137527,6 @@ self: { ]; description = "The core of an IDE"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "hie-core"; }) {}; @@ -145518,8 +137567,6 @@ self: { libraryHaskellDepends = [ base containers HUnit mtl multiset ]; description = "Automated clustering of arbitrary elements in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hierarchical-clustering" = callPackage @@ -145533,8 +137580,6 @@ self: { testHaskellDepends = [ base hspec HUnit QuickCheck ]; description = "Fast algorithms for single, average/UPGMA and complete linkage clustering"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hierarchical-clustering-diagrams" = callPackage @@ -145554,7 +137599,6 @@ self: { ]; description = "Draw diagrams of dendrograms made by hierarchical-clustering"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hierarchical-env" = callPackage @@ -145577,7 +137621,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "hierarchical environments for dependency injection"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hierarchical-exceptions" = callPackage @@ -145589,8 +137632,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Template Haskell functions to easily create exception hierarchies"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hierarchical-spectral-clustering" = callPackage @@ -145621,7 +137662,6 @@ self: { ]; description = "Hierarchical spectral clustering of a graph"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "cluster-tree"; }) {}; @@ -145645,8 +137685,6 @@ self: { ]; description = "Predicated traversal of generated trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hiernotify" = callPackage @@ -145662,8 +137700,6 @@ self: { ]; description = "Notification library for a filesystem hierarchy"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hifi" = callPackage @@ -145684,9 +137720,7 @@ self: { testHaskellDepends = [ base ]; description = "WiFi connection script generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hifi"; - broken = true; }) {}; "higgledy" = callPackage @@ -145709,8 +137743,6 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Partial types as a type constructor"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "highWaterMark" = callPackage @@ -145725,9 +137757,7 @@ self: { executableHaskellDepends = [ base ghc ]; description = "Memory usage statistics"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "highWaterMark"; - broken = true; }) {}; "higher-leveldb" = callPackage @@ -145751,8 +137781,6 @@ self: { ]; description = "A rich monadic API for working with leveldb databases"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "higherorder" = callPackage @@ -145766,8 +137794,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Some higher order functions for Bool and []"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "highjson" = callPackage @@ -145785,8 +137811,6 @@ self: { ]; description = "Spec based JSON parsing/serialisation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "highjson-swagger" = callPackage @@ -145805,7 +137829,6 @@ self: { ]; description = "Derive swagger instances from highjson specs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "highjson-th" = callPackage @@ -145826,7 +137849,6 @@ self: { ]; description = "Template Haskell helpers for highjson specs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "highlight" = callPackage @@ -145874,9 +137896,7 @@ self: { ]; description = "Highlight package versions which differ from the latest version on Hackage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "highlight-versions"; - broken = true; }) {}; "highlighter" = callPackage @@ -145954,9 +137974,7 @@ self: { ]; description = "Generate STL models from SRTM elevation data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hills"; - broken = true; }) {}; "himerge" = callPackage @@ -145998,9 +138016,7 @@ self: { ]; description = "Simple gtk2hs image viewer. Point it at an image and fire away."; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "himg"; - broken = true; }) {}; "himpy" = callPackage @@ -146022,7 +138038,6 @@ self: { ]; description = "multithreaded snmp poller for riemann"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "himpy"; }) {}; @@ -146129,8 +138144,6 @@ self: { testHaskellDepends = [ base containers hspec ]; description = "Template for Hindley-Milner based languages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hindley-milner-type-check" = callPackage @@ -146151,8 +138164,6 @@ self: { ]; description = "Type inference for Hindley-Milner based languages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hinduce-associations-apriori" = callPackage @@ -146179,7 +138190,6 @@ self: { libraryHaskellDepends = [ base hinduce-missingh layout ]; description = "Interface and utilities for classifiers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hinduce-classifier-decisiontree" = callPackage @@ -146197,7 +138207,6 @@ self: { ]; description = "Decision Tree Classifiers for hInduce"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hinduce-examples" = callPackage @@ -146217,7 +138226,6 @@ self: { ]; description = "Example data for hInduce"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hinduce-missingh" = callPackage @@ -146373,8 +138381,6 @@ self: { ]; description = "Generate armet style query strings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hinstaller" = callPackage @@ -146390,8 +138396,6 @@ self: { ]; description = "Installer wrapper for Haskell applications"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hint" = callPackage @@ -146428,8 +138432,6 @@ self: { ]; description = "A server process that runs hint"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hinter" = callPackage @@ -146451,8 +138453,6 @@ self: { ]; description = "Runtime Haskell interpreter (GHC API wrapper)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hinterface" = callPackage @@ -146479,8 +138479,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell / Erlang interoperability library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hinvaders" = callPackage @@ -146495,7 +138493,6 @@ self: { executableHaskellDepends = [ base haskell98 random ]; description = "Space Invaders"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hinvaders"; }) {}; @@ -146508,7 +138505,6 @@ self: { libraryHaskellDepends = [ base haskell98 Stream ]; description = "Streams and Unique Fixed Points"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hip" = callPackage @@ -146533,7 +138529,6 @@ self: { ]; description = "Haskell Image Processing (HIP) Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hipbot" = callPackage @@ -146558,7 +138553,6 @@ self: { ]; description = "A library for building HipChat Bots"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hipchat-hs" = callPackage @@ -146577,8 +138571,6 @@ self: { ]; description = "Hipchat API bindings in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hipe" = callPackage @@ -146594,8 +138586,6 @@ self: { ]; description = "Support for reading and writing ipe7 files (http://ipe7.sourceforge.net)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hips" = callPackage @@ -146622,8 +138612,6 @@ self: { sha256 = "18hwc5x902k2dsk8895sr8nil4445b9lazzdzbjzpllx4smf0lvz"; libraryHaskellDepends = [ aeson base bytestring servant ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hipsql-client" = callPackage @@ -146646,7 +138634,6 @@ self: { http-types mtl servant-client servant-client-core ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hipsql"; }) {}; @@ -146679,7 +138666,6 @@ self: { servant-server warp ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hipsql-demo-server"; }) {}; @@ -146695,7 +138681,6 @@ self: { base hipsql-monad hipsql-server postgresql-simple postgresql-tx ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hircules" = callPackage @@ -146714,9 +138699,7 @@ self: { ]; description = "IRC client"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hircules"; - broken = true; }) {}; "hirt" = callPackage @@ -146737,7 +138720,6 @@ self: { ]; description = "Calculates IRT 2PL and 3PL models"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hirt"; }) {}; @@ -146754,8 +138736,6 @@ self: { ]; description = "Unofficial API bindings to KISSmetrics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hist-pl" = callPackage @@ -146779,7 +138759,6 @@ self: { ]; description = "Umbrella package for the historical dictionary of Polish"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hist-pl"; }) {}; @@ -146795,7 +138774,6 @@ self: { ]; description = "A generic, DAWG-based dictionary"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hist-pl-fusion" = callPackage @@ -146812,7 +138790,6 @@ self: { ]; description = "Merging historical dictionary with PoliMorf"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hist-pl-lexicon" = callPackage @@ -146829,7 +138806,6 @@ self: { ]; description = "A binary representation of the historical dictionary of Polish"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hist-pl-lmf" = callPackage @@ -146841,7 +138817,6 @@ self: { libraryHaskellDepends = [ base hist-pl-types polysoup text ]; description = "LMF parsing for the historical dictionary of Polish"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hist-pl-transliter" = callPackage @@ -146864,8 +138839,6 @@ self: { libraryHaskellDepends = [ base binary text text-binary ]; description = "Types in the historical dictionary of Polish"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "histogram-fill" = callPackage @@ -146930,9 +138903,7 @@ self: { ]; description = "Extract the interesting bits from shell history"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "historian"; - broken = true; }) {}; "hit" = callPackage @@ -146951,7 +138922,6 @@ self: { ]; description = "Git like program in haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Hit"; }) {}; @@ -146968,7 +138938,6 @@ self: { ]; description = "Use graph algorithms to access and manipulate Git repos"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "hit-on" = callPackage @@ -146990,9 +138959,7 @@ self: { testHaskellDepends = [ base github hspec text ]; description = "Haskell Git Helper Tool"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "hit"; - broken = true; }) {}; "hix" = callPackage @@ -147019,7 +138986,6 @@ self: { ]; description = "Haskell/Nix development build tools"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; mainProgram = "hix"; }) {}; @@ -147037,8 +139003,6 @@ self: { ]; description = "Jcase library for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hjpath" = callPackage @@ -147068,9 +139032,7 @@ self: { ]; description = "JavaScript Parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hjs"; - broken = true; }) {}; "hjsmin" = callPackage @@ -147117,8 +139079,6 @@ self: { libraryHaskellDepends = [ base containers hjson ]; description = "library for querying from JSON"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hjsonpointer" = callPackage @@ -147140,8 +139100,6 @@ self: { ]; description = "JSON Pointer library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hjsonschema" = callPackage @@ -147172,7 +139130,6 @@ self: { ]; description = "JSON Schema library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hjugement" = callPackage @@ -147222,7 +139179,6 @@ self: { ]; description = "Majority Judgment and Helios-C command line tool"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hjugement"; }) {}; @@ -147251,8 +139207,6 @@ self: { ]; description = "A cryptographic protocol for the Majority Judgment"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hkd" = callPackage @@ -147288,8 +139242,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Definition of \"Delta structures\" for higher kinded data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hkd-lens" = callPackage @@ -147301,8 +139253,6 @@ self: { libraryHaskellDepends = [ base profunctors ]; description = "Generic lens/prism/traversal-kinded data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hkd-records" = callPackage @@ -147314,8 +139264,6 @@ self: { libraryHaskellDepends = [ base hkd template-haskell text ]; description = "higher kinded record operations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hkdf" = callPackage @@ -147364,8 +139312,6 @@ self: { ]; description = "A library for higher kinded types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hlatex" = callPackage @@ -147403,8 +139349,6 @@ self: { ]; description = "Haskell binding to L-BFGS-B version 3.0"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) gfortran;}; "hlcm" = callPackage @@ -147426,7 +139370,6 @@ self: { ]; description = "Fast algorithm for mining closed frequent itemsets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hleap" = callPackage @@ -147449,9 +139392,7 @@ self: { ]; description = "Web Socket interface to Leap Motion controller"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "leap-tracker"; - broken = true; }) {}; "hledger" = callPackage @@ -147525,7 +139466,6 @@ self: { ]; description = "Web API server for the hledger accounting tool"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hledger-api"; }) {}; @@ -147545,9 +139485,7 @@ self: { ]; description = "A pie chart image generator for the hledger accounting tool"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hledger-chart"; - broken = true; }) {}; "hledger-diff" = callPackage @@ -147561,9 +139499,7 @@ self: { executableHaskellDepends = [ base hledger-lib text time ]; description = "Compares the transactions in two ledger files"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hledger-diff"; - broken = true; }) {}; "hledger-flow" = callPackage @@ -147589,9 +139525,7 @@ self: { ]; description = "An hledger workflow focusing on automated statement import and classification"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hledger-flow"; - broken = true; }) {}; "hledger-iadd" = callPackage @@ -147625,9 +139559,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "A terminal UI as drop-in replacement for hledger add"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hledger-iadd"; - broken = true; }) {}; "hledger-interest" = callPackage @@ -147666,9 +139598,7 @@ self: { ]; description = "computes the internal rate of return of an investment"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hledger-irr"; - broken = true; }) {}; "hledger-lib" = callPackage @@ -147731,9 +139661,7 @@ self: { ]; description = "An hledger workflow focusing on automated statement import and classification"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hledger-makeitso"; - broken = true; }) {}; "hledger-stockquotes" = callPackage @@ -147808,9 +139736,7 @@ self: { ]; description = "A curses-style console interface for the hledger accounting tool"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hledger-vty"; - broken = true; }) {}; "hledger-web" = callPackage @@ -147876,8 +139802,6 @@ self: { testHaskellDepends = [ base hlint ]; description = "Haskell binding to libBladeRF SDR library"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libbladeRF;}; "hlibcpuid" = callPackage @@ -147906,8 +139830,6 @@ self: { librarySystemDepends = [ ev ]; description = "FFI interface to libev"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {ev = null;}; "hlibfam" = callPackage @@ -147920,8 +139842,6 @@ self: { librarySystemDepends = [ fam ]; description = "FFI interface to libFAM"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) fam;}; "hlibgit2" = callPackage @@ -148112,8 +140032,6 @@ self: { ]; description = "Client library for the Apache Livy REST API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hlogger" = callPackage @@ -148125,8 +140043,6 @@ self: { libraryHaskellDepends = [ base old-locale time ]; description = "Simple, concurrent, extendable and easy-to-use logging library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hlongurl" = callPackage @@ -148145,9 +140061,7 @@ self: { ]; description = "Library and utility interfacing to longurl.org"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hlongurl"; - broken = true; }) {}; "hlrdb" = callPackage @@ -148197,7 +140111,6 @@ self: { libraryHaskellDepends = [ base containers hcg-minus hps ]; description = "Haskell Lindenmayer Systems"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hls-alternate-number-format-plugin" = callPackage @@ -148231,8 +140144,6 @@ self: { sha256 = "11hnkbpg13zvnq69svm46zm5k55yshgz97kjjx1g3jcb9ah1brm1"; description = "Integration with the Brittany code formatter"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hls-cabal-fmt-plugin" = callPackage @@ -148407,7 +140318,6 @@ self: { ]; description = "Common utilities to interaction between ghc-exactprint and HLS plugins"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "hls-explicit-fixity-plugin" = callPackage @@ -148564,8 +140474,6 @@ self: { sha256 = "0xf38ikm0r0sx4b25g3ns8q421swmy7an4fbs5dmv86r4pr3999m"; description = "Haddock comments plugin for Haskell Language Server"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hls-hlint-plugin" = callPackage @@ -148842,8 +140750,6 @@ self: { ]; description = "HLS Plugin to support smart selection range"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hls-splice-plugin" = callPackage @@ -148877,8 +140783,6 @@ self: { sha256 = "0azlvn5mibmsj3w5pwfkgaydji58bb88bvhzyc49y7gzg24cm23s"; description = "Stan integration plugin with Haskell Language Server"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hls-stylish-haskell-plugin" = callPackage @@ -148907,8 +140811,6 @@ self: { sha256 = "0mry1y7p26lraina8ynsrnm441wprrrp4wcl5ys6xs6z860kxaqf"; description = "Wingman plugin for Haskell Language Server"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hls-test-utils" = callPackage @@ -148946,8 +140848,6 @@ self: { libraryHaskellDepends = [ base stm transformers unix X11 ]; description = "Bindings to the herbstluftwm window manager"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hly" = callPackage @@ -148962,8 +140862,6 @@ self: { ]; description = "Haskell LilyPond"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hmark" = callPackage @@ -148982,7 +140880,6 @@ self: { executableHaskellDepends = [ base ]; description = "A tool and library for Markov chains based text generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hmark"; }) {}; @@ -148997,8 +140894,6 @@ self: { ]; description = "Simple wikitext-like markup format implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hmatrix" = callPackage @@ -149043,7 +140938,6 @@ self: { ]; description = "hmatrix operations lifted for backprop"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hmatrix-banded" = callPackage @@ -149058,8 +140952,6 @@ self: { librarySystemDepends = [ liblapack ]; description = "HMatrix interface to LAPACK functions for banded matrices"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) liblapack;}; "hmatrix-csv" = callPackage @@ -149125,8 +141017,6 @@ self: { libraryHaskellDepends = [ base hmatrix mmap ]; description = "Memory map Vector from disk into memory efficiently"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hmatrix-morpheus" = callPackage @@ -149160,8 +141050,6 @@ self: { libraryHaskellDepends = [ base hmatrix ]; description = "NIPALS method for Principal Components Analysis on large data-sets"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hmatrix-nlopt" = callPackage @@ -149197,7 +141085,6 @@ self: { libraryHaskellDepends = [ base hmatrix repa vector ]; description = "Adaptors for interoperability between hmatrix and repa"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hmatrix-sparse" = callPackage @@ -149211,8 +141098,6 @@ self: { librarySystemDepends = [ mkl_core mkl_intel mkl_sequential ]; description = "Sparse linear solver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {mkl_core = null; mkl_intel = null; mkl_sequential = null;}; "hmatrix-special" = callPackage @@ -149239,8 +141124,6 @@ self: { ]; description = "hmatrix with vector and matrix sizes encoded in types"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hmatrix-sundials" = callPackage @@ -149268,7 +141151,6 @@ self: { ]; description = "hmatrix interface to sundials"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {sundials_arkode = null; sundials_cvode = null;}; "hmatrix-svdlibc" = callPackage @@ -149284,8 +141166,6 @@ self: { benchmarkHaskellDepends = [ base criterion hmatrix vector ]; description = "SVDLIBC bindings for HMatrix"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hmatrix-syntax" = callPackage @@ -149301,8 +141181,6 @@ self: { ]; description = "MATLAB-like syntax for hmatrix vectors and matrices"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hmatrix-tests" = callPackage @@ -149320,8 +141198,6 @@ self: { benchmarkHaskellDepends = [ base HUnit QuickCheck random ]; description = "Tests for hmatrix"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hmatrix-vector-sized" = callPackage @@ -149353,7 +141229,6 @@ self: { ]; description = "Haskell Meapsoft Parser"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hmeap-utils" = callPackage @@ -149373,7 +141248,6 @@ self: { ]; description = "Haskell Meapsoft Parser Utilities"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hmemdb" = callPackage @@ -149402,9 +141276,7 @@ self: { executableHaskellDepends = [ base MissingH process ]; description = "CLI fuzzy finder and launcher"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hmenu"; - broken = true; }) {}; "hmep" = callPackage @@ -149424,7 +141296,6 @@ self: { testHaskellDepends = [ base HUnit vector ]; description = "HMEP Multi Expression Programming – a genetic programming variant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hmidi" = callPackage @@ -149455,9 +141326,7 @@ self: { ]; description = "A make alternative based on Plan9's mk"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hmk"; - broken = true; }) {}; "hmm" = callPackage @@ -149473,8 +141342,6 @@ self: { ]; description = "A hidden markov model library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hmm-hmatrix" = callPackage @@ -149493,8 +141360,6 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Hidden Markov Models using HMatrix primitives"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hmm-lapack" = callPackage @@ -149522,7 +141387,6 @@ self: { doHaddock = false; description = "Hidden Markov Models using LAPACK primitives"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -149544,9 +141408,7 @@ self: { executableSystemDepends = [ ncurses ]; description = "An ncurses mp3 player written in Haskell"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hmp3"; - broken = true; }) {inherit (pkgs) ncurses;}; "hmp3-ng" = callPackage @@ -149637,7 +141499,6 @@ self: { ]; description = "Haskell Music Theory Diagrams"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hmumps" = callPackage @@ -149656,9 +141517,7 @@ self: { ]; description = "Interpreter for the MUMPS langugae"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hmumps"; - broken = true; }) {}; "hnetcdf" = callPackage @@ -149688,8 +141547,6 @@ self: { testSystemDepends = [ netcdf ]; description = "Haskell NetCDF library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) netcdf;}; "hnix" = callPackage @@ -149878,8 +141735,6 @@ self: { ]; description = "A reasonably fast and simple neural network library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hnock" = callPackage @@ -149895,9 +141750,7 @@ self: { testHaskellDepends = [ base ]; description = "A Nock interpreter"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hnock"; - broken = true; }) {}; "hnop" = callPackage @@ -149910,9 +141763,7 @@ self: { isExecutable = true; executableHaskellDepends = [ base ]; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "hnop"; - broken = true; }) {}; "hnormalise" = callPackage @@ -149954,7 +141805,6 @@ self: { ]; description = "Log message normalisation tool producing structured JSON messages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ho-rewriting" = callPackage @@ -149970,7 +141820,6 @@ self: { testHaskellDepends = [ base compdata patch-combinators ]; description = "Generic rewrite rules with safe treatment of variables and binders"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hoauth" = callPackage @@ -149988,8 +141837,6 @@ self: { ]; description = "A Haskell implementation of OAuth 1.0a protocol."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hoauth2" = callPackage @@ -150057,7 +141904,6 @@ self: { ]; description = "hoauth2 demo application"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hoauth2-demo"; }) {}; @@ -150078,8 +141924,6 @@ self: { ]; description = "OAuth2 Identity Providers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hoauth2-providers-tutorial" = callPackage @@ -150101,7 +141945,6 @@ self: { executableHaskellDepends = [ base ]; description = "tutorial for hoauth2-providers module"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hoauth2-providers-tutorial"; }) {}; @@ -150122,9 +141965,7 @@ self: { executableHaskellDepends = [ base ]; description = "Tutorial for using hoauth2"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hoauth2-tutorial"; - broken = true; }) {}; "hob" = callPackage @@ -150152,7 +141993,6 @@ self: { ]; description = "A source code editor aiming for the convenience of use"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hob"; }) {}; @@ -150171,9 +142011,7 @@ self: { ]; description = "A small file watcher for OSX"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hobbes"; - broken = true; }) {}; "hobbits" = callPackage @@ -150191,8 +142029,6 @@ self: { ]; description = "A library for canonically representing terms with binding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hocilib" = callPackage @@ -150212,8 +142048,6 @@ self: { testSystemDepends = [ ocilib ]; description = "FFI binding to OCILIB"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {ocilib = null;}; "hocker" = callPackage @@ -150256,8 +142090,6 @@ self: { ]; description = "Interact with the docker registry and generate nix build instructions"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hocon" = callPackage @@ -150270,8 +142102,6 @@ self: { testHaskellDepends = [ base hspec MissingH parsec split ]; description = "Small library for typesafe's configuration specification"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hodatime" = callPackage @@ -150295,8 +142125,6 @@ self: { benchmarkHaskellDepends = [ base criterion random ]; description = "A fully featured date/time library based on Nodatime"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hoe" = callPackage @@ -150315,9 +142143,7 @@ self: { ]; description = "hoe: Haskell One-liner Evaluator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hoe"; - broken = true; }) {}; "hofix-mtl" = callPackage @@ -150329,8 +142155,6 @@ self: { libraryHaskellDepends = [ base mtl star-to-star template-haskell ]; description = "defining @mtl@-ready monads as * -> * fixed-points"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hog" = callPackage @@ -150348,9 +142172,7 @@ self: { ]; description = "Simple IRC logger bot"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hog"; - broken = true; }) {}; "hogg" = callPackage @@ -150368,8 +142190,6 @@ self: { ]; description = "Library and tools to manipulate the Ogg container format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hoggl" = callPackage @@ -150395,9 +142215,7 @@ self: { ]; description = "Bindings to the Toggl.com REST API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hoggl"; - broken = true; }) {}; "hogre" = callPackage @@ -150413,7 +142231,6 @@ self: { doHaddock = false; description = "Haskell binding to a subset of OGRE"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {OGRE = null; OgreMain = null; cgen-hs = null; grgen = null;}; "hogre-examples" = callPackage @@ -150429,7 +142246,6 @@ self: { executableSystemDepends = [ OgreMain ]; description = "Examples for using Hogre"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {OgreMain = null;}; "hois" = callPackage @@ -150445,9 +142261,7 @@ self: { executableHaskellDepends = [ base X11 ]; description = "OIS bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "OISConsole"; - broken = true; }) {OIS = null;}; "hoist-error" = callPackage @@ -150503,8 +142317,6 @@ self: { libraryHaskellDepends = [ base random safe ]; description = "An engine for Texas hold'em Poker"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hole" = callPackage @@ -150516,8 +142328,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Higher kinded type removal"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "holey-format" = callPackage @@ -150553,8 +142363,6 @@ self: { testToolDepends = [ markdown-unlit tasty-discover ]; description = "Tools and combinators for solving constraint problems"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "holy-project" = callPackage @@ -150589,7 +142397,6 @@ self: { doCheck = false; description = "Start your Haskell project with cabal, git and tests"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "homeomorphic" = callPackage @@ -150601,8 +142408,6 @@ self: { libraryHaskellDepends = [ base containers mtl QuickCheck ]; description = "Homeomorphic Embedding Test"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hommage" = callPackage @@ -150616,7 +142421,6 @@ self: { ]; description = "Haskell Offline Music Manipulation And Generation EDSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hommage-ds" = callPackage @@ -150643,8 +142447,6 @@ self: { testHaskellDepends = [ base ]; description = "Constructs FAlgebras from typeclasses, making Haskell functions homoiconic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "homotuple" = callPackage @@ -150661,7 +142463,6 @@ self: { libraryHaskellDepends = [ base OneTuple Only single-tuple ]; description = "Homotuple, all whose elements are the same type"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "homplexity" = callPackage @@ -150692,9 +142493,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell code quality tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "homplexity-cli"; - broken = true; }) {}; "homura-stopwatch" = callPackage @@ -150751,8 +142550,6 @@ self: { testSystemDepends = [ freenect OpenNI2 ]; description = "OpenNI 2 binding"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {OpenNI2 = null; inherit (pkgs) freenect;}; "honk" = callPackage @@ -150783,9 +142580,7 @@ self: { ]; description = "Simple tool for fetching and merging hoogle data"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hoobuddy"; - broken = true; }) {}; "hood" = callPackage @@ -150798,7 +142593,6 @@ self: { testHaskellDepends = [ base ghc-prim ]; description = "Debugging by observing in place"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hood-off" = callPackage @@ -150810,8 +142604,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Dummy package to disable Hood without having to remove all the calls to observe"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hood2" = callPackage @@ -150823,8 +142615,6 @@ self: { libraryHaskellDepends = [ array base ]; description = "Debugging by observing in place"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hoodie" = callPackage @@ -150842,7 +142632,6 @@ self: { ]; description = "A small, toy roguelike"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hoodie"; }) {}; @@ -150864,7 +142653,6 @@ self: { executableHaskellDepends = [ base cmdargs hoodle-core ]; description = "Executable for hoodle"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hoodle"; }) {}; @@ -150882,7 +142670,6 @@ self: { ]; description = "text builder for hoodle file format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hoodle-core" = callPackage @@ -150915,7 +142702,6 @@ self: { librarySystemDepends = [ libX11 libXi ]; description = "Core library for hoodle"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXi;}; "hoodle-extra" = callPackage @@ -150941,7 +142727,6 @@ self: { ]; description = "extra hoodle tools"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "hoodle-parser" = callPackage @@ -150959,7 +142744,6 @@ self: { ]; description = "Hoodle file parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hoodle-publish" = callPackage @@ -150986,7 +142770,6 @@ self: { ]; description = "publish hoodle files as a static web site"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hoodle-publish"; }) {}; @@ -151008,7 +142791,6 @@ self: { ]; description = "Hoodle file renderer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hoodle-types" = callPackage @@ -151025,8 +142807,6 @@ self: { ]; description = "Data types for programs for hoodle file format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hoogle" = callPackage @@ -151079,9 +142859,7 @@ self: { ]; description = "Easily generate Hoogle indices for installed packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hoogle-index"; - broken = true; }) {}; "hooks-dir" = callPackage @@ -151093,8 +142871,6 @@ self: { libraryHaskellDepends = [ base directory process text ]; description = "run executables in a directory as hooks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hookup" = callPackage @@ -151134,8 +142910,6 @@ self: { ]; description = "Object-Oriented Programming in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hoopl" = callPackage @@ -151155,8 +142929,6 @@ self: { ]; description = "A library to support dataflow analysis and optimization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hoovie" = callPackage @@ -151180,7 +142952,6 @@ self: { ]; description = "Haskell Media Server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hoovie"; }) {}; @@ -151198,8 +142969,6 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Haskell binding to libopencc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) opencc;}; "hopencl" = callPackage @@ -151219,8 +142988,6 @@ self: { ]; description = "Haskell bindings for OpenCL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {OpenCL = null;}; "hopenpgp-tools" = callPackage @@ -151252,8 +143019,6 @@ self: { executableToolDepends = [ alex happy ]; description = "hOpenPGP-based command-line tools"; license = lib.licenses.agpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hopenssl" = callPackage @@ -151299,8 +143064,6 @@ self: { ]; description = "Hopfield Networks, Boltzmann Machines and Clusters"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {MagickCore = null; inherit (pkgs) imagemagick;}; "hopfield-networks" = callPackage @@ -151352,7 +143115,6 @@ self: { ]; description = "C++ FFI generator - Documentation"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "hoppy-generator" = callPackage @@ -151369,8 +143131,6 @@ self: { ]; description = "C++ FFI generator - Code generator"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hoppy-runtime" = callPackage @@ -151386,7 +143146,6 @@ self: { ]; description = "C++ FFI generator - Runtime support"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "hoppy-std" = callPackage @@ -151401,7 +143160,6 @@ self: { ]; description = "C++ FFI generator - Standard library bindings"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "hops" = callPackage @@ -151434,9 +143192,7 @@ self: { ]; description = "Handy Operations on Power Series"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hops"; - broken = true; }) {}; "hoq" = callPackage @@ -151456,9 +143212,7 @@ self: { executableToolDepends = [ alex happy ]; description = "A language based on homotopy type theory with an interval type"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hoq"; - broken = true; }) {}; "hora" = callPackage @@ -151487,8 +143241,6 @@ self: { libraryHaskellDepends = [ AC-Angle base time ]; description = "Sunrise and sunset UTC approximations from latitude and longitude coordinates"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "horizon-gen-nix" = callPackage @@ -151511,7 +143263,6 @@ self: { executableHaskellDepends = [ base directory path sydtest ]; description = "Generate nix expressions from horizon-spec definitions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "horizon-spec" = callPackage @@ -151528,8 +143279,6 @@ self: { ]; description = "Horizon Stable Package Set Type Definitions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "horizon-spec-lens" = callPackage @@ -151541,7 +143290,6 @@ self: { libraryHaskellDepends = [ base horizon-spec lens ]; description = "Horizon Stable Package Set Lenses"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "horizon-spec-pretty" = callPackage @@ -151557,7 +143305,6 @@ self: { ]; description = "Horizon Stable Package Set Pretty Printer"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "horizontal-rule" = callPackage @@ -151577,7 +143324,6 @@ self: { testHaskellDepends = [ base HMock tasty tasty-hunit ]; description = "horizontal rule for the terminal"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hr"; }) {}; @@ -151597,9 +143343,7 @@ self: { executableHaskellDepends = [ base optparse-applicative text ]; description = "Rename function definitions returned by SMT solvers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "horname"; - broken = true; }) {}; "hosc" = callPackage @@ -151635,8 +143379,6 @@ self: { ]; description = "Haskell Open Sound Control JSON Serialisation"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hosc-utils" = callPackage @@ -151714,9 +143456,7 @@ self: { ]; description = "An dns server which is extremely easy to config"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hosts-server"; - broken = true; }) {}; "hothasktags" = callPackage @@ -151735,9 +143475,7 @@ self: { ]; description = "Generates ctags for Haskell, incorporating import lists and qualified imports"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hothasktags"; - broken = true; }) {}; "hotswap" = callPackage @@ -151749,7 +143487,6 @@ self: { libraryHaskellDepends = [ base plugins ]; description = "Simple code hotswapping"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hourglass" = callPackage @@ -151780,8 +143517,6 @@ self: { libraryHaskellDepends = [ base hourglass parsec ]; description = "A small library for parsing more human friendly date/time formats"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hourglass-orphans" = callPackage @@ -151827,9 +143562,7 @@ self: { ]; description = "A Haskell implementation of Foreman"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "houseman"; - broken = true; }) {}; "hout" = callPackage @@ -151858,8 +143591,6 @@ self: { ]; description = "Heap profiling helper library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hp2any-graph" = callPackage @@ -151881,7 +143612,6 @@ self: { executableSystemDepends = [ freeglut libGL libGLU ]; description = "Real-time heap graphing utility and profile stream server with a reusable graphing module"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) freeglut; inherit (pkgs) libGL; inherit (pkgs) libGLU;}; @@ -151903,7 +143633,6 @@ self: { ]; description = "A utility to visualise and compare heap profiles"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hp2any-manager"; }) {}; @@ -152051,9 +143780,7 @@ self: { ]; description = "Convert Cabal manifests into hpack's package.yamls"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hpack-convert"; - broken = true; }) {}; "hpack-dhall" = callPackage @@ -152084,8 +143811,6 @@ self: { ]; description = "hpack's dhalling"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hpaco" = callPackage @@ -152103,7 +143828,6 @@ self: { ]; description = "Modular template compiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hpaco"; }) {}; @@ -152122,7 +143846,6 @@ self: { ]; description = "Modular template compiler library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hpage" = callPackage @@ -152144,7 +143867,6 @@ self: { ]; description = "A scrapbook for Haskell developers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hpage"; }) {}; @@ -152159,8 +143881,6 @@ self: { description = "Binding for the PAPI library"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) papi;}; "hpaste" = callPackage @@ -152188,7 +143908,6 @@ self: { ]; description = "Haskell paste web site"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hpaste"; }) {}; @@ -152209,9 +143928,7 @@ self: { ]; description = "A command-line client for hpaste.org"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hpasteit"; - broken = true; }) {}; "hpath" = callPackage @@ -152252,8 +143969,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Alternative to 'directory' package with ByteString based filepaths"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hpath-filepath" = callPackage @@ -152282,7 +143997,6 @@ self: { ]; description = "High-level IO operations on files/directories"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hpath-posix" = callPackage @@ -152380,8 +144094,6 @@ self: { testHaskellDepends = [ base HUnit ]; description = "Coveralls.io support for Haskell."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hpc-lcov" = callPackage @@ -152456,7 +144168,6 @@ self: { ]; description = "Tracer with AJAX interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hpc-tracer"; }) {}; @@ -152498,9 +144209,7 @@ self: { executableHaskellDepends = [ base random ]; description = "a simple password generator"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; mainProgram = "hpg"; - broken = true; }) {}; "hpio" = callPackage @@ -152530,8 +144239,6 @@ self: { ]; description = "Monads for GPIO in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hplayground" = callPackage @@ -152548,7 +144255,6 @@ self: { ]; description = "monadic, reactive Formlets running in the Web browser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hplaylist" = callPackage @@ -152563,9 +144269,7 @@ self: { executableHaskellDepends = [ base directory filepath process ]; description = "Application for managing playlist files on a music player"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hplaylist"; - broken = true; }) {}; "hpodder" = callPackage @@ -152585,9 +144289,7 @@ self: { ]; description = "Podcast Aggregator (downloader)"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hpodder"; - broken = true; }) {}; "hpp" = callPackage @@ -152637,8 +144339,6 @@ self: { ]; description = "Haskell bindings to libpqtypes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {libpq = null;}; "hpqtypes-effectful" = callPackage @@ -152658,7 +144358,6 @@ self: { ]; description = "Adaptation of the hpqtypes library for the effectful ecosystem"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hpqtypes-extras" = callPackage @@ -152681,7 +144380,6 @@ self: { benchmarkHaskellDepends = [ base deepseq tasty-bench ]; description = "Extra utilities for hpqtypes library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hprotoc" = callPackage @@ -152711,7 +144409,6 @@ self: { executableToolDepends = [ alex ]; description = "Parse Google Protocol Buffer specifications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hprotoc"; }) {}; @@ -152741,7 +144438,6 @@ self: { executableToolDepends = [ alex ]; description = "Parse Google Protocol Buffer specifications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hprotoc"; }) {}; @@ -152772,9 +144468,7 @@ self: { ]; description = "a lightweight HTTP proxy server, and more"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "hprox"; - broken = true; }) {}; "hps" = callPackage @@ -152787,7 +144481,6 @@ self: { libraryHaskellDepends = [ base filepath hcg-minus process ]; description = "Haskell Postscript"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hps-cairo" = callPackage @@ -152803,7 +144496,6 @@ self: { executableHaskellDepends = [ base cairo gtk hps random ]; description = "Cairo rendering for the haskell postscript library"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hps-kmeans" = callPackage @@ -152815,8 +144507,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "A nice implementation of the k-Means algorithm"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hpuz" = callPackage @@ -152844,8 +144534,6 @@ self: { ]; description = "Highlight source code using Pygments"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hpylos" = callPackage @@ -152861,9 +144549,7 @@ self: { ]; description = "AI of Pylos game with GLUT interface"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hpylos"; - broken = true; }) {}; "hpyrg" = callPackage @@ -152879,9 +144565,7 @@ self: { ]; description = "pyrg utility done right"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hpyrg"; - broken = true; }) {}; "hpython" = callPackage @@ -152911,7 +144595,6 @@ self: { ]; description = "Python language tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -152939,7 +144622,6 @@ self: { testHaskellDepends = [ base hspec hspec-expectations ]; description = "Quantitative Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gsl;}; "hquantlib" = callPackage @@ -152969,7 +144651,6 @@ self: { ]; description = "HQuantLib is a port of essencial parts of QuantLib to Haskell"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "mctest"; }) {}; @@ -152982,8 +144663,6 @@ self: { libraryHaskellDepends = [ base time ]; description = "HQuantLib Time is a business calendar functions extracted from HQuantLib"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hquery" = callPackage @@ -153001,8 +144680,6 @@ self: { ]; description = "A query language for transforming HTML5"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hranker" = callPackage @@ -153016,7 +144693,6 @@ self: { executableHaskellDepends = [ base HCL NonEmpty ]; description = "Basic utility for ranking a list of items"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hranker"; }) {}; @@ -153080,7 +144756,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A Type dependent Highlevel HTTP client library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -153106,7 +144781,6 @@ self: { testToolDepends = [ hspec-discover markdown-unlit ]; description = "Conduit streaming support for Hreq"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hreq-core" = callPackage @@ -153127,8 +144801,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Core functionality for Hreq Http client library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hrfsize" = callPackage @@ -153154,9 +144826,7 @@ self: { executableHaskellDepends = [ base containers ]; description = "A Cricket scoring application"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hricket"; - broken = true; }) {}; "hriemann" = callPackage @@ -153182,7 +144852,6 @@ self: { ]; description = "A Riemann Client for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hriemann-exe"; }) {}; @@ -153206,8 +144875,6 @@ self: { ]; description = "Embed a Ruby intepreter in your Haskell program !"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) ruby;}; "hs" = callPackage @@ -153231,7 +144898,6 @@ self: { ]; description = "GHC-toolchain installer broker"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hs"; }) {}; @@ -153295,7 +144961,6 @@ self: { benchmarkSystemDepends = [ libb2 ]; description = "A cryptohash-inspired library for blake2"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libb2;}; "hs-brotli" = callPackage @@ -153314,8 +144979,6 @@ self: { ]; description = "Compression and decompression in the brotli format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {brotlidec = null; brotlienc = null;}; "hs-captcha" = callPackage @@ -153356,8 +145019,6 @@ self: { ]; description = "Example Monte Carlo simulations implemented with Carbon"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hs-cdb" = callPackage @@ -153423,9 +145084,7 @@ self: { ]; description = "Dependency Injection library for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hs-di-cases"; - broken = true; }) {}; "hs-dotnet" = callPackage @@ -153438,8 +145097,6 @@ self: { librarySystemDepends = [ ole32 oleaut32 ]; description = "Pragmatic .NET interop for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {ole32 = null; oleaut32 = null;}; "hs-duktape" = callPackage @@ -153464,8 +145121,6 @@ self: { ]; description = "Haskell bindings for a very compact embedded ECMAScript (JavaScript) engine"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hs-excelx" = callPackage @@ -153481,8 +145136,6 @@ self: { ]; description = "HS-Excelx provides basic read-only access to Excel 2007 and 2010 documents in XLSX format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hs-ffmpeg" = callPackage @@ -153494,7 +145147,6 @@ self: { libraryHaskellDepends = [ base bytestring haskell98 ]; description = "Bindings to FFMPEG library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hs-fltk" = callPackage @@ -153508,8 +145160,6 @@ self: { librarySystemDepends = [ fltk fltk_images ]; description = "Binding to GUI library FLTK"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) fltk; fltk_images = null;}; "hs-functors" = callPackage @@ -153551,7 +145201,6 @@ self: { ]; description = "Utility to generate haskell-names interface files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hs-gen-iface"; }) {}; @@ -153568,8 +145217,6 @@ self: { ]; description = "Haskell wrapper around the GIZA++ toolkit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hs-inspector" = callPackage @@ -153612,8 +145259,6 @@ self: { ]; description = "Java .class files assembler/disassembler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hs-json-rpc" = callPackage @@ -153627,8 +145272,6 @@ self: { ]; description = "JSON-RPC client library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hs-logo" = callPackage @@ -153655,9 +145298,7 @@ self: { ]; description = "Logo interpreter written in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hs-logo"; - broken = true; }) {}; "hs-mesos" = callPackage @@ -153716,9 +145357,7 @@ self: { executableHaskellDepends = [ base HandsomeSoup hxt random ]; description = "Name generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hs-nombre-generator"; - broken = true; }) {}; "hs-openmoji-data" = callPackage @@ -153733,9 +145372,7 @@ self: { executableHaskellDepends = [ base containers emojis text ]; description = "The OpenMoji emoji dataset"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "readme"; - broken = true; }) {}; "hs-opentelemetry-api" = callPackage @@ -154120,9 +145757,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "DSL for musical patterns and transformation, based on contravariant functors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hs-pattrans"; - broken = true; }) {}; "hs-pgms" = callPackage @@ -154142,9 +145777,7 @@ self: { ]; description = "Programmer's Mine Sweeper in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hs-pgms"; - broken = true; }) {}; "hs-php-session" = callPackage @@ -154171,8 +145804,6 @@ self: { libraryHaskellDepends = [ base data-default-class text ]; description = "Create pkg-config configuration files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hs-pkpass" = callPackage @@ -154193,7 +145824,6 @@ self: { ]; description = "A library for Passbook pass creation & signing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hs-popen" = callPackage @@ -154231,8 +145861,6 @@ self: { libraryHaskellDepends = [ array base regex-base regex-posix ]; description = "Easy to use Regex"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hs-rqlite" = callPackage @@ -154249,8 +145877,6 @@ self: { ]; description = "A Haskell client for RQlite"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hs-rs-notify" = callPackage @@ -154271,9 +145897,7 @@ self: { testHaskellDepends = [ base protolude ]; description = "Experimental! Wraps this awesome rust library so you can use it in haskell. https://docs.rs/crate/notify"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "notify"; - broken = true; }) {notifier = null;}; "hs-scrape" = callPackage @@ -154294,8 +145918,6 @@ self: { ]; description = "Simple and easy web scraping and automation in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hs-sdl-term-emulator" = callPackage @@ -154317,7 +145939,6 @@ self: { executableHaskellDepends = [ base ]; description = "Terminal Emulator written in Haskell, SDL2 Backend"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hs-sdl-term-emulator"; }) {}; @@ -154350,9 +145971,7 @@ self: { ]; description = "snowtify send your result of `stack build` (`stack test`) to notify-daemon :dog2:"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "snowtify"; - broken = true; }) {}; "hs-speedscope" = callPackage @@ -154403,9 +146022,7 @@ self: { ]; description = "Create tag files (ctags and etags) for Haskell code"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hs-tags"; - broken = true; }) {}; "hs-term-emulator" = callPackage @@ -154427,8 +146044,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Terminal Emulator written in 100% Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hs-twitter" = callPackage @@ -154446,8 +146061,6 @@ self: { ]; description = "Haskell binding to the Twitter API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hs-twitterarchiver" = callPackage @@ -154462,9 +146075,7 @@ self: { executableHaskellDepends = [ base HTTP json mtl network pretty ]; description = "Commandline Twitter feed archiver"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hs-twitterarchiver"; - broken = true; }) {}; "hs-vcard" = callPackage @@ -154476,8 +146087,6 @@ self: { libraryHaskellDepends = [ base old-locale time ]; description = "Implements the RFC 2426 vCard 3.0 spec"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hs-watchman" = callPackage @@ -154497,8 +146106,6 @@ self: { ]; description = "Client library for Facebook's Watchman tool"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hs-zstd" = callPackage @@ -154587,9 +146194,7 @@ self: { ]; description = "Haskell to Brainfuck compiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hs2bf"; - broken = true; }) {}; "hs2dot" = callPackage @@ -154607,7 +146212,6 @@ self: { ]; description = "Generate graphviz-code from Haskell-code"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "hs2dot"; }) {}; @@ -154621,8 +146225,6 @@ self: { testHaskellDepends = [ base hspec template-haskell ]; description = "Translate Haskell types to PureScript"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsConfigure" = callPackage @@ -154647,8 +146249,6 @@ self: { libraryHaskellDepends = [ base bytestring unix ]; description = "I2C access for Haskell and Linux"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsPID" = callPackage @@ -154677,8 +146277,6 @@ self: { ]; description = "Sqlite3 bindings"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsXenCtrl" = callPackage @@ -154691,8 +146289,6 @@ self: { librarySystemDepends = [ xenctrl ]; description = "FFI bindings to the Xen Control library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {xenctrl = null;}; "hsakamai" = callPackage @@ -154753,7 +146349,6 @@ self: { ]; description = "OASIS Security Assertion Markup Language (SAML) V2.0"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libxml2;}; "hsass" = callPackage @@ -154794,7 +146389,6 @@ self: { testHaskellDepends = [ base cpython hspec ]; description = "Haskell bindings for PyAutoGUI, a library for automating user interaction"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hsay" = callPackage @@ -154809,9 +146403,7 @@ self: { executableHaskellDepends = [ base Hclip HTTP process unix ]; description = "(ab)Use Google Translate as a speech synthesiser"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hsay"; - broken = true; }) {}; "hsb2hs" = callPackage @@ -154848,7 +146440,6 @@ self: { ]; description = "simple utility for rolling filesystem backups"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hsbackup"; }) {}; @@ -154863,9 +146454,7 @@ self: { executableHaskellDepends = [ attoparsec base text vector ]; description = "A command line calculator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hsbc"; - broken = true; }) {}; "hsbencher" = callPackage @@ -154888,8 +146477,6 @@ self: { ]; description = "Launch and gather data from Haskell and non-Haskell benchmarks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsbencher-codespeed" = callPackage @@ -154908,7 +146495,6 @@ self: { ]; description = "Backend for uploading benchmark data to CodeSpeed"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hsbencher-fusion" = callPackage @@ -154932,7 +146518,6 @@ self: { ]; description = "Backend for uploading benchmark data to Google Fusion Tables"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hsblst" = callPackage @@ -154995,8 +146580,6 @@ self: { ]; description = "Haskell SuperCollider"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsc3-auditor" = callPackage @@ -155012,7 +146595,6 @@ self: { ]; description = "Haskell SuperCollider Auditor"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hsc3-cairo" = callPackage @@ -155025,7 +146607,6 @@ self: { libraryHaskellDepends = [ base cairo gtk hosc hsc3 split ]; description = "haskell supercollider cairo drawing"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hsc3-data" = callPackage @@ -155043,7 +146624,6 @@ self: { ]; description = "haskell supercollider data"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hsc3-db" = callPackage @@ -155056,7 +146636,6 @@ self: { libraryHaskellDepends = [ base hsc3 safe ]; description = "Haskell SuperCollider Unit Generator Database"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hsc3-dot" = callPackage @@ -155069,7 +146648,6 @@ self: { libraryHaskellDepends = [ base directory filepath hsc3 process ]; description = "haskell supercollider graph drawing"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hsc3-forth" = callPackage @@ -155089,7 +146667,6 @@ self: { ]; description = "FORTH SUPERCOLLIDER"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hsc3-forth"; }) {}; @@ -155115,7 +146692,6 @@ self: { executableHaskellDepends = [ base ]; description = "Haskell SuperCollider Graphs"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hsc3-graphs"; }) {}; @@ -155137,7 +146713,6 @@ self: { ]; description = "Haskell SuperCollider Language"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hsc3-lisp" = callPackage @@ -155157,7 +146732,6 @@ self: { ]; description = "LISP SUPERCOLLIDER"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hsc3-lisp"; }) {}; @@ -155176,7 +146750,6 @@ self: { ]; description = "Haskell SuperCollider Plotting"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hsc3-process" = callPackage @@ -155196,7 +146769,6 @@ self: { ]; description = "Create and control scsynth processes"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hsc3-rec" = callPackage @@ -155209,7 +146781,6 @@ self: { libraryHaskellDepends = [ base hsc3 ]; description = "Haskell SuperCollider Record Variants"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hsc3-rw" = callPackage @@ -155227,8 +146798,6 @@ self: { ]; description = "hsc3 re-writing"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsc3-server" = callPackage @@ -155255,7 +146824,6 @@ self: { ]; description = "SuperCollider server resource management and synchronization"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hsc3-sf" = callPackage @@ -155268,8 +146836,6 @@ self: { libraryHaskellDepends = [ base bytestring hosc ]; description = "Haskell SuperCollider SoundFile"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsc3-sf-hsndfile" = callPackage @@ -155286,7 +146852,6 @@ self: { ]; description = "Haskell SuperCollider SoundFile"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hsc3-unsafe" = callPackage @@ -155299,7 +146864,6 @@ self: { libraryHaskellDepends = [ base hsc3 ]; description = "Unsafe Haskell SuperCollider"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hsc3-utils" = callPackage @@ -155321,7 +146885,6 @@ self: { ]; description = "Haskell SuperCollider Utilities"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hscaffold" = callPackage @@ -155348,9 +146911,7 @@ self: { ]; description = "Very simple file/directory structure scaffolding writer monad EDSL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hsfiles-from-directory"; - broken = true; }) {}; "hscamwire" = callPackage @@ -155365,8 +146926,6 @@ self: { librarySystemDepends = [ camwire_1394 dc1394_control raw1394 ]; description = "Haskell bindings to IIDC1394 cameras, via Camwire"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {camwire_1394 = null; dc1394_control = null; raw1394 = null;}; "hscassandra" = callPackage @@ -155383,7 +146942,6 @@ self: { ]; description = "cassandra database interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hscd" = callPackage @@ -155398,9 +146956,7 @@ self: { executableHaskellDepends = [ aeson base bytestring ghc-prim HTTP ]; description = "Command line client and library for SoundCloud.com"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hscd"; - broken = true; }) {}; "hscdio" = callPackage @@ -155425,8 +146981,6 @@ self: { ]; description = "Haskell bindings to the libcdio disc-reading library"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; }) {cdio = null;}; "hscharm" = callPackage @@ -155487,8 +147041,6 @@ self: { ]; description = "Describe schemas for your Haskell data types"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hschema-prettyprinter" = callPackage @@ -155572,9 +147124,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "hscim json schema and server implementation"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hscim-server"; - broken = true; }) {}; "hsclock" = callPackage @@ -155588,9 +147138,7 @@ self: { executableHaskellDepends = [ base cairo glib gtk old-time ]; description = "An elegant analog clock using Haskell, GTK and Cairo"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hsclock"; - broken = true; }) {}; "hscolour" = callPackage @@ -155629,7 +147177,6 @@ self: { ]; description = "cscope like browser for Haskell code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hscope"; }) {}; @@ -155668,9 +147215,7 @@ self: { testHaskellDepends = [ base containers text ]; description = "Collision-resistant IDs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "perf-test"; - broken = true; }) {}; "hscurses" = callPackage @@ -155745,7 +147290,6 @@ self: { ]; description = "Haskell development library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hsdev"; }) {}; @@ -155759,8 +147303,6 @@ self: { libraryHaskellDepends = [ base bytestring hosc ]; description = "Haskell SDIF"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsdip" = callPackage @@ -155775,9 +147317,7 @@ self: { libraryHaskellDepends = [ base cairo containers HUnit parsec ]; description = "hsdip - a Diplomacy parser/renderer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hsdip"; - broken = true; }) {}; "hsdns" = callPackage @@ -155810,8 +147350,6 @@ self: { ]; description = "Caching asynchronous DNS resolver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hse-cpp" = callPackage @@ -155840,8 +147378,6 @@ self: { ]; description = "Haskell eBay SDK"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsemail" = callPackage @@ -155885,7 +147421,6 @@ self: { ]; description = "sendxmpp clone, sending XMPP messages via CLI"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hsendxmpp"; }) {}; @@ -155907,9 +147442,7 @@ self: { ]; description = "Virtual Haskell Environment builder"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hsenv"; - broken = true; }) {}; "hserv" = callPackage @@ -155965,7 +147498,6 @@ self: { libraryHaskellDepends = [ base containers language-puppet text ]; description = "A small and ugly library that emulates the output of the puppet facter program"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "hsfcsh" = callPackage @@ -155981,8 +147513,6 @@ self: { ]; description = "Incremental builder for flash"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsfilt" = callPackage @@ -155996,9 +147526,7 @@ self: { executableHaskellDepends = [ base ghc ]; description = "Z-decoder"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hsfilt"; - broken = true; }) {}; "hsforce" = callPackage @@ -156022,8 +147550,6 @@ self: { ]; description = "Salesforce API Client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsgnutls" = callPackage @@ -156036,8 +147562,6 @@ self: { librarySystemDepends = [ gcrypt gnutls ]; description = "Library wrapping the GnuTLS API"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {gcrypt = null; inherit (pkgs) gnutls;}; "hsgnutls-yj" = callPackage @@ -156050,8 +147574,6 @@ self: { librarySystemDepends = [ gcrypt gnutls ]; description = "Library wrapping the GnuTLS API"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {gcrypt = null; inherit (pkgs) gnutls;}; "hsgsom" = callPackage @@ -156064,8 +147586,6 @@ self: { libraryHaskellDepends = [ base containers random stm time ]; description = "An implementation of the GSOM clustering algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsgtd" = callPackage @@ -156160,9 +147680,7 @@ self: { doHaddock = false; description = "Extend the import list of a Haskell source file"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hsimport"; - broken = true; }) {}; "hsini" = callPackage @@ -156179,8 +147697,6 @@ self: { ]; description = "ini configuration files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsinspect" = callPackage @@ -156203,9 +147719,7 @@ self: { ]; description = "Inspect Haskell source files"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "hsinspect"; - broken = true; }) {}; "hsinspect-lsp" = callPackage @@ -156236,7 +147750,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "LSP interface over the hsinspect binary"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "hsinspect-lsp"; }) {}; @@ -156271,8 +147784,6 @@ self: { libraryHaskellDepends = [ base Cabal ]; description = "Skeleton for new Haskell programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hslackbuilder" = callPackage @@ -156288,9 +147799,7 @@ self: { ]; description = "HSlackBuilder automatically generates slackBuild scripts from a cabal package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cabal2slackBuild"; - broken = true; }) {}; "hslibsvm" = callPackage @@ -156304,8 +147813,6 @@ self: { librarySystemDepends = [ svm ]; description = "A FFI binding to libsvm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {svm = null;}; "hslinks" = callPackage @@ -156322,9 +147829,7 @@ self: { ]; description = "Resolves links to Haskell identifiers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hslinks"; - broken = true; }) {}; "hslogger" = callPackage @@ -156362,8 +147867,6 @@ self: { ]; description = "Parsing hslogger-produced logs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hslogger-template" = callPackage @@ -156375,8 +147878,6 @@ self: { libraryHaskellDepends = [ base hslogger mtl template-haskell ]; description = "Automatic generation of hslogger functions"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hslogger4j" = callPackage @@ -156415,7 +147916,6 @@ self: { ]; description = "A library to work with, or as, a logstash server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hslua" = callPackage @@ -156539,8 +148039,6 @@ self: { executableHaskellDepends = [ base bytestring hslua lua text ]; description = "Examples of how to combine Haskell and Lua"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hslua-list" = callPackage @@ -156782,8 +148280,6 @@ self: { testHaskellDepends = [ aeson base bytestring colour containers ]; description = "HSLuv conversion utility"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsmagick" = callPackage @@ -156805,8 +148301,6 @@ self: { libraryPkgconfigDepends = [ freetype GraphicsMagick lcms libxml2 ]; description = "FFI bindings for the GraphicsMagick library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {GraphicsMagick = null; inherit (pkgs) bzip2; inherit (pkgs) freetype; inherit (pkgs) jasper; inherit (pkgs) lcms; inherit (pkgs) libjpeg; @@ -156844,9 +148338,7 @@ self: { ]; description = "Tool for generating .dir-locals.el for intero"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hsmodetweaks"; - broken = true; }) {}; "hsmtpclient" = callPackage @@ -156858,8 +148350,6 @@ self: { libraryHaskellDepends = [ array base directory network old-time ]; description = "Simple SMTP Client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsndfile" = callPackage @@ -156916,9 +148406,7 @@ self: { ]; description = "Nock 5K interpreter"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "hsnock"; - broken = true; }) {}; "hsnoise" = callPackage @@ -156943,9 +148431,7 @@ self: { executableHaskellDepends = [ base network pcap ]; description = "a miniature network sniffer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hsns"; - broken = true; }) {}; "hsnsq" = callPackage @@ -156964,8 +148450,6 @@ self: { ]; description = "Haskell NSQ client"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsntp" = callPackage @@ -156982,8 +148466,6 @@ self: { executableHaskellDepends = [ unix ]; description = "Libraries to use SNTP protocol and small client/server implementations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsoptions" = callPackage @@ -157008,8 +148490,6 @@ self: { ]; description = "Haskell library that supports command-line flag processing"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsoz" = callPackage @@ -157048,8 +148528,6 @@ self: { ]; description = "Iron, Hawk, Oz: Web auth protocols"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsp" = callPackage @@ -157072,8 +148550,6 @@ self: { libraryHaskellDepends = [ base containers harp hsp network ]; description = "Facilitates running Haskell Server Pages web pages as CGI programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsparklines" = callPackage @@ -157107,8 +148583,6 @@ self: { ]; description = "A SPARQL query generator and DSL, and a client to query a SPARQL server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspear" = callPackage @@ -157124,8 +148598,6 @@ self: { ]; description = "Haskell Spear Parser"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspec_2_7_10" = callPackage @@ -157188,8 +148660,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A Testing Framework for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspec-attoparsec" = callPackage @@ -157509,8 +148979,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "An hspec expectation that asserts a value matches a pattern"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspec-expectations-pretty" = callPackage @@ -157526,7 +148994,6 @@ self: { ]; description = "hspec-expectations with pretty printing on failure"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hspec-expectations-pretty-diff" = callPackage @@ -157555,8 +149022,6 @@ self: { testHaskellDepends = [ base hspec-meta ]; description = "An experimental DSL for testing on top of Hspec"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspec-golden_0_1_0_3" = callPackage @@ -157661,8 +149126,6 @@ self: { libraryHaskellDepends = [ base blaze-markup hspec ]; description = "Jenkins-friendly XML formatter for Hspec"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspec-junit-formatter" = callPackage @@ -157685,8 +149148,6 @@ self: { testToolDepends = [ markdown-unlit ]; description = "A JUnit XML runner/formatter for hspec"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspec-laws" = callPackage @@ -157824,8 +149285,6 @@ self: { ]; description = "Orphan instances of MonadBase and MonadBaseControl for SpecM"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspec-multicheck" = callPackage @@ -157857,8 +149316,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Read environment variables for hspec tests"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspec-parsec" = callPackage @@ -157892,7 +149349,6 @@ self: { ]; description = "Helpers for creating database tests with hspec and pg-transact"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hspec-server" = callPackage @@ -157940,7 +149396,6 @@ self: { ]; description = "Add an hspec test-suite in one command"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hspec-setup"; }) {}; @@ -157953,7 +149408,6 @@ self: { libraryHaskellDepends = [ hspec test-shouldbe ]; description = "Convenience wrapper and utilities for hspec"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hspec-slow" = callPackage @@ -157970,8 +149424,6 @@ self: { testHaskellDepends = [ base hspec mtl stm ]; description = "Find slow test cases"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspec-smallcheck" = callPackage @@ -158015,8 +149467,6 @@ self: { ]; description = "A library for testing with Hspec and the Snap Web Framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspec-stack-rerun" = callPackage @@ -158038,8 +149488,6 @@ self: { sha256 = "008gm0qvhvp6z6a9sq5vpljqb90258apd83rkzy47k3bczy1sgmj"; libraryHaskellDepends = [ base hspec ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspec-tables" = callPackage @@ -158054,8 +149502,6 @@ self: { testHaskellDepends = [ base hspec hspec-core ]; description = "Table-driven (by-example) HSpec tests"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspec-test-framework" = callPackage @@ -158181,8 +149627,6 @@ self: { ]; description = "Write end2end web application tests using webdriver and hspec"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspec2" = callPackage @@ -158196,8 +149640,6 @@ self: { libraryHaskellDepends = [ base hspec hspec-discover ]; description = "Alpha version of Hspec 2.0"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspecVariant" = callPackage @@ -158210,7 +149652,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck QuickCheckVariant ]; description = "Spec for testing properties"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "hspkcs11" = callPackage @@ -158229,8 +149670,6 @@ self: { ]; description = "Wrapper for PKCS #11 interface"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspr-sh" = callPackage @@ -158273,8 +149712,6 @@ self: { ]; description = "A client library for the spread toolkit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hspresent" = callPackage @@ -158289,9 +149726,7 @@ self: { doHaddock = false; description = "A terminal presentation tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hspresent"; - broken = true; }) {}; "hspretty" = callPackage @@ -158313,9 +149748,7 @@ self: { testHaskellDepends = [ base doctest ]; description = "My opinionated Haskell project formatter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hspretty"; - broken = true; }) {}; "hsprocess" = callPackage @@ -158341,7 +149774,6 @@ self: { ]; description = "The Haskell Stream Processor command line utility"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hsp"; }) {}; @@ -158354,8 +149786,6 @@ self: { libraryHaskellDepends = [ base old-time ]; description = "Database access from Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsql-mysql" = callPackage @@ -158370,7 +149800,6 @@ self: { librarySystemDepends = [ mysqlclient ]; description = "MySQL driver for HSQL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {mysqlclient = null;}; "hsql-odbc" = callPackage @@ -158383,7 +149812,6 @@ self: { librarySystemDepends = [ unixODBC ]; description = "A Haskell Interface to ODBC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) unixODBC;}; "hsql-postgresql" = callPackage @@ -158396,7 +149824,6 @@ self: { librarySystemDepends = [ postgresql ]; description = "A Haskell Interface to PostgreSQL via the PQ library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) postgresql;}; "hsql-sqlite3" = callPackage @@ -158409,7 +149836,6 @@ self: { librarySystemDepends = [ sqlite ]; description = "SQLite3 driver for HSQL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) sqlite;}; "hsqml" = callPackage @@ -158576,7 +150002,6 @@ self: { ]; description = "Access to the Readability API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hsrelp" = callPackage @@ -158591,8 +150016,6 @@ self: { ]; description = "RELP (Reliable Event Logging Protocol) server implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsseccomp" = callPackage @@ -158606,8 +150029,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit unix ]; description = "Haskell bindings to libseccomp"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {seccomp = null;}; "hssh" = callPackage @@ -158643,8 +150064,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Haskell for Unix shell scripting tasks"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hssourceinfo" = callPackage @@ -158681,8 +150100,6 @@ self: { ]; description = "SQL parser and type checker"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hssqlppp-th" = callPackage @@ -158701,7 +150118,6 @@ self: { ]; description = "hssqlppp extras which need template-haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hstar" = callPackage @@ -158724,7 +150140,6 @@ self: { executableToolDepends = [ cpphs ]; description = "Haskell version of tar CLI utility"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hstar"; }) {}; @@ -158752,8 +150167,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Statistical Computing in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hstatsd" = callPackage @@ -158765,8 +150178,6 @@ self: { libraryHaskellDepends = [ base bytestring mtl network text ]; description = "Quick and dirty statsd interface"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hstest" = callPackage @@ -158784,9 +150195,7 @@ self: { ]; description = "Runs tests via QuickCheck1 and HUnit; like quickCheck-script but uses GHC api"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hstest"; - broken = true; }) {}; "hstidy" = callPackage @@ -158800,9 +150209,7 @@ self: { executableHaskellDepends = [ base haskell-src-exts ]; description = "Takes haskell source on stdin, parses it, then prettyprints it to stdout"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hstidy"; - broken = true; }) {}; "hstorchat" = callPackage @@ -158860,7 +150267,6 @@ self: { testHaskellDepends = [ async base ]; description = "A Tox protocol implementation in Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "hstradeking" = callPackage @@ -158885,7 +150291,6 @@ self: { ]; description = "Tradeking API bindings for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tradeking"; }) {}; @@ -158904,9 +150309,7 @@ self: { ]; description = "Checks Haskell source code for style compliance"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hstyle"; - broken = true; }) {}; "hstzaar" = callPackage @@ -158927,7 +150330,6 @@ self: { ]; description = "A two player abstract strategy game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hstzaar"; }) {}; @@ -158950,7 +150352,6 @@ self: { ]; description = "One-time, faithful conversion of Subversion repositories to Git"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hsubconvert"; }) {}; @@ -158980,9 +150381,7 @@ self: { ]; description = "Sudoku game with a GTK3 interface"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hsudoku"; - broken = true; }) {}; "hsverilog" = callPackage @@ -159014,7 +150413,6 @@ self: { librarySystemDepends = [ ncurses readline swipl ]; description = "embedding prolog in haskell"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) ncurses; inherit (pkgs) readline; swipl = null;}; @@ -159031,9 +150429,7 @@ self: { libraryHaskellDepends = [ base haskell-src-exts mtl utf8-string ]; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "trhsx"; - broken = true; }) {}; "hsx-jmacro" = callPackage @@ -159058,7 +150454,6 @@ self: { libraryHaskellDepends = [ base hsx mtl ]; description = "XHTML utilities to use together with HSX"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hsx2hs" = callPackage @@ -159093,8 +150488,6 @@ self: { libraryHaskellDepends = [ base ]; description = "FFI to syscalls"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hsyslog" = callPackage @@ -159126,7 +150519,6 @@ self: { ]; description = "syslog over TCP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hsyslog-udp" = callPackage @@ -159143,8 +150535,6 @@ self: { testHaskellDepends = [ base hspec time ]; description = "Log to syslog over a network via UDP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hszephyr" = callPackage @@ -159157,8 +150547,6 @@ self: { librarySystemDepends = [ com_err zephyr ]; description = "Simple libzephyr bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {com_err = null; zephyr = null;}; "htaglib" = callPackage @@ -159238,7 +150626,6 @@ self: { ]; description = "Command-line tar archive utility"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "htar"; }) {}; @@ -159267,8 +150654,6 @@ self: { ]; description = "Beginner friendly graphics library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "htestu" = callPackage @@ -159284,9 +150669,7 @@ self: { executableHaskellDepends = [ base ]; description = "A library for testing correctness of pseudo random number generators in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "runTestu"; - broken = true; }) {inherit (pkgs) gcc;}; "htiled" = callPackage @@ -159303,8 +150686,6 @@ self: { ]; description = "Import from the Tiled map editor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "htime" = callPackage @@ -159346,8 +150727,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Heterogenous Set"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "html" = callPackage @@ -159481,7 +150860,6 @@ self: { libraryHaskellDepends = [ base hxt kure ]; description = "HTML rewrite engine, using KURE"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "html-minimalist" = callPackage @@ -159520,8 +150898,6 @@ self: { ]; description = "A high-performance HTML tokenizer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "html-parse-util" = callPackage @@ -159533,7 +150909,6 @@ self: { libraryHaskellDepends = [ attoparsec base html-parse text ]; description = "Utility functions for working with html-parse"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "html-presentation-text" = callPackage @@ -159559,8 +150934,6 @@ self: { libraryHaskellDepends = [ base lens mtl tagsoup transformers ]; description = "Perform traversals of HTML structures using sets of rules"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "html-tokenizer" = callPackage @@ -159583,8 +150956,6 @@ self: { ]; description = "An \"attoparsec\"-based HTML tokenizer"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "html-truncate" = callPackage @@ -159711,8 +151082,6 @@ self: { ]; description = "Parser for TOML files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "htoml-megaparsec" = callPackage @@ -159739,8 +151108,6 @@ self: { doHaddock = false; description = "Parser for TOML files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "htoml-parse" = callPackage @@ -159758,7 +151125,6 @@ self: { ]; description = "Parse TOML values produced by htoml-megaparsec package"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "htrace" = callPackage @@ -159782,8 +151148,6 @@ self: { libraryHaskellDepends = [ base hmt xml ]; description = "Haskell Music Typesetting"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "htsn" = callPackage @@ -159807,9 +151171,7 @@ self: { ]; description = "Parse XML files from The Sports Network feed"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "htsn"; - broken = true; }) {}; "htsn-common" = callPackage @@ -159852,7 +151214,6 @@ self: { ]; description = "Import XML files from The Sports Network into an RDBMS"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "htsn-import"; }) {}; @@ -159865,8 +151226,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Heterogenous Sets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-accept" = callPackage @@ -159963,8 +151322,6 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring http-types ]; description = "Attoparsec parsers for http-types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-client" = callPackage @@ -160014,7 +151371,6 @@ self: { ]; description = "HTTP authorization (both basic and digest) done right"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "http-client-brread-timeout" = callPackage @@ -160072,8 +151428,6 @@ self: { ]; description = "Optics for http-client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-client-multipart" = callPackage @@ -160146,8 +151500,6 @@ self: { ]; description = "Convenient monadic HTTP request modifiers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-client-restricted" = callPackage @@ -160203,7 +151555,6 @@ self: { ]; description = "http-client TLS backend using Rustls"; license = lib.licenses.cc0; - hydraPlatforms = lib.platforms.none; }) {}; "http-client-session" = callPackage @@ -160219,8 +151570,6 @@ self: { ]; description = "A simple abstraction over the \"http-client\" connection manager"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-client-streams" = callPackage @@ -160237,8 +151586,6 @@ self: { ]; description = "http-client for io-streams supporting openssl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-client-tls" = callPackage @@ -160410,8 +151757,6 @@ self: { ]; description = "Browser interface to the http-conduit package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-conduit-downloader" = callPackage @@ -160429,8 +151774,6 @@ self: { ]; description = "HTTP downloader tailored for web-crawler needs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-date" = callPackage @@ -160465,8 +151808,6 @@ self: { testHaskellDepends = [ base hspec text ]; description = "http directory listing library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-dispatch" = callPackage @@ -160484,8 +151825,6 @@ self: { testHaskellDepends = [ aeson base hspec ]; description = "High level HTTP client for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-download" = callPackage @@ -160555,8 +151894,6 @@ self: { ]; description = "A library for encoding and decoding bodies of HTTP messages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-enumerator" = callPackage @@ -160581,7 +151918,6 @@ self: { ]; description = "HTTP client package with enumerator interface and HTTPS support. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "http-grammar" = callPackage @@ -160593,8 +151929,6 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring ]; description = "Attoparsec-based parsers for the RFC-2616 HTTP grammar rules"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-interchange" = callPackage @@ -160670,8 +152004,6 @@ self: { ]; description = "Generic kinds and types for working with HTTP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-kit" = callPackage @@ -160690,8 +152022,6 @@ self: { ]; description = "A low-level HTTP library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-link-header" = callPackage @@ -160735,8 +152065,6 @@ self: { ]; description = "Listen to HTTP requests and handle them in arbitrary ways"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-media" = callPackage @@ -160795,8 +152123,6 @@ self: { ]; description = "Monad abstraction for HTTP allowing lazy transfer and non-I/O simulation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-pony" = callPackage @@ -160813,8 +152139,6 @@ self: { ]; description = "A type unsafe http library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-pony-serve-wai" = callPackage @@ -160834,8 +152158,6 @@ self: { ]; description = "Serve a WAI application with http-pony"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-pony-transformer-case-insensitive" = callPackage @@ -160906,8 +152228,6 @@ self: { ]; description = "A library for writing HTTP and HTTPS proxies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-query" = callPackage @@ -160939,8 +152259,6 @@ self: { ]; description = "The HTTP query builder"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-response-decoder" = callPackage @@ -160960,8 +152278,6 @@ self: { ]; description = "Declarative DSL for parsing an HTTP response"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-reverse-proxy" = callPackage @@ -161006,8 +152322,6 @@ self: { ]; description = "RFC7807 style response messages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-server" = callPackage @@ -161023,8 +152337,6 @@ self: { ]; description = "A library for writing Haskell web servers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-shed" = callPackage @@ -161038,8 +152350,6 @@ self: { libraryHaskellDepends = [ base network ]; description = "A simple websever with an interact style API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http-streams" = callPackage @@ -161138,8 +152448,6 @@ self: { libraryHaskellDepends = [ base failure process transformers ]; description = "Provide a simple HTTP client interface by wrapping the wget command line tool. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http2" = callPackage @@ -161193,8 +152501,6 @@ self: { testHaskellDepends = [ base ]; description = "A native HTTP2 client library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http2-client-exe" = callPackage @@ -161214,9 +152520,7 @@ self: { ]; description = "A command-line http2 client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "http2-client-exe"; - broken = true; }) {}; "http2-client-grpc" = callPackage @@ -161236,7 +152540,6 @@ self: { testHaskellDepends = [ base ]; description = "Implement gRPC-over-HTTP2 clients"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "http2-grpc-proto-lens" = callPackage @@ -161253,7 +152556,6 @@ self: { ]; description = "Encoders based on `proto-lens` for gRPC over HTTP2"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "http2-grpc-proto3-wire" = callPackage @@ -161272,7 +152574,6 @@ self: { ]; description = "Encoders based on `proto3-wire` for gRPC over HTTP2"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "http2-grpc-types" = callPackage @@ -161287,8 +152588,6 @@ self: { ]; description = "Types for gRPC over HTTP2 common for client and servers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "http2-tls" = callPackage @@ -161332,8 +152631,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "HTTP/3 library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "httpd-shed" = callPackage @@ -161370,7 +152667,6 @@ self: { ]; description = "High-level access to HTTPS Everywhere rulesets"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "https-everywhere-rules-raw" = callPackage @@ -161385,7 +152681,6 @@ self: { ]; description = "Low-level (i.e. XML) access to HTTPS Everywhere rulesets."; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "httpspec" = callPackage @@ -161403,7 +152698,6 @@ self: { ]; description = "Specification of HTTP request/response generators and parsers"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "httpstan" = callPackage @@ -161424,8 +152718,6 @@ self: { ]; description = "Auto-generated API bindings for httpstan"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "htune" = callPackage @@ -161439,9 +152731,7 @@ self: { executableHaskellDepends = [ alsa-pcm base carray fft gloss ]; description = "harmonic analyser and tuner for musical instruments"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "htune"; - broken = true; }) {}; "htvm" = callPackage @@ -161469,8 +152759,6 @@ self: { testSystemDepends = [ tvm_runtime ]; description = "Bindings for TVM machine learning framework"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {tvm_runtime = null;}; "htzaar" = callPackage @@ -161484,9 +152772,7 @@ self: { executableHaskellDepends = [ base OpenGL random SDL ]; description = "A two player abstract strategy game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "htzaar"; - broken = true; }) {}; "hub" = callPackage @@ -161542,7 +152828,6 @@ self: { executableSystemDepends = [ ruby ]; description = "Support library for Hubris, the Ruby <=> Haskell bridge"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "Hubrify"; }) {inherit (pkgs) ruby;}; @@ -161564,8 +152849,6 @@ self: { ]; description = "huck"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "huckleberry" = callPackage @@ -161597,9 +152880,7 @@ self: { executableHaskellDepends = [ base ]; description = "A fast-foward-based planner"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "blocksWorld"; - broken = true; }) {}; "huffman" = callPackage @@ -161611,8 +152892,6 @@ self: { libraryHaskellDepends = [ base containers fingertree ]; description = "Pure Haskell implementation of the Huffman encoding algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hugs2yc" = callPackage @@ -161629,7 +152908,6 @@ self: { ]; description = "Hugs Front-end to Yhc Core"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hulk" = callPackage @@ -161656,7 +152934,6 @@ self: { ]; description = "IRC server written in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hum" = callPackage @@ -161690,9 +152967,7 @@ self: { ]; description = "A TUI MPD client, inspired by ncmpcpp"; license = lib.licenses.gpl2Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "hum"; - broken = true; }) {}; "human-parse" = callPackage @@ -161704,8 +152979,6 @@ self: { libraryHaskellDepends = [ base text ]; description = "A lawless typeclass for parsing text entered by humans"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "human-readable-duration" = callPackage @@ -161730,8 +153003,6 @@ self: { libraryHaskellDepends = [ base text ]; description = "A lawless typeclass for converting values to human-friendly text"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "humble-prelude" = callPackage @@ -161743,8 +153014,6 @@ self: { libraryHaskellDepends = [ base bytestring deepseq ghc text ]; description = "Redefinition-free prelude alternative"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hums" = callPackage @@ -161769,9 +153038,7 @@ self: { ]; description = "Haskell UPnP Media Server"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hums"; - broken = true; }) {}; "hunch" = callPackage @@ -161794,9 +153061,7 @@ self: { ]; description = "CSS-like syntax for file system manipulation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hunch"; - broken = true; }) {}; "hunit-dejafu" = callPackage @@ -161823,7 +153088,6 @@ self: { executableHaskellDepends = [ base cairo gtk haskell98 HUnit ]; description = "A GUI testrunner for HUnit"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "tests"; }) {}; @@ -161848,8 +153112,6 @@ self: { testHaskellDepends = [ base hspec HUnit rematch ]; description = "HUnit support for rematch"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hunp" = callPackage @@ -161916,7 +153178,6 @@ self: { ]; description = "A search and indexing engine"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hunt-server" = callPackage @@ -161940,7 +153201,6 @@ self: { ]; description = "A search and indexing engine server"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hunt-server"; }) {}; @@ -161998,9 +153258,7 @@ self: { ]; description = "Upload packages and/or documentation to a hackage server"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "hup"; - broken = true; }) {}; "hurdle" = callPackage @@ -162016,7 +153274,6 @@ self: { ]; description = "Extract function names from Windows DLLs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hurdle"; }) {}; @@ -162044,8 +153301,6 @@ self: { ]; description = "Haskell URL resolver"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hurl-xml" = callPackage @@ -162067,7 +153322,6 @@ self: { ]; description = "Fetch parsed XML & possibly CSS for a URL based on MIMEtype"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "hurriyet" = callPackage @@ -162086,8 +153340,6 @@ self: { ]; description = "Haskell bindings for Hurriyet API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "husk-scheme" = callPackage @@ -162144,9 +153396,7 @@ self: { ]; description = "A simple command line calculator"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "husky"; - broken = true; }) {}; "hutton" = callPackage @@ -162167,9 +153417,7 @@ self: { ]; description = "A program for the button on Reddit"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hutton"; - broken = true; }) {}; "huttons-razor" = callPackage @@ -162183,9 +153431,7 @@ self: { executableHaskellDepends = [ base parsec parsec-numbers ]; description = "Quick implemention of Hutton's Razor"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "huttons-razor"; - broken = true; }) {}; "huzzy" = callPackage @@ -162197,7 +153443,6 @@ self: { libraryHaskellDepends = [ base easyplot ]; description = "Fuzzy logic library with support for T1, IT2, GT2"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hvect" = callPackage @@ -162290,7 +153535,6 @@ self: { ]; description = "Demo library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hw-aws-sqs-conduit" = callPackage @@ -162307,7 +153551,6 @@ self: { testHaskellDepends = [ base ]; description = "AWS SQS conduit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hw-balancedparens" = callPackage @@ -162391,9 +153634,7 @@ self: { doHaddock = false; description = "CI Assistant for Haskell projects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hw-ci-assist"; - broken = true; }) {}; "hw-conduit" = callPackage @@ -162496,9 +153737,7 @@ self: { ]; description = "Unbelievably fast streaming DSV file parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hw-dsv"; - broken = true; }) {}; "hw-dump" = callPackage @@ -162532,9 +153771,7 @@ self: { ]; description = "File Dump"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hw-dump"; - broken = true; }) {}; "hw-eliasfano" = callPackage @@ -162777,7 +154014,6 @@ self: { doHaddock = false; description = "Memory efficient JSON parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hw-json"; }) {}; @@ -162798,8 +154034,6 @@ self: { doHaddock = false; description = "Memory efficient JSON parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hw-json-lens" = callPackage @@ -162829,8 +154063,6 @@ self: { ]; description = "Lens for hw-json"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hw-json-simd" = callPackage @@ -162855,9 +154087,7 @@ self: { testToolDepends = [ doctest-discover ]; description = "SIMD-based JSON semi-indexer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hw-json-simd"; - broken = true; }) {}; "hw-json-simple-cursor" = callPackage @@ -162895,7 +154125,6 @@ self: { ]; description = "Memory efficient JSON parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hw-json"; }) {}; @@ -162936,7 +154165,6 @@ self: { ]; description = "Memory efficient JSON parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hw-json-standard-cursor"; }) {}; @@ -163149,8 +154377,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Primitive functions and data types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hw-prim" = callPackage @@ -163204,9 +154430,7 @@ self: { description = "Primitive support for bit manipulation"; license = lib.licenses.bsd3; platforms = lib.platforms.x86; - hydraPlatforms = lib.platforms.none; mainProgram = "hw-prim-bits-exe"; - broken = true; }) {}; "hw-rankselect" = callPackage @@ -163337,9 +154561,7 @@ self: { testToolDepends = [ doctest-discover ]; description = "SIMD library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hw-simd"; - broken = true; }) {}; "hw-streams" = callPackage @@ -163370,8 +154592,6 @@ self: { ]; description = "Primitive functions and data types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hw-string-parse" = callPackage @@ -163429,9 +154649,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Library for creating and extracting tar archives"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hw-tar"; - broken = true; }) {}; "hw-uri" = callPackage @@ -163467,7 +154685,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Supports IO on URIs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hw-uri"; }) {}; @@ -163526,9 +154743,7 @@ self: { ]; description = "XML parser based on succinct data structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hw-xml"; - broken = true; }) {}; "hwall-auth-iitk" = callPackage @@ -163547,9 +154762,7 @@ self: { ]; description = "Initial version of firewall Authentication for IITK network"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "firewall-auth"; - broken = true; }) {}; "hweblib" = callPackage @@ -163572,8 +154785,6 @@ self: { ]; description = "Haskell Web Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hwhile" = callPackage @@ -163594,9 +154805,7 @@ self: { testHaskellDepends = [ array base Cabal containers mtl ]; description = "An implementation of Neil D. Jones' While language"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hwhile"; - broken = true; }) {}; "hwk" = callPackage @@ -163637,8 +154846,6 @@ self: { ]; description = "A reliable at-least-once job queue built on top of redis"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hworker-ses" = callPackage @@ -163655,7 +154862,6 @@ self: { ]; description = "Library for sending email with Amazon's SES and hworker"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; }) {}; "hwormhole" = callPackage @@ -163688,7 +154894,6 @@ self: { ]; description = "magic-wormhole client"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hwormhole-exe"; }) {}; @@ -163708,7 +154913,6 @@ self: { ]; description = "Simple Haskell Web Server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hws"; }) {}; @@ -163729,8 +154933,6 @@ self: { ]; description = "Hashing with SL2"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hwsl2-bytevector" = callPackage @@ -163742,7 +154944,6 @@ self: { libraryHaskellDepends = [ base bytestring fingertree hwsl2 ]; description = "A hashed byte-vector based on algebraic hashes and finger trees"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hwsl2-reducers" = callPackage @@ -163756,7 +154957,6 @@ self: { ]; description = "Semigroup and Reducer instances for Data.Hash.SL2"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hx" = callPackage @@ -163768,8 +154968,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell extras (missing utility functions)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hxmppc" = callPackage @@ -163788,9 +154986,7 @@ self: { ]; description = "Haskell XMPP (Jabber Client) Command Line Interface (CLI)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hxmppc"; - broken = true; }) {}; "hxournal" = callPackage @@ -163817,7 +155013,6 @@ self: { executableHaskellDepends = [ base cmdargs ]; description = "A pen notetaking program written in haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hxournal"; }) {}; @@ -163852,7 +155047,6 @@ self: { ]; description = "Serialisation and deserialisation of HXT XmlTrees"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "hxt-cache" = callPackage @@ -163942,7 +155136,6 @@ self: { ]; description = "A collection of tools for processing XML with Haskell (Filter variant)"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "hxt-http" = callPackage @@ -163971,8 +155164,6 @@ self: { libraryHaskellDepends = [ base hxt mtl ]; description = "Utility functions for using HXT picklers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hxt-regex-xmlschema" = callPackage @@ -164074,7 +155265,6 @@ self: { libraryHaskellDepends = [ base bytestring encoding hxt mtl ]; description = "Helper functions for HXT"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hxweb" = callPackage @@ -164086,7 +155276,6 @@ self: { libraryHaskellDepends = [ base cgi fastcgi libxml mtl xslt ]; description = "Minimal webframework using fastcgi, libxml2 and libxslt"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hyahtzee" = callPackage @@ -164122,9 +155311,7 @@ self: { ]; description = "Literate-style Documentation Generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hyakko"; - broken = true; }) {}; "hybrid" = callPackage @@ -164141,7 +155328,6 @@ self: { ]; description = "A implementation of a type-checker for Lambda-H"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hybrid"; }) {}; @@ -164181,8 +155367,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Type-aware transformations for data and programs"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hydra-hs" = callPackage @@ -164196,8 +155380,6 @@ self: { testHaskellDepends = [ base ]; description = "Haskell binding to the Sixense SDK for the Razer Hydra"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {sixense_x64 = null;}; "hydra-print" = callPackage @@ -164229,7 +155411,6 @@ self: { ]; description = "NCurses interface to view multiple ByteString streams in parallel"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hydrogen" = callPackage @@ -164246,8 +155427,6 @@ self: { testHaskellDepends = [ base Cabal containers mtl QuickCheck ]; description = "An alternate Prelude"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hydrogen-cli" = callPackage @@ -164268,7 +155447,6 @@ self: { ]; description = "Hydrogen Data"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "h"; }) {}; @@ -164285,7 +155463,6 @@ self: { ]; description = "Hydrogen Command Line Arguments Parser"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hydrogen-data" = callPackage @@ -164297,7 +155474,6 @@ self: { libraryHaskellDepends = [ base hydrogen-parsing hydrogen-prelude ]; description = "Hydrogen Data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hydrogen-multimap" = callPackage @@ -164309,8 +155485,6 @@ self: { libraryHaskellDepends = [ base containers ghc-prim ]; description = "Hydrogen Multimap"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hydrogen-parsing" = callPackage @@ -164324,7 +155498,6 @@ self: { ]; description = "Hydrogen Parsing Utilities"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hydrogen-prelude" = callPackage @@ -164344,7 +155517,6 @@ self: { ]; description = "Hydrogen Prelude"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hydrogen-prelude-parsec" = callPackage @@ -164356,7 +155528,6 @@ self: { libraryHaskellDepends = [ base hydrogen-prelude parsec ]; description = "Hydrogen Prelude /w Parsec"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "hydrogen-syntax" = callPackage @@ -164373,7 +155544,6 @@ self: { ]; description = "Hydrogen Syntax"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hydrogen-util" = callPackage @@ -164388,7 +155558,6 @@ self: { ]; description = "Hydrogen Tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hydrogen-version" = callPackage @@ -164417,7 +155586,6 @@ self: { ]; description = "Simple web application server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hylide" = callPackage @@ -164439,9 +155607,7 @@ self: { ]; description = "WebGL live-coding environment for writing shaders with Hylogen"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "hylide"; - broken = true; }) {}; "hylogen" = callPackage @@ -164468,8 +155634,6 @@ self: { ]; description = "Tools for hybrid logics related programs"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hylotab" = callPackage @@ -164484,7 +155648,6 @@ self: { executableHaskellDepends = [ base hylolib mtl ]; description = "Tableau based theorem prover for hybrid logics"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "hylotab"; }) {}; @@ -164501,7 +155664,6 @@ self: { ]; description = "Very small programs for hybrid logics"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "hyper" = callPackage @@ -164515,8 +155677,6 @@ self: { libraryHaskellDepends = [ base blaze-html deepseq text ]; description = "Display class for the HyperHaskell graphical Haskell interpreter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hyper-extra" = callPackage @@ -164532,7 +155692,6 @@ self: { ]; description = "Display instances for the HyperHaskell graphical Haskell interpreter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "hyper-haskell-server" = callPackage @@ -164552,7 +155711,6 @@ self: { ]; description = "Server back-end for the HyperHaskell graphical Haskell interpreter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hyper-haskell-server"; }) {}; @@ -164572,9 +155730,7 @@ self: { ]; description = "a fast, trustworthy HTTP(s) server built"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pong"; - broken = true; }) {}; "hyperfunctions" = callPackage @@ -164590,8 +155746,6 @@ self: { ]; description = "Hyperfunctions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hypergeomatrix" = callPackage @@ -164644,8 +155798,6 @@ self: { ]; description = "Reliable performance measurement with robust data export"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hyperloglog" = callPackage @@ -164683,8 +155835,6 @@ self: { testHaskellDepends = [ base HUnit semigroups tasty tasty-hunit ]; description = "Approximate cardinality estimation using constant space"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hyperpublic" = callPackage @@ -164700,7 +155850,6 @@ self: { ]; description = "A thin wrapper for the Hyperpublic API"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "hyperscript" = callPackage @@ -164716,9 +155865,7 @@ self: { testHaskellDepends = [ base megaparsec text ]; description = "A parser for the _hyperscript programming language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hyperscript-exe"; - broken = true; }) {}; "hypertypes" = callPackage @@ -164746,8 +155893,6 @@ self: { ]; description = "Typed ASTs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hyphenate" = callPackage @@ -164807,8 +155952,6 @@ self: { ]; description = "A Haskell neo4j client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "hyraxAbif" = callPackage @@ -164833,9 +155976,7 @@ self: { ]; description = "Modules for parsing, generating and manipulating AB1 files"; license = "(BSD-3-Clause OR Apache-2.0)"; - hydraPlatforms = lib.platforms.none; mainProgram = "hyraxAbif-exe"; - broken = true; }) {}; "hz3" = callPackage @@ -164943,8 +156084,6 @@ self: { ]; description = "A haskell wrapper for the Zulip API"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "i" = callPackage @@ -164965,7 +156104,6 @@ self: { ]; description = "Haskell interval types. Bounds checking."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "i18n" = callPackage @@ -164986,8 +156124,6 @@ self: { ]; description = "Internationalization for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "i3blocks-hs-contrib" = callPackage @@ -165007,8 +156143,6 @@ self: { ]; description = "Base i3blocks written in haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "i3ipc" = callPackage @@ -165026,8 +156160,6 @@ self: { testHaskellDepends = [ aeson base bytestring hspec ]; description = "A type-safe wrapper around i3's IPC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "iCalendar" = callPackage @@ -165058,7 +156190,6 @@ self: { libraryHaskellDepends = [ base interleavableIO mtl ]; description = "Version of Control.Exception using InterleavableIO."; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "iap-verifier" = callPackage @@ -165075,8 +156206,6 @@ self: { ]; description = "A simple wrapper of In-App-Purchase receipt validate APIs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ib-api" = callPackage @@ -165093,9 +156222,7 @@ self: { ]; description = "An API for the Interactive Brokers Trading Workstation written in pure Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "ex"; - broken = true; }) {}; "iban" = callPackage @@ -165114,8 +156241,6 @@ self: { testHaskellDepends = [ base HUnit tasty tasty-hunit text ]; description = "Validate and generate IBANs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ibus-hs" = callPackage @@ -165148,9 +156273,7 @@ self: { testHaskellDepends = [ base ]; description = "iCalendar format parser and org-mode converter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ical-org"; - broken = true; }) {}; "ice40-prim" = callPackage @@ -165167,7 +156290,6 @@ self: { ]; description = "Lattice iCE40 Primitive IP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "icepeak" = callPackage @@ -165213,8 +156335,6 @@ self: { ]; description = "A fast JSON document store with push notification support"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "icfpc2020-galaxy" = callPackage @@ -165226,8 +156346,6 @@ self: { libraryHaskellDepends = [ base ghc-prim transformers ]; description = "A strange message received at the Pegovka observatory"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "icon-fonts" = callPackage @@ -165268,8 +156386,6 @@ self: { testHaskellDepends = [ base ]; description = "Type safe iconv wrapper"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ide-backend" = callPackage @@ -165316,7 +156432,6 @@ self: { ]; description = "An IDE backend library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "ide-backend-exe-cabal"; }) {}; @@ -165342,8 +156457,6 @@ self: { ]; description = "Shared library used be ide-backend and ide-backend-server"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ide-backend-rts" = callPackage @@ -165378,7 +156491,6 @@ self: { ]; description = "An IDE backend server"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "ide-backend-server"; }) {}; @@ -165399,8 +156511,6 @@ self: { ]; description = "Feedback services for intelligent tutoring systems"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ideas-math" = callPackage @@ -165418,7 +156528,6 @@ self: { ]; description = "Interactive domain reasoner for logic and mathematics"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "ideas-math"; }) {}; @@ -165433,7 +156542,6 @@ self: { ]; description = "Common types for mathematical domain reasoners"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "ideas-statistics" = callPackage @@ -165449,7 +156557,6 @@ self: { ]; description = "Interactive domain reasoner for statistics"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "statistics.cgi"; }) {}; @@ -165463,8 +156570,6 @@ self: { testHaskellDepends = [ base containers hspec QuickCheck ]; description = "Idempotent monoids"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "identicon" = callPackage @@ -165507,7 +156612,6 @@ self: { ]; description = "Squares style for the identicon package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "identifiers" = callPackage @@ -165532,8 +156636,6 @@ self: { ]; description = "Numeric identifiers for values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "idiii" = callPackage @@ -165559,9 +156661,7 @@ self: { ]; description = "ID3v2 (tagging standard for MP3 files) library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "read-idiii"; - broken = true; }) {}; "idiomatic" = callPackage @@ -165597,8 +156697,6 @@ self: { libraryHaskellDepends = [ base punycode split ]; description = "Converts Unicode hostnames into ASCII"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "idringen" = callPackage @@ -165664,7 +156762,6 @@ self: { ]; description = "Functional Programming Language with Dependent Types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gmp;}; "ieee" = callPackage @@ -165687,8 +156784,6 @@ self: { libraryHaskellDepends = [ base ]; description = "ieee-utils"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ieee-utils-tempfix" = callPackage @@ -165738,8 +156833,6 @@ self: { testHaskellDepends = [ base bytestring HUnit stocks ]; description = "Library for the IEX Trading API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "if" = callPackage @@ -165764,8 +156857,6 @@ self: { doHaddock = false; description = "Branch on whether a constraint is satisfied"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ifcxt" = callPackage @@ -165780,8 +156871,6 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; description = "put if statements within type constraints"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "iff" = callPackage @@ -165833,8 +156922,6 @@ self: { ]; description = "Bindings to Instagram's API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ige" = callPackage @@ -165857,9 +156944,7 @@ self: { ]; description = "An keyboard-driven interactive graph editor"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "ige"; - broken = true; }) {}; "ige-mac-integration" = callPackage @@ -165878,7 +156963,6 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Bindings for the Gtk/OS X integration library"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; }) {ige-mac-integration = null;}; "ignore" = callPackage @@ -165898,9 +156982,7 @@ self: { testHaskellDepends = [ base HTF text ]; description = "Handle ignore files of different VCSes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ignore"; - broken = true; }) {}; "igraph" = callPackage @@ -165918,8 +157000,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Bindings to the igraph C library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) igraph;}; "igrf" = callPackage @@ -165933,7 +157013,6 @@ self: { ]; description = "International Geomagnetic Reference Field"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ihaskell" = callPackage @@ -166023,8 +157102,6 @@ self: { ]; description = "IHaskell display instances for charts types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ihaskell-diagrams" = callPackage @@ -166041,8 +157118,6 @@ self: { ]; description = "IHaskell display instances for diagram types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ihaskell-display" = callPackage @@ -166065,8 +157140,6 @@ self: { libraryHaskellDepends = [ base bytestring gnuplot ihaskell ]; description = "IHaskell display instance for Gnuplot (from gnuplot package)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ihaskell-graphviz" = callPackage @@ -166078,8 +157151,6 @@ self: { libraryHaskellDepends = [ base bytestring ihaskell process ]; description = "IHaskell display instance for GraphViz (external binary)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ihaskell-hatex" = callPackage @@ -166119,7 +157190,6 @@ self: { ]; description = "Embed R quasiquotes and plots in IHaskell notebooks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ihaskell-juicypixels" = callPackage @@ -166165,8 +157235,6 @@ self: { ]; description = "IHaskell display instances for Parsec"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ihaskell-plot" = callPackage @@ -166178,8 +157246,6 @@ self: { libraryHaskellDepends = [ base bytestring hmatrix ihaskell plot ]; description = "IHaskell display instance for Plot (from plot package)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ihaskell-rlangqq" = callPackage @@ -166197,7 +157263,6 @@ self: { ]; description = "a rDisp quasiquote to show plots from Rlang-QQ in IHaskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ihaskell-widgets" = callPackage @@ -166215,8 +157280,6 @@ self: { ]; description = "IPython standard widgets for IHaskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ihp-hsx" = callPackage @@ -166234,8 +157297,6 @@ self: { ]; description = "JSX-like but for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ihs" = callPackage @@ -166268,7 +157329,6 @@ self: { executableHaskellDepends = [ base network ]; description = "Incremental HTTP iteratee"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ihttp-test"; }) {}; @@ -166289,8 +157349,6 @@ self: { ]; description = "Optimised list functions for doing index-related things"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "illuminate" = callPackage @@ -166311,9 +157369,7 @@ self: { executableToolDepends = [ alex ]; description = "A fast syntax highlighting library built with alex"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "illuminate"; - broken = true; }) {}; "image-type" = callPackage @@ -166327,8 +157383,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Determine the type of an image by reading the first bytes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "imagefilters" = callPackage @@ -166364,8 +157418,6 @@ self: { testPkgconfigDepends = [ imagemagick ]; description = "bindings to imagemagick library"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) imagemagick;}; "imagepaste" = callPackage @@ -166385,9 +157437,7 @@ self: { ]; description = "Command-line image paste utility"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "imagepaste"; - broken = true; }) {}; "imagesize-conduit" = callPackage @@ -166434,7 +157484,6 @@ self: { ]; description = "An efficient IMAP client library, with SSL and streaming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "imapget" = callPackage @@ -166452,9 +157501,7 @@ self: { ]; description = "Downloads email from imap SSL servers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "imapget"; - broken = true; }) {}; "imbib" = callPackage @@ -166476,7 +157523,6 @@ self: { ]; description = "Minimalistic reference manager"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "imgur" = callPackage @@ -166492,8 +157538,6 @@ self: { ]; description = "A function to post an image to imgur"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "imgurder" = callPackage @@ -166514,7 +157558,6 @@ self: { ]; description = "Uploader for Imgur"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "imgurder"; }) {}; @@ -166528,7 +157571,6 @@ self: { testHaskellDepends = [ base ]; description = "Animation Framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "imj-base" = callPackage @@ -166553,7 +157595,6 @@ self: { ]; description = "Game engine with geometry, easing, animated text, delta rendering"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "imj-base-examples-exe"; }) {}; @@ -166575,7 +157616,6 @@ self: { testHaskellDepends = [ base imj-base mtl text ]; description = "A game with flying numbers and 8-bit color animations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "imj-game-hamazed-exe"; }) {}; @@ -166592,7 +157632,6 @@ self: { ]; description = "An application to determine the maximum capacity of stdout buffer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "imj-measure-stdout-exe"; }) {}; @@ -166605,8 +157644,6 @@ self: { libraryHaskellDepends = [ base mtl text ]; description = "Prelude library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "imm" = callPackage @@ -166645,8 +157682,6 @@ self: { ]; description = "Execute arbitrary actions for each item from RSS/Atom feeds"; license = lib.licenses.cc0; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "immortal_0_2_2_1" = callPackage @@ -166708,8 +157743,6 @@ self: { ]; description = "Create worker threads that logs exceptions and restarts"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "imparse" = callPackage @@ -166733,7 +157766,6 @@ self: { ]; description = "Multi-platform parser analyzer and generator"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "imparse"; }) {}; @@ -166762,8 +157794,6 @@ self: { ]; description = "Deep embedding of imperative programs with code generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "imperative-edsl-vhdl" = callPackage @@ -166780,8 +157810,6 @@ self: { ]; description = "Deep embedding of VHDL programs with code generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "impl" = callPackage @@ -166794,8 +157822,6 @@ self: { doHaddock = false; description = "Framework for defaulting superclasses"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "implicit" = callPackage @@ -166914,8 +157940,6 @@ self: { libraryHaskellDepends = [ base mtl time transformers ]; description = "A logging framework built around implicit parameters"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "implicit-params" = callPackage @@ -166927,8 +157951,6 @@ self: { libraryHaskellDepends = [ base data-default-class ]; description = "Named and unnamed implicit parameters with defaults"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "importify" = callPackage @@ -166961,7 +157983,6 @@ self: { ]; description = "Tool for haskell imports refactoring"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "imports" = callPackage @@ -166974,8 +157995,6 @@ self: { testHaskellDepends = [ base directory filepath mtl ]; description = "Generate code for importing directories automatically"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "impossible" = callPackage @@ -166987,8 +158006,6 @@ self: { libraryHaskellDepends = [ base lens ]; description = "Set of data and type definitions of impossible types. Impossible types are useful when declaring type classes / type families instances that should not be expanded by GHC until a specific type is provided in order to keep the types nice and readable."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "imprevu" = callPackage @@ -167031,7 +158048,6 @@ self: { testHaskellDepends = [ base Cabal ]; description = "Imprevu support for Happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "imprint" = callPackage @@ -167046,8 +158062,6 @@ self: { testHaskellDepends = [ base binary constraints hspec ]; description = "Serialization of arbitrary Haskell expressions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "improve" = callPackage @@ -167059,7 +158073,6 @@ self: { libraryHaskellDepends = [ base mtl yices ]; description = "An imperative, verifiable programming language for high assurance applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "impure-containers" = callPackage @@ -167082,8 +158095,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Mutable containers in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "in-other-words" = callPackage @@ -167126,8 +158137,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Disambiguate obvious uses of effects when using in-other-words"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "inbox" = callPackage @@ -167172,7 +158181,6 @@ self: { ]; description = "A type-checker for Haskell with integer constraints"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "inch"; }) {}; @@ -167187,8 +158195,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Simple parser combinators for lexical analysis"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "incipit" = callPackage @@ -167205,7 +158211,6 @@ self: { ]; description = "A Prelude for Polysemy"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "incipit-base" = callPackage @@ -167301,7 +158306,6 @@ self: { benchmarkHaskellDepends = [ base containers deepseq QuickCheck ]; description = "Incremental computing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "incremental-maps" = callPackage @@ -167325,7 +158329,6 @@ self: { ]; description = "Package for doing incremental computations on maps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "incremental-parser" = callPackage @@ -167379,7 +158382,6 @@ self: { ]; description = "type classes for incremental updates to data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "indent" = callPackage @@ -167411,7 +158413,6 @@ self: { ]; description = "Indentation sensitive parsing combinators for Parsec and Trifecta"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "indentation-core" = callPackage @@ -167423,8 +158424,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Indentation sensitive parsing combinators core library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "indentation-parsec" = callPackage @@ -167439,7 +158438,6 @@ self: { testHaskellDepends = [ base parsec tasty tasty-hunit ]; description = "Indentation sensitive parsing combinators for Parsec"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "indentation-trifecta" = callPackage @@ -167456,7 +158454,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit trifecta ]; description = "Indentation sensitive parsing combinators for Trifecta"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "indentparser" = callPackage @@ -167497,9 +158494,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Indexed Types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.Gabriella439 ]; - broken = true; }) {}; "indexation" = callPackage @@ -167521,7 +158516,6 @@ self: { ]; description = "Tools for entity indexation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "indexed" = callPackage @@ -167546,8 +158540,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Simple, no-frills indexed lists"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "indexed-do-notation" = callPackage @@ -167562,8 +158554,6 @@ self: { ]; description = "Do notation for indexed monads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "indexed-extras" = callPackage @@ -167658,8 +158648,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "A series of type families and constraints for \"indexable\" types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "indian-language-font-converter" = callPackage @@ -167686,8 +158674,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "Multi-dimensional statically bounded indices"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "indieweb-algorithms" = callPackage @@ -167717,7 +158703,6 @@ self: { ]; description = "A collection of implementations of IndieWeb algorithms"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "indigo" = callPackage @@ -167756,7 +158741,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Convenient imperative eDSL over Lorentz"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "indigo"; }) {}; @@ -167790,8 +158774,6 @@ self: { testHaskellDepends = [ array base deepseq QuickCheck text vector ]; description = "Non-contiguous interval data types with potentially infinite ranges"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "infer-license" = callPackage @@ -167827,9 +158809,7 @@ self: { ]; description = "Find the repository from where a given repo was forked"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "infer-upstream"; - broken = true; }) {}; "infernal" = callPackage @@ -167850,8 +158830,6 @@ self: { ]; description = "The Infernal Machine - An AWS Lambda Custom Runtime for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "inferno-core" = callPackage @@ -167877,7 +158855,6 @@ self: { ]; description = "A statically-typed functional scripting language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "inferno-lsp" = callPackage @@ -167902,7 +158879,6 @@ self: { executableHaskellDepends = [ base ]; description = "LSP for Inferno"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "inferno-lsp-server"; }) {}; @@ -167925,8 +158901,6 @@ self: { ]; description = "Core types for Inferno"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "inferno-vc" = callPackage @@ -167950,7 +158924,6 @@ self: { ]; description = "Version control server for Inferno"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "infernu" = callPackage @@ -167971,8 +158944,6 @@ self: { executableHaskellDepends = [ base optparse-applicative parsec ]; description = "Type inference and checker for JavaScript (experimental)"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "infinite-list" = callPackage @@ -168018,7 +158989,6 @@ self: { base binary Cabal filepath ghc irc plugins ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "infinity"; }) {}; @@ -168031,8 +159001,6 @@ self: { libraryHaskellDepends = [ base containers haskell-src ]; description = "Infix expression re-parsing (for HsParser library)"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "inflections" = callPackage @@ -168053,8 +159021,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Inflections library for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "inflist" = callPackage @@ -168067,8 +159033,6 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "An infinite list type and operations thereon"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "influxdb" = callPackage @@ -168124,9 +159088,7 @@ self: { ]; description = "A yesod subsite serving a wiki"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "informative-test"; - broken = true; }) {}; "ini" = callPackage @@ -168157,8 +159119,6 @@ self: { testHaskellDepends = [ base HUnit ini raw-strings-qq text ]; description = "Quasiquoter for INI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "inilist" = callPackage @@ -168178,8 +159138,6 @@ self: { ]; description = "Processing for .ini files with duplicate sections and options"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "initialize" = callPackage @@ -168191,8 +159149,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Initialization and Deinitialization of 'Storable' values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "inj" = callPackage @@ -168214,8 +159170,6 @@ self: { libraryHaskellDepends = [ base inj ]; description = "'Inj' instances for 'base'"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "inject" = callPackage @@ -168247,8 +159201,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Monadic functions with injected parameters"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "injections" = callPackage @@ -168265,8 +159217,6 @@ self: { ]; description = "Canonical categorical conversions (injections and projections)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "inline-asm" = callPackage @@ -168356,8 +159306,6 @@ self: { testHaskellDepends = [ base hspec inline-c ]; description = "Lets you embed Objective-C code into Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "inline-c-win32" = callPackage @@ -168399,7 +159347,6 @@ self: { ]; description = "Java interop via inline Java code in Haskell modules"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "inline-r" = callPackage @@ -168434,8 +159381,6 @@ self: { ]; description = "Seamlessly call R from Haskell and vice versa. No FFI required."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) R;}; "inliterate" = callPackage @@ -168456,7 +159401,6 @@ self: { testHaskellDepends = [ base text ]; description = "Interactive literate programming"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "inlitpp"; }) {}; @@ -168523,8 +159467,6 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring dlist ]; description = "Stupid simple bytestring templates"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "inspection-proxy" = callPackage @@ -168581,7 +159523,6 @@ self: { testHaskellDepends = [ base ]; description = "Create benchmarks from the HAR files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "inspector-wrecker-exe"; }) {}; @@ -168621,8 +159562,6 @@ self: { ]; description = "SDK for adding custom Instana tracing support to Haskell applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "instance-control" = callPackage @@ -168650,8 +159589,6 @@ self: { ]; description = "Template haskell utilities for helping with deserialization etc. of existential types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "instant-aeson" = callPackage @@ -168668,7 +159605,6 @@ self: { ]; description = "Generic Aeson instances through instant-generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "instant-bytes" = callPackage @@ -168685,7 +159621,6 @@ self: { ]; description = "Generic Serial instances through instant-generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "instant-deepseq" = callPackage @@ -168697,7 +159632,6 @@ self: { libraryHaskellDepends = [ base deepseq instant-generics ]; description = "Generic NFData instances through instant-generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "instant-generics" = callPackage @@ -168711,8 +159645,6 @@ self: { libraryHaskellDepends = [ base containers syb template-haskell ]; description = "Generic programming library with a sum of products view"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "instant-hashable" = callPackage @@ -168724,7 +159656,6 @@ self: { libraryHaskellDepends = [ base hashable instant-generics ]; description = "Generic Hashable instances through instant-generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "instant-zipper" = callPackage @@ -168738,7 +159669,6 @@ self: { libraryHaskellDepends = [ base instant-generics mtl ]; description = "Heterogenous Zipper in Instant Generics"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "instapaper-sender" = callPackage @@ -168758,9 +159688,7 @@ self: { ]; description = "Basic HTTP gateway to save articles to Instapaper"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "instapaper-sender"; - broken = true; }) {}; "instinct" = callPackage @@ -168772,8 +159700,6 @@ self: { libraryHaskellDepends = [ base containers mersenne-random vector ]; description = "Fast artifical neural networks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "instrument" = callPackage @@ -168839,7 +159765,6 @@ self: { ]; description = "Adds a worker for the instrument package that exports to Amazon CloudWatch"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "int-cast" = callPackage @@ -168879,8 +159804,6 @@ self: { ]; description = "Interval map"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "int-like" = callPackage @@ -168899,8 +159822,6 @@ self: { ]; description = "Newtype wrappers over IntSet and IntMap"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "int-multimap" = callPackage @@ -168922,8 +159843,6 @@ self: { ]; description = "A data structure that associates each Int key with a set of values"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "intcode" = callPackage @@ -168938,8 +159857,6 @@ self: { testHaskellDepends = [ base containers doctest primitive ]; description = "Advent of Code 2019 intcode interpreter"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "integer-conversion" = callPackage @@ -169000,8 +159917,6 @@ self: { sha256 = "0lrhf6mw90bfph3hbyxv3n7g2n2xnjfq4qnhyhw4ml76k4yybmxa"; description = "A pure-Haskell implementation of arbitrary-precision Integers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "integer-roots" = callPackage @@ -169032,8 +159947,6 @@ self: { libraryHaskellDepends = [ ghc-prim ]; description = "Simple Integer library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "integer-types" = callPackage @@ -169088,7 +160001,6 @@ self: { ]; description = "Integrate different assays"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "integreat"; }) {}; @@ -169108,7 +160020,6 @@ self: { librarySystemDepends = [ intel_aes ]; description = "Hardware accelerated AES encryption and Random Number Generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {intel_aes = null;}; "intel-powermon" = callPackage @@ -169143,8 +160054,6 @@ self: { doHaddock = false; description = "A GHC Core plugin for intensional datatype refinement checking"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "interact" = callPackage @@ -169161,8 +160070,6 @@ self: { ]; description = "instantly create REPL from any function"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "interactive-plot" = callPackage @@ -169182,9 +160089,7 @@ self: { executableHaskellDepends = [ base ]; description = "Interactive quick time series plotting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "interactive-plot-demo"; - broken = true; }) {}; "interchangeable" = callPackage @@ -169209,9 +160114,7 @@ self: { executableHaskellDepends = [ base directory haskell-src hint mtl ]; description = "Generates a version of a module using InterleavableIO"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "interleavableGen"; - broken = true; }) {}; "interleavableIO" = callPackage @@ -169223,8 +160126,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Use other Monads in functions that asks for an IO Monad"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "interleave" = callPackage @@ -169265,8 +160166,6 @@ self: { ]; description = "Prelude replacement based on protolude"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "intern" = callPackage @@ -169300,9 +160199,7 @@ self: { ]; description = "Shell command for constructing custom stamps for German Post"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "internetmarke"; - broken = true; }) {}; "intero" = callPackage @@ -169329,9 +160226,7 @@ self: { ]; description = "Complete interactive development program for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "intero"; - broken = true; }) {}; "interp" = callPackage @@ -169363,9 +160258,7 @@ self: { ]; description = "Tracery-like randomized text interpolation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "interp"; - broken = true; }) {}; "interpol" = callPackage @@ -169389,9 +160282,7 @@ self: { ]; description = "GHC preprocessor and library to enable variable interpolation in strings"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "interpol"; - broken = true; }) {}; "interpolate" = callPackage @@ -169441,7 +160332,6 @@ self: { ]; description = "QuasiQuoter for Ruby-style multi-line interpolated strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "interpolatedstring-qq-mwotton" = callPackage @@ -169457,7 +160347,6 @@ self: { ]; description = "DO NOT USE THIS. interpolatedstring-qq works now."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "interpolatedstring-qq2" = callPackage @@ -169476,8 +160365,6 @@ self: { ]; description = "QuasiQuoter for multi-line interpolated strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "interpolation" = callPackage @@ -169519,8 +160406,6 @@ self: { ]; description = "Runtime interpolation of environment variables in records using profunctors"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "interprocess" = callPackage @@ -169557,8 +160442,6 @@ self: { testHaskellDepends = [ base Cabal either transformers ]; description = "Monad transformers that can be run and resumed later, conserving their context"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "interspersed" = callPackage @@ -169584,8 +160467,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Intervals with adherences"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "interval-algebra" = callPackage @@ -169607,9 +160488,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "An implementation of Allen's interval algebra for temporal logic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tutorial"; - broken = true; }) {}; "interval-functor" = callPackage @@ -169641,8 +160520,6 @@ self: { ]; description = "Intervals, and monoids thereof"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "interval-tree-clock" = callPackage @@ -169655,8 +160532,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Interval Tree Clocks"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "intervals" = callPackage @@ -169720,8 +160595,6 @@ self: { ]; description = "A quasiquoter for better instance deriving and default methods"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "intro" = callPackage @@ -169744,8 +160617,6 @@ self: { ]; description = "Safe and minimal prelude"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "intro-prelude" = callPackage @@ -169761,7 +160632,6 @@ self: { doHaddock = false; description = "Intro reexported as Prelude"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "introduction" = callPackage @@ -169782,8 +160652,6 @@ self: { ]; description = "A prelude for safe new projects"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "introduction-test" = callPackage @@ -169803,7 +160671,6 @@ self: { ]; description = "A prelude for the tests of safe new projects"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "intset" = callPackage @@ -169815,7 +160682,6 @@ self: { libraryHaskellDepends = [ base bits-extras bytestring deepseq ]; description = "Pure, mergeable, succinct Int sets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "intset-imperative" = callPackage @@ -169883,9 +160749,7 @@ self: { ]; description = "Project statistics and definition analysis"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "inventory"; - broken = true; }) {}; "invert" = callPackage @@ -169928,8 +160792,6 @@ self: { testHaskellDepends = [ base QuickCheck transformers ]; description = "bidirectional arrows, bijective functions, and invariant functors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "invertible-grammar" = callPackage @@ -169960,7 +160822,6 @@ self: { libraryHaskellDepends = [ base HList invertible ]; description = "invertible functions and instances for HList"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "invertible-hxt" = callPackage @@ -169974,7 +160835,6 @@ self: { ]; description = "invertible transformer instances for HXT Picklers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "invertible-syntax" = callPackage @@ -169986,8 +160846,6 @@ self: { libraryHaskellDepends = [ base partial-isomorphisms ]; description = "Invertible syntax descriptions for both parsing and pretty printing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "involutive-semigroups" = callPackage @@ -169999,8 +160857,6 @@ self: { libraryHaskellDepends = [ base bytestring containers text vector ]; description = "Semigroups with involution"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "io-capture" = callPackage @@ -170019,8 +160875,6 @@ self: { ]; description = "Capture IO actions' stdout and stderr"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "io-choice" = callPackage @@ -170040,8 +160894,6 @@ self: { ]; description = "Choice for IO and lifted IO"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "io-classes" = callPackage @@ -170120,9 +160972,7 @@ self: { executableHaskellDepends = [ base ]; description = "An API for generating TIMBER style reactive objects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "io-reactive-test"; - broken = true; }) {}; "io-region" = callPackage @@ -170273,8 +161123,6 @@ self: { libraryHaskellDepends = [ base network unix ]; description = "Type-safe I/O control package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ion" = callPackage @@ -170295,7 +161143,6 @@ self: { ]; description = "EDSL for concurrent, realtime, embedded programming on top of Ivory"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ion_example"; }) {}; @@ -170319,8 +161166,6 @@ self: { libraryHaskellDepends = [ base bytestring path text ]; description = "A class of strings that can be involved in IO"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "iothread" = callPackage @@ -170332,8 +161177,6 @@ self: { libraryHaskellDepends = [ base ]; description = "run IOs in a single thread"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "iotransaction" = callPackage @@ -170345,8 +161188,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Supports the automatic undoing of IO operations when an exception is thrown"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ip" = callPackage @@ -170393,8 +161234,6 @@ self: { testHaskellDepends = [ base cpu network tasty tasty-hunit ]; description = "Quasiquoter for IP addresses"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ip2location" = callPackage @@ -170411,8 +161250,6 @@ self: { ]; description = "IP2Location Haskell package for IP geolocation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ip2proxy" = callPackage @@ -170429,8 +161266,6 @@ self: { ]; description = "IP2Proxy Haskell package for proxy detection"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ip6addr" = callPackage @@ -170461,8 +161296,6 @@ self: { testHaskellDepends = [ base hspec text ]; description = "Internal Phonetic Alphabet (IPA)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ipatch" = callPackage @@ -170481,7 +161314,6 @@ self: { ]; description = "interactive patch editor"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "ipatch"; }) {}; @@ -170498,7 +161330,6 @@ self: { ]; description = "High level inter-process communication library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ipcvar" = callPackage @@ -170543,8 +161374,6 @@ self: { ]; description = "Access IPFS locally and remotely"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ipfs-api" = callPackage @@ -170581,7 +161410,6 @@ self: { ]; description = "IPLD Content-IDentifiers "; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ipopt-hs" = callPackage @@ -170603,8 +161431,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "haskell binding to ipopt and nlopt including automatic differentiation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) ipopt; inherit (pkgs) nlopt;}; "ipprint" = callPackage @@ -170616,7 +161442,6 @@ self: { libraryHaskellDepends = [ base haskell-src sr-extra ]; description = "Tiny helper for pretty-printing values in ghci console"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "iproute" = callPackage @@ -170654,9 +161479,7 @@ self: { executableHaskellDepends = [ base QuickCheck syb ]; description = "iptables rules parser/printer library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "iptables-helpers-test"; - broken = true; }) {}; "iptadmin" = callPackage @@ -170681,7 +161504,6 @@ self: { ]; description = "web-interface for iptables"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "iptadmin"; }) {}; @@ -170823,9 +161645,7 @@ self: { testHaskellDepends = [ base hashable HUnit text ]; description = "IRC core library for glirc"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.kiwi ]; - broken = true; }) {}; "irc-ctcp" = callPackage @@ -170861,8 +161681,6 @@ self: { ]; description = "A DCC message parsing and helper library for IRC clients"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "irc-fun-bot" = callPackage @@ -170883,7 +161701,6 @@ self: { ]; description = "Library for writing fun IRC bots"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "irc-fun-client" = callPackage @@ -170902,7 +161719,6 @@ self: { ]; description = "Another library for writing IRC clients"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "irc-fun-color" = callPackage @@ -170919,7 +161735,6 @@ self: { testHaskellDepends = [ base text ]; description = "Add color and style decorations to IRC messages"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "irc-fun-messages" = callPackage @@ -170933,7 +161748,6 @@ self: { ]; description = "Types and functions for working with the IRC protocol"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "irc-fun-types" = callPackage @@ -170945,8 +161759,6 @@ self: { libraryHaskellDepends = [ base hashable text ]; description = "Common types for IRC related packages"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ircbot" = callPackage @@ -170967,9 +161779,7 @@ self: { executableHaskellDepends = [ base ]; description = "A library for writing IRC bots"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ircbot-demo"; - broken = true; }) {}; "ircbouncer" = callPackage @@ -170992,8 +161802,6 @@ self: { libraryHaskellDepends = [ base QuickCheck ]; description = "Real numbers and intervals with relatively efficient exact arithmetic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "iri" = callPackage @@ -171020,8 +161828,6 @@ self: { ]; description = "RFC-based resource identifier library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "iridium" = callPackage @@ -171049,9 +161855,7 @@ self: { ]; description = "Automated Local Cabal Package Testing and Uploading"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "iridium"; - broken = true; }) {}; "iris" = callPackage @@ -171069,8 +161873,6 @@ self: { testHaskellDepends = [ base hspec optparse-applicative text ]; description = "Haskell CLI framework"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "iron-mq" = callPackage @@ -171082,8 +161884,6 @@ self: { libraryHaskellDepends = [ aeson base http-client lens text wreq ]; description = "Iron.IO message queueing client library"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ironforge" = callPackage @@ -171106,7 +161906,6 @@ self: { ]; description = "A technical demo for Antisplice"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ironforge"; }) {}; @@ -171119,8 +161918,6 @@ self: { libraryHaskellDepends = [ ad base data-default-class statistics ]; description = "Item Response Theory functions for use in computerized adaptive testing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "is" = callPackage @@ -171164,9 +161961,7 @@ self: { ]; description = "An executable and library to determine if a file is a DICOM file"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "isdicom"; - broken = true; }) {}; "isevaluated" = callPackage @@ -171178,7 +161973,6 @@ self: { libraryHaskellDepends = [ base vacuum ]; description = "Check whether a value has been evaluated"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "isiz" = callPackage @@ -171220,7 +162014,6 @@ self: { ]; description = "Advanced ESMTP library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "iso-deriving" = callPackage @@ -171292,8 +162085,6 @@ self: { ]; description = "Types and parser for ISO8601 durations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "iso8601-time" = callPackage @@ -171331,8 +162122,6 @@ self: { ]; description = "A parser and generator for the ISO-14496-12/14 base media file format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "isobmff-builder" = callPackage @@ -171357,7 +162146,6 @@ self: { ]; description = "A (bytestring-) builder for the ISO-14496-12 base media file format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "isocline" = callPackage @@ -171390,7 +162178,6 @@ self: { ]; description = "Bindings to the isoHunt torrent search API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "isomorphism-class" = callPackage @@ -171431,8 +162218,6 @@ self: { ]; description = "Isotopic masses and relative abundances"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ispositive" = callPackage @@ -171457,8 +162242,6 @@ self: { testHaskellDepends = [ base generic-lens QuickCheck ]; description = "Automatically derivable Has instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "itanium-abi" = callPackage @@ -171496,9 +162279,7 @@ self: { ]; description = "Issue Tracker for the CLI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "itcli"; - broken = true; }) {}; "itemfield" = callPackage @@ -171526,8 +162307,6 @@ self: { ]; description = "A brick Widget for selectable summary of many elements on a terminal"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "iter-stats" = callPackage @@ -171546,7 +162325,6 @@ self: { ]; description = "iteratees for statistical processing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "iterIO" = callPackage @@ -171565,8 +162343,6 @@ self: { librarySystemDepends = [ zlib ]; description = "Iteratee-based IO with pipe operators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) zlib;}; "iterable" = callPackage @@ -171612,8 +162388,6 @@ self: { ]; description = "Iteratee-based I/O"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "iteratee-compress" = callPackage @@ -171626,7 +162400,6 @@ self: { librarySystemDepends = [ bzip2 zlib ]; description = "Enumeratees for compressing and decompressing streams"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) bzip2; inherit (pkgs) zlib;}; "iteratee-mtl" = callPackage @@ -171644,7 +162417,6 @@ self: { ]; description = "Iteratee-based I/O"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "iteratee-parsec" = callPackage @@ -171660,7 +162432,6 @@ self: { ]; description = "Package allowing parsec parser initeratee"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "iteratee-stm" = callPackage @@ -171674,7 +162445,6 @@ self: { ]; description = "Concurrent iteratees using STM"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "iterative-forward-search" = callPackage @@ -171695,8 +162465,6 @@ self: { ]; description = "An IFS constraint solver"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "iterio-server" = callPackage @@ -171713,7 +162481,6 @@ self: { ]; description = "Library for building servers with IterIO"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "iterm-show" = callPackage @@ -171730,9 +162497,7 @@ self: { executableHaskellDepends = [ base bytestring ]; description = "Enable graphical display of images inline on some terminals"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "it2-show"; - broken = true; }) {}; "iterm-show-JuicyPixels" = callPackage @@ -171746,7 +162511,6 @@ self: { libraryHaskellDepends = [ base iterm-show JuicyPixels ]; description = "Orphan Show instances for JuciyPixels image types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "iterm-show-diagrams" = callPackage @@ -171764,7 +162528,6 @@ self: { ]; description = "Orphan Show instances for diagrams package that render inline in some terminals"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ival" = callPackage @@ -171781,7 +162544,6 @@ self: { ]; description = "Intervals"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ivar-simple" = callPackage @@ -171811,7 +162573,6 @@ self: { ]; description = "Theorem proving library based on dependent type theory"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ivory" = callPackage @@ -171830,8 +162591,6 @@ self: { libraryToolDepends = [ alex happy ]; description = "Safe embedded C programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ivory-artifact" = callPackage @@ -171860,7 +162619,6 @@ self: { ]; description = "Ivory register bindings for the Atmega328p"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ivory-backend-c" = callPackage @@ -171881,7 +162639,6 @@ self: { ]; description = "Ivory C backend"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ivory-bitdata" = callPackage @@ -171900,7 +162657,6 @@ self: { executableHaskellDepends = [ base ivory ivory-backend-c ]; description = "Ivory bit-data support"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ivory-bitdata-example"; }) {}; @@ -171920,7 +162676,6 @@ self: { ]; description = "Simple concrete evaluator for Ivory programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ivory-examples" = callPackage @@ -171943,7 +162698,6 @@ self: { ]; description = "Ivory examples"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ivory-c-clang-test"; }) {}; @@ -171957,7 +162711,6 @@ self: { libraryHaskellDepends = [ base filepath ivory ivory-artifact ]; description = "Ivory hardware model (STM32F4)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ivory-opts" = callPackage @@ -171974,7 +162727,6 @@ self: { ]; description = "Ivory compiler optimizations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ivory-quickcheck" = callPackage @@ -171996,7 +162748,6 @@ self: { ]; description = "QuickCheck driver for Ivory"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ivory-serialize" = callPackage @@ -172013,7 +162764,6 @@ self: { ]; description = "Serialization library for Ivory"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ivory-stdlib" = callPackage @@ -172026,7 +162776,6 @@ self: { libraryHaskellDepends = [ base filepath ivory ivory-artifact ]; description = "Ivory standard library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ivy-web" = callPackage @@ -172042,7 +162791,6 @@ self: { ]; description = "A lightweight web framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "iwlib" = callPackage @@ -172075,7 +162823,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Indexed monads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ix-shapable" = callPackage @@ -172100,9 +162847,7 @@ self: { executableHaskellDepends = [ base preprocessor-tools syb ]; description = "A preprocessor for expanding \"ixdo\" notation for indexed monads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ixdopp"; - broken = true; }) {}; "ixmonad" = callPackage @@ -172116,8 +162861,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Embeds effect systems into Haskell using parameteric effect monads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ixset" = callPackage @@ -172136,7 +162879,6 @@ self: { ]; description = "Efficient relational queries on Haskell sets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ixset-typed" = callPackage @@ -172158,8 +162900,6 @@ self: { ]; description = "Efficient relational queries on Haskell sets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ixset-typed-binary-instance" = callPackage @@ -172171,7 +162911,6 @@ self: { libraryHaskellDepends = [ base binary ixset-typed ]; description = "Binary instance for ixset-typed"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ixset-typed-cassava" = callPackage @@ -172187,7 +162926,6 @@ self: { ]; description = "cassava encoding and decoding via ixset-typed"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ixset-typed-conversions" = callPackage @@ -172204,7 +162942,6 @@ self: { ]; description = "Conversions from ixset-typed to other containers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ixset-typed-hashable-instance" = callPackage @@ -172216,7 +162953,6 @@ self: { libraryHaskellDepends = [ base hashable ixset-typed ]; description = "Hashable instance for ixset-typed"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ixshader" = callPackage @@ -172233,8 +162969,6 @@ self: { ]; description = "A shallow embedding of the OpenGL Shading Language in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "iyql" = callPackage @@ -172254,7 +162988,6 @@ self: { ]; description = "CLI (command line interface) to YQL"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "iyql"; }) {}; @@ -172272,8 +163005,6 @@ self: { testHaskellDepends = [ base bytestring repa tasty tasty-hunit ]; description = "J in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "j2hs" = callPackage @@ -172294,7 +163025,6 @@ self: { ]; description = "j2hs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "j2hs"; }) {}; @@ -172379,8 +163109,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "DEPRECATED Bindings to the JACK Audio Connection Kit"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libjack2;}; "jackminimix" = callPackage @@ -172392,8 +163120,6 @@ self: { libraryHaskellDepends = [ base hosc ]; description = "control JackMiniMix"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jackpolynomials" = callPackage @@ -172412,7 +163138,6 @@ self: { ]; description = "Jack, zonal, and Schur polynomials"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "jacobi-elliptic" = callPackage @@ -172439,8 +163164,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Roots of two shifted Jacobi polynomials (Legendre and Radau) to double precision"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jacobi-theta" = callPackage @@ -172478,9 +163201,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Generate flamegraphs from Jaeger .json dumps."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "jaeger-flamegraph"; - broken = true; }) {}; "jail" = callPackage @@ -172496,8 +163217,6 @@ self: { ]; description = "Jailed IO monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jailbreak-cabal" = callPackage @@ -172548,8 +163267,6 @@ self: { ]; description = "Higher level functions for linear algebra. Wraps BLAS and LAPACKE."; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) blas; cblas = null; lapacke = null;}; "jammittools" = callPackage @@ -172570,9 +163287,7 @@ self: { executableHaskellDepends = [ base boxes directory filepath ]; description = "Export sheet music and audio from Windows/Mac app Jammit"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "jammittools"; - broken = true; }) {}; "japanese-calendar" = callPackage @@ -172618,9 +163333,7 @@ self: { ]; description = "Tool for searching java classes, members and fields in classfiles and JAR archives"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "jarf"; - broken = true; }) {}; "jarify" = callPackage @@ -172642,9 +163355,7 @@ self: { doHaddock = false; description = "Jarification of Haskell sources"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "jarify"; - broken = true; }) {}; "jaskell" = callPackage @@ -172660,8 +163371,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Stack-based concatenative language embedded in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jason" = callPackage @@ -172681,9 +163390,7 @@ self: { testHaskellDepends = [ aeson base bytestring text ]; description = "A fast JASONETTE-iOS JSON combinator library for haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "jason"; - broken = true; }) {}; "java-adt" = callPackage @@ -172699,9 +163406,7 @@ self: { executableToolDepends = [ alex happy ]; description = "Create immutable algebraic data structures for Java"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "java-adt"; - broken = true; }) {}; "java-bridge" = callPackage @@ -172725,7 +163430,6 @@ self: { ]; description = "Bindings to the JNI and a high level interface generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "java-bridge-extras" = callPackage @@ -172737,7 +163441,6 @@ self: { libraryHaskellDepends = [ base java-bridge transformers ]; description = "Utilities for working with the java-bridge package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "java-character" = callPackage @@ -172749,7 +163452,6 @@ self: { libraryHaskellDepends = [ base diet ]; description = "Functions to simulate Java's Character class"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "java-poker" = callPackage @@ -172776,7 +163478,6 @@ self: { libraryHaskellDepends = [ base containers hx java-bridge ]; description = "Tools for reflecting on Java classes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "javaclass" = callPackage @@ -172797,7 +163498,6 @@ self: { ]; description = "Java class files"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "javascript-bridge" = callPackage @@ -172819,8 +163519,6 @@ self: { testHaskellDepends = [ aeson base scotty stm text time wai-extra ]; description = "Remote Monad for JavaScript on the browser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "javascript-extras" = callPackage @@ -172841,7 +163539,6 @@ self: { executableHaskellDepends = [ base ghcjs-base-stub ]; description = "Extra javascript functions when using GHCJS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "javascript-extras-test"; }) {}; @@ -172863,7 +163560,6 @@ self: { ]; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "javasf"; }) {}; @@ -172881,9 +163577,7 @@ self: { ]; description = "A utility to print the target version of Java class files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "javav"; - broken = true; }) {}; "jbi" = callPackage @@ -172905,9 +163599,7 @@ self: { ]; description = "Just Build It - a \"do what I mean\" abstraction for Haskell build tools"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "jbi"; - broken = true; }) {}; "jcdecaux-vls" = callPackage @@ -172923,8 +163615,6 @@ self: { ]; description = "JCDecaux self-service bicycles API client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jdi" = callPackage @@ -172943,9 +163633,7 @@ self: { executableHaskellDepends = [ base mtl network ]; description = "Implementation of Java Debug Interface"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "Test"; - broken = true; }) {}; "jenga" = callPackage @@ -172967,9 +163655,7 @@ self: { executableHaskellDepends = [ base optparse-applicative text ]; description = "Generate a cabal freeze file from a stack.yaml"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "jenga"; - broken = true; }) {}; "jenkinsPlugins2nix" = callPackage @@ -172994,9 +163680,7 @@ self: { testHaskellDepends = [ base containers tasty-hspec text ]; description = "Generate nix for Jenkins plugins"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "jenkinsPlugins2nix"; - broken = true; }) {}; "jespresso" = callPackage @@ -173026,7 +163710,6 @@ self: { ]; description = "Extract all JavaScript from an HTML page and consolidate it in one script"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "jespresso"; }) {}; @@ -173086,8 +163769,6 @@ self: { ]; description = "Yet another streaming library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jinquantities" = callPackage @@ -173110,9 +163791,7 @@ self: { ]; description = "Unit conversion and manipulation library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "quantities"; - broken = true; }) {}; "jira-wiki-markup" = callPackage @@ -173199,8 +163878,6 @@ self: { ]; description = "JSON-RPC clients and servers using JMacro, and evented client-server Reactive Programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jmacro-rpc-happstack" = callPackage @@ -173217,7 +163894,6 @@ self: { ]; description = "Happstack backend for jmacro-rpc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "jmacro-rpc-snap" = callPackage @@ -173233,7 +163909,6 @@ self: { ]; description = "Snap backend for jmacro-rpc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "jml-web-service" = callPackage @@ -173254,8 +163929,6 @@ self: { testHaskellDepends = [ base protolude tasty ]; description = "Common utilities for running a web service"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jmonkey" = callPackage @@ -173290,8 +163963,6 @@ self: { testHaskellDepends = [ base hspec singletons ]; description = "Complete JNI raw bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) jdk;}; "jobqueue" = callPackage @@ -173317,8 +163988,6 @@ self: { ]; description = "A job queue library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jobs-ui" = callPackage @@ -173339,7 +164008,6 @@ self: { ]; description = "A library for creating a jobs management website running custom jobs"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "join" = callPackage @@ -173352,7 +164020,6 @@ self: { libraryHaskellDepends = [ base haskell98 multisetrewrite stm ]; description = "Parallel Join Patterns with Guards and Propagation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "join-api" = callPackage @@ -173366,8 +164033,6 @@ self: { ]; description = "Bindings for Join push notifications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "joinlist" = callPackage @@ -173379,8 +164044,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Join list - symmetric list type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "joint" = callPackage @@ -173411,8 +164074,6 @@ self: { ]; description = "An implementation of the Jonathan's Card API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jord" = callPackage @@ -173454,8 +164115,6 @@ self: { ]; description = "JSON with Structure"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jordan-openapi" = callPackage @@ -173477,7 +164136,6 @@ self: { ]; description = "OpenAPI Definitions for Jordan, Automatically"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "jordan-servant" = callPackage @@ -173500,7 +164158,6 @@ self: { ]; description = "Servant Combinators for Jordan"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "jordan-servant-client" = callPackage @@ -173524,7 +164181,6 @@ self: { ]; description = "Servant Client Instances for Jordan Servant Types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "jordan-servant-openapi" = callPackage @@ -173549,7 +164205,6 @@ self: { ]; description = "OpenAPI schemas for Jordan-Powered Servant APIs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "jordan-servant-server" = callPackage @@ -173571,7 +164226,6 @@ self: { ]; description = "Servers for Jordan-Based Servant Combinators"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "jort" = callPackage @@ -173585,9 +164239,7 @@ self: { executableHaskellDepends = [ array base gtk ]; description = "JP's own ray tracer"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "jort"; - broken = true; }) {}; "jose" = callPackage @@ -173656,7 +164308,6 @@ self: { ]; description = "Tiny markdown notebook"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; mainProgram = "jot"; }) {}; @@ -173691,8 +164342,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Transform Joy code using conditional rewrite rules"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jpeg" = callPackage @@ -173704,8 +164353,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A library for decoding JPEG files written in pure Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jpl-horizons-api" = callPackage @@ -173786,8 +164433,6 @@ self: { libraryHaskellDepends = [ base wl-pprint ]; description = "Javascript: The Good Parts -- AST & Pretty Printer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "js-jquery" = callPackage @@ -173838,8 +164483,6 @@ self: { ]; description = "Interface for JavaScript that works with GHCJS and GHC"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jsaddle-dom" = callPackage @@ -173876,7 +164519,6 @@ self: { description = "JSaddle Hello World, an example package"; license = lib.licenses.mit; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; }) {}; "jsaddle-warp" = callPackage @@ -173903,8 +164545,6 @@ self: { ]; description = "Interface for JavaScript that works with GHCJS and GHC"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jsaddle-webkit2gtk" = callPackage @@ -173954,8 +164594,6 @@ self: { sha256 = "07qba7bnygnsy3yg4mk8bn8wfzca43cd7mzzjp5b4yracchvljqj"; description = "Interface for JavaScript that works with GHCJS and GHC"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jsc" = callPackage @@ -173984,7 +164622,6 @@ self: { libraryHaskellDepends = [ base DOM mtl WebBits ]; description = "Javascript Monadic Writer base package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "json" = callPackage @@ -174029,8 +164666,6 @@ self: { libraryHaskellDepends = [ aeson base ]; description = "Union 'alternative' or Either that has untagged JSON encoding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-api" = callPackage @@ -174052,8 +164687,6 @@ self: { ]; description = "Utilities for generating JSON-API payloads"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-api-lib" = callPackage @@ -174078,8 +164711,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Utilities for generating JSON-API payloads"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-assertions" = callPackage @@ -174095,8 +164726,6 @@ self: { ]; description = "Test that your (Aeson) JSON encoding matches your expectations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-ast" = callPackage @@ -174129,7 +164758,6 @@ self: { ]; description = "Encoders of JSON AST"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "json-ast-quickcheck" = callPackage @@ -174144,8 +164772,6 @@ self: { ]; description = "Compatibility layer for \"json-ast\" and \"QuickCheck\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-autotype" = callPackage @@ -174180,7 +164806,6 @@ self: { ]; description = "Automatic type declaration for JSON input data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "json-autotype"; }) {}; @@ -174204,7 +164829,6 @@ self: { ]; description = "JSON parser that uses byte strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "json-schema"; }) {}; @@ -174224,8 +164848,6 @@ self: { ]; description = "Data structure agnostic JSON serialization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-bytes-builder" = callPackage @@ -174241,8 +164863,6 @@ self: { benchmarkHaskellDepends = [ aeson criterion rebase ]; description = "Direct-to-bytes JSON Builder"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-directory" = callPackage @@ -174281,8 +164901,6 @@ self: { ]; description = "A direct-to-bytes single-pass JSON encoder with a declarative DSL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-enumerator" = callPackage @@ -174300,7 +164918,6 @@ self: { ]; description = "Pure-Haskell utilities for dealing with JSON with the enumerator package. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "json-extra" = callPackage @@ -174317,8 +164934,6 @@ self: { ]; description = "Utility functions to extend Aeson"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-feed" = callPackage @@ -174359,8 +164974,6 @@ self: { ]; description = "Generic JSON serialization / deserialization"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-incremental-decoder" = callPackage @@ -174385,7 +164998,6 @@ self: { ]; description = "Incremental JSON parser with early termination and a declarative DSL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "json-litobj" = callPackage @@ -174398,8 +165010,6 @@ self: { testHaskellDepends = [ base hspec json QuickCheck ]; description = "Extends Text.JSON to handle literal JS objects."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-pointer" = callPackage @@ -174413,8 +165023,6 @@ self: { libraryHaskellDepends = [ attoparsec base base-prelude text ]; description = "JSON Pointer parsing and interpretation utilities"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-pointer-aeson" = callPackage @@ -174430,7 +165038,6 @@ self: { ]; description = "Integration layer for \"json-pointer\" and \"aeson\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "json-pointer-hasql" = callPackage @@ -174447,7 +165054,6 @@ self: { ]; description = "JSON Pointer extensions for Hasql"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "json-pointy" = callPackage @@ -174472,8 +165078,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "JSON Pointer (RFC 6901) parsing, access, and modification"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-python" = callPackage @@ -174490,8 +165094,6 @@ self: { libraryPkgconfigDepends = [ python ]; description = "Call python inline from haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {python = null;}; "json-qq" = callPackage @@ -174508,8 +165110,6 @@ self: { ]; description = "Json Quasiquatation library for Haskell"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-query" = callPackage @@ -174533,7 +165133,6 @@ self: { ]; description = "Kitchen sink for querying JSON"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "json-rpc" = callPackage @@ -174565,8 +165164,6 @@ self: { ]; description = "Fully-featured JSON-RPC 2.0 library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-rpc-client" = callPackage @@ -174594,7 +165191,6 @@ self: { ]; description = "JSON-RPC 2.0 on the client side."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "json-rpc-generic" = callPackage @@ -174615,8 +165211,6 @@ self: { ]; description = "Generic encoder and decode for JSON-RPC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-rpc-server" = callPackage @@ -174641,8 +165235,6 @@ self: { ]; description = "JSON-RPC 2.0 on the server side."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-schema" = callPackage @@ -174668,8 +165260,6 @@ self: { ]; description = "Types and type classes for defining JSON schemas"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-sop" = callPackage @@ -174711,7 +165301,6 @@ self: { ]; description = "Type-level JSON specification"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "json-spec-openapi" = callPackage @@ -174731,7 +165320,6 @@ self: { ]; description = "json-spec-openapi"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "json-state" = callPackage @@ -174800,8 +165388,6 @@ self: { ]; description = "High-performance JSON parser and encoder"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-to-haskell" = callPackage @@ -174851,7 +165437,6 @@ self: { ]; description = "Effectful parsing of JSON documents"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "json-tokens" = callPackage @@ -174879,7 +165464,6 @@ self: { ]; description = "Tokenize JSON"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "json-tools" = callPackage @@ -174899,8 +165483,6 @@ self: { ]; description = "A collection of JSON tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-tracer" = callPackage @@ -174924,8 +165506,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A polymorphic, type-safe, json-structured tracing library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json-types" = callPackage @@ -174953,8 +165533,6 @@ self: { ]; description = "Library provides support for JSON"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "json2-hdbc" = callPackage @@ -174970,7 +165548,6 @@ self: { ]; description = "Support JSON for SQL Database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "json2-types" = callPackage @@ -175004,7 +165581,6 @@ self: { doHaddock = false; description = "Lossy conversion from JSON to Sugar"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "json2sg"; }) {}; @@ -175055,9 +165631,7 @@ self: { ]; description = "Filter select values in JSON objects to unix programs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "jsonextfilter"; - broken = true; }) {}; "jsonifier" = callPackage @@ -175137,8 +165711,6 @@ self: { ]; description = "JsonLogic Aeson Support"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jsonnet" = callPackage @@ -175175,9 +165747,7 @@ self: { ]; description = "Jsonnet implementaton in pure Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hs-jsonnet"; - broken = true; }) {}; "jsonpath" = callPackage @@ -175214,8 +165784,6 @@ self: { ]; description = "Parser and datatypes for the JSON Resume format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jsonrpc-conduit" = callPackage @@ -175238,7 +165806,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "JSON-RPC 2.0 server over a Conduit."; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "jsonrpc-tinyclient" = callPackage @@ -175255,8 +165822,6 @@ self: { ]; description = "Tiny JSON-RPC client for Haskell Web3 library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jsons-to-schema" = callPackage @@ -175288,7 +165853,6 @@ self: { ]; description = "JSON to JSON Schema"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "jsons-to-schema-exe"; }) {}; @@ -175311,8 +165875,6 @@ self: { ]; description = "JSON Schema generator from Algebraic data type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jsonsql" = callPackage @@ -175333,9 +165895,7 @@ self: { ]; description = "Interpolate JSON object values into SQL strings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "jsonsql"; - broken = true; }) {}; "jsontsv" = callPackage @@ -175356,9 +165916,7 @@ self: { ]; description = "JSON to TSV transformer"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "jsontsv"; - broken = true; }) {}; "jsonxlsx" = callPackage @@ -175379,9 +165937,7 @@ self: { ]; description = "json to xlsx converter"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "jsonxlsx"; - broken = true; }) {}; "jsop" = callPackage @@ -175406,8 +165962,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Cherry picking in JSON objects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jspath" = callPackage @@ -175423,7 +165977,6 @@ self: { ]; description = "Extract substructures from JSON by following a path"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "juandelacosa" = callPackage @@ -175474,9 +166027,7 @@ self: { ]; description = "Tableau-based theorem prover for justification logic"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "judge"; - broken = true; }) {}; "judy" = callPackage @@ -175492,8 +166043,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Fast, scalable, mutable dynamic arrays, maps and hashes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {Judy = null;}; "juicy-draw" = callPackage @@ -175530,9 +166079,7 @@ self: { ]; description = "SVG to G-Code converter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "juicy-gcode"; - broken = true; }) {}; "jukebox" = callPackage @@ -175554,9 +166101,7 @@ self: { executableHaskellDepends = [ base ]; description = "A first-order reasoning toolbox"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "jukebox"; - broken = true; }) {}; "jump" = callPackage @@ -175624,8 +166169,6 @@ self: { ]; description = "A library for creating and using Jupyter kernels"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "justified-containers" = callPackage @@ -175642,8 +166185,6 @@ self: { ]; description = "Keyed container types with type-checked proofs of key presence"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jvm" = callPackage @@ -175669,7 +166210,6 @@ self: { ]; description = "Call JVM methods from Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "jvm-batching" = callPackage @@ -175696,7 +166236,6 @@ self: { ]; description = "Provides batched marshalling of values between Java and Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "jvm-binary" = callPackage @@ -175729,8 +166268,6 @@ self: { ]; description = "A library for reading Java class-files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jvm-parser" = callPackage @@ -175747,8 +166284,6 @@ self: { ]; description = "A parser for JVM bytecode files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "jvm-streaming" = callPackage @@ -175775,7 +166310,6 @@ self: { ]; description = "Expose Java iterators as streams from the streaming package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "jwt" = callPackage @@ -175822,8 +166356,6 @@ self: { ]; description = "Application wrapper for the k8s environment"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kademlia" = callPackage @@ -175845,8 +166377,6 @@ self: { ]; description = "An implementation of the Kademlia DHT Protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kafka" = callPackage @@ -175877,8 +166407,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Low-level Haskell client library for Apache Kafka 0.7."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kafka-client-sync" = callPackage @@ -175893,8 +166421,6 @@ self: { testHaskellDepends = [ base hw-kafka-client monad-parallel text ]; description = "Synchronous Kafka Client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kafka-device" = callPackage @@ -175915,7 +166441,6 @@ self: { ]; description = "UI device events via a Kafka message broker"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "kafka-device-glut" = callPackage @@ -175930,7 +166455,6 @@ self: { executableHaskellDepends = [ base GLUT kafka-device OpenGL ]; description = "GLUT events via a Kafka message broker"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "kafka-device-glut"; }) {}; @@ -175952,7 +166476,6 @@ self: { ]; description = "Linux joystick events via a Kafka message broker"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "kafka-device-joystick"; }) {}; @@ -175972,7 +166495,6 @@ self: { ]; description = "Leap Motion events via a Kafka message broker"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "kafka-device-leap"; }) {}; @@ -175994,7 +166516,6 @@ self: { ]; description = "Linux SpaceNavigator events via a Kafka message broker"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "kafka-device-spacenav"; }) {}; @@ -176010,7 +166531,6 @@ self: { executableHaskellDepends = [ base kafka-device vrpn ]; description = "VRPN events via a Kafka message broker"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "kafka-device-vrpn"; }) {}; @@ -176034,7 +166554,6 @@ self: { doHaddock = false; description = "Haskell Kaleidoscope tutorial"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "kalman" = callPackage @@ -176054,8 +166573,6 @@ self: { ]; description = "Kalman and particle filters and smoothers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kan-extensions" = callPackage @@ -176087,8 +166604,6 @@ self: { libraryHaskellDepends = [ array base ]; description = "Binary parsing with random access"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kanji" = callPackage @@ -176108,8 +166623,6 @@ self: { benchmarkHaskellDepends = [ aeson base containers criterion text ]; description = "Perform 漢字検定 (Japan Kanji Aptitude Test) level analysis on Japanese Kanji"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kansas-comet" = callPackage @@ -176151,7 +166664,6 @@ self: { ]; description = "Kansas Lava is a hardware simulator and VHDL generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "kansas-lava-cores" = callPackage @@ -176171,7 +166683,6 @@ self: { ]; description = "FPGA Cores Written in Kansas Lava"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "kansas-lava-papilio" = callPackage @@ -176190,7 +166701,6 @@ self: { ]; description = "Kansas Lava support files for the Papilio FPGA board"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "kansas-lava-shake" = callPackage @@ -176207,7 +166717,6 @@ self: { ]; description = "Shake rules for building Kansas Lava projects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "karabiner-config" = callPackage @@ -176227,8 +166736,6 @@ self: { ]; description = "Karabiner elements configuration generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "karakuri" = callPackage @@ -176244,7 +166751,6 @@ self: { ]; description = "Good stateful automata"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "karps" = callPackage @@ -176272,8 +166778,6 @@ self: { ]; description = "Haskell bindings for Spark Dataframes and Datasets"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "karver" = callPackage @@ -176349,8 +166853,6 @@ self: { ]; description = "Datadog scribe for the Katip logging framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "katip-elasticsearch" = callPackage @@ -176382,8 +166884,6 @@ self: { ]; description = "ElasticSearch scribe for the Katip logging framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "katip-kafka" = callPackage @@ -176397,8 +166897,6 @@ self: { ]; description = "Katip scribe to send logs to Kafka"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "katip-logstash" = callPackage @@ -176441,8 +166939,6 @@ self: { ]; description = "Logz.IO scribe for the Katip logging framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "katip-raven" = callPackage @@ -176459,8 +166955,6 @@ self: { ]; description = "Katip scribe for raven (https://sentry.io)"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "katip-rollbar" = callPackage @@ -176477,7 +166971,6 @@ self: { ]; description = "Katip scribe that logs to Rollbar"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "katip-scalyr-scribe" = callPackage @@ -176496,8 +166989,6 @@ self: { ]; description = "A katip scribe for logging to json"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "katip-syslog" = callPackage @@ -176514,8 +167005,6 @@ self: { testHaskellDepends = [ base ]; description = "Syslog Katip Scribe"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "katip-wai" = callPackage @@ -176558,9 +167047,7 @@ self: { testHaskellDepends = [ base bytestring directory mtl ]; description = "Client for the Kattis judge system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "katt"; - broken = true; }) {}; "katydid" = callPackage @@ -176594,9 +167081,7 @@ self: { ]; description = "A haskell implementation of Katydid"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "katydid-exe"; - broken = true; }) {}; "kawa" = callPackage @@ -176644,8 +167129,6 @@ self: { ]; description = "Utilities for serving static sites and blogs with Wai/Warp"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kawhi" = callPackage @@ -176668,8 +167151,6 @@ self: { ]; description = "stats.NBA.com library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kazura-queue" = callPackage @@ -176739,8 +167220,6 @@ self: { ]; description = "A simple k-d tree implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kdesrc-build-extra" = callPackage @@ -176759,9 +167238,7 @@ self: { ]; description = "Build profiles for kdesrc-build"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "kdesrc-build-extra"; - broken = true; }) {}; "kdesrc-build-profiles" = callPackage @@ -176825,9 +167302,7 @@ self: { ]; description = "cryptographic functions based on the sponge construction"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "collision"; - broken = true; }) {}; "keelung" = callPackage @@ -176846,7 +167321,6 @@ self: { ]; description = "DSL for creating zero-knowledge proofs"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "keenser" = callPackage @@ -176874,9 +167348,7 @@ self: { testHaskellDepends = [ base ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "keenser-exe"; - broken = true; }) {}; "keep-alive" = callPackage @@ -176943,7 +167415,6 @@ self: { ]; description = "Haskell on Gtk rails - Gtk-based global environment for MVC applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-mvc-model-lightmodel" = callPackage @@ -176960,7 +167431,6 @@ self: { ]; description = "Rapid Gtk Application Development - Reactive Protected Light Models"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-mvc-model-protectedmodel" = callPackage @@ -176977,7 +167447,6 @@ self: { ]; description = "Rapid Gtk Application Development - Protected Reactive Models"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-mvc-solutions-config" = callPackage @@ -177010,7 +167479,6 @@ self: { ]; description = "Haskell on Gtk rails - Solutions to recurrent problems in Gtk applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-mvc-view" = callPackage @@ -177035,7 +167503,6 @@ self: { ]; description = "Haskell on Gtk rails - Gtk-based View for MVC applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactive-cbmvar" = callPackage @@ -177054,7 +167521,6 @@ self: { ]; description = "Reactive Haskell on Rails - CBMVars as reactive values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactive-fs" = callPackage @@ -177070,7 +167536,6 @@ self: { ]; description = "Haskell on Rails - Files as Reactive Values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactive-gtk" = callPackage @@ -177087,7 +167552,6 @@ self: { ]; description = "Haskell on Gtk rails - Reactive Fields for Gtk widgets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactive-htmldom" = callPackage @@ -177105,7 +167569,6 @@ self: { ]; description = "Keera Hails Reactive bindings for HTML DOM via GHCJS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactive-network" = callPackage @@ -177121,7 +167584,6 @@ self: { ]; description = "Haskell on Rails - Sockets as Reactive Values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactive-polling" = callPackage @@ -177136,7 +167598,6 @@ self: { ]; description = "Haskell on Rails - Polling based Readable RVs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactive-wx" = callPackage @@ -177150,7 +167611,6 @@ self: { ]; description = "Haskell on Rails - Reactive Fields for WX widgets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactive-yampa" = callPackage @@ -177166,7 +167626,6 @@ self: { ]; description = "Haskell on Rails - FRP Yampa Signal Functions as RVs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactivelenses" = callPackage @@ -177185,7 +167644,6 @@ self: { ]; description = "Reactive Haskell on Rails - Lenses applied to Reactive Values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactivevalues" = callPackage @@ -177205,8 +167663,6 @@ self: { testToolDepends = [ cabal-install ]; description = "Haskell on Rails - Reactive Values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "keera-posture" = callPackage @@ -177241,7 +167697,6 @@ self: { executableSystemDepends = [ SDL_mixer ]; description = "Get notifications when your sitting posture is inappropriate"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "keera-posture"; }) {inherit (pkgs) SDL_mixer;}; @@ -177323,8 +167778,6 @@ self: { description = "Basic rendering programs for Keid engine"; license = lib.licenses.bsd3; platforms = [ "x86_64-linux" ]; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "keid-resource-gltf" = callPackage @@ -177341,7 +167794,6 @@ self: { description = "GLTF loader for Keid engine"; license = lib.licenses.bsd3; platforms = [ "x86_64-linux" ]; - hydraPlatforms = lib.platforms.none; }) {}; "keid-sound-openal" = callPackage @@ -177376,8 +167828,6 @@ self: { description = "DearImGui elements for Keid engine"; license = lib.licenses.bsd3; platforms = [ "x86_64-linux" ]; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "keiretsu" = callPackage @@ -177399,9 +167849,7 @@ self: { ]; description = "Multi-process orchestration for development and integration testing"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "keiretsu"; - broken = true; }) {}; "kempe" = callPackage @@ -177436,9 +167884,7 @@ self: { doHaddock = false; description = "Kempe compiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "kc"; - broken = true; }) {}; "kerry" = callPackage @@ -177461,7 +167907,6 @@ self: { ]; description = "Manage and abstract your packer configurations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "kesha" = callPackage @@ -177483,8 +167928,6 @@ self: { ]; description = "Haskell implementation of nix-hash"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "keter" = callPackage @@ -177557,7 +168000,6 @@ self: { ]; description = "a dAmn ↔ IRC proxy"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "kevin"; }) {}; @@ -177575,9 +168017,7 @@ self: { testHaskellDepends = [ array base containers HUnit split ]; description = "CLI and library to generate QR codes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "kewar"; - broken = true; }) {}; "key" = callPackage @@ -177615,7 +168055,6 @@ self: { ]; description = "Store of values of arbitrary types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keycloak-hs" = callPackage @@ -177639,9 +168078,7 @@ self: { ]; executableHaskellDepends = [ base hslogger ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "keycode" = callPackage @@ -177668,8 +168105,6 @@ self: { libraryHaskellDepends = [ base containers vector ]; description = "Generic indexing for many data structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "keyed-vals" = callPackage @@ -177685,8 +168120,6 @@ self: { ]; description = "An abstract Handle for accessing collections in stores like Redis"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "keyed-vals-hspec-tests" = callPackage @@ -177703,7 +168136,6 @@ self: { ]; description = "Validate a keyed-vals Handle"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keyed-vals-mem" = callPackage @@ -177720,7 +168152,6 @@ self: { testHaskellDepends = [ base hspec keyed-vals-hspec-tests ]; description = "Implements a keyed-vals Handle using in-process memory"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keyed-vals-redis" = callPackage @@ -177742,7 +168173,6 @@ self: { ]; description = "Access Redis using a keyed-vals Handle"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keylayouts" = callPackage @@ -177767,7 +168197,6 @@ self: { libraryHaskellDepends = [ base udbus ]; description = "Keyring access"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "keys" = callPackage @@ -177817,7 +168246,6 @@ self: { ]; description = "back up a secret key securely to the cloud"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "keysafe"; }) {}; @@ -177867,7 +168295,6 @@ self: { ]; description = "Pure Haskell key/value store implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "keyword-args" = callPackage @@ -177889,7 +168316,6 @@ self: { ]; description = "Extract data from a keyword-args config file format"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "keyword-args"; }) {}; @@ -177910,9 +168336,7 @@ self: { ]; description = "Command-line file tagging and organization tool"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "khph"; - broken = true; }) {}; "ki" = callPackage @@ -177983,7 +168407,6 @@ self: { ]; description = "Parser and writer for KiCad files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "kickass-torrents-dump-parser" = callPackage @@ -178001,8 +168424,6 @@ self: { ]; description = "Parses kat.ph torrent dumps"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kickchan" = callPackage @@ -178021,8 +168442,6 @@ self: { ]; description = "Kick Channels: bounded channels with non-blocking writes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kif-parser" = callPackage @@ -178041,7 +168460,6 @@ self: { ]; description = "Process KIF iOS test logs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "kif-parser"; }) {}; @@ -178092,8 +168510,6 @@ self: { ]; description = "Generic programming in GHC style for arbitrary kinds and GADTs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kind-generics-th" = callPackage @@ -178123,8 +168539,6 @@ self: { testHaskellDepends = [ base singletons singletons-base ]; description = "Type-level integers. Like KnownNat, but for integers."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kind-rational" = callPackage @@ -178141,7 +168555,6 @@ self: { ]; description = "Type-level rationals. Like KnownNat, but for rationals."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "kinds" = callPackage @@ -178173,7 +168586,6 @@ self: { ]; description = "A dependency manager for Xcode (Objective-C) projects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "kit"; }) {}; @@ -178213,8 +168625,6 @@ self: { ]; description = "A list type based on the Kleene star and plus"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kmeans" = callPackage @@ -178247,7 +168657,6 @@ self: { ]; description = "Sequential and parallel implementations of Lloyd's algorithm"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "kmeans-vector" = callPackage @@ -178264,7 +168673,6 @@ self: { benchmarkHaskellDepends = [ base criterion QuickCheck vector ]; description = "An implementation of the kmeans clustering algorithm based on the vector package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "kmeans-example"; }) {}; @@ -178283,9 +168691,7 @@ self: { ]; description = "K_M,N quadratic programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "kmn-programming"; - broken = true; }) {}; "kmonad" = callPackage @@ -178305,9 +168711,7 @@ self: { executableHaskellDepends = [ base ]; description = "Advanced keyboard remapping utility"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "kmonad"; - broken = true; }) {}; "kmp-dfa" = callPackage @@ -178320,8 +168724,6 @@ self: { testHaskellDepends = [ array base QuickCheck ]; description = "KMP algorithm implementation, based on Deterministic Finite State Automata"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "knead" = callPackage @@ -178343,7 +168745,6 @@ self: { ]; description = "Repa-like array processing using LLVM JIT"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "knead-arithmetic" = callPackage @@ -178357,7 +168758,6 @@ self: { ]; description = "Linear algebra and interpolation using LLVM JIT"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "knit" = callPackage @@ -178409,7 +168809,6 @@ self: { ]; description = "a minimal Rmarkdown sort-of-thing for haskell, by way of Pandoc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "knob" = callPackage @@ -178439,9 +168838,7 @@ self: { executableHaskellDepends = [ base containers parallel ]; description = "Khovanov homology computations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "Rolfsen-Kh"; - broken = true; }) {}; "koellner-phonetic" = callPackage @@ -178455,8 +168852,6 @@ self: { doHaddock = false; description = "\"map German words to code representing pronunciation\""; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "koji" = callPackage @@ -178488,7 +168883,6 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "CLI tool for installing rpms directly from Fedora Koji"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "koji-install"; }) {}; @@ -178512,7 +168906,6 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "Koji CLI tool for querying tasks and installing builds"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "koji-tool"; }) {}; @@ -178546,9 +168939,7 @@ self: { ]; description = "a concatenative not-quite-lisp for kittens"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "koneko"; - broken = true; }) {}; "konnakol" = callPackage @@ -178565,8 +168956,6 @@ self: { testHaskellDepends = [ base ]; description = "Formalising the rules of Konnakol, an Indian percussional art form"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kontra-config" = callPackage @@ -178583,8 +168972,6 @@ self: { ]; description = "JSON config file parsing based on unjson"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kontrakcja-templates" = callPackage @@ -178620,8 +169007,6 @@ self: { ]; description = "Client to Koofr API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "korea-holidays" = callPackage @@ -178641,8 +169026,6 @@ self: { ]; description = "Korea Holidays"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "korfu" = callPackage @@ -178658,7 +169041,6 @@ self: { ]; description = "The Korfu ORF Utility"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "korfu"; }) {}; @@ -178712,8 +169094,6 @@ self: { ]; description = "Kraken.io API client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "krank" = callPackage @@ -178770,8 +169150,6 @@ self: { ]; description = "Haskell bindings for Spark Dataframes and Datasets"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "krpc" = callPackage @@ -178797,8 +169175,6 @@ self: { ]; description = "KRPC protocol implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ks-test" = callPackage @@ -178810,7 +169186,6 @@ self: { libraryHaskellDepends = [ base gamma random-fu roots vector ]; description = "Kolmogorov distribution and Kolmogorov-Smirnov test"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "ksystools" = callPackage @@ -178834,8 +169209,6 @@ self: { libraryPkgconfigDepends = [ egl glew ]; description = "A binding for libktx from Khronos"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {egl = null; inherit (pkgs) glew;}; "ktx-codec" = callPackage @@ -178887,7 +169260,6 @@ self: { ]; description = "Client library for Kubernetes"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "kubernetes-client-core" = callPackage @@ -178915,8 +169287,6 @@ self: { ]; description = "Auto-generated kubernetes-client-core API Client"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kubernetes-webhook-haskell" = callPackage @@ -178933,8 +169303,6 @@ self: { ]; description = "Create Kubernetes Admission Webhooks in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kudzu" = callPackage @@ -178950,9 +169318,7 @@ self: { testHaskellDepends = [ base ]; description = "coverage driven random testing framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "kudzu"; - broken = true; }) {}; "kuifje" = callPackage @@ -178964,8 +169330,6 @@ self: { libraryHaskellDepends = [ base boxes containers lens ]; description = "A Quantitative Information Flow aware programming language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kure" = callPackage @@ -178977,8 +169341,6 @@ self: { libraryHaskellDepends = [ base dlist transformers ]; description = "Combinators for Strategic Programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "kure-your-boilerplate" = callPackage @@ -178990,7 +169352,6 @@ self: { libraryHaskellDepends = [ base kure template-haskell ]; description = "Generator for Boilerplate KURE Combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "kurita" = callPackage @@ -179023,7 +169384,6 @@ self: { testHaskellDepends = [ base ]; description = "Find the alpha emoji"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "kvitable" = callPackage @@ -179044,7 +169404,6 @@ self: { ]; description = "Key/Value Indexed Table container and formatting library"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; }) {}; "kyotocabinet" = callPackage @@ -179069,8 +169428,6 @@ self: { librarySystemDepends = [ lbfgsb ]; description = "Bindings to L-BFGS-B, Fortran code for limited-memory quasi-Newton bound-constrained optimization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {lbfgsb = null;}; "l10n" = callPackage @@ -179082,8 +169439,6 @@ self: { libraryHaskellDepends = [ base text time ]; description = "Enables providing localization as typeclass instances in separate files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "labeled-graph" = callPackage @@ -179095,8 +169450,6 @@ self: { libraryHaskellDepends = [ base labeled-tree ]; description = "Labeled graph structure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "labeled-tree" = callPackage @@ -179142,7 +169495,6 @@ self: { ]; description = "an experiment management framework"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "labor-example"; }) {}; @@ -179167,7 +169519,6 @@ self: { ]; description = "LabSat TCP Interface Wrapper"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "labsat"; }) {}; @@ -179190,7 +169541,6 @@ self: { ]; description = "A complicated turn-based game"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "labyrinth-server" = callPackage @@ -179224,7 +169574,6 @@ self: { ]; description = "A complicated turn-based game - Web server"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "labyrinth-server"; }) {}; @@ -179238,7 +169587,6 @@ self: { testHaskellDepends = [ base hspec servant servant-foreign text ]; description = "Generate Ruby clients from Servant APIs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "lacroix" = callPackage @@ -179270,8 +169618,6 @@ self: { ]; description = "Solve Lagrange multiplier problems"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "laika" = callPackage @@ -179291,7 +169637,6 @@ self: { ]; description = "Minimalistic type-checked compile-time template engine"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "lambda" = callPackage @@ -179331,9 +169676,7 @@ self: { executableHaskellDepends = [ base ]; description = "A bridge from Haskell (on a CPU) to VHDL on a FPGA"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "haskell-test1"; - broken = true; }) {}; "lambda-calculator" = callPackage @@ -179359,9 +169702,7 @@ self: { ]; description = "A lambda calculus interpreter"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "lambda-calculator"; - broken = true; }) {}; "lambda-calculus-interpreter" = callPackage @@ -179389,8 +169730,6 @@ self: { libraryHaskellDepends = [ base GLUT mtl OpenGL time ]; description = "Educational drawing canvas for FP explorers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lambda-cube" = callPackage @@ -179407,8 +169746,6 @@ self: { testHaskellDepends = [ base hspec tasty tasty-hspec text ]; description = "Haskell implementation of (some of) lambda cube calculi"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lambda-devs" = callPackage @@ -179435,7 +169772,6 @@ self: { ]; description = "a Paralell-DEVS implementaion based on distributed-process"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lambda-devs-example"; }) {}; @@ -179451,7 +169787,6 @@ self: { ]; description = "Declarative command-line parser with type-driven pattern matching"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lambda-placeholders" = callPackage @@ -179479,8 +169814,6 @@ self: { ]; description = "Boltzmann sampler utilities for lambda calculus"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lambda-toolbox" = callPackage @@ -179494,9 +169827,7 @@ self: { executableHaskellDepends = [ base ]; description = "An application to work with the lambda calculus (for learning)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lambda-toolbox"; - broken = true; }) {}; "lambda2js" = callPackage @@ -179510,9 +169841,7 @@ self: { executableHaskellDepends = [ base parsec ]; description = "Untyped Lambda calculus to JavaScript compiler"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "lambda2js"; - broken = true; }) {}; "lambdaBase" = callPackage @@ -179524,8 +169853,6 @@ self: { libraryHaskellDepends = [ base parsec ]; testHaskellDepends = [ base parsec ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lambdaFeed" = callPackage @@ -179539,7 +169866,6 @@ self: { executableHaskellDepends = [ base haskell98 html ]; description = "RSS 2.0 feed generator"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "lambdaFeed"; }) {}; @@ -179558,7 +169884,6 @@ self: { ]; description = "..."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "lambdaLit"; }) {}; @@ -179748,7 +170073,6 @@ self: { ]; description = "Lambdabot for Telegram"; license = lib.licenses.gpl2Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "telegram-lambdabot"; }) {}; @@ -179781,8 +170105,6 @@ self: { ]; description = "Utility libraries for the advanced IRC bot, Lambdabot"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lambdabot-xmpp" = callPackage @@ -179808,9 +170130,7 @@ self: { ]; description = "Lambdabot plugin for XMPP (Jabber) protocol"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "lambdabot-xmpp"; - broken = true; }) {}; "lambdabot-zulip" = callPackage @@ -179831,7 +170151,6 @@ self: { testHaskellDepends = [ base hspec HUnit text ]; description = "Lambdabot for Zulip Chat"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "lamdabot-zulip-server"; }) {}; @@ -179877,8 +170196,6 @@ self: { ]; description = "LambdaCms 'core' subsite for Yesod apps"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lambdacms-media" = callPackage @@ -179895,7 +170212,6 @@ self: { ]; description = "LambdaCms \"media\" extension"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "lambdacube" = callPackage @@ -179909,7 +170225,6 @@ self: { executableHaskellDepends = [ base editline mtl pretty ]; description = "A simple lambda cube type checker"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cube"; }) {}; @@ -179924,7 +170239,6 @@ self: { ]; description = "Example for combining LambdaCube and Bullet"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lambdacube-compiler" = callPackage @@ -179949,7 +170263,6 @@ self: { ]; description = "LambdaCube 3D is a DSL to program GPUs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lc"; }) {}; @@ -179966,8 +170279,6 @@ self: { ]; description = "LambdaCube 3D IR"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lambdacube-edsl" = callPackage @@ -179984,7 +170295,6 @@ self: { ]; description = "LambdaCube 3D EDSL definition"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lambdacube-engine" = callPackage @@ -180004,8 +170314,6 @@ self: { ]; description = "3D rendering engine written entirely in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lambdacube-examples" = callPackage @@ -180022,7 +170330,6 @@ self: { ]; description = "Examples for LambdaCube"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lambdacube-gl" = callPackage @@ -180041,7 +170348,6 @@ self: { ]; description = "OpenGL 3.3 Core Profile backend for LambdaCube 3D"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lambdacube-ir" = callPackage @@ -180053,8 +170359,6 @@ self: { libraryHaskellDepends = [ aeson base containers mtl text vector ]; description = "LambdaCube 3D intermediate representation of 3D graphics pipelines"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lambdacube-samples" = callPackage @@ -180076,7 +170380,6 @@ self: { ]; description = "Samples for LambdaCube 3D"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lambdatex" = callPackage @@ -180097,8 +170400,6 @@ self: { ]; description = "Type-Safe LaTeX EDSL"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lambdatwit" = callPackage @@ -180124,8 +170425,6 @@ self: { ]; description = "Lambdabot running as a twitter bot. Similar to the @fsibot f# bot."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lambdaya-bus" = callPackage @@ -180139,7 +170438,6 @@ self: { ]; description = "Fpga bus core and serialization for RedPitaya"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "lambdiff" = callPackage @@ -180157,7 +170455,6 @@ self: { ]; description = "Diff Viewer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lambdiff"; }) {}; @@ -180184,8 +170481,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A high-level binding to the LAME encoder"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {mp3lame = null;}; "lame-tester" = callPackage @@ -180202,8 +170497,6 @@ self: { testHaskellDepends = [ bizzlelude containers tasty tasty-hunit ]; description = "A strange and unnecessary selective test-running library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "landlock" = callPackage @@ -180231,7 +170524,6 @@ self: { doHaddock = false; description = "Haskell bindings for the Linux Landlock API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "landlocked"; }) {}; @@ -180244,7 +170536,6 @@ self: { libraryHaskellDepends = [ base bytestring http-streams Mapping ]; description = "A Lisp"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "language-Modula2" = callPackage @@ -180277,7 +170568,6 @@ self: { ]; description = "Parser, pretty-printer, and more for the Modula-2 programming language"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "parse"; }) {}; @@ -180297,8 +170587,6 @@ self: { ]; description = "ASN.1 encoding and decoding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-asn1" = callPackage @@ -180403,7 +170691,6 @@ self: { ]; description = "Interpreter and language infrastructure for Boogie"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "boogaloo"; }) {}; @@ -180437,8 +170724,6 @@ self: { libraryToolDepends = [ alex ]; description = "Extracting comments from C code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-c-inline" = callPackage @@ -180455,8 +170740,6 @@ self: { ]; description = "Inline C & Objective-C code in Haskell for language interoperability"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-c-quote" = callPackage @@ -180552,8 +170835,6 @@ self: { ]; description = "Conf parsers and pretty-printers for the Haskell programming language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-csharp" = callPackage @@ -180568,8 +170849,6 @@ self: { libraryToolDepends = [ alex ]; description = "C# source code manipulation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-css" = callPackage @@ -180593,8 +170872,6 @@ self: { testHaskellDepends = [ base hspec raw-strings-qq ]; description = "Manipulating Dart source: abstract syntax and pretty-printer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-dickinson" = callPackage @@ -180708,8 +170985,6 @@ self: { ]; description = "Dockerfile linter, parser, pretty-printer and embedded DSL"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-dot" = callPackage @@ -180784,7 +171059,6 @@ self: { libraryToolDepends = [ alex ]; description = "Parser and pretty printer for the Eiffel language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "language-elm" = callPackage @@ -180802,8 +171076,6 @@ self: { testToolDepends = [ doctest ]; description = "Generate elm code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-fortran" = callPackage @@ -180817,8 +171089,6 @@ self: { libraryToolDepends = [ alex happy ]; description = "Fortran lexer and parser, language support, and extensions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-gcl" = callPackage @@ -180830,8 +171100,6 @@ self: { libraryHaskellDepends = [ base bifunctors parsers ]; description = "Something similar to Dijkstra's guarded command language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-gemini" = callPackage @@ -180844,8 +171112,6 @@ self: { testHaskellDepends = [ base hedgehog hspec hspec-hedgehog text ]; description = "Datatypes and parsing/printing functions to represent the Gemini markup language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-glsl" = callPackage @@ -180879,8 +171145,6 @@ self: { libraryHaskellDepends = [ array base parsec utf8-string ]; description = "A library for analysis and synthesis of Go code"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-guess" = callPackage @@ -180893,8 +171157,6 @@ self: { libraryHaskellDepends = [ base bytestring cereal containers ]; description = "Guess at which language a text is written in using trigrams"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-haskell-extract" = callPackage @@ -180932,8 +171194,6 @@ self: { ]; description = "HCL parsers and pretty-printers for the Haskell programming language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-java" = callPackage @@ -180970,8 +171230,6 @@ self: { ]; description = "Parser for Java .class files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-javascript_0_7_0_0" = callPackage @@ -181027,8 +171285,6 @@ self: { testHaskellDepends = [ base hspec parsec ]; description = "javascript parser for es6 and es7"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-kort" = callPackage @@ -181052,7 +171308,6 @@ self: { ]; description = "Parser and serializer for the Kort information language"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "language-lua" = callPackage @@ -181095,8 +171350,6 @@ self: { testHaskellDepends = [ base ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-lua2" = callPackage @@ -181122,8 +171375,6 @@ self: { ]; description = "Lua parser and pretty printer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-mixal" = callPackage @@ -181138,9 +171389,7 @@ self: { executableHaskellDepends = [ base pretty ]; description = "Parser, pretty-printer, and AST types for the MIXAL assembly language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mixal-pretty"; - broken = true; }) {}; "language-ninja" = callPackage @@ -181179,7 +171428,6 @@ self: { ]; description = "A library for dealing with the Ninja build language"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "language-nix" = callPackage @@ -181229,7 +171477,6 @@ self: { ]; description = "Parser, pretty-printer, and more for the Oberon programming language"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "parse"; }) {}; @@ -181248,8 +171495,6 @@ self: { libraryToolDepends = [ alex happy ]; description = "Analysis and generation of Objective C code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-ocaml" = callPackage @@ -181275,8 +171520,6 @@ self: { ]; description = "Language tools for manipulating OCaml programs in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) zlib;}; "language-openscad" = callPackage @@ -181293,9 +171536,7 @@ self: { executableHaskellDepends = [ attoparsec base bytestring ]; description = "A simple parser for OpenSCAD"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Test"; - broken = true; }) {}; "language-pig" = callPackage @@ -181316,8 +171557,6 @@ self: { ]; description = "Pig parser in haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-protobuf" = callPackage @@ -181371,7 +171610,6 @@ self: { ]; description = "Tools to parse and evaluate the Puppet DSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "language-python" = callPackage @@ -181405,7 +171643,6 @@ self: { ]; description = "Generate coloured XHTML for Python code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pycol"; }) {}; @@ -181436,7 +171673,6 @@ self: { ]; description = "Utilities for working with the Qux language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "language-rust" = callPackage @@ -181466,8 +171702,6 @@ self: { ]; description = "Parsing and pretty printing of Rust code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-sally" = callPackage @@ -181482,8 +171716,6 @@ self: { ]; description = "AST and pretty printer for Sally"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-sh" = callPackage @@ -181498,8 +171730,6 @@ self: { ]; description = "A package for parsing shell scripts"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-slice" = callPackage @@ -181538,7 +171768,6 @@ self: { ]; description = "Various tools to detect/correct mistakes in words"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "language-sqlite" = callPackage @@ -181554,8 +171783,6 @@ self: { ]; description = "Full parser and generator for SQL as implemented by SQLite3"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-sygus" = callPackage @@ -181573,8 +171800,6 @@ self: { testHaskellDepends = [ base deepseq tasty tasty-hunit text ]; description = "A parser and printer for the SyGuS 2.0 language."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-thrift" = callPackage @@ -181651,8 +171876,6 @@ self: { libraryHaskellDepends = [ base containers parsec pretty ]; description = "A library for working with TypeScript Definition files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "language-vhdl" = callPackage @@ -181676,8 +171899,6 @@ self: { testHaskellDepends = [ base HUnit ]; description = "Parser and Pretty Printer for WebIDL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "laop" = callPackage @@ -181691,8 +171912,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq QuickCheck ]; description = "Matrix programming library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lapack" = callPackage @@ -181723,7 +171942,6 @@ self: { ]; description = "Numerical Linear Algebra using LAPACK"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -181817,7 +172035,6 @@ self: { ]; description = "Conversion of objects between 'lapack' and 'hmatrix'"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -181849,7 +172066,6 @@ self: { ]; description = "Scalable anonymous records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "large-anon-testsuite-fourmolu-preprocessor"; }) {}; @@ -181871,8 +172087,6 @@ self: { ]; description = "Generic programming API for large-records and large-anon"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "large-hashable" = callPackage @@ -181929,7 +172143,6 @@ self: { ]; description = "Efficient compilation for large records, linear in the size of the record"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "largeword" = callPackage @@ -181988,7 +172201,6 @@ self: { ]; description = "Tool to track security alerts on LWN"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "lat"; }) {}; @@ -182020,9 +172232,7 @@ self: { ]; description = "Find the latest version of a package on npm"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "latest-npm-version"; - broken = true; }) {}; "latex" = callPackage @@ -182053,7 +172263,6 @@ self: { ]; description = "Use actual LaTeX to render formulae inside Hakyll pages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "latex-formulae-image" = callPackage @@ -182072,8 +172281,6 @@ self: { ]; description = "A library for rendering LaTeX formulae as images using an actual LaTeX installation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "latex-formulae-pandoc" = callPackage @@ -182095,7 +172302,6 @@ self: { ]; description = "Render LaTeX formulae in pandoc documents to images with an actual LaTeX installation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "latex-formulae-filter"; }) {}; @@ -182151,7 +172357,6 @@ self: { ]; description = "Use actual LaTeX to render formulae inside Hakyll pages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "latex-svg-image" = callPackage @@ -182169,8 +172374,6 @@ self: { ]; description = "A library for rendering LaTeX formulae as SVG using an actual LaTeX"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "latex-svg-pandoc" = callPackage @@ -182190,7 +172393,6 @@ self: { executableHaskellDepends = [ base latex-svg-image pandoc-types ]; description = "Render LaTeX formulae in pandoc documents to images with an actual LaTeX"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "latex-svg-filter"; }) {}; @@ -182272,8 +172474,6 @@ self: { ]; description = "Server-side SDK for integrating with LaunchDarkly"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "launchdarkly-server-sdk-redis-hedis" = callPackage @@ -182294,7 +172494,6 @@ self: { ]; description = "LaunchDarkly Server-Side SDK - Redis Integration"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "launchpad-control" = callPackage @@ -182312,9 +172511,7 @@ self: { executableHaskellDepends = [ base ]; description = "High and low-level interface to the Novation Launchpad midi controller"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "launchpad-control-examples"; - broken = true; }) {}; "lawful" = callPackage @@ -182346,8 +172543,6 @@ self: { ]; description = "Hedgehog support for lawful-classes"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lawful-classes-quickcheck" = callPackage @@ -182400,8 +172595,6 @@ self: { benchmarkHaskellDepends = [ base machines time ]; description = "Concurrent networked stream transducers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lawz" = callPackage @@ -182466,7 +172659,6 @@ self: { ]; description = "Control structure similar to Control.Monad.State, allowing multiple nested states, distinguishable by provided phantom types."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "layers" = callPackage @@ -182478,8 +172670,6 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Modular type class machinery for monad transformer stacks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "layers-game" = callPackage @@ -182499,7 +172689,6 @@ self: { ]; description = "A prototypical 2d platform game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "layers"; }) {}; @@ -182512,8 +172701,6 @@ self: { libraryHaskellDepends = [ base convertible hinduce-missingh ]; description = "Turn values into pretty text or markup"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "layout-bootstrap" = callPackage @@ -182525,8 +172712,6 @@ self: { libraryHaskellDepends = [ base blaze-html containers text ]; description = "Template and widgets for Bootstrap2 to use with Text.Blaze.Html5"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "layout-rules" = callPackage @@ -182538,8 +172723,6 @@ self: { libraryHaskellDepends = [ alex-tools base text ]; description = "A collection of different layout implementations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "layouting" = callPackage @@ -182555,7 +172738,6 @@ self: { ]; description = "General layouting library. Currently supports layouting 2D areas and can be used as a backend for text pretty printing or automatic windows layouting managers."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "lazify" = callPackage @@ -182571,8 +172753,6 @@ self: { testHaskellDepends = [ base ]; description = "A simple utility for lazy record matching"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lazy" = callPackage @@ -182665,7 +172845,6 @@ self: { ]; description = "Identifiers for not-yet-computed values"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "lazy-hash-cache" = callPackage @@ -182686,7 +172865,6 @@ self: { ]; description = "Storing computed values for re-use when the same program runs again"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "lazy-io" = callPackage @@ -182727,9 +172905,7 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Lazy-Spined Monadic Priority Queues"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "Levenshtein"; - broken = true; }) {}; "lazy-search" = callPackage @@ -182752,8 +172928,6 @@ self: { libraryHaskellDepends = [ array base ]; description = "Efficient implementation of lazy monolithic arrays (lazy in indexes)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lazyboy" = callPackage @@ -182773,8 +172947,6 @@ self: { ]; description = "An EDSL for programming the Game Boy"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lazyio" = callPackage @@ -182808,8 +172980,6 @@ self: { ]; description = "Set and Map from lazy/infinite lists"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lazysmallcheck" = callPackage @@ -182865,8 +173035,6 @@ self: { libraryHaskellDepends = [ array base ]; description = "Find longest common sublist of two lists"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ld-intervals" = callPackage @@ -182878,8 +173046,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Data structures for representing arbitrary intervals"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lda" = callPackage @@ -182895,7 +173061,6 @@ self: { ]; description = "Online Latent Dirichlet Allocation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ldap-client" = callPackage @@ -182963,7 +173128,6 @@ self: { ]; description = "See README for synopsis"; license = lib.licenses.agpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "ldap-scim-bridge"; }) {}; @@ -182983,7 +173147,6 @@ self: { ]; description = "LDIF idempotent apply tool"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "ldapply"; }) {}; @@ -183007,8 +173170,6 @@ self: { testHaskellDepends = [ base HUnit ]; description = "The LDAP Data Interchange Format (LDIF) tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ldtk-types" = callPackage @@ -183039,9 +173200,7 @@ self: { ]; description = "A simple portfolio generator"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "leaf"; - broken = true; }) {}; "leaky" = callPackage @@ -183060,7 +173219,6 @@ self: { ]; description = "Robust space leak, and its strictification"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "leaky"; }) {}; @@ -183077,7 +173235,6 @@ self: { ]; description = "Bonds to Lean theorem prover"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lean-peano" = callPackage @@ -183195,8 +173352,6 @@ self: { libraryHaskellDepends = [ base time ]; testHaskellDepends = [ base tasty tasty-hunit time ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "leapseconds-announced" = callPackage @@ -183220,8 +173375,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Learning Algorithms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "learn-physics" = callPackage @@ -183259,8 +173412,6 @@ self: { ]; description = "examples for learn-physics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "learning-hmm" = callPackage @@ -183276,7 +173427,6 @@ self: { ]; description = "Yet another library for hidden Markov models"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "leb128" = callPackage @@ -183345,9 +173495,7 @@ self: { executableHaskellDepends = [ base containers ]; description = "Leetify text"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "leetify"; - broken = true; }) {}; "left4deadrl" = callPackage @@ -183383,7 +173531,6 @@ self: { ]; description = "Distributed, stateful, homogeneous microservice framework"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "legion-discovery" = callPackage @@ -183409,7 +173556,6 @@ self: { testHaskellDepends = [ base ]; description = "A discovery service based on Legion"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "legion-discovery"; }) {}; @@ -183430,7 +173576,6 @@ self: { testHaskellDepends = [ base ]; description = "Client library for communicating with legion-discovery"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "legion-extra" = callPackage @@ -183452,7 +173597,6 @@ self: { testHaskellDepends = [ base ]; description = "Extra non-essential utilities for building legion applications"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "leksah" = callPackage @@ -183490,7 +173634,6 @@ self: { executableHaskellDepends = [ base gi-gtk-hs leksah-server stm ]; description = "Haskell IDE written in Haskell"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "leksah"; }) {inherit (pkgs) gtk3;}; @@ -183529,7 +173672,6 @@ self: { ]; description = "Metadata collection for leksah"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "lendingclub" = callPackage @@ -183546,8 +173688,6 @@ self: { ]; description = "Bindings for the LendingClub marketplace API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lens" = callPackage @@ -183599,7 +173739,6 @@ self: { libraryHaskellDepends = [ accelerate base lens ]; description = "Instances to mix lens with Accelerate"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lens-action" = callPackage @@ -183688,8 +173827,6 @@ self: { libraryHaskellDepends = [ base lens time ]; description = "Lenses for Data.Time.* types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lens-errors" = callPackage @@ -183758,8 +173895,6 @@ self: { ]; description = "Lens interface for your filesystem; still a bit experimental"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lens-indexed-plated" = callPackage @@ -183782,8 +173917,6 @@ self: { libraryHaskellDepends = [ base ghc-prim profunctors tagged ]; description = "Integration of lenses with OverloadedLabels"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lens-misc" = callPackage @@ -183823,8 +173956,6 @@ self: { ]; description = "Alternate prelude that exports lens combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lens-process" = callPackage @@ -183842,8 +173973,6 @@ self: { ]; description = "Optics for system processes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lens-properties" = callPackage @@ -183916,8 +174045,6 @@ self: { ]; description = "simplified import of elementary lens-family combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lens-sop" = callPackage @@ -183942,8 +174069,6 @@ self: { libraryHaskellDepends = [ base lens tell ]; description = "MonadTell-based lens combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lens-text-encoding" = callPackage @@ -183955,8 +174080,6 @@ self: { libraryHaskellDepends = [ base bytestring lens text ]; description = "Isomorphisms and prisms for text <=> bytestring conversions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lens-th-rewrite" = callPackage @@ -183971,8 +174094,6 @@ self: { executableHaskellDepends = [ base ghc ghc-exactprint lens ]; description = "Rewrites Template Haskell splices using the API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lens-time" = callPackage @@ -183984,8 +174105,6 @@ self: { libraryHaskellDepends = [ base lens time ]; description = "lens for Data.Time"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lens-toml-parser" = callPackage @@ -184002,8 +174121,6 @@ self: { ]; description = "Lenses for toml-parser"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lens-tutorial" = callPackage @@ -184018,9 +174135,7 @@ self: { testHaskellDepends = [ base doctest ]; description = "Tutorial for the lens library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.Gabriella439 ]; - broken = true; }) {}; "lens-typelevel" = callPackage @@ -184032,8 +174147,6 @@ self: { libraryHaskellDepends = [ base singletons ]; description = "Type-level lenses using singletons"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lens-utils" = callPackage @@ -184050,7 +174163,6 @@ self: { ]; description = "Collection of missing lens utilities"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "lens-witherable" = callPackage @@ -184076,8 +174188,6 @@ self: { testHaskellDepends = [ base lens xml ]; description = "Lenses for the xml package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lenses" = callPackage @@ -184091,8 +174201,6 @@ self: { libraryHaskellDepends = [ base mtl template-haskell ]; description = "Simple Functional Lenses"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lensref" = callPackage @@ -184105,8 +174213,6 @@ self: { testHaskellDepends = [ base ]; description = "References which can be joined and on which lenses can be applied"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lentil" = callPackage @@ -184189,8 +174295,6 @@ self: { ]; description = "Van Laarhoven lens templates"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "less-arbitrary" = callPackage @@ -184219,8 +174323,6 @@ self: { ]; description = "Linear time testing with variant of Arbitrary class that always terminates"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "level-monad" = callPackage @@ -184232,8 +174334,6 @@ self: { libraryHaskellDepends = [ base fmlist ]; description = "Non-Determinism Monad for Level-Wise Search"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "leveldb-haskell" = callPackage @@ -184310,8 +174410,6 @@ self: { libraryHaskellDepends = [ base bindings-levmar hmatrix vector ]; description = "An implementation of the Levenberg-Marquardt algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "levmar-chart" = callPackage @@ -184325,7 +174423,6 @@ self: { libraryHaskellDepends = [ base Chart colour data-accessor levmar ]; description = "Plots the results of the Levenberg-Marquardt algorithm in a chart"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lex-applicative" = callPackage @@ -184345,7 +174442,6 @@ self: { benchmarkHaskellDepends = [ base gauge util ]; description = "See README for more info"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lexer-applicative" = callPackage @@ -184374,8 +174470,6 @@ self: { testHaskellDepends = [ base doctest QuickCheck ]; description = "L-Fuzzy Set Theory implementation in Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lgtk" = callPackage @@ -184403,7 +174497,6 @@ self: { ]; description = "Lens GUI Toolkit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lgtkdemo"; }) {}; @@ -184416,7 +174509,6 @@ self: { libraryHaskellDepends = [ haskell2010 ]; description = "Data structures for the Les Houches Accord"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "lhae" = callPackage @@ -184436,7 +174528,6 @@ self: { ]; description = "Simple spreadsheet program"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "lhae"; }) {}; @@ -184451,8 +174542,6 @@ self: { enableSeparateDataOutput = true; description = "LHC Haskell Compiler"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lhe" = callPackage @@ -184464,7 +174553,6 @@ self: { libraryHaskellDepends = [ bytestring haskell2010 HaXml lha ]; description = "Parser and writer for Les-Houches event files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "lhs2TeX-hl" = callPackage @@ -184483,9 +174571,7 @@ self: { ]; description = "Literate highlighter preprocessor for lhs2tex"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "lhs2TeX-hl"; - broken = true; }) {}; "lhs2html" = callPackage @@ -184538,9 +174624,7 @@ self: { ]; description = "Tool for using pdflatex with .lhs files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lhslatex"; - broken = true; }) {}; "libBF" = callPackage @@ -184573,8 +174657,6 @@ self: { ]; description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "libarchive" = callPackage @@ -184607,8 +174689,6 @@ self: { ]; description = "Haskell interface to libarchive"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libarchive;}; "libarchive-conduit" = callPackage @@ -184645,7 +174725,6 @@ self: { testHaskellDepends = [ base doctest doctest-prop lens ]; description = "Haskell bindings to libconfig"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libconfig;}; "libcspm" = callPackage @@ -184666,7 +174745,6 @@ self: { ]; description = "A library providing a parser, type checker and evaluator for CSPM"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "libexpect" = callPackage @@ -184679,8 +174757,6 @@ self: { librarySystemDepends = [ expect tcl ]; description = "Library for interacting with console applications via pseudoterminals"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) expect; inherit (pkgs) tcl;}; "libffi" = callPackage @@ -184755,7 +174831,6 @@ self: { ]; description = "Store and manipulate data in a graph"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "libhbb" = callPackage @@ -184779,9 +174854,7 @@ self: { ]; description = "Backend for text editors to provide better Haskell editing support"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; mainProgram = "libhbb-cli"; - broken = true; }) {}; "libinfluxdb" = callPackage @@ -184800,8 +174873,6 @@ self: { ]; description = "libinfluxdb"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "libiserv_9_6_1" = callPackage @@ -184846,8 +174917,6 @@ self: { ]; description = "Jenkins API interface"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "libjwt-typed" = callPackage @@ -184878,8 +174947,6 @@ self: { ]; description = "A Haskell implementation of JSON Web Token (JWT)"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "liblastfm" = callPackage @@ -184906,7 +174973,6 @@ self: { ]; description = "Lastfm API interface"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "liblawless" = callPackage @@ -184942,7 +175008,6 @@ self: { ]; description = "Prelude based on protolude for GHC 8 and beyond"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "liblinear-enumerator" = callPackage @@ -184956,7 +175021,6 @@ self: { ]; description = "liblinear iteratee"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "libltdl" = callPackage @@ -184970,8 +175034,6 @@ self: { libraryHaskellDepends = [ base ]; description = "FFI interface to libltdl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "libmdbx" = callPackage @@ -185000,9 +175062,7 @@ self: { ]; description = "Bindings for libmdbx, an embedded key/value store"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "libmdbx-exe"; - broken = true; }) {}; "libmodbus" = callPackage @@ -185048,7 +175108,6 @@ self: { ]; description = "Prelude based on protolude for GHC 8 and beyond"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "libmpd" = callPackage @@ -185142,9 +175201,7 @@ self: { testHaskellDepends = [ base ]; description = "Bindings to liboath"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "oathtool-hs"; - broken = true; }) {liboath = null; oath = null;}; "liboleg" = callPackage @@ -185160,8 +175217,6 @@ self: { ]; description = "An evolving collection of Oleg Kiselyov's Haskell modules"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "libpafe" = callPackage @@ -185175,8 +175230,6 @@ self: { testHaskellDepends = [ base bytestring iconv transformers ]; description = "Wrapper for libpafe"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {pafe = null;}; "libphonenumber" = callPackage @@ -185198,8 +175251,6 @@ self: { ]; description = "Parsing, formatting, and validating international phone numbers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {phonenumber = null; inherit (pkgs) protobuf;}; "libpq" = callPackage @@ -185212,8 +175263,6 @@ self: { librarySystemDepends = [ postgresql ]; description = "libpq binding for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) postgresql;}; "libraft" = callPackage @@ -185265,7 +175314,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Raft consensus algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "raft-example"; }) {}; @@ -185278,8 +175326,6 @@ self: { libraryHaskellDepends = [ base bytestring curl ]; description = "Wrapper to Random.org API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "librarian" = callPackage @@ -185325,7 +175371,6 @@ self: { ]; description = "Bindings to the Librato API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "libravatar" = callPackage @@ -185405,8 +175450,6 @@ self: { ]; description = "Bindings for secp256k1"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) secp256k1;}; "libsodium" = callPackage @@ -185445,8 +175488,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "FFI bindings to libssh2 SSH2 client library (http://libssh2.org/)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libssh2;}; "libssh2-conduit" = callPackage @@ -185464,7 +175505,6 @@ self: { ]; description = "Conduit wrappers for libssh2 FFI bindings (see libssh2 package)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "libstackexchange" = callPackage @@ -185502,8 +175542,6 @@ self: { ]; description = "Haskell bindings for libsystemd-daemon"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {libsystemd-daemon = null; systemd-daemon = null;}; "libsystemd-journal" = callPackage @@ -185538,8 +175576,6 @@ self: { libraryPkgconfigDepends = [ taglib ]; description = "Binding to TagLib C library"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) taglib;}; "libtelnet" = callPackage @@ -185557,8 +175593,6 @@ self: { description = "Bindings to libtelnet"; license = lib.licenses.gpl3Plus; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libtelnet;}; "libversion" = callPackage @@ -185607,8 +175641,6 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "Bindings to libxls"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "libxlsxwriter-hs" = callPackage @@ -185621,8 +175653,6 @@ self: { librarySystemDepends = [ xlsxwriter ]; description = "Bindings to libxlsxwriter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {xlsxwriter = null;}; "libxml" = callPackage @@ -185653,7 +175683,6 @@ self: { ]; description = "Enumerator-based API for libXML's SAX interface"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "libxml-sax" = callPackage @@ -185679,8 +175708,6 @@ self: { librarySystemDepends = [ xslt ]; description = "Binding to libxslt"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {xslt = null;}; "libyaml" = callPackage @@ -185709,8 +175736,6 @@ self: { ]; description = "Low-level, streaming YAML interface via streamly"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "libzfs" = callPackage @@ -185730,9 +175755,7 @@ self: { description = "Bindings to libzfs, for dealing with the Z File System and Zpools"; license = lib.licenses.mit; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {nvpair = null; inherit (pkgs) zfs;}; "licensor" = callPackage @@ -185752,9 +175775,7 @@ self: { executableHaskellDepends = [ base Cabal containers directory ]; description = "A license compatibility helper"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "licensor"; - broken = true; }) {}; "lie" = callPackage @@ -185769,9 +175790,7 @@ self: { executableHaskellDepends = [ base ]; description = "Lie Algebras"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Lie"; - broken = true; }) {}; "life" = callPackage @@ -185813,9 +175832,7 @@ self: { ]; description = "Synchronize personal configs across multiple machines"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "life"; - broken = true; }) {}; "lifetimes" = callPackage @@ -185835,8 +175852,6 @@ self: { ]; description = "Flexible manual resource management"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lift-generics" = callPackage @@ -185948,7 +175963,6 @@ self: { ]; description = "lifted IO operations from the base library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lifted-protolude" = callPackage @@ -185966,8 +175980,6 @@ self: { ]; description = "A sensible set of defaults for writing lifted custom Preludes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lifted-stm" = callPackage @@ -186017,9 +176029,7 @@ self: { ]; description = "A boulderdash-like game and solution validator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lifter"; - broken = true; }) {}; "lifx-lan" = callPackage @@ -186048,8 +176058,6 @@ self: { libraryHaskellDepends = [ base text ]; description = "Expand ligatures in unicode text"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ligd" = callPackage @@ -186075,8 +176083,6 @@ self: { testHaskellDepends = [ base containers lens linear QuickCheck ]; description = "a simple physics engine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lightning-haskell" = callPackage @@ -186098,7 +176104,6 @@ self: { ]; description = "Haskell client for lightning-viz REST API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lightstep-haskell" = callPackage @@ -186130,7 +176135,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "LightStep OpenTracing client library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "lightstep-haskell-stress-test"; }) {}; @@ -186148,7 +176152,6 @@ self: { libraryToolDepends = [ alex happy ]; description = "Lighttpd configuration file tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lighttpd-conf-qq" = callPackage @@ -186165,7 +176168,6 @@ self: { ]; description = "A QuasiQuoter for lighttpd configuration files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lilypond" = callPackage @@ -186182,8 +176184,6 @@ self: { ]; description = "Bindings to Lilypond"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lima" = callPackage @@ -186239,8 +176239,6 @@ self: { ]; description = "bindings for integer linear programming solver Coin/CBC"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lin-alg" = callPackage @@ -186263,8 +176261,6 @@ self: { libraryHaskellDepends = [ base hmatrix HUnit ]; description = "LINear Discriminant Analysis"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "linden" = callPackage @@ -186294,9 +176290,7 @@ self: { ]; description = "Zen gardening, based on l-systems"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "linden-example"; - broken = true; }) {}; "lindenmayer" = callPackage @@ -186360,8 +176354,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell SDK for LINE Messaging API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "line-break" = callPackage @@ -186388,8 +176380,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "raster line drawing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "line-indexed-cursor" = callPackage @@ -186404,8 +176394,6 @@ self: { benchmarkHaskellDepends = [ base criterion random ]; description = "Line-indexed file reader"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "line-size" = callPackage @@ -186480,7 +176468,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Lifting linear vector spaces into Accelerate"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "linear-algebra-cblas" = callPackage @@ -186501,9 +176488,7 @@ self: { ]; description = "A linear algebra library with bindings to BLAS and LAPACK"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "test-hs-linear-algebra"; - broken = true; }) {}; "linear-base" = callPackage @@ -186556,7 +176541,6 @@ self: { ]; description = "Compute resistance of linear electrical circuits"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -186583,7 +176567,6 @@ self: { ]; description = "A simple library for linear codes (coding theory, error correction)"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "linear-generics" = callPackage @@ -186645,8 +176628,6 @@ self: { libraryHaskellDepends = [ base containers HUnit ]; description = "Finite maps for linear use"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "linear-opengl" = callPackage @@ -186662,8 +176643,6 @@ self: { ]; description = "Isomorphisms between linear and OpenGL types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "linear-programming" = callPackage @@ -186705,8 +176684,6 @@ self: { testHaskellDepends = [ base hspec network tasty-hspec ]; description = "Typed sockets"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "linear-tests" = callPackage @@ -186733,8 +176710,6 @@ self: { libraryHaskellDepends = [ base random ]; description = "A low-dimensional linear algebra library, operating on the Num typeclass"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "linearEqSolver" = callPackage @@ -186747,7 +176722,6 @@ self: { description = "Use SMT solvers to solve linear systems over integers and rationals"; license = lib.licenses.bsd3; badPlatforms = [ "aarch64-linux" ]; - hydraPlatforms = lib.platforms.none; }) {}; "linearmap-category" = callPackage @@ -186778,7 +176752,6 @@ self: { ]; description = "Native, complete-ish, matrix-free linear algebra"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "linearscan" = callPackage @@ -186794,8 +176767,6 @@ self: { ]; description = "Linear scan register allocator, formally verified in Coq"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "linearscan-hoopl" = callPackage @@ -186816,7 +176787,6 @@ self: { ]; description = "Makes it easy to use the linearscan register allocator with Hoopl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "linebreak" = callPackage @@ -186849,9 +176819,7 @@ self: { ]; description = "A lightweight readline-replacement library for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "linenoise-demo"; - broken = true; }) {}; "lines-of-action" = callPackage @@ -186863,8 +176831,6 @@ self: { libraryHaskellDepends = [ base containers mtl safe ]; description = "Lines of Action, 2-player strategy board game"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lingo" = callPackage @@ -186887,9 +176853,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "File extension based programming language detection"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "generate"; - broken = true; }) {}; "linguistic-ordinals" = callPackage @@ -186901,8 +176865,6 @@ self: { libraryHaskellDepends = [ base text ]; description = "Express Integral types as linguistic ordinals (1st, 2nd, 3rd, etc)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "link-relations" = callPackage @@ -186959,7 +176921,6 @@ self: { ]; description = "linkchk is a network interface link ping monitor"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "linkchk"; }) {}; @@ -186977,7 +176938,6 @@ self: { ]; description = "Combines multiple GHC Core modules into a single module"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "linkcore"; }) {}; @@ -186991,8 +176951,6 @@ self: { testHaskellDepends = [ base ]; description = "A pure linked list which is mutable through iterators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "linkedhashmap" = callPackage @@ -187015,8 +176973,6 @@ self: { ]; description = "Persistent LinkedHashMap data structure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "linklater" = callPackage @@ -187039,8 +176995,6 @@ self: { ]; description = "A Haskell library for the Slack API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "linnet" = callPackage @@ -187067,8 +177021,6 @@ self: { ]; description = "Lightweight library for building HTTP API"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "linnet-aeson" = callPackage @@ -187086,7 +177038,6 @@ self: { ]; description = "Aeson JSON support for Linnet"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "linnet-conduit" = callPackage @@ -187107,7 +177058,6 @@ self: { ]; description = "Conduit-backed support for streaming in Linnet"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "linode" = callPackage @@ -187129,8 +177079,6 @@ self: { ]; description = "Bindings to the Linode API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "linode-v4" = callPackage @@ -187147,8 +177095,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Haskell wrapper for the Linode v4 API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "linux-blkid" = callPackage @@ -187165,8 +177111,6 @@ self: { libraryPkgconfigDepends = [ blkid ]; description = "Linux libblkid"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {blkid = null;}; "linux-capabilities" = callPackage @@ -187189,8 +177133,6 @@ self: { libraryHaskellDepends = [ base filepath ]; description = "Very basic interface to the Linux CGroup Virtual Filesystem"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "linux-evdev" = callPackage @@ -187205,8 +177147,6 @@ self: { description = "Bindings to Linux evdev input device interface"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "linux-file-extents" = callPackage @@ -187271,8 +177211,6 @@ self: { libraryPkgconfigDepends = [ libkmod ]; description = "Linux kernel modules support"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {libkmod = null;}; "linux-mount" = callPackage @@ -187332,8 +177270,6 @@ self: { ]; description = "Read files generated by perf on Linux"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "linux-ptrace" = callPackage @@ -187351,7 +177287,6 @@ self: { ]; description = "Wrapping of Linux' ptrace(2)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "linux-xattr" = callPackage @@ -187363,8 +177298,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Read, set and list extended attributes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "linx-gateway" = callPackage @@ -187385,9 +177318,7 @@ self: { ]; description = "Implementation of the Enea LINX gateway protocol"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "Ping"; - broken = true; }) {}; "lio" = callPackage @@ -187415,7 +177346,6 @@ self: { ]; description = "Labeled IO library"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "lio-fs" = callPackage @@ -187458,7 +177388,6 @@ self: { ]; description = "LIO support for the Simple web framework"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "lio-simple"; }) {}; @@ -187477,7 +177406,6 @@ self: { ]; description = "RISC-V Core"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lipsum-gen" = callPackage @@ -187489,8 +177417,6 @@ self: { libraryHaskellDepends = [ base QuickCheck ]; description = "Generators for random sequences of English-like nonsense text"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "liquid" = callPackage @@ -187515,8 +177441,6 @@ self: { benchmarkHaskellDepends = [ aeson attoparsec base criterion text ]; description = "Liquid template language library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "liquid-base" = callPackage @@ -187530,7 +177454,6 @@ self: { libraryHaskellDepends = [ base liquid-ghc-prim liquidhaskell ]; description = "Drop-in base replacement for LiquidHaskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "liquid-bytestring" = callPackage @@ -187546,7 +177469,6 @@ self: { libraryHaskellDepends = [ bytestring liquid-base liquidhaskell ]; description = "LiquidHaskell specs for the bytestring package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "liquid-containers" = callPackage @@ -187562,7 +177484,6 @@ self: { libraryHaskellDepends = [ containers liquid-base liquidhaskell ]; description = "LiquidHaskell specs for the containers package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "liquid-fixpoint" = callPackage @@ -187600,9 +177521,7 @@ self: { doCheck = false; description = "Predicate Abstraction-based Horn-Clause/Implication Constraint Solver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "fixpoint"; - broken = true; }) {inherit (pkgs) git; inherit (pkgs) nettools; inherit (pkgs) z3;}; @@ -187617,7 +177536,6 @@ self: { libraryHaskellDepends = [ ghc-prim liquidhaskell ]; description = "Drop-in ghc-prim replacement for LiquidHaskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "liquid-parallel" = callPackage @@ -187632,7 +177550,6 @@ self: { libraryHaskellDepends = [ liquid-base liquidhaskell parallel ]; description = "LiquidHaskell specs for the parallel package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "liquid-platform" = callPackage @@ -187652,7 +177569,6 @@ self: { ]; description = "A battery-included platform for LiquidHaskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "liquidhaskell"; }) {}; @@ -187670,7 +177586,6 @@ self: { ]; description = "General utility modules for LiquidHaskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "liquid-vector" = callPackage @@ -187684,7 +177599,6 @@ self: { libraryHaskellDepends = [ liquid-base liquidhaskell vector ]; description = "LiquidHaskell specs for the vector package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "liquidhaskell" = callPackage @@ -187724,7 +177638,6 @@ self: { testSystemDepends = [ z3 ]; description = "Liquid Types for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "liquid"; }) {inherit (pkgs) z3;}; @@ -187739,8 +177652,6 @@ self: { libraryHaskellDepends = [ base Cabal directory filepath ]; description = "Liquid Haskell integration for Cabal and Stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "liquidhaskell-cabal-demo" = callPackage @@ -187756,7 +177667,6 @@ self: { executableHaskellDepends = [ base liquidhaskell-cabal ]; description = "Demo of Liquid Haskell integration for Cabal and Stack"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "ffi"; }) {}; @@ -187816,8 +177726,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "testing list fusion for success"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "list-grouping" = callPackage @@ -187840,8 +177748,6 @@ self: { libraryHaskellDepends = [ base ]; description = "List Multiplexing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "list-predicate" = callPackage @@ -187874,8 +177780,6 @@ self: { ]; description = "A simple list prompt UI for the terminal"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "list-remote-forwards" = callPackage @@ -187948,7 +177852,6 @@ self: { ]; description = "An \"attoparsec\" adapter for \"list-t\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "list-t-html-parser" = callPackage @@ -187972,7 +177875,6 @@ self: { ]; description = "Streaming HTML parser"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "list-t-http-client" = callPackage @@ -187988,8 +177890,6 @@ self: { ]; description = "A streaming HTTP client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "list-t-libcurl" = callPackage @@ -188006,8 +177906,6 @@ self: { ]; description = "A \"libcurl\"-based streaming HTTP client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "list-t-text" = callPackage @@ -188027,8 +177925,6 @@ self: { ]; description = "A streaming text codec"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "list-transformer" = callPackage @@ -188076,8 +177972,6 @@ self: { ]; description = "Tries and Patricia tries: finite sets and maps for list keys"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "list-tuple" = callPackage @@ -188099,7 +177993,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "List-like operations for tuples"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "list-witnesses" = callPackage @@ -188118,7 +178011,6 @@ self: { ]; description = "Witnesses for working with type-level lists"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "list-zip-def" = callPackage @@ -188130,8 +178022,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Provides zips with default values"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "list-zipper" = callPackage @@ -188154,8 +178044,6 @@ self: { ]; description = "A list zipper"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "listenbrainz-client" = callPackage @@ -188173,7 +178061,6 @@ self: { ]; description = "A client library to the ListenBrainz project"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "listlike-instances" = callPackage @@ -188185,8 +178072,6 @@ self: { libraryHaskellDepends = [ base bytestring ListLike text vector ]; description = "Extra instances of the ListLike class"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lists" = callPackage @@ -188257,8 +178142,6 @@ self: { ]; description = "Append only key-list database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lit" = callPackage @@ -188278,9 +178161,7 @@ self: { ]; description = "A simple tool for literate programming"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "lit"; - broken = true; }) {}; "literals" = callPackage @@ -188292,8 +178173,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Non-overloaded functions for concrete literals"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "literatex" = callPackage @@ -188335,8 +178214,6 @@ self: { testHaskellDepends = [ base containers mtl tasty tasty-hunit ]; description = "Simple implementation of Earley parsing"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "little-logger" = callPackage @@ -188399,7 +178276,6 @@ self: { ]; description = "Live coding of MIDI music"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "liveplot" = callPackage @@ -188435,8 +178311,6 @@ self: { libraryHaskellDepends = [ base ]; librarySystemDepends = [ picosat ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) picosat;}; "llrbtree" = callPackage @@ -188468,9 +178342,7 @@ self: { ]; description = "An implementation of the LLSD data system"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "llsdutil"; - broken = true; }) {}; "llvm" = callPackage @@ -188487,7 +178359,6 @@ self: { ]; description = "Bindings to the LLVM compiler toolkit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "llvm-analysis" = callPackage @@ -188515,7 +178386,6 @@ self: { ]; description = "A Haskell library for analyzing LLVM bitcode"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "llvm-base" = callPackage @@ -188527,8 +178397,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "FFI bindings to the LLVM compiler toolkit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "llvm-base-types" = callPackage @@ -188549,7 +178417,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "The base types for a mostly pure Haskell LLVM analysis library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "llvm-base-util" = callPackage @@ -188561,7 +178428,6 @@ self: { libraryHaskellDepends = [ base llvm-base ]; description = "Utilities for bindings to the LLVM compiler toolkit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "llvm-data-interop" = callPackage @@ -188582,7 +178448,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "A low-level data interoperability binding for LLVM"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "llvm-dsl" = callPackage @@ -188600,7 +178465,6 @@ self: { ]; description = "Support for writing an EDSL with LLVM-JIT as target"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "llvm-extension" = callPackage @@ -188619,7 +178483,6 @@ self: { ]; description = "Processor specific intrinsics for the llvm interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "llvm-extra" = callPackage @@ -188647,8 +178510,6 @@ self: { doHaddock = false; description = "Utility functions for the llvm interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "llvm-ffi" = callPackage @@ -188708,7 +178569,6 @@ self: { ]; description = "General purpose LLVM bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {llvm-config = null;}; "llvm-general-pure" = callPackage @@ -188729,8 +178589,6 @@ self: { ]; description = "Pure Haskell LLVM functionality (no FFI)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "llvm-general-quote" = callPackage @@ -188754,7 +178612,6 @@ self: { ]; description = "QuasiQuoting llvm code for llvm-general"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "llvm-hs" = callPackage @@ -188781,8 +178638,6 @@ self: { ]; description = "General purpose LLVM bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {llvm-config = null;}; "llvm-hs-pretty" = callPackage @@ -188803,7 +178658,6 @@ self: { ]; description = "A pretty printer for LLVM IR"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "llvm-hs-pure" = callPackage @@ -188841,8 +178695,6 @@ self: { ]; description = "Bindings to the LLVM compiler toolkit with some custom extensions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "llvm-party" = callPackage @@ -188867,8 +178719,6 @@ self: { ]; description = "General purpose LLVM bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "llvm-pkg-config" = callPackage @@ -188907,8 +178757,6 @@ self: { ]; description = "A pretty printing library inspired by the llvm binding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "llvm-pretty-bc-parser" = callPackage @@ -188935,7 +178783,6 @@ self: { ]; description = "LLVM bitcode parsing library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "llvm-disasm"; }) {}; @@ -188958,8 +178805,6 @@ self: { doHaddock = false; description = "Bindings to the LLVM compiler toolkit using type families"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "llvm-tools" = callPackage @@ -188987,7 +178832,6 @@ self: { ]; description = "Useful tools built on llvm-analysis"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lmdb" = callPackage @@ -189022,8 +178866,6 @@ self: { ]; description = "Higher level API for working with LMDB"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lmdb-simple" = callPackage @@ -189039,8 +178881,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Simple API for LMDB"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lmonad" = callPackage @@ -189061,8 +178901,6 @@ self: { ]; description = "LMonad is an Information Flow Control (IFC) framework for Haskell applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lmonad-yesod" = callPackage @@ -189083,7 +178921,6 @@ self: { ]; description = "LMonad for Yesod integrates LMonad's IFC with Yesod web applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "lnd-client" = callPackage @@ -189118,7 +178955,6 @@ self: { doHaddock = false; description = "Lightning Network Daemon (LND) client library for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lnd-client-prof"; }) {}; @@ -189137,8 +178973,6 @@ self: { ]; description = "Support for developing against the LNURL protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lnurl-authenticator" = callPackage @@ -189161,7 +178995,6 @@ self: { executableHaskellDepends = [ base Clipboard optparse-applicative ]; description = "A command line tool to manage LNURL auth identities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lnurl-authenticator"; }) {}; @@ -189174,8 +179007,6 @@ self: { libraryHaskellDepends = [ base containers hslogger PSQueue stm ]; description = "Client-side load balancing utilities"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "load-env" = callPackage @@ -189208,8 +179039,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "A cross platform library for loading bundled fonts into your application"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "loadavg" = callPackage @@ -189266,8 +179095,6 @@ self: { libraryHaskellDepends = [ base containers hedgehog loc ]; description = "Hedgehog generators for loc"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "local-address" = callPackage @@ -189279,8 +179106,6 @@ self: { libraryHaskellDepends = [ base network ]; description = "Functions to get local interface address"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "local-search" = callPackage @@ -189297,7 +179122,6 @@ self: { ]; description = "Generalised local search within Haskell, for applications in combinatorial optimisation"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "localization" = callPackage @@ -189327,7 +179151,6 @@ self: { ]; description = "GNU Gettext-based messages localization library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "located" = callPackage @@ -189339,8 +179162,6 @@ self: { libraryHaskellDepends = [ base text ]; description = "Source location helpers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "located-base" = callPackage @@ -189365,8 +179186,6 @@ self: { libraryHaskellDepends = [ base monad-logger text ]; description = "Location-aware logging without Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "locators" = callPackage @@ -189399,9 +179218,7 @@ self: { executableHaskellDepends = [ base ]; description = "Support for precise error locations in source files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "loch"; - broken = true; }) {}; "loch-th" = callPackage @@ -189454,7 +179271,6 @@ self: { ]; description = "Very simple poll lock"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "locked-poll"; }) {}; @@ -189513,7 +179329,6 @@ self: { ]; description = "Structured logging solution with multiple backends"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "log-base" = callPackage @@ -189532,8 +179347,6 @@ self: { ]; description = "Structured logging solution (base package)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "log-domain" = callPackage @@ -189574,9 +179387,7 @@ self: { ]; description = "An extensible log effect using extensible-effects"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "log-example"; - broken = true; }) {}; "log-effect-syslog" = callPackage @@ -189593,7 +179404,6 @@ self: { ]; description = "Syslog functions for log-effect"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "log-effectful" = callPackage @@ -189607,7 +179417,6 @@ self: { testHaskellDepends = [ aeson base effectful-core log-base text ]; description = "Adaptation of the log library for the effectful ecosystem"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "log-elasticsearch" = callPackage @@ -189628,7 +179437,6 @@ self: { ]; description = "Structured logging solution (Elasticsearch back end)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "log-postgres" = callPackage @@ -189648,7 +179456,6 @@ self: { ]; description = "Structured logging solution (PostgreSQL back end)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "log-utils" = callPackage @@ -189671,7 +179478,6 @@ self: { ]; description = "Utils for working with logs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "log-warper" = callPackage @@ -189707,8 +179513,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Flexible, configurable, monadic and pretty logging"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "log2json" = callPackage @@ -189722,9 +179526,7 @@ self: { executableHaskellDepends = [ base containers json parsec ]; description = "Turn log file records into JSON"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "log2json"; - broken = true; }) {}; "log4hs" = callPackage @@ -189755,7 +179557,6 @@ self: { ]; description = "A python logging style log library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "logentries" = callPackage @@ -189775,8 +179576,6 @@ self: { ]; description = "Request logger middleware for Logentries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "logfloat" = callPackage @@ -189820,8 +179619,6 @@ self: { ]; description = "Fast & extensible logging framework"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "logger-thread" = callPackage @@ -189916,7 +179713,6 @@ self: { executableHaskellDepends = [ base ]; description = "Supplemental packages for `logging-effect`"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "log-extra"; }) {}; @@ -189936,8 +179732,6 @@ self: { executableHaskellDepends = [ base logging-effect prettyprinter ]; description = "TH splices to augment log messages with file info"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "logging-effect-extra-handler" = callPackage @@ -189956,8 +179750,6 @@ self: { executableHaskellDepends = [ base logging-effect prettyprinter ]; description = "Handy logging handler combinators"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "logging-effect-syslog" = callPackage @@ -190063,7 +179855,6 @@ self: { ]; description = "Framework for propositional and first order logic, theorem proving"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "logical-constraints" = callPackage @@ -190086,8 +179877,6 @@ self: { libraryHaskellDepends = [ base logict transformers ]; description = "Backtracking mutable references in the ST and IO monads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "logict" = callPackage @@ -190143,8 +179932,6 @@ self: { ]; description = "A backtracking logic-programming monad with asymptotic improvements to msplit"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "logict-state" = callPackage @@ -190180,8 +179967,6 @@ self: { testHaskellDepends = [ base hspec time ]; description = "Parse Heroku application/logplex documents"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "logsink" = callPackage @@ -190234,7 +180019,6 @@ self: { executableHaskellDepends = [ haskell98 ]; description = "Useful utilities for the Lojban language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "jbovlastegendb"; }) {}; @@ -190250,9 +180034,7 @@ self: { executableHaskellDepends = [ base ]; description = "lojban parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "testParser"; - broken = true; }) {}; "lojbanXiragan" = callPackage @@ -190267,9 +180049,7 @@ self: { executableHaskellDepends = [ base ]; description = "lojban to xiragan"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "xiragan"; - broken = true; }) {}; "lojysamban" = callPackage @@ -190283,7 +180063,6 @@ self: { executableHaskellDepends = [ base lojbanParser yjtools ]; description = "Prolog with lojban"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lojysamban"; }) {}; @@ -190313,7 +180092,6 @@ self: { testHaskellDepends = [ base test-framework ]; description = "A library for lattice cryptography"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "lol-apps" = callPackage @@ -190334,7 +180112,6 @@ self: { ]; description = "Lattice-based cryptographic applications using ."; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "lol-benches" = callPackage @@ -190351,7 +180128,6 @@ self: { ]; description = "A library for benchmarking ."; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "lol-calculus" = callPackage @@ -190373,9 +180149,7 @@ self: { ]; description = "Calculus for LOL (λω language)"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "lol-calculus"; - broken = true; }) {}; "lol-cpp" = callPackage @@ -190395,7 +180169,6 @@ self: { benchmarkHaskellDepends = [ base DRBG lol lol-apps MonadRandom ]; description = "A fast C++ backend for ."; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "lol-repa" = callPackage @@ -190415,7 +180188,6 @@ self: { benchmarkHaskellDepends = [ base DRBG lol lol-benches ]; description = "A repa backend for ."; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "lol-tests" = callPackage @@ -190435,7 +180207,6 @@ self: { testHaskellDepends = [ base lol test-framework ]; description = "A library for testing ."; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "lol-typing" = callPackage @@ -190460,7 +180231,6 @@ self: { ]; description = "Type inferencer for LOL (λω language)"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "loli" = callPackage @@ -190478,7 +180248,6 @@ self: { ]; description = "A minimum web dev DSL in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "long-double" = callPackage @@ -190490,8 +180259,6 @@ self: { libraryHaskellDepends = [ base integer-gmp ]; description = "FFI bindings for C long double"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "longboi" = callPackage @@ -190503,8 +180270,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Dependently-typed linked list implementation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "longshot" = callPackage @@ -190537,7 +180302,6 @@ self: { description = "Fast Brute-force search using parallelism"; license = lib.licenses.mit; badPlatforms = [ "aarch64-linux" ]; - hydraPlatforms = lib.platforms.none; mainProgram = "longshot"; }) {}; @@ -190559,8 +180323,6 @@ self: { ]; description = "A simple text parser with decent errors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lookup-tables" = callPackage @@ -190575,8 +180337,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Statically generate lookup tables using Template Haskell"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "loop" = callPackage @@ -190605,8 +180365,6 @@ self: { testHaskellDepends = [ base hspec mtl transformers vector ]; description = "monadic loop dsl"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "loop-effin" = callPackage @@ -190618,7 +180376,6 @@ self: { libraryHaskellDepends = [ base effin ]; description = "control-monad-loop port for effin"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "loop-while" = callPackage @@ -190630,8 +180387,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformer supporting various styles of while loop"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "loopbreaker" = callPackage @@ -190649,8 +180404,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "inline self-recursive definitions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "looper" = callPackage @@ -190671,8 +180424,6 @@ self: { ]; testToolDepends = [ sydtest-discover ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "loops" = callPackage @@ -190690,8 +180441,6 @@ self: { benchmarkHaskellDepends = [ base criterion transformers vector ]; description = "Fast imperative-style loops"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "loopy" = callPackage @@ -190710,9 +180459,7 @@ self: { ]; description = "Find all biological feedback loops within an ecosystem graph"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "loopy"; - broken = true; }) {}; "lord" = callPackage @@ -190753,9 +180500,7 @@ self: { ]; description = "A command line interface to online radios"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "lord"; - broken = true; }) {}; "lorem" = callPackage @@ -190770,9 +180515,7 @@ self: { executableHaskellDepends = [ base ]; description = "Library for generating filler text"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lorem"; - broken = true; }) {}; "lorentz" = callPackage @@ -190798,7 +180541,6 @@ self: { ]; description = "EDSL for the Michelson Language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "loris" = callPackage @@ -190812,8 +180554,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "interface to Loris API"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {loris = null;}; "loshadka" = callPackage @@ -190832,9 +180572,7 @@ self: { ]; description = "Minecraft 1.7 server proxy that answers to queries when the server is offline"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "loshadka"; - broken = true; }) {}; "lostcities" = callPackage @@ -190852,7 +180590,6 @@ self: { ]; description = "An implementation of an adictive two-player card game"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "lostcities"; }) {}; @@ -190867,8 +180604,6 @@ self: { ]; description = "Turning images into text using Braille font"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "loup" = callPackage @@ -190889,7 +180624,6 @@ self: { executableHaskellDepends = [ base optparse-generic shakers ]; description = "Amazon Simple Workflow Service Wrapper for Work Pools"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "lowgl" = callPackage @@ -190901,8 +180635,6 @@ self: { libraryHaskellDepends = [ base gl linear vector ]; description = "Basic gl wrapper and reference"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lowlin" = callPackage @@ -190952,8 +180684,6 @@ self: { ]; description = "SVG Backend for lp-diagrams"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lpeg" = callPackage @@ -190997,8 +180727,6 @@ self: { ]; description = "LRU cache"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lrucaching-haxl" = callPackage @@ -191010,7 +180738,6 @@ self: { libraryHaskellDepends = [ base hashable haxl lrucaching psqueues ]; description = "Combine lrucaching and haxl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ls-usb" = callPackage @@ -191029,7 +180756,6 @@ self: { ]; description = "List USB devices"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ls-usb"; }) {}; @@ -191048,9 +180774,7 @@ self: { ]; description = "List exported modules from a set of .cabal files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lscabal"; - broken = true; }) {}; "lsfrom" = callPackage @@ -191069,9 +180793,7 @@ self: { testHaskellDepends = [ base directory filepath simple-cmd ]; description = "List directory files starting from a specific name"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lsfrom"; - broken = true; }) {}; "lsh" = callPackage @@ -191303,7 +181025,6 @@ self: { ]; description = "Paint an L-System Grammar"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lsystem"; }) {}; @@ -191336,7 +181057,6 @@ self: { ]; description = "Parameterized file evaluator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ltext"; }) {}; @@ -191380,8 +181100,6 @@ self: { ]; description = "Partial implementation of a service provider for LTI 1.1."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ltk" = callPackage @@ -191402,8 +181120,6 @@ self: { libraryPkgconfigDepends = [ gtk3 ]; description = "Leksah tool kit"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) gtk3;}; "ltl" = callPackage @@ -191458,8 +181174,6 @@ self: { ]; description = "Lua bytecode parser"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lua-bytecode" = callPackage @@ -191492,7 +181206,6 @@ self: { ]; description = "Library functions for reading and writing Lua chunks"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "luautils" = callPackage @@ -191514,8 +181227,6 @@ self: { ]; description = "Helpers for Haskell integration with Lua"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lub" = callPackage @@ -191565,9 +181276,7 @@ self: { testHaskellDepends = [ base lucid text ]; description = "Use Alpine.js in your lucid templates"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lucid-alpine-exe"; - broken = true; }) {}; "lucid-aria" = callPackage @@ -191580,8 +181289,6 @@ self: { testHaskellDepends = [ base hspec HUnit lucid ]; description = "Provides ARIA attributes for Lucid templates"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lucid-cdn" = callPackage @@ -191606,7 +181313,6 @@ self: { libraryHaskellDepends = [ base colonnade lucid text ]; description = "Helper functions for using lucid with colonnade"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lucid-extras" = callPackage @@ -191666,9 +181372,7 @@ self: { testHaskellDepends = [ base lucid template-haskell text ]; description = "Use _hyperscript with lucid"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lucid-hyperscript-exe"; - broken = true; }) {}; "lucid-svg" = callPackage @@ -191723,8 +181427,6 @@ self: { testHaskellDepends = [ base hspec HUnit lucid2 text ]; description = "Use htmx in your lucid templates"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lucid2-xstatic" = callPackage @@ -191757,7 +181459,6 @@ self: { ]; description = "Server side feed aggregator/reader"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "luhn" = callPackage @@ -191769,8 +181470,6 @@ self: { libraryHaskellDepends = [ base digits QuickCheck ]; description = "An implementation of Luhn's check digit algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lui" = callPackage @@ -191786,7 +181485,6 @@ self: { ]; description = "Purely FunctionaL User Interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "luis-client" = callPackage @@ -191801,8 +181499,6 @@ self: { ]; description = "An unofficial client for the LUIS NLP service"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "luka" = callPackage @@ -191816,8 +181512,6 @@ self: { librarySystemDepends = [ objc ]; description = "Simple ObjectiveC runtime binding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {objc = null;}; "lukko" = callPackage @@ -191875,8 +181569,6 @@ self: { ]; description = "Type-safe, type-level and stateless graphics framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "luminance-samples" = callPackage @@ -191895,7 +181587,6 @@ self: { ]; description = "Luminance samples"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lushtags" = callPackage @@ -191909,9 +181600,7 @@ self: { executableHaskellDepends = [ base haskell-src-exts text vector ]; description = "Create ctags compatible tags files for Haskell programs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "lushtags"; - broken = true; }) {}; "luthor" = callPackage @@ -191924,8 +181613,6 @@ self: { testHaskellDepends = [ base mtl parsec ]; description = "Tools for lexing and utilizing lexemes that integrate with Parsec"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lvar" = callPackage @@ -191964,7 +181651,6 @@ self: { ]; description = "Parallel scheduler, LVar data structures, and infrastructure to build more"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "lvmlib" = callPackage @@ -191987,9 +181673,7 @@ self: { ]; description = "The Lazy Virtual Machine (LVM)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "coreasm"; - broken = true; }) {}; "lvmrun" = callPackage @@ -192002,9 +181686,7 @@ self: { isExecutable = true; description = "The Lazy Virtual Machine (LVM) Runtime System"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "lvmrun"; - broken = true; }) {}; "lxc" = callPackage @@ -192046,9 +181728,7 @@ self: { ]; description = "LXD client written in Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "lxd-client-example"; - broken = true; }) {}; "lxd-client-config" = callPackage @@ -192069,8 +181749,6 @@ self: { ]; description = "Read the configuration file of the standard LXD client"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lye" = callPackage @@ -192088,9 +181766,7 @@ self: { ]; description = "A Lilypond-compiling music box"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "lye"; - broken = true; }) {}; "lz4" = callPackage @@ -192126,8 +181802,6 @@ self: { ]; description = "Bindings to LZ4"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lz4-conduit" = callPackage @@ -192151,7 +181825,6 @@ self: { ]; description = "LZ4 compression for conduits"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "LZ4"; }) {}; @@ -192181,9 +181854,7 @@ self: { ]; description = "Conduit implementing the official LZ4 frame streaming format"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "haskell-lz4c"; - broken = true; }) {}; "lz4-hs" = callPackage @@ -192213,8 +181884,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Lzip compression / Lzlib bindings"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lzlib" = callPackage @@ -192235,8 +181904,6 @@ self: { ]; description = "lzlib bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lzma" = callPackage @@ -192307,7 +181974,6 @@ self: { ]; description = "Enumerator interface for lzma/xz compression"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) xz;}; "lzma-static" = callPackage @@ -192344,8 +182010,6 @@ self: { ]; description = "IO-Streams interface for lzma/xz compression"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "lzo" = callPackage @@ -192363,8 +182027,6 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion ]; description = "minilzo bundled for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mDNSResponder-client" = callPackage @@ -192381,7 +182043,6 @@ self: { testHaskellDepends = [ base bytestring Cabal ]; description = "Library for talking to the mDNSResponder daemon"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "maam" = callPackage @@ -192398,9 +182059,7 @@ self: { ]; description = "Monadic Abstracting Abstract Machines (MAAM) built on Galois Transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "maam_examples"; - broken = true; }) {}; "mac" = callPackage @@ -192412,8 +182071,6 @@ self: { libraryHaskellDepends = [ base network transformers ]; description = "Static Mandatory Access Control in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "macaroon-shop" = callPackage @@ -192434,8 +182091,6 @@ self: { ]; description = "A toolkit for working with macaroons"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "macbeth-lib" = callPackage @@ -192461,7 +182116,6 @@ self: { testHaskellDepends = [ attoparsec base bytestring hspec ]; description = "Macbeth - A beautiful and minimalistic FICS client"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "Macbeth"; }) {}; @@ -192506,8 +182160,6 @@ self: { ]; description = "Arrow based stream transducers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "machines" = callPackage @@ -192553,7 +182205,6 @@ self: { ]; description = "Machine transducers for Amazonka calls"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "machines-attoparsec" = callPackage @@ -192574,8 +182225,6 @@ self: { ]; description = "Parse machines streams with attoparsec parsers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "machines-binary" = callPackage @@ -192587,8 +182236,6 @@ self: { libraryHaskellDepends = [ base binary bytestring machines ]; description = "Binary utilities for the machines library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "machines-bytestring" = callPackage @@ -192600,8 +182247,6 @@ self: { libraryHaskellDepends = [ base bytestring machines ]; description = "ByteString support for machines"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "machines-directory" = callPackage @@ -192617,7 +182262,6 @@ self: { ]; description = "Directory (system) utilities for the machines library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "machines-encoding" = callPackage @@ -192629,8 +182273,6 @@ self: { libraryHaskellDepends = [ base bytestring machines text ]; description = "Transcode encodings with machines"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "machines-io" = callPackage @@ -192646,8 +182288,6 @@ self: { ]; description = "IO utilities for the machines library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "machines-process" = callPackage @@ -192662,7 +182302,6 @@ self: { ]; description = "Process (system) utilities for the machines library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "machines-zlib" = callPackage @@ -192677,8 +182316,6 @@ self: { ]; description = "Decompression support for machines"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "macho" = callPackage @@ -192691,8 +182328,6 @@ self: { libraryHaskellDepends = [ base binary bytestring ]; description = "Parser for Mach-O object format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mackerel-client" = callPackage @@ -192716,7 +182351,6 @@ self: { ]; description = "An API client library for Mackerel"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "maclight" = callPackage @@ -192741,9 +182375,7 @@ self: { ]; description = "Control screen and keyboard backlights on MACs under Linux"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "maclight"; - broken = true; }) {}; "macos-corelibs" = callPackage @@ -192759,8 +182391,6 @@ self: { ]; description = "Haskell bindings to C-based Mac OS SDK frameworks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "macosx-make-standalone" = callPackage @@ -192780,7 +182410,6 @@ self: { ]; description = "Make a macosx app standalone deployable"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "macosx-make-standalone"; }) {}; @@ -192806,9 +182435,7 @@ self: { ]; description = "Alternative rm command for macOS that remove files/dirs to the system trash"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "macrm"; - broken = true; }) {}; "mad-props" = callPackage @@ -192862,9 +182489,7 @@ self: { benchmarkHaskellDepends = [ base criterion megaparsec text ]; description = "Randomized templating language DSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "madlang"; - broken = true; }) {}; "mage" = callPackage @@ -192880,9 +182505,7 @@ self: { executableSystemDepends = [ ncurses ]; description = "Rogue-like"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mage"; - broken = true; }) {inherit (pkgs) ncurses;}; "magic" = callPackage @@ -192906,8 +182529,6 @@ self: { libraryHaskellDepends = [ base ghc ghc-tcplugins-extra syb ]; description = "Write plugins for magic type families with ease"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "magic-wormhole" = callPackage @@ -192938,7 +182559,6 @@ self: { ]; description = "Interact with Magic Wormhole"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "hocus-pocus"; }) {}; @@ -192972,7 +182592,6 @@ self: { ]; description = "A web framework that integrates Servant, RIO, EKG, fast-logger, wai-cli…"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "magico" = callPackage @@ -192990,7 +182609,6 @@ self: { ]; description = "Compute solutions for Magico puzzle"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "magico"; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -193006,8 +182624,6 @@ self: { testHaskellDepends = [ base ghc-prim ]; description = "magma is an algebraic structure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "magmas" = callPackage @@ -193039,7 +182655,6 @@ self: { ]; description = "ImageBoards to XMPP gate"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "mahoro"; }) {}; @@ -193062,7 +182677,6 @@ self: { ]; description = "A simple static web server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "maid"; }) {}; @@ -193144,8 +182758,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Bindings for the MailChimp API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mailchimp-subscribe" = callPackage @@ -193164,9 +182776,7 @@ self: { ]; description = "MailChimp subscription request handler"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mailchimp-subscribe"; - broken = true; }) {}; "mailgun" = callPackage @@ -193186,7 +182796,6 @@ self: { ]; description = "API binding for Mailgun"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "main-tester" = callPackage @@ -193238,7 +182847,6 @@ self: { ]; description = "Majordomo protocol for ZeroMQ"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "majority" = callPackage @@ -193250,7 +182858,6 @@ self: { libraryHaskellDepends = [ haskell2010 ]; description = "Boyer-Moore Majority Vote Algorithm"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "make-hard-links" = callPackage @@ -193268,9 +182875,7 @@ self: { ]; description = "Change duplicated files into hard-links"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "make-hard-links"; - broken = true; }) {}; "make-monofoldable-foldable" = callPackage @@ -193282,8 +182887,6 @@ self: { libraryHaskellDepends = [ base mono-traversable ]; description = "Make a MonoFoldable type into an ordinary Foldable type"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "make-package" = callPackage @@ -193304,7 +182907,6 @@ self: { ]; description = "Make a cabalized package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "make-package"; }) {}; @@ -193317,8 +182919,6 @@ self: { libraryHaskellDepends = [ base directory filepath HSH process ]; description = "Helper for writing redo scripts in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "makefile" = callPackage @@ -193336,8 +182936,6 @@ self: { ]; description = "Simple Makefile parser and generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mallard" = callPackage @@ -193365,9 +182963,7 @@ self: { ]; description = "Database migration and testing as a library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mallard"; - broken = true; }) {}; "mameya" = callPackage @@ -193455,7 +183051,6 @@ self: { ]; description = "The Haskell/Gtk+ Integrated Live Environment"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "manatee"; }) {}; @@ -193504,7 +183099,6 @@ self: { ]; description = "Multithread interactive input/search framework for Manatee"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "manatee-anything"; }) {}; @@ -193550,7 +183144,6 @@ self: { ]; description = "The core of Manatee"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "manatee-curl" = callPackage @@ -193573,7 +183166,6 @@ self: { ]; description = "Download Manager extension for Manatee"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "manatee-curl"; }) {}; @@ -193595,7 +183187,6 @@ self: { ]; description = "Editor extension for Manatee"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "manatee-editor"; }) {}; @@ -193617,7 +183208,6 @@ self: { ]; description = "File manager extension for Manatee"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "manatee-filemanager"; }) {}; @@ -193639,7 +183229,6 @@ self: { ]; description = "Image viewer extension for Manatee"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "manatee-imageviewer"; }) {}; @@ -193665,7 +183254,6 @@ self: { ]; description = "IRC client extension for Manatee"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "manatee-mplayer" = callPackage @@ -193687,7 +183275,6 @@ self: { ]; description = "Mplayer client extension for Manatee"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "manatee-pdfviewer" = callPackage @@ -193708,7 +183295,6 @@ self: { ]; description = "PDF viewer extension for Manatee"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "manatee-pdfviewer"; }) {}; @@ -193729,7 +183315,6 @@ self: { ]; description = "Process manager extension for Manatee"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "manatee-processmanager"; }) {}; @@ -193772,7 +183357,6 @@ self: { ]; description = "Template code to create Manatee application"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "manatee-template"; }) {}; @@ -193793,7 +183377,6 @@ self: { ]; description = "Terminal Emulator extension for Manatee"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "manatee-terminal"; }) {}; @@ -193814,7 +183397,6 @@ self: { ]; description = "Welcome module to help user play Manatee quickly"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "manatee-welcome"; }) {}; @@ -193872,9 +183454,7 @@ self: { ]; description = "A zooming visualisation of the Mandelbrot Set as many Julia Sets"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "mandulia"; - broken = true; }) {}; "mangopay" = callPackage @@ -193913,9 +183493,7 @@ self: { ]; description = "Bindings to the MangoPay API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mangopay-passphrase"; - broken = true; }) {}; "mangrove" = callPackage @@ -193937,7 +183515,6 @@ self: { ]; description = "A parser for web documents according to the HTML5 specification"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "manifold-random" = callPackage @@ -193954,7 +183531,6 @@ self: { ]; description = "Sampling random points on general manifolds"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "manifolds" = callPackage @@ -193985,7 +183561,6 @@ self: { ]; description = "Coordinate-free hypersurfaces"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "manifolds-core" = callPackage @@ -194031,8 +183606,6 @@ self: { executableHaskellDepends = [ base bytestring cassava containers ]; description = "Extensions to Data.Map"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "map-reduce-folds" = callPackage @@ -194060,8 +183633,6 @@ self: { ]; description = "foldl wrappers for map-reduce"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "map-syntax" = callPackage @@ -194100,8 +183671,6 @@ self: { ]; description = "Efficient, polymorphic Map Algebra"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mappy" = callPackage @@ -194124,9 +183693,7 @@ self: { testHaskellDepends = [ base containers hspec parsec QuickCheck ]; description = "A functional programming language focused around maps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mappy"; - broken = true; }) {}; "mapquest-api" = callPackage @@ -194217,7 +183784,6 @@ self: { ]; description = "A study of marionetta movements"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "marionetta"; }) {}; @@ -194264,8 +183830,6 @@ self: { ]; description = "Convert Markdown to HTML, with XSS protection"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "markdown-pap" = callPackage @@ -194277,7 +183841,6 @@ self: { libraryHaskellDepends = [ base monads-tf papillon ]; description = "markdown parser with papillon"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "markdown-unlit" = callPackage @@ -194341,7 +183904,6 @@ self: { ]; description = "markdown to svg converter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "markdown2svg"; }) {}; @@ -194355,8 +183917,6 @@ self: { testHaskellDepends = [ base ]; description = "Pretty-printing library, with scoping, based on pretty"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "markov" = callPackage @@ -194417,7 +183977,6 @@ self: { testHaskellDepends = [ assertions base bifunctors memoize random ]; description = "Hidden Markov processes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "markov-realization" = callPackage @@ -194430,8 +183989,6 @@ self: { testHaskellDepends = [ base HTF MonadRandom ]; description = "Realizations of Markov chains"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "markup" = callPackage @@ -194450,7 +184007,6 @@ self: { ]; description = "Abstraction for HTML-embedded content"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "markup-preview" = callPackage @@ -194500,7 +184056,6 @@ self: { ]; description = "Upload packages to Marmalade"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "marmalade-upload"; }) {}; @@ -194536,7 +184091,6 @@ self: { testHaskellDepends = [ base bytestring hspec ]; description = "Client library for Vaultaire"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mars" = callPackage @@ -194552,8 +184106,6 @@ self: { ]; description = "Generates mountainous terrain using a random walk algorithm"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "marshal-contt" = callPackage @@ -194569,8 +184121,6 @@ self: { ]; description = "A ContT-based wrapper for Haskell-to-C marshalling functions"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "marvin" = callPackage @@ -194605,7 +184155,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "A framework for modular, portable chat bots"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "marvin-interpolate" = callPackage @@ -194622,8 +184171,6 @@ self: { testHaskellDepends = [ base hspec text ]; description = "Compile time string interpolation a la Scala and CoffeeScript"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "marxup" = callPackage @@ -194670,7 +184217,6 @@ self: { ]; description = "@minamiyama1994_bot on haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "masakazu-bot"; }) {}; @@ -194750,8 +184296,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Compatibility of 'massiv' with 'persist'"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "massiv-scheduler" = callPackage @@ -194772,8 +184316,6 @@ self: { ]; description = "Work stealing scheduler for Massiv (Массив) and other parallel applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "massiv-serialise" = callPackage @@ -194791,8 +184333,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Compatibility of 'massiv' with 'serialise'"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "massiv-test" = callPackage @@ -194840,9 +184380,7 @@ self: { ]; description = "The project management tool for hackers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "master-plan"; - broken = true; }) {}; "mastermind" = callPackage @@ -194904,8 +184442,6 @@ self: { ]; description = "A composable abstraction for checking or converting a context value"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "matchers" = callPackage @@ -194918,7 +184454,6 @@ self: { librarySystemDepends = [ pcre ]; description = "Text matchers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) pcre;}; "math-extras" = callPackage @@ -194971,8 +184506,6 @@ self: { testHaskellDepends = [ array base containers hspec random ]; description = "Library containing graph data structures and graph algorithms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "math-interpolate" = callPackage @@ -194984,8 +184517,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Class for interpolation of values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "math-metric" = callPackage @@ -194997,8 +184528,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Typeclass for metric spaces"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "math-programming" = callPackage @@ -195015,8 +184544,6 @@ self: { testHaskellDepends = [ base hspec mtl QuickCheck text ]; description = "A library for formulating and solving math programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "math-programming-glpk" = callPackage @@ -195035,7 +184562,6 @@ self: { ]; description = "A GLPK backend to the math-programming library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "math-programming-tests" = callPackage @@ -195053,7 +184579,6 @@ self: { ]; description = "Utility functions for testing implementations of the math-programming library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mathblog" = callPackage @@ -195080,7 +184605,6 @@ self: { ]; description = "A program for creating and managing a static weblog with LaTeX math and diagrams"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mathexpr" = callPackage @@ -195111,8 +184635,6 @@ self: { ]; description = "Dependently typed tensorflow modeler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mathgenealogy" = callPackage @@ -195173,7 +184695,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Write Mathematica packages in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mathlist" = callPackage @@ -195283,8 +184804,6 @@ self: { ]; description = "Read and Display Jones-Faithful notation for spacegroup and planegroup"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "matrix-client" = callPackage @@ -195330,8 +184849,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Optics for the \"matrix\" package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "matrix-market" = callPackage @@ -195343,8 +184860,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Read and write NIST Matrix Market files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "matrix-market-attoparsec" = callPackage @@ -195396,8 +184911,6 @@ self: { ]; description = "Haskell matrix library with interface to C++ linear algebra libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "matrix-static" = callPackage @@ -195429,8 +184942,6 @@ self: { testHaskellDepends = [ base containers hspec QuickCheck ]; description = "matroid (combinatorial pre-geometries) library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "matsuri" = callPackage @@ -195450,7 +184961,6 @@ self: { ]; description = "ncurses XMPP client"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "matsuri"; }) {}; @@ -195554,8 +185064,6 @@ self: { ]; description = "An interface to the Maude rewriting system"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "maxent" = callPackage @@ -195577,7 +185085,6 @@ self: { ]; description = "Compute Maximum Entropy Distributions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "maxent-learner-hw" = callPackage @@ -195601,9 +185108,7 @@ self: { ]; description = "Hayes and Wilson's maxent learning algorithm for phonotactic grammars"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "phono-learner-hw"; - broken = true; }) {}; "maxent-learner-hw-gui" = callPackage @@ -195625,7 +185130,6 @@ self: { ]; description = "GUI for maxent-learner-hw"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "phono-learner-hw-gui"; }) {}; @@ -195659,7 +185163,6 @@ self: { ]; description = "Maximal sharing of terms in the lambda calculus with letrec"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "maxsharing"; }) {}; @@ -195691,8 +185194,6 @@ self: { ]; description = "Automated benchmarking tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mbox" = callPackage @@ -195724,8 +185225,6 @@ self: { ]; description = "A collection of tools to process mbox files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mbox-utility" = callPackage @@ -195766,8 +185265,6 @@ self: { testHaskellDepends = [ base HUnit ]; description = "Haskell MBTiles client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mbug" = callPackage @@ -195793,9 +185290,7 @@ self: { ]; description = "download bugs mailboxes"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "mbug"; - broken = true; }) {}; "mcaeson" = callPackage @@ -195838,8 +185333,6 @@ self: { ]; description = "Bindings to mcl, a generic and fast pairing-based cryptography library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) gmpxx; mcl = null; inherit (pkgs) openssl;}; "mcm" = callPackage @@ -195859,8 +185352,6 @@ self: { ]; description = "Machine Configuration Manager"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mcmaster-gloss-examples" = callPackage @@ -195873,8 +185364,6 @@ self: { isExecutable = true; executableHaskellDepends = [ base gloss ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mcmc" = callPackage @@ -195916,7 +185405,6 @@ self: { ]; description = "Combinators for MCMC sampling"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mcmc-synthesis" = callPackage @@ -195928,8 +185416,6 @@ self: { libraryHaskellDepends = [ base MonadRandom ]; description = "MCMC applied to probabilistic program synthesis"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mcmc-types" = callPackage @@ -195957,8 +185443,6 @@ self: { executableHaskellDepends = [ base transformers ]; description = "Connect to MineCraft running on a Raspberry PI"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "md5" = callPackage @@ -195977,8 +185461,6 @@ self: { ]; description = "MD5 Hash"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mdapi" = callPackage @@ -195997,8 +185479,6 @@ self: { ]; description = "Haskell interface to Fedora's mdapi"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mdcat" = callPackage @@ -196018,9 +185498,7 @@ self: { ]; description = "Markdown viewer in your terminal"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mdcat"; - broken = true; }) {}; "mdo" = callPackage @@ -196051,8 +185529,6 @@ self: { testHaskellDepends = [ base HTF HUnit QuickCheck vector ]; description = "Tools for solving Markov Decision Processes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mealstrom" = callPackage @@ -196075,8 +185551,6 @@ self: { ]; description = "Manipulate FSMs and store them in PostgreSQL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mealy" = callPackage @@ -196094,8 +185568,6 @@ self: { ]; description = "Mealy machines for processing time-series and ordered data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "means" = callPackage @@ -196119,8 +185591,6 @@ self: { librarySystemDepends = [ mecab ]; description = "A Haskell binding to MeCab"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) mecab;}; "mech" = callPackage @@ -196132,8 +185602,6 @@ self: { libraryHaskellDepends = [ base machines ]; description = "mecha are the most complex composite machines known to humanity, lets build them well!"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mecha" = callPackage @@ -196159,8 +185627,6 @@ self: { libraryHaskellDepends = [ base machines ]; description = "mecha are the most complex composite machines known to humanity, lets build them well!"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "med-module" = callPackage @@ -196208,7 +185674,6 @@ self: { ]; description = "A schema language for JSON"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "mediabus" = callPackage @@ -196239,8 +185704,6 @@ self: { ]; description = "Multimedia streaming on top of Conduit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mediabus-fdk-aac" = callPackage @@ -196268,7 +185731,6 @@ self: { ]; description = "Mediabus plugin for the Frauenhofer ISO-14496-3 AAC FDK"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {fdk-aac = null;}; "mediabus-rtp" = callPackage @@ -196306,7 +185768,6 @@ self: { ]; description = "Receive and Send RTP Packets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mediabus-demo-rtp-alaw-player"; }) {}; @@ -196338,8 +185799,6 @@ self: { ]; description = "Interfacing with the MediaWiki API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mediawiki2latex" = callPackage @@ -196384,8 +185843,6 @@ self: { ]; description = "Haskell SDK for communicating with the Medium API"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "meep" = callPackage @@ -196406,8 +185863,6 @@ self: { ]; description = "A silly container"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mega-sdist" = callPackage @@ -196438,8 +185893,6 @@ self: { libraryHaskellDepends = [ base megaparsec mtl text ]; description = "lisp parser using mega-parsec"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "megaparsec" = callPackage @@ -196555,9 +186008,7 @@ self: { ]; description = "Bulk image or strict bytestring storage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "megastore"; - broken = true; }) {}; "meldable-heap" = callPackage @@ -196600,8 +186051,6 @@ self: { ]; description = "An Elf parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mellon-core" = callPackage @@ -196621,8 +186070,6 @@ self: { ]; description = "Control physical access devices"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mellon-gpio" = callPackage @@ -196634,7 +186081,6 @@ self: { libraryHaskellDepends = [ base hpio mellon-core protolude ]; description = "GPIO support for mellon"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mellon-web" = callPackage @@ -196676,7 +186122,6 @@ self: { ]; description = "A REST web service for Mellon controllers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "melody" = callPackage @@ -196698,9 +186143,7 @@ self: { ]; description = "A functional scripting language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "imelody"; - broken = true; }) {}; "membership" = callPackage @@ -196733,8 +186176,6 @@ self: { ]; description = "Type-safe memory units"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "memcache" = callPackage @@ -196775,7 +186216,6 @@ self: { ]; description = "Conduit library for memcache procotol"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "memcache-haskell" = callPackage @@ -196798,8 +186238,6 @@ self: { ]; description = "Memcache procotol library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "memcached" = callPackage @@ -196811,8 +186249,6 @@ self: { libraryHaskellDepends = [ base bytestring network utf8-light ]; description = "haskell bindings for memcached"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "memcached-binary" = callPackage @@ -196835,8 +186271,6 @@ self: { ]; description = "memcached client using binary protocol"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "memdb" = callPackage @@ -196889,8 +186323,6 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring containers ]; description = "Library for reading `/proc/meminfo`"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "memis" = callPackage @@ -196916,7 +186348,6 @@ self: { ]; description = "Memis Efficient Manual Image Sorting"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "memis"; }) {}; @@ -196929,8 +186360,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Pointer equality memoization"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "memo-sqlite" = callPackage @@ -196942,8 +186371,6 @@ self: { libraryHaskellDepends = [ base direct-sqlite text ]; description = "memoize functions using SQLite3 database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "memoization-utils" = callPackage @@ -196960,8 +186387,6 @@ self: { testHaskellDepends = [ base hspec time time-units ]; description = "Utilities for memoizing functions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "memoize" = callPackage @@ -197002,9 +186427,7 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion random ]; description = "Generate human memorable strings from binary data"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "membits"; - broken = true; }) {}; "memory" = callPackage @@ -197041,7 +186464,6 @@ self: { ]; description = "memory and related abstraction stuff"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "memory-hexstring" = callPackage @@ -197057,7 +186479,6 @@ self: { ]; description = "Hex-string type for Haskell Web3 library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "memorypool" = callPackage @@ -197073,8 +186494,6 @@ self: { ]; description = "basic memory pool outside of haskell heap/GC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "memscript" = callPackage @@ -197129,8 +186548,6 @@ self: { ]; description = "Haskell binding for Menoh DNN inference library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {menoh = null;}; "menshen" = callPackage @@ -197149,8 +186566,6 @@ self: { ]; description = "Data Validation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mercury-api" = callPackage @@ -197177,8 +186592,6 @@ self: { ]; description = "Haskell binding to Mercury API for ThingMagic RFID readers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "merge" = callPackage @@ -197250,8 +186663,6 @@ self: { ]; description = "Support for using mergeful from persistent-based databases"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mergeless" = callPackage @@ -197291,8 +186702,6 @@ self: { ]; description = "Support for using mergeless from persistent-based databases"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "merkle-log" = callPackage @@ -197342,7 +186751,6 @@ self: { ]; description = "A modified Merkle Patricia DB"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "merkle-tree" = callPackage @@ -197440,8 +186848,6 @@ self: { ]; description = "Message Pack RPC over TCP"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "messente" = callPackage @@ -197455,8 +186861,6 @@ self: { ]; description = "Messente SMS Gateway"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "meta-misc" = callPackage @@ -197468,8 +186872,6 @@ self: { libraryHaskellDepends = [ base loch-th template-haskell ]; description = "Utility library providing miscellaneous meta-programming utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "meta-par" = callPackage @@ -197486,8 +186888,6 @@ self: { ]; description = "Provides the monad-par interface, but based on modular scheduler \"mix-ins\""; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "meta-par-accelerate" = callPackage @@ -197505,7 +186905,6 @@ self: { ]; description = "Support for integrated Accelerate computations within Meta-par"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "metadata" = callPackage @@ -197517,8 +186916,6 @@ self: { libraryHaskellDepends = [ base text time ]; description = "metadata library for semantic web"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "metaheuristics" = callPackage @@ -197530,8 +186927,6 @@ self: { libraryHaskellDepends = [ arrows base random Stream ]; description = "Generalised local search within Haskell, for applications in combinatorial optimisation"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "metamorphic" = callPackage @@ -197554,7 +186949,6 @@ self: { libraryHaskellDepends = [ base Cabal filepath ghc haskell98 ]; description = "a tiny ghc api wrapper"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "metar" = callPackage @@ -197580,7 +186974,6 @@ self: { ]; description = "Australian METAR"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "metar"; }) {}; @@ -197606,7 +186999,6 @@ self: { ]; description = "HTTP for METAR"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "metar-http"; }) {}; @@ -197628,8 +187020,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "rebindable methods for improving testability"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "metric" = callPackage @@ -197648,8 +187038,6 @@ self: { ]; description = "Metric spaces"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "metrics" = callPackage @@ -197683,8 +187071,6 @@ self: { libraryHaskellDepends = [ base network ]; description = "Client for the metrics aggregator Metricsd"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "metro" = callPackage @@ -197786,7 +187172,6 @@ self: { ]; description = "Time Synchronized execution"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mezzo" = callPackage @@ -197807,8 +187192,6 @@ self: { ]; description = "Typesafe music composition"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mezzolens" = callPackage @@ -197820,8 +187203,6 @@ self: { libraryHaskellDepends = [ base containers mtl transformers ]; description = "Pure Profunctor Functional Lenses"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mfsolve" = callPackage @@ -197851,8 +187232,6 @@ self: { ]; description = "Generics with multiple parameters"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mi" = callPackage @@ -197868,8 +187247,6 @@ self: { ]; description = "Multiple Instance for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "miconix-test" = callPackage @@ -197885,9 +187262,7 @@ self: { executableHaskellDepends = [ base ]; description = "spam"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "test1"; - broken = true; }) {}; "micro-gateway" = callPackage @@ -197916,7 +187291,6 @@ self: { ]; description = "A Micro service gateway"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "simple-gateway"; }) {}; @@ -197935,8 +187309,6 @@ self: { testHaskellDepends = [ base HUnit template-haskell ]; description = "Simple recursion schemes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "microaeson" = callPackage @@ -197972,8 +187344,6 @@ self: { doHaddock = false; description = "A minimal base to work around GHC bugs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "microbench" = callPackage @@ -198031,8 +187401,6 @@ self: { ]; description = "A Microformats 2 parser"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "microformats2-types" = callPackage @@ -198050,7 +187418,6 @@ self: { ]; description = "Microformats 2 types (with Aeson instances)"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "microgroove" = callPackage @@ -198062,8 +187429,6 @@ self: { libraryHaskellDepends = [ base primitive vector ]; description = "Array-backed extensible records"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "microlens" = callPackage @@ -198138,8 +187503,6 @@ self: { libraryHaskellDepends = [ base microlens ]; description = "'each' for microlens"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "microlens-ghc" = callPackage @@ -198203,8 +187566,6 @@ self: { testHaskellDepends = [ base doctest microlens process ]; description = "Micro-optics for the process library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "microlens-th" = callPackage @@ -198239,8 +187600,6 @@ self: { testHaskellDepends = [ aeson base hspec text ]; description = "A super simple logging module"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "microsoft-translator" = callPackage @@ -198258,8 +187617,6 @@ self: { ]; description = "Bindings to the Microsoft Translator API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "microspec" = callPackage @@ -198336,9 +187693,7 @@ self: { ]; description = "Language for algorithmic generation of MIDI files"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "mida"; - broken = true; }) {}; "midair" = callPackage @@ -198434,8 +187789,6 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion ]; description = "A simple and fast library for working with MIDI messages"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "midi-util" = callPackage @@ -198466,8 +187819,6 @@ self: { ]; description = "Utilities for working with MIDI data"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "midimory" = callPackage @@ -198487,7 +187838,6 @@ self: { ]; description = "A Memory-like (Concentration, Pairs, ...) game for tones"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "midimory"; }) {}; @@ -198507,9 +187857,7 @@ self: { description = "A control midi surface"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; mainProgram = "midisurface"; - broken = true; }) {}; "mig" = callPackage @@ -198547,7 +187895,6 @@ self: { ]; description = "Simple Web Server in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mighttpd2" = callPackage @@ -198579,8 +187926,6 @@ self: { testHaskellDepends = [ base hspec http-client ]; description = "High performance web server on WAI/warp"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mighty-metropolis" = callPackage @@ -198601,8 +187946,6 @@ self: { ]; description = "The Metropolis algorithm"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "migrant-core" = callPackage @@ -198657,8 +188000,6 @@ self: { ]; description = "Semi-automatic database schema migrations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "migrant-sqlite-simple" = callPackage @@ -198689,8 +188030,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "MikMod bindings"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mikrokosmos" = callPackage @@ -198716,9 +188055,7 @@ self: { ]; description = "Lambda calculus interpreter"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "mikrokosmos"; - broken = true; }) {}; "miku" = callPackage @@ -198735,8 +188072,6 @@ self: { ]; description = "A minimum web dev DSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "milena" = callPackage @@ -198760,8 +188095,6 @@ self: { ]; description = "A Kafka client for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mime" = callPackage @@ -198790,8 +188123,6 @@ self: { ]; description = "A library for parsing/printing the text/directory mime type"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mime-mail" = callPackage @@ -198912,7 +188243,6 @@ self: { ]; description = "a DSL for generating minecraft commands and levels"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mines" = callPackage @@ -198947,7 +188277,6 @@ self: { ]; description = "Minesweeper game which is always solvable without guessing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "minesweeper"; }) {}; @@ -198970,7 +188299,6 @@ self: { testHaskellDepends = [ base hspec primes ]; description = "Template Haskell Implementation of Egison Pattern Matching"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "cdcl"; }) {}; @@ -199018,9 +188346,7 @@ self: { ]; description = "Miniature FORTH-like interpreter"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "miniforth"; - broken = true; }) {}; "minilens" = callPackage @@ -199036,8 +188362,6 @@ self: { ]; description = "A minimalistic lens library, providing only the simplest, most basic lens functionality"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "minilight" = callPackage @@ -199069,8 +188393,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "A SDL2-based graphics library, batteries-included"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "minilight-lua" = callPackage @@ -199091,7 +188413,6 @@ self: { executableHaskellDepends = [ base lens minilight mtl ]; description = "A binding library of minilight for Lua langauge"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -199133,7 +188454,6 @@ self: { executableHaskellDepends = [ base GLUT haskell98 unix ]; description = "Shows how to run grabber on Mac OS X"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "minimung"; }) {}; @@ -199187,9 +188507,7 @@ self: { ]; description = "A fast parallel ssh tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "minions"; - broken = true; }) {}; "minioperational" = callPackage @@ -199206,7 +188524,6 @@ self: { ]; description = "fast and simple operational monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "miniplex" = callPackage @@ -199223,8 +188540,6 @@ self: { ]; description = "simple 1-to-N interprocess communication"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "minirotate" = callPackage @@ -199244,7 +188559,6 @@ self: { ]; description = "Minimalistic file rotation utility"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "minirotate"; }) {}; @@ -199287,9 +188601,7 @@ self: { ]; description = "an interpreter for an operational semantics for the STG machine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ministg"; - broken = true; }) {}; "minitypeset-opengl" = callPackage @@ -199343,8 +188655,6 @@ self: { ]; description = "A set of helpers to call minizinc models"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "minlen" = callPackage @@ -199372,8 +188682,6 @@ self: { testHaskellDepends = [ base binary directory hspec vector ]; description = "Read and write IDX data that is used in e.g. the MINST database."; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mintty" = callPackage @@ -199408,9 +188716,7 @@ self: { ]; description = "A Minisat-based CDCL SAT solver in Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "mios162"; - broken = true; }) {}; "mirror-tweet" = callPackage @@ -199429,9 +188735,7 @@ self: { ]; description = "Tweet mirror"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "mirror-tweet"; - broken = true; }) {}; "misfortune" = callPackage @@ -199493,7 +188797,6 @@ self: { testHaskellDepends = [ base hedgehog mismi-p text ]; description = "AWS Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mismi-p" = callPackage @@ -199507,8 +188810,6 @@ self: { libraryHaskellDepends = [ base text ]; description = "A commmon prelude for the mismi project"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mismi-s3" = callPackage @@ -199564,8 +188865,6 @@ self: { testHaskellDepends = [ base hedgehog mismi-p text ]; description = "AWS Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "miso" = callPackage @@ -199597,8 +188896,6 @@ self: { libraryHaskellDepends = [ aeson base ghcjs-base miso ]; description = "Miso state transition logger"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "miso-examples" = callPackage @@ -199611,8 +188908,6 @@ self: { isExecutable = true; description = "A tasty Haskell front-end framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "miso-from-html" = callPackage @@ -199661,7 +188956,6 @@ self: { ]; description = "A Haskell git implimentation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "miss-porcelain" = callPackage @@ -199680,7 +188974,6 @@ self: { ]; description = "Useability extras built on top of miss"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "missing-foreign" = callPackage @@ -199706,7 +188999,6 @@ self: { ]; description = "Haskell interface to Python"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "mit-3qvpPyAi6mH" = callPackage @@ -199726,9 +189018,7 @@ self: { executableHaskellDepends = [ base ]; description = "A git wrapper with a streamlined UX"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mit"; - broken = true; }) {}; "miv" = callPackage @@ -199767,8 +189057,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Mixing effects of one arrow into another one"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mixed-strategies" = callPackage @@ -199785,7 +189073,6 @@ self: { ]; description = "Find optimal mixed strategies for two-player games"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "oms"; }) {}; @@ -199829,8 +189116,6 @@ self: { testToolDepends = [ hspec-discover markdown-unlit ]; description = "Mixpanel client"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mkbndl" = callPackage @@ -199845,7 +189130,6 @@ self: { executableHaskellDepends = [ base directory filepath haskell98 ]; description = "Makes an OS X .app bundle from a binary."; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "mkbndl"; }) {}; @@ -199865,9 +189149,7 @@ self: { ]; description = "Generate cabal files for a Haskell project"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "mkcabal"; - broken = true; }) {}; "ml-w" = callPackage @@ -199882,9 +189164,7 @@ self: { executableHaskellDepends = [ base mtl parsec pretty ]; description = "Minimal ML language to to demonstrate the W type infererence algorithm"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "ML"; - broken = true; }) {}; "mlist" = callPackage @@ -199896,7 +189176,6 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "Monadic List alternative to lazy I/O"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mltool" = callPackage @@ -199920,8 +189199,6 @@ self: { ]; description = "Machine Learning Toolbox"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mm2" = callPackage @@ -199933,8 +189210,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "The library that can be used for optimization of multiple (Ord a) => a -> b transformations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mmap" = callPackage @@ -200063,8 +189338,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "The library that can be used for multiple (Ord a) => a -> b transformations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mmsyn2-array" = callPackage @@ -200123,9 +189396,7 @@ self: { executableHaskellDepends = [ base directory mmsyn3 process ]; description = "The \"glue\" between electronic tables and GraphViz"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mmsyn4"; - broken = true; }) {}; "mmsyn5" = callPackage @@ -200160,7 +189431,6 @@ self: { ]; description = "A musical instrument synthesizer or a tool for Ukrainian language listening"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mmsyn6ukr"; }) {}; @@ -200185,7 +189455,6 @@ self: { ]; description = "A musical instrument synthesizer or a tool for Ukrainian language listening"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mmsyn6ukra"; }) {}; @@ -200209,7 +189478,6 @@ self: { ]; description = "Produces a sound recording specified by the Ukrainian text"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mmsyn7h"; }) {}; @@ -200231,9 +189499,7 @@ self: { ]; description = "Modifies the amplitudes of the sounds representations created by mmsyn7ukr-array and mmsyn7ukr packages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mmsyn7l"; - broken = true; }) {}; "mmsyn7s" = callPackage @@ -200248,7 +189514,6 @@ self: { executableHaskellDepends = [ base mmsyn2 mmsyn5 mmsyn6ukr vector ]; description = "Shows a sorted list of the Ukrainian sounds representations that can be used by mmsyn7 series of programs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mmsyn7s"; }) {}; @@ -200271,7 +189536,6 @@ self: { ]; description = "A simple basic interface to some SoX functionality or to produce a voice that can be used by mmsyn7h"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mmsyn7ukr"; }) {}; @@ -200289,8 +189553,6 @@ self: { ]; description = "A simple reduced basic interface to some SoX functionality or to produce a voice that can be used by mmsyn7h-array, dobutokO2-array and other similar packages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mmsyn7ukr-common" = callPackage @@ -200302,8 +189564,6 @@ self: { libraryHaskellDepends = [ base directory mmsyn3 process ]; description = "Some common for mmsyn7ukr and mmsyn7ukr-array functionality using SoX"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mmtf" = callPackage @@ -200324,8 +189584,6 @@ self: { ]; description = "Macromolecular Transmission Format implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mmtl" = callPackage @@ -200337,8 +189595,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Modular Monad transformer library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mmtl-base" = callPackage @@ -200352,7 +189608,6 @@ self: { libraryHaskellDepends = [ base mmtl ]; description = "MonadBase type-class for mmtl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mmzk-typeid" = callPackage @@ -200373,8 +189628,6 @@ self: { ]; description = "A TypeID implementation for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mnist-idx" = callPackage @@ -200426,7 +189679,6 @@ self: { ]; description = "Language-agnostic analyzer for positional morphosyntactic tags"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mock-httpd" = callPackage @@ -200445,9 +189697,7 @@ self: { ]; description = "A HTTP server for testing HTTP clients"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "mock-httpd"; - broken = true; }) {}; "mock-time" = callPackage @@ -200488,8 +189738,6 @@ self: { ]; description = "Mock records of functions easily"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mockery" = callPackage @@ -200566,8 +189814,6 @@ self: { ]; description = "Communicate with Modbus devices over TCP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "model" = callPackage @@ -200587,8 +189833,6 @@ self: { ]; description = "Derive a model of a data type using Generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "modelicaparser" = callPackage @@ -200605,8 +189849,6 @@ self: { ]; description = "A parser for the modelica language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "modern-uri" = callPackage @@ -200658,7 +189900,6 @@ self: { ]; description = "Modify fasta (and CLIP) files in several optional ways"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "modify-fasta"; }) {}; @@ -200680,7 +189921,6 @@ self: { ]; description = "Haskell source splitter driven by special comments"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "modsplit"; }) {}; @@ -200722,8 +189962,6 @@ self: { ]; description = "A new Prelude featuring first class modules"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "modular-prelude-classy" = callPackage @@ -200735,7 +189973,6 @@ self: { libraryHaskellDepends = [ base classy-prelude modular-prelude ]; description = "Reifying ClassyPrelude a la ModularPrelude"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "modularity" = callPackage @@ -200751,7 +189988,6 @@ self: { ]; description = "Find the modularity of a network"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "module-management" = callPackage @@ -200782,9 +190018,7 @@ self: { ]; description = "Clean up module imports, split and merge modules"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hmm"; - broken = true; }) {}; "modulespection" = callPackage @@ -200801,8 +190035,6 @@ self: { ]; description = "Template Haskell for introspecting a module's declarations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "modulo" = callPackage @@ -200822,7 +190054,6 @@ self: { ]; description = "Modular C code generator"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "modulo"; }) {}; @@ -200839,8 +190070,6 @@ self: { ]; description = "html with style"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "moesocks" = callPackage @@ -200863,9 +190092,7 @@ self: { ]; description = "A functional firewall killer"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "moesocks"; - broken = true; }) {}; "mohws" = callPackage @@ -200890,9 +190117,7 @@ self: { executableHaskellDepends = [ base bytestring ]; description = "Modular Haskell Web Server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hws"; - broken = true; }) {}; "mole" = callPackage @@ -200923,7 +190148,6 @@ self: { ]; description = "A glorified string replacement tool"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mole"; }) {}; @@ -200950,8 +190174,6 @@ self: { ]; description = "Mollie API client for Haskell http://www.mollie.com"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-abort-fd" = callPackage @@ -200979,8 +190201,6 @@ self: { libraryHaskellDepends = [ base containers ghc-prim mtl ]; description = "Monadically convert object to unique integers and back"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-atom-simple" = callPackage @@ -200992,8 +190212,6 @@ self: { libraryHaskellDepends = [ base containers ghc-prim mtl ]; description = "Monadically map objects to unique ints"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-batcher" = callPackage @@ -201079,8 +190297,6 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "Monadic abstraction for computations that can be branched and run independently"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-choice" = callPackage @@ -201096,8 +190312,6 @@ self: { ]; description = "Monad, monad transformer, and typeclass representing choices"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-chronicle" = callPackage @@ -201213,8 +190427,6 @@ self: { ]; description = "Just like monad-control, except less efficient, and the monadic state terms are all * -> *"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-control-identity" = callPackage @@ -201277,7 +190489,6 @@ self: { ]; description = "Exstensible monadic exceptions"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "monad-extras" = callPackage @@ -201320,8 +190531,6 @@ self: { libraryHaskellDepends = [ base monad-control ]; description = "Type class for monads which support a fork operation"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-gen" = callPackage @@ -201370,7 +190579,6 @@ self: { ]; description = "A class of monads which can do http requests"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "monad-interleave" = callPackage @@ -201396,8 +190604,6 @@ self: { ]; description = "A reader monad that gives the environment access to the entire transformer stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-io-adapter" = callPackage @@ -201445,8 +190651,6 @@ self: { ]; description = "Specific levels of monad transformers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-lgbt" = callPackage @@ -201465,8 +190669,6 @@ self: { ]; description = "Monad transformers for combining local and global state"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-log" = callPackage @@ -201486,8 +190688,6 @@ self: { ]; description = "A simple and fast logging monad"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-logger" = callPackage @@ -201603,8 +190803,6 @@ self: { benchmarkHaskellDepends = [ base criterion monad-logger ]; description = "Add prefixes to your monad-logger output"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-logger-syslog" = callPackage @@ -201622,8 +190820,6 @@ self: { ]; description = "syslog output for monad-logger"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-loops" = callPackage @@ -201666,8 +190862,6 @@ self: { ]; description = "a monad to calculate linear recursive sequence"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-markov" = callPackage @@ -201719,8 +190913,6 @@ self: { libraryHaskellDepends = [ base mersenne-random-pure64 ]; description = "An efficient random generator monad, based on the Mersenne Twister"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-metrics" = callPackage @@ -201740,8 +190932,6 @@ self: { testHaskellDepends = [ base ]; description = "A convenient wrapper around EKG metrics"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-metrics-extensible" = callPackage @@ -201762,7 +190952,6 @@ self: { ]; description = "An extensible and type-safe wrapper around EKG metrics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "monad-mock" = callPackage @@ -201781,8 +190970,6 @@ self: { testHaskellDepends = [ base hspec mtl ]; description = "A monad transformer for mocking mtl-style typeclasses"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-open" = callPackage @@ -201794,8 +190981,6 @@ self: { libraryHaskellDepends = [ base exceptions mtl transformers ]; description = "Open recursion for when you need it"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-ox" = callPackage @@ -201877,8 +191062,6 @@ self: { ]; description = "Parallel execution of monadic computations with a progress bar"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-param" = callPackage @@ -201890,8 +191073,6 @@ self: { libraryHaskellDepends = [ base mtl stm ]; description = "Parameterized monads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-peel" = callPackage @@ -201952,8 +191133,6 @@ self: { ]; description = "An mtl-style typeclass and transformer for persistent"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-primitive" = callPackage @@ -201987,8 +191166,6 @@ self: { libraryHaskellDepends = [ base ghc-prim mtl ]; description = "Fast monads and monad transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-recorder" = callPackage @@ -202005,8 +191182,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Record and replay the results of monadic actions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-resumption" = callPackage @@ -202048,8 +191223,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Monads of program skeleta"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-st" = callPackage @@ -202078,7 +191251,6 @@ self: { ]; description = "Utility library for monads, particularly those involving state"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "monad-statevar" = callPackage @@ -202091,8 +191263,6 @@ self: { testHaskellDepends = [ base stm ]; description = "Concise, overloaded accessors for IORef, STRef, TVar"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-ste" = callPackage @@ -202109,8 +191279,6 @@ self: { testHaskellDepends = [ base hspec HUnit ]; description = "ST monad with efficient explicit errors"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-stlike-io" = callPackage @@ -202125,8 +191293,6 @@ self: { ]; description = "ST-like monad capturing variables to regions and supporting IO"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-stlike-stm" = callPackage @@ -202138,7 +191304,6 @@ self: { libraryHaskellDepends = [ base monad-stlike-io stm ]; description = "ST-like monad capturing variables to regions and supporting STM"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "monad-stm" = callPackage @@ -202172,8 +191337,6 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "A monad transformer that turns event processing into co-routine programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-throw-exit" = callPackage @@ -202189,8 +191352,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck typed-process ]; description = "Functions to exit the program anywhere in MonadThrow monads"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-time" = callPackage @@ -202214,8 +191375,6 @@ self: { libraryHaskellDepends = [ base effectful-core monad-time time ]; description = "Adaptation of the monad-time library for the effectful ecosystem"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-timing" = callPackage @@ -202233,8 +191392,6 @@ self: { testHaskellDepends = [ base containers hlint hspec transformers ]; description = "Monad transformer for recording timing events"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-tree" = callPackage @@ -202246,8 +191403,6 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "Tree data structure for nondeterministic computations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-tx" = callPackage @@ -202259,8 +191414,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A transactional state monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-unify" = callPackage @@ -202274,8 +191427,6 @@ self: { libraryHaskellDepends = [ base mtl unordered-containers ]; description = "Generic first-order unification"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monad-unlift" = callPackage @@ -202351,8 +191502,6 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Wrap functions such as catch around different monads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monadIO" = callPackage @@ -202386,8 +191535,6 @@ self: { libraryHaskellDepends = [ base monadLib ]; description = "Arrow-like monad composition for monadLib"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monadacme" = callPackage @@ -202399,8 +191546,6 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "The Acme and AcmeT monads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monadbi" = callPackage @@ -202428,8 +191573,6 @@ self: { ]; description = "A monad for using CryptoRandomGen"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monadfibre" = callPackage @@ -202474,8 +191617,6 @@ self: { ]; description = "GHC plugin to desugar ! into do-notation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monadic-recursion-schemes" = callPackage @@ -202492,8 +191633,6 @@ self: { testHaskellDepends = [ base ]; description = "Recursion Schemes for Monadic version"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monadiccp" = callPackage @@ -202511,8 +191650,6 @@ self: { testHaskellDepends = [ base ]; description = "Constraint Programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monadiccp-gecode" = callPackage @@ -202531,7 +191668,6 @@ self: { testHaskellDepends = [ base ]; description = "Constraint Programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {gecodeint = null; gecodekernel = null; gecodesearch = null; gecodeset = null; gecodesupport = null;}; @@ -202583,9 +191719,7 @@ self: { ]; description = "A preprocessor for generating monadic call traces"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "MonadLoc"; - broken = true; }) {}; "monadlog" = callPackage @@ -202605,8 +191739,6 @@ self: { ]; description = "A simple and fast logging monad"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monadoid" = callPackage @@ -202665,8 +191797,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell98 partial maps and filters over MonadPlus"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monads-fd" = callPackage @@ -202730,7 +191860,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Monadic interface for TokyoTyrant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mondo" = callPackage @@ -202754,8 +191883,6 @@ self: { ]; description = "Haskell bindings for the Mondo API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monetdb-mapi" = callPackage @@ -202767,7 +191894,6 @@ self: { libraryHaskellDepends = [ base bindings-monetdb-mapi ]; description = "Mid-level bindings for the MonetDB API (mapi)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "money" = callPackage @@ -202780,8 +191906,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Money"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mongoDB" = callPackage @@ -202836,8 +191960,6 @@ self: { ]; description = "message queue using MongoDB"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mongrel2-handler" = callPackage @@ -202855,7 +191977,6 @@ self: { ]; description = "Mongrel2 Handler Library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "monitor" = callPackage @@ -202869,9 +191990,7 @@ self: { executableHaskellDepends = [ base filepath hinotify process ]; description = "Do things when files change"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "monitor"; - broken = true; }) {}; "monky" = callPackage @@ -202896,7 +192015,6 @@ self: { ]; description = "A system state collecting library and application"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "monky"; }) {}; @@ -202909,8 +192027,6 @@ self: { libraryHaskellDepends = [ base bytestring text vector ]; description = "Folds for monomorphic containers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mono-traversable" = callPackage @@ -202990,8 +192106,6 @@ self: { testHaskellDepends = [ base ]; description = "Low level bindings to the monocypher C library"; license = "(CC0-1.0 OR BSD-2-Clause)"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monoid" = callPackage @@ -203003,8 +192117,6 @@ self: { libraryHaskellDepends = [ base containers lens mtl ]; description = "Monoid type classes, designed in modular way, distinguish Monoid from Mempty and Semigroup. This design allows mempty operation don't bring Semigroups related constraints until (<>) is used."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monoid-absorbing" = callPackage @@ -203016,8 +192128,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A library for (left, right) zero monoids and backtracking with cut"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monoid-extras" = callPackage @@ -203063,8 +192173,6 @@ self: { libraryHaskellDepends = [ base bytestring containers ]; description = "a practical monoid implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monoid-record" = callPackage @@ -203100,8 +192208,6 @@ self: { ]; description = "Monoids for calculation of statistics of sample"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monoid-subclasses" = callPackage @@ -203173,9 +192279,7 @@ self: { ]; description = "Monoidal Functors Library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "co-log"; - broken = true; }) {}; "monoidmap" = callPackage @@ -203205,7 +192309,6 @@ self: { doHaddock = false; description = "Monoidal map type"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "monoidplus" = callPackage @@ -203219,8 +192322,6 @@ self: { ]; description = "Extra classes/functions about monoids"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monoids" = callPackage @@ -203236,8 +192337,6 @@ self: { ]; description = "Deprecated: Use 'reducers'"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monomer" = callPackage @@ -203300,9 +192399,7 @@ self: { ]; description = "Monomer Flatpak Example Application"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "monomer-flatpak-example"; - broken = true; }) {}; "monomer-hagrid" = callPackage @@ -203354,8 +192451,6 @@ self: { ]; description = "Well-typed paths"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "montage" = callPackage @@ -203421,7 +192516,6 @@ self: { ]; description = "A monad and transformer for Monte Carlo calculations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "months" = callPackage @@ -203456,8 +192550,6 @@ self: { ]; description = "a 'Monus' is a commutative monoid that allows a notion of substraction"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "monus-weighted-search" = callPackage @@ -203500,8 +192592,6 @@ self: { ]; description = "Haskell bindings for the Monzo API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "moo" = callPackage @@ -203523,7 +192613,6 @@ self: { ]; description = "Genetic algorithm library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "moo-nad" = callPackage @@ -203538,8 +192627,6 @@ self: { doHaddock = false; description = "Invocation helpers for the ReaderT-record-of-functions style"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "moonshine" = callPackage @@ -203556,7 +192643,6 @@ self: { ]; description = "A web service framework for Haskell, similar in purpose to dropwizard"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "more-containers" = callPackage @@ -203600,9 +192686,7 @@ self: { ]; description = "A tool for supervised learning of morphology"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "morfette"; - broken = true; }) {}; "morfeusz" = callPackage @@ -203620,8 +192704,6 @@ self: { librarySystemDepends = [ morfeusz ]; description = "Bindings to the morphological analyser Morfeusz"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {morfeusz = null;}; "morley" = callPackage @@ -203663,7 +192745,6 @@ self: { ]; description = "Developer tools for the Michelson Language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "morley"; }) {}; @@ -203706,7 +192787,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Client to interact with the Tezos blockchain"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "morley-client"; }) {}; @@ -203726,7 +192806,6 @@ self: { ]; description = "A custom prelude used in Morley"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "morley-upgradeable" = callPackage @@ -203760,7 +192839,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Upgradeability infrastructure based on Morley"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "morley-ustore-reader"; }) {}; @@ -203800,7 +192878,6 @@ self: { ]; description = "A multi-lingual, typed, workflow language"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "morloc"; }) {}; @@ -203899,9 +192976,7 @@ self: { ]; description = "Morpheus GraphQL CLI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "morpheus"; - broken = true; }) {}; "morpheus-graphql-client" = callPackage @@ -204089,8 +193164,6 @@ self: { libraryHaskellDepends = [ morphisms ]; description = "Functors, theirs compositions and transformations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "morphisms-functors-inventory" = callPackage @@ -204102,7 +193175,6 @@ self: { libraryHaskellDepends = [ morphisms morphisms-functors ]; description = "Inventory is state and store"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "morphisms-objects" = callPackage @@ -204114,8 +193186,6 @@ self: { libraryHaskellDepends = [ morphisms ]; description = "Algebraic structures"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "morte" = callPackage @@ -204151,10 +193221,8 @@ self: { benchmarkHaskellDepends = [ base criterion system-filepath text ]; description = "A bare-bones calculus of constructions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "morte"; maintainers = [ lib.maintainers.Gabriella439 ]; - broken = true; }) {}; "mortred" = callPackage @@ -204186,9 +193254,7 @@ self: { ]; description = "Library for setting up and running scrapers with webdriver"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "mortred"; - broken = true; }) {}; "mosaico-lib" = callPackage @@ -204207,8 +193273,6 @@ self: { ]; description = "Generación interactiva de mosaicos"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mosquitto-hs" = callPackage @@ -204318,7 +193382,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Generate state diagrams from Motor FSM typeclasses"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "motor-reflection" = callPackage @@ -204336,8 +193399,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Reflect on Motor FSM typeclasses to obtain runtime representations"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mount" = callPackage @@ -204349,8 +193410,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Mounts and umounts filesystems"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mountpoints" = callPackage @@ -204385,9 +193444,7 @@ self: { ]; description = "Plays videos using GStreamer and GTK+"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "movie-monad"; - broken = true; }) {}; "moving-averages" = callPackage @@ -204424,7 +193481,6 @@ self: { ]; description = "Music player for linux"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "mp"; }) {}; @@ -204441,7 +193497,6 @@ self: { ]; description = "MP3 decoder for teaching"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "mp3driver"; }) {}; @@ -204458,7 +193513,6 @@ self: { ]; description = "MPD/PowerMate executable"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mpdmate"; }) {}; @@ -204605,8 +193659,6 @@ self: { ]; description = "Multi-dimensional parametric pretty-printer with color"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mprelude" = callPackage @@ -204625,7 +193677,6 @@ self: { ]; description = "A minimalish prelude"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mpretty" = callPackage @@ -204642,7 +193693,6 @@ self: { ]; description = "a monadic, extensible pretty printing library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mpris" = callPackage @@ -204654,8 +193704,6 @@ self: { libraryHaskellDepends = [ base containers dbus mtl ]; description = "Interface for MPRIS"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mprover" = callPackage @@ -204673,7 +193721,6 @@ self: { ]; description = "Simple equational reasoning for a Haskell-ish language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mp"; }) {}; @@ -204694,7 +193741,6 @@ self: { ]; description = "simply oo"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mptcp" = callPackage @@ -204713,7 +193759,6 @@ self: { testHaskellDepends = [ base hspec ip text ]; description = "Datastructures to describe TCP and MPTCP connections"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "mptcp-pm" = callPackage @@ -204748,7 +193793,6 @@ self: { description = "A Multipath TCP path manager"; license = lib.licenses.gpl3Only; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; mainProgram = "mptcp-pm"; }) {}; @@ -204795,7 +193839,6 @@ self: { ]; description = "A Multipath TCP analyzer"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "mptcpanalyzer"; }) {}; @@ -204815,9 +193858,7 @@ self: { ]; description = "A minimalist mpv GUI written in I/O heavy Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "mpvguihs"; - broken = true; }) {}; "mqtt" = callPackage @@ -204846,8 +193887,6 @@ self: { ]; description = "An MQTT protocol implementation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mqtt-hs" = callPackage @@ -204864,8 +193903,6 @@ self: { ]; description = "A MQTT client library"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mr-env" = callPackage @@ -204891,9 +193928,7 @@ self: { executableHaskellDepends = [ array base containers mtl ]; description = "Decompiles Glulx files"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "mrifk"; - broken = true; }) {}; "mrm" = callPackage @@ -204905,8 +193940,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Modular Refiable Matching, first-class matches"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ms" = callPackage @@ -204927,8 +193960,6 @@ self: { ]; description = "metric spaces"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ms-auth" = callPackage @@ -204947,8 +193978,6 @@ self: { ]; description = "Microsoft Authentication API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ms-azure-api" = callPackage @@ -204968,8 +193997,6 @@ self: { ]; description = "Microsoft Azure API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ms-graph-api" = callPackage @@ -204988,8 +194015,6 @@ self: { ]; description = "Microsoft Graph API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ms-tds" = callPackage @@ -205035,8 +194060,6 @@ self: { ]; description = "A Haskell implementation of MessagePack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "msgpack-aeson" = callPackage @@ -205055,7 +194078,6 @@ self: { testHaskellDepends = [ aeson base msgpack tasty tasty-hunit ]; description = "Aeson adapter for MessagePack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "msgpack-arbitrary" = callPackage @@ -205074,7 +194096,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A Haskell implementation of MessagePack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "msgpack-binary" = callPackage @@ -205103,7 +194124,6 @@ self: { ]; description = "A Haskell implementation of MessagePack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "msgpack-idl" = callPackage @@ -205125,7 +194145,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "An IDL Compiler for MessagePack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mpidl"; }) {}; @@ -205153,7 +194172,6 @@ self: { ]; description = "A Haskell implementation of MessagePack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "msgpack-parser"; }) {}; @@ -205175,7 +194193,6 @@ self: { testHaskellDepends = [ async base mtl network tasty tasty-hunit ]; description = "A MessagePack-RPC Implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "msgpack-rpc-conduit" = callPackage @@ -205196,7 +194213,6 @@ self: { testHaskellDepends = [ async base bytestring hspec mtl network ]; description = "A MessagePack-RPC Implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "msgpack-testsuite" = callPackage @@ -205216,7 +194232,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "A Haskell implementation of MessagePack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "msgpack-types" = callPackage @@ -205241,8 +194256,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A Haskell implementation of MessagePack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "msh" = callPackage @@ -205259,8 +194272,6 @@ self: { ]; description = "Object-Oriented Programming in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "msi-kb-backlit" = callPackage @@ -205274,7 +194285,6 @@ self: { executableHaskellDepends = [ base bytestring hid split ]; description = "A command line tool to change backlit colors of your MSI keyboards"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "msi-kb-backlit"; }) {}; @@ -205296,8 +194306,6 @@ self: { ]; description = "SQL Server client library implemented in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mstate" = callPackage @@ -205356,8 +194364,6 @@ self: { ]; description = "Library to communicate with Mt.Gox"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mtl_2_3_1" = callPackage @@ -205383,8 +194389,6 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "Very strict CPS'd transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mtl-compat" = callPackage @@ -205412,8 +194416,6 @@ self: { ]; description = "Instances for the mtl classes for all monad transformers"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mtl-extras" = callPackage @@ -205425,8 +194427,6 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "Higher order versions of MTL classes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mtl-prelude" = callPackage @@ -205449,8 +194449,6 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Monad Transformer Library with Type Families"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mtl-unleashed" = callPackage @@ -205504,8 +194502,6 @@ self: { libraryHaskellDepends = [ base mtl QuickCheck ]; description = "Monad transformer library with type indexes, providing 'free' copies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mtp" = callPackage @@ -205518,8 +194514,6 @@ self: { librarySystemDepends = [ mtp ]; description = "Bindings to libmtp"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {mtp = null;}; "mtree" = callPackage @@ -205542,8 +194536,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Reified monad transformer stacks"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mu-avro" = callPackage @@ -205569,7 +194561,6 @@ self: { ]; description = "Avro serialization support for Mu microservices"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "test-avro"; }) {}; @@ -205600,7 +194591,6 @@ self: { ]; description = "GraphQL support for Mu"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "library-graphql"; }) {}; @@ -205623,7 +194613,6 @@ self: { ]; description = "gRPC clients from Mu definitions"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "mu-grpc-common" = callPackage @@ -205643,7 +194632,6 @@ self: { ]; description = "gRPC for Mu, common modules for client and server"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "mu-grpc-server" = callPackage @@ -205670,7 +194658,6 @@ self: { ]; description = "gRPC servers for Mu definitions"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "grpc-example-server"; }) {}; @@ -205688,7 +194675,6 @@ self: { ]; description = "Utilities for interoperation between Mu and Kafka"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "mu-lens" = callPackage @@ -205704,7 +194690,6 @@ self: { ]; description = "Lenses for @mu-schema@ terms"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "mu-optics" = callPackage @@ -205719,7 +194704,6 @@ self: { ]; description = "Optics for @mu-schema@ terms"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "mu-persistent" = callPackage @@ -205738,7 +194722,6 @@ self: { ]; description = "Utilities for interoperation between Mu and Persistent"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "mu-prometheus" = callPackage @@ -205755,7 +194738,6 @@ self: { ]; description = "Metrics support for Mu using Prometheus"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "mu-protobuf" = callPackage @@ -205783,7 +194765,6 @@ self: { ]; description = "Protocol Buffers serialization and gRPC schema import for Mu microservices"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "test-protobuf"; }) {}; @@ -205801,7 +194782,6 @@ self: { ]; description = "Protocol-independent declaration of services and servers"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "mu-schema" = callPackage @@ -205820,8 +194800,6 @@ self: { ]; description = "Format-independent schemas for serialization"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mu-servant-server" = callPackage @@ -205845,7 +194823,6 @@ self: { ]; description = "Servant servers for Mu definitions"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "servant-example-server"; }) {}; @@ -205860,7 +194837,6 @@ self: { ]; description = "Tracing support for Mu"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "mucipher" = callPackage @@ -205896,9 +194872,7 @@ self: { ]; description = "Multi-version deployer for web applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mud"; - broken = true; }) {}; "mudbath" = callPackage @@ -205919,9 +194893,7 @@ self: { ]; description = "Continuous deployment server for use with GitHub"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "mudbath"; - broken = true; }) {}; "muesli" = callPackage @@ -205991,9 +194963,7 @@ self: { testToolDepends = [ alex happy ]; description = "An intermediate language designed to perform advanced code analysis"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "mulang"; - broken = true; }) {}; "multext-east-msd" = callPackage @@ -206005,8 +194975,6 @@ self: { libraryHaskellDepends = [ base ]; description = "MULTEXT-East morphosyntactic descriptors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "multi-cabal" = callPackage @@ -206028,7 +194996,6 @@ self: { ]; description = "A tool supporting multi cabal project builds"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "multi-cabal"; }) {}; @@ -206067,8 +195034,6 @@ self: { testHaskellDepends = [ base hedgehog ]; description = "Typeclasses augmented with a phantom type parameter"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "multi-trie" = callPackage @@ -206101,8 +195066,6 @@ self: { ]; description = "A network address format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "multiarg" = callPackage @@ -206121,8 +195084,6 @@ self: { ]; description = "Command lines for options that take multiple arguments"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "multibase" = callPackage @@ -206147,7 +195108,6 @@ self: { testHaskellDepends = [ base doctest QuickCheck template-haskell ]; description = "Self-identifying base encodings, implementation of "; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "multicurryable" = callPackage @@ -206204,7 +195164,6 @@ self: { ]; description = "Bidirectional Two-level Transformation of XML Schemas"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "multifocal"; }) {}; @@ -206229,9 +195188,7 @@ self: { ]; description = "Multihash library and CLI executable"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "multihash"; - broken = true; }) {}; "multihash-cryptonite" = callPackage @@ -206268,7 +195225,6 @@ self: { testHaskellDepends = [ base cryptonite hedgehog serialise ]; description = "CBOR encoding of multihashes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "multihashmap" = callPackage @@ -206301,8 +195257,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq weigh ]; description = "Comprehensive and efficient (multi)linear algebra implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "multilinear-io" = callPackage @@ -206326,7 +195280,6 @@ self: { ]; description = "Conduit-based input/output capability for multilinear package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "multimap" = callPackage @@ -206383,8 +195336,6 @@ self: { ]; description = "Folding data with multiple named passes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "multipath" = callPackage @@ -206396,8 +195347,6 @@ self: { libraryHaskellDepends = [ base parsec utf8-string ]; description = "Parser and builder for unix-path-like objects"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "multiplate" = callPackage @@ -206424,8 +195373,6 @@ self: { libraryHaskellDepends = [ base multiplate transformers ]; description = "Shorter, more generic functions for Multiplate"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "multiplicity" = callPackage @@ -206442,7 +195389,6 @@ self: { ]; description = "Wrapper program for duplicity, adding config files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "multiplicity"; }) {}; @@ -206464,8 +195410,6 @@ self: { ]; description = "Generalized system for reading and writing to distributed systems that have primary/replica topologies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "multipool-persistent" = callPackage @@ -206486,7 +195430,6 @@ self: { ]; description = "Read and write from appropriate persistent sql instances in replicated environments"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "multipool-persistent-postgresql" = callPackage @@ -206511,7 +195454,6 @@ self: { ]; description = "Read and write appropriately from both master and replicated postgresql instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "multipool-postgresql-simple" = callPackage @@ -206532,7 +195474,6 @@ self: { unliftio-core unordered-containers ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "multiprocess" = callPackage @@ -206556,8 +195497,6 @@ self: { testHaskellDepends = [ base ]; description = "Generic programming for families of recursive datatypes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "multirec-alt-deriver" = callPackage @@ -206573,7 +195512,6 @@ self: { ]; description = "Alternative multirec instances deriver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "multirec-binary" = callPackage @@ -206585,7 +195523,6 @@ self: { libraryHaskellDepends = [ base binary multirec ]; description = "Generic Data.Binary instances using MultiRec."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "multiset" = callPackage @@ -206625,7 +195562,6 @@ self: { libraryHaskellDepends = [ base haskell98 stm ]; description = "Multi-set rewrite rules with guards and a parallel execution scheme"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "multistate" = callPackage @@ -206674,7 +195610,6 @@ self: { ]; description = "Multivariant assignments generation language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -206735,9 +195670,7 @@ self: { ]; description = "Static blog generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "muon"; - broken = true; }) {}; "murder" = callPackage @@ -206754,7 +195687,6 @@ self: { ]; description = "MUtually Recursive Definitions Explicitly Represented"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "murmur" = callPackage @@ -206780,9 +195712,7 @@ self: { testHaskellDepends = [ base ]; description = "Simple CUI Twitter Client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mur"; - broken = true; }) {}; "murmur-hash" = callPackage @@ -206823,7 +195753,6 @@ self: { libraryHaskellDepends = [ haskell2010 ]; description = "32-bit non-cryptographic hashing"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "mushu" = callPackage @@ -206850,7 +195779,6 @@ self: { testHaskellDepends = [ base classy-prelude ]; description = "Minimalist MPD client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mushu"; }) {}; @@ -206916,7 +195844,6 @@ self: { ]; description = "Diagrams-based visualization of musical data structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "music-parts" = callPackage @@ -206939,7 +195866,6 @@ self: { ]; description = "Musical instruments, parts and playing techniques"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "music-pitch" = callPackage @@ -206957,7 +195883,6 @@ self: { ]; description = "Musical pitch representation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "music-pitch-literal" = callPackage @@ -206998,7 +195923,6 @@ self: { testHaskellDepends = [ base process tasty tasty-golden ]; description = "Some useful preludes for the Music Suite"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "music-score" = callPackage @@ -207022,7 +195946,6 @@ self: { ]; description = "Musical score and part representation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "music-sibelius" = callPackage @@ -207042,7 +195965,6 @@ self: { ]; description = "Interaction with Sibelius"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "music-suite" = callPackage @@ -207062,7 +195984,6 @@ self: { doHaddock = false; description = "A set of libraries for composition, analysis and manipulation of music"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "music-util" = callPackage @@ -207080,9 +196001,7 @@ self: { ]; description = "Utility for developing the Music Suite"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "music-util"; - broken = true; }) {}; "musicScroll" = callPackage @@ -207107,9 +196026,7 @@ self: { executablePkgconfigDepends = [ gtk3 ]; description = "Supply your tunes info without leaving your music player"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "music-scroll"; - broken = true; }) {inherit (pkgs) gtk3;}; "musicbrainz-email" = callPackage @@ -207143,7 +196060,6 @@ self: { ]; description = "Send an email to all MusicBrainz editors"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "musicw" = callPackage @@ -207178,8 +196094,6 @@ self: { ]; description = "MusicXML format encoded as Haskell type and functions of reading and writting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "musicxml2" = callPackage @@ -207197,7 +196111,6 @@ self: { ]; description = "A representation of the MusicXML format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mustache" = callPackage @@ -207251,9 +196164,7 @@ self: { ]; description = "Straight implementation of mustache templates"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mus"; - broken = true; }) {}; "mustache2hs" = callPackage @@ -207272,9 +196183,7 @@ self: { ]; description = "Utility to generate Haskell code from Mustache templates"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "mustache2hs"; - broken = true; }) {}; "mutable" = callPackage @@ -207296,8 +196205,6 @@ self: { ]; description = "Automatic piecewise-mutable references for your types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mutable-containers" = callPackage @@ -207332,7 +196239,6 @@ self: { ]; description = "iteratees based upon mutable buffers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mutable-lens" = callPackage @@ -207369,7 +196275,6 @@ self: { ]; description = "Watches your screensaver and (un)mutes music when you (un)lock the screen"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "mute-unmute"; }) {}; @@ -207400,9 +196305,7 @@ self: { ]; description = "Model-view-controller"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.Gabriella439 ]; - broken = true; }) {}; "mvc-updates" = callPackage @@ -207416,7 +196319,6 @@ self: { libraryHaskellDepends = [ async base foldl mvc ]; description = "Concurrent and combinable updates"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.Gabriella439 ]; }) {}; @@ -207436,7 +196338,6 @@ self: { ]; description = "Client library for metaverse systems like Second Life"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mwc-probability" = callPackage @@ -207508,7 +196409,6 @@ self: { libraryHaskellDepends = [ accelerate base mwc-random ]; description = "Generate Accelerate arrays filled with high quality pseudorandom numbers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mwc-random-monad" = callPackage @@ -207558,8 +196458,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit vector ]; description = "MXNet interface in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) mxnet;}; "mxnet-dataiter" = callPackage @@ -207577,7 +196475,6 @@ self: { testHaskellDepends = [ base hspec mxnet streaming ]; description = "mxnet dataiters"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mxnet-examples" = callPackage @@ -207591,7 +196488,6 @@ self: { executableHaskellDepends = [ base mxnet ]; description = "Examples for MXNet in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "mxnet-nn" = callPackage @@ -207617,7 +196513,6 @@ self: { ]; description = "Train a neural network with MXNet in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "lenet"; }) {}; @@ -207632,8 +196527,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "NNVM interface in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) mxnet;}; "my-package-testing" = callPackage @@ -207658,8 +196551,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "spam"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "my-test-docs" = callPackage @@ -207684,8 +196575,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "spam"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "myTestlll" = callPackage @@ -207710,7 +196599,6 @@ self: { ]; description = "None"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "myanimelist-export" = callPackage @@ -207734,9 +196622,7 @@ self: { ]; description = "Export from MyAnimeList"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "myanimelist-export"; - broken = true; }) {}; "mybitcoin-sci" = callPackage @@ -207750,7 +196636,6 @@ self: { ]; description = "Binding to mybitcoin.com's Shopping Cart Interface."; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "myers-diff" = callPackage @@ -207807,9 +196692,7 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Haskell binding to the Myo armband"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "myo-ws-example"; - broken = true; }) {}; "mysnapsession" = callPackage @@ -207826,8 +196709,6 @@ self: { ]; description = "Sessions and continuations for Snap web apps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mysnapsession-example" = callPackage @@ -207847,7 +196728,6 @@ self: { ]; description = "Example projects using mysnapsession"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mysql" = callPackage @@ -207881,8 +196761,6 @@ self: { ]; description = "An extensible mysql effect using extensible-effects and mysql-simple"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mysql-haskell" = callPackage @@ -207949,7 +196827,6 @@ self: { ]; description = "TLS support for mysql-haskell package using openssl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mysql-pure" = callPackage @@ -208020,8 +196897,6 @@ self: { ]; description = "Quasi-quoter for use with mysql-simple"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mysql-simple-typed" = callPackage @@ -208037,7 +196912,6 @@ self: { ]; description = "Typed extension to mysql simple"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "mystem" = callPackage @@ -208056,9 +196930,7 @@ self: { executableHaskellDepends = [ base text ]; description = "Bindings for Mystem morphological analyzer executabe"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mystem-test-exe"; - broken = true; }) {}; "mywatch" = callPackage @@ -208083,7 +196955,6 @@ self: { ]; description = "Web application to view and kill MySQL queries"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mywatch"; }) {}; @@ -208108,9 +196979,7 @@ self: { ]; description = "Tool to keep track of what you have been working on and where"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; mainProgram = "mywork"; - broken = true; }) {}; "myxine-client" = callPackage @@ -208133,8 +197002,6 @@ self: { testHaskellDepends = [ bytestring text ]; description = "A Haskell client for the Myxine GUI server"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "mzv" = callPackage @@ -208146,8 +197013,6 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Implementation of the \"Monads, Zippers and Views\" (Schrijvers and Oliveira, ICFP'11)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "n-ary-functor" = callPackage @@ -208191,8 +197056,6 @@ self: { libraryHaskellDepends = [ base singletons vector ]; description = "Homogeneous tuples of arbitrary length"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "n2o" = callPackage @@ -208237,8 +197100,6 @@ self: { ]; description = "N2O Protocols Starter Pack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "n2o-web" = callPackage @@ -208257,7 +197118,6 @@ self: { ]; description = "N2O adapter for WebSockets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nagios-check" = callPackage @@ -208328,9 +197188,7 @@ self: { ]; description = "Monitor ekg metrics via Nagios"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "check_ekg"; - broken = true; }) {}; "nakadi-client" = callPackage @@ -208369,7 +197227,6 @@ self: { ]; description = "Client library for the Nakadi Event Broker"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "namecoin-update" = callPackage @@ -208417,8 +197274,6 @@ self: { testHaskellDepends = [ base cereal tasty tasty-quickcheck text ]; description = "NBT (named binary tag) serialization and deserialization"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "named-formlet" = callPackage @@ -208445,8 +197300,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A named lock that is created on demand"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "named-records" = callPackage @@ -208469,8 +197322,6 @@ self: { libraryHaskellDepends = [ base named servant ]; description = "support records and named (from the named package) parameters in servant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "named-servant-client" = callPackage @@ -208486,7 +197337,6 @@ self: { ]; description = "client support for named-servant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "named-servant-server" = callPackage @@ -208502,7 +197352,6 @@ self: { ]; description = "server support for named-servant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "named-sop" = callPackage @@ -208515,8 +197364,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Dependently-typed sums and products, tagged by field name"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "named-text" = callPackage @@ -208538,7 +197385,6 @@ self: { ]; description = "A parameterized named text type and associated functionality"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; }) {}; "namelist" = callPackage @@ -208557,8 +197403,6 @@ self: { ]; description = "fortran90 namelist parser/pretty printer"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "names" = callPackage @@ -208611,8 +197455,6 @@ self: { ]; description = "A threadsafe binding to glibc's crypt_r function"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libxcrypt;}; "nano-erl" = callPackage @@ -208636,8 +197478,6 @@ self: { librarySystemDepends = [ openssl ]; description = "Bindings to OpenSSL HMAC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) openssl;}; "nano-md5" = callPackage @@ -208652,8 +197492,6 @@ self: { librarySystemDepends = [ openssl ]; description = "Efficient, ByteString bindings to OpenSSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) openssl;}; "nanoAgda" = callPackage @@ -208671,9 +197509,7 @@ self: { ]; description = "A toy dependently-typed language"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "nanoAgda"; - broken = true; }) {}; "nanocurses" = callPackage @@ -208686,8 +197522,6 @@ self: { librarySystemDepends = [ ncurses ]; description = "Simple Curses binding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) ncurses;}; "nanomsg" = callPackage @@ -208700,8 +197534,6 @@ self: { librarySystemDepends = [ nanomsg ]; description = "nanomsg - scalability protocols library"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) nanomsg;}; "nanomsg-haskell" = callPackage @@ -208726,8 +197558,6 @@ self: { ]; description = "Bindings to the nanomsg library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) nanomsg;}; "nanoparsec" = callPackage @@ -208739,8 +197569,6 @@ self: { libraryHaskellDepends = [ base bytestring ListLike ]; description = "An implementation of attoparsec-like parser around list-like"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nanopass" = callPackage @@ -208761,9 +197589,7 @@ self: { ]; description = "An EDSL for creating compilers using small passes and many intermediate representations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "dumb-nanopass-example"; - broken = true; }) {}; "nanospec" = callPackage @@ -208817,8 +197643,6 @@ self: { ]; description = "Simple interface to rendering with NanoVG"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nanq" = callPackage @@ -208838,9 +197662,7 @@ self: { ]; description = "Performs 漢字検定 (Japan Kanji Aptitude Test) level analysis on given Kanji"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "nanq"; - broken = true; }) {}; "naperian" = callPackage @@ -208858,8 +197680,6 @@ self: { ]; description = "Efficient representable functors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "naqsha" = callPackage @@ -208878,8 +197698,6 @@ self: { doHaddock = false; description = "A library for working with anything map related"; license = "(Apache-2.0 OR BSD-3-Clause)"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "narc" = callPackage @@ -208891,8 +197709,6 @@ self: { libraryHaskellDepends = [ base HDBC HUnit mtl QuickCheck random ]; description = "Query SQL databases using Nested Relational Calculus embedded in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nat" = callPackage @@ -208930,8 +197746,6 @@ self: { testHaskellDepends = [ base doctest hedgehog QuickCheck ]; description = "Variable-sized numbers from type-level nats"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nationstates" = callPackage @@ -208948,8 +197762,6 @@ self: { ]; description = "NationStates API client"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "native" = callPackage @@ -209010,9 +197822,7 @@ self: { benchmarkHaskellDepends = [ base criterion time ]; description = "Another Haskell client for NATS (https://nats.io)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "nats-client"; - broken = true; }) {}; "nats-queue" = callPackage @@ -209033,7 +197843,6 @@ self: { ]; description = "Haskell API for NATS messaging system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "natural" = callPackage @@ -209052,8 +197861,6 @@ self: { ]; description = "Natural number"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "natural-arithmetic" = callPackage @@ -209094,7 +197901,6 @@ self: { ]; description = "Natural numbers tagged with a type-level representation of the number"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "natural-numbers" = callPackage @@ -209172,8 +197978,6 @@ self: { ]; description = "Interface to Naver Translate"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nbt" = callPackage @@ -209193,8 +197997,6 @@ self: { ]; description = "A parser/serializer for Minecraft's Named Binary Tag (NBT) data format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nc-indicators" = callPackage @@ -209231,8 +198033,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Modernised bindings to GNU ncurses"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) ncurses;}; "ndjson-conduit" = callPackage @@ -209260,9 +198060,7 @@ self: { executableHaskellDepends = [ base filepath parsec ]; description = "A Fast Retargetable Template Engine"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "neat"; - broken = true; }) {}; "neat-interpolation" = callPackage @@ -209297,8 +198095,6 @@ self: { ]; description = "ASCII-fied arrow notation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "neet" = callPackage @@ -209315,8 +198111,6 @@ self: { ]; description = "A NEAT library for Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nehe-tuts" = callPackage @@ -209336,8 +198130,6 @@ self: { ]; description = "Port of the NeHe OpenGL tutorials to Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "neil" = callPackage @@ -209356,9 +198148,7 @@ self: { ]; description = "General tools for Neil"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "neil"; - broken = true; }) {}; "neither" = callPackage @@ -209370,8 +198160,6 @@ self: { libraryHaskellDepends = [ base failure transformers ]; description = "Provide versions of Either with good monad and applicative instances. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "neither-data" = callPackage @@ -209383,8 +198171,6 @@ self: { libraryHaskellDepends = [ base ]; description = "The Neither datatype"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "neko-lib" = callPackage @@ -209405,8 +198191,6 @@ self: { ]; description = "Neko VM code generation and disassembly library"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "neko-obfs" = callPackage @@ -209428,9 +198212,7 @@ self: { ]; description = "a TCP tunnel with packet length obfuscation"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "neko-obfs"; - broken = true; }) {}; "nekos-best" = callPackage @@ -209480,7 +198262,6 @@ self: { ]; description = "A collection of Nemesis tasks to bootstrap a Haskell project with a focus on continuous integration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "neolua" = callPackage @@ -209530,9 +198311,7 @@ self: { ]; description = "Neptune Client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example-app"; - broken = true; }) {}; "nerf" = callPackage @@ -209559,7 +198338,6 @@ self: { ]; description = "Nerf, a named entity recognition tool based on linear-chain CRFs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "nerf"; }) {}; @@ -209579,8 +198357,6 @@ self: { ]; description = "Lens-based HTTP toolkit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nero-wai" = callPackage @@ -209596,7 +198372,6 @@ self: { ]; description = "WAI adapter for Nero server applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nero-warp" = callPackage @@ -209608,7 +198383,6 @@ self: { libraryHaskellDepends = [ base nero nero-wai warp ]; description = "Run Nero server applications with Warp"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nest" = callPackage @@ -209624,8 +198398,6 @@ self: { ]; testHaskellDepends = [ base bytestring containers hedgehog text ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nested-routes" = callPackage @@ -209655,7 +198427,6 @@ self: { ]; description = "Declarative, compositional Wai responses"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nested-sequence" = callPackage @@ -209672,8 +198443,6 @@ self: { ]; description = "List-like data structures with O(log(n)) random access"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nested-sets" = callPackage @@ -209702,8 +198471,6 @@ self: { ]; description = "A library for nested maps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "net-concurrent" = callPackage @@ -209852,8 +198619,6 @@ self: { testToolDepends = [ doctest-discover hspec-discover ]; description = "A graph database middleware to maintain a time-varying graph"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "net-spider-cli" = callPackage @@ -209875,7 +198640,6 @@ self: { testToolDepends = [ doctest-discover hspec-discover ]; description = "CLI option parsers for NetSpider objects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "net-spider-pangraph" = callPackage @@ -209894,7 +198658,6 @@ self: { ]; description = "Conversion between net-spider and pangraph"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "net-spider-rpl" = callPackage @@ -209918,7 +198681,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "NetSpider data model and utility for RPL networks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "net-spider-rpl-cli" = callPackage @@ -209946,7 +198708,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "CLI executable of NetSpider.RPL."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "net-spider-rpl-cli"; }) {}; @@ -209961,8 +198722,6 @@ self: { libraryHaskellDepends = [ base bytestring hosc network ]; description = "Netclock protocol"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "netcode-io" = callPackage @@ -210008,7 +198767,6 @@ self: { ]; description = "The NetCore compiler and runtime system for OpenFlow networks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "netease-fm" = callPackage @@ -210037,9 +198795,7 @@ self: { ]; description = "NetEase Cloud Music FM client in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "netease-fm"; - broken = true; }) {}; "netlib-carray" = callPackage @@ -210108,7 +198864,6 @@ self: { executableHaskellDepends = [ base HTF random ]; description = "Enumerator tools for text-based network protocols"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "netlines-test"; }) {}; @@ -210207,8 +198962,6 @@ self: { ]; description = "Contract normaliser and simulator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "netspec" = callPackage @@ -210225,8 +198978,6 @@ self: { ]; description = "Simplify static Networking tasks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "netstring-enumerator" = callPackage @@ -210240,7 +198991,6 @@ self: { ]; description = "Enumerator-based netstring parsing"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "nettle" = callPackage @@ -210282,7 +199032,6 @@ self: { ]; description = "FRP for controlling networks of OpenFlow switches"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nettle-netkit" = callPackage @@ -210298,7 +199047,6 @@ self: { ]; description = "DSL for describing OpenFlow networks, and a compiler generating NetKit labs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nettle-openflow" = callPackage @@ -210315,7 +199063,6 @@ self: { ]; description = "OpenFlow protocol messages, binary formats, and servers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "netwire" = callPackage @@ -210375,8 +199122,6 @@ self: { ]; description = "JavaScript instance of netwire-input"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "netwire-vinylglfw-examples" = callPackage @@ -210399,8 +199144,6 @@ self: { ]; description = "Netwire/GLFW/VinylGL input handling demo"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network_2_6_3_1" = callPackage @@ -210457,8 +199200,6 @@ self: { ]; description = "IP data structures and textual representation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-anonymous-i2p" = callPackage @@ -210481,7 +199222,6 @@ self: { ]; description = "Haskell API for I2P anonymous networking"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "network-anonymous-tor" = callPackage @@ -210511,7 +199251,6 @@ self: { ]; description = "Haskell API for Tor anonymous networking"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "tor-relay"; }) {}; @@ -210530,8 +199269,6 @@ self: { ]; description = "Toolkit for building http client libraries over Network.Http.Conduit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-arbitrary" = callPackage @@ -210553,8 +199290,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Arbitrary Instances for Network Types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-attoparsec" = callPackage @@ -210578,8 +199313,6 @@ self: { doCheck = false; description = "Utility functions for running a parser against a socket"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-bitcoin" = callPackage @@ -210602,8 +199335,6 @@ self: { ]; description = "An interface to bitcoind"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-bsd" = callPackage @@ -210638,9 +199369,7 @@ self: { ]; description = "Linux NetworkNameSpace Builder"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "network-builder"; - broken = true; }) {}; "network-byte-order" = callPackage @@ -210668,8 +199397,6 @@ self: { libraryHaskellDepends = [ base bytestring network unix ]; description = "Fast, memory-efficient, low-level networking"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-carbon" = callPackage @@ -210683,8 +199410,6 @@ self: { ]; description = "A Haskell implementation of the Carbon protocol (part of the Graphite monitoring tools)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-conduit" = callPackage @@ -210754,7 +199479,6 @@ self: { ]; description = "A wrapper around a generic stream-like connection"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "network-data" = callPackage @@ -210782,8 +199506,6 @@ self: { ]; description = "D-Bus"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-dns" = callPackage @@ -210822,7 +199544,6 @@ self: { ]; description = "Enumerators for network sockets"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "network-fancy" = callPackage @@ -210845,7 +199566,6 @@ self: { libraryHaskellDepends = [ base bytestring hans parsec ]; description = "HaNS to Network shims for easier HaNS integration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "network-house" = callPackage @@ -210857,8 +199577,6 @@ self: { libraryHaskellDepends = [ array base containers mtl ]; description = "data and parsers for Ethernet, TCP, UDP, IPv4, IPv6, ICMP, DHCP, TFTP"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-info" = callPackage @@ -210881,7 +199599,6 @@ self: { libraryHaskellDepends = [ base bytestring ioctl network ]; description = "Haskell bindings for the ifreq structure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "network-ip" = callPackage @@ -210927,9 +199644,7 @@ self: { doHaddock = false; description = "network-manager tui"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "nmt"; - broken = true; }) {}; "network-messagepack-rpc" = callPackage @@ -210966,8 +199681,6 @@ self: { ]; description = "WebSocket backend for MessagePack RPC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-metrics" = callPackage @@ -210983,8 +199696,6 @@ self: { ]; description = "Send metrics to Ganglia, Graphite, and statsd"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-minihttp" = callPackage @@ -211004,7 +199715,6 @@ self: { ]; description = "A ByteString based library for writing HTTP(S) servers and clients"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "network-msg" = callPackage @@ -211016,8 +199726,6 @@ self: { libraryHaskellDepends = [ base binary bytestring network unix ]; description = "Recvmsg and sendmsg bindings"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-msgpack-rpc" = callPackage @@ -211040,8 +199748,6 @@ self: { testHaskellDepends = [ async base bytestring hspec mtl network ]; description = "A MessagePack-RPC Implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-multicast" = callPackage @@ -211069,7 +199775,6 @@ self: { ]; description = "Haskell bindings for low-level packet sockets (AF_PACKET)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "network-packet-linux" = callPackage @@ -211087,8 +199792,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Types for working with Linux packet sockets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-pgi" = callPackage @@ -211104,7 +199807,6 @@ self: { ]; description = "Library for writing PGI applications"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "network-protocol-xmpp" = callPackage @@ -211139,7 +199841,6 @@ self: { ]; description = "A cross-platform RPC library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "network-run" = callPackage @@ -211165,9 +199866,7 @@ self: { executableHaskellDepends = [ base network unix ]; description = "A light abstraction over sockets & co. for servers"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "network-service" = callPackage @@ -211183,8 +199882,6 @@ self: { ]; description = "Provide a service at the data type level"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-simple" = callPackage @@ -211216,8 +199913,6 @@ self: { ]; description = "network-simple for resolved addresses"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-simple-tls" = callPackage @@ -211268,8 +199963,6 @@ self: { ]; description = "Simple interface to TLS secured WebSockets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-socket-options" = callPackage @@ -211281,8 +199974,6 @@ self: { libraryHaskellDepends = [ base network ]; description = "Type-safe, portable alternative to getSocketOption/setSocketOption"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-stream" = callPackage @@ -211299,7 +199990,6 @@ self: { ]; description = "ByteString and Text streams for networking"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "network-topic-models" = callPackage @@ -211321,7 +200011,6 @@ self: { ]; description = "A few network topic model implementations for bayes-stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "network-transport" = callPackage @@ -211362,8 +200051,6 @@ self: { ]; description = "AMQP-based transport layer for distributed-process (aka Cloud Haskell)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-transport-composed" = callPackage @@ -211395,8 +200082,6 @@ self: { ]; description = "In-memory instantiation of Network.Transport"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-transport-tcp" = callPackage @@ -211501,7 +200186,6 @@ self: { ]; description = "Network functions that do not throw exceptions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "network-uri" = callPackage @@ -211553,7 +200237,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "FromJSON and ToJSON Instances for Network.URI"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "network-uri-lenses" = callPackage @@ -211593,8 +200276,6 @@ self: { ]; description = "VoiceText Web API wrapper"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-wai-router" = callPackage @@ -211606,8 +200287,6 @@ self: { libraryHaskellDepends = [ base wai ]; description = "A routing library for wai"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "network-wait" = callPackage @@ -211637,7 +200316,6 @@ self: { libraryHaskellDepends = [ base haskell98 network webserver ]; description = "WebSocket library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "networked-game" = callPackage @@ -211655,8 +200333,6 @@ self: { ]; description = "Networked-game support library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "neural" = callPackage @@ -211689,7 +200365,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Neural Networks in native Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "neural-network-base" = callPackage @@ -211720,8 +200395,6 @@ self: { ]; description = "Yet Another High Performance and Extendable Neural Network in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "neural-network-hmatrix" = callPackage @@ -211739,8 +200412,6 @@ self: { librarySystemDepends = [ blas ]; description = "Yet Another High Performance and Extendable Neural Network in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) blas;}; "neuron" = callPackage @@ -211798,7 +200469,6 @@ self: { doHaddock = false; description = "Future-proof system for plain-text notes"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "neuron"; }) {}; @@ -211812,8 +200482,6 @@ self: { testHaskellDepends = [ array base bytestring hspec QuickCheck ]; description = "Encodes and decodes numbers using Tantek Çelik's New Base 60 number system"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "newhope" = callPackage @@ -211845,8 +200513,6 @@ self: { ]; description = "Library implementing the NewHope cryptographic key-exchange protocol"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "newline" = callPackage @@ -211858,8 +200524,6 @@ self: { libraryHaskellDepends = [ base bytestring text ]; description = "newline specifications as values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "newports" = callPackage @@ -211873,9 +200537,7 @@ self: { executableHaskellDepends = [ base directory old-time ]; description = "List ports newer than N days on a FreeBSD system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "newports"; - broken = true; }) {}; "newsletter" = callPackage @@ -211904,9 +200566,7 @@ self: { ]; description = "A basic newsletter implimentation, using various backends"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "newsletter-server"; - broken = true; }) {}; "newsletter-mailgun" = callPackage @@ -211922,7 +200582,6 @@ self: { ]; description = "A mailgun backend for the newsletter package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "newsynth" = callPackage @@ -211940,7 +200599,6 @@ self: { executableHaskellDepends = [ base random time ]; description = "Exact and approximate synthesis of quantum circuits"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "gridsynth"; }) {}; @@ -211962,9 +200620,7 @@ self: { executableHaskellDepends = [ base cmdargs containers mtl ]; description = "A trivially simple app to create things from simple templates"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "newt"; - broken = true; }) {}; "newtype" = callPackage @@ -211994,8 +200650,6 @@ self: { ]; description = "Instance derivers for newtype wrappers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "newtype-generics" = callPackage @@ -212028,8 +200682,6 @@ self: { ]; description = "A template haskell deriver to create Control.Newtype instances."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "newtype-zoo" = callPackage @@ -212069,8 +200721,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "A concurrency primitive for a slow consumer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nextstep-plist" = callPackage @@ -212082,8 +200732,6 @@ self: { libraryHaskellDepends = [ base parsec pretty QuickCheck ]; description = "NextStep style plist parser and printer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nf" = callPackage @@ -212151,9 +200799,7 @@ self: { executableHaskellDepends = [ base parseargs ]; description = "Ngrams loader based on http://www.ngrams.info format"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "ngrams-loader"; - broken = true; }) {}; "ngx-export" = callPackage @@ -212217,8 +200863,6 @@ self: { ]; description = "Native Nginx logging from configuration files and Haskell handlers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ngx-export-tools" = callPackage @@ -212259,7 +200903,6 @@ self: { ]; description = "More extra tools for Nginx haskell module"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "niagra" = callPackage @@ -212276,8 +200919,6 @@ self: { testHaskellDepends = [ base HUnit QuickCheck ]; description = "High performance CSS EDSL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nibblestring" = callPackage @@ -212298,8 +200939,6 @@ self: { ]; description = "Packed, strict nibble arrays with a list interface (ByteString for nibbles)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nice-html" = callPackage @@ -212323,8 +200962,6 @@ self: { ]; description = "A fast and nice HTML templating library with distinct compilation/rendering phases"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nicify" = callPackage @@ -212372,9 +201009,7 @@ self: { executableHaskellDepends = [ base ]; description = "Nico Nico Douga (ニコニコ動画) Comment Translator"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "nicovideo-translator"; - broken = true; }) {}; "nikepub" = callPackage @@ -212395,7 +201030,6 @@ self: { ]; description = "Command line utility publishes Nike+ runs on blogs and Twitter"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "nikepub"; }) {}; @@ -212446,7 +201080,6 @@ self: { ]; description = "IDL compiler and RPC/distributed object framework for microservices"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "nirum"; }) {}; @@ -212461,8 +201094,6 @@ self: { libraryHaskellDepends = [ base bytestring http-conduit xml ]; description = "Haskell interface to the nist random beacon"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nitro" = callPackage @@ -212474,8 +201105,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Haskell bindings for Nitro"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "niv" = callPackage @@ -212532,9 +201161,7 @@ self: { executableHaskellDepends = [ base ]; description = "Convenient utility for distributed Nix builds"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "nix-delegate"; - broken = true; }) {}; "nix-deploy" = callPackage @@ -212633,8 +201260,6 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; description = "Evaluate Haskell expressions using Nix to get packages"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nix-freeze-tree" = callPackage @@ -212663,9 +201288,7 @@ self: { doHaddock = false; description = "Convert a tree of files into fixed-output derivations"; license = lib.licenses.agpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "nix-freeze-tree"; - broken = true; }) {}; "nix-graph" = callPackage @@ -212750,9 +201373,7 @@ self: { ]; description = "A drop-in replacement for nix-serve that's faster and more stable"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "nix-serve"; - broken = true; }) {inherit (pkgs) nix;}; "nix-thunk" = callPackage @@ -212781,7 +201402,6 @@ self: { ]; description = "Lightweight dependency management with Nix"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "nix-thunk"; }) {}; @@ -212813,8 +201433,6 @@ self: { ]; description = "cabal/stack to nix translation tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nix-tree" = callPackage @@ -212863,9 +201481,7 @@ self: { ]; description = "Interactively browse a Nix store paths dependencies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "nixdu"; - broken = true; }) {}; "nixfmt" = callPackage @@ -212913,9 +201529,7 @@ self: { ]; description = "Generate nix expressions from npm packages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "nixfromnpm"; - broken = true; }) {}; "nixos-types" = callPackage @@ -212980,9 +201594,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Tool for semi-automatic updating of nixpkgs repository"; license = lib.licenses.cc0; - hydraPlatforms = lib.platforms.none; mainProgram = "nixpkgs-update"; - broken = true; }) {}; "nkjp" = callPackage @@ -213001,7 +201613,6 @@ self: { ]; description = "Manipulating the National Corpus of Polish (NKJP)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nlopt-haskell" = callPackage @@ -213026,8 +201637,6 @@ self: { libraryHaskellDepends = [ base containers strict ]; description = "Scoring functions commonly used for evaluation in NLP and IR"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nlp-scores-scripts" = callPackage @@ -213043,7 +201652,6 @@ self: { ]; description = "NLP scoring command-line programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nm" = callPackage @@ -213060,9 +201668,7 @@ self: { executableHaskellDepends = [ base ]; description = "Network Manager, binding to libnm-glib"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "nm-demo"; - broken = true; }) {g = null; inherit (pkgs) glib; libnm-glib = null; nm-glib = null;}; @@ -213075,8 +201681,6 @@ self: { libraryHaskellDepends = [ base bytestring utf8-string ]; description = "Bindings to the Nyctergatis Markup Engine"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nmis-parser" = callPackage @@ -213105,8 +201709,6 @@ self: { testHaskellDepends = [ base tasty tasty-hspec tasty-quickcheck ]; description = "A tiny neural network"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nntp" = callPackage @@ -213122,8 +201724,6 @@ self: { ]; description = "Library to connect to an NNTP Server"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "no-buffering-workaround" = callPackage @@ -213147,8 +201747,6 @@ self: { testHaskellDepends = [ base template-haskell ]; description = "Role annotations without -XRoleAnnotations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "no-value" = callPackage @@ -213182,9 +201780,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Math in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "noether"; - broken = true; }) {}; "nofib-analyse" = callPackage @@ -213198,9 +201794,7 @@ self: { executableHaskellDepends = [ array base containers regex-compat ]; description = "Parse and compare nofib runs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "nofib-analyse"; - broken = true; }) {}; "nofib-analyze" = callPackage @@ -213214,9 +201808,7 @@ self: { executableHaskellDepends = [ array base containers regex-compat ]; description = "Parse and compare nofib runs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "nofib-analyze"; - broken = true; }) {}; "noise" = callPackage @@ -213240,9 +201832,7 @@ self: { ]; description = "A friendly language for graphic design"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "noise"; - broken = true; }) {}; "noli" = callPackage @@ -213259,8 +201849,6 @@ self: { ]; description = "A static site generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nom" = callPackage @@ -213285,7 +201873,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Name-binding & alpha-equivalence"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nominal" = callPackage @@ -213318,7 +201905,6 @@ self: { ]; description = "REST API for Nomyx"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nomyx-core" = callPackage @@ -213347,7 +201933,6 @@ self: { testHaskellDepends = [ base Cabal ]; description = "A Nomic game in haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nomyx-language" = callPackage @@ -213367,7 +201952,6 @@ self: { ]; description = "Language to express rules for Nomic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nomyx-library" = callPackage @@ -213385,7 +201969,6 @@ self: { ]; description = "Library of rules for Nomyx"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nomyx-server" = callPackage @@ -213407,7 +201990,6 @@ self: { testHaskellDepends = [ base Cabal ]; description = "A Nomic game in haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "nomyx-server"; }) {}; @@ -213464,8 +202046,6 @@ self: { sha256 = "1frjpvx3nzymkwyxz0zc4p11pvxdihx3d3hi31w3d9qanwncbc96"; libraryHaskellDepends = [ base containers semigroupoids ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "non-empty-sequence" = callPackage @@ -213505,8 +202085,6 @@ self: { testHaskellDepends = [ base checkers QuickCheck ]; description = "The Zipper for NonEmpty"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "non-negative" = callPackage @@ -213597,8 +202175,6 @@ self: { testHaskellDepends = [ base hedgehog hedgehog-classes ]; description = "nonempty structure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nonempty-vector" = callPackage @@ -213725,8 +202301,6 @@ self: { libraryHaskellDepends = [ base primitive vector ]; description = "Various iterative algorithms for optimization of nonlinear functions"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nonlinear-optimization-ad" = callPackage @@ -213746,7 +202320,6 @@ self: { ]; description = "Wrapper of nonlinear-optimization package for using with AD package"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "nonlinear-optimization-backprop" = callPackage @@ -213767,7 +202340,6 @@ self: { ]; description = "Wrapper of nonlinear-optimization package for using with backprop package"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "noodle" = callPackage @@ -213782,8 +202354,6 @@ self: { executableHaskellDepends = [ base directory filepath ]; description = "the noodle programming language"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "normaldistribution" = callPackage @@ -213818,8 +202388,6 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion deepseq ]; description = "Normalization insensitive string comparison"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "normalize" = callPackage @@ -213917,8 +202485,6 @@ self: { ]; description = "An opinionated Prelude replacement library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "notcpp" = callPackage @@ -213931,8 +202497,6 @@ self: { testHaskellDepends = [ base template-haskell ]; description = "Avoiding the C preprocessor via cunning use of Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nothunks" = callPackage @@ -214015,9 +202579,7 @@ self: { executableSystemDepends = [ notmuch ]; description = "Binding for notmuch MUA library"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "notmuch-test"; - broken = true; }) {inherit (pkgs) notmuch;}; "notmuch-web" = callPackage @@ -214055,7 +202617,6 @@ self: { ]; description = "A web interface to the notmuch email indexer"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "notmuch-web"; }) {}; @@ -214074,8 +202635,6 @@ self: { ]; description = "A data type for representing numeric values, except zero"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "now-haskell" = callPackage @@ -214112,7 +202671,6 @@ self: { ]; description = "Zeit Now haskell-side integration and introspection tools"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "module-scanner"; }) {}; @@ -214156,8 +202714,6 @@ self: { ]; description = "Linear algebra for the numeric-prelude framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nptools" = callPackage @@ -214176,8 +202732,6 @@ self: { ]; description = "A collection of random tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nqe" = callPackage @@ -214212,7 +202766,6 @@ self: { ]; description = "Read environment variables as settings to build 12-factor apps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nri-http" = callPackage @@ -214236,7 +202789,6 @@ self: { ]; description = "Make Elm style HTTP requests"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nri-kafka" = callPackage @@ -214260,7 +202812,6 @@ self: { ]; description = "Functions for working with Kafka"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nri-observability" = callPackage @@ -214287,7 +202838,6 @@ self: { ]; description = "Report log spans collected by nri-prelude"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nri-postgresql" = callPackage @@ -214312,7 +202862,6 @@ self: { ]; description = "Make queries against Postgresql"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nri-prelude" = callPackage @@ -214342,8 +202891,6 @@ self: { ]; description = "A Prelude inspired by the Elm programming language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nri-redis" = callPackage @@ -214367,7 +202914,6 @@ self: { ]; description = "An intuitive hedis wrapper library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nri-test-encoding" = callPackage @@ -214385,7 +202931,6 @@ self: { ]; description = "A library to simplify writing golden tests for encoding types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nsis" = callPackage @@ -214470,8 +203015,6 @@ self: { ]; description = "Client library for NTP control messaging"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ntrip-client" = callPackage @@ -214496,9 +203039,7 @@ self: { ]; description = "NTRIP client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ntrip-client"; - broken = true; }) {}; "ntype" = callPackage @@ -214522,8 +203063,6 @@ self: { testHaskellDepends = [ base vector ]; description = "Multidimensional arrays, Linear algebra, Numerical analysis"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "null-canvas" = callPackage @@ -214541,8 +203080,6 @@ self: { ]; description = "HTML5 Canvas Graphics Library - forked Blank Canvas"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nullary" = callPackage @@ -214554,8 +203091,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A package for working with nullary type classes"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nullpipe" = callPackage @@ -214568,8 +203103,6 @@ self: { testHaskellDepends = [ base hspec pipes ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "num-non-negative" = callPackage @@ -214639,8 +203172,6 @@ self: { benchmarkHaskellDepends = [ base tasty-bench ]; description = "Create number walls and save them as images"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "numbered-semigroups" = callPackage @@ -214723,7 +203254,6 @@ self: { ]; description = "Convert numbers to number words"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "numeric-domains" = callPackage @@ -214759,7 +203289,6 @@ self: { libraryHaskellDepends = [ base type-compare ]; description = "Type-level numeric types and classes"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "numeric-limits" = callPackage @@ -214818,7 +203347,6 @@ self: { ]; description = "Ode solvers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "Kepler"; }) {}; @@ -214885,7 +203413,6 @@ self: { ]; description = "Wrapper of numeric-optimization package for using with backprop package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "numeric-prelude" = callPackage @@ -214927,8 +203454,6 @@ self: { doCheck = false; description = "Quasi-quoters for numbers of different bases"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "numeric-quest" = callPackage @@ -214956,8 +203481,6 @@ self: { testHaskellDepends = [ base hspec HUnit QuickCheck ]; description = "A framework for numeric ranges"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "numeric-tools" = callPackage @@ -214991,7 +203514,6 @@ self: { ]; description = "core package for Numerical Haskell project"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "numericpeano" = callPackage @@ -215074,8 +203596,6 @@ self: { testHaskellDepends = [ base doctest numhask ]; description = "numerical free algebras"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "numhask-hedgehog" = callPackage @@ -215092,7 +203612,6 @@ self: { testHaskellDepends = [ base hedgehog numhask numhask-prelude ]; description = "Laws and tests for numhask"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "numhask-histogram" = callPackage @@ -215109,8 +203628,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "See readme.md"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "numhask-prelude" = callPackage @@ -215123,8 +203640,6 @@ self: { testHaskellDepends = [ doctest ]; description = "A numeric prelude"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "numhask-range" = callPackage @@ -215145,7 +203660,6 @@ self: { ]; description = "Numbers that are range representations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "numhask-space" = callPackage @@ -215162,8 +203676,6 @@ self: { ]; description = "Numerical spaces"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "numhask-test" = callPackage @@ -215180,7 +203692,6 @@ self: { testHaskellDepends = [ base numhask-prelude QuickCheck tasty ]; description = "Laws and tests for numhask"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "nums" = callPackage @@ -215203,8 +203714,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Type-level (low cardinality) integers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "numtype-dk" = callPackage @@ -215227,8 +203736,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Type-level (low cardinality) integers, implemented using type families"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nurbs" = callPackage @@ -215307,10 +203814,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Generate nix sources expr for the latest version of packages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "nvfetcher"; maintainers = [ lib.maintainers.berberman ]; - broken = true; }) {}; "nvim-hs" = callPackage @@ -215385,9 +203890,7 @@ self: { executableHaskellDepends = [ base nvim-hs ]; description = "Neovim plugin that runs ghcid to update the quickfix list"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "nvim-hs-ghcid"; - broken = true; }) {}; "nvvm" = callPackage @@ -215421,7 +203924,6 @@ self: { executableHaskellDepends = [ base bytestring mtl ncurses text ]; description = "Bored? Nyan cat!"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "nyan"; }) {}; @@ -215446,7 +203948,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Flexible production-scale string interpolation library"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "nyan-interpolation-core" = callPackage @@ -215468,8 +203969,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Customize your nyan interpolator!"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nyan-interpolation-simple" = callPackage @@ -215481,7 +203980,6 @@ self: { libraryHaskellDepends = [ base nyan-interpolation-core text ]; description = "Simplified lightweight interpolation"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "nylas" = callPackage @@ -215499,8 +203997,6 @@ self: { ]; description = "Client for the Nylas API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "nymphaea" = callPackage @@ -215519,7 +204015,6 @@ self: { ]; description = "An interactive GUI for manipulating L-systems"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "nymphaea"; }) {}; @@ -215547,9 +204042,7 @@ self: { ]; description = "A bullet-hell game made with SDL2"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "app"; - broken = true; }) {}; "o-clock" = callPackage @@ -215599,8 +204092,6 @@ self: { ]; description = "Client to the OANDA REST API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "oasis-xrd" = callPackage @@ -215623,8 +204114,6 @@ self: { ]; description = "Extensible Resource Descriptor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "oath" = callPackage @@ -215642,7 +204131,6 @@ self: { benchmarkHaskellDepends = [ async base streamly tasty-bench ]; description = "Composable concurrent computation done right"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "oauth10a" = callPackage @@ -215687,7 +204175,6 @@ self: { ]; description = "OAuth2 jwt-bearer client flow as per rfc7523"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "oauthenticated" = callPackage @@ -215713,8 +204200,6 @@ self: { ]; description = "Simple OAuth for http-client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "obd" = callPackage @@ -215739,8 +204224,6 @@ self: { testHaskellDepends = [ base ]; description = "Communicate to OBD interfaces over ELM327"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "obdd" = callPackage @@ -215757,7 +204240,6 @@ self: { testHaskellDepends = [ array base containers text ]; description = "Ordered Reduced Binary Decision Diagrams"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "oberon0" = callPackage @@ -215777,7 +204259,6 @@ self: { doHaddock = false; description = "Oberon0 Compiler"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "obj" = callPackage @@ -215797,7 +204278,6 @@ self: { ]; description = "Reads and writes obj models"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "objectid" = callPackage @@ -215818,7 +204298,6 @@ self: { ]; description = "Rather unique identifier for things that need to be stored"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "objective" = callPackage @@ -215834,7 +204313,6 @@ self: { ]; description = "Composable objects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "oblivious-transfer" = callPackage @@ -215907,8 +204385,6 @@ self: { ]; description = "Convert Haskell types in OCaml types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ocap-io" = callPackage @@ -215939,7 +204415,6 @@ self: { ]; description = "Owned channels in the Ownership Monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ochintin-daicho" = callPackage @@ -215956,7 +204431,6 @@ self: { testHaskellDepends = [ base doctest Glob ]; description = "A module to manage payroll books for Japanese companies"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "octane" = callPackage @@ -215981,7 +204455,6 @@ self: { ]; description = "Parse Rocket League replays"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "octane"; }) {}; @@ -216013,7 +204486,6 @@ self: { ]; description = "A tested, minimal wrapper around GitHub's API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "abc"; }) {}; @@ -216035,7 +204507,6 @@ self: { ]; description = "Lisp with more dynamism, more power, more simplicity"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "octi"; }) {}; @@ -216054,7 +204525,6 @@ self: { description = "Oculus Rift ffi providing head tracking data"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libGL; inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXinerama; ovr = null; inherit (pkgs) systemd;}; @@ -216138,7 +204608,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "A full-featured PostgreSQL-backed job queue (with an admin UI)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "oden-go-packages" = callPackage @@ -216154,8 +204623,6 @@ self: { ]; description = "Provides Go package metadata"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "odpic-raw" = callPackage @@ -216214,8 +204681,6 @@ self: { ]; description = "Interface for Online Encyclopedia of Integer Sequences (OEIS)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "off-simple" = callPackage @@ -216227,7 +204692,6 @@ self: { libraryHaskellDepends = [ base parsec3 vector ]; description = "A parser for simplified-syntax OFF files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ofx" = callPackage @@ -216260,7 +204724,6 @@ self: { ]; description = "Ogma: Helper tool to interoperate between Copilot and other languages"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "ogma"; }) {}; @@ -216287,7 +204750,6 @@ self: { ]; description = "Ogma: Helper tool to interoperate between Copilot and other languages"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "ogma-extra" = callPackage @@ -216323,8 +204785,6 @@ self: { ]; description = "Ogma: Runtime Monitor translator: C Language Frontend"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ogma-language-cocospec" = callPackage @@ -216342,8 +204802,6 @@ self: { ]; description = "Ogma: Runtime Monitor translator: CoCoSpec Language Frontend"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ogma-language-copilot" = callPackage @@ -216375,7 +204833,6 @@ self: { ]; description = "Ogma: Runtime Monitor translator: FRET Component Specification Frontend"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "ogma-language-fret-reqs" = callPackage @@ -216396,7 +204853,6 @@ self: { ]; description = "Ogma: Runtime Monitor translator: FRET Component Requirement DB Frontend"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "ogma-language-smv" = callPackage @@ -216414,8 +204870,6 @@ self: { ]; description = "Ogma: Runtime Monitor translator: SMV Language Frontend"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ogmarkup" = callPackage @@ -216432,8 +204886,6 @@ self: { ]; description = "A lightweight markup language for story writers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ohloh-hs" = callPackage @@ -216457,9 +204909,7 @@ self: { ]; description = "Interface to the Ohloh API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "cmdoh"; - broken = true; }) {}; "oi" = callPackage @@ -216476,8 +204926,6 @@ self: { executableHaskellDepends = [ base directory filepath parallel ]; description = "Library for purely functional lazy interactions with the outer world"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "oidc-client" = callPackage @@ -216515,7 +204963,6 @@ self: { librarySystemDepends = [ OIS ]; description = "wrapper for OIS input manager for use with hogre"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {OIS = null;}; "okapi" = callPackage @@ -216540,8 +204987,6 @@ self: { ]; description = "A microframework based on monadic parsing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "old-locale" = callPackage @@ -216579,8 +205024,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Basic versioning library"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "olwrapper" = callPackage @@ -216606,7 +205049,6 @@ self: { ]; description = "An OpenLayers JavaScript Wrapper and Webframework with snaplet-fay"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "olwrapper"; }) {}; @@ -216619,8 +205061,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Actor pattern utilities"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "om-doh" = callPackage @@ -216637,8 +205077,6 @@ self: { ]; description = "om-doh"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "om-elm" = callPackage @@ -216656,8 +205094,6 @@ self: { ]; description = "Haskell utilities for building embedded Elm programs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "om-fail" = callPackage @@ -216672,8 +205108,6 @@ self: { ]; description = "Monad transformer providing MonadFail"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "om-fork" = callPackage @@ -216692,7 +205126,6 @@ self: { ]; description = "Concurrency utilities"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "om-http" = callPackage @@ -216712,7 +205145,6 @@ self: { ]; description = "Http utilities"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "om-http-logging" = callPackage @@ -216728,8 +205160,6 @@ self: { ]; description = "om-http-logging"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "om-kubernetes" = callPackage @@ -216749,7 +205179,6 @@ self: { ]; description = "om-kubernetes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "om-legion" = callPackage @@ -216783,7 +205212,6 @@ self: { ]; description = "Legion Framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "om-logging" = callPackage @@ -216800,7 +205228,6 @@ self: { ]; description = "Opinionated logging utilities"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "om-plugin-imports" = callPackage @@ -216815,9 +205242,7 @@ self: { executableHaskellDepends = [ base containers ghc safe ]; description = "Plugin-based import warnings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "om-import-warnings-test"; - broken = true; }) {}; "om-show" = callPackage @@ -216829,8 +205254,6 @@ self: { libraryHaskellDepends = [ aeson base text ]; description = "Utilities for showing string-like things"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "om-socket" = callPackage @@ -216855,7 +205278,6 @@ self: { ]; description = "Socket utilities"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "om-time" = callPackage @@ -216869,8 +205291,6 @@ self: { ]; description = "Misc. time utilites"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "omaketex" = callPackage @@ -216888,9 +205308,7 @@ self: { ]; description = "A simple tool to generate OMakefile for latex files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "omaketex"; - broken = true; }) {}; "ombra" = callPackage @@ -216910,8 +205328,6 @@ self: { ]; description = "Render engine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "omega" = callPackage @@ -216930,9 +205346,7 @@ self: { ]; description = "A purely functional programming language and a proof system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "omega"; - broken = true; }) {}; "omnicodec" = callPackage @@ -216977,9 +205391,7 @@ self: { ]; description = "A pretty-printer wrapper to faciliate ease of formatting during development"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "omnifmt"; - broken = true; }) {}; "on-a-horse" = callPackage @@ -216998,8 +205410,6 @@ self: { ]; description = "\"Haskell on a Horse\" - A combinatorial web framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "on-demand-ssh-tunnel" = callPackage @@ -217020,9 +205430,7 @@ self: { ]; description = "Program that sends traffic through SSH tunnels on-demand"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "on-demand-ssh-tunnel"; - broken = true; }) {}; "onama" = callPackage @@ -217034,8 +205442,6 @@ self: { libraryHaskellDepends = [ base containers parsec tagsoup ]; description = "HTML-parsing primitives for Parsec"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "once" = callPackage @@ -217138,8 +205544,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A never-empty list type"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "online" = callPackage @@ -217160,7 +205564,6 @@ self: { testHaskellDepends = [ base doctest numhask ]; description = "See readme.md"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "online-csv" = callPackage @@ -217179,7 +205582,6 @@ self: { testHaskellDepends = [ base doctest numhask-prelude ]; description = "See readme.md"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "only" = callPackage @@ -217205,8 +205607,6 @@ self: { libraryHaskellDepends = [ base ]; description = "partition lenses"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "onu-course" = callPackage @@ -217218,8 +205618,6 @@ self: { libraryHaskellDepends = [ base smallcheck ]; description = "Code for the Haskell course taught at the Odessa National University in 2012"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "oo-prototypes" = callPackage @@ -217281,8 +205679,6 @@ self: { testHaskellDepends = [ base containers doctest ]; description = "Common operators encouraging large-scale easy reading"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "opaleye" = callPackage @@ -217364,8 +205760,6 @@ self: { ]; description = "Opaleye wrapped up in classy MTL attire"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "opaleye-sqlite" = callPackage @@ -217390,8 +205784,6 @@ self: { ]; description = "An SQL-generating DSL targeting SQLite"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "opaleye-trans" = callPackage @@ -217413,8 +205805,6 @@ self: { ]; description = "A monad transformer for Opaleye"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "opc-xml-da-client" = callPackage @@ -217446,7 +205836,6 @@ self: { ]; description = "OPC XML-DA Client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "open-adt" = callPackage @@ -217462,8 +205851,6 @@ self: { ]; description = "Open algebraic data types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "open-adt-tutorial" = callPackage @@ -217483,7 +205870,6 @@ self: { executableHaskellDepends = [ base ]; description = "Open algebraic data type examples"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "open-adt-tutorial"; }) {}; @@ -217513,9 +205899,7 @@ self: { executableHaskellDepends = [ base basic-prelude text turtle ]; description = "Open haddock HTML documentation"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "open-haddock"; - broken = true; }) {}; "open-pandoc" = callPackage @@ -217538,8 +205922,6 @@ self: { ]; description = "Conversion between markup formats"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "open-signals" = callPackage @@ -217552,8 +205934,6 @@ self: { testHaskellDepends = [ base ]; description = "A mechanism similar to checked exceptions that integrates with MTL and transformer stacks"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "open-symbology" = callPackage @@ -217581,8 +205961,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Open type representations and dynamic types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "open-union" = callPackage @@ -217640,8 +206018,6 @@ self: { ]; description = "Unofficial OpenAI client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "openai-servant" = callPackage @@ -217699,8 +206075,6 @@ self: { ]; description = "Auto-generated openapi-petstore API Client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "openapi-typed" = callPackage @@ -217720,8 +206094,6 @@ self: { ]; description = "Types for OpenAPI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "openapi3" = callPackage @@ -217759,9 +206131,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "OpenAPI 3.0 data model"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "openapi3-code-generator" = callPackage @@ -217801,9 +206171,7 @@ self: { ]; description = "OpenAPI3 Haskell Client Code Generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "openapi3-code-generator-exe"; - broken = true; }) {}; "opencc" = callPackage @@ -217818,8 +206186,6 @@ self: { testHaskellDepends = [ base bytestring mtl text transformers ]; description = "OpenCC bindings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) opencc;}; "opench-meteo" = callPackage @@ -217831,8 +206197,6 @@ self: { libraryHaskellDepends = [ aeson base data-default text time ]; description = "A Haskell implementation of the Swiss Meteo Net data API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "opencog-atomspace" = callPackage @@ -217845,8 +206209,6 @@ self: { librarySystemDepends = [ atomspace-cwrapper ]; description = "Haskell Bindings for the AtomSpace"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {atomspace-cwrapper = null;}; "opencv" = callPackage @@ -217878,8 +206240,6 @@ self: { hardeningDisable = [ "bindnow" ]; description = "Haskell binding to OpenCV-3.x"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) opencv3;}; "opencv-extra" = callPackage @@ -217904,7 +206264,6 @@ self: { ]; description = "Haskell binding to OpenCV-3.x extra modules"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "opencv-raw" = callPackage @@ -217917,8 +206276,6 @@ self: { libraryPkgconfigDepends = [ opencv ]; description = "Raw Haskell bindings to OpenCV >= 2.0"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) opencv;}; "opendatatable" = callPackage @@ -217930,8 +206287,6 @@ self: { libraryHaskellDepends = [ base hxt template-haskell th-lift ]; description = "A library for working with Open Data Tables"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "openexchangerates" = callPackage @@ -217947,8 +206302,6 @@ self: { ]; description = "Fetch exchange rates from OpenExchangeRates.org"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "openexr-write" = callPackage @@ -217982,8 +206335,6 @@ self: { ]; description = "OpenFlow"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "opengl-dlp-stereo" = callPackage @@ -218042,8 +206393,6 @@ self: { testHaskellDepends = [ base ]; description = "Functional interface for OpenGL 4.1+ and OpenGL ES 2.0+"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {EGL = null; GLESv2 = null;}; "openid" = callPackage @@ -218088,8 +206437,6 @@ self: { ]; description = "An OpenID Connect library that does all the heavy lifting for you"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "openpgp" = callPackage @@ -218113,7 +206460,6 @@ self: { ]; description = "Implementation of the OpenPGP message format"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "openpgp-Crypto" = callPackage @@ -218135,7 +206481,6 @@ self: { ]; description = "Implementation of cryptography for use with OpenPGP using the Crypto library"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "openpgp-asciiarmor" = callPackage @@ -218183,7 +206528,6 @@ self: { ]; description = "Implement cryptography for OpenPGP using crypto-api compatible libraries"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "opensoundcontrol-ht" = callPackage @@ -218199,8 +206543,6 @@ self: { ]; description = "Haskell OpenSoundControl utilities"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "opensource" = callPackage @@ -218242,7 +206584,6 @@ self: { ]; description = "Fetch OpenSSH keys from a GitHub team"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "openssh-github-keys"; }) {}; @@ -218260,8 +206601,6 @@ self: { testHaskellDepends = [ base cereal hedgehog time ]; description = "Haskell implementation of openssh protocol primitives"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "openssl-createkey" = callPackage @@ -218344,8 +206683,6 @@ self: { testToolDepends = [ tasty-discover ]; benchmarkHaskellDepends = [ base opentelemetry tasty-bench ]; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "opentelemetry-http-client" = callPackage @@ -218359,8 +206696,6 @@ self: { base http-client http-types opentelemetry text ]; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "opentelemetry-lightstep" = callPackage @@ -218387,7 +206722,6 @@ self: { splitmix text typed-process unordered-containers ]; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "eventlog-to-lightstep"; }) {}; @@ -218469,9 +206803,7 @@ self: { ]; description = "Unicode characters"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "opentheory-char-test"; - broken = true; }) {}; "opentheory-divides" = callPackage @@ -218637,7 +206969,6 @@ self: { ]; description = "An OpenTok SDK for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "opentracing" = callPackage @@ -218658,8 +206989,6 @@ self: { ]; description = "OpenTracing for Haskell"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "opentracing-http-client" = callPackage @@ -218673,7 +207002,6 @@ self: { ]; description = "OpenTracing instrumentation of http-client"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "opentracing-jaeger" = callPackage @@ -218693,7 +207021,6 @@ self: { ]; description = "Jaeger backend for OpenTracing"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "opentracing-wai" = callPackage @@ -218705,7 +207032,6 @@ self: { libraryHaskellDepends = [ base lens opentracing text wai ]; description = "Middleware adding OpenTracing tracing for WAI applications"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "opentracing-zipkin-common" = callPackage @@ -218717,7 +207043,6 @@ self: { libraryHaskellDepends = [ aeson base opentracing text ]; description = "Zipkin OpenTracing Backend Commons"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "opentracing-zipkin-v1" = callPackage @@ -218737,7 +207062,6 @@ self: { ]; description = "Zipkin V1 backend for OpenTracing"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "opentracing-zipkin-v2" = callPackage @@ -218755,7 +207079,6 @@ self: { ]; description = "Zipkin V2 backend for OpenTracing"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "opentype" = callPackage @@ -218773,8 +207096,6 @@ self: { ]; description = "Opentype loading and writing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "openweathermap" = callPackage @@ -218797,9 +207118,7 @@ self: { ]; description = "Access data at OpenWeatherMap"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "openweathermap"; - broken = true; }) {}; "operate-do" = callPackage @@ -218816,8 +207135,6 @@ self: { testHaskellDepends = [ base doctest filemanip hspec QuickCheck ]; description = "Simple project template from stack"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "operational" = callPackage @@ -218873,8 +207190,6 @@ self: { ]; description = "Interpretation functions and simple instruction sets for operational"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "oplang" = callPackage @@ -218894,7 +207209,6 @@ self: { ]; description = "Stack-based esoteric programming language"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "oplang"; }) {}; @@ -218953,9 +207267,7 @@ self: { ]; description = "Open files or URLs using associated programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "opn"; - broken = true; }) {}; "optics" = callPackage @@ -219090,8 +207402,6 @@ self: { testHaskellDepends = [ attoparsec-data rerebase ]; description = "Simple command line interface arguments parser"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "optima-for-hasql" = callPackage @@ -219107,7 +207417,6 @@ self: { ]; description = "Command-line arguments parsing for Hasql"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "optimal-blocks" = callPackage @@ -219132,7 +207441,6 @@ self: { ]; description = "Optimal Block boundary determination for rsync-like behaviours"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "chunk"; }) {}; @@ -219149,8 +207457,6 @@ self: { ]; description = "Numerical optimization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "optimusprime" = callPackage @@ -219169,7 +207475,6 @@ self: { ]; description = "A supercompiler for f-lite"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "optimusprime"; }) {}; @@ -219196,8 +207501,6 @@ self: { ]; description = "Using type-classes for optional function arguments"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "optional-args" = callPackage @@ -219254,8 +207557,6 @@ self: { testHaskellDepends = [ base chell options time ]; description = "Command-line option types for dates and times"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "optparse-applicative_0_15_1_0" = callPackage @@ -219340,8 +207641,6 @@ self: { testHaskellDepends = [ attoparsec-data rerebase ]; description = "Simple command line interface arguments parser"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "optparse-declarative" = callPackage @@ -219367,7 +207666,6 @@ self: { ]; description = "An enum-text based toolkit for optparse-applicative"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "optparse-generic" = callPackage @@ -219423,8 +207721,6 @@ self: { libraryHaskellDepends = [ base optparse-applicative ]; description = "Helper functions for optparse-applicative"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "optparse-simple" = callPackage @@ -219482,8 +207778,6 @@ self: { ]; description = "Command line option parsing library with a twice applicative interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "opusfile" = callPackage @@ -219537,9 +207831,7 @@ self: { ]; description = "Orchestration-style co-ordination EDSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "orc"; - broken = true; }) {}; "orchestrate" = callPackage @@ -219563,8 +207855,6 @@ self: { ]; description = "An API client for http://orchestrate.io/."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "orchid" = callPackage @@ -219585,7 +207875,6 @@ self: { ]; description = "Haskell Wiki Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "orchid-demo" = callPackage @@ -219605,7 +207894,6 @@ self: { ]; description = "Haskell Wiki Demo"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "orchid-demo"; }) {}; @@ -219634,7 +207922,6 @@ self: { ]; description = "Algorithms for the order maintenance problem with a safe interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "order-statistic-tree" = callPackage @@ -219667,8 +207954,6 @@ self: { ]; description = "L-Estimators for robust statistics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ordered" = callPackage @@ -219682,8 +207967,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A definition of Posets"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ordered-containers" = callPackage @@ -219763,8 +208046,6 @@ self: { testHaskellDepends = [ base directory process split ]; description = "Push-pull implementation of discrete-time FRP"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "oref" = callPackage @@ -219779,8 +208060,6 @@ self: { testHaskellDepends = [ base containers either mtl transformers ]; description = "Owned references in the Ownership Monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "org-mode" = callPackage @@ -219836,8 +208115,6 @@ self: { ]; description = "Parser for Org Mode documents"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "org2anki" = callPackage @@ -219865,9 +208142,7 @@ self: { executableHaskellDepends = [ attoparsec base text ]; description = "Organize scala imports"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "organize-imports"; - broken = true; }) {}; "orgmode" = callPackage @@ -219887,8 +208162,6 @@ self: { ]; description = "Org Mode library for haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "orgmode-parse" = callPackage @@ -219911,8 +208184,6 @@ self: { ]; description = "A collection of Attoparsec combinators for parsing org-mode flavored documents"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "orgstat" = callPackage @@ -219947,7 +208218,6 @@ self: { ]; description = "Statistics visualizer for org-mode"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "origami" = callPackage @@ -219966,8 +208236,6 @@ self: { ]; description = "An un-SYB framework for transforming heterogenous data through folds"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "orion-hs" = callPackage @@ -219987,8 +208255,6 @@ self: { unordered-containers word8 wreq ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "orizentic" = callPackage @@ -220010,9 +208276,7 @@ self: { testHaskellDepends = [ base hspec jwt mtl time ]; description = "Token-based authentication and authorization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "orizentic"; - broken = true; }) {}; "ormolu_0_5_0_1" = callPackage @@ -220206,8 +208470,6 @@ self: { ]; description = "Auto-generated ory-hydra API Client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ory-kratos" = callPackage @@ -220228,8 +208490,6 @@ self: { ]; description = "API bindings for Ory Kratos"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "os-release" = callPackage @@ -220265,8 +208525,6 @@ self: { ]; description = "A library to handle messages in the OSC protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "oscpacking" = callPackage @@ -220278,8 +208536,6 @@ self: { libraryHaskellDepends = [ base colour gloss random ]; description = "Implements an osculatory packing (kissing circles) algorithm and display"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "osdkeys" = callPackage @@ -220316,9 +208572,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "An insertion-order-preserving set"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "oset-app"; - broken = true; }) {}; "osm-conduit" = callPackage @@ -220338,8 +208592,6 @@ self: { ]; description = "Parse and operate on OSM data in efficient way"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "osm-download" = callPackage @@ -220361,7 +208613,6 @@ self: { ]; description = "Download Open Street Map tiles"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "oso2pdf" = callPackage @@ -220380,8 +208631,6 @@ self: { ]; description = "Better conversion of Oxford Scholarship Online material to PDF"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "osx-ar" = callPackage @@ -220394,8 +208643,6 @@ self: { libraryHaskellDepends = [ base binary bytestring containers ]; description = "Parser for OS X static archive format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ot" = callPackage @@ -220416,8 +208663,6 @@ self: { ]; description = "Real-time collaborative editing with Operational Transformation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "otp-authenticator" = callPackage @@ -220443,7 +208688,6 @@ self: { ]; description = "OTP Authenticator (a la google) command line client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "otp-auth"; }) {}; @@ -220462,9 +208706,7 @@ self: { ]; description = "Pretty-printer for Ott parse trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ottparse-pretty"; - broken = true; }) {}; "outsort" = callPackage @@ -220489,7 +208731,6 @@ self: { ]; description = "External sorting package based on Conduit"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "SortLines"; }) {}; @@ -220514,8 +208755,6 @@ self: { ]; description = "A purely functional E-Graph library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "overhang" = callPackage @@ -220542,8 +208781,6 @@ self: { ]; description = "Finite overloading"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "overloaded" = callPackage @@ -220572,8 +208809,6 @@ self: { doHaddock = false; description = "Overloaded pragmas as a plugin"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "overloaded-records" = callPackage @@ -220595,8 +208830,6 @@ self: { ]; description = "Overloaded Records based on current GHC proposal"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "overture" = callPackage @@ -220610,8 +208843,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "An alternative to some of the Prelude"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "owoify-hs" = callPackage @@ -220627,8 +208858,6 @@ self: { ]; description = "Turn any English text into nonsensical babyspeaks"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pa-error-tree" = callPackage @@ -220751,8 +208980,6 @@ self: { ]; description = "Bidirectional fast ByteString packer/unpacker"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "package-description-remote" = callPackage @@ -220769,8 +208996,6 @@ self: { testHaskellDepends = [ base ]; description = "Fetches a 'GenericPackageDescription' from Hackage"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "package-o-tron" = callPackage @@ -220789,7 +209014,6 @@ self: { ]; description = "Utilities for working with cabal packages and your package database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "package-version" = callPackage @@ -220813,8 +209037,6 @@ self: { ]; description = "A package for retrieving a package's version number"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "package-vt" = callPackage @@ -220830,9 +209052,7 @@ self: { ]; description = "Haskell Package Versioning Tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "package-vt"; - broken = true; }) {}; "packcheck" = callPackage @@ -220870,9 +209090,7 @@ self: { ]; description = "Check your cabal packages for lagging dependencies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "packdeps"; - broken = true; }) {}; "packed" = callPackage @@ -220889,8 +209107,6 @@ self: { ]; benchmarkHaskellDepends = [ base gauge ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "packed-dawg" = callPackage @@ -220918,8 +209134,6 @@ self: { ]; description = "Generation and traversal of highly compressed directed acyclic word graphs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "packed-multikey-map" = callPackage @@ -220938,8 +209152,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; description = "Efficient “spreadsheet table” like maps with multiple marginals"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "packedstring" = callPackage @@ -220953,8 +209165,6 @@ self: { libraryHaskellDepends = [ array base ]; description = "(Deprecated) Packed Strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "packer" = callPackage @@ -220989,8 +209199,6 @@ self: { ]; description = "MessagePack Serialization an Deserialization for Packer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "packman" = callPackage @@ -221010,8 +209218,6 @@ self: { ]; description = "Serialization library for GHC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "packstream" = callPackage @@ -221031,8 +209237,6 @@ self: { ]; description = "PackStream converter for Neo4j BOLT protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "packunused" = callPackage @@ -221053,9 +209257,7 @@ self: { ]; description = "Tool for detecting redundant Cabal package dependencies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "packunused"; - broken = true; }) {}; "pacman-memcache" = callPackage @@ -221069,9 +209271,7 @@ self: { executableHaskellDepends = [ base deepseq directory-tree ]; description = "Read whole Pacman database which pushes it into the memory cache"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pacman-memcache"; - broken = true; }) {}; "pact-time" = callPackage @@ -221105,7 +209305,6 @@ self: { ]; description = "Controlling padKONTROL native mode"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "paddle" = callPackage @@ -221145,8 +209344,6 @@ self: { ]; description = "Fast, type-safe p-adic arithmetic"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pads-haskell" = callPackage @@ -221174,8 +209371,6 @@ self: { ]; description = "PADS data description language for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pagarme" = callPackage @@ -221194,9 +209389,7 @@ self: { executableHaskellDepends = [ base text wreq ]; description = "Pagarme API wrapper"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "testbin"; - broken = true; }) {}; "pager" = callPackage @@ -221242,8 +209435,6 @@ self: { ]; description = "Client library for PagerDuty Integration and REST APIs"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pagerduty-hs" = callPackage @@ -221261,8 +209452,6 @@ self: { ]; description = "An interface to the PagerDuty API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pagination" = callPackage @@ -221321,8 +209510,6 @@ self: { ]; description = "Receive hooks from pagure and do things with them"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "paint" = callPackage @@ -221363,7 +209550,6 @@ self: { ]; description = "Bilinear pairings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "palette" = callPackage @@ -221424,8 +209610,6 @@ self: { benchmarkHaskellDepends = [ base byteslice gauge primitive ]; description = "Parse syslog traffic from PAN-OS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "panda" = callPackage @@ -221446,7 +209630,6 @@ self: { ]; description = "A simple static blog engine"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "pandoc" = callPackage @@ -221595,9 +209778,7 @@ self: { doCheck = false; description = "Supports using pandoc with citeproc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-citeproc"; - broken = true; }) {}; "pandoc-citeproc-preamble" = callPackage @@ -221650,9 +209831,7 @@ self: { executableHaskellDepends = [ base pandoc-types ]; description = "A pandoc filter that provides a Markdown extension for columns"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-columns"; - broken = true; }) {}; "pandoc-crossref" = callPackage @@ -221706,9 +209885,7 @@ self: { executableHaskellDepends = [ base csv pandoc pandoc-types ]; description = "Convert CSV to Pandoc Table Markdown"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-csv2table"; - broken = true; }) {}; "pandoc-dhall-decoder" = callPackage @@ -221765,9 +209942,7 @@ self: { ]; description = "A Pandoc filter to use graphviz"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-filter-graphviz"; - broken = true; }) {}; "pandoc-filter-indent" = callPackage @@ -221798,9 +209973,7 @@ self: { ]; description = "Pandoc filter formatting Haskell code fragments using GHC lexer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-filter-indent"; - broken = true; }) {}; "pandoc-highlighting-extensions" = callPackage @@ -221817,7 +209990,6 @@ self: { ]; description = "Syntax highlighting customization for Pandoc"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "pandoc-include" = callPackage @@ -221838,9 +210010,7 @@ self: { doHaddock = false; description = "Include other Markdown files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-include"; - broken = true; }) {}; "pandoc-include-code" = callPackage @@ -221884,9 +210054,7 @@ self: { executableHaskellDepends = [ base directory pandoc-types ]; description = "Pandoc filter to include files, with image path and heading level adjustment"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-include-plus"; - broken = true; }) {}; "pandoc-japanese-filters" = callPackage @@ -221906,7 +210074,6 @@ self: { ]; description = "Japanese-specific markup filters for pandoc"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "pandoc-lens" = callPackage @@ -221918,8 +210085,6 @@ self: { libraryHaskellDepends = [ base containers lens pandoc-types text ]; description = "Lenses for Pandoc documents"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pandoc-linear-table" = callPackage @@ -221934,9 +210099,7 @@ self: { executableHaskellDepends = [ base pandoc-types ]; description = "A pandoc filter that provides a Markdown extension to wrap text in table cells"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-linear-table"; - broken = true; }) {}; "pandoc-link-context" = callPackage @@ -221950,8 +210113,6 @@ self: { ]; description = "Extract \"contextual links\" from Pandoc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pandoc-logic-proof" = callPackage @@ -221966,9 +210127,7 @@ self: { executableHaskellDepends = [ base pandoc-types ]; description = "A pandoc filter that provides a Markdown extension for logic proofs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-logic-proof"; - broken = true; }) {}; "pandoc-lua-engine" = callPackage @@ -222045,9 +210204,7 @@ self: { ]; description = "Pandoc-filter to evaluate `code` section in markdown and auto-embed output"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-markdown-ghci-filter-exe"; - broken = true; }) {}; "pandoc-placetable" = callPackage @@ -222069,9 +210226,7 @@ self: { ]; description = "Pandoc filter to include CSV files"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-placetable"; - broken = true; }) {}; "pandoc-plantuml-diagrams" = callPackage @@ -222095,9 +210250,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Render and insert PlantUML diagrams with Pandoc"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-plantuml-diagrams"; - broken = true; }) {}; "pandoc-plot" = callPackage @@ -222159,9 +210312,7 @@ self: { ]; description = "A Pandoc filter to include figures generated from Python code blocks"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-pyplot"; - broken = true; }) {}; "pandoc-select-code" = callPackage @@ -222175,9 +210326,7 @@ self: { executableHaskellDepends = [ base pandoc pandoc-types ]; description = "Pandoc filter to extract only the code blocks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-select-code"; - broken = true; }) {}; "pandoc-server" = callPackage @@ -222333,9 +210482,7 @@ self: { executableHaskellDepends = [ base pandoc ]; description = "Literate Haskell support for GitHub's Markdown flavor"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-unlit"; - broken = true; }) {}; "pandoc-utils" = callPackage @@ -222353,8 +210500,6 @@ self: { ]; description = "Utility functions to work with Pandoc in Haskell applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pandoc-vimhl" = callPackage @@ -222383,8 +210528,6 @@ self: { sha256 = "05x4ihcs6j380r9g5rh6afy9zadfnrlg9si8ia4aaa7kh2jc20p9"; description = "A box of patterns and paradigms"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pandora-io" = callPackage @@ -222396,7 +210539,6 @@ self: { libraryHaskellDepends = [ ghc-prim pandora ]; description = "..."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "panfiguration" = callPackage @@ -222414,8 +210556,6 @@ self: { testHaskellDepends = [ barbies-th base ]; description = "Merge environment variables and command line options generically"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pang-a-lambda" = callPackage @@ -222435,9 +210575,7 @@ self: { ]; description = "A super-pang clone"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "pang-a-lambda"; - broken = true; }) {}; "pango" = callPackage @@ -222474,8 +210612,6 @@ self: { testHaskellDepends = [ base bytestring containers HUnit ]; description = "A set of parsers for graph languages and conversions to graph libaries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "panhandle" = callPackage @@ -222532,9 +210668,7 @@ self: { ]; description = "Pandoc filter to execute code blocks"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "panpipe"; - broken = true; }) {}; "pansite" = callPackage @@ -222563,9 +210697,7 @@ self: { testHaskellDepends = [ base doctest Glob hspec QuickCheck ]; description = "Pansite: a simple web site management tool"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "pansite"; - broken = true; }) {}; "pantry_0_5_2_1" = callPackage @@ -222756,8 +210888,6 @@ self: { ]; description = "Content addressable Haskell package management"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "papa" = callPackage @@ -222781,7 +210911,6 @@ self: { ]; description = "Reasonable default import"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "papa-base" = callPackage @@ -222795,7 +210924,6 @@ self: { ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "papa-base-export" = callPackage @@ -222807,8 +210935,6 @@ self: { libraryHaskellDepends = [ base semigroups ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "papa-base-implement" = callPackage @@ -222820,7 +210946,6 @@ self: { libraryHaskellDepends = [ base papa-base-export semigroups ]; description = "Useful base functions reimplemented"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "papa-bifunctors" = callPackage @@ -222880,7 +211005,6 @@ self: { ]; description = "Reasonable default import"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "papa-implement" = callPackage @@ -222902,7 +211026,6 @@ self: { ]; description = "Reasonable default import"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "papa-include" = callPackage @@ -222919,8 +211042,6 @@ self: { ]; description = "Third party libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "papa-lens" = callPackage @@ -222934,7 +211055,6 @@ self: { ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "papa-lens-export" = callPackage @@ -222946,8 +211066,6 @@ self: { libraryHaskellDepends = [ base lens ]; description = "export useful functions from `lens`"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "papa-lens-implement" = callPackage @@ -222959,8 +211077,6 @@ self: { libraryHaskellDepends = [ base lens ]; description = "useful `lens` functions reimplemented"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "papa-prelude" = callPackage @@ -222977,8 +211093,6 @@ self: { ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "papa-prelude-core" = callPackage @@ -222995,8 +211109,6 @@ self: { ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "papa-prelude-lens" = callPackage @@ -223013,8 +211125,6 @@ self: { ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "papa-prelude-semigroupoids" = callPackage @@ -223031,8 +211141,6 @@ self: { ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "papa-prelude-semigroups" = callPackage @@ -223049,8 +211157,6 @@ self: { ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "papa-semigroupoids" = callPackage @@ -223066,7 +211172,6 @@ self: { ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "papa-semigroupoids-export" = callPackage @@ -223089,8 +211194,6 @@ self: { libraryHaskellDepends = [ base semigroupoids semigroups ]; description = "useful `semigroupoids` functions reimplemented"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "papa-x" = callPackage @@ -223137,9 +211240,7 @@ self: { executableHaskellDepends = [ base bytestring containers ]; description = "A passphrase generator"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "paphragen"; - broken = true; }) {}; "papillon" = callPackage @@ -223160,9 +211261,7 @@ self: { ]; description = "packrat parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "papillon"; - broken = true; }) {}; "pappy" = callPackage @@ -223176,9 +211275,7 @@ self: { executableHaskellDepends = [ base ]; description = "Packrat parsing; linear-time parsers for grammars in TDPL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pappy"; - broken = true; }) {}; "paprika" = callPackage @@ -223201,7 +211298,6 @@ self: { ]; description = "The Haskell library and examples for the kids programming robot paprika"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "par-dual" = callPackage @@ -223218,8 +211314,6 @@ self: { ]; description = "ParDual class for Parallel <-> Sequential"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "par-traverse" = callPackage @@ -223269,9 +211363,7 @@ self: { executableToolDepends = [ alex ]; description = "Paragon"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "parac"; - broken = true; }) {}; "parallel" = callPackage @@ -223315,8 +211407,6 @@ self: { transformers vector vector-algorithms ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parallel-tree-search" = callPackage @@ -223330,7 +211420,6 @@ self: { libraryHaskellDepends = [ base parallel tree-monad ]; description = "Parallel Tree Search"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "parameterized" = callPackage @@ -223343,7 +211432,6 @@ self: { testHaskellDepends = [ base data-diverse hspec transformers ]; description = "Parameterized/indexed monoids and monads using only a single parameter type variable"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "parameterized-data" = callPackage @@ -223355,8 +211443,6 @@ self: { libraryHaskellDepends = [ base template-haskell type-level ]; description = "Parameterized data library implementing lightweight dependent types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parameterized-utils" = callPackage @@ -223382,8 +211468,6 @@ self: { ]; description = "Classes and data structures for working with data-kind indexed types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "paramtree" = callPackage @@ -223425,9 +211509,7 @@ self: { testHaskellDepends = [ base ]; description = "http proxy server"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "paranoia"; - broken = true; }) {}; "parco" = callPackage @@ -223439,8 +211521,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Generalised parser combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parco-attoparsec" = callPackage @@ -223452,7 +211532,6 @@ self: { libraryHaskellDepends = [ attoparsec base mtl parco ]; description = "Generalised parser combinators - Attoparsec interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "parco-parsec" = callPackage @@ -223464,7 +211543,6 @@ self: { libraryHaskellDepends = [ base mtl parco parsec ]; description = "Generalised parser combinators - Parsec interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "parcom-lib" = callPackage @@ -223480,8 +211558,6 @@ self: { ]; description = "A simple parser-combinator library, a bit like Parsec but without the frills"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parconc-examples" = callPackage @@ -223510,7 +211586,6 @@ self: { executableToolDepends = [ alex happy ]; description = "Examples to accompany the book \"Parallel and Concurrent Programming in Haskell\""; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pareto" = callPackage @@ -223522,8 +211597,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A library for cause-effect relationships"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pareto-front" = callPackage @@ -223559,8 +211632,6 @@ self: { ]; description = "Parser combinators with fast-path and slower fallback for error reporting"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "park-bench" = callPackage @@ -223597,9 +211668,7 @@ self: { ]; description = "Help Manage project specific documentation"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "parochial"; - broken = true; }) {}; "parport" = callPackage @@ -223637,7 +211706,6 @@ self: { ]; description = "Streaming Parquet reader"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "parse" = callPackage @@ -223651,8 +211719,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Simple way to parse strings with Python-like format strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parse-dimacs" = callPackage @@ -223683,8 +211749,6 @@ self: { ]; description = "Parse machine-readable GHC GC stats"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parse-help" = callPackage @@ -223702,7 +211766,6 @@ self: { testHaskellDepends = [ cmdargs ]; description = "generate command line arguments from a --help output"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "parseargs" = callPackage @@ -223771,8 +211834,6 @@ self: { ]; description = "Parsec API encoded as a deeply-embedded DSL, for debugging and analysis"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parsec-numbers" = callPackage @@ -223815,8 +211876,6 @@ self: { testHaskellDepends = [ base directory doctest filepath ]; description = "Parsing instances for Parsec"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parsec-permutation" = callPackage @@ -223843,9 +211902,7 @@ self: { executableHaskellDepends = [ base containers mtl parsec pretty ]; description = "Pratt Parser combinator for Parsec"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "parsec-pratt-example"; - broken = true; }) {}; "parsec-tagsoup" = callPackage @@ -223901,8 +211958,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Monadic parser combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parsec3" = callPackage @@ -223914,8 +211969,6 @@ self: { libraryHaskellDepends = [ base bytestring mtl text ]; description = "Monadic parser combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parsec3-numbers" = callPackage @@ -223950,8 +212003,6 @@ self: { testHaskellDepends = [ base hspec parsec ]; description = "Adds and Eq instance for Parsec's ParseError if needed"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parsek" = callPackage @@ -223973,8 +212024,6 @@ self: { sha256 = "16sg32qs1kq184wk6d83z20b9firh1kjmysqwd2aqaiyq37zjyyb"; libraryHaskellDepends = [ base mtl parsec ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parser-combinators" = callPackage @@ -224006,8 +212055,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Test suite of parser-combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parser-helper" = callPackage @@ -224023,9 +212070,7 @@ self: { ]; description = "Prints Haskell parse trees in JSON"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "parser-helper"; - broken = true; }) {}; "parser-unbiased-choice-monad-embedding" = callPackage @@ -224042,8 +212087,6 @@ self: { ]; description = "Parsing library with unbiased choice and support for embedding arbitrary monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parser241" = callPackage @@ -224058,8 +212101,6 @@ self: { testHaskellDepends = [ base containers hspec mtl ]; description = "An interface to create production rules using augmented grammars"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parsergen" = callPackage @@ -224081,8 +212122,6 @@ self: { ]; description = "TH parser generator for splitting bytestring into fixed-width fields"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parsers" = callPackage @@ -224119,8 +212158,6 @@ self: { ]; description = "`parsers` instances for Megaparsec"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parsestar" = callPackage @@ -224144,7 +212181,6 @@ self: { ]; description = "NMR-STAR file format parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "parsimony" = callPackage @@ -224156,8 +212192,6 @@ self: { libraryHaskellDepends = [ base bytestring text ]; description = "Monadic parser combinators derived from Parsec"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parsix" = callPackage @@ -224178,8 +212212,6 @@ self: { ]; description = "Parser combinators with slicing, error recovery, and syntax highlighting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "parsley" = callPackage @@ -224208,7 +212240,6 @@ self: { benchmarkToolDepends = [ happy ]; description = "A fast parser combinator library backed by Typed Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "parsley-core" = callPackage @@ -224233,7 +212264,6 @@ self: { ]; description = "A fast parser combinator library backed by Typed Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "parsley-garnish" = callPackage @@ -224251,7 +212281,6 @@ self: { ]; description = "A collection of GHC plugins to work with parsley"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "parsnip" = callPackage @@ -224268,8 +212297,6 @@ self: { ]; description = "A fast, minimal parser"; license = "(BSD-2-Clause OR Apache-2.0)"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "partage" = callPackage @@ -224288,8 +212315,6 @@ self: { testHaskellDepends = [ base containers HUnit tasty tasty-hunit ]; description = "Parsing factorized"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "partial" = callPackage @@ -224340,8 +212365,6 @@ self: { ]; description = "Haskell 98 Partial Lenses"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "partial-order" = callPackage @@ -224370,8 +212393,6 @@ self: { libraryHaskellDepends = [ base template-haskell transformers ]; description = "Template haskell utilities for constructing records with default values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "partial-semigroup" = callPackage @@ -224442,9 +212463,7 @@ self: { ]; description = "Inspect, create, and alter MBRs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "partly"; - broken = true; }) {}; "passage" = callPackage @@ -224463,8 +212482,6 @@ self: { ]; description = "Parallel code generation for hierarchical Bayesian modeling"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "passman" = callPackage @@ -224492,9 +212509,7 @@ self: { ]; description = "a simple password manager"; license = lib.licenses.lgpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "passman"; - broken = true; }) {}; "passman-cli" = callPackage @@ -224515,7 +212530,6 @@ self: { ]; description = "Deterministic password generator command line interface"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "passman-cli"; }) {}; @@ -224542,8 +212556,6 @@ self: { doHaddock = false; description = "Deterministic password generator core"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "password" = callPackage @@ -224627,8 +212639,6 @@ self: { libraryHaskellDepends = [ base containers MonadRandom random ]; description = "Password generation/validation library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pasta" = callPackage @@ -224645,8 +212655,6 @@ self: { testHaskellDepends = [ base hspec microlens protolude ]; description = "PostgreSQL Abstract Syntax Tree Assember"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pasta-curves" = callPackage @@ -224674,9 +212682,7 @@ self: { ]; description = "Provides the Pasta curves: Pallas, Vesta and their field elements Fp and Fq"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "pasta-curves"; - broken = true; }) {}; "pastis" = callPackage @@ -224688,8 +212694,6 @@ self: { libraryHaskellDepends = [ base HTTP network ]; description = "Interface to the past.is URL shortening service"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pasty" = callPackage @@ -224703,9 +212707,7 @@ self: { executableHaskellDepends = [ base bytestring mtl ]; description = "A simple command line pasting utility"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "pasty"; - broken = true; }) {}; "patat" = callPackage @@ -224820,8 +212822,6 @@ self: { ]; description = "Patches (diffs) on vectors: composable, mergeable, and invertible"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "path_0_9_0" = callPackage @@ -224928,8 +212928,6 @@ self: { libraryHaskellDepends = [ base formatting path ]; description = "Formatting for path"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "path-io" = callPackage @@ -225056,8 +213054,6 @@ self: { ]; description = "A toy pathfinding library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pathological-bytestrings" = callPackage @@ -225153,8 +213149,6 @@ self: { ]; description = "Sentry SDK"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "patronscraper" = callPackage @@ -225168,9 +213162,7 @@ self: { executableHaskellDepends = [ base HandsomeSoup hxt ]; description = "A webpage scraper for Patreon which dumps a list of patrons to a text file"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "patronscraper"; - broken = true; }) {}; "pattern-arrows" = callPackage @@ -225220,8 +213212,6 @@ self: { ]; description = "Pattern tries"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "patterns" = callPackage @@ -225238,7 +213228,6 @@ self: { ]; description = "Common patterns in message-oriented applications"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "pava" = callPackage @@ -225285,8 +213274,6 @@ self: { testHaskellDepends = [ base hspec unliftio ]; description = "A Haskell wrapper for the Paynow payment gateway"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "paypal-adaptive-hoops" = callPackage @@ -225311,9 +213298,7 @@ self: { ]; description = "Client for a limited part of PayPal's Adaptive Payments API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "paypal-api" = callPackage @@ -225330,8 +213315,6 @@ self: { ]; description = "PayPal API, currently supporting \"ButtonManager\""; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "paypal-rest-client" = callPackage @@ -225348,8 +213331,6 @@ self: { ]; description = "A client to connect to PayPal's REST API (v1)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pb" = callPackage @@ -225365,9 +213346,7 @@ self: { ]; description = "pastebin command line application"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pb"; - broken = true; }) {}; "pb-next" = callPackage @@ -225387,9 +213366,7 @@ self: { testHaskellDepends = [ base parsec tasty tasty-hunit ]; description = "Utility CLI for working with protobuf files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pbhelp"; - broken = true; }) {}; "pbc4hs" = callPackage @@ -225401,8 +213378,6 @@ self: { libraryHaskellDepends = [ base hslua string-qq ]; description = "pbc for HsLua"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pbkdf" = callPackage @@ -225459,7 +213434,6 @@ self: { ]; description = "Convert a pcap into an enumerator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pcapng" = callPackage @@ -225489,7 +213463,6 @@ self: { text unliftio-core validity ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pcapng-exe"; }) {}; @@ -225515,9 +213488,7 @@ self: { ]; description = "PCD file loader"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pcd2bin"; - broken = true; }) {}; "pcf" = callPackage @@ -225535,7 +213506,6 @@ self: { ]; description = "A one file compiler for PCF"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "pcf-font" = callPackage @@ -225565,8 +213535,6 @@ self: { ]; description = "Template Haskell for embedding text rendered using PCF fonts"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pcg-random" = callPackage @@ -225599,8 +213567,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq random ]; description = "A fast, pseudorandom number generator"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pcre-heavy" = callPackage @@ -225655,8 +213621,6 @@ self: { libraryHaskellDepends = [ base bytestring pcre-light ]; description = "pcre-light extra functionality"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pcre-utils" = callPackage @@ -225697,8 +213661,6 @@ self: { ]; description = "Regular expressions via the PCRE2 C library (included)"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pdc" = callPackage @@ -225735,7 +213697,6 @@ self: { ]; description = "Tool to generate PDF from haskintex templates and YAML input"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pdf-slave"; }) {}; @@ -225788,8 +213749,6 @@ self: { ]; description = "Template format definition for pdf-slave tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pdf-toolbox-content" = callPackage @@ -225877,9 +213836,7 @@ self: { ]; description = "Simple pdf viewer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pdf-toolbox-viewer"; - broken = true; }) {}; "pdf2line" = callPackage @@ -225912,8 +213869,6 @@ self: { ]; description = "Wrapper around the pdfinfo command"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pdfname" = callPackage @@ -225931,7 +213886,6 @@ self: { ]; description = "Name a PDF file using information from the pdfinfo command"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "pdfname"; }) {}; @@ -225948,7 +213902,6 @@ self: { ]; description = "split two-column PDFs, so there is one column per page"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pdfsplit"; }) {}; @@ -225971,9 +213924,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Extracts text from PDF using poppler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pdftotext.hs"; - broken = true; }) {poppler-cpp = null;}; "pdynload" = callPackage @@ -225990,8 +213941,6 @@ self: { ]; description = "pdynload is polymorphic dynamic linking library"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "peakachu" = callPackage @@ -226007,7 +213956,6 @@ self: { ]; description = "Experiemental library for composable interactive programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "peano" = callPackage @@ -226056,7 +214004,6 @@ self: { ]; description = "pec embedded compiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pecoff" = callPackage @@ -226069,8 +214016,6 @@ self: { libraryHaskellDepends = [ base binary bytestring containers ]; description = "Parser for PE/COFF format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pedersen-commitment" = callPackage @@ -226104,8 +214049,6 @@ self: { libraryHaskellDepends = [ array base binary containers ]; description = "A pedestrian implementation of directed acyclic graphs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "peg" = callPackage @@ -226123,9 +214066,7 @@ self: { ]; description = "a lazy non-deterministic concatenative programming language"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "peg"; - broken = true; }) {}; "peggy" = callPackage @@ -226144,8 +214085,6 @@ self: { ]; description = "The Parser Generator for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pell" = callPackage @@ -226163,7 +214102,6 @@ self: { ]; description = "Package to solve the Generalized Pell Equation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "pem" = callPackage @@ -226205,8 +214143,6 @@ self: { ]; description = "Static site generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "penn-treebank" = callPackage @@ -226238,8 +214174,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Parser combinators for trees in the Penn Treebank format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "penny" = callPackage @@ -226268,7 +214202,6 @@ self: { ]; description = "Extensible double-entry accounting system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "penny-bin" = callPackage @@ -226287,7 +214220,6 @@ self: { ]; description = "Deprecated - use penny package instead"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "penny-lib" = callPackage @@ -226309,7 +214241,6 @@ self: { ]; description = "Deprecated - use penny package instead"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "penrose" = callPackage @@ -226345,7 +214276,6 @@ self: { ]; description = "Create beautiful diagrams just by typing mathematical notation in plain text"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "penrose"; }) {}; @@ -226358,7 +214288,6 @@ self: { libraryHaskellDepends = [ base binary bytestring haskell98 ]; description = "A parser for PE object files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "percent-encoder" = callPackage @@ -226378,8 +214307,6 @@ self: { ]; description = "Percent encode/decode ByteStrings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "percent-format" = callPackage @@ -226403,8 +214330,6 @@ self: { libraryHaskellDepends = [ base ]; description = "The perceptron learning algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "perceptual-hash" = callPackage @@ -226432,7 +214357,6 @@ self: { benchmarkToolDepends = [ cpphs ]; description = "Find duplicate images"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "phash"; }) {}; @@ -226462,7 +214386,6 @@ self: { ]; description = "Robust persistence for acyclic immutable data"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "perdure"; }) {}; @@ -226481,8 +214404,6 @@ self: { ]; description = "Database migration support for use in other libraries"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "perf" = callPackage @@ -226506,9 +214427,7 @@ self: { benchmarkHaskellDepends = [ base ]; description = "Low-level run time measurement"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "perf-explore"; - broken = true; }) {}; "perf-analysis" = callPackage @@ -226531,7 +214450,6 @@ self: { ]; description = "analysis example using perf"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "perf-examples"; }) {}; @@ -226589,9 +214507,7 @@ self: { ]; description = "Library for performing vector shuffles"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "perfecthash" = callPackage @@ -226615,7 +214531,6 @@ self: { ]; description = "A perfect hashing library for mapping bytestrings to values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "perhaps" = callPackage @@ -226633,8 +214548,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Perhaps, a monad"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "period" = callPackage @@ -226672,9 +214585,7 @@ self: { testHaskellDepends = [ base cereal hedis hspec text time ]; description = "A reliable at-least-once periodic job scheduler backed by redis"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "periodic-client" = callPackage @@ -226692,7 +214603,6 @@ self: { ]; description = "Periodic task system haskell client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "periodic-client-exe" = callPackage @@ -226717,7 +214627,6 @@ self: { ]; description = "Periodic task system haskell client executables"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "periodic-common" = callPackage @@ -226734,8 +214643,6 @@ self: { ]; description = "Periodic task system common"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "periodic-polynomials" = callPackage @@ -226747,8 +214654,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "A library for working with periodic polynomials (very basic functionality)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "periodic-server" = callPackage @@ -226778,7 +214683,6 @@ self: { ]; description = "Periodic task system haskell server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "periodicd"; }) {}; @@ -226796,7 +214700,6 @@ self: { ]; description = "permutation Applicative and Monad with many mtl instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "permutation" = callPackage @@ -226811,8 +214714,6 @@ self: { libraryHaskellDepends = [ base ghc-prim QuickCheck ]; description = "A library for permutations and combinations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "permutations" = callPackage @@ -226836,7 +214737,6 @@ self: { ]; description = "Permutations of finite sets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "permute" = callPackage @@ -226848,8 +214748,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Generalised permutation parser combinator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "persist" = callPackage @@ -226867,8 +214765,6 @@ self: { ]; description = "Minimal serialization library with focus on performance"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "persist-state" = callPackage @@ -226889,8 +214785,6 @@ self: { description = "Serialization library with state and leb128 encoding"; license = lib.licenses.bsd3; badPlatforms = [ "aarch64-linux" "armv7l-linux" ]; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "persist2er" = callPackage @@ -226906,9 +214800,7 @@ self: { ]; description = "Transforms persist's quasi-quoted syntax into ER format"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "persist2er"; - broken = true; }) {}; "persistable-record" = callPackage @@ -226929,7 +214821,6 @@ self: { testHaskellDepends = [ base quickcheck-simple ]; description = "Binding between SQL database values and haskell records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "persistable-types-HDBC-pg" = callPackage @@ -226950,7 +214841,6 @@ self: { ]; description = "HDBC and Relational-Record instances of PostgreSQL extended types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "persistent" = callPackage @@ -227018,7 +214908,6 @@ self: { ]; description = "Parses a Persist Model file and produces Audit Models"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "persistent-audit"; }) {}; @@ -227031,8 +214920,6 @@ self: { libraryHaskellDepends = [ base cereal persistent text ]; description = "Helper functions for writing Persistent instances"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "persistent-database-url" = callPackage @@ -227052,8 +214939,6 @@ self: { ]; description = "Parse DATABASE_URL into configuration types for Persistent"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "persistent-discover" = callPackage @@ -227114,8 +214999,6 @@ self: { libraryHaskellDepends = [ array base diffarray ]; description = "Persistent equivalence relations (aka union-find)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "persistent-event-source" = callPackage @@ -227137,7 +215020,6 @@ self: { ]; description = "Persistent based event sourcing"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "persistent-eventsource" = callPackage @@ -227159,7 +215041,6 @@ self: { ]; description = "Persistent based event sourcing"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "persistent-generic" = callPackage @@ -227171,8 +215052,6 @@ self: { libraryHaskellDepends = [ base persistent text ]; description = "Derive Persistent classes generically"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "persistent-hssqlppp" = callPackage @@ -227189,7 +215068,6 @@ self: { ]; description = "Declare Persistent entities using SQL SELECT query syntax"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "persistent-instances-iproute" = callPackage @@ -227244,7 +215122,6 @@ self: { ]; description = "A thread-safe (STM) persistency interface for finite map types"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "persistent-migration" = callPackage @@ -227296,8 +215173,6 @@ self: { ]; description = "Backend for the persistent library using mongoDB"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "persistent-mtl" = callPackage @@ -227328,7 +215203,6 @@ self: { testToolDepends = [ tasty-autocollect ]; description = "Monad transformer for the persistent API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "persistent-mysql" = callPackage @@ -227441,8 +215315,6 @@ self: { ]; description = "Backend for the persistent library using ODBC"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "persistent-pagination" = callPackage @@ -227526,8 +215398,6 @@ self: { ]; description = "Memory-constant streaming of Persistent entities from PostgreSQL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "persistent-protobuf" = callPackage @@ -227544,7 +215414,6 @@ self: { ]; description = "Template-Haskell helpers for integrating protobufs with persistent"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "persistent-qq" = callPackage @@ -227577,8 +215446,6 @@ self: { libraryHaskellDepends = [ base time yesod ]; description = "A library for rate limiting activities with a persistent backend"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "persistent-redis" = callPackage @@ -227639,7 +215506,6 @@ self: { ]; description = "relational-record on persisten backends"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "persistent-spatial" = callPackage @@ -227710,8 +215576,6 @@ self: { testHaskellDepends = [ base hspec stm temporary ]; description = "STM transactions involving persistent storage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "persistent-template" = callPackage @@ -227745,8 +215609,6 @@ self: { ]; description = "Generate classy lens field accessors for persistent models"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "persistent-test" = callPackage @@ -227841,8 +215703,6 @@ self: { ]; description = "Backend for persistent library using Zookeeper"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "persona" = callPackage @@ -227859,8 +215719,6 @@ self: { ]; description = "Persona (BrowserID) library"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "persona-idp" = callPackage @@ -227882,7 +215740,6 @@ self: { ]; description = "Persona (BrowserID) Identity Provider"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "persona"; }) {}; @@ -227898,9 +215755,7 @@ self: { executableHaskellDepends = [ base process ]; description = "Proof Editor for Sequent Calculus"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "pesca"; - broken = true; }) {}; "peyotls" = callPackage @@ -227927,7 +215782,6 @@ self: { ]; description = "Pretty Easy YOshikuni-made TLS library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "peyotls-codec" = callPackage @@ -227945,7 +215799,6 @@ self: { ]; description = "Codec parts of Pretty Easy YOshikuni-made TLS library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pez" = callPackage @@ -227962,8 +215815,6 @@ self: { ]; description = "A Pretty Extraordinary Zipper library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pg-entity" = callPackage @@ -227991,7 +215842,6 @@ self: { ]; description = "A pleasant PostgreSQL layer"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "pg-extras" = callPackage @@ -228008,8 +215858,6 @@ self: { testHaskellDepends = [ base HUnit text ]; description = "PostgreSQL database performance insights"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pg-harness" = callPackage @@ -228029,9 +215877,7 @@ self: { ]; description = "REST service and library for creating/consuming temporary PostgreSQL databases"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "pg-harness"; - broken = true; }) {}; "pg-harness-client" = callPackage @@ -228062,9 +215908,7 @@ self: { ]; description = "REST service for creating temporary PostgreSQL databases"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "pg-harness"; - broken = true; }) {}; "pg-recorder" = callPackage @@ -228090,9 +215934,7 @@ self: { ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pg-recorder"; - broken = true; }) {}; "pg-store" = callPackage @@ -228116,8 +215958,6 @@ self: { ]; description = "Simple storage interface to PostgreSQL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pg-transact" = callPackage @@ -228142,8 +215982,6 @@ self: { ]; description = "A postgresql-simple transaction monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pgdl" = callPackage @@ -228169,9 +216007,7 @@ self: { ]; description = "browse directory listing webpages and download files from them"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "pgdl"; - broken = true; }) {}; "pgf2" = callPackage @@ -228184,8 +216020,6 @@ self: { librarySystemDepends = [ gu pgf ]; description = "Bindings to the C version of the PGF runtime"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {gu = null; inherit (pkgs) pgf;}; "pgm" = callPackage @@ -228233,8 +216067,6 @@ self: { ]; description = "A mid-level PostgreSQL client library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pgstream" = callPackage @@ -228259,8 +216091,6 @@ self: { ]; description = "Streaming Postgres bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pgvector" = callPackage @@ -228273,8 +216103,6 @@ self: { testHaskellDepends = [ base postgresql-simple ]; description = "pgvector support for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "phantom-state" = callPackage @@ -228301,8 +216129,6 @@ self: { ]; description = "Freezing, thawing, and copy elision"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "phaser" = callPackage @@ -228317,8 +216143,6 @@ self: { ]; description = "Incremental multiple pass parser library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "phash" = callPackage @@ -228364,7 +216188,6 @@ self: { ]; description = "FAT filesystem sort utility"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phizzle" = callPackage @@ -228394,7 +216217,6 @@ self: { ]; description = "A shared by different general implementations of the PhLADiPreLiO functionality"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phladiprelio-general-simple" = callPackage @@ -228421,7 +216243,6 @@ self: { ]; description = "A generalized functionality of PhLADiPreLiO for different languages that uses hash algorithms"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phladiprelio-rhythmicity-shared" = callPackage @@ -228459,7 +216280,6 @@ self: { ]; description = "A shared by different Ukrainian implementations of the PhLADiPreLiO functionality"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phladiprelio-ukrainian-simple" = callPackage @@ -228495,7 +216315,6 @@ self: { ]; description = "A PhLADiPreLiO implementation for Ukrainian that uses hashes and asynchronous concurrency"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "phladiprelioUkr"; }) {}; @@ -228520,9 +216339,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "Deprecated - ghci debug viewer with simple editor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "phoityne"; - broken = true; }) {}; "phoityne-vscode" = callPackage @@ -228545,9 +216362,7 @@ self: { ]; description = "Haskell Debug Adapter for Visual Studio Code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "phoityne-vscode"; - broken = true; }) {}; "phone-metadata" = callPackage @@ -228561,8 +216376,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Phonenumber Metadata - NOTE: this is now deprecated!"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "phone-numbers" = callPackage @@ -228577,8 +216390,6 @@ self: { testHaskellDepends = [ base bytestring ]; description = "Haskell bindings to the libphonenumber library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {phonenumber = null; inherit (pkgs) protobuf;}; "phone-push" = callPackage @@ -228596,8 +216407,6 @@ self: { ]; description = "Push notifications for Android and iOS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "phonetic-code" = callPackage @@ -228631,7 +216440,6 @@ self: { libraryHaskellDepends = [ base subG subG-instances vector ]; description = "A generalization of the uniqueness-periods-vector-common package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-constaints" = callPackage @@ -228643,8 +216451,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Constraints to filter the needed permutations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "phonetic-languages-constraints" = callPackage @@ -228656,7 +216462,6 @@ self: { libraryHaskellDepends = [ base subG subG-instances vector ]; description = "Constraints to filter the needed permutations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-constraints-array" = callPackage @@ -228668,8 +216473,6 @@ self: { libraryHaskellDepends = [ base subG ]; description = "Constraints to filter the needed permutations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "phonetic-languages-examples" = callPackage @@ -228703,7 +216506,6 @@ self: { ]; description = "A generalization of the uniqueness-periods-vector-examples functionality"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-filters-array" = callPackage @@ -228715,8 +216517,6 @@ self: { libraryHaskellDepends = [ base filters-basic mmsyn2-array ]; description = "Allows to change the structure of the function output"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "phonetic-languages-general" = callPackage @@ -228733,7 +216533,6 @@ self: { ]; description = "A generalization of the uniqueness-periods-vector-general functionality"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-permutations" = callPackage @@ -228745,7 +216544,6 @@ self: { libraryHaskellDepends = [ base subG subG-instances vector ]; description = "Commonly used versions of the phonetic-languages-common package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-permutations-array" = callPackage @@ -228757,8 +216555,6 @@ self: { libraryHaskellDepends = [ base subG ]; description = "Permutations and universal set related functions for the phonetic-languages series"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "phonetic-languages-phonetics-basics" = callPackage @@ -228779,9 +216575,7 @@ self: { ]; description = "A library for working with generalized phonetic languages usage"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "pldPL"; - broken = true; }) {}; "phonetic-languages-plus" = callPackage @@ -228802,9 +216596,7 @@ self: { ]; description = "Some common shared between different packages functions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "distributionTextG"; - broken = true; }) {}; "phonetic-languages-properties" = callPackage @@ -228822,7 +216614,6 @@ self: { ]; description = "A generalization of the uniqueness-periods-vector-properties package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-rhythmicity" = callPackage @@ -228850,7 +216641,6 @@ self: { ]; description = "A basics of the phonetic-languages functionality that can be groupped"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-simplified-common" = callPackage @@ -228866,7 +216656,6 @@ self: { ]; description = "A simplified version of the phonetic-languages-functionality"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-simplified-examples-array" = callPackage @@ -228917,7 +216706,6 @@ self: { ]; description = "Helps to create Ukrainian texts with the given phonetic properties"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-simplified-examples-common" = callPackage @@ -228936,7 +216724,6 @@ self: { ]; description = "Some commonly used by phonetic-languages-simplified* series functions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-simplified-generalized-examples-array" = callPackage @@ -228968,7 +216755,6 @@ self: { ]; description = "Helps to create texts with the given phonetic properties (e. g. poetic)."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-simplified-generalized-examples-common" = callPackage @@ -228985,7 +216771,6 @@ self: { ]; description = "Some common code for phonetic languages generalized functionality"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-simplified-generalized-properties-array" = callPackage @@ -229005,7 +216790,6 @@ self: { ]; description = "Some 'properties' of the phonetic languages approach text"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-simplified-lists-examples" = callPackage @@ -229040,7 +216824,6 @@ self: { ]; description = "Simplified and somewhat optimized version of the phonetic-languages-examples"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-simplified-properties-array" = callPackage @@ -229064,7 +216847,6 @@ self: { ]; description = "Some properties of the data related to rhythmicity"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-simplified-properties-array-common" = callPackage @@ -229102,8 +216884,6 @@ self: { ]; description = "Some properties of the data related to rhythmicity"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "phonetic-languages-simplified-properties-lists" = callPackage @@ -229122,7 +216902,6 @@ self: { ]; description = "A generalization of the uniqueness-periods-vector-properties package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-simplified-properties-lists-double" = callPackage @@ -229141,7 +216920,6 @@ self: { ]; description = "A generalization of the uniqueness-periods-vector-properties package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-ukrainian" = callPackage @@ -229153,7 +216931,6 @@ self: { libraryHaskellDepends = [ base mmsyn2 mmsyn5 vector ]; description = "Prepares Ukrainian text to be used as a phonetic language text"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-ukrainian-array" = callPackage @@ -229168,9 +216945,7 @@ self: { executableHaskellDepends = [ base mmsyn2-array mmsyn5 ]; description = "Prepares Ukrainian text to be used as a phonetic language text"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "unconcatUkr"; - broken = true; }) {}; "phonetic-languages-vector" = callPackage @@ -229182,8 +216957,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "A generalization of the functionality of the uniqueness-periods-vector package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "phooey" = callPackage @@ -229199,7 +216972,6 @@ self: { ]; description = "Functional user interfaces"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "photoname" = callPackage @@ -229242,9 +217014,7 @@ self: { executableHaskellDepends = [ base mtl SDL transformers ]; description = "A fractal viewer"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "phraskell"; - broken = true; }) {}; "phybin" = callPackage @@ -229277,9 +217047,7 @@ self: { ]; description = "Utility for clustering phylogenetic trees in Newick format based on Robinson-Foulds distance"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "phybin"; - broken = true; }) {}; "physics" = callPackage @@ -229311,9 +217079,7 @@ self: { ]; description = "Applied pi-calculus interpreter"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "phi"; - broken = true; }) {}; "pi-forall" = callPackage @@ -229337,9 +217103,7 @@ self: { ]; description = "Demo implementation of typechecker for dependently-typed language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pi-forall"; - broken = true; }) {}; "pi-hoole" = callPackage @@ -229365,8 +217129,6 @@ self: { testHaskellDepends = [ base ]; description = "Lightweight access control solution for the pijul vcs"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pi-lcd" = callPackage @@ -229388,8 +217150,6 @@ self: { executableHaskellDepends = [ base text ]; description = "Control an Adafruit character LCD and keypad kit on a Raspberry Pi"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pia-forward" = callPackage @@ -229410,9 +217170,7 @@ self: { ]; description = "Set up port forwarding with the Private Internet Access VPN service"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "pia-forward"; - broken = true; }) {}; "pianola" = callPackage @@ -229435,7 +217193,6 @@ self: { ]; description = "Remotely controlling Java Swing applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "picedit" = callPackage @@ -229450,9 +217207,7 @@ self: { executableHaskellDepends = [ base cli hmatrix ]; description = "simple image manipulation functions"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "picedit"; - broken = true; }) {}; "pickle" = callPackage @@ -229464,8 +217219,6 @@ self: { libraryHaskellDepends = [ base containers network stm text ]; description = "Instant StatsD in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "picologic" = callPackage @@ -229488,8 +217241,6 @@ self: { ]; description = "Utilities for symbolic predicate logic expressions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "picoparsec" = callPackage @@ -229522,8 +217273,6 @@ self: { ]; description = "Fast combinator parsing for bytestrings and text"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "picosat" = callPackage @@ -229549,9 +217298,7 @@ self: { executableHaskellDepends = [ base matrix transformers xml ]; description = "Converts a svg image to tikz code"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "pictikz"; - broken = true; }) {}; "pid" = callPackage @@ -229612,7 +217359,6 @@ self: { ]; description = "Yet another Haskell build system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pier"; }) {}; @@ -229633,8 +217379,6 @@ self: { ]; description = "A library for writing forwards-declared build systems in haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "piet" = callPackage @@ -229648,9 +217392,7 @@ self: { libraryHaskellDepends = [ array base containers Imlib mtl ]; description = "A Piet interpreter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "piet"; - broken = true; }) {}; "pig" = callPackage @@ -229667,9 +217409,7 @@ self: { ]; description = "dice game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pig"; - broken = true; }) {}; "piki" = callPackage @@ -229709,8 +217449,6 @@ self: { ]; description = "Access to the Pinboard API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pinboard-notes-backup" = callPackage @@ -229800,9 +217538,7 @@ self: { ]; description = "A code generator for the pinch Thrift library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pinch-gen"; - broken = true; }) {}; "pinchot" = callPackage @@ -229821,8 +217557,6 @@ self: { ]; description = "Write grammars, not parsers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pine" = callPackage @@ -229846,8 +217580,6 @@ self: { ]; description = "Functional 2D Game Framework"; license = lib.licenses.zlib; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ping" = callPackage @@ -229868,7 +217600,6 @@ self: { ]; description = "icmp echo requests"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ping-parser-attoparsec" = callPackage @@ -229965,7 +217696,6 @@ self: { testHaskellDepends = [ base doctest protolude ]; description = "A gateway for various cloud notification services"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pipe-enumerator" = callPackage @@ -229977,7 +217707,6 @@ self: { libraryHaskellDepends = [ base enumerator pipes transformers ]; description = "A bidirectional bridge between pipes and iteratees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pipeclip" = callPackage @@ -230089,8 +217818,6 @@ self: { ]; description = "A higher-level interface to using concurrency with pipes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-attoparsec" = callPackage @@ -230130,7 +217857,6 @@ self: { ]; description = "Streaming parsing in the pipes-core framework with Attoparsec"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "MimeParser"; }) {}; @@ -230147,8 +217873,6 @@ self: { ]; description = "Blocked GZip"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-binary" = callPackage @@ -230186,8 +217910,6 @@ self: { testHaskellDepends = [ base bytestring mtl pipes QuickCheck ]; description = "Pipes to group by any delimiter (such as lines with carriage returns)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-brotli" = callPackage @@ -230204,8 +217926,6 @@ self: { ]; description = "Brotli (RFC7932) compressors and decompressors for the Pipes package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-bytestring" = callPackage @@ -230248,7 +217968,6 @@ self: { benchmarkHaskellDepends = [ base ]; description = "Streaming compression/decompression via pipes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) bzip2;}; "pipes-cacophony" = callPackage @@ -230265,7 +217984,6 @@ self: { testHaskellDepends = [ base hlint ]; description = "Pipes for Noise-secured network connections"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "pipes-category" = callPackage @@ -230280,8 +217998,6 @@ self: { testHaskellDepends = [ base hspec pipes transformers ]; description = "Allows instances for Category, Arrow and ArrowChoice for Pipes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-cborg" = callPackage @@ -230343,8 +218059,6 @@ self: { ]; description = "Encode and decode binary streams using the pipes and cereal libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-cereal-plus" = callPackage @@ -230360,7 +218074,6 @@ self: { ]; description = "A streaming serialization library on top of \"pipes\" and \"cereal-plus\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "pipes-cliff" = callPackage @@ -230406,7 +218119,6 @@ self: { libraryHaskellDepends = [ base conduit mtl pipes-core ]; description = "Conduit adapters"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pipes-core" = callPackage @@ -230422,8 +218134,6 @@ self: { ]; description = "Compositional pipelines"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-courier" = callPackage @@ -230435,7 +218145,6 @@ self: { libraryHaskellDepends = [ base courier pipes ]; description = "Pipes utilities for interfacing with the courier message-passing framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pipes-csv" = callPackage @@ -230469,8 +218178,6 @@ self: { libraryHaskellDepends = [ base errors pipes ]; description = "Integration between pipes and errors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-extra" = callPackage @@ -230498,7 +218205,6 @@ self: { ]; description = "Various basic utilities for Pipes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pipes-extras" = callPackage @@ -230560,7 +218266,6 @@ self: { ]; description = "Fast traversal of directory trees using pipes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pipes-fluid" = callPackage @@ -230583,7 +218288,6 @@ self: { ]; description = "Reactively combines Producers so that a value is yielded as soon as possible"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pipes-group" = callPackage @@ -230636,7 +218340,6 @@ self: { ]; description = "Illumina NGS data processing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pipes-interleave" = callPackage @@ -230650,8 +218353,6 @@ self: { libraryHaskellDepends = [ base containers heaps pipes ]; description = "Interleave and merge streams of elements"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-io" = callPackage @@ -230666,8 +218367,6 @@ self: { testHaskellDepends = [ base hspec pipes ]; description = "Stateful IO streams based on pipes"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-kafka" = callPackage @@ -230708,7 +218407,6 @@ self: { ]; description = "Streaming processing of CSV files preceded by key-value pairs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pipes-lines" = callPackage @@ -230725,8 +218423,6 @@ self: { ]; description = "Pipes for grouping by lines with carriage returns"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-lzma" = callPackage @@ -230748,9 +218444,7 @@ self: { ]; description = "LZMA compressors and decompressors for the Pipes package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pipes-lzma-unxz"; - broken = true; }) {}; "pipes-misc" = callPackage @@ -230771,7 +218465,6 @@ self: { ]; description = "Miscellaneous utilities for pipes, required by glazier-tutorial"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pipes-mongodb" = callPackage @@ -230830,8 +218523,6 @@ self: { ]; description = "WebSockets support for pipes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-ordered-zip" = callPackage @@ -230861,7 +218552,6 @@ self: { ]; description = "P2P network nodes with pipes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pipes-p2p-examples" = callPackage @@ -230880,7 +218570,6 @@ self: { ]; description = "Examples using pipes-p2p"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "address-exchanger"; }) {}; @@ -230935,9 +218624,7 @@ self: { testHaskellDepends = [ base ]; description = "Alternate Prelude for the pipes ecosystem"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pipes-protolude-exe"; - broken = true; }) {}; "pipes-pulse-simple" = callPackage @@ -230977,9 +218664,7 @@ self: { executableHaskellDepends = [ base pipes time ]; description = "A few pipes to control the timing of yields"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "PipesRealTimeExample"; - broken = true; }) {}; "pipes-s3" = callPackage @@ -231002,8 +218687,6 @@ self: { ]; description = "A simple interface for streaming data to and from Amazon S3"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-safe" = callPackage @@ -231043,8 +218726,6 @@ self: { ]; description = "Create proper Pipes from System.Process"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-sqlite-simple" = callPackage @@ -231058,8 +218739,6 @@ self: { ]; description = "Functions that smash Pipes and sqlite-simple together"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-text" = callPackage @@ -231100,8 +218779,6 @@ self: { ]; description = "Interfacing pipes with foldl folds"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-vector" = callPackage @@ -231117,8 +218794,6 @@ self: { ]; description = "Various proxies for streaming data into vectors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-wai" = callPackage @@ -231170,8 +218845,6 @@ self: { ]; description = "Pipes integration for ZeroMQ messaging"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pipes-zlib" = callPackage @@ -231211,7 +218884,6 @@ self: { ]; description = "A dependently typed core language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pisigma"; }) {}; @@ -231235,9 +218907,7 @@ self: { ]; description = "Account management tool"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "pit"; - broken = true; }) {}; "pitchtrack" = callPackage @@ -231258,7 +218928,6 @@ self: { ]; description = "Pitch tracking library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "pivotal-tracker" = callPackage @@ -231282,9 +218951,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "A library and a CLI tool for accessing Pivotal Tracker API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tracker"; - broken = true; }) {}; "pixel-printer" = callPackage @@ -231302,9 +218969,7 @@ self: { testHaskellDepends = [ base ]; description = "A program for turning pixel art into 3D prints"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "pixel-printer-exe"; - broken = true; }) {}; "pixela" = callPackage @@ -231328,8 +218993,6 @@ self: { ]; description = "Pixela client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pixelated-avatar-generator" = callPackage @@ -231351,9 +219014,7 @@ self: { ]; description = "A library and application for generating pixelated avatars"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "pixelated-avatar-generator"; - broken = true; }) {}; "pixiv" = callPackage @@ -231380,8 +219041,6 @@ self: { ]; description = "Pixiv API binding based on servant-client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "piyo" = callPackage @@ -231407,7 +219066,6 @@ self: { description = "Haskell game engine like fantasy console"; license = lib.licenses.mit; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; mainProgram = "piyo-exe"; }) {}; @@ -231441,8 +219099,6 @@ self: { ]; description = "PKCS#10 library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pkcs7" = callPackage @@ -231455,8 +219111,6 @@ self: { testHaskellDepends = [ base bytestring Cabal HUnit QuickCheck ]; description = "PKCS #7 padding in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pkggraph" = callPackage @@ -231470,9 +219124,7 @@ self: { executableHaskellDepends = [ base Cabal split ]; description = "Package dependency graph for installed packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pkggraph"; - broken = true; }) {}; "pkgtreediff" = callPackage @@ -231495,7 +219147,6 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "RPM package tree diff tool"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "pkgtreediff"; }) {}; @@ -231577,8 +219228,6 @@ self: { libraryHaskellDepends = [ base bytestring mtl time unix ]; description = "plaimi's prelude"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "plan-applicative" = callPackage @@ -231599,8 +219248,6 @@ self: { ]; description = "Applicative/Arrow for resource estimation and progress tracking"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "plan-b" = callPackage @@ -231619,8 +219266,6 @@ self: { testHaskellDepends = [ base hspec path path-io ]; description = "Failure-tolerant file and directory editing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "planar-graph" = callPackage @@ -231637,8 +219282,6 @@ self: { ]; description = "A representation of planar graphs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "planb-token-introspection" = callPackage @@ -231662,8 +219305,6 @@ self: { ]; description = "Token Introspection for PlanB"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "planet-mitchell" = callPackage @@ -231718,7 +219359,6 @@ self: { ]; description = "Planet Mitchell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "planet-mitchell-test" = callPackage @@ -231735,8 +219375,6 @@ self: { ]; description = "Planet Mitchell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "plankton" = callPackage @@ -231748,8 +219386,6 @@ self: { libraryHaskellDepends = [ adjunctions base protolude ]; description = "The core of a numeric prelude, taken from numhask"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "plat" = callPackage @@ -231763,8 +219399,6 @@ self: { ]; description = "Simple templating library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "platinum-parsing" = callPackage @@ -231788,9 +219422,7 @@ self: { testHaskellDepends = [ base containers fgl hspec vector ]; description = "General Framework for compiler development"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pp"; - broken = true; }) {}; "playlists" = callPackage @@ -231814,9 +219446,7 @@ self: { ]; description = "Library and executable for working with playlist files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "playlist"; - broken = true; }) {}; "playlists-http" = callPackage @@ -231835,7 +219465,6 @@ self: { ]; description = "Library to glue together playlists and http-client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "plex" = callPackage @@ -231866,8 +219495,6 @@ self: { libraryHaskellDepends = [ base base64-bytestring bytestring hxt ]; description = "Generate and parse Mac OS X property list format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "plist-buddy" = callPackage @@ -231891,8 +219518,6 @@ self: { ]; description = "Remote monad for editing plists"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "plivo" = callPackage @@ -231912,8 +219537,6 @@ self: { ]; description = "Plivo API wrapper for Haskell"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "plocketed" = callPackage @@ -231927,7 +219550,6 @@ self: { executableHaskellDepends = [ base optparse-applicative socketed ]; description = "plot data from stdin through socketed"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "plocketed"; }) {}; @@ -231955,8 +219577,6 @@ self: { libraryHaskellDepends = [ base glib gtk hmatrix mtl plot process ]; description = "GTK plots and interaction with GHCi"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "plot-gtk-ui" = callPackage @@ -231973,8 +219593,6 @@ self: { ]; description = "A quick way to use Mathematica like Manipulation abilities"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "plot-gtk3" = callPackage @@ -231988,8 +219606,6 @@ self: { ]; description = "GTK3 plots and interaction with GHCi"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "plot-lab" = callPackage @@ -232006,9 +219622,7 @@ self: { ]; description = "A plotting tool with Mathematica like Manipulation abilities"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "plot-lab"; - broken = true; }) {}; "plot-light" = callPackage @@ -232066,9 +219680,7 @@ self: { executableHaskellDepends = [ base mtl optparse-generic text ]; description = "Basic plotting of tabular data for the command line"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "ploterific"; - broken = true; }) {}; "plotfont" = callPackage @@ -232142,8 +219754,6 @@ self: { ]; description = "Diagrams based plotting library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "plotserver-api" = callPackage @@ -232168,8 +219778,6 @@ self: { libraryHaskellDepends = [ aeson base text ]; description = "Contravariant logging library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "plow-log-async" = callPackage @@ -232185,7 +219793,6 @@ self: { ]; description = "Async IO tracer for plow-log"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "plucky" = callPackage @@ -232215,8 +219822,6 @@ self: { ]; description = "Dynamic linking for Haskell and C objects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "plugins-auto" = callPackage @@ -232233,7 +219838,6 @@ self: { testHaskellDepends = [ base directory process ]; description = "Automatic recompilation and reloading of haskell modules"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "plugins-multistage" = callPackage @@ -232252,8 +219856,6 @@ self: { ]; description = "Dynamic linking for embedded DSLs with staged compilation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "plumbers" = callPackage @@ -232265,8 +219867,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Pointless plumbing combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "plur" = callPackage @@ -232279,8 +219879,6 @@ self: { testHaskellDepends = [ base hedgehog hedgehog-classes ]; description = "Plurality monad: Zero, one, or at least two"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "plural" = callPackage @@ -232293,8 +219891,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Pluralize"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ply-loader" = callPackage @@ -232334,8 +219930,6 @@ self: { testHaskellDepends = [ base hspec mtl text unordered-containers ]; description = "A front-end framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "png-file" = callPackage @@ -232351,7 +219945,6 @@ self: { ]; description = "read/write png file"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pngload" = callPackage @@ -232368,7 +219961,6 @@ self: { ]; description = "Pure Haskell loader for PNG images"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pngload-fixed" = callPackage @@ -232381,8 +219973,6 @@ self: { libraryHaskellDepends = [ array base bytestring mtl parsec zlib ]; description = "Pure Haskell loader for PNG images"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pnm" = callPackage @@ -232409,8 +219999,6 @@ self: { ]; description = "Bindings for the Pocket API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pocket-dns" = callPackage @@ -232470,9 +220058,7 @@ self: { testHaskellDepends = [ base hspec text ]; description = "A container wrapper"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "podenv"; - broken = true; }) {}; "point-octree" = callPackage @@ -232491,7 +220077,6 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Point octree, with bounding boxes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pointed" = callPackage @@ -232523,8 +220108,6 @@ self: { libraryHaskellDepends = [ base mtl semigroups transformers ]; description = "Alternative done right"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pointedlist" = callPackage @@ -232583,9 +220166,7 @@ self: { doHaddock = false; description = "Tool for refactoring expressions into pointfree form"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pointfree"; - broken = true; }) {}; "pointful" = callPackage @@ -232604,9 +220185,7 @@ self: { executableHaskellDepends = [ base ]; description = "Pointful refactoring tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pointful"; - broken = true; }) {}; "pointless-fun" = callPackage @@ -232629,8 +220208,6 @@ self: { libraryHaskellDepends = [ base GHood process syb ]; description = "Pointless Haskell library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pointless-lenses" = callPackage @@ -232646,7 +220223,6 @@ self: { ]; description = "Pointless Lenses library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pointless-rewrite" = callPackage @@ -232662,7 +220238,6 @@ self: { ]; description = "Pointless Rewrite library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "poke" = callPackage @@ -232694,9 +220269,7 @@ self: { ]; description = "Discord verification bot"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "poke-exe"; - broken = true; }) {}; "pokemon-go-protobuf-types" = callPackage @@ -232713,8 +220286,6 @@ self: { ]; description = "Haskell types for the Pokemon Go protobuf protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "poker" = callPackage @@ -232737,7 +220308,6 @@ self: { benchmarkHaskellDepends = [ base gauge ]; description = "Texas holdem hand evaluation and simulation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "poker-exe"; }) {}; @@ -232761,8 +220331,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "A library for core poker types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "poker-eval" = callPackage @@ -232775,8 +220343,6 @@ self: { librarySystemDepends = [ poker-eval ]; description = "Binding to libpoker-eval"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {poker-eval = null;}; "pokitdok" = callPackage @@ -232794,8 +220360,6 @@ self: { ]; description = "PokitDok Platform API Client for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polar" = callPackage @@ -232819,8 +220383,6 @@ self: { testHaskellDepends = [ base containers HUnit MissingH mtl parsec ]; description = "Fork of ConfigFile for Polar Game Engine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polar-shader" = callPackage @@ -232833,8 +220395,6 @@ self: { testHaskellDepends = [ base containers hspec ]; description = "High-level shader compiler framework"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polh-lexicon" = callPackage @@ -232853,7 +220413,6 @@ self: { ]; description = "A library for manipulating the historical dictionary of Polish (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "policeman" = callPackage @@ -232879,9 +220438,7 @@ self: { ]; description = "Haskell PVP version adviser"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "policeman"; - broken = true; }) {}; "polimorf" = callPackage @@ -232926,8 +220483,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Cache infrequently updated data for simpler distributed systems"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "poly" = callPackage @@ -232954,8 +220509,6 @@ self: { ]; description = "Polynomials"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "poly-arity" = callPackage @@ -232978,8 +220531,6 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "Poly-kinded continuations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "poly-control" = callPackage @@ -232991,8 +220542,6 @@ self: { libraryHaskellDepends = [ base lens ]; description = "This package provides abstraction for polymorphic controls, like PolyMonads or PolyApplicatives"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "poly-rec" = callPackage @@ -233033,7 +220582,6 @@ self: { ]; description = "Wrap together data and it's constraints"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "polydata-core" = callPackage @@ -233045,8 +220593,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Core data definitions for the \"polydata\" package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polyglot" = callPackage @@ -233072,7 +220618,6 @@ self: { ]; description = "Haskell to Purescript & Scala 3 transpiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "polyglot"; }) {}; @@ -233108,8 +220653,6 @@ self: { ]; description = "Polynomial types and operations"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polynomial" = callPackage @@ -233132,8 +220675,6 @@ self: { ]; description = "Polynomials"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polynomial-algebra" = callPackage @@ -233218,7 +220759,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Experimental, RandomFu effect and interpreters for polysemy"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-account" = callPackage @@ -233235,7 +220775,6 @@ self: { ]; description = "Account management with Servant and Polysemy"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-account-api" = callPackage @@ -233265,7 +220804,6 @@ self: { ]; description = "Account management with Servant and Polysemy"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-check" = callPackage @@ -233287,8 +220825,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "QuickCheck for Polysemy"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polysemy-chronos" = callPackage @@ -233330,7 +220866,6 @@ self: { ]; description = "Polysemy effects for concurrency"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-db" = callPackage @@ -233346,7 +220881,6 @@ self: { ]; description = "Polysemy effects for databases"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-extra" = callPackage @@ -233360,7 +220894,6 @@ self: { ]; description = "Extra Input and Output functions for polysemy"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-fs" = callPackage @@ -233393,7 +220926,6 @@ self: { ]; description = "Run a KVStore as a filesystem in polysemy"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-hasql" = callPackage @@ -233417,7 +220949,6 @@ self: { ]; description = "Polysemy effects for databases"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-hasql-test" = callPackage @@ -233441,7 +220972,6 @@ self: { ]; description = "Test utilities for polysemy-hasql"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-http" = callPackage @@ -233465,7 +220995,6 @@ self: { ]; description = "Polysemy effects for HTTP clients"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-keyed-state" = callPackage @@ -233486,8 +221015,6 @@ self: { ]; description = "Effect for a set of stateful values indexed by a type of keys"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polysemy-kvstore" = callPackage @@ -233499,8 +221026,6 @@ self: { libraryHaskellDepends = [ base containers polysemy ]; description = "KVStore effect for polysemy"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polysemy-kvstore-jsonfile" = callPackage @@ -233519,8 +221044,6 @@ self: { ]; description = "Run a KVStore as a single json file in polysemy"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polysemy-log" = callPackage @@ -233545,7 +221068,6 @@ self: { ]; description = "Polysemy effects for logging"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-log-co" = callPackage @@ -233567,7 +221089,6 @@ self: { ]; description = "Colog adapters for Polysemy.Log"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-log-di" = callPackage @@ -233588,7 +221109,6 @@ self: { ]; description = "Di adapters for Polysemy.Log"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-managed" = callPackage @@ -233610,8 +221130,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Primitive functions and data types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polysemy-methodology" = callPackage @@ -233626,7 +221144,6 @@ self: { ]; description = "Domain modelling algebra for polysemy"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-methodology-co-log" = callPackage @@ -233644,8 +221161,6 @@ self: { ]; description = "Logging functions for polysemy-methodology"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polysemy-methodology-composite" = callPackage @@ -233664,7 +221179,6 @@ self: { ]; description = "Functions for using polysemy-methodology with composite"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-mocks" = callPackage @@ -233680,8 +221194,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Mocking framework for polysemy effects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polysemy-optics" = callPackage @@ -233693,7 +221205,6 @@ self: { libraryHaskellDepends = [ base optics polysemy polysemy-zoo ]; description = "Optics for Polysemy"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-path" = callPackage @@ -233707,8 +221218,6 @@ self: { libraryHaskellDepends = [ base path polysemy polysemy-extra ]; description = "Polysemy versions of Path functions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polysemy-plugin" = callPackage @@ -233757,7 +221266,6 @@ self: { ]; description = "Polysemy effects for system processes"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-readline" = callPackage @@ -233781,9 +221289,7 @@ self: { ]; description = "Readline effect for polysemy"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "echo-repl"; - broken = true; }) {}; "polysemy-req" = callPackage @@ -233797,8 +221303,6 @@ self: { libraryHaskellDepends = [ base polysemy req ]; description = "Polysemy effect for req"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polysemy-resume" = callPackage @@ -233817,8 +221321,6 @@ self: { ]; description = "Polysemy error tracking"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polysemy-scoped-fs" = callPackage @@ -233839,7 +221341,6 @@ self: { ]; description = "Well-typed filesystem operation effects"; license = lib.licenses.agpl3Plus; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-several" = callPackage @@ -233851,8 +221352,6 @@ self: { libraryHaskellDepends = [ base polysemy ]; description = "Run several effects at once, taken from the polysemy-zoo"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polysemy-socket" = callPackage @@ -233866,8 +221365,6 @@ self: { libraryHaskellDepends = [ base bytestring polysemy socket ]; description = "Socket effect for polysemy"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polysemy-test" = callPackage @@ -233917,7 +221414,6 @@ self: { libraryHaskellDepends = [ base polysemy polysemy-methodology ]; description = "Uncontrolled toy effect for polysemy"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "polysemy-video" = callPackage @@ -233938,8 +221434,6 @@ self: { ]; description = "Experimental video processing DSL for polysemy"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polysemy-vinyl" = callPackage @@ -233957,8 +221451,6 @@ self: { ]; description = "Functions for mapping vinyl records in polysemy"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polysemy-webserver" = callPackage @@ -234005,8 +221497,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Experimental, user-contributed effects and interpreters for polysemy"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polyseq" = callPackage @@ -234027,7 +221517,6 @@ self: { executableHaskellDepends = [ cgi free-theorems utf8-string xhtml ]; description = "Taming Selective Strictness"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "polyseq.cgi"; }) {}; @@ -234053,8 +221542,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Typeable for polymorphic types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "polytypeable-utils" = callPackage @@ -234066,7 +221553,6 @@ self: { libraryHaskellDepends = [ base haskell98 polytypeable ]; description = "Utilities for polytypeable"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "polyvariadic" = callPackage @@ -234081,8 +221567,6 @@ self: { testHaskellDepends = [ base ]; description = "Creation and application of polyvariadic functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pomaps" = callPackage @@ -234106,8 +221590,6 @@ self: { ]; description = "Maps and sets of partial orders"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pomodoro" = callPackage @@ -234126,7 +221608,6 @@ self: { ]; description = "pomodoro timer"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "pomodoro"; }) {}; @@ -234151,9 +221632,7 @@ self: { testHaskellDepends = [ base hspec protolude ]; description = "Initial project template from stack"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; mainProgram = "pomohoro-exe"; - broken = true; }) {}; "ponder" = callPackage @@ -234165,8 +221644,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "PEG parser combinator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pong-server" = callPackage @@ -234184,8 +221661,6 @@ self: { testHaskellDepends = [ base hspec network QuickCheck ]; description = "A simple embedded pingable server that runs in the background"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pontarius-mediaserver" = callPackage @@ -234204,7 +221679,6 @@ self: { ]; description = "Extended Personal Media Network (XPMN) media server"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "pontarius-mediaserver-test"; }) {}; @@ -234270,8 +221744,6 @@ self: { ]; description = "XEPs implementation on top of pontarius-xmpp"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pontarius-xpmn" = callPackage @@ -234287,8 +221759,6 @@ self: { ]; description = "Extended Personal Media Network (XPMN) library"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pony" = callPackage @@ -234316,8 +221786,6 @@ self: { libraryHaskellDepends = [ base monad-control transformers ]; description = "Thread-safe resource pools. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pool-conduit" = callPackage @@ -234335,8 +221803,6 @@ self: { ]; description = "Resource pool allocations via ResourceT. (deprecated)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "poolboy" = callPackage @@ -234351,8 +221817,6 @@ self: { testHaskellDepends = [ base hspec hspec-core ]; description = "Simple work queue for bounded concurrency"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pooled-io" = callPackage @@ -234384,8 +221848,6 @@ self: { libraryHaskellDepends = [ base mtl network ]; description = "POP3 Client Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "popenhs" = callPackage @@ -234398,7 +221860,6 @@ self: { libraryHaskellDepends = [ base directory haskell98 unix ]; description = "popenhs is a popen-like library for Haskell"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "popkey" = callPackage @@ -234418,8 +221879,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Static key-value storage backed by poppy"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "poppler" = callPackage @@ -234440,8 +221899,6 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the Poppler"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) gdk-pixbuf; inherit (pkgs) gtk2; inherit (pkgs) pango; inherit (pkgs) poppler_gi;}; @@ -234496,7 +221953,6 @@ self: { ]; description = "Express portable, composable and reusable data tasks and pipelines"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "porcupine-http" = callPackage @@ -234525,7 +221981,6 @@ self: { ]; description = "A location accessor for porcupine to connect to HTTP sources/sinks"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "porcupine-s3" = callPackage @@ -234556,7 +222011,6 @@ self: { ]; description = "A location accessor for porcupine to connect to AWS S3 sources/sinks"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "exampleS3"; }) {}; @@ -234576,9 +222030,7 @@ self: { executableHaskellDepends = [ base warp ]; description = "A minimalist HTTP server framework written on top of wai"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "porpoise-example"; - broken = true; }) {}; "port-utils" = callPackage @@ -234632,8 +222084,6 @@ self: { testHaskellDepends = [ base containers hspec mtl QuickCheck text ]; description = "DSL for configuring Gentoo portage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "portaudio" = callPackage @@ -234663,9 +222113,7 @@ self: { ]; description = "FreeBSD ports index search and analysis tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "porte"; - broken = true; }) {}; "porter" = callPackage @@ -234798,7 +222246,6 @@ self: { libraryHaskellDepends = [ base haskell98 unix ]; description = "The Haskell Ports Library"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "ports-tools" = callPackage @@ -234843,8 +222290,6 @@ self: { ]; description = "A product-of-sums generics library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "poseidon" = callPackage @@ -234867,7 +222312,6 @@ self: { ]; description = "Simple extensible library to run SQL file against PostgreSQL database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "poseidon-postgis" = callPackage @@ -234888,7 +222332,6 @@ self: { ]; description = "Extension of Poseidon library for Postgis (Spatial and Geographic objects for PostgreSQL)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "posit" = callPackage @@ -234906,8 +222349,6 @@ self: { benchmarkHaskellDepends = [ base vector weigh ]; description = "Posit Numbers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "positive" = callPackage @@ -234936,8 +222377,6 @@ self: { testHaskellDepends = [ base ]; description = "Experiment"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "posix-acl" = callPackage @@ -234955,8 +222394,6 @@ self: { librarySystemDepends = [ acl ]; description = "Support for Posix ACL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) acl;}; "posix-api" = callPackage @@ -234978,8 +222415,6 @@ self: { description = "posix bindings"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "posix-error-codes" = callPackage @@ -235056,8 +222491,6 @@ self: { libraryHaskellDepends = [ base bytestring unix ]; description = "POSIX Realtime functionality"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "posix-socket" = callPackage @@ -235098,8 +222531,6 @@ self: { libraryHaskellDepends = [ base unix ]; description = "Low-level wrapping of POSIX waitpid(2)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "posplyu" = callPackage @@ -235117,9 +222548,7 @@ self: { ]; description = "Sleep tracker for X11, using XScreenSaver extension and manual input"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "posplyu"; - broken = true; }) {}; "possible" = callPackage @@ -235164,8 +222593,6 @@ self: { libraryHaskellDepends = [ aeson base bytestring HTTP ]; description = "A library that gets postcode information from the uk-postcodes.com"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgres-embedded" = callPackage @@ -235184,8 +222611,6 @@ self: { ]; description = "Library for easily running embedded PostgreSQL server for tests"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgres-options" = callPackage @@ -235213,8 +222638,6 @@ self: { libraryHaskellDepends = [ base bytestring postgresql-simple text ]; description = "Create a temporary database that is deleted after performing some operation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgres-websockets" = callPackage @@ -235247,9 +222670,7 @@ self: { ]; description = "Middleware to map LISTEN/NOTIFY messages to Websockets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "postgres-websockets"; - broken = true; }) {}; "postgresql-binary" = callPackage @@ -235291,8 +222712,6 @@ self: { ]; description = "Library for sharing common PostgreSQL types across Haskell PostgreSQL libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgresql-common-persistent" = callPackage @@ -235311,7 +222730,6 @@ self: { ]; description = "Persistent compatibility for postgresql-common"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "postgresql-config" = callPackage @@ -235328,8 +222746,6 @@ self: { ]; description = "Types for easy adding postgresql configuration to your program"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgresql-connector" = callPackage @@ -235369,8 +222785,6 @@ self: { libraryHaskellDepends = [ base bytestring postgresql-simple ]; description = "Cube support for postgresql-simple"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgresql-error-codes" = callPackage @@ -235448,8 +222862,6 @@ self: { ]; description = "Utilities for streaming PostgreSQL LargeObjects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgresql-ltree" = callPackage @@ -235466,8 +222878,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck text ]; description = "Types and functions for representing PostgreSQL's ltree"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgresql-migration" = callPackage @@ -235510,8 +222920,6 @@ self: { testHaskellDepends = [ base generics-sop hspec postgresql-simple ]; description = "Generic deserialization of PostgreSQL rows based on column names"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgresql-orm" = callPackage @@ -235537,9 +222945,7 @@ self: { executableHaskellDepends = [ base filepath ]; description = "An ORM (Object Relational Mapping) and migrations DSL for PostgreSQL"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "pg_migrate"; - broken = true; }) {}; "postgresql-placeholder-converter" = callPackage @@ -235602,7 +223008,6 @@ self: { ]; description = "pure Haskell PostgreSQL driver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "postgresql-query" = callPackage @@ -235634,8 +223039,6 @@ self: { ]; description = "Sql interpolating quasiquote plus some kind of primitive ORM using it"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgresql-replicant" = callPackage @@ -235657,9 +223060,7 @@ self: { testHaskellDepends = [ base binary bytestring cereal hspec ]; description = "PostgreSQL logical streaming replication library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "replicant-example"; - broken = true; }) {}; "postgresql-resilient" = callPackage @@ -235673,8 +223074,6 @@ self: { libraryHaskellDepends = [ base exceptions postgresql-simple ]; description = "Automatic re-connection support for PostgreSQL"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgresql-schema" = callPackage @@ -235774,8 +223173,6 @@ self: { ]; description = "FFI-like bindings for PostgreSQL stored functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgresql-simple-interpolate" = callPackage @@ -235814,7 +223211,6 @@ self: { ]; description = "Instances for using ltree with postgresql-simple"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "postgresql-simple-migration" = callPackage @@ -235840,9 +223236,7 @@ self: { testHaskellDepends = [ base bytestring hspec postgresql-simple ]; description = "PostgreSQL Schema Migrations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "migrate"; - broken = true; }) {}; "postgresql-simple-named" = callPackage @@ -235862,8 +223256,6 @@ self: { ]; description = "Implementation of named parameters for `postgresql-simple` library"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgresql-simple-opts" = callPackage @@ -235912,7 +223304,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A PostgreSQL backed queue"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "postgresql-simple-sop" = callPackage @@ -235924,8 +223315,6 @@ self: { libraryHaskellDepends = [ base generics-sop postgresql-simple ]; description = "Generic functions for postgresql-simple"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgresql-simple-typed" = callPackage @@ -235942,7 +223331,6 @@ self: { ]; description = "Typed extension for PostgreSQL simple"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "postgresql-simple-url" = callPackage @@ -236021,8 +223409,6 @@ self: { libraryHaskellDepends = [ base monad-logger postgresql-tx ]; description = "postgresql-tx interfacing for use with monad-logger"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgresql-tx-query" = callPackage @@ -236042,7 +223428,6 @@ self: { ]; description = "postgresql-tx interfacing for use with postgresql-query"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "postgresql-tx-simple" = callPackage @@ -236058,8 +223443,6 @@ self: { ]; description = "postgresql-tx interfacing for use with postgresql-simple"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgresql-tx-squeal" = callPackage @@ -236076,7 +223459,6 @@ self: { ]; description = "postgresql-tx interfacing for use with squeal-postgresql"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "postgresql-tx-squeal-compat-simple" = callPackage @@ -236090,7 +223472,6 @@ self: { ]; description = "Connection interop from postgresql-simple connections to postgresql-libpq connections"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "postgresql-typed" = callPackage @@ -236166,8 +223547,6 @@ self: { ]; description = "postgresql-typed operations lifted to any instance of MonadBase or MonadBaseControl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postgrest" = callPackage @@ -236212,7 +223591,6 @@ self: { ]; description = "REST API for any Postgres database"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "postgrest"; }) {}; @@ -236249,9 +223627,7 @@ self: { ]; description = "PostgREST extension to map LISTEN/NOTIFY messages to Websockets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "postgrest-ws"; - broken = true; }) {}; "postie" = callPackage @@ -236270,8 +223646,6 @@ self: { ]; description = "SMTP server library to receive emails from within Haskell programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postmark" = callPackage @@ -236290,7 +223664,6 @@ self: { ]; description = "Library for postmarkapp.com HTTP Api"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "postmark-streams" = callPackage @@ -236307,8 +223680,6 @@ self: { ]; description = "Send email via Postmark using io-streams"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "postmaster" = callPackage @@ -236329,9 +223700,7 @@ self: { ]; description = "Postmaster ESMTP Server"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "postmaster"; - broken = true; }) {}; "potato-tool" = callPackage @@ -236345,9 +223714,7 @@ self: { executableHaskellDepends = [ base binary bytestring split ]; description = "Command line Dreamcast VMU filesystem toolset"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "potato-tool"; - broken = true; }) {}; "potoki" = callPackage @@ -236359,7 +223726,6 @@ self: { libraryHaskellDepends = [ potoki-core ]; description = "Simple streaming in IO"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "potoki-cereal" = callPackage @@ -236382,7 +223748,6 @@ self: { ]; description = "Streaming serialization"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "potoki-conduit" = callPackage @@ -236405,7 +223770,6 @@ self: { ]; description = "Integration of \"potoki\" and \"conduit\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "potoki-core" = callPackage @@ -236433,8 +223797,6 @@ self: { benchmarkHaskellDepends = [ criterion rerebase ]; description = "Low-level components of \"potoki\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "potoki-hasql" = callPackage @@ -236450,7 +223812,6 @@ self: { ]; description = "Integration of \"potoki\" and \"hasql\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "potoki-zlib" = callPackage @@ -236464,7 +223825,6 @@ self: { ]; description = "Streaming ZLib decompression"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "potrace" = callPackage @@ -236517,8 +223877,6 @@ self: { ]; description = "PowerDNS API bindings for api/v1"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "powermate" = callPackage @@ -236533,8 +223891,6 @@ self: { executableHaskellDepends = [ base ]; description = "bindings for Griffin PowerMate USB"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "powerpc" = callPackage @@ -236546,8 +223902,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Tools for PowerPC programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "powerqueue" = callPackage @@ -236605,8 +223959,6 @@ self: { benchmarkSystemDepends = [ leveldb snappy ]; description = "A high performance in memory and LevelDB backend for powerqueue"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) leveldb; inherit (pkgs) snappy;}; "powerqueue-sqs" = callPackage @@ -236620,7 +223972,6 @@ self: { ]; description = "A Amazon SQS backend for powerqueue"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ppm" = callPackage @@ -236643,8 +223994,6 @@ self: { libraryHaskellDepends = [ base boxes ]; description = "A library for pretty printing Records"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pptable" = callPackage @@ -236679,8 +224028,6 @@ self: { libraryHaskellDepends = [ base QuickCheck random stm ]; description = "Parallel batch driver for QuickCheck"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pqueue" = callPackage @@ -236729,7 +224076,6 @@ self: { ]; description = "Fully encapsulated monad transformers with queuelike functionality"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "practice-room" = callPackage @@ -236748,7 +224094,6 @@ self: { ]; description = "Practice Room"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "practice-room"; }) {}; @@ -236770,8 +224115,6 @@ self: { ]; description = "A pragmatic Prelude"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pragmatic-show" = callPackage @@ -236804,8 +224147,6 @@ self: { testHaskellDepends = [ aeson base lens ]; description = "A first class record field library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "preamble" = callPackage @@ -236827,8 +224168,6 @@ self: { ]; description = "Yet another prelude"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "precis" = callPackage @@ -236847,9 +224186,7 @@ self: { ]; description = "Diff Cabal packages"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "precis"; - broken = true; }) {}; "precursor" = callPackage @@ -236866,8 +224203,6 @@ self: { testHaskellDepends = [ base doctest QuickCheck ]; description = "Prelude replacement"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pred-set" = callPackage @@ -236879,7 +224214,6 @@ self: { libraryHaskellDepends = [ base hashable hashtables HSet ]; description = "Simple cached predicates"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pred-trie" = callPackage @@ -236908,7 +224242,6 @@ self: { ]; description = "Predicative tries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "predicate-class" = callPackage @@ -236920,8 +224253,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Helper class for passing context along a predicate value"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "predicate-transformers" = callPackage @@ -236959,8 +224290,6 @@ self: { ]; description = "Predicates, Refinement types and Dsl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "predicates" = callPackage @@ -237004,8 +224333,6 @@ self: { ]; description = "Evaluate and display trees of predicates"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prednote-test" = callPackage @@ -237028,7 +224355,6 @@ self: { ]; description = "Tests and QuickCheck generators to accompany prednote"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "prefetch" = callPackage @@ -237095,7 +224421,6 @@ self: { ]; description = "A library for building a prefork-style server quickly"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "pregame" = callPackage @@ -237115,8 +224440,6 @@ self: { ]; description = "Prelude for applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prelate" = callPackage @@ -237136,7 +224459,6 @@ self: { ]; description = "A Prelude"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "preliminaries" = callPackage @@ -237158,8 +224480,6 @@ self: { ]; description = "A larger alternative to the Prelude"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prelude-compat" = callPackage @@ -237205,8 +224525,6 @@ self: { libraryHaskellDepends = [ base comonad logict transformers ]; description = "Another kind of alternate Prelude file"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prelude-plus" = callPackage @@ -237220,8 +224538,6 @@ self: { libraryHaskellDepends = [ base utf8-string ]; description = "Prelude for rest of us"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prelude-prime" = callPackage @@ -237285,8 +224601,6 @@ self: { ]; description = "Preprocess Haskell Repositories"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "preprocessor" = callPackage @@ -237307,8 +224621,6 @@ self: { ]; description = "Remove cpp annotations to get the source ready for static analysis"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "preprocessor-tools" = callPackage @@ -237360,8 +224672,6 @@ self: { benchmarkToolDepends = [ alex happy ]; description = "safe PostgreSQL queries using Quasiquoters"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "presburger" = callPackage @@ -237376,8 +224686,6 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "A decision procedure for quantifier-free linear arithmetic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "present" = callPackage @@ -237389,8 +224697,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Make presentations for data types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "press" = callPackage @@ -237402,8 +224708,6 @@ self: { libraryHaskellDepends = [ base containers json mtl parsec ]; description = "Text template library targeted at the web / HTML generation"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "presto-hdbc" = callPackage @@ -237423,7 +224727,6 @@ self: { ]; description = "An HDBC connector for Presto"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "prettify" = callPackage @@ -237479,8 +224782,6 @@ self: { ]; description = "Pretty-printing library"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pretty-diff" = callPackage @@ -237497,7 +224798,6 @@ self: { ]; description = "Pretty printing a diff of two values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pretty-display" = callPackage @@ -237551,9 +224851,7 @@ self: { ]; description = "Functionality for beautifying GHCi"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pp-ghci"; - broken = true; }) {}; "pretty-hex" = callPackage @@ -237592,8 +224890,6 @@ self: { libraryHaskellDepends = [ base text ]; description = "Tracking and highlighting of locations in source files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pretty-ncols" = callPackage @@ -237607,8 +224903,6 @@ self: { libraryHaskellDepends = [ base pretty ]; description = "A implementation of multi-column layout w/ Text.PrettyPrint"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pretty-relative-time" = callPackage @@ -237775,7 +225069,6 @@ self: { ]; description = "Pretty print charts from ghci"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "prettyclass" = callPackage @@ -237975,8 +225268,6 @@ self: { libraryHaskellDepends = [ base prettyprinter vty ]; description = "prettyprinter backend for vty"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "preview" = callPackage @@ -237992,7 +225283,6 @@ self: { ]; description = "The method of previewing data (instead of wholly show-ing it)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "prim" = callPackage @@ -238004,8 +225294,6 @@ self: { libraryHaskellDepends = [ ghc-prim ]; description = "An ergonomic but conservative interface to ghc-prim"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prim-array" = callPackage @@ -238019,8 +225307,6 @@ self: { libraryHaskellDepends = [ base ghc-prim primitive semigroups ]; description = "Primitive byte array with type variable"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prim-instances" = callPackage @@ -238033,8 +225319,6 @@ self: { testHaskellDepends = [ base QuickCheck quickcheck-classes ]; description = "Prim typeclass instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prim-ref" = callPackage @@ -238046,8 +225330,6 @@ self: { libraryHaskellDepends = [ base ghc-prim primitive semigroups ]; description = "Primitive byte array with type variable"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prim-spoon" = callPackage @@ -238095,8 +225377,6 @@ self: { ]; description = "Primeval world of Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "primal-memory" = callPackage @@ -238116,7 +225396,6 @@ self: { ]; description = "Unified interface for memory managemenet"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "prime" = callPackage @@ -238129,8 +225408,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "prime number tools"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "primecount" = callPackage @@ -238171,8 +225448,6 @@ self: { benchmarkHaskellDepends = [ base criterion primes ]; description = "Type-safe prime numbers"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "primesieve" = callPackage @@ -238237,8 +225512,6 @@ self: { testHaskellDepends = [ base primitive primitive-unlifted ]; description = "Wrappers for primops around atomic operations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "primitive-checked" = callPackage @@ -238250,8 +225523,6 @@ self: { libraryHaskellDepends = [ base primitive ]; description = "primitive functions with bounds-checking"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "primitive-containers" = callPackage @@ -238279,7 +225550,6 @@ self: { ]; description = "containers backed by arrays"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "primitive-convenience" = callPackage @@ -238291,8 +225561,6 @@ self: { libraryHaskellDepends = [ primitive ]; description = "convenience class for PrimMonad m/PrimState m"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "primitive-extras" = callPackage @@ -238327,8 +225595,6 @@ self: { testHaskellDepends = [ base primitive QuickCheck ]; description = "using the `Prim` interface for the FFI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "primitive-indexed" = callPackage @@ -238340,8 +225606,6 @@ self: { libraryHaskellDepends = [ base primitive ]; testHaskellDepends = [ base doctest QuickCheck ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "primitive-maybe" = callPackage @@ -238359,8 +225623,6 @@ self: { ]; description = "Arrays of Maybes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "primitive-offset" = callPackage @@ -238383,8 +225645,6 @@ self: { libraryHaskellDepends = [ base primitive ]; description = "Unboxed variables for `Prim` values"; license = lib.licenses.cc0; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "primitive-serial" = callPackage @@ -238410,8 +225670,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq random vector ]; description = "SIMD data types and functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "primitive-slice" = callPackage @@ -238423,8 +225681,6 @@ self: { libraryHaskellDepends = [ base primitive primitive-unlifted ]; description = "Slices of primitive arrays"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "primitive-sort" = callPackage @@ -238448,8 +225704,6 @@ self: { ]; description = "Sort primitive arrays"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "primitive-stablename" = callPackage @@ -238461,8 +225715,6 @@ self: { libraryHaskellDepends = [ base primitive ]; description = "primitive operations on StableNames"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "primitive-unaligned" = callPackage @@ -238533,7 +225785,6 @@ self: { ]; description = "ImageBoard on Happstack and HSP"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "primula-board"; }) {}; @@ -238553,7 +225804,6 @@ self: { ]; description = "Jabber-bot for primula-board ImageBoard"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "primula-bot"; }) {}; @@ -238592,8 +225842,6 @@ self: { ]; description = "Classes and data structures complementing the singletons library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "print-console-colors" = callPackage @@ -238620,8 +225868,6 @@ self: { libraryHaskellDepends = [ base split ]; description = "Debug print formatting library"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "print-info" = callPackage @@ -238633,8 +225879,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Can be used to coordinate the printing output"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "printcess" = callPackage @@ -238651,8 +225895,6 @@ self: { ]; description = "Pretty printing with indentation, mixfix operators, and automatic line breaks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "printf-mauke" = callPackage @@ -238694,8 +225936,6 @@ self: { ]; description = "The Artist Formerly Known as Prints"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "printxosd" = callPackage @@ -238721,8 +225961,6 @@ self: { libraryHaskellDepends = [ base containers queue reord stateref ]; description = "Simple implementation of a priority queue"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "priority-sync" = callPackage @@ -238813,8 +226051,6 @@ self: { doHaddock = false; description = "Abstract syntax for writing documents"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pro-source" = callPackage @@ -238836,8 +226072,6 @@ self: { ]; description = "Utilities for tracking source locations"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prob" = callPackage @@ -238874,9 +226108,7 @@ self: { executableHaskellDepends = [ base extensible lens ]; description = "A library for modular probabilistic modelling"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "prob-fx"; - broken = true; }) {}; "probability" = callPackage @@ -238912,8 +226144,6 @@ self: { ]; description = "Easy and reasonably efficient probabilistic programming and random generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "proc" = callPackage @@ -238932,7 +226162,6 @@ self: { ]; description = "Parse process information for Linux"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "proc-net" = callPackage @@ -238983,8 +226212,6 @@ self: { ]; description = "Conduits for processes (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "process-extras" = callPackage @@ -239020,7 +226247,6 @@ self: { ]; description = "IterIO Process Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "process-leksah" = callPackage @@ -239032,8 +226258,6 @@ self: { libraryHaskellDepends = [ base directory filepath unix ]; description = "Process libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "process-listlike" = callPackage @@ -239050,8 +226274,6 @@ self: { ]; description = "Process extras"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "process-progress" = callPackage @@ -239068,7 +226290,6 @@ self: { ]; description = "Run a process and do reportsing on its progress"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "process-qq" = callPackage @@ -239085,7 +226306,6 @@ self: { ]; description = "Quasi-Quoters for exec process"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "process-sequential" = callPackage @@ -239097,8 +226317,6 @@ self: { libraryHaskellDepends = [ base directory mmsyn3 process sublists ]; description = "A test suite for the complex multi files multi level processment"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "process-streaming" = callPackage @@ -239130,7 +226348,6 @@ self: { ]; description = "Streaming interface to system processes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "processing" = callPackage @@ -239149,8 +226366,6 @@ self: { ]; description = "Web graphic applications with processing.js."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "processing-for-haskell" = callPackage @@ -239178,8 +226393,6 @@ self: { libraryHaskellDepends = [ base binary bytestring process ]; description = "C bindings for the gnu-extension functions process_vm_readv and process_vm_writev"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "processor-creative-kit" = callPackage @@ -239222,7 +226435,6 @@ self: { libraryHaskellDepends = [ base procrastinating-variable ]; description = "Pure structures that can be incrementally created in impure code"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "procrastinating-variable" = callPackage @@ -239234,8 +226446,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell values that cannot be evaluated immediately"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "procstat" = callPackage @@ -239247,8 +226457,6 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring ]; description = "get information on processes in Linux"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "proctest" = callPackage @@ -239285,7 +226493,6 @@ self: { ]; description = "Simple streaming datatype"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "product" = callPackage @@ -239299,7 +226506,6 @@ self: { libraryHaskellDepends = [ base category ]; description = "Product category"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "product-isomorphic" = callPackage @@ -239312,8 +226518,6 @@ self: { testHaskellDepends = [ base template-haskell ]; description = "Weaken applicative functor on products"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "product-profunctors" = callPackage @@ -239347,9 +226551,7 @@ self: { executableHaskellDepends = [ base optparse-applicative ]; description = "Generate flamegraphs from ghc RTS .prof files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "prof-flamegraph"; - broken = true; }) {}; "prof2dot" = callPackage @@ -239365,7 +226567,6 @@ self: { ]; description = "Convert GHC profiles into GraphViz's dot format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "prof2dot"; }) {}; @@ -239385,8 +226586,6 @@ self: { ]; description = "generate pretty source from time/allocation profiles"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "profiterole" = callPackage @@ -239428,9 +226627,7 @@ self: { ]; description = "Treemap visualiser for GHC prof files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "profiteur"; - broken = true; }) {}; "profunctor-arrows" = callPackage @@ -239481,8 +226678,6 @@ self: { ]; description = "Monadic bidirectional programming"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "profunctor-optics" = callPackage @@ -239560,8 +226755,6 @@ self: { libraryHaskellDepends = [ ansi-terminal async base stm ]; description = "Live diagnostics for concurrent activity"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "progress-reporting" = callPackage @@ -239575,8 +226768,6 @@ self: { libraryHaskellDepends = [ base deepseq mtl time ]; description = "Functionality for reporting function progress"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "progressbar" = callPackage @@ -239590,7 +226781,6 @@ self: { libraryHaskellDepends = [ base io-reactive ]; description = "Progressbar API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "progression" = callPackage @@ -239607,8 +226797,6 @@ self: { ]; description = "Automates the recording and graphing of criterion benchmarks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "progressive" = callPackage @@ -239627,9 +226815,7 @@ self: { ]; description = "Multilabel classification model which learns sequentially (online)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "progressive"; - broken = true; }) {}; "proj4-hs-bindings" = callPackage @@ -239642,8 +226828,6 @@ self: { librarySystemDepends = [ proj ]; description = "Haskell bindings for the Proj4 C dynamic library"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) proj;}; "project-forge" = callPackage @@ -239662,8 +226846,6 @@ self: { testHaskellDepends = [ aeson base filepath tasty tasty-hunit ]; description = "A project initialization library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "project-m36" = callPackage @@ -239739,8 +226921,6 @@ self: { ]; description = "Relational Algebra Engine"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "project-template" = callPackage @@ -239781,8 +226961,6 @@ self: { ]; description = "Go to README.md"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "projection" = callPackage @@ -239824,8 +227002,6 @@ self: { ]; description = "Profunctor-based lightweight implementation of optics"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prolog" = callPackage @@ -239842,8 +227018,6 @@ self: { ]; description = "A Prolog interpreter written in Haskell"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prolog-graph" = callPackage @@ -239861,7 +227035,6 @@ self: { ]; description = "A command line tool to visualize query resolution in Prolog"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "hsprolog-graph"; }) {}; @@ -239874,7 +227047,6 @@ self: { libraryHaskellDepends = [ base fgl graphviz mtl prolog text ]; description = "Generating images of resolution trees for Prolog queries"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "prologue" = callPackage @@ -239900,7 +227072,6 @@ self: { ]; description = "Better, more general Prelude exporting common utilities"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "prolude" = callPackage @@ -239922,7 +227093,6 @@ self: { ]; description = "ACI Learning's custom prelude"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "prometheus" = callPackage @@ -239940,8 +227110,6 @@ self: { ]; description = "Prometheus Haskell Client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prometheus-client" = callPackage @@ -239998,9 +227166,7 @@ self: { benchmarkHaskellDepends = [ base criterion text ]; description = "Instrument applications with metrics and publish/push to Prometheus"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "test"; - broken = true; }) {}; "prometheus-metrics-ghc" = callPackage @@ -240033,8 +227199,6 @@ self: { ]; description = "Export metrics from /proc for the current process"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prometheus-wai-middleware" = callPackage @@ -240055,7 +227219,6 @@ self: { ]; description = "Instrument a wai application with various metrics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "prometheus-wai-middleware-example"; }) {}; @@ -240068,8 +227231,6 @@ self: { libraryHaskellDepends = [ async base ]; description = "A monadic interface for async"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "promises" = callPackage @@ -240112,8 +227273,6 @@ self: { ]; description = "A library for interfacing with the CMU Pronouncing Dictionary"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "proof-assistant-bot" = callPackage @@ -240134,7 +227293,6 @@ self: { executableHaskellDepends = [ base ]; description = "Telegram bot for proof assistants"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "proof-assistant-bot"; }) {}; @@ -240147,8 +227305,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Proof Combinators used in Liquid Haskell for Theorem Proving"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prop-unit" = callPackage @@ -240164,8 +227320,6 @@ self: { ]; description = "Conveniences for using Hedgehog as a unit test runner"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "propane" = callPackage @@ -240181,7 +227335,6 @@ self: { ]; description = "Functional synthesis of images and animations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "propeller" = callPackage @@ -240226,8 +227379,6 @@ self: { libraryHaskellDepends = [ base ]; description = "check quickCheck properties in real time"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "property" = callPackage @@ -240258,8 +227409,6 @@ self: { ]; description = "Apple property list parser"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "proplang" = callPackage @@ -240271,7 +227420,6 @@ self: { libraryHaskellDepends = [ base glade glib gtk ]; description = "A library for functional GUI development"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "props" = callPackage @@ -240297,8 +227445,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; description = "Proquints: Identifiers that are Readable, Spellable, and Pronounceable"; license = "EUPL-1.2"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prosidy" = callPackage @@ -240326,8 +227472,6 @@ self: { ]; description = "A simple language for writing documents"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prosidyc" = callPackage @@ -240344,7 +227488,6 @@ self: { ]; description = "A DSL for processing Prosidy documents"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "prospect" = callPackage @@ -240380,8 +227523,6 @@ self: { ]; description = "Bindings to the Prosper marketplace API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "proteaaudio" = callPackage @@ -240400,8 +227541,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Simple audio library for Windows, Linux, OSX"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {libpulse = null; libpulse-simple = null; inherit (pkgs) libpulseaudio;}; @@ -240489,8 +227628,6 @@ self: { ]; description = "Arbitrary instances for proto-lens"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "proto-lens-combinators" = callPackage @@ -240512,8 +227649,6 @@ self: { ]; description = "Utilities functions to proto-lens"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "proto-lens-descriptors" = callPackage @@ -240530,7 +227665,6 @@ self: { ]; description = "Protocol buffers for describing the definitions of messages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "proto-lens-jsonpb" = callPackage @@ -240578,7 +227712,6 @@ self: { libraryToolDepends = [ proto-lens-protoc protobuf ]; description = "Basic protocol buffer message types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) protobuf;}; "proto-lens-protoc" = callPackage @@ -240600,7 +227733,6 @@ self: { ]; description = "Protocol buffer compiler for the proto-lens library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "proto-lens-protoc"; }) {inherit (pkgs) protobuf;}; @@ -240634,7 +227766,6 @@ self: { ]; description = "Cabal support for codegen with proto-lens"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "proto3-suite" = callPackage @@ -240679,7 +227810,6 @@ self: { ]; description = "A higher-level API to the proto3-wire library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "proto3-wire" = callPackage @@ -240705,7 +227835,6 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion random ]; description = "A low-level implementation of the Protocol Buffers (version 3) wire format"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "protobuf" = callPackage @@ -240767,7 +227896,6 @@ self: { ]; description = "Protocol Buffers via C++"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "protobuf-native-test"; }) {}; @@ -240806,8 +227934,6 @@ self: { libraryHaskellDepends = [ base freer-indexed singletons ]; description = "Model distributed system as type-level multi-party protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "protocol-buffers" = callPackage @@ -240825,8 +227951,6 @@ self: { ]; description = "Parse Google Protocol Buffer specifications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "protocol-buffers-descriptor" = callPackage @@ -240843,7 +227967,6 @@ self: { ]; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "protocol-buffers-descriptor-fork" = callPackage @@ -240860,7 +227983,6 @@ self: { ]; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "protocol-buffers-fork" = callPackage @@ -240877,8 +227999,6 @@ self: { ]; description = "Parse Google Protocol Buffer specifications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "protocol-radius" = callPackage @@ -240945,8 +228065,6 @@ self: { ]; description = "Protolude with lifted-base and lifted-async"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "proton" = callPackage @@ -240964,7 +228082,6 @@ self: { transformers ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "proton-haskell" = callPackage @@ -240983,8 +228100,6 @@ self: { ]; description = "Simple XML templating library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prototype" = callPackage @@ -240996,8 +228111,6 @@ self: { libraryHaskellDepends = [ base monads-tf ]; description = "prototype-based programming on Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prove-everywhere-server" = callPackage @@ -241018,9 +228131,7 @@ self: { ]; description = "The server for ProveEverywhere"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "prove-everywhere-server"; - broken = true; }) {}; "provenience" = callPackage @@ -241039,8 +228150,6 @@ self: { ]; description = "Computations that automatically track data dependencies"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "proxied" = callPackage @@ -241074,8 +228183,6 @@ self: { libraryHaskellDepends = [ base tagged ]; description = "A library for kind-polymorphic manipulation and inspection of Proxy values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "proxy-mapping" = callPackage @@ -241087,8 +228194,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Mapping of Proxy Types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "prune-juice" = callPackage @@ -241121,9 +228226,7 @@ self: { ]; description = "Prune unused Haskell dependencies"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "prune-juice"; - broken = true; }) {}; "psc-ide" = callPackage @@ -241153,8 +228256,6 @@ self: { ]; description = "Language support for the PureScript programming language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pseudo-boolean" = callPackage @@ -241192,8 +228293,6 @@ self: { libraryHaskellDepends = [ base semigroups ]; description = "A tagged rose-tree with short circuited unique leaves"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pseudomacros" = callPackage @@ -241218,8 +228317,6 @@ self: { ]; description = "Yet another custom Prelude"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "psql" = callPackage @@ -241245,7 +228342,6 @@ self: { ]; description = "PostgreSQL client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "psql-helpers" = callPackage @@ -241309,9 +228405,7 @@ self: { executableHaskellDepends = [ base text ]; description = "A Haskell Implementation of the Porter Stemmer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pstemmer-test-exe"; - broken = true; }) {}; "psx" = callPackage @@ -241324,8 +228418,6 @@ self: { testHaskellDepends = [ async base tasty tasty-hunit ]; description = "Integrate libpsx with the GHC RTS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ptera" = callPackage @@ -241349,7 +228441,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A parser generator"; license = "(Apache-2.0 OR MPL-2.0)"; - hydraPlatforms = lib.platforms.none; }) {}; "ptera-core" = callPackage @@ -241373,7 +228464,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A parser generator"; license = "(Apache-2.0 OR MPL-2.0)"; - hydraPlatforms = lib.platforms.none; }) {}; "ptera-th" = callPackage @@ -241399,7 +228489,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A parser generator"; license = "(Apache-2.0 OR MPL-2.0)"; - hydraPlatforms = lib.platforms.none; }) {}; "pthread" = callPackage @@ -241482,8 +228571,6 @@ self: { ]; description = "Pipe stdin to a redis pub/sub channel"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "publicsuffix" = callPackage @@ -241499,8 +228586,6 @@ self: { benchmarkHaskellDepends = [ base criterion random ]; description = "The publicsuffix list exposed as proper Haskell types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "publicsuffixlist" = callPackage @@ -241537,8 +228622,6 @@ self: { testHaskellDepends = [ base cereal HUnit publicsuffixlist ]; description = "Create the publicsuffixlist package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "publish" = callPackage @@ -241568,8 +228651,6 @@ self: { ]; description = "Publishing tools for papers, books, and presentations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pubnub" = callPackage @@ -241602,8 +228683,6 @@ self: { ]; description = "PubNub Haskell SDK"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pubsub" = callPackage @@ -241622,7 +228701,6 @@ self: { executableHaskellDepends = [ fastcgi ]; description = "A library for Google/SixApart pubsub hub interaction"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "puffytools" = callPackage @@ -241652,7 +228730,6 @@ self: { ]; description = "A CLI assistant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ptk"; }) {}; @@ -241670,8 +228747,6 @@ self: { testHaskellDepends = [ base bytestring tasty tasty-hunit ]; description = "pugixml binding"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pugs-DrIFT" = callPackage @@ -241695,9 +228770,7 @@ self: { ]; description = "DrIFT with pugs-specific rules"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pugs-DrIFT"; - broken = true; }) {}; "pugs-HsSyck" = callPackage @@ -241710,8 +228783,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Fast, lightweight YAML loader and dumper"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pugs-compat" = callPackage @@ -241731,7 +228802,6 @@ self: { ]; description = "Portable Haskell/POSIX layer for Pugs"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "pugs-hsregex" = callPackage @@ -241743,7 +228813,6 @@ self: { libraryHaskellDepends = [ array base haskell98 ]; description = "Haskell PCRE binding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pulse" = callPackage @@ -241800,7 +228869,6 @@ self: { ]; description = "Multilingual unsupervised sentence tokenization with Punkt"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "punycode" = callPackage @@ -241835,7 +228903,6 @@ self: { ]; description = "A program that displays the puppet resources associated to a node given .pp files."; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "puppetresources"; }) {}; @@ -241855,7 +228922,6 @@ self: { ]; description = "Another pure-haskell CDB (Constant Database) implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "pure-fft" = callPackage @@ -241880,8 +228946,6 @@ self: { libraryHaskellDepends = [ base containers mtl safe ]; description = "Pure IO monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pure-priority-queue" = callPackage @@ -241893,8 +228957,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A pure priority queue"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pure-priority-queue-tests" = callPackage @@ -241913,7 +228975,6 @@ self: { ]; description = "Tests for the pure-priority-queue package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pure-priority-queue-tests"; }) {}; @@ -241960,9 +229021,7 @@ self: { ]; description = "A Haskell-only implementation of zlib / DEFLATE"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "deflate"; - broken = true; }) {}; "pureMD5" = callPackage @@ -242030,7 +229089,6 @@ self: { executableHaskellDepends = [ base ]; description = "Nix backend for PureScript. Transpile PureScript code to Nix."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "purenix"; }) {}; @@ -242121,7 +229179,6 @@ self: { doCheck = false; description = "PureScript Programming Language Compiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "purs"; }) {}; @@ -242140,8 +229197,6 @@ self: { ]; description = "PureScript Programming Language Abstract Syntax Tree"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "purescript-bridge" = callPackage @@ -242199,8 +229254,6 @@ self: { libraryToolDepends = [ happy ]; description = "PureScript Programming Language Concrete Syntax Tree"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "purescript-iso" = callPackage @@ -242230,7 +229283,6 @@ self: { ]; description = "Isomorphic trivial data type definitions over JSON"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "purescript-tsd-gen" = callPackage @@ -242253,9 +229305,7 @@ self: { ]; description = "TypeScript Declaration File (.d.ts) generator for PureScript"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "purs-tsd-gen"; - broken = true; }) {}; "pursuit-client" = callPackage @@ -242272,7 +229322,6 @@ self: { executableHaskellDepends = [ base text ]; description = "A cli client for pursuit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pursuit-search"; }) {}; @@ -242296,8 +229345,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Build server rendered, interactive websites"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "push-notifications" = callPackage @@ -242317,8 +229364,6 @@ self: { ]; description = "Push notifications for Android and iOS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "push-notify" = callPackage @@ -242342,7 +229387,6 @@ self: { ]; description = "A server-side library for sending push notifications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "push-notify-apn" = callPackage @@ -242368,7 +229412,6 @@ self: { testHaskellDepends = [ aeson base hspec ]; description = "Send push notifications to mobile iOS devices"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sendapn"; }) {}; @@ -242389,7 +229432,6 @@ self: { ]; description = "A server-side library for sending/receiving push notifications through CCS (Google Cloud Messaging)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "push-notify-general" = callPackage @@ -242408,7 +229450,6 @@ self: { ]; description = "A general library for sending/receiving push notif. through dif. services."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "pushbullet" = callPackage @@ -242425,8 +229466,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Simple push support for pushbullet"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pushbullet-types" = callPackage @@ -242443,8 +229482,6 @@ self: { ]; description = "Datatypes used by the Pushbullet APIs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pusher-haskell" = callPackage @@ -242461,8 +229498,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "A Pusher.com client written in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pusher-http-haskell" = callPackage @@ -242503,8 +229538,6 @@ self: { ]; description = "Implementation of the Pusher WebSocket protocol"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pushme" = callPackage @@ -242530,9 +229563,7 @@ self: { ]; description = "Tool to synchronize directories with rsync, zfs or git-annex"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pushme"; - broken = true; }) {}; "pushover" = callPackage @@ -242569,8 +229600,6 @@ self: { ]; description = "Put-based lens library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "puzzle-draw" = callPackage @@ -242602,8 +229631,6 @@ self: { ]; description = "Creating graphics for pencil puzzles"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "puzzle-draw-cmdline" = callPackage @@ -242622,7 +229649,6 @@ self: { ]; description = "Creating graphics for pencil puzzles, command line tools"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "drawpuzzle"; }) {}; @@ -242661,7 +229687,6 @@ self: { executableSystemDepends = [ libdevil ]; description = "A photo viewer daemon application with remote controlling abilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libdevil;}; "pvector" = callPackage @@ -242688,8 +229713,6 @@ self: { ]; description = "Fast persistent vectors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "pvss" = callPackage @@ -242797,8 +229820,6 @@ self: { libraryPkgconfigDepends = [ python ]; description = "Call python inline from haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {python = null;}; "pyfi" = callPackage @@ -242815,8 +229836,6 @@ self: { libraryPkgconfigDepends = [ python ]; description = "Call python inline from haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {python = null;}; "python-pickle" = callPackage @@ -242840,9 +229859,7 @@ self: { ]; description = "Serialization/deserialization using Python Pickle format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pickle"; - broken = true; }) {}; "q4c12-twofinger" = callPackage @@ -242861,8 +229878,6 @@ self: { ]; description = "Efficient alternating finger trees"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "qbe" = callPackage @@ -242896,8 +229911,6 @@ self: { ]; description = "Compile time generation of operation invariance tests for QuickCheck"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "qchas" = callPackage @@ -242927,8 +229940,6 @@ self: { librarySystemDepends = [ qd ]; description = "double-double and quad-double number type via libqd"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {qd = null;}; "qd-vec" = callPackage @@ -242940,7 +229951,6 @@ self: { libraryHaskellDepends = [ base qd Vec ]; description = "'Vec' instances for 'qd' types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "qed" = callPackage @@ -242959,8 +229969,6 @@ self: { testHaskellDepends = [ base transformers ]; description = "Simple prover"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "qhs" = callPackage @@ -242984,7 +229992,6 @@ self: { ]; description = "Command line tool qhs, SQL queries on CSV and TSV files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "qhs"; }) {}; @@ -243014,7 +230021,6 @@ self: { ]; description = "Delaunay triangulation, Voronoi diagrams and convex hulls"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "qhull-simple" = callPackage @@ -243027,8 +230033,6 @@ self: { librarySystemDepends = [ qhull ]; description = "Simple bindings to Qhull, a library for computing convex hulls"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) qhull;}; "qif" = callPackage @@ -243048,8 +230052,6 @@ self: { ]; description = "A simple QIF file format parser / printer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "qlinear" = callPackage @@ -243070,8 +230072,6 @@ self: { ]; description = "Typesafe library for linear algebra"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "qm-interpolated-string" = callPackage @@ -243119,7 +230119,6 @@ self: { ]; description = "Decrypt files encrypted by QNAP's Hybrid Backup Sync"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "qnap-decrypt"; }) {}; @@ -243171,8 +230170,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Library to generate images"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) qrencode;}; "qr-repa" = callPackage @@ -243192,7 +230189,6 @@ self: { executableHaskellDepends = [ base bytestring ]; description = "Library to generate QR codes from bytestrings and objects and scale image files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "qrpipe"; }) {}; @@ -243206,8 +230202,6 @@ self: { libraryHaskellDepends = [ array base containers mtl vector ]; description = "QR Code library in pure Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "qrcode-core" = callPackage @@ -243253,8 +230247,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "quantity semaphores"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "qt" = callPackage @@ -243271,8 +230263,6 @@ self: { ]; description = "Qt bindings"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {qtc_core = null; qtc_gui = null; qtc_network = null; qtc_opengl = null; qtc_script = null; qtc_tools = null;}; @@ -243291,7 +230281,6 @@ self: { librarySystemDepends = [ qtbase ]; description = "Qt bindings for Haskell - C++ library"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs.qt5) qtbase;}; "qtah-examples" = callPackage @@ -243309,7 +230298,6 @@ self: { ]; description = "Example programs for Qtah Qt bindings"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "qtah-examples"; }) {}; @@ -243331,7 +230319,6 @@ self: { executableHaskellDepends = [ base ]; description = "Generator for Qtah Qt bindings"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "qtah-generator"; }) {}; @@ -243354,7 +230341,6 @@ self: { testHaskellDepends = [ base hoppy-runtime HUnit ]; description = "Qt bindings for Haskell"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs.qt5) qtbase;}; "quaalude" = callPackage @@ -243415,8 +230401,6 @@ self: { testHaskellDepends = [ base text ]; description = "GHC plugin to automatically insert qualified imports"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quandl-api" = callPackage @@ -243434,8 +230418,6 @@ self: { ]; description = "Quandl.com API library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quantfin" = callPackage @@ -243455,7 +230437,6 @@ self: { executableHaskellDepends = [ base ]; description = "Quant finance library in pure Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -243473,8 +230454,6 @@ self: { ]; description = "Rage against the quantification"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quantities" = callPackage @@ -243520,8 +230499,6 @@ self: { libraryHaskellDepends = [ base MonadRandom mtl QuickCheck random ]; description = "An embedding of quantum computation as a Haskell arrow"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quantum-random" = callPackage @@ -243544,7 +230521,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Retrieve, store and manage real quantum random data"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "qrand"; }) {}; @@ -243567,9 +230543,7 @@ self: { ]; description = "Coronavirus quarantine timer web app for your things"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "quarantimer"; - broken = true; }) {}; "qudb" = callPackage @@ -243588,9 +230562,7 @@ self: { executableToolDepends = [ alex happy ]; description = "Quite Useless DB"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "qudb"; - broken = true; }) {}; "quenya-verb" = callPackage @@ -243613,9 +230585,7 @@ self: { executableHaskellDepends = [ base ]; description = "Quenya verb conjugator"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "quenya-verb-server"; - broken = true; }) {}; "queryparser" = callPackage @@ -243635,7 +230605,6 @@ self: { benchmarkHaskellDepends = [ base criterion text ]; description = "Analysis and parsing library for SQL queries"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "queryparser-demo" = callPackage @@ -243652,7 +230621,6 @@ self: { ]; description = "Demo package containing queryparser examples"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "queryparser-hive" = callPackage @@ -243672,7 +230640,6 @@ self: { ]; description = "Parsing for Hive SQL queries"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "queryparser-presto" = callPackage @@ -243692,7 +230659,6 @@ self: { ]; description = "Parsing for Presto SQL queries"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "queryparser-vertica" = callPackage @@ -243712,7 +230678,6 @@ self: { ]; description = "Parsing for Vertica SQL queries"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "querystring-pickle" = callPackage @@ -243730,8 +230695,6 @@ self: { ]; description = "Picklers for de/serialising Generic data types to and from query strings"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "questioner" = callPackage @@ -243747,8 +230710,6 @@ self: { ]; description = "A package for prompting values from the command-line"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "queue" = callPackage @@ -243797,7 +230758,6 @@ self: { libraryHaskellDepends = [ array base containers mtl stateful-mtl ]; description = "A library of queuelike data structures, both functional and stateful"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quibble-core" = callPackage @@ -243818,8 +230778,6 @@ self: { ]; description = "Convenient SQL query language for Haskell (but only for single tables)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quic" = callPackage @@ -243850,8 +230808,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "QUIC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quick-generator" = callPackage @@ -243882,8 +230838,6 @@ self: { ]; description = "Slimmed down json schema language and validator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickbench" = callPackage @@ -243904,7 +230858,6 @@ self: { testHaskellDepends = [ base ]; description = "quick & easy benchmarking of command-line programs"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "quickbench"; }) {}; @@ -243924,8 +230877,6 @@ self: { ]; description = "QuickBooks API binding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickcheck-arbitrary-adt" = callPackage @@ -243959,8 +230910,6 @@ self: { ]; description = "Generate QuickCheck Gen for Sum Types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickcheck-assertions" = callPackage @@ -244022,8 +230971,6 @@ self: { sha256 = "0qdjls949kmcv8wj3a27p4dz8nb1dq4i99zizkw7qyqn47r9ccxd"; libraryHaskellDepends = [ base QuickCheck unfoldable-restricted ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickcheck-dynamic" = callPackage @@ -244035,8 +230982,6 @@ self: { libraryHaskellDepends = [ base containers mtl QuickCheck random ]; description = "A library for stateful property-based testing"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickcheck-enum-instances" = callPackage @@ -244070,8 +231015,6 @@ self: { doHaddock = false; description = "Testing group class instances with QuickCheck"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickcheck-groups_0_0_1_0" = callPackage @@ -244095,7 +231038,6 @@ self: { description = "Testing group class instances with QuickCheck"; license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickcheck-higherorder" = callPackage @@ -244169,8 +231111,6 @@ self: { ]; description = "Library for lockstep-style testing with 'quickcheck-dynamic'"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickcheck-monoid-subclasses" = callPackage @@ -244196,8 +231136,6 @@ self: { doHaddock = false; description = "Testing monoid subclass instances with QuickCheck"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickcheck-monoid-subclasses_0_3_0_0" = callPackage @@ -244224,7 +231162,6 @@ self: { description = "Testing monoid subclass instances with QuickCheck"; license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickcheck-poly" = callPackage @@ -244241,7 +231178,6 @@ self: { ]; description = "Automating QuickCheck for polymorphic and overlaoded properties"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quickcheck-properties" = callPackage @@ -244264,8 +231200,6 @@ self: { libraryHaskellDepends = [ base mtl QuickCheck ]; description = "Combinators for Quickcheck Property construction and diagnostics"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickcheck-property-monad" = callPackage @@ -244277,8 +231211,6 @@ self: { libraryHaskellDepends = [ base either QuickCheck transformers ]; description = "A monad for generating QuickCheck properties without Arbitrary instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickcheck-quid" = callPackage @@ -244316,7 +231248,6 @@ self: { ]; description = "Generate regex-constrained strings for QuickCheck"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "quickcheck-relaxng" = callPackage @@ -244332,7 +231263,6 @@ self: { ]; description = "Generate RelaxNG-constrained XML documents for QuickCheck"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "quickcheck-rematch" = callPackage @@ -244345,8 +231275,6 @@ self: { testHaskellDepends = [ base hspec HUnit QuickCheck rematch ]; description = "QuickCheck support for rematch"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickcheck-report" = callPackage @@ -244362,8 +231290,6 @@ self: { ]; description = "Customizable reports for quickcheck properties"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickcheck-script" = callPackage @@ -244439,7 +231365,6 @@ self: { ]; description = "Test monadic programs using state machine based models"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quickcheck-state-machine-distributed" = callPackage @@ -244463,7 +231388,6 @@ self: { ]; description = "Test monadic programs using state machine based models"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "quickcheck-string-random" = callPackage @@ -244526,8 +231450,6 @@ self: { libraryHaskellDepends = [ base QuickCheck transformers webdriver ]; description = "Utilities for using WebDriver with QuickCheck"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickcheck-with-counterexamples" = callPackage @@ -244562,8 +231484,6 @@ self: { ]; description = "Wrapper for the QuickJS Javascript Engine"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quicklz" = callPackage @@ -244596,9 +231516,7 @@ self: { testHaskellDepends = [ base directory filepath QuickCheck ]; description = "Generate Main module with QuickCheck tests"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "quickpull"; - broken = true; }) {}; "quickselect" = callPackage @@ -244624,8 +231542,6 @@ self: { libraryHaskellDepends = [ base vector vector-algorithms ]; description = "Very fast and memory-compact query-only set and map structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickson" = callPackage @@ -244637,8 +231553,6 @@ self: { libraryHaskellDepends = [ aeson attoparsec base bytestring text ]; description = "Quick JSON extractions with Aeson"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickspec" = callPackage @@ -244657,8 +231571,6 @@ self: { ]; description = "Equational laws for free!"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quickterm" = callPackage @@ -244693,7 +231605,6 @@ self: { ]; description = "A reflective batch tester for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "quicktest"; }) {}; @@ -244713,8 +231624,6 @@ self: { ]; description = "A quick webapp generator for any file processing tool"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quiet" = callPackage @@ -244743,7 +231652,6 @@ self: { doHaddock = false; description = "Meta-package for Quipper"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quipper-algorithms" = callPackage @@ -244767,7 +231675,6 @@ self: { executableHaskellDepends = [ base ]; description = "A set of algorithms implemented in Quipper"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quipper-all" = callPackage @@ -244783,7 +231690,6 @@ self: { doHaddock = false; description = "Meta-package for Quipper"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quipper-cabal" = callPackage @@ -244795,7 +231701,6 @@ self: { libraryHaskellDepends = [ base Cabal process quipper-language ]; description = "Some functions to aid in the creation of Cabal packages for Quipper"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quipper-core" = callPackage @@ -244811,8 +231716,6 @@ self: { ]; description = "An embedded, scalable functional programming language for quantum computing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quipper-demos" = callPackage @@ -244833,7 +231736,6 @@ self: { doHaddock = false; description = "Miscellaneous code snippets that illustrate various Quipper features"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quipper-language" = callPackage @@ -244854,7 +231756,6 @@ self: { executableHaskellDepends = [ base process ]; description = "Quipper, an embedded functional programming language for quantum computation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quipper-libraries" = callPackage @@ -244877,7 +231778,6 @@ self: { ]; description = "The standard libraries for Quipper"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quipper-rendering" = callPackage @@ -244894,7 +231794,6 @@ self: { ]; description = "An embedded, scalable functional programming language for quantum computing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quipper-tools" = callPackage @@ -244916,7 +231815,6 @@ self: { doHaddock = false; description = "Miscellaneous stand-alone tools for Quipper"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quipper-utils" = callPackage @@ -244933,7 +231831,6 @@ self: { ]; description = "Utility libraries for Quipper"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quiver" = callPackage @@ -244945,8 +231842,6 @@ self: { libraryHaskellDepends = [ base mmorph transformers ]; description = "Quiver finite stream processing library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quiver-binary" = callPackage @@ -244963,7 +231858,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck quiver transformers ]; description = "Binary serialisation support for Quivers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "quiver-bytestring" = callPackage @@ -244975,7 +231869,6 @@ self: { libraryHaskellDepends = [ base bytestring quiver ]; description = "Quiver combinators for bytestring streaming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quiver-cell" = callPackage @@ -244987,7 +231880,6 @@ self: { libraryHaskellDepends = [ base data-cell quiver ]; description = "Quiver combinators for cellular data processing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quiver-csv" = callPackage @@ -245003,7 +231895,6 @@ self: { ]; description = "Quiver combinators for cellular CSV data processing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quiver-enumerator" = callPackage @@ -245015,7 +231906,6 @@ self: { libraryHaskellDepends = [ base enumerator quiver ]; description = "Bridge between Quiver and Iteratee paradigms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quiver-groups" = callPackage @@ -245028,7 +231918,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck quiver ]; description = "Group and chunk values within a Quiver"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "quiver-http" = callPackage @@ -245046,7 +231935,6 @@ self: { ]; description = "Adapter to stream over HTTP(s) with quiver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "quiver-instances" = callPackage @@ -245062,7 +231950,6 @@ self: { ]; description = "Extra instances for Quiver"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "quiver-interleave" = callPackage @@ -245075,7 +231962,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck quiver ]; description = "Interleave values from multiple Quivers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "quiver-sort" = callPackage @@ -245099,7 +231985,6 @@ self: { ]; description = "Sort the values in a quiver"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "quokka" = callPackage @@ -245118,8 +232003,6 @@ self: { ]; description = "Test helpers which help generate data for projects that use postgresql"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "quoridor-hs" = callPackage @@ -245144,9 +232027,7 @@ self: { testHaskellDepends = [ base HUnit mtl ]; description = "A Quoridor implementation in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "quoridor-exec"; - broken = true; }) {}; "quote-quot" = callPackage @@ -245195,7 +232076,6 @@ self: { ]; description = "Command line binary for working with the Qux language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "qux"; }) {}; @@ -245219,9 +232099,7 @@ self: { ]; description = "Can be used to calculate the durations of the approximations of the Ukrainian phonemes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "pldUkr"; - broken = true; }) {}; "r3x-haskell-sdk" = callPackage @@ -245300,7 +232178,6 @@ self: { executableHaskellDepends = [ base ]; description = "A library and program to create QIF files from Rabobank CSV exports"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "rabocsv2qif"; }) {}; @@ -245313,8 +232190,6 @@ self: { libraryHaskellDepends = [ array base containers data-reify ]; description = "Reverse Automatic Differentiation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "radian" = callPackage @@ -245327,8 +232202,6 @@ self: { testHaskellDepends = [ base HUnit lens ]; description = "Isomorphisms for measurements that use radians"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "radium" = callPackage @@ -245345,8 +232218,6 @@ self: { ]; description = "Chemistry"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "radium-formula-parser" = callPackage @@ -245362,8 +232233,6 @@ self: { ]; description = "Chemistry"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "radius" = callPackage @@ -245392,9 +232261,7 @@ self: { executableHaskellDepends = [ base filepath ]; description = "Command-line tool for emitting numbers in various bases"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "radix"; - broken = true; }) {}; "radix-tree" = callPackage @@ -245419,8 +232286,6 @@ self: { ]; description = "Radix tree data structive over short byte-strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "radixtree" = callPackage @@ -245465,8 +232330,6 @@ self: { ]; description = "librados haskell bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {rados = null;}; "raft" = callPackage @@ -245485,8 +232348,6 @@ self: { ]; description = "Miscellaneous Haskell utilities for data structures and data manipulation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rail-compiler-editor" = callPackage @@ -245509,7 +232370,6 @@ self: { testHaskellDepends = [ base containers HUnit process ]; description = "Compiler and editor for the esolang rail"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "rails-session" = callPackage @@ -245533,7 +232393,6 @@ self: { ]; description = "Decrypt Ruby on Rails sessions in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rainbow" = callPackage @@ -245564,7 +232423,6 @@ self: { ]; description = "Tests and QuickCheck generators to accompany rainbow"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rainbox" = callPackage @@ -245625,7 +232483,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "distributed-process node"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "raketka"; }) {}; @@ -245643,8 +232500,6 @@ self: { ]; description = "Stream based PDF library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rakuten" = callPackage @@ -245669,8 +232524,6 @@ self: { ]; description = "The Rakuten API in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ral" = callPackage @@ -245736,8 +232589,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "Random access list with a list compatible interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rallod" = callPackage @@ -245750,7 +232601,6 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "'$' in reverse"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "raml" = callPackage @@ -245766,8 +232616,6 @@ self: { ]; description = "RESTful API Modeling Language (RAML) library for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rampart" = callPackage @@ -245805,8 +232653,6 @@ self: { libraryHaskellDepends = [ array base IntervalMap mtl random ]; description = "Random variable library, with Functor, Applicative and Monad instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "randfile" = callPackage @@ -245825,7 +232671,6 @@ self: { ]; description = "Program for picking a random file"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "randfile"; }) {}; @@ -245841,8 +232686,6 @@ self: { ]; description = "Easy-to-use randomness for livecoding"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "random" = callPackage @@ -245887,7 +232730,6 @@ self: { ]; description = "Random file access methods, supporting application-level page cache"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "random-access-list" = callPackage @@ -245899,8 +232741,6 @@ self: { libraryHaskellDepends = [ array base containers ]; description = "Random-access lists in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "random-bytestring" = callPackage @@ -245931,7 +232771,6 @@ self: { libraryHaskellDepends = [ base primitive transformers util ]; description = "Class of random value generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "random-cycle" = callPackage @@ -245953,8 +232792,6 @@ self: { benchmarkHaskellDepends = [ base criterion random vector ]; description = "Uniform draws of partitions and cycle-partitions, with thinning"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "random-derive" = callPackage @@ -245966,8 +232803,6 @@ self: { libraryHaskellDepends = [ base random template-haskell ]; description = "A Template Haskell helper for deriving Random instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "random-eff" = callPackage @@ -245979,8 +232814,6 @@ self: { libraryHaskellDepends = [ base extensible-effects random ]; description = "A simple random generator library for extensible-effects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "random-effin" = callPackage @@ -245992,7 +232825,6 @@ self: { libraryHaskellDepends = [ base effin random ]; description = "A simple random generator library for effin"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "random-extras" = callPackage @@ -246007,7 +232839,6 @@ self: { ]; description = "Additional functions for random values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "random-fu" = callPackage @@ -246054,7 +232885,6 @@ self: { ]; description = "Random variate generation from hypergeometric distributions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "random-names" = callPackage @@ -246094,8 +232924,6 @@ self: { ]; description = "Generic basis for random number generators"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "random-stream" = callPackage @@ -246107,8 +232935,6 @@ self: { libraryHaskellDepends = [ base binary bytestring random ]; description = "An infinite stream of random data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "random-string" = callPackage @@ -246125,8 +232951,6 @@ self: { ]; description = "Generate a random base 16, 58, or 64 string"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "random-strings" = callPackage @@ -246279,7 +233103,6 @@ self: { ]; description = "A Range type with vector-space instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ranged-list" = callPackage @@ -246304,8 +233127,6 @@ self: { libraryHaskellDepends = [ base containers primitive vector ]; description = "Linear range-min algorithms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ranges" = callPackage @@ -246336,8 +233157,6 @@ self: { ]; description = "Efficient sets for semi-contiguous data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rank-product" = callPackage @@ -246356,9 +233175,7 @@ self: { ]; description = "Find the rank product of a data set"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "rank-product"; - broken = true; }) {}; "rank1dynamic" = callPackage @@ -246375,8 +233192,6 @@ self: { ]; description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rank2classes" = callPackage @@ -246414,8 +233229,6 @@ self: { ]; description = "Rapid prototyping with GHCi: hot reloading of running components and reload-surviving values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rapid-term" = callPackage @@ -246431,8 +233244,6 @@ self: { ]; description = "External terminal support for rapid"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rasa" = callPackage @@ -246457,7 +233268,6 @@ self: { ]; description = "A modular text editor"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "rasa-example-config" = callPackage @@ -246477,7 +233287,6 @@ self: { ]; description = "Example user config for Rasa"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "rasa"; }) {}; @@ -246493,7 +233302,6 @@ self: { ]; description = "Rasa Ext for useful buffer utilities"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-cmd" = callPackage @@ -246508,7 +233316,6 @@ self: { ]; description = "Rasa Ext for running commands"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-cursors" = callPackage @@ -246524,7 +233331,6 @@ self: { ]; description = "Rasa Ext adding cursor(s)"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-files" = callPackage @@ -246541,7 +233347,6 @@ self: { ]; description = "Rasa Ext for filesystem actions"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-logger" = callPackage @@ -246553,7 +233358,6 @@ self: { libraryHaskellDepends = [ base lens mtl rasa ]; description = "Rasa Ext for logging state/actions"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-slate" = callPackage @@ -246570,7 +233374,6 @@ self: { ]; description = "Rasa extension for rendering to terminal with vty"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-status-bar" = callPackage @@ -246582,7 +233385,6 @@ self: { libraryHaskellDepends = [ base data-default lens rasa yi-rope ]; description = "Rasa Ext for populating status-bar"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-style" = callPackage @@ -246594,7 +233396,6 @@ self: { libraryHaskellDepends = [ base data-default lens rasa ]; description = "Rasa Ext managing rendering styles"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-views" = callPackage @@ -246611,7 +233412,6 @@ self: { ]; description = "Rasa Ext managing rendering views"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-vim" = callPackage @@ -246630,7 +233430,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Rasa Ext for vim bindings"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "rascal" = callPackage @@ -246659,7 +233458,6 @@ self: { ]; description = "A command-line client for Reddit"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "rascal"; }) {}; @@ -246782,8 +233580,6 @@ self: { benchmarkHaskellDepends = [ base-noprelude gauge relude ]; description = "Client for rating.chgk.info API and CSV tables (documentation in Russian)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rating-systems" = callPackage @@ -246822,8 +233618,6 @@ self: { ]; description = "finite or repeating lists"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rattle" = callPackage @@ -246857,8 +233651,6 @@ self: { ]; description = "Forward build system, with caching and speculation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rattletrap" = callPackage @@ -246879,9 +233671,7 @@ self: { testHaskellDepends = [ base bytestring filepath ]; description = "Parse and generate Rocket League replays"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "rattletrap"; - broken = true; }) {}; "rattletrap_12_1_1" = callPackage @@ -246904,7 +233694,6 @@ self: { license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; mainProgram = "rattletrap"; - broken = true; }) {}; "raven-haskell" = callPackage @@ -246939,8 +233728,6 @@ self: { ]; description = "Sentry http interface for Scotty web server"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "raw-feldspar" = callPackage @@ -246964,7 +233751,6 @@ self: { ]; description = "Resource-Aware Feldspar"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "raw-strings-qq" = callPackage @@ -247008,7 +233794,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "Anonymous extensible records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rawstring-qm" = callPackage @@ -247033,8 +233818,6 @@ self: { libraryHaskellDepends = [ base h-raylib ]; description = "Haskell bindings for rlImGui"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "raz" = callPackage @@ -247052,8 +233835,6 @@ self: { ]; description = "Random Access Zippers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "razom-text-util" = callPackage @@ -247072,7 +233853,6 @@ self: { testHaskellDepends = [ base QuickCheck regex-applicative smaoin ]; description = "Common text/parsing tools for Razom language packages"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "rbpcp-api" = callPackage @@ -247108,7 +233888,6 @@ self: { executableHaskellDepends = [ base bio bytestring containers ]; description = "Mask nucleotide (EST) sequences in Fasta format"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "rbst" = callPackage @@ -247131,8 +233910,6 @@ self: { benchmarkHaskellDepends = [ base gauge mwc-random ]; description = "Randomized Binary Search Trees"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rc" = callPackage @@ -247156,7 +233933,6 @@ self: { ]; description = "Reservoir Computing, fast RNNs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ntc"; }) {}; @@ -247173,8 +233949,6 @@ self: { ]; description = "Haskell client for Rserve"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rcu" = callPackage @@ -247246,9 +234020,7 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq text ]; description = "A library for RDF processing in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rdf4h"; - broken = true; }) {}; "rdioh" = callPackage @@ -247271,7 +234043,6 @@ self: { ]; description = "A Haskell wrapper for Rdio's API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "rdtsc" = callPackage @@ -247325,8 +234096,6 @@ self: { ]; description = "A binding to React based on the Flux application architecture for GHCJS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "react-flux-servant" = callPackage @@ -247338,7 +234107,6 @@ self: { libraryHaskellDepends = [ aeson base react-flux servant text ]; description = "Allow react-flux stores to send requests to a servant server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "react-haskell" = callPackage @@ -247356,8 +234124,6 @@ self: { ]; description = "Haskell React bindings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "react-tutorial-haskell-server" = callPackage @@ -247375,9 +234141,7 @@ self: { ]; description = "react-tutorial web server"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "server"; - broken = true; }) {}; "reaction-logic" = callPackage @@ -247392,9 +234156,7 @@ self: { executableHaskellDepends = [ base mtl QuickCheck ]; description = "pluggable pure logic serializable reactor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "reaction-logic-test"; - broken = true; }) {}; "reactive" = callPackage @@ -247411,7 +234173,6 @@ self: { ]; description = "Push-pull functional reactive programming"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "reactive-bacon" = callPackage @@ -247424,8 +234185,6 @@ self: { testHaskellDepends = [ base containers HUnit old-time stm ]; description = "FRP (functional reactive programming) framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reactive-balsa" = callPackage @@ -247450,7 +234209,6 @@ self: { description = "Programmatically edit MIDI events via ALSA and reactive-banana"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -247497,8 +234255,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "home (etc) automation using reactive-banana"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reactive-banana-bunch" = callPackage @@ -247516,8 +234272,6 @@ self: { ]; description = "Extend reactive-banana to multiple events per time point"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reactive-banana-gi-gtk" = callPackage @@ -247534,8 +234288,6 @@ self: { testHaskellDepends = [ base ]; description = "Simple reactive programming with GTK GObject Introspection"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reactive-banana-sdl" = callPackage @@ -247552,7 +234304,6 @@ self: { ]; description = "Reactive Banana bindings for SDL"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "reactive-banana-sdl2" = callPackage @@ -247565,8 +234316,6 @@ self: { testHaskellDepends = [ base ]; description = "Reactive Banana integration with SDL2"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reactive-banana-threepenny" = callPackage @@ -247581,8 +234330,6 @@ self: { libraryHaskellDepends = [ base reactive-banana threepenny-gui ]; description = "Examples for the reactive-banana library, using threepenny-gui"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reactive-banana-wx" = callPackage @@ -247600,7 +234347,6 @@ self: { ]; description = "Examples for the reactive-banana library, using wxHaskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "reactive-fieldtrip" = callPackage @@ -247617,7 +234363,6 @@ self: { ]; description = "Connect Reactive and FieldTrip"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "reactive-glut" = callPackage @@ -247633,7 +234378,6 @@ self: { ]; description = "Connects Reactive and GLUT"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "reactive-haskell" = callPackage @@ -247676,7 +234420,6 @@ self: { ]; description = "Process MIDI events via reactive-banana and JACK"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -247699,7 +234442,6 @@ self: { ]; description = "Process MIDI events via reactive-banana"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -247717,9 +234459,7 @@ self: { ]; description = "Reactive programming via imperative threads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example-sdl"; - broken = true; }) {}; "reactivity" = callPackage @@ -247754,7 +234494,6 @@ self: { ]; description = "Reactor - task parallel reactive programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "read-bounded" = callPackage @@ -247766,8 +234505,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Class for reading bounded values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "read-ctags" = callPackage @@ -247790,9 +234527,7 @@ self: { base bytestring containers directory hspec text ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "read-ctags"; - broken = true; }) {}; "read-editor" = callPackage @@ -247830,8 +234565,6 @@ self: { testHaskellDepends = [ base containers directory filepath hspec ]; description = "Read IO library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "readability" = callPackage @@ -247852,9 +234585,7 @@ self: { ]; description = "Extracts text of main article from HTML document"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "readability"; - broken = true; }) {}; "readable" = callPackage @@ -247898,8 +234629,6 @@ self: { ]; description = "Vinyl-based reader-like monad composition"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "readline" = callPackage @@ -247934,7 +234663,6 @@ self: { ]; description = "Readline effect for in-other-words"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "echo-repl"; }) {}; @@ -247947,8 +234675,6 @@ self: { libraryHaskellDepends = [ base readline StateVar ]; description = "Readline with variables (setX/getY) wrapped in state vars"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "readme-lhs" = callPackage @@ -247970,9 +234696,7 @@ self: { testHaskellDepends = [ base doctest numhask ]; description = "Literate programming support"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "readme-lhs-example"; - broken = true; }) {}; "readpyc" = callPackage @@ -247986,7 +234710,6 @@ self: { executableHaskellDepends = [ base bliplib parseargs ]; description = "Read and pretty print Python bytecode (.pyc) files."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "readpyc"; }) {}; @@ -248005,8 +234728,6 @@ self: { ]; description = "Code for reading ESRI Shapefiles"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "real-day-end" = callPackage @@ -248034,8 +234755,6 @@ self: { libraryHaskellDepends = [ base parsec ]; description = "A really simple XML parser"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "realworldhaskell" = callPackage @@ -248083,7 +234802,6 @@ self: { ]; description = "Animation library based on SVGs"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "reanimate-svg" = callPackage @@ -248111,8 +234829,6 @@ self: { ]; description = "SVG file loader and serializer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reason-export" = callPackage @@ -248134,8 +234850,6 @@ self: { ]; description = "Generate Reason types from Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reasonable-lens" = callPackage @@ -248147,8 +234861,6 @@ self: { libraryHaskellDepends = [ base mtl split template-haskell ]; description = "Lens implementation. It is more small but adequately."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reasonable-operational" = callPackage @@ -248248,8 +234960,6 @@ self: { testHaskellDepends = [ base hspec primitive ]; description = "SmallArray-based extensible records for small-scale fast reads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "recaptcha" = callPackage @@ -248291,8 +235001,6 @@ self: { ]; description = "Anonymous records"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "record-aeson" = callPackage @@ -248309,7 +235017,6 @@ self: { testHaskellDepends = [ aeson base-prelude hspec record ]; description = "Instances of \"aeson\" classes for the \"record\" types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "record-dot-preprocessor" = callPackage @@ -248344,8 +235051,6 @@ self: { ]; description = "Generic encoding of records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "record-gl" = callPackage @@ -248369,7 +235074,6 @@ self: { ]; description = "Utilities for working with OpenGL's GLSL shading language and Nikita Volkov's \"Record\"s"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "record-hasfield" = callPackage @@ -248425,7 +235129,6 @@ self: { doHaddock = false; description = "Compiler preprocessor introducing a syntactic extension for anonymous records"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "record-preprocessor"; }) {}; @@ -248450,7 +235153,6 @@ self: { ]; description = "A library for parsing and processing the Haskell syntax sprinkled with anonymous records"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "record-wrangler" = callPackage @@ -248463,8 +235165,6 @@ self: { testHaskellDepends = [ base ]; description = "Alter your records with ease"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "records" = callPackage @@ -248478,8 +235178,6 @@ self: { libraryHaskellDepends = [ base kinds type-functions ]; description = "A flexible record system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "records-sop" = callPackage @@ -248496,8 +235194,6 @@ self: { ]; description = "Record subtyping and record utilities with generics-sop"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "records-th" = callPackage @@ -248514,7 +235210,6 @@ self: { ]; description = "Template Haskell declarations for the records package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "recover-rtti" = callPackage @@ -248537,8 +235232,6 @@ self: { ]; description = "Recover run-time type information from the GHC heap"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "recursion" = callPackage @@ -248604,7 +235297,6 @@ self: { ]; description = "Recursion schemes over indexed Functors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "recursive-line-count" = callPackage @@ -248651,8 +235343,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck template-haskell ]; description = "Auto-generate final encodings and their isomorphisms using Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "recv" = callPackage @@ -248685,8 +235375,6 @@ self: { doHaddock = false; description = "Extensible records and variants indexed by a type-level Red-Black tree"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "red-black-tree" = callPackage @@ -248716,7 +235404,6 @@ self: { ]; description = "Monadic HTTP request handlers combinators to build a standalone web apps"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "redact" = callPackage @@ -248739,7 +235426,6 @@ self: { ]; description = "hide secret text on the terminal"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "redact"; }) {}; @@ -248765,7 +235451,6 @@ self: { ]; description = "Library for interfacing with Reddit's API"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "reddit-scrape" = callPackage @@ -248827,8 +235512,6 @@ self: { ]; description = "Specify valid redis globs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "redis-hs" = callPackage @@ -248840,8 +235523,6 @@ self: { libraryHaskellDepends = [ base bytestring network utf8-string ]; description = "A simple Redis library for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "redis-io" = callPackage @@ -248870,7 +235551,6 @@ self: { ]; description = "Yet another redis client"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "redis-job-queue" = callPackage @@ -248899,7 +235579,6 @@ self: { ]; description = "REdis Serialization Protocol (RESP) implementation"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "redis-schema" = callPackage @@ -248927,8 +235606,6 @@ self: { libraryHaskellDepends = [ base binary bytestring redis ]; description = "Simple redis bindings for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rediscaching-haxl" = callPackage @@ -248944,7 +235621,6 @@ self: { ]; description = "Combine redis caching and haxl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "redland" = callPackage @@ -249000,7 +235676,6 @@ self: { ]; description = "Simplify a set of equations by removing redundancies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "reduce-equations"; }) {}; @@ -249047,8 +235722,6 @@ self: { ]; description = "Reed-Solomon Erasure Coding in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reenact" = callPackage @@ -249062,8 +235735,6 @@ self: { ]; description = "A reimplementation of the Reactive library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reexport-crypto-random" = callPackage @@ -249085,8 +235756,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Generic Mutable Ref Abstraction Layer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ref-extras" = callPackage @@ -249103,8 +235772,6 @@ self: { ]; description = "Extra stuff for mutable references"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ref-fd" = callPackage @@ -249127,8 +235794,6 @@ self: { libraryHaskellDepends = [ base mtl stm transformers ]; description = "A type class for monads with references compatible with the mtl2 library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ref-tf" = callPackage @@ -249172,8 +235837,6 @@ self: { ]; description = "Container with element counts"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reference" = callPackage @@ -249207,8 +235870,6 @@ self: { ]; description = "Selectors for reading and updating data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "refh" = callPackage @@ -249226,7 +235887,6 @@ self: { ]; description = "A command-line tool for pasting to https://www.refheap.com"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "refh"; }) {}; @@ -249257,8 +235917,6 @@ self: { libraryHaskellDepends = [ base http-api-data refined text ]; description = "http-api-data instances for refined types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "refined-with" = callPackage @@ -249270,8 +235928,6 @@ self: { libraryHaskellDepends = [ aeson base deepseq hashable refined ]; description = "Refinement types with an \"refinement applied\" switch"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "refined1" = callPackage @@ -249336,8 +235992,6 @@ self: { ]; description = "Utilities for the reflection package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflection-without-remorse" = callPackage @@ -249407,7 +236061,6 @@ self: { ]; description = "Continuous animations support for reflex"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "reflex-backend-socket" = callPackage @@ -249429,8 +236082,6 @@ self: { ]; description = "Reflex bindings for TCP sockets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflex-backend-wai" = callPackage @@ -249451,7 +236102,6 @@ self: { executableHaskellDepends = [ base http-types reflex wai ]; description = "Reflex interface to `wai`"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -249473,8 +236123,6 @@ self: { executableHaskellDepends = [ base lens reflex witherable ]; description = "A basic Reflex host for backend work"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflex-dom" = callPackage @@ -249512,8 +236160,6 @@ self: { ]; description = "Basic support for using the Ace editor with Reflex"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflex-dom-colonnade" = callPackage @@ -249532,7 +236178,6 @@ self: { ]; description = "Use colonnade with reflex-dom"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "reflex-dom-contrib" = callPackage @@ -249551,8 +236196,6 @@ self: { ]; description = "A playground for experimenting with infrastructure and common code for reflex applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflex-dom-core" = callPackage @@ -249616,9 +236259,7 @@ self: { description = "A reflex-dom widget to draw on a canvas with a fragment shader program"; license = lib.licenses.mit; badPlatforms = [ "aarch64-linux" ] ++ lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; mainProgram = "demo"; - broken = true; }) {}; "reflex-dom-helpers" = callPackage @@ -249635,8 +236276,6 @@ self: { testHaskellDepends = [ base ]; description = "Html tag helpers for reflex-dom"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflex-dom-ionic" = callPackage @@ -249670,8 +236309,6 @@ self: { ]; description = "Render Pandoc documents to HTML using reflex-dom"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflex-dom-retractable" = callPackage @@ -249687,8 +236324,6 @@ self: { ]; description = "Routing and retractable back button for reflex-dom"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflex-dom-svg" = callPackage @@ -249704,8 +236339,6 @@ self: { ]; description = "Reflex functions for SVG elements"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflex-dom-th" = callPackage @@ -249750,7 +236383,6 @@ self: { ]; description = "various dynamic containers for Reflex"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "reflex-external-ref" = callPackage @@ -249762,8 +236394,6 @@ self: { libraryHaskellDepends = [ base deepseq reflex ]; description = "External reference with reactivity support"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflex-fsnotify" = callPackage @@ -249779,8 +236409,6 @@ self: { ]; description = "Reflex FRP interface for watching files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflex-gadt-api" = callPackage @@ -249806,7 +236434,6 @@ self: { ]; description = "Interact with a GADT API in your reflex-dom application"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "readme"; }) {}; @@ -249837,7 +236464,6 @@ self: { ]; description = "A GHCi widget library for use in reflex applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "reflex-ghci"; }) {}; @@ -249866,9 +236492,7 @@ self: { ]; description = "Helper functions to use reflex with gi-gtk"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "reflex-gi-gtk-example"; - broken = true; }) {}; "reflex-gloss" = callPackage @@ -249884,8 +236508,6 @@ self: { ]; description = "An reflex interface for gloss"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflex-gloss-scene" = callPackage @@ -249913,7 +236535,6 @@ self: { ]; description = "A simple scene-graph using reflex and gloss"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "reflex-jsx" = callPackage @@ -249930,8 +236551,6 @@ self: { ]; description = "Use jsx-like syntax in Reflex"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflex-libtelnet" = callPackage @@ -249949,8 +236568,6 @@ self: { description = "Reflex bindings for libtelnet"; license = lib.licenses.gpl3Plus; platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflex-localize" = callPackage @@ -249966,7 +236583,6 @@ self: { ]; description = "Localization library for reflex"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "reflex-localize-dom" = callPackage @@ -249985,7 +236601,6 @@ self: { description = "Helper widgets for reflex-localize"; license = lib.licenses.mit; badPlatforms = [ "aarch64-linux" ] ++ lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; }) {}; "reflex-monad-auth" = callPackage @@ -250001,7 +236616,6 @@ self: { ]; description = "Utilities to split reflex app to authorized and not authorized contexts"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "reflex-orphans" = callPackage @@ -250018,8 +236632,6 @@ self: { ]; description = "Useful missing instances for Reflex"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflex-potatoes" = callPackage @@ -250040,7 +236652,6 @@ self: { reflex reflex-test-host relude semialign some text these ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "reflex-process" = callPackage @@ -250066,7 +236677,6 @@ self: { ]; description = "Reflex FRP interface for running system processes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "readme"; }) {}; @@ -250087,9 +236697,7 @@ self: { executableHaskellDepends = [ base mtl reflex ]; description = "SDL2 and reflex FRP"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "reflex-sdl2-exe"; - broken = true; }) {}; "reflex-test-host" = callPackage @@ -250110,8 +236718,6 @@ self: { ]; description = "reflex host methods for testing without external events"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflex-transformers" = callPackage @@ -250127,8 +236733,6 @@ self: { ]; description = "Collections and switchable Monad transformers for Reflex"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reflex-vty" = callPackage @@ -250154,9 +236758,7 @@ self: { testHaskellDepends = [ base containers extra hspec reflex text ]; description = "Reflex FRP host and widgets for VTY applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "reform" = callPackage @@ -250194,8 +236796,6 @@ self: { ]; description = "Add support for using Hamlet with Reform"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reform-happstack" = callPackage @@ -250222,8 +236822,6 @@ self: { libraryHaskellDepends = [ base hsp hsx2hs reform text ]; description = "Add support for using HSP with Reform"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reform-lucid" = callPackage @@ -250235,8 +236833,6 @@ self: { libraryHaskellDepends = [ base lucid path-pieces reform text ]; description = "Add support for using lucid with Reform"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reformat" = callPackage @@ -250248,8 +236844,6 @@ self: { libraryHaskellDepends = [ base parsec ]; description = "The parser and render to parsec and render the string"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "refractor" = callPackage @@ -250273,7 +236867,6 @@ self: { ]; description = "See README for more info"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "refresht" = callPackage @@ -250289,8 +236882,6 @@ self: { libraryHaskellDepends = [ base data-default exceptions lens mtl ]; description = "Environment Monad with automatic resource refreshment"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "refty" = callPackage @@ -250303,8 +236894,6 @@ self: { testHaskellDepends = [ base ]; description = "Formatted JSON generator for API server inspired by normalizr"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "refurb" = callPackage @@ -250335,8 +236924,6 @@ self: { ]; description = "Tools for maintaining a database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reg-alloc" = callPackage @@ -250350,8 +236937,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Register allocation API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reg-alloc-graph-color" = callPackage @@ -250375,7 +236960,6 @@ self: { doHaddock = false; description = "Register allocation by graph colorization"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "reg-alloc-types" = callPackage @@ -250498,7 +237082,6 @@ self: { ]; description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Brzozowski's Deriviatives"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "regex-dfa" = callPackage @@ -250512,8 +237095,6 @@ self: { libraryHaskellDepends = [ base mtl parsec regex-base ]; description = "Replaces/Enhances Text.Regex"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "regex-do" = callPackage @@ -250602,8 +237183,6 @@ self: { ]; description = "Generate a random string from a PCRE"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "regex-genex" = callPackage @@ -250622,7 +237201,6 @@ self: { executableHaskellDepends = [ base containers mtl regex-tdfa sbv ]; description = "From a regex, generate all possible strings it can match"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "genex"; }) {}; @@ -250637,8 +237215,6 @@ self: { libraryHaskellDepends = [ base parsec regex-base ]; description = "Replaces/Enhances Text.Regex"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "regex-pcre" = callPackage @@ -250690,7 +237266,6 @@ self: { ]; description = "Text-based PCRE API for regex-base"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "regex-pderiv" = callPackage @@ -250707,7 +237282,6 @@ self: { ]; description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Antimirov's partial derivatives."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "regex-posix" = callPackage @@ -250752,9 +237326,7 @@ self: { ]; description = "Unit tests for the plaform's Posix regex library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "regex-posix-unittest"; - broken = true; }) {}; "regex-rure" = callPackage @@ -250808,8 +237380,6 @@ self: { ]; description = "Parse with regular expressions on Producers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "regex-tdfa-quasiquoter" = callPackage @@ -250821,8 +237391,6 @@ self: { libraryHaskellDepends = [ base regex-tdfa template-haskell ]; description = "Quasi-quoter for TDFA (extended POSIX) regular expressions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "regex-tdfa-rc" = callPackage @@ -250840,8 +237408,6 @@ self: { ]; description = "Replaces/Enhances Text.Regex"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "regex-tdfa-text" = callPackage @@ -250855,8 +237421,6 @@ self: { libraryHaskellDepends = [ array base regex-base regex-tdfa text ]; description = "Text interface for regex-tdfa"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "regex-tdfa-unittest" = callPackage @@ -250877,9 +237441,7 @@ self: { ]; description = "Unit tests for the regex-tdfa"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "regex-tdfa-unittest"; - broken = true; }) {}; "regex-tdfa-utf8" = callPackage @@ -250897,8 +237459,6 @@ self: { ]; description = "This combines regex-tdfa with utf8-string to allow searching over UTF8 encoded lazy bytestrings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "regex-tre" = callPackage @@ -250913,8 +237473,6 @@ self: { librarySystemDepends = [ tre ]; description = "Replaces/Enhances Text.Regex"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) tre;}; "regex-type" = callPackage @@ -250926,8 +237484,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Type-level regular expressions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "regex-with-pcre" = callPackage @@ -250975,7 +237531,6 @@ self: { libraryHaskellDepends = [ base haskell98 parsec ]; description = "A regular expression library for W3C XML Schema regular expressions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "regexchar" = callPackage @@ -251001,7 +237556,6 @@ self: { testHaskellDepends = [ base QuickCheck regexdot toolshed ]; description = "A POSIX, extended regex-engine"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "grecce"; }) {}; @@ -251018,8 +237572,6 @@ self: { ]; description = "A polymorphic, POSIX, extended regex-engine"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "regexp-tries" = callPackage @@ -251035,7 +237587,6 @@ self: { ]; description = "Regular Expressions on Tries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "regexpr" = callPackage @@ -251059,8 +237610,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Regular expressions via symbolic manipulation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "regexqq" = callPackage @@ -251074,8 +237623,6 @@ self: { ]; description = "A quasiquoter for PCRE regexes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "regional-pointers" = callPackage @@ -251090,7 +237637,6 @@ self: { ]; description = "Regional memory pointers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "regions" = callPackage @@ -251106,8 +237652,6 @@ self: { ]; description = "Provides the region monad for safely opening and working with scarce resources"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "regions-monadsfd" = callPackage @@ -251123,7 +237667,6 @@ self: { ]; description = "Monads-fd instances for the RegionT monad transformer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "regions-monadstf" = callPackage @@ -251139,7 +237682,6 @@ self: { ]; description = "Monads-tf instances for the RegionT monad transformer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "regions-mtl" = callPackage @@ -251151,7 +237693,6 @@ self: { libraryHaskellDepends = [ base-unicode-symbols mtl regions ]; description = "mtl instances for the RegionT monad transformer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "register-machine-typelevel" = callPackage @@ -251163,8 +237704,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A computationally universal register machine implementation at the type-level"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "registry" = callPackage @@ -251194,8 +237733,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "data structure for assembling components"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "registry-aeson" = callPackage @@ -251219,7 +237756,6 @@ self: { ]; description = "Aeson encoders / decoders"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "registry-hedgehog" = callPackage @@ -251245,7 +237781,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "utilities to work with Hedgehog generators and `registry`"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "registry-hedgehog-aeson" = callPackage @@ -251273,7 +237808,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Hedgehog generators for Aeson"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "registry-messagepack" = callPackage @@ -251295,7 +237829,6 @@ self: { ]; description = "MessagePack encoders / decoders"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "registry-options" = callPackage @@ -251320,7 +237853,6 @@ self: { ]; description = "application options parsing"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "regress" = callPackage @@ -251332,8 +237864,6 @@ self: { libraryHaskellDepends = [ ad base vector ]; description = "Linear and logistic regression through automatic differentiation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "regression-simple" = callPackage @@ -251363,8 +237893,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Generic programming library for regular datatypes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "regular-extras" = callPackage @@ -251376,7 +237904,6 @@ self: { libraryHaskellDepends = [ base binary deepseq QuickCheck regular ]; description = "Additional functions for regular: arbitrary, coarbitrary, and binary get/put"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "regular-web" = callPackage @@ -251392,7 +237919,6 @@ self: { ]; description = "Generic programming for the web"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "regular-xmlpickler" = callPackage @@ -251404,7 +237930,6 @@ self: { libraryHaskellDepends = [ base hxt regular text ]; description = "Generic generation of HXT XmlPickler instances using Regular"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "reheat" = callPackage @@ -251419,7 +237944,6 @@ self: { testHaskellDepends = [ base directory QuickCheck text vty vty-ui ]; description = "to make notes and reduce impact on idle time on writing other programms"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "reheat"; }) {}; @@ -251438,9 +237962,7 @@ self: { ]; description = "Rebuild default.hoo from many .hoo files in the current directory"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rehoo"; - broken = true; }) {}; "rei" = callPackage @@ -251458,9 +237980,7 @@ self: { ]; description = "Process lists easily"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "rei"; - broken = true; }) {}; "reified-records" = callPackage @@ -251472,8 +237992,6 @@ self: { libraryHaskellDepends = [ base containers mtl ]; description = "Reify records to Maps and back again"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reify" = callPackage @@ -251489,9 +238007,7 @@ self: { executableHaskellDepends = [ base ghc ]; description = "Serialize data"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "reify"; - broken = true; }) {}; "reinterpret-cast" = callPackage @@ -251545,8 +238061,6 @@ self: { libraryHaskellDepends = [ array base containers ]; description = "A relation data structure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "relapse" = callPackage @@ -251585,8 +238099,6 @@ self: { testToolDepends = [ doctest-discover hspec-discover ]; description = "A data structure representing Relations on Sets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "relational-postgresql8" = callPackage @@ -251604,7 +238116,6 @@ self: { ]; description = "PostgreSQL v8.x driver for haskell-relational-record"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "relational-query" = callPackage @@ -251630,7 +238141,6 @@ self: { ]; description = "Typeful, Modular, Relational, algebraic query engine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "relational-query-HDBC" = callPackage @@ -251655,7 +238165,6 @@ self: { ]; description = "HDBC instance of relational-query and typed query interface for HDBC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "relational-query-postgresql-pure" = callPackage @@ -251682,7 +238191,6 @@ self: { ]; description = "The connector of relational-record and postgresql-pure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "relational-record" = callPackage @@ -251700,7 +238208,6 @@ self: { ]; description = "Meta package of Relational Record"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "relational-record-examples" = callPackage @@ -251724,7 +238231,6 @@ self: { ]; description = "Examples of Haskell Relationa Record"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "relational-schemas" = callPackage @@ -251741,7 +238247,6 @@ self: { ]; description = "RDBMSs' schema templates for relational-query"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "relative-date" = callPackage @@ -251756,7 +238261,6 @@ self: { ]; description = "Durations and generalized time parsing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "releaser" = callPackage @@ -251775,10 +238279,8 @@ self: { executableHaskellDepends = [ base ]; description = "Automation of Haskell package release process"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "releaser"; maintainers = [ lib.maintainers.maralorn ]; - broken = true; }) {}; "relevant-time" = callPackage @@ -251790,8 +238292,6 @@ self: { libraryHaskellDepends = [ aeson base chronos text torsor ]; description = "humanised relevant time"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reliable-io" = callPackage @@ -251851,9 +238351,7 @@ self: { ]; description = "A web based Haskell IDE"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "reload-exe"; - broken = true; }) {}; "reloto" = callPackage @@ -251914,9 +238412,7 @@ self: { ]; description = "A DSL for marking student work"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "remark"; - broken = true; }) {}; "remarks" = callPackage @@ -251938,9 +238434,7 @@ self: { ]; description = "A DSL for marking student work"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "remarks"; - broken = true; }) {}; "rematch" = callPackage @@ -251982,8 +238476,6 @@ self: { ]; description = "Cloud Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "remote-debugger" = callPackage @@ -251999,9 +238491,7 @@ self: { ]; description = "Interface to ghci debugger"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "remote-debugger"; - broken = true; }) {}; "remote-json" = callPackage @@ -252026,7 +238516,6 @@ self: { ]; description = "Remote Monad implementation of the JSON RPC protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "remote-json-client" = callPackage @@ -252044,7 +238533,6 @@ self: { ]; description = "Web client wrapper for remote-json"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "remote-json-server" = callPackage @@ -252062,7 +238550,6 @@ self: { ]; description = "Web server wrapper for remote-json"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "remote-monad" = callPackage @@ -252085,8 +238572,6 @@ self: { ]; description = "An parametrizable Remote Monad, and parametrizable Applicative Functor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "remotion" = callPackage @@ -252119,7 +238604,6 @@ self: { ]; description = "A library for client-server applications based on custom protocols"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "render-utf8" = callPackage @@ -252170,8 +238654,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Reorder expressions in a syntax tree according to operator fixities"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reorderable" = callPackage @@ -252187,8 +238669,6 @@ self: { ]; description = "Define compound types that do not depend on member order"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "repa" = callPackage @@ -252204,8 +238684,6 @@ self: { ]; description = "High performance, regular, shape polymorphic parallel arrays"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "repa-algorithms" = callPackage @@ -252217,7 +238695,6 @@ self: { libraryHaskellDepends = [ base repa vector ]; description = "Algorithms using the Repa array library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "repa-array" = callPackage @@ -252235,7 +238712,6 @@ self: { ]; description = "Bulk array representations and operators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "repa-bytestring" = callPackage @@ -252248,8 +238724,6 @@ self: { doHaddock = false; description = "(deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "repa-convert" = callPackage @@ -252265,7 +238739,6 @@ self: { ]; description = "Packing and unpacking flat tables"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "repa-devil" = callPackage @@ -252278,8 +238751,6 @@ self: { librarySystemDepends = [ libdevil ]; description = "Support for image reading and writing of Repa arrays using in-place FFI calls"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libdevil;}; "repa-eval" = callPackage @@ -252291,8 +238762,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Low-level parallel operators on bulk random-accessble arrays"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "repa-examples" = callPackage @@ -252313,8 +238782,6 @@ self: { ]; description = "Examples using the Repa array library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "repa-fftw" = callPackage @@ -252335,7 +238802,6 @@ self: { ]; description = "Perform fft with repa via FFTW"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "repa-flow" = callPackage @@ -252354,7 +238820,6 @@ self: { ]; description = "Data-parallel data flows"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "repa-io" = callPackage @@ -252370,7 +238835,6 @@ self: { ]; description = "Read and write Repa arrays in various formats"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "repa-linear-algebra" = callPackage @@ -252382,8 +238846,6 @@ self: { libraryHaskellDepends = [ base hmatrix repa vector ]; description = "HMatrix operations for Repa"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "repa-plugin" = callPackage @@ -252400,7 +238862,6 @@ self: { ]; description = "Data Flow Fusion GHC Plugin"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "repa-scalar" = callPackage @@ -252418,8 +238879,6 @@ self: { ]; description = "Scalar data types and conversions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "repa-series" = callPackage @@ -252431,8 +238890,6 @@ self: { libraryHaskellDepends = [ base ghc ghc-prim vector ]; description = "Series Expressionss API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "repa-sndfile" = callPackage @@ -252451,7 +238908,6 @@ self: { ]; description = "Reading and writing sound files with repa arrays"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "repa-stream" = callPackage @@ -252463,7 +238919,6 @@ self: { libraryHaskellDepends = [ base mtl primitive repa-scalar vector ]; description = "Stream functions not present in the vector library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "repa-v4l2" = callPackage @@ -252483,7 +238938,6 @@ self: { executableHaskellDepends = [ base gloss repa ]; description = "Provides high-level access to webcams"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -252498,8 +238952,6 @@ self: { ]; description = "IRC friendly REPL library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "repl-toolkit" = callPackage @@ -252518,8 +238970,6 @@ self: { ]; description = "Toolkit for quickly whipping up config files and command-line interfaces"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "replace-attoparsec" = callPackage @@ -252574,8 +239024,6 @@ self: { wai-websockets websockets ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "replicant" = callPackage @@ -252602,7 +239050,6 @@ self: { testHaskellDepends = [ base ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "replicant"; }) {}; @@ -252648,9 +239095,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Blogging module using blaze html for markup"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rbb"; - broken = true; }) {}; "repr" = callPackage @@ -252666,7 +239111,6 @@ self: { ]; description = "Render overloaded expressions to their textual representation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "repr-tree-syb" = callPackage @@ -252696,8 +239140,6 @@ self: { ]; description = "Representable functors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "representable-profunctors" = callPackage @@ -252728,7 +239170,6 @@ self: { ]; description = "Tries from representations of polynomial functors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "reprinter" = callPackage @@ -252746,8 +239187,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Scrap Your Reprinter"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reproject" = callPackage @@ -252760,8 +239199,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Define and combine \"materialized\" projections"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "req" = callPackage @@ -252857,8 +239294,6 @@ self: { ]; description = "Conduit helpers for the req HTTP client library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "req-oauth2" = callPackage @@ -252896,9 +239331,7 @@ self: { testHaskellDepends = [ base hspec modern-uri req ]; description = "Provides URI/URL helper functions for use with Req"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sample"; - broken = true; }) {}; "reqcatcher" = callPackage @@ -252930,8 +239363,6 @@ self: { http-types ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "request-monad" = callPackage @@ -252943,8 +239374,6 @@ self: { libraryHaskellDepends = [ base free mtl transformers ]; description = "A transformer for generic requests"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "require" = callPackage @@ -252976,8 +239405,6 @@ self: { ]; description = "Scrap your qualified import clutter"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "require-callstack" = callPackage @@ -253105,8 +239532,6 @@ self: { ]; description = "More understandable exceptions"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reserve" = callPackage @@ -253131,7 +239556,6 @@ self: { ]; description = "Reserve reloads web applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "reserve"; }) {}; @@ -253144,8 +239568,6 @@ self: { libraryHaskellDepends = [ base containers random ]; description = "Unweighted reservoir sampling"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "resin" = callPackage @@ -253157,7 +239579,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ralist semigroupoids ]; description = "High performance variable binders"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "resistor-cube" = callPackage @@ -253171,7 +239592,6 @@ self: { executableHaskellDepends = [ base comfort-array lapack ]; description = "Compute total resistance of a cube of resistors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "resistor-cube"; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -253232,8 +239652,6 @@ self: { ]; description = "A name resolusion library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "resolve-trivial-conflicts" = callPackage @@ -253252,9 +239670,7 @@ self: { ]; description = "Remove trivial conflict markers in a git repository"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "resolve-trivial-conflicts"; - broken = true; }) {}; "resource-effect" = callPackage @@ -253273,8 +239689,6 @@ self: { ]; description = "A port of the package 'resourcet' for extensible effects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "resource-effectful" = callPackage @@ -253299,9 +239713,7 @@ self: { executableHaskellDepends = [ base bytestring directory ]; description = "Embed data files via C and FFI"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "resource-embed"; - broken = true; }) {}; "resource-pool" = callPackage @@ -253360,8 +239772,6 @@ self: { ]; description = "A monadic interface for resource-pool"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "resource-simple" = callPackage @@ -253378,7 +239788,6 @@ self: { ]; description = "Allocate resources which are guaranteed to be released"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "resourcet" = callPackage @@ -253436,8 +239845,6 @@ self: { libraryHaskellDepends = [ base resource-pool resourcet ]; description = "A small library to convert a Pool into an Acquire"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "respond" = callPackage @@ -253466,9 +239873,7 @@ self: { ]; description = "process and route HTTP requests and generate responses on top of WAI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "rest-client" = callPackage @@ -253490,7 +239895,6 @@ self: { ]; description = "Utility library for use in generated API client libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rest-core" = callPackage @@ -253518,7 +239922,6 @@ self: { ]; description = "Rest API library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rest-example" = callPackage @@ -253541,7 +239944,6 @@ self: { executableHaskellDepends = [ base base-compat rest-gen ]; description = "Example project for rest"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rest-example-gen"; }) {}; @@ -253570,7 +239972,6 @@ self: { ]; description = "Documentation and client generation from rest definition"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rest-happstack" = callPackage @@ -253588,7 +239989,6 @@ self: { ]; description = "Rest driver for Happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rest-rewrite" = callPackage @@ -253630,7 +240030,6 @@ self: { ]; description = "Rest driver for Snap"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rest-stringmap" = callPackage @@ -253647,7 +240046,6 @@ self: { ]; description = "Maps with stringy keys that can be transcoded to JSON and XML"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rest-types" = callPackage @@ -253667,7 +240065,6 @@ self: { ]; description = "Silk Rest Framework Types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rest-wai" = callPackage @@ -253687,7 +240084,6 @@ self: { ]; description = "Rest driver for WAI applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "restartable" = callPackage @@ -253699,8 +240095,6 @@ self: { libraryHaskellDepends = [ aeson base bytestring unix ]; description = "Minimal live coding library for model-view-event-update applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "restful-snap" = callPackage @@ -253720,7 +240114,6 @@ self: { time-locale-compat xmlhtml ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "restless-git" = callPackage @@ -253757,7 +240150,6 @@ self: { ]; description = "Running worker processes under system resource restrictions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "restyle" = callPackage @@ -253772,9 +240164,7 @@ self: { executableHaskellDepends = [ base directory filepath utf8-string ]; description = "Convert between camel case and separated words style"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "restyle"; - broken = true; }) {}; "result" = callPackage @@ -253798,8 +240188,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformer for resumable exceptions"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ret" = callPackage @@ -253841,8 +240229,6 @@ self: { benchmarkHaskellDepends = [ aeson async base criterion text ]; description = "A driver for RethinkDB 2.2"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rethinkdb-client-driver" = callPackage @@ -253871,8 +240257,6 @@ self: { ]; description = "Client driver for RethinkDB"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rethinkdb-model" = callPackage @@ -253888,7 +240272,6 @@ self: { ]; description = "Useful tools for modeling data with rethinkdb"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "rethinkdb-wereHamster" = callPackage @@ -253908,7 +240291,6 @@ self: { ]; description = "RethinkDB driver for Haskell"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "retrie_1_1_0_0" = callPackage @@ -253993,7 +240375,6 @@ self: { ]; description = "Code shared across the code samples in the book \"Retrocomputing with Clash\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "retroclash-sim" = callPackage @@ -254013,7 +240394,6 @@ self: { ]; description = "High-level simulators from the book \"Retrocomputing with Clash\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "retry" = callPackage @@ -254062,9 +240442,7 @@ self: { executableHaskellDepends = [ base optparse-applicative process ]; description = "Retry failed commands"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "retryer"; - broken = true; }) {}; "rev-scientific" = callPackage @@ -254141,8 +240519,6 @@ self: { ]; description = "Simple reverse geocoding using OpenStreeMap"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reverse-list" = callPackage @@ -254154,8 +240530,6 @@ self: { libraryHaskellDepends = [ base containers contiguous deepseq ]; description = "reversed lists/snoc lists"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "reversi" = callPackage @@ -254169,9 +240543,7 @@ self: { executableHaskellDepends = [ array base process ]; description = "Text-only reversi (aka othelo) game"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "reversi"; - broken = true; }) {}; "rewrite" = callPackage @@ -254187,7 +240559,6 @@ self: { ]; description = "open file and rewrite it with new contents"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rewrite"; }) {}; @@ -254208,8 +240579,6 @@ self: { executableHaskellDepends = [ base prettyprinter ]; description = "Inspection of rewriting steps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rewriting" = callPackage @@ -254221,7 +240590,6 @@ self: { libraryHaskellDepends = [ base containers regular ]; description = "Generic rewriting library for regular datatypes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rex" = callPackage @@ -254257,7 +240625,6 @@ self: { ]; description = "Github resume generator"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "rezoom"; }) {}; @@ -254292,8 +240659,6 @@ self: { ]; description = "Robert Fischer's Common library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rfc-env" = callPackage @@ -254305,7 +240670,6 @@ self: { libraryHaskellDepends = [ base envy network rfc-prelude time ]; description = "Environment variable support from the Robert Fischer Commons"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "rfc-http-client" = callPackage @@ -254323,7 +240687,6 @@ self: { ]; description = "The HTTP client extensions from the Robert Fischer Commons"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "rfc-prelude" = callPackage @@ -254347,8 +240710,6 @@ self: { ]; description = "The Prelude from the Robert Fischer Commons"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rfc-psql" = callPackage @@ -254365,7 +240726,6 @@ self: { ]; description = "The PostgreSQL extensions from the Robert Fischer Commons"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "rfc-redis" = callPackage @@ -254377,7 +240737,6 @@ self: { libraryHaskellDepends = [ base hedis rfc-env rfc-prelude time ]; description = "The Redis extensions from the Robert Fischer Commons"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "rfc-servant" = callPackage @@ -254399,7 +240758,6 @@ self: { ]; description = "The Servant extensions from the Robert Fischer Commons"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "rfc1413-server" = callPackage @@ -254514,9 +240872,7 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "Bugzilla query tool"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "rhbzquery"; - broken = true; }) {}; "rhine" = callPackage @@ -254538,9 +240894,7 @@ self: { ]; description = "Functional Reactive Programming with type-level clocks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.turion ]; - broken = true; }) {}; "rhine-bayes" = callPackage @@ -254562,7 +240916,6 @@ self: { ]; description = "monad-bayes backend for Rhine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rhine-bayes-gloss"; }) {}; @@ -254582,7 +240935,6 @@ self: { executableHaskellDepends = [ base ]; description = "Gloss backend for Rhine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rhine-gloss-gears"; maintainers = [ lib.maintainers.turion ]; }) {}; @@ -254607,7 +240959,6 @@ self: { ]; description = "Terminal backend for Rhine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rhine-terminal-simple"; }) {}; @@ -254627,7 +240978,6 @@ self: { ]; description = "Haskell rhythm game tutorial"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rhythmic-sequences" = callPackage @@ -254671,8 +241021,6 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion semigroups ]; description = "A Haskell client for the Riak decentralized data store"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "riak-protobuf" = callPackage @@ -254705,9 +241053,7 @@ self: { ]; description = "Lenses for riak-protobuf"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "generate"; - broken = true; }) {}; "rib" = callPackage @@ -254738,7 +241084,6 @@ self: { ]; description = "Static site generator based on Shake"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rib-core" = callPackage @@ -254760,8 +241105,6 @@ self: { ]; description = "Static site generator based on Shake"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ribbit" = callPackage @@ -254773,8 +241116,6 @@ self: { libraryHaskellDepends = [ base Only postgresql-simple text time ]; description = "Type-level Relational DB combinators"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ribosome" = callPackage @@ -254798,7 +241139,6 @@ self: { ]; description = "Neovim plugin framework for Polysemy"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "ribosome-app" = callPackage @@ -254825,7 +241165,6 @@ self: { ]; description = "CLI for Ribosome"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; mainProgram = "ribosome"; }) {}; @@ -254855,7 +241194,6 @@ self: { ]; description = "Neovim plugin host for Polysemy"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "ribosome-host-test" = callPackage @@ -254873,7 +241211,6 @@ self: { ]; description = "Test tools for Ribosome"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "ribosome-root" = callPackage @@ -254905,7 +241242,6 @@ self: { ]; description = "api extensions for nvim-hs"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "ribosome-test" = callPackage @@ -254929,7 +241265,6 @@ self: { ]; description = "Test tools for Ribosome"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "richreports" = callPackage @@ -254972,8 +241307,6 @@ self: { ]; description = "Quick metrics to grow your app strong"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ridley-extras" = callPackage @@ -254991,7 +241324,6 @@ self: { testHaskellDepends = [ base ]; description = "Handy metrics that don't belong to ridley"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "riemann" = callPackage @@ -255021,9 +241353,7 @@ self: { ]; description = "A Riemann client for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "riemann-client"; - broken = true; }) {}; "riff" = callPackage @@ -255042,8 +241372,6 @@ self: { executableHaskellDepends = [ base bytestring filepath ]; description = "RIFF parser for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rigel-viz" = callPackage @@ -255060,8 +241388,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "A mid-level wrapper for vega-lite"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ring-buffer" = callPackage @@ -255076,8 +241402,6 @@ self: { testHaskellDepends = [ base HUnit QuickCheck vector ]; description = "A concurrent, mutable ring-buffer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ring-buffers" = callPackage @@ -255094,8 +241418,6 @@ self: { testHaskellDepends = [ base HUnit primitive QuickCheck ]; description = "mutable ring buffers with atomic updates in GHC Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rings" = callPackage @@ -255225,7 +241547,6 @@ self: { ]; description = "A library for process pools coupled with asynchronous message queues"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "rio-process-pool-memleak-test"; }) {}; @@ -255246,7 +241567,6 @@ self: { executableSystemDepends = [ ncurses ]; description = "Riot is an Information Organisation Tool"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "riot"; }) {inherit (pkgs) ncurses;}; @@ -255267,7 +241587,6 @@ self: { ]; description = "Ripple payment system library"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "ripple-federation" = callPackage @@ -255285,7 +241604,6 @@ self: { ]; description = "Utilities and types to work with the Ripple federation protocol"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "risc-v" = callPackage @@ -255305,7 +241623,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "RISC-V"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "risc386" = callPackage @@ -255336,8 +241653,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Haskell representation of the RISC-V instruction set architecture"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rison" = callPackage @@ -255358,8 +241673,6 @@ self: { ]; description = "Parses and renders RISON strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rivers" = callPackage @@ -255371,8 +241684,6 @@ self: { libraryHaskellDepends = [ base lazysmallcheck oeis QuickCheck ]; description = "Rivers are like Streams, but different"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rivet" = callPackage @@ -255386,7 +241697,6 @@ self: { executableHaskellDepends = [ base rivet-core rivet-simple-deploy ]; description = "A project management tool for Haskell applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rivet"; }) {}; @@ -255436,8 +241746,6 @@ self: { libraryHaskellDepends = [ base postgresql-simple text ]; description = "Postgresql migration support for project management tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rivet-simple-deploy" = callPackage @@ -255449,8 +241757,6 @@ self: { libraryHaskellDepends = [ base configurator mtl rivet-core text ]; description = "Basic deployment support for project management tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rl-satton" = callPackage @@ -255476,9 +241782,7 @@ self: { ]; description = "Collection of Reinforcement Learning algorithms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "rle" = callPackage @@ -255500,8 +241804,6 @@ self: { ]; description = "A data type of run-length-encoded lists"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rlglue" = callPackage @@ -255524,8 +241826,6 @@ self: { ]; description = "A Haskell codec for RL-Glue"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rlist" = callPackage @@ -255561,7 +241861,6 @@ self: { executableHaskellDepends = [ ansi-terminal base options time ]; description = "Ring-LWE/LWR challenges using Lol"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "rlwe-challenges"; }) {}; @@ -255579,7 +241878,6 @@ self: { ]; description = "Restricted monad library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rncryptor" = callPackage @@ -255608,7 +241906,6 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion ]; description = "Haskell implementation of the RNCryptor file format"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "rng-utils" = callPackage @@ -255647,7 +241944,6 @@ self: { testHaskellDepends = [ base directory ]; description = "Simple projects generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "rob"; }) {}; @@ -255668,9 +241964,7 @@ self: { ]; description = "A build daemon for Haskell development"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "robin"; - broken = true; }) {}; "roboservant" = callPackage @@ -255715,7 +242009,6 @@ self: { ]; description = "Simulate keyboard and mouse events"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "robots-txt" = callPackage @@ -255735,8 +242028,6 @@ self: { ]; description = "Parser for robots.txt"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "roc-cluster" = callPackage @@ -255751,8 +242042,6 @@ self: { testHaskellDepends = [ base hspec HUnit ]; description = "ROC online clustering algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "roc-cluster-demo" = callPackage @@ -255770,7 +242059,6 @@ self: { ]; description = "Gloss interactive demo for roc-cluster package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "roc-cluster-demo"; }) {}; @@ -255790,8 +242078,6 @@ self: { ]; description = "Implementation of the ROC (Taiwan) National ID standard"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rock" = callPackage @@ -255817,7 +242103,6 @@ self: { ]; description = "A build system for incremental, parallel, and demand-driven computations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rocksdb-haskell" = callPackage @@ -255896,9 +242181,7 @@ self: { ]; description = "Sci-fi roguelike game. Client application."; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "roguestar"; - broken = true; }) {}; "roguestar-engine" = callPackage @@ -255919,7 +242202,6 @@ self: { ]; description = "Sci-fi roguelike game. Backend."; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "roguestar-engine"; }) {}; @@ -255938,7 +242220,6 @@ self: { ]; description = "Sci-fi roguelike game. Client library."; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "roguestar-glut" = callPackage @@ -255952,7 +242233,6 @@ self: { executableHaskellDepends = [ base GLUT roguestar-gl rsagl ]; description = "Sci-fi roguelike game. GLUT front-end."; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "roguestar-glut"; }) {}; @@ -255969,8 +242249,6 @@ self: { ]; description = "Bindings to Roku's External Control API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "roles" = callPackage @@ -256016,7 +242294,6 @@ self: { testHaskellDepends = [ base ]; description = "Simple CLI tool to perform commons tasks such as tracking deploys"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "rollbar"; }) {}; @@ -256041,8 +242318,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Core library to communicate with Rollbar API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rollbar-hs" = callPackage @@ -256065,8 +242340,6 @@ self: { ]; description = "Core Rollbar data types and APIs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rollbar-wai" = callPackage @@ -256091,7 +242364,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Provides error reporting capabilities to WAI based applications through Rollbar API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "rollbar-yesod" = callPackage @@ -256113,7 +242385,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Provides error reporting capabilities to Yesod applications through Rollbar API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "roller" = callPackage @@ -256134,9 +242405,7 @@ self: { ]; description = "Playing with applicatives and dice!"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "roller"; - broken = true; }) {}; "rolling-queue" = callPackage @@ -256161,8 +242430,6 @@ self: { ]; description = "Parsing and pretty printing of Roman numerals"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "romkan" = callPackage @@ -256200,8 +242467,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq integer-gmp ]; description = "RON"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ron-rdt" = callPackage @@ -256218,7 +242483,6 @@ self: { ]; description = "Replicated Data Types (RON-RDT)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ron-schema" = callPackage @@ -256236,7 +242500,6 @@ self: { ]; description = "RON-Schema"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ron-storage" = callPackage @@ -256254,7 +242517,6 @@ self: { ]; description = "RON Storage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "roots" = callPackage @@ -256279,8 +242541,6 @@ self: { ]; description = "Tools for manipulating fingertrees of bytestrings with optional annotations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rope-utf16-splay" = callPackage @@ -256358,8 +242618,6 @@ self: { ]; description = "Various trie implementations in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rose-trie" = callPackage @@ -256375,7 +242633,6 @@ self: { ]; description = "Trees with polymorphic paths to nodes, combining properties of Rose Trees and Tries"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "rosebud" = callPackage @@ -256391,8 +242648,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Common rose tree/forest functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rosezipper" = callPackage @@ -256436,7 +242691,6 @@ self: { ]; description = "Haskell support for the ROS robotics framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "roshask"; }) {}; @@ -256455,8 +242709,6 @@ self: { ]; description = "ROS message parser, render, TH"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rosmsg-bin" = callPackage @@ -256474,7 +242726,6 @@ self: { ]; description = "ROS message management tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rospkg" = callPackage @@ -256495,9 +242746,7 @@ self: { testHaskellDepends = [ base ]; description = "ROS package system information"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rospkg"; - broken = true; }) {}; "rosso" = callPackage @@ -256509,8 +242758,6 @@ self: { libraryHaskellDepends = [ base containers deepseq ]; description = "General purpose utility library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rot13" = callPackage @@ -256542,8 +242789,6 @@ self: { ]; description = "Size-limited, concurrent, automatically-rotating log writer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "roundRobin" = callPackage @@ -256580,8 +242825,6 @@ self: { testHaskellDepends = [ base long-double ]; description = "Correctly-rounded arbitrary-precision floating-point arithmetic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) gmp; inherit (pkgs) mpfr;}; "rounded-hw" = callPackage @@ -256608,7 +242851,6 @@ self: { ]; description = "Directed rounding for built-in floating types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rounding" = callPackage @@ -256620,8 +242862,6 @@ self: { libraryHaskellDepends = [ array base numeric-extras ]; description = "Explicit floating point rounding mode wrappers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "roundtrip" = callPackage @@ -256657,8 +242897,6 @@ self: { ]; description = "Un-/parse JSON with roundtrip invertible syntax definitions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "roundtrip-string" = callPackage @@ -256691,7 +242929,6 @@ self: { ]; description = "Bidirectional (de-)serialization for XML"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "route-generator" = callPackage @@ -256707,7 +242944,6 @@ self: { ]; description = "Utility to generate routes for use with yesod-routes"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "routeGenerator"; }) {}; @@ -256727,7 +242963,6 @@ self: { ]; description = "A library and utilities for creating a route"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "row" = callPackage @@ -256744,7 +242979,6 @@ self: { doHaddock = false; description = "Row types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "row-types" = callPackage @@ -256822,8 +243056,6 @@ self: { libraryHaskellDepends = [ base containers template-haskell ]; description = "Build records from lists of strings, as from CSV files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rp-tree" = callPackage @@ -256873,7 +243105,6 @@ self: { ]; description = "type safe rpcs provided as basic IO actions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rpc-framework" = callPackage @@ -256892,9 +243123,7 @@ self: { executableHaskellDepends = [ base ]; description = "a remote procedure call framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rpc-test"; - broken = true; }) {}; "rpf" = callPackage @@ -256914,7 +243143,6 @@ self: { ]; description = "Receiver Policy Framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rpf"; }) {}; @@ -256929,8 +243157,6 @@ self: { libraryHaskellDepends = [ base directory filepath HaXml process ]; description = "Cozy little project to question unruly rpm packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rpm-nvr" = callPackage @@ -256968,9 +243194,7 @@ self: { ]; description = "Sort RPM packages in dependency order"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rpmbuild-order"; - broken = true; }) {}; "rpmostree-update" = callPackage @@ -256989,9 +243213,7 @@ self: { ]; description = "rpm-ostree update wrapper that caches change info"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rpmostree-update"; - broken = true; }) {}; "rrb-vector" = callPackage @@ -257029,8 +243251,6 @@ self: { testHaskellDepends = [ base hspec text ]; description = "Recurrence rule parser and formatter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rsagl" = callPackage @@ -257050,7 +243270,6 @@ self: { ]; description = "The RogueStar Animation and Graphics Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rsagl-frp" = callPackage @@ -257066,7 +243285,6 @@ self: { ]; description = "The RogueStar Animation and Graphics Library: Functional Reactive Programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rsagl-math" = callPackage @@ -257083,7 +243301,6 @@ self: { ]; description = "The RogueStar Animation and Graphics Library: Mathematics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rset" = callPackage @@ -257107,8 +243324,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A Rational Street Performer Protocol solver"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rss" = callPackage @@ -257175,9 +243390,7 @@ self: { ]; description = "watches an RSS/Atom feed and writes it to an IRC channel"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rss2irc"; - broken = true; }) {}; "rstream" = callPackage @@ -257189,8 +243402,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "stream-fusion framework from vector"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rtcm" = callPackage @@ -257219,7 +243430,6 @@ self: { ]; description = "Haskell bindings for RTCM"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rtld" = callPackage @@ -257267,8 +243477,6 @@ self: { ]; description = "Manipulate network devices, addresses, and routes on Linux"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rtorrent-rpc" = callPackage @@ -257285,8 +243493,6 @@ self: { ]; description = "A library for communicating with RTorrent over its XML-RPC interface"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rtorrent-state" = callPackage @@ -257307,8 +243513,6 @@ self: { ]; description = "Parsing and manipulation of rtorrent state file contents"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rts-loader" = callPackage @@ -257328,8 +243532,6 @@ self: { executableHaskellDepends = [ base Cabal process ]; description = "Dynamically load Haskell libraries"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rubberband" = callPackage @@ -257348,8 +243550,6 @@ self: { description = "Binding to the C++ audio stretching library Rubber Band"; license = lib.licenses.gpl3Only; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) rubberband;}; "ruby-marshal" = callPackage @@ -257371,8 +243571,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Parse a subset of Ruby objects serialised with Marshal.dump."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ruby-qq" = callPackage @@ -257389,8 +243587,6 @@ self: { ]; description = "rubyish quasiquoters"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ruff" = callPackage @@ -257402,8 +243598,6 @@ self: { libraryHaskellDepends = [ array base mtl parsec safe strict Vec ]; description = "relatively useful fractal functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ruin" = callPackage @@ -257425,8 +243619,6 @@ self: { ]; description = "Pliable records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ruler" = callPackage @@ -257445,7 +243637,6 @@ self: { ]; description = "Ruler tool for UHC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ruler"; }) {}; @@ -257464,7 +243655,6 @@ self: { uulib ]; license = "LGPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "ruler-core"; }) {}; @@ -257562,9 +243752,7 @@ self: { testHaskellDepends = [ base directory hspec process ]; description = "Stack wrapper for single-file Haskell programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "runhs"; - broken = true; }) {}; "runmany" = callPackage @@ -257582,9 +243770,7 @@ self: { ]; description = "Run multiple commands, interleaving output and errors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "runmany"; - broken = true; }) {}; "runmemo" = callPackage @@ -257607,7 +243793,6 @@ self: { libraryHaskellDepends = [ base ifcxt QuickCheck template-haskell ]; description = "Runtime generation of Arbitrary values"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "runtime-instances" = callPackage @@ -257625,8 +243810,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit type-reflection ]; description = "Look up class instances at runtime"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "rustls" = callPackage @@ -257651,8 +243834,6 @@ self: { ]; description = "TLS bindings for Rustls"; license = lib.licenses.cc0; - hydraPlatforms = lib.platforms.none; - broken = true; }) {rustls = null;}; "rv" = callPackage @@ -257670,7 +243851,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "RISC-V"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "rvar" = callPackage @@ -257717,9 +243897,7 @@ self: { ]; description = "Packet Generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rws"; - broken = true; }) {}; "rz-pipe" = callPackage @@ -257738,9 +243916,7 @@ self: { executableHaskellDepends = [ aeson base ]; description = "Pipe interface for Rizin"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "rzk" = callPackage @@ -257768,9 +243944,7 @@ self: { ]; description = "An experimental proof assistant for synthetic ∞-categories"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "rzk"; - broken = true; }) {}; "s-cargot" = callPackage @@ -257798,8 +243972,6 @@ self: { testHaskellDepends = [ base HUnit parsec s-cargot text ]; description = "Enables let-binding and let-expansion for s-cargot defined S-expressions"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "s-expression" = callPackage @@ -257814,7 +243986,6 @@ self: { executableHaskellDepends = [ base ]; description = "simple general-purpose s-expressions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "example-s-expressions"; }) {}; @@ -257875,8 +244046,6 @@ self: { ]; description = "A monadic buffer resilient to exceptions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safe-coerce" = callPackage @@ -257888,8 +244057,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A friendly shorthand for an old friend"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safe-coloured-text" = callPackage @@ -257925,8 +244092,6 @@ self: { ]; testToolDepends = [ sydtest-discover ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safe-coloured-text-layout" = callPackage @@ -257944,8 +244109,6 @@ self: { testToolDepends = [ sydtest-discover ]; description = "Safely layout output coloured text"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safe-coloured-text-layout-gen" = callPackage @@ -257966,7 +244129,6 @@ self: { ]; testToolDepends = [ sydtest-discover ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "safe-coloured-text-terminfo" = callPackage @@ -257999,7 +244161,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Relational proof system for probabilistic algorithms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "safe-decimal" = callPackage @@ -258095,8 +244256,6 @@ self: { libraryHaskellDepends = [ base indexed mtl vector ]; description = "Support for safely freezing multiple arrays in the ST monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safe-gen" = callPackage @@ -258120,8 +244279,6 @@ self: { libraryHaskellDepends = [ base stm template-haskell ]; description = "Safe top-level mutable variables which scope like ordinary values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safe-json" = callPackage @@ -258162,8 +244319,6 @@ self: { ]; description = "A library providing safe lazy IO features"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safe-length" = callPackage @@ -258181,8 +244336,6 @@ self: { ]; description = "Tired of accidentally calling length on tuples? Relief at last!"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safe-money" = callPackage @@ -258289,8 +244442,6 @@ self: { ]; description = "Instances from the xmlbf library for the safe-money library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safe-numeric" = callPackage @@ -258318,7 +244469,6 @@ self: { ]; description = "A small wrapper over hs-plugins to allow loading safe plugins"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "safe-printf" = callPackage @@ -258338,8 +244488,6 @@ self: { ]; description = "Well-typed, flexible and variadic printf for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safe-tensor" = callPackage @@ -258355,8 +244503,6 @@ self: { ]; description = "Dependently typed tensor algebra"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safe-wild-cards" = callPackage @@ -258369,8 +244515,6 @@ self: { testHaskellDepends = [ base ]; description = "Use RecordWildCards safely"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safecopy" = callPackage @@ -258413,8 +244557,6 @@ self: { ]; description = "Making SafeCopy migrations easier"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safecopy-store" = callPackage @@ -258438,8 +244580,6 @@ self: { ]; description = "Binary serialization with version control"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safeint" = callPackage @@ -258457,8 +244597,6 @@ self: { ]; description = "overflow-checked Int type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safeio" = callPackage @@ -258481,8 +244619,6 @@ self: { ]; description = "Write output to disk atomically"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safepath" = callPackage @@ -258495,8 +244631,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Safe Paths in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "safer-file-handles" = callPackage @@ -258513,7 +244647,6 @@ self: { ]; description = "Type-safe file handling"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "safer-file-handles-bytestring" = callPackage @@ -258530,7 +244663,6 @@ self: { ]; description = "Extends safer-file-handles with ByteString operations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "safer-file-handles-text" = callPackage @@ -258546,7 +244678,6 @@ self: { ]; description = "Extends safer-file-handles with Text operations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "saferoute" = callPackage @@ -258558,8 +244689,6 @@ self: { libraryHaskellDepends = [ base blaze-html containers text ]; description = "A simple type-safe routing library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sai-shape-syb" = callPackage @@ -258575,7 +244704,6 @@ self: { ]; description = "Obtain homogeneous values from arbitrary values, transforming or culling data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sajson" = callPackage @@ -258598,9 +244726,7 @@ self: { ]; description = "Fast JSON parsing powered by Chad Austin's sajson library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sajson-bench"; - broken = true; }) {}; "sak" = callPackage @@ -258622,7 +244748,6 @@ self: { executableToolDepends = [ cpphs ]; description = "Compression command-line tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sak"; }) {}; @@ -258644,8 +244769,6 @@ self: { ]; description = "Haskell representation of messages exchanged on the sakura.io platform."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "salak" = callPackage @@ -258675,8 +244798,6 @@ self: { ]; description = "Configuration (re)Loader and Parser"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "salak-toml" = callPackage @@ -258699,7 +244820,6 @@ self: { ]; description = "Configuration Loader for toml"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "salak-yaml" = callPackage @@ -258721,7 +244841,6 @@ self: { ]; description = "Configuration Loader for yaml"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "saltine" = callPackage @@ -258766,7 +244885,6 @@ self: { ]; description = "Quickcheck implementations for some NaCl data"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libsodium;}; "salve" = callPackage @@ -258799,7 +244917,6 @@ self: { ]; description = "Modular web application framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "salvia-demo" = callPackage @@ -258822,7 +244939,6 @@ self: { doHaddock = false; description = "Demo Salvia servers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "salvia-extras" = callPackage @@ -258843,7 +244959,6 @@ self: { ]; description = "Collection of non-fundamental handlers for the Salvia web server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "salvia-protocol" = callPackage @@ -258860,8 +244975,6 @@ self: { ]; description = "Salvia webserver protocol suite supporting URI, HTTP, Cookie and MIME"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "salvia-sessions" = callPackage @@ -258879,7 +244992,6 @@ self: { ]; description = "Session support for the Salvia webserver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "salvia-websocket" = callPackage @@ -258896,7 +245008,6 @@ self: { ]; description = "Websocket implementation for the Salvia Webserver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sample-frame" = callPackage @@ -258955,7 +245066,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Binding to the C samtools library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) zlib;}; "samtools-conduit" = callPackage @@ -258976,7 +245086,6 @@ self: { ]; description = "Conduit interface to SAM/BAM format files through samtools"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "samtools-conduit-copy"; }) {}; @@ -258993,7 +245102,6 @@ self: { ]; description = "Enumerator interface to SamTools library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "samtools-iteratee" = callPackage @@ -259010,7 +245118,6 @@ self: { ]; description = "Iteratee interface to SamTools library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "sandi" = callPackage @@ -259041,8 +245148,6 @@ self: { libraryHaskellDepends = [ base ]; description = "SAND data serialization and manipulation library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sandman" = callPackage @@ -259061,9 +245166,7 @@ self: { ]; description = "Manages Cabal sandboxes to avoid rebuilding packages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sandman"; - broken = true; }) {}; "sandwich" = callPackage @@ -259234,8 +245337,6 @@ self: { libraryHaskellDepends = [ base deepseq portaudio ]; description = "audio library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sarif" = callPackage @@ -259279,7 +245380,6 @@ self: { ]; description = "A universal quickfix toolkit and his protocol"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "sasha" = callPackage @@ -259303,8 +245403,6 @@ self: { testToolDepends = [ alex ]; description = "A staged lexer generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sasl" = callPackage @@ -259321,7 +245419,6 @@ self: { ]; description = "SASL implementation using simple-pipe"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sat" = callPackage @@ -259335,8 +245432,6 @@ self: { executableHaskellDepends = [ base ]; description = "CNF SATisfier"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sat-micro-hs" = callPackage @@ -259354,7 +245449,6 @@ self: { ]; description = "A minimal SAT solver"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "sat-micro"; }) {}; @@ -259389,8 +245483,6 @@ self: { ]; description = "driver for external satchmo backends"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "satchmo-examples" = callPackage @@ -259408,7 +245500,6 @@ self: { ]; description = "examples that show how to use satchmo"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "satchmo-funsat" = callPackage @@ -259424,7 +245515,6 @@ self: { ]; description = "funsat driver as backend for satchmo"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "satchmo-minisat" = callPackage @@ -259436,8 +245526,6 @@ self: { libraryHaskellDepends = [ base containers process satchmo ]; description = "minisat driver as backend for satchmo"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "satchmo-toysat" = callPackage @@ -259453,7 +245541,6 @@ self: { ]; description = "toysat driver as backend for satchmo"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "saturn" = callPackage @@ -259471,8 +245558,6 @@ self: { doHaddock = false; description = "Handle POSIX cron schedules"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "satyros" = callPackage @@ -259491,8 +245576,6 @@ self: { ]; description = "Step-by-step SAT solver for educational purposes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sauron" = callPackage @@ -259519,7 +245602,6 @@ self: { ]; description = "The eye that watches everything you did on Twitter"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "sauron"; }) {}; @@ -259539,8 +245621,6 @@ self: { ]; description = "re-export of the random generators from Hedgehog"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sax" = callPackage @@ -259559,8 +245639,6 @@ self: { testHaskellDepends = [ base bytestring hspec ]; description = "Monadic streaming XML parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "say" = callPackage @@ -259709,7 +245787,6 @@ self: { description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) z3;}; "sbv" = callPackage @@ -259739,8 +245816,6 @@ self: { ]; description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) z3;}; "sbv-program" = callPackage @@ -259756,7 +245831,6 @@ self: { testHaskellDepends = [ base sbv ]; description = "Component-based program synthesis using SBV"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sbvPlugin" = callPackage @@ -259776,7 +245850,6 @@ self: { ]; description = "Formally prove properties of Haskell programs using SBV/SMT"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sc2-lowlevel" = callPackage @@ -259796,7 +245869,6 @@ self: { ]; description = "Low-level Starcraft II API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sc2-proto" = callPackage @@ -259816,8 +245888,6 @@ self: { libraryToolDepends = [ proto-lens-protoc protoc ]; description = "A protocol buffer model for the Starcraft II bot API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {protoc = null;}; "sc2-support" = callPackage @@ -259834,7 +245904,6 @@ self: { ]; description = "Support and utility library for sc2hs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sc2hs" = callPackage @@ -259862,7 +245931,6 @@ self: { ]; description = "An interface to the Starcraft II bot API"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "sc2hs-demo"; }) {}; @@ -259876,7 +245944,6 @@ self: { libraryHaskellDepends = [ base hsc3 hsc3-db ]; description = "Haskell bindings to sc3-rdu (sc3 rd ugens)"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "scalable-server" = callPackage @@ -259894,7 +245961,6 @@ self: { ]; description = "Library for writing fast/scalable TCP-based services"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "scale" = callPackage @@ -259918,8 +245984,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "SCALE v2.0 codec for Haskell Web3 library."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "scaleimage" = callPackage @@ -259933,9 +245997,7 @@ self: { executableHaskellDepends = [ base filepath gd ]; description = "Scale an image to a new geometry"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "scaleimage"; - broken = true; }) {}; "scalendar" = callPackage @@ -259952,8 +246014,6 @@ self: { ]; description = "A library for handling calendars and resource availability over time"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "scalp-webhooks" = callPackage @@ -259980,7 +246040,6 @@ self: { ]; description = "Test webhooks locally"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "scalp-webhooks"; }) {}; @@ -260033,7 +246092,6 @@ self: { ]; description = "scalpel scrapers for search engines"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "scan" = callPackage @@ -260067,7 +246125,6 @@ self: { ]; description = "Metadata types for Albedo Scanners"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "scan-vector-machine" = callPackage @@ -260080,7 +246137,6 @@ self: { testHaskellDepends = [ array base HUnit ]; description = "An implementation of the Scan Vector Machine instruction set in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "scanf" = callPackage @@ -260146,9 +246202,7 @@ self: { description = "Generates unique passwords for various websites from a single password"; license = lib.licenses.bsd3; platforms = lib.platforms.x86; - hydraPlatforms = lib.platforms.none; mainProgram = "scat"; - broken = true; }) {}; "scc" = callPackage @@ -260181,9 +246235,7 @@ self: { ]; description = "Streaming component combinators"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "shsh"; - broken = true; }) {}; "scenegraph" = callPackage @@ -260216,7 +246268,6 @@ self: { ]; description = "A Haskell library for writing SCGI programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "schedevr" = callPackage @@ -260234,8 +246285,6 @@ self: { ]; description = "Marge schedules and show EVR"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "schedule" = callPackage @@ -260276,9 +246325,7 @@ self: { ]; description = "Find the ideal lesson layout"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "schedule-planner"; - broken = true; }) {}; "scheduler" = callPackage @@ -260322,7 +246369,6 @@ self: { ]; description = "An interview scheduler using constraint satisfaction and Google Sheets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "scheduler"; }) {}; @@ -260335,8 +246381,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Exposes standard POSIX function sched_yield"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "schema" = callPackage @@ -260379,8 +246423,6 @@ self: { ]; description = "schema guided serialization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "schematic" = callPackage @@ -260409,7 +246451,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "JSON-biased spec and validation tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "scholdoc" = callPackage @@ -260454,7 +246495,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Converts ScholarlyMarkdown documents to HTML5/LaTeX/Docx format"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "scholdoc"; }) {}; @@ -260489,7 +246529,6 @@ self: { ]; description = "Scholdoc fork of pandoc-citeproc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "scholdoc-citeproc"; }) {}; @@ -260513,7 +246552,6 @@ self: { ]; description = "Scholdoc fork of texmath"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "scholdoc-types" = callPackage @@ -260529,8 +246567,6 @@ self: { ]; description = "Scholdoc fork of pandoc-types"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "schonfinkeling" = callPackage @@ -260554,8 +246590,6 @@ self: { testHaskellDepends = [ base ]; description = "Rational numbers in scientific notation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "scidb-hquery" = callPackage @@ -260589,9 +246623,7 @@ self: { ]; description = "Haskell query for SciDB via shim"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hquery"; - broken = true; }) {}; "science-constants" = callPackage @@ -260712,7 +246744,6 @@ self: { ]; description = "Haskell IDE library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "scion-server"; }) {}; @@ -260748,7 +246779,6 @@ self: { ]; description = "Command-line interface for browsing and searching packages documentation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "scion-browser"; }) {}; @@ -260763,9 +246793,7 @@ self: { executableHaskellDepends = [ base bytestring containers process ]; description = "Generates graphviz file of scons dependency information"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "scons2dot"; - broken = true; }) {}; "scope" = callPackage @@ -260783,7 +246811,6 @@ self: { ]; description = "An interactive renderer for plotting time-series data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "scope-cairo" = callPackage @@ -260807,7 +246834,6 @@ self: { ]; description = "An interactive renderer for plotting time-series data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "scope-cairo"; }) {}; @@ -260826,8 +246852,6 @@ self: { ]; description = "scotty with batteries included"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "scotty" = callPackage @@ -260879,8 +246903,6 @@ self: { ]; description = "The Play Framework style data binding in Scotty"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "scotty-blaze" = callPackage @@ -260895,8 +246917,6 @@ self: { ]; description = "blaze-html integration for Scotty"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "scotty-cookie" = callPackage @@ -260937,7 +246957,6 @@ self: { ]; description = "Fay integration for Scotty"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "scotty-form" = callPackage @@ -260951,7 +246970,6 @@ self: { ]; description = "Html form validation using `ditto`"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "scotty-format" = callPackage @@ -260968,9 +246986,7 @@ self: { testHaskellDepends = [ base ]; description = "Response format helper for the Scotty web framework"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "scotty-format-example"; - broken = true; }) {}; "scotty-hastache" = callPackage @@ -260987,7 +247003,6 @@ self: { ]; description = "Easy Mustache templating support for Scotty"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "scotty-haxl" = callPackage @@ -260999,7 +247014,6 @@ self: { libraryHaskellDepends = [ base haxl scotty text ]; description = "Combine scotty and haxl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "scotty-params-parser" = callPackage @@ -261016,8 +247030,6 @@ self: { ]; description = "HTTP-request's query parameters parser abstraction for \"scotty\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "scotty-path-normalizer" = callPackage @@ -261045,8 +247057,6 @@ self: { ]; description = "A Better way of modeling web resources"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "scotty-rest" = callPackage @@ -261072,8 +247082,6 @@ self: { ]; description = "Webmachine-style REST library for scotty"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "scotty-session" = callPackage @@ -261092,8 +247100,6 @@ self: { ]; description = "Adding session functionality to scotty"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "scotty-tls" = callPackage @@ -261107,8 +247113,6 @@ self: { ]; description = "TLS for Scotty"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "scotty-utils" = callPackage @@ -261140,9 +247144,7 @@ self: { libraryHaskellDepends = [ base scotty text transformers ]; executableHaskellDepends = [ base scotty text transformers ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "web"; - broken = true; }) {}; "scp-streams" = callPackage @@ -261164,7 +247166,6 @@ self: { testHaskellDepends = [ base bytestring io-streams ]; description = "An SCP protocol implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "scrabble-bot" = callPackage @@ -261184,7 +247185,6 @@ self: { ]; description = "Scrabble play generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "scrabble-bot"; }) {}; @@ -261209,7 +247209,6 @@ self: { ]; description = "collect posts of site that is wrote in config yaml using feed or scraping"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "scrapbook"; }) {}; @@ -261232,8 +247231,6 @@ self: { ]; description = "Core Package for scrapbook"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "scrape-changes" = callPackage @@ -261260,8 +247257,6 @@ self: { ]; description = "Scrape websites for changes"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "screenshot-to-clipboard" = callPackage @@ -261309,9 +247304,7 @@ self: { ]; description = "Stack of error, reader, writer, state, and prompt monad transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "script-monad-exe"; - broken = true; }) {}; "scrobble" = callPackage @@ -261334,9 +247327,7 @@ self: { ]; description = "Scrobbling server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "scrobble-server"; - broken = true; }) {}; "scroll" = callPackage @@ -261357,7 +247348,6 @@ self: { ]; description = "scroll(6), a roguelike game"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "scroll"; }) {}; @@ -261371,8 +247361,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "This package provides functions for relocate an item within a list"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "scrypt" = callPackage @@ -261417,9 +247405,7 @@ self: { ]; description = "Process management and supervision daemon"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "scrz"; - broken = true; }) {}; "scubature" = callPackage @@ -261435,7 +247421,6 @@ self: { ]; description = "Multidimensional integration over simplices"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "scuttlebutt-types" = callPackage @@ -261468,9 +247453,7 @@ self: { executableHaskellDepends = [ base bytestring ]; description = "Fast CSV lexing on ByteString"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "scythe"; - broken = true; }) {}; "scyther-proof" = callPackage @@ -261492,9 +247475,7 @@ self: { executableToolDepends = [ alex ]; description = "Automatic generation of Isabelle/HOL correctness proofs for security protocols"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "scyther-proof"; - broken = true; }) {}; "sde-solver" = callPackage @@ -261513,8 +247494,6 @@ self: { ]; description = "Distributed SDE solver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sdf2p1-parser" = callPackage @@ -261593,8 +247572,6 @@ self: { ]; description = "An image loading and rendering library for sdl2 / sdl2-cairo"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sdl2-compositor" = callPackage @@ -261618,8 +247595,6 @@ self: { ]; description = "image compositing with sdl2 - declarative style"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sdl2-fps" = callPackage @@ -261633,8 +247608,6 @@ self: { libraryHaskellDepends = [ base sdl2 ]; description = "Run of the mill, frames per second timer implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sdl2-gfx" = callPackage @@ -261657,9 +247630,7 @@ self: { executablePkgconfigDepends = [ SDL2 SDL2_gfx ]; description = "Haskell bindings to SDL2_gfx"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sdl2-gfx-example"; - broken = true; }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_gfx;}; "sdl2-image" = callPackage @@ -261682,9 +247653,7 @@ self: { executablePkgconfigDepends = [ SDL2 SDL2_image ]; description = "Haskell bindings to SDL2_image"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sdl2-image-example"; - broken = true; }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_image;}; "sdl2-mixer" = callPackage @@ -261709,8 +247678,6 @@ self: { description = "Haskell bindings to SDL2_mixer"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) SDL2_mixer;}; "sdl2-sprite" = callPackage @@ -261731,7 +247698,6 @@ self: { ]; description = "Sprite previewer/animator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sdl2-sprite"; }) {}; @@ -261753,8 +247719,6 @@ self: { description = "Bindings to SDL2_ttf"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_ttf;}; "sdnv" = callPackage @@ -261780,8 +247744,6 @@ self: { libraryToolDepends = [ cpphs ]; description = "Simple Data Processing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sdp-binary" = callPackage @@ -261793,7 +247755,6 @@ self: { libraryHaskellDepends = [ base binary sdp ]; description = "Binary instances for SDP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sdp-deepseq" = callPackage @@ -261805,7 +247766,6 @@ self: { libraryHaskellDepends = [ base deepseq sdp ]; description = "DeepSeq SDP extension"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sdp-hashable" = callPackage @@ -261817,7 +247777,6 @@ self: { libraryHaskellDepends = [ base hashable sdp ]; description = "Hashable instances for SDP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sdp-io" = callPackage @@ -261829,7 +247788,6 @@ self: { libraryHaskellDepends = [ base fmr sdp ]; description = "SDP IO extension"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sdp-quickcheck" = callPackage @@ -261849,7 +247807,6 @@ self: { ]; description = "SDP QuickCheck support"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sdp4bytestring" = callPackage @@ -261870,7 +247827,6 @@ self: { ]; description = "SDP wrapper for ByteString"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sdp4text" = callPackage @@ -261889,7 +247845,6 @@ self: { ]; description = "SDP wrapper for Text"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sdp4unordered" = callPackage @@ -261903,7 +247858,6 @@ self: { ]; description = "SDP classes for unordered containers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sdp4vector" = callPackage @@ -261922,7 +247876,6 @@ self: { ]; description = "SDP wrapper for Vector"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sdr" = callPackage @@ -261955,8 +247908,6 @@ self: { description = "A software defined radio library"; license = lib.licenses.bsd3; platforms = lib.platforms.x86_64; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "seacat" = callPackage @@ -261980,8 +247931,6 @@ self: { ]; description = "Small web framework using Warp and WAI"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "seakale" = callPackage @@ -261993,8 +247942,6 @@ self: { libraryHaskellDepends = [ base bytestring free mtl text ]; description = "Pure SQL layer on top of other libraries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "seakale-postgresql" = callPackage @@ -262010,7 +247957,6 @@ self: { ]; description = "PostgreSQL backend for Seakale"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "seakale-tests" = callPackage @@ -262026,7 +247972,6 @@ self: { ]; description = "Helpers to test code using Seakale"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "seal-module" = callPackage @@ -262080,8 +248025,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Semantic Editor Combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "secd" = callPackage @@ -262113,9 +248056,7 @@ self: { executableHaskellDepends = [ base containers ]; description = "SECDH Machine Simulator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "secdh"; - broken = true; }) {}; "seclib" = callPackage @@ -262127,8 +248068,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A simple library for static information-flow security in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "second-transfer" = callPackage @@ -262156,8 +248095,6 @@ self: { testToolDepends = [ cpphs ]; description = "Second Transfer HTTP/2 web server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "secp256k1" = callPackage @@ -262181,8 +248118,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Bindings for secp256k1 library from Bitcoin Core"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) secp256k1;}; "secp256k1-haskell" = callPackage @@ -262255,8 +248190,6 @@ self: { ]; description = "fork of secp256k1"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "secret-santa" = callPackage @@ -262274,9 +248207,7 @@ self: { ]; description = "Secret Santa game assigner using QR-Codes"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "secret-santa"; - broken = true; }) {}; "secret-sharing" = callPackage @@ -262310,7 +248241,6 @@ self: { executableHaskellDepends = [ base haskell98 ]; description = "Example of writing \"secure\" file removal in Haskell rather than C"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "secrm"; }) {}; @@ -262339,9 +248269,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Securely allocated and deallocated memory"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "checkpw"; - broken = true; }) {}; "secure-sockets" = callPackage @@ -262357,8 +248285,6 @@ self: { ]; description = "Secure point-to-point connectivity library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "secureUDP" = callPackage @@ -262370,8 +248296,6 @@ self: { libraryHaskellDepends = [ base bytestring containers network ]; description = "Setups secure (unsorted) UDP packet transfer"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "securemem" = callPackage @@ -262401,7 +248325,6 @@ self: { librarySystemDepends = [ sedna ]; description = "Sedna C API XML Binding"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {sedna = null;}; "seitz-symbol" = callPackage @@ -262421,7 +248344,6 @@ self: { ]; description = "Read and Display Seitz Symbol"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "selda" = callPackage @@ -262438,8 +248360,6 @@ self: { ]; description = "Multi-backend, high-level EDSL for interacting with SQL databases"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "selda-json" = callPackage @@ -262451,7 +248371,6 @@ self: { libraryHaskellDepends = [ aeson base bytestring selda text ]; description = "JSON support for the Selda database library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "selda-postgresql" = callPackage @@ -262468,8 +248387,6 @@ self: { ]; description = "PostgreSQL backend for the Selda database EDSL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "selda-sqlite" = callPackage @@ -262486,7 +248403,6 @@ self: { ]; description = "SQLite backend for the Selda database EDSL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "select" = callPackage @@ -262539,8 +248455,6 @@ self: { libraryToolDepends = [ alex happy ]; description = "CSS Selectors for DOM traversal"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "selenium" = callPackage @@ -262552,8 +248466,6 @@ self: { libraryHaskellDepends = [ base HTTP HUnit mtl network pretty ]; description = "Test web applications through a browser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "selenium-server" = callPackage @@ -262573,7 +248485,6 @@ self: { testHaskellDepends = [ base hspec text webdriver ]; description = "Run the selenium standalone server for usage with webdriver"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "self-extract" = callPackage @@ -262595,7 +248506,6 @@ self: { executableHaskellDepends = [ base ]; description = "A Haskell library to make self-extracting executables"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "self-bundle"; }) {}; @@ -262620,8 +248530,6 @@ self: { librarySystemDepends = [ selinux ]; description = "SELinux bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {selinux = null;}; "semantic" = callPackage @@ -262653,7 +248561,6 @@ self: { ]; description = "Types and functionality for working with source code"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "semaphore-compat" = callPackage @@ -262667,8 +248574,6 @@ self: { libraryHaskellDepends = [ base exceptions unix ]; description = "Cross-platform abstraction for system semaphores"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "semaphore-plus" = callPackage @@ -262700,9 +248605,7 @@ self: { executableHaskellDepends = [ base ]; description = "Evaluate code snippets in Literate Haskell"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "semdoc"; - broken = true; }) {}; "semi-iso" = callPackage @@ -262718,7 +248621,6 @@ self: { ]; description = "Weakened partial isomorphisms, reversible computations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "semialign" = callPackage @@ -262755,8 +248657,6 @@ self: { testHaskellDepends = [ base doctest QuickCheck ]; description = "Extra functions for working with Semialigns"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "semialign-indexed" = callPackage @@ -262771,8 +248671,6 @@ self: { doHaddock = false; description = "SemialignWithIndex, i.e. izipWith and ialignWith"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "semialign-optics" = callPackage @@ -262787,8 +248685,6 @@ self: { doHaddock = false; description = "SemialignWithIndex, i.e. izipWith and ialignWith"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "semibounded-lattices" = callPackage @@ -262801,8 +248697,6 @@ self: { testHaskellDepends = [ base ]; description = "A Haskell implementation of semibounded lattices"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "semigroupoid-extras" = callPackage @@ -262887,8 +248781,6 @@ self: { ]; description = "RebindableSyntax using the semigroupoids package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "semigroups" = callPackage @@ -262911,8 +248803,6 @@ self: { libraryHaskellDepends = [ base containers semigroups ]; description = "Semigroups actions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "semilattices" = callPackage @@ -262931,8 +248821,6 @@ self: { ]; description = "Semilattices"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "semiring" = callPackage @@ -262946,7 +248834,6 @@ self: { libraryHaskellDepends = [ base Boolean containers monoids ]; description = "Semirings, ring-like structures used for dynamic programming applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "semiring-num" = callPackage @@ -262972,7 +248859,6 @@ self: { ]; description = "Basic semiring class and instances"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "semiring-simple" = callPackage @@ -263064,8 +248950,6 @@ self: { ]; description = "Sengrid API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sendgrid-v3" = callPackage @@ -263085,8 +248969,6 @@ self: { ]; description = "Sendgrid v3 API library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sensei" = callPackage @@ -263133,7 +249015,6 @@ self: { ]; description = "Distributed sensor network for the raspberry pi"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sensenet"; }) {}; @@ -263156,9 +249037,7 @@ self: { ]; description = "A tool to send command execution results to Sensu"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sensu-run"; - broken = true; }) {}; "sentence-jp" = callPackage @@ -263172,7 +249051,6 @@ self: { ]; description = "Easily generating message of japanese natural language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sentiwordnet-parser" = callPackage @@ -263189,7 +249067,6 @@ self: { ]; description = "Parser for the SentiWordNet tab-separated file"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sentry" = callPackage @@ -263210,8 +249087,6 @@ self: { executableHaskellDepends = [ base directory filepath unix ]; description = "Process monitoring tool written and configured in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "senza" = callPackage @@ -263288,8 +249163,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "SmartyPants for Korean language"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "separated" = callPackage @@ -263312,8 +249185,6 @@ self: { ]; description = "A data type with elements separated by values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "seqaid" = callPackage @@ -263338,7 +249209,6 @@ self: { ]; description = "Dynamic strictness control, including space leak repair"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "seqalign" = callPackage @@ -263393,7 +249263,6 @@ self: { ]; description = "Handle sequence locations for bioinformatics"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "seqloc-datafiles" = callPackage @@ -263427,7 +249296,6 @@ self: { ]; description = "Read and write BED and GTF format genome annotations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "sequence" = callPackage @@ -263509,8 +249377,6 @@ self: { ]; description = "Alternative Core language for GHC plugins"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sequential-index" = callPackage @@ -263522,8 +249388,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Sequential numbers that allow arbitrarily inserting numbers - for containers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sequor" = callPackage @@ -263547,7 +249411,6 @@ self: { ]; description = "A sequence labeler based on Collins's sequence perceptron"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "serf" = callPackage @@ -263564,8 +249427,6 @@ self: { ]; description = "Interact with Serf via Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "serial" = callPackage @@ -263664,8 +249525,6 @@ self: { ]; description = "Instances for Serialize of cereal"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "serialport" = callPackage @@ -263678,8 +249537,6 @@ self: { testHaskellDepends = [ base bytestring HUnit ]; description = "Cross platform serial port library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "serokell-util" = callPackage @@ -263710,8 +249567,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "General-purpose functions by Serokell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "serpentine" = callPackage @@ -263730,7 +249585,6 @@ self: { executableHaskellDepends = [ base singletons text ]; description = "Simple project template from stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -263745,7 +249599,6 @@ self: { ]; description = "Dependently typed API framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "serv-wai" = callPackage @@ -263770,7 +249623,6 @@ self: { ]; description = "Dependently typed API servers with Serv"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant" = callPackage @@ -263850,9 +249702,7 @@ self: { ]; description = "Servant support for JuicyPixels"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "image-conversion"; - broken = true; }) {}; "servant-aeson-specs" = callPackage @@ -263878,8 +249728,6 @@ self: { ]; description = "generic tests for aeson serialization in servant"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-auth" = callPackage @@ -263953,8 +249801,6 @@ self: { ]; description = "Authentication via encrypted cookies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-auth-docs" = callPackage @@ -264039,9 +249885,7 @@ self: { ]; description = "Authentication via HMAC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "servant-auth-server" = callPackage @@ -264072,8 +249916,6 @@ self: { testToolDepends = [ hspec-discover markdown-unlit ]; description = "servant-server/servant-auth compatibility"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-auth-swagger" = callPackage @@ -264115,7 +249957,6 @@ self: { ]; description = "Servant based API and server for token based authorisation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-auth-token-acid" = callPackage @@ -264137,7 +249978,6 @@ self: { ]; description = "Acid-state backend for servant-auth-token server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-auth-token-api" = callPackage @@ -264154,7 +249994,6 @@ self: { ]; description = "Servant based API for token based authorisation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-auth-token-leveldb" = callPackage @@ -264176,7 +250015,6 @@ self: { ]; description = "Leveldb backend for servant-auth-token server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-auth-token-persistent" = callPackage @@ -264196,7 +250034,6 @@ self: { ]; description = "Persistent backend for servant-auth-token server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-auth-token-rocksdb" = callPackage @@ -264219,7 +250056,6 @@ self: { ]; description = "RocksDB backend for servant-auth-token server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-auth-wordpress" = callPackage @@ -264254,8 +250090,6 @@ self: { ]; description = "Avro content type for Servant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-benchmark" = callPackage @@ -264279,8 +250113,6 @@ self: { ]; description = "Generate benchmark files from a Servant API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-blaze" = callPackage @@ -264387,7 +250219,6 @@ self: { ]; description = "Command line interface for Servant API clients"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "greet-cli"; }) {}; @@ -264524,8 +250355,6 @@ self: { ]; description = "A servant client for frontend JavaScript"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-client-namedargs" = callPackage @@ -264547,7 +250376,6 @@ self: { ]; description = "Automatically derive API client functions with named and optional parameters"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-combinators" = callPackage @@ -264572,8 +250400,6 @@ self: { ]; description = "Extra servant combinators for full WAI functionality"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-conduit" = callPackage @@ -264636,7 +250462,6 @@ self: { ]; description = "Generate servant client library for C#"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-db" = callPackage @@ -264648,8 +250473,6 @@ self: { libraryHaskellDepends = [ base servant ]; description = "Servant types for defining API with relational DBs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-db-postgresql" = callPackage @@ -264675,7 +250498,6 @@ self: { ]; description = "Derive a postgres client to database API specified by servant-db"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-dhall" = callPackage @@ -264697,8 +250519,6 @@ self: { ]; description = "Servant Dhall content-type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-docs" = callPackage @@ -264778,8 +250598,6 @@ self: { ]; description = "Generate endpoints overview for Servant API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-ede" = callPackage @@ -264803,7 +250621,6 @@ self: { ]; description = "Combinators for rendering EDE templates in servant web applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "servant-ede-example"; }) {}; @@ -264831,7 +250648,6 @@ self: { ]; description = "Helpers for using ekg with servant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-elm" = callPackage @@ -264854,8 +250670,6 @@ self: { ]; description = "Automatically derive Elm functions to query servant webservices"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-errors" = callPackage @@ -264879,8 +250693,6 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Servant Errors wai-middlware"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-event-stream" = callPackage @@ -264901,8 +250713,6 @@ self: { testHaskellDepends = [ base ]; description = "Servant support for Server-Sent events"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-examples" = callPackage @@ -264925,7 +250735,6 @@ self: { ]; description = "Example programs for servant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-exceptions" = callPackage @@ -264999,8 +250808,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Helpers for generating clients for servant APIs in any programming language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-foreign_0_16" = callPackage @@ -265021,7 +250828,6 @@ self: { description = "Helpers for generating clients for servant APIs in any programming language"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-gdp" = callPackage @@ -265033,8 +250839,6 @@ self: { libraryHaskellDepends = [ aeson base gdp servant-server text ]; description = "Use Servant and GDP together to create expressive web API types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-generate" = callPackage @@ -265048,8 +250852,6 @@ self: { libraryHaskellDepends = [ base servant servant-server ]; description = "Utilities for generating mock server implementations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-generic" = callPackage @@ -265066,8 +250868,6 @@ self: { ]; description = "Specify Servant APIs with records"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-github" = callPackage @@ -265091,9 +250891,7 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Bindings to GitHub API using servant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "test"; - broken = true; }) {}; "servant-github-webhook" = callPackage @@ -265116,8 +250914,6 @@ self: { ]; description = "Servant combinators to facilitate writing GitHub webhooks"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-haxl-client" = callPackage @@ -265145,7 +250941,6 @@ self: { ]; description = "automatical derivation of querying functions for servant webservices"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-hmac-auth" = callPackage @@ -265171,8 +250966,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Servant authentication with HMAC"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-htmx" = callPackage @@ -265188,9 +250981,7 @@ self: { testHaskellDepends = [ base servant-server text ]; description = "A library for using servant with htmx"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "servant-htmx-exe"; - broken = true; }) {}; "servant-http-streams" = callPackage @@ -265226,8 +251017,6 @@ self: { testToolDepends = [ hspec-discover markdown-unlit ]; description = "Automatic derivation of querying functions for servant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-http-streams_0_20" = callPackage @@ -265263,7 +251052,6 @@ self: { description = "Automatic derivation of querying functions for servant"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-http2-client" = callPackage @@ -265288,8 +251076,6 @@ self: { ]; description = "Generate HTTP2 clients from Servant API descriptions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-iCalendar" = callPackage @@ -265306,8 +251092,6 @@ self: { ]; description = "Servant support for iCalendar"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-jquery" = callPackage @@ -265326,8 +251110,6 @@ self: { ]; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-js" = callPackage @@ -265353,7 +251135,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Automatically derive javascript functions to query servant webservices"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-jsonrpc" = callPackage @@ -265424,8 +251205,6 @@ self: { ]; description = "Automatically derive Kotlin class to query servant webservices"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-lucid" = callPackage @@ -265515,7 +251294,6 @@ self: { ]; description = "Matrix parameter combinator for servant"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "servant-mock" = callPackage @@ -265544,9 +251322,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Derive a mock server for free from your servant API types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mock-app"; - broken = true; }) {}; "servant-multipart" = callPackage @@ -265572,7 +251348,6 @@ self: { ]; description = "multipart/form-data (e.g file upload) support for servant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-multipart-api" = callPackage @@ -265615,7 +251390,6 @@ self: { ]; description = "multipart/form-data (e.g file upload) support for servant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-named" = callPackage @@ -265646,8 +251420,6 @@ self: { testHaskellDepends = [ base hspec named QuickCheck servant ]; description = "Combinators for servant providing named parameters"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-nix" = callPackage @@ -265669,8 +251441,6 @@ self: { ]; description = "Servant Nix content-type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-oauth2" = callPackage @@ -265692,7 +251462,6 @@ self: { ]; description = "A library for OAuth2 authentication in servant"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "servant-oauth2-examples" = callPackage @@ -265722,7 +251491,6 @@ self: { ]; description = "Example applications using this library in three ways"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "servant-openapi3" = callPackage @@ -265753,7 +251521,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Generate a Swagger/OpenAPI/OAS 3.0 specification for your servant API."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-options" = callPackage @@ -265769,7 +251536,6 @@ self: { ]; description = "Provide responses to OPTIONS requests for Servant applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "servant-pagination" = callPackage @@ -265805,8 +251571,6 @@ self: { ]; description = "Use Pandoc to render servant API documentation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-pipes" = callPackage @@ -265877,7 +251641,6 @@ self: { ]; description = "Utilities for using servant in a polysemy stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-pool" = callPackage @@ -265891,8 +251654,6 @@ self: { libraryHaskellDepends = [ base resource-pool servant time ]; description = "Utility functions for creating servant 'Context's with \"context/connection pooling\" support"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-postgresql" = callPackage @@ -265909,7 +251670,6 @@ self: { ]; description = "Useful functions and instances for using servant with a PostgreSQL context"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-proto-lens" = callPackage @@ -265932,8 +251692,6 @@ self: { ]; description = "Servant Content-Type for proto-lens protobuf modules"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-purescript" = callPackage @@ -265957,8 +251715,6 @@ self: { ]; description = "Generate PureScript accessor functions for you servant API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-pushbullet-client" = callPackage @@ -265978,7 +251734,6 @@ self: { ]; description = "Bindings to the Pushbullet API using servant-client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "servant-py" = callPackage @@ -266000,8 +251755,6 @@ self: { ]; description = "Automatically derive python functions to query servant webservices"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-queryparam-client" = callPackage @@ -266043,7 +251796,6 @@ self: { ]; description = "Instances of classes from openapi3 for servant-queryparam-core"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-queryparam-server" = callPackage @@ -266087,8 +251839,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "QuickCheck entire APIs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-rate-limit" = callPackage @@ -266112,7 +251862,6 @@ self: { ]; description = "Rate limiting for Servant"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "servant-rawm" = callPackage @@ -266186,7 +251935,6 @@ self: { ]; description = "Derive Reason types to interact with a Haskell backend"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-reflex" = callPackage @@ -266209,8 +251957,6 @@ self: { ]; description = "servant API generator for reflex apps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-response" = callPackage @@ -266243,8 +251989,6 @@ self: { ]; description = "Servant router for non-server applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-ruby" = callPackage @@ -266259,7 +252003,6 @@ self: { testHaskellDepends = [ base doctest QuickCheck ]; description = "Generate a Ruby client from a Servant API with Net::HTTP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-scotty" = callPackage @@ -266278,8 +252021,6 @@ self: { ]; description = "Generate a web service for servant 'Resource's using scotty and JSON"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-seo" = callPackage @@ -266302,8 +252043,6 @@ self: { ]; description = "Generate Robots.txt and Sitemap.xml specification for your servant API."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-serf" = callPackage @@ -266322,9 +252061,7 @@ self: { executableHaskellDepends = [ base ]; description = "Automatically generate Servant API modules"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "servant-serf"; - broken = true; }) {}; "servant-serialization" = callPackage @@ -266352,7 +252089,6 @@ self: { QuickCheck serialise servant text ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -266452,7 +252188,6 @@ self: { ]; description = "Automatically derive API server functions with named and optional parameters"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-smsc-ru" = callPackage @@ -266475,8 +252210,6 @@ self: { ]; description = "Servant client for smsc.ru service for sending SMS to cell phones"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-snap" = callPackage @@ -266514,7 +252247,6 @@ self: { ]; description = "A family of combinators for defining webservices APIs and serving them"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "snap-greet"; }) {}; @@ -266538,9 +252270,7 @@ self: { ]; description = "Content-Types for rendering Mustache in servant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "servant-static-th" = callPackage @@ -266567,8 +252297,6 @@ self: { ]; description = "Embed a directory of static files in your Servant server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-streaming" = callPackage @@ -266583,8 +252311,6 @@ self: { testHaskellDepends = [ base hspec http-types QuickCheck servant ]; description = "Servant combinators for the 'streaming' package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-streaming-client" = callPackage @@ -266610,7 +252336,6 @@ self: { ]; description = "Client instances for the 'servant-streaming' package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-streaming-docs" = callPackage @@ -266628,7 +252353,6 @@ self: { ]; description = "Client instances for the 'servant-docs' package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-streaming-server" = callPackage @@ -266655,7 +252379,6 @@ self: { ]; description = "Server instances for the 'servant-streaming' package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-streamly" = callPackage @@ -266679,9 +252402,7 @@ self: { ]; description = "Servant Stream support for streamly"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "servant-streamly-example"; - broken = true; }) {}; "servant-subscriber" = callPackage @@ -266708,7 +252429,6 @@ self: { executableHaskellDepends = [ base purescript-bridge ]; description = "When REST is not enough ..."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "subscriber-psGenerator"; }) {}; @@ -266787,7 +252507,6 @@ self: { ]; description = "Swagger Tags for Servant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-swagger-ui" = callPackage @@ -266886,7 +252605,6 @@ self: { ]; description = "Automatically generate Elm clients for Servant APIs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-tracing" = callPackage @@ -266911,8 +252629,6 @@ self: { transformers ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-typed-error" = callPackage @@ -266928,8 +252644,6 @@ self: { ]; description = "Typed error wrapper for Servant"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-typescript" = callPackage @@ -266957,7 +252671,6 @@ self: { ]; description = "TypeScript client generation for Servant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "servant-typescript-exe"; }) {}; @@ -267008,7 +252721,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Servant servers utilities"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "servant-util-examples"; }) {}; @@ -267040,7 +252752,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Implementation of servant-util primitives for beam-postgres"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "servant-util-beam-pg-examples"; }) {}; @@ -267082,7 +252793,6 @@ self: { ]; description = "Servant Integration for Waargonaut JSON Package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-wasm" = callPackage @@ -267101,9 +252811,7 @@ self: { ]; description = "Servant support for delivering WebAssembly"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "exe"; - broken = true; }) {}; "servant-websockets" = callPackage @@ -267141,8 +252849,6 @@ self: { ]; description = "Servant support for the XML Content-Type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-xstatic" = callPackage @@ -267175,8 +252881,6 @@ self: { ]; description = "Servant support for yaml"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-zeppelin" = callPackage @@ -267188,8 +252892,6 @@ self: { libraryHaskellDepends = [ base singletons ]; description = "Types and definitions of servant-zeppelin combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servant-zeppelin-client" = callPackage @@ -267213,7 +252915,6 @@ self: { ]; description = "Client library for servant-zeppelin combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-zeppelin-server" = callPackage @@ -267237,7 +252938,6 @@ self: { ]; description = "Server library for servant-zeppelin combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "servant-zeppelin-swagger" = callPackage @@ -267259,7 +252959,6 @@ self: { ]; description = "Swagger instances for servant-zeppelin combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "server-generic" = callPackage @@ -267277,9 +252976,7 @@ self: { ]; description = "Auto-generate a server for your datatype"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.Gabriella439 ]; - broken = true; }) {}; "serverless-haskell" = callPackage @@ -267307,7 +253004,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Deploying Haskell code onto AWS Lambda using Serverless"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "serversession" = callPackage @@ -267352,8 +253048,6 @@ self: { ]; description = "Storage backend for serversession using acid-state"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "serversession-backend-persistent" = callPackage @@ -267380,8 +253074,6 @@ self: { ]; description = "Storage backend for serversession using persistent and an RDBMS"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "serversession-backend-redis" = callPackage @@ -267472,8 +253164,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Tools for building services"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "serviette" = callPackage @@ -267489,8 +253179,6 @@ self: { ]; description = "JSON to Sql"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "servius" = callPackage @@ -267542,8 +253230,6 @@ self: { ]; description = "Snaplet for the ses-html package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sessions" = callPackage @@ -267558,8 +253244,6 @@ self: { ]; description = "Session Types for Haskell"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sessiontypes" = callPackage @@ -267581,9 +253265,7 @@ self: { testHaskellDepends = [ base directory exceptions hspec ]; description = "Session types library"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "test-visualizer"; - broken = true; }) {}; "sessiontypes-distributed" = callPackage @@ -267606,7 +253288,6 @@ self: { ]; description = "Session types distributed"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "set-cover" = callPackage @@ -267671,8 +253352,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Sets of fixed size, with typelits"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "set-with" = callPackage @@ -267692,8 +253371,6 @@ self: { ]; description = "Set of elements sorted by a different data type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "setdown" = callPackage @@ -267743,9 +253420,7 @@ self: { executableHaskellDepends = [ base ]; description = "A console interface to the game of Set"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "set-game"; - broken = true; }) {}; "setlocale" = callPackage @@ -267777,8 +253452,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "A Haskell implementation of setoid"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "setop" = callPackage @@ -267859,8 +253532,6 @@ self: { libraryHaskellDepends = [ base mtl template-haskell ]; description = "Small (TH) library to declare setters for typical `record' data type fields"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "settings" = callPackage @@ -267896,9 +253567,7 @@ self: { ]; description = "S-Expression parsing/printing made fun and easy"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "sexp"; - broken = true; }) {}; "sexp-grammar" = callPackage @@ -267976,9 +253645,7 @@ self: { testHaskellDepends = [ base data-default hspec megaparsec ]; description = "Simple s-expression parser"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sexpr-parser-z3-demo"; - broken = true; }) {}; "sexpresso" = callPackage @@ -268017,8 +253684,6 @@ self: { ]; description = "Lists, Texts, ByteStrings and Vectors with type-encoded length"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sfml-audio" = callPackage @@ -268031,8 +253696,6 @@ self: { librarySystemDepends = [ libsndfile openal ]; description = "minimal bindings to the audio module of sfml"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libsndfile; inherit (pkgs) openal;}; "sfmt" = callPackage @@ -268044,8 +253707,6 @@ self: { libraryHaskellDepends = [ base bytestring entropy primitive ]; description = "SIMD-oriented Fast Mersenne Twister(SFMT) binding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sfnt2woff" = callPackage @@ -268091,8 +253752,6 @@ self: { ]; description = "Stochastic gradient descent library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sgf" = callPackage @@ -268109,7 +253768,6 @@ self: { ]; description = "SGF (Smart Game Format) parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sgrep" = callPackage @@ -268123,7 +253781,6 @@ self: { executableHaskellDepends = [ base bio regex-compat ]; description = "Sgrep - grep Fasta files for sequences matching a regular expression"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "sgrep"; }) {}; @@ -268151,9 +253808,7 @@ self: { ]; description = "Record your shell session and print in the markdown format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sh2md"; - broken = true; }) {}; "sha-streams" = callPackage @@ -268168,9 +253823,7 @@ self: { executableHaskellDepends = [ base io-streams SHA ]; description = "SHA hashes for io-streams"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sha-streams"; - broken = true; }) {}; "sha-validation" = callPackage @@ -268220,8 +253873,6 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "A control structure used to combine heterogenous types with delayed effects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shadower" = callPackage @@ -268244,9 +253895,7 @@ self: { ]; description = "An automated way to run doctests in files that are changing"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "shadower"; - broken = true; }) {}; "shadowsocks" = callPackage @@ -268293,7 +253942,6 @@ self: { ]; description = "Functional GPU programming - DSEL & compiler"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "shady-graphics" = callPackage @@ -268311,7 +253959,6 @@ self: { ]; description = "Functional GPU programming - DSEL & compiler"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "shake" = callPackage @@ -268399,7 +254046,6 @@ self: { ]; description = "Rules for binary distributions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "shake-c" = callPackage @@ -268461,9 +254107,7 @@ self: { ]; description = "Utility for building Shake build systems using Cabal sandboxes"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "shake-cabal-build"; - broken = true; }) {}; "shake-ccjs" = callPackage @@ -268491,8 +254135,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Dhall dependencies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shake-elm" = callPackage @@ -268530,8 +254172,6 @@ self: { ]; description = "Extra utilities for shake build systems"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shake-futhark" = callPackage @@ -268600,8 +254240,6 @@ self: { ]; description = "Shake Minify Rules"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shake-minify-css" = callPackage @@ -268615,7 +254253,6 @@ self: { ]; description = "Shake rules for CSS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "shake-pack" = callPackage @@ -268627,7 +254264,6 @@ self: { libraryHaskellDepends = [ base bytestring bzlib shake tar ]; description = "Shake File Pack Rule"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "shake-path" = callPackage @@ -268639,8 +254275,6 @@ self: { libraryHaskellDepends = [ base path path-io shake ]; description = "path alternatives to shake functions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shake-persist" = callPackage @@ -268658,9 +254292,7 @@ self: { executableHaskellDepends = [ base shake ]; description = "Shake build system on-disk caching"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "ex.shake-persist"; - broken = true; }) {}; "shake-plus" = callPackage @@ -268693,7 +254325,6 @@ self: { ]; description = "Experimental extensions to shake-plus"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "shakebook" = callPackage @@ -268739,7 +254370,6 @@ self: { ]; description = "Shake-based technical documentation generator; HTML & PDF"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "shaker" = callPackage @@ -268768,7 +254398,6 @@ self: { ]; description = "simple and interactive command-line build tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "shaker"; }) {}; @@ -268826,8 +254455,6 @@ self: { ]; description = "compile es2015"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shakespeare-css" = callPackage @@ -268879,8 +254506,6 @@ self: { ]; description = "SASS support for Shakespeare and Yesod"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shakespeare-text" = callPackage @@ -268938,7 +254563,6 @@ self: { ]; description = "Parser and related tools for ESRI shapefile format"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "shapely-data" = callPackage @@ -268957,7 +254581,6 @@ self: { ]; description = "Generics using @(,)@ and @Either@, with algebraic operations and typed conversions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "shapes" = callPackage @@ -269058,8 +254681,6 @@ self: { ]; description = "A circular buffer built on shared memory"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shared-fields" = callPackage @@ -269073,8 +254694,6 @@ self: { testHaskellDepends = [ base Cabal hspec lens text ]; description = "a tiny library for using shared lens fields"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shared-memory" = callPackage @@ -269114,9 +254733,7 @@ self: { executableHaskellDepends = [ base filepath mtl ]; description = "A Haskell preprocessor adding miscellaneous features"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "she"; - broken = true; }) {}; "sheets" = callPackage @@ -269133,7 +254750,6 @@ self: { ]; description = "Spreadsheet type for composite"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "shelduck" = callPackage @@ -269164,7 +254780,6 @@ self: { ]; description = "Test webhooks locally"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "shelduck"; }) {}; @@ -269228,8 +254843,6 @@ self: { executableHaskellDepends = [ base ]; description = "Pipe streams through external shell commands"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shell-utility" = callPackage @@ -269281,8 +254894,6 @@ self: { ]; description = "shell-/perl- like (systems) programming in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shellmate" = callPackage @@ -269299,8 +254910,6 @@ self: { ]; description = "Simple interface for shell scripting in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shellmate-extras" = callPackage @@ -269317,7 +254926,6 @@ self: { ]; description = "Extra functionality for shellmate"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "shellmet" = callPackage @@ -269337,9 +254945,7 @@ self: { testHaskellDepends = [ base doctest Glob ]; description = "Out of the shell solution for scripting in Haskell"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "readme"; - broken = true; }) {}; "shellout" = callPackage @@ -269534,8 +255140,6 @@ self: { ]; description = "Run a sequence of functions on in-memory representations of files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shimmer" = callPackage @@ -269556,9 +255160,7 @@ self: { ]; description = "The Reflective Lambda Machine"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "shimmer"; - broken = true; }) {}; "shine" = callPackage @@ -269588,8 +255190,6 @@ self: { isExecutable = true; description = "Examples for the shine package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shine-varying" = callPackage @@ -269620,8 +255220,6 @@ self: { ]; description = "Implementation of Shivers' Control-Flow Analysis"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shoap" = callPackage @@ -269633,8 +255231,6 @@ self: { libraryHaskellDepends = [ base curl ]; description = "A very basic SOAP package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shopify" = callPackage @@ -269655,8 +255251,6 @@ self: { ]; description = "A haskell API binding for shopify.com"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "short-vec" = callPackage @@ -269688,8 +255282,6 @@ self: { ]; description = "Length-indexed vectors using SmallArray#"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "short-vec-lens" = callPackage @@ -269707,7 +255299,6 @@ self: { ]; description = "Lenses and related functionality for the `short-vec` package"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "shortbytestring" = callPackage @@ -269732,8 +255323,6 @@ self: { ]; description = "Additional ShortByteString API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shortcircuit" = callPackage @@ -269769,8 +255358,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Link shortcuts for use in text markup"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "shorten-strings" = callPackage @@ -269782,8 +255369,6 @@ self: { libraryHaskellDepends = [ base text ]; description = "Shorten a variety of string-like types adding ellipsis"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "should-not-typecheck" = callPackage @@ -269858,8 +255443,6 @@ self: { ]; description = "Robust prettyprinter for output of auto-generated Show instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "show-type" = callPackage @@ -269871,8 +255454,6 @@ self: { libraryHaskellDepends = [ base ]; description = "convert types into string values in haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "showdown" = callPackage @@ -269887,7 +255468,6 @@ self: { executableHaskellDepends = [ base glade gtk random ]; description = "A simple gtk based Russian Roulette game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "showdown"; }) {}; @@ -269929,7 +255509,6 @@ self: { ]; description = "Web automation library in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "shplit" = callPackage @@ -269980,7 +255559,6 @@ self: { executableHaskellDepends = [ base ]; description = "Shuffle tool for UHC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "shuffle"; }) {}; @@ -270022,8 +255600,6 @@ self: { ]; description = "Generate swift types from haskell types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "si-clock" = callPackage @@ -270037,7 +255613,6 @@ self: { ]; description = "An interface to the Silicon Labs Si5351 clock chip"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "si-timers" = callPackage @@ -270079,7 +255654,6 @@ self: { ]; description = "Machine Learning algorithms"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "sieve" = callPackage @@ -270114,9 +255688,7 @@ self: { ]; description = "Simple, visual, functional language for learning about recursion"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sifflet"; - broken = true; }) {}; "sifflet-lib" = callPackage @@ -270135,8 +255707,6 @@ self: { librarySystemDepends = [ gdk_x11 gtk_x11 ]; description = "Library of modules shared by sifflet and its tests and its exporters"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {gdk_x11 = null; gtk_x11 = null;}; "siggy-chardust" = callPackage @@ -270177,7 +255747,6 @@ self: { ]; description = "Thom polynomials of second order Thom-Boardman singularities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sigma-ij"; }) {}; @@ -270200,8 +255769,6 @@ self: { ]; description = "Write Discord Bots in Haskell"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sign" = callPackage @@ -270252,8 +255819,6 @@ self: { ]; description = "Deterministic serialisation and signatures with proto-lens support"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "signable-haskell-protoc" = callPackage @@ -270273,9 +255838,7 @@ self: { ]; description = "Deterministic serialisation and signatures with proto-lens support"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "signable-haskell-protoc"; - broken = true; }) {}; "signal" = callPackage @@ -270322,7 +255885,6 @@ self: { ]; description = "Synchronous signal processing for DSLs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "signature" = callPackage @@ -270340,7 +255902,6 @@ self: { ]; description = "Hmac sha256 signature json and http payload"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "signed-multiset" = callPackage @@ -270352,8 +255913,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Multisets with negative membership"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "significant-figures" = callPackage @@ -270375,9 +255934,7 @@ self: { ]; description = "Calculate expressions involving significant figures"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "significant-figures-cli"; - broken = true; }) {}; "signify-hs" = callPackage @@ -270401,7 +255958,6 @@ self: { ]; description = "A Haskell clone of OpenBSD signify"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "signify-hs"; }) {}; @@ -270443,7 +255999,6 @@ self: { testHaskellDepends = [ base quantification savage text ]; description = "A generator for different kinds of data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "simd" = callPackage @@ -270455,8 +256010,6 @@ self: { libraryHaskellDepends = [ base ghc-prim primitive vector ]; description = "simple interface to GHC's SIMD instructions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simfin" = callPackage @@ -270483,8 +256036,6 @@ self: { testHaskellDepends = [ aeson base tasty tasty-hunit text ]; description = "A library to fetch and parse financial data from the SimFin(+) API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simgi" = callPackage @@ -270502,7 +256053,6 @@ self: { ]; description = "stochastic simulation engine"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "simgi"; }) {}; @@ -270538,7 +256088,6 @@ self: { ]; description = "A minimalist web framework for the WAI server interface"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "smpl"; }) {}; @@ -270554,8 +256103,6 @@ self: { ]; description = "A library for more structured concurrent programming, based on the Actor Model"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-affine-space" = callPackage @@ -270606,8 +256153,6 @@ self: { libraryHaskellDepends = [ base containers deepseq ]; description = "Atom (or symbol) datatype for fast comparision and sorting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-bluetooth" = callPackage @@ -270620,8 +256165,6 @@ self: { librarySystemDepends = [ bluetooth ]; description = "Simple Bluetooth API for Windows and Linux (bluez)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {bluetooth = null;}; "simple-c-value" = callPackage @@ -270644,7 +256187,6 @@ self: { ]; description = "A simple C value type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "simple-cabal" = callPackage @@ -270716,8 +256258,6 @@ self: { ]; description = "A simple streaming I/O library based on monadic folds"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-config" = callPackage @@ -270735,8 +256275,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Simple config file parser generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-css" = callPackage @@ -270752,8 +256290,6 @@ self: { ]; description = "simple binding of css and html"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-download" = callPackage @@ -270769,8 +256305,6 @@ self: { ]; description = "A simple wrapper of http-conduit for file download"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-effects" = callPackage @@ -270792,8 +256326,6 @@ self: { benchmarkHaskellDepends = [ base criterion mtl transformers ]; description = "A simple effect system that integrates with MTL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-enumeration" = callPackage @@ -270820,9 +256352,7 @@ self: { executableHaskellDepends = [ base text ]; description = "Evaluate a Text to an Integer: \"1 + 1\" -> 2"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "Eval"; - broken = true; }) {}; "simple-expr" = callPackage @@ -270853,7 +256383,6 @@ self: { libraryHaskellDepends = [ base bindings-dc1394 CV ]; description = "Simplified interface for firewire cameras"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "simple-form" = callPackage @@ -270870,8 +256399,6 @@ self: { ]; description = "Forms that configure themselves based on type"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-genetic-algorithm" = callPackage @@ -270886,9 +256413,7 @@ self: { executableHaskellDepends = [ base deepseq parallel random ]; description = "Simple parallel genetic algorithm implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ga-sin-example"; - broken = true; }) {}; "simple-genetic-algorithm-mr" = callPackage @@ -270936,8 +256461,6 @@ self: { ]; description = "Allows simple indexation on any data type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-log" = callPackage @@ -270958,8 +256481,6 @@ self: { testHaskellDepends = [ base hspec microlens-platform text ]; description = "Simple log for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-log-syslog" = callPackage @@ -270971,7 +256492,6 @@ self: { libraryHaskellDepends = [ base hsyslog simple-log text ]; description = "Syslog backend for simple-log"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "simple-logger" = callPackage @@ -271005,8 +256525,6 @@ self: { ]; description = "Logging effect to plug into the simple-effects framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-ltl" = callPackage @@ -271053,8 +256571,6 @@ self: { libraryHaskellDepends = [ base formatting simple-media-timestamp ]; description = "Formatting for simple-media-timestamp"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-money" = callPackage @@ -271066,8 +256582,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Simple library to handle and interexchange money"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-neural-networks" = callPackage @@ -271087,8 +256601,6 @@ self: { ]; description = "Simple parallel neural networks implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-nix" = callPackage @@ -271110,7 +256622,6 @@ self: { ]; description = "Simple parsing/pretty printing for Nix expressions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "simple-observer" = callPackage @@ -271144,8 +256655,6 @@ self: { ]; description = "Simple parser combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-pascal" = callPackage @@ -271163,7 +256672,6 @@ self: { ]; description = "Simplified Pascal language to SSVM compiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "spc"; }) {}; @@ -271183,8 +256691,6 @@ self: { ]; description = "simple pipeline library like conduit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-postgresql-orm" = callPackage @@ -271202,7 +256708,6 @@ self: { ]; description = "Connector package for integrating postgresql-orm with the Simple web framework"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "simple-prompt" = callPackage @@ -271236,8 +256741,6 @@ self: { libraryHaskellDepends = [ base bytestring QuickCheck ]; description = "Memory-efficient strings with concatenation and splitting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-sendfile" = callPackage @@ -271273,8 +256776,6 @@ self: { ]; description = "Simple Server interface"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-session" = callPackage @@ -271292,7 +256793,6 @@ self: { ]; description = "Cookie-based session management for the Simple web framework"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "simple-sessions" = callPackage @@ -271329,8 +256829,6 @@ self: { testHaskellDepends = [ base mtl parsec pretty tasty tasty-hunit ]; description = "A parser for SQL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-src-utils" = callPackage @@ -271363,9 +256861,7 @@ self: { ]; description = "Simple stacked virtual machine: assembler, disassembler, bytecode interpreter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ssvm"; - broken = true; }) {}; "simple-tabular" = callPackage @@ -271377,8 +256873,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Simple tabular-text formatter"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-tar" = callPackage @@ -271394,8 +256888,6 @@ self: { ]; description = "Simple, pure, file-system-free reading of tar files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-templates" = callPackage @@ -271414,8 +256906,6 @@ self: { ]; description = "A basic template language for the Simple web framework"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-text-format" = callPackage @@ -271449,8 +256939,6 @@ self: { ]; description = "UI library for terminal"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-units" = callPackage @@ -271463,8 +256951,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Simple arithmetic with SI units using type-checked dimensional analysis"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simple-vec3" = callPackage @@ -271494,8 +256980,6 @@ self: { testHaskellDepends = [ base hspec lens ]; description = "Zippers made slightly easier"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simpleargs" = callPackage @@ -271510,8 +256994,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Provides a more flexible getArgs function with better error reporting"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simpleconfig" = callPackage @@ -271528,8 +257010,6 @@ self: { ]; description = "Short description of your package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simpleirc" = callPackage @@ -271546,8 +257026,6 @@ self: { testHaskellDepends = [ base bytestring hspec HUnit knob ]; description = "Simple IRC Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simpleirc-lens" = callPackage @@ -271559,7 +257037,6 @@ self: { libraryHaskellDepends = [ base bytestring simpleirc ]; description = "Lenses for simpleirc types"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "simplelru" = callPackage @@ -271602,8 +257079,6 @@ self: { ]; description = "Haskell interface for the simplenote API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simpleprelude" = callPackage @@ -271622,8 +257097,6 @@ self: { ]; description = "A simplified Haskell prelude for teaching"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simplesmtpclient" = callPackage @@ -271637,8 +257110,6 @@ self: { libraryHaskellDepends = [ array base directory network old-time ]; description = "Very simple SMTP Client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simplessh" = callPackage @@ -271667,8 +257138,6 @@ self: { librarySystemDepends = [ sqlite ]; description = "Simplest SQLite3 binding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) sqlite;}; "simplex" = callPackage @@ -271770,8 +257239,6 @@ self: { ]; description = "SimpleXMQ message broker"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simplistic-generics" = callPackage @@ -271787,8 +257254,6 @@ self: { ]; description = "Generic programming without too many type classes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "simpoole" = callPackage @@ -271819,7 +257284,6 @@ self: { executableHaskellDepends = [ base bio bytestring random ]; description = "Simulate sequencing with different models for priming and errors"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "simseq"; }) {}; @@ -271886,8 +257350,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "a class for single tuple implementations"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "singlethongs" = callPackage @@ -271900,8 +257362,6 @@ self: { testHaskellDepends = [ base ]; description = "Like singletons, but much smaller"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "singleton-bool" = callPackage @@ -271938,8 +257398,6 @@ self: { libraryHaskellDepends = [ base singletons ]; description = "Typelevel balanced search trees via a singletonized Data.Map"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "singleton-nats" = callPackage @@ -271964,8 +257422,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Singletons and induction over GHC TypeLits"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "singletons" = callPackage @@ -272087,8 +257543,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Singnal"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "singular-factory" = callPackage @@ -272109,8 +257563,6 @@ self: { ]; description = "Multivariate polynomial factorization via bindings to Singular-factory"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {singular-factory = null;}; "sink" = callPackage @@ -272122,8 +257574,6 @@ self: { libraryHaskellDepends = [ base ]; description = "An alternative to lazy I/O that doesn't conflate execution with evaluation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sint" = callPackage @@ -272143,8 +257593,6 @@ self: { ]; description = "Nat singletons represented by Int"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "siphash" = callPackage @@ -272165,8 +257613,6 @@ self: { ]; description = "siphash: a fast short input PRF"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "siphon" = callPackage @@ -272192,7 +257638,6 @@ self: { ]; description = "Encode and decode CSV files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "siren-json" = callPackage @@ -272217,7 +257662,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Siren Tools for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "sirkel" = callPackage @@ -272234,7 +257678,6 @@ self: { ]; description = "Sirkel, a Chord DHT"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sitemap" = callPackage @@ -272246,7 +257689,6 @@ self: { libraryHaskellDepends = [ base lens taggy taggy-lens text ]; description = "Sitemap parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sitemap-gen" = callPackage @@ -272285,8 +257727,6 @@ self: { ]; description = "A simple to understand static site generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sixel" = callPackage @@ -272323,8 +257763,6 @@ self: { ]; description = "A six figure group of time"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sixty-five-oh-two" = callPackage @@ -272404,8 +257842,6 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Multidimensional grids with sized specified at compile time"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sized-types" = callPackage @@ -272424,8 +257860,6 @@ self: { ]; description = "Sized types in Haskell using the GHC Nat kind"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sized-vector" = callPackage @@ -272442,8 +257876,6 @@ self: { ]; description = "Size-parameterized vector types and functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sized-wrapper" = callPackage @@ -272515,9 +257947,7 @@ self: { ]; description = "Recursively show space (size and i-nodes) used in subdirectories"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sizes"; - broken = true; }) {}; "sjsp" = callPackage @@ -272539,9 +257969,7 @@ self: { executableToolDepends = [ alex happy ]; description = "Simple JavaScript Profiler"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sjsp"; - broken = true; }) {}; "skein" = callPackage @@ -272578,8 +258006,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Skeletal set - a set with equivalence relation different from equality"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "skeleton" = callPackage @@ -272598,7 +258024,6 @@ self: { ]; description = "a tool to access the OSX keychain"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "skeleton"; }) {}; @@ -272618,7 +258043,6 @@ self: { ]; description = "Manage project skeletons"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "skeletons"; }) {}; @@ -272635,8 +258059,6 @@ self: { ]; description = "An overly complex Haskell web framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "skemmtun" = callPackage @@ -272655,9 +258077,7 @@ self: { ]; description = "A MyAnimeList.net client."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "mal"; - broken = true; }) {}; "sketch-frp-copilot" = callPackage @@ -272674,7 +258094,6 @@ self: { ]; description = "Sketch programming with Copilot"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "skew-list" = callPackage @@ -272714,8 +258133,6 @@ self: { ]; description = "A very quick-and-dirty WebSocket server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "skip-list" = callPackage @@ -272774,8 +258191,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Eclectic collection of utility functions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "skylark-client" = callPackage @@ -272798,7 +258213,6 @@ self: { ]; description = "Skylark client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "skylighting" = callPackage @@ -272872,8 +258286,6 @@ self: { ]; description = "Customized Skylighting syntax highlighters"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "skylighting-format-ansi" = callPackage @@ -272939,8 +258351,6 @@ self: { ]; description = "Lucid support for Skylighting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "skylighting-modding" = callPackage @@ -272969,8 +258379,6 @@ self: { ]; description = "Skype Desktop API binding for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "skypelogexport" = callPackage @@ -273009,8 +258417,6 @@ self: { ]; description = "Haskell API for interacting with Slack"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "slack-api" = callPackage @@ -273034,8 +258440,6 @@ self: { testHaskellDepends = [ base ]; description = "Bindings to the Slack RTM API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "slack-notify-haskell" = callPackage @@ -273055,9 +258459,7 @@ self: { executableHaskellDepends = [ base ]; description = "Slack notifier for Haskell project"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "slack-progressbar" = callPackage @@ -273102,8 +258504,6 @@ self: { ]; description = "Slack API Request Verification HMAC"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "slack-web" = callPackage @@ -273168,7 +258568,6 @@ self: { ]; description = "A note taking CLI tool"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "slate"; }) {}; @@ -273248,9 +258647,7 @@ self: { ]; description = "Python-ish slicing traversals for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "gen-sliceofpy-examples"; - broken = true; }) {}; "slick" = callPackage @@ -273285,9 +258682,7 @@ self: { ]; description = "ws convert markdown to reveal-js"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "slidemews"; - broken = true; }) {}; "slim" = callPackage @@ -273303,8 +258698,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Functional reactive user interface programming"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "slip32" = callPackage @@ -273325,7 +258718,6 @@ self: { ]; description = "SLIP-0032: Extended serialization format for BIP-32 wallets"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "slist" = callPackage @@ -273363,9 +258755,7 @@ self: { ]; description = "A command line interface to Sloane's OEIS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sloane"; - broken = true; }) {}; "slope-field" = callPackage @@ -273401,8 +258791,6 @@ self: { ]; description = "Write lambdas without naming the parameters"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sloth" = callPackage @@ -273414,8 +258802,6 @@ self: { libraryHaskellDepends = [ base mtl process ]; description = "Testing for minimal strictness"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "slotmap" = callPackage @@ -273449,8 +258835,6 @@ self: { ]; description = "Type-safe slugs for Yesod ecosystem"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "slugger" = callPackage @@ -273466,9 +258850,7 @@ self: { testHaskellDepends = [ base hspec text text-icu ]; description = "Clean URI slugs for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "slugger"; - broken = true; }) {}; "slugify" = callPackage @@ -273484,8 +258866,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Convert text into slugs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "slynx" = callPackage @@ -273522,8 +258902,6 @@ self: { doHaddock = false; description = "Serialize to bytes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smallarray" = callPackage @@ -273535,8 +258913,6 @@ self: { libraryHaskellDepends = [ base bytestring deepseq hashable ]; description = "low-level unboxed arrays, with minimal features"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smallcaps" = callPackage @@ -273559,8 +258935,6 @@ self: { ]; description = "Flatten camel case text in LaTeX files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smallcheck" = callPackage @@ -273589,8 +258963,6 @@ self: { benchmarkHaskellDepends = [ base gauge ]; description = "See README for more info"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smallcheck-laws" = callPackage @@ -273602,7 +258974,6 @@ self: { libraryHaskellDepends = [ base smallcheck smallcheck-series ]; description = "SmallCheck properties for common laws"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "smallcheck-lens" = callPackage @@ -273618,7 +258989,6 @@ self: { ]; description = "SmallCheck properties for lens"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "smallcheck-series" = callPackage @@ -273638,8 +259008,6 @@ self: { ]; description = "Extra SmallCheck series and utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smallpt-hs" = callPackage @@ -273653,9 +259021,7 @@ self: { executableHaskellDepends = [ base vector ]; description = "A Haskell port of the smallpt path tracer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "smallpt-hs"; - broken = true; }) {}; "smallstring" = callPackage @@ -273671,7 +259037,6 @@ self: { ]; description = "A Unicode text type, optimized for low memory overhead"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "smaoin" = callPackage @@ -273718,9 +259083,7 @@ self: { ]; description = "A command line tool for working with sets and maps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "smap"; - broken = true; }) {}; "smartGroup" = callPackage @@ -273734,8 +259097,6 @@ self: { ]; description = "group strings or bytestrings by words in common"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smartcheck" = callPackage @@ -273756,9 +259117,7 @@ self: { ]; description = "A smarter QuickCheck"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sc-qc"; - broken = true; }) {}; "smartconstructor" = callPackage @@ -273770,8 +259129,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "A package exposing a helper function for generating smart constructors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smarties" = callPackage @@ -273797,7 +259154,6 @@ self: { ]; description = "Haskell Behavior Tree Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "smartword" = callPackage @@ -273814,7 +259170,6 @@ self: { ]; description = "Web based flash card for Word Smart I and II vocabularies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "smash" = callPackage @@ -273830,8 +259185,6 @@ self: { ]; description = "Combinators for Maybe types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smash-aeson" = callPackage @@ -273843,7 +259196,6 @@ self: { libraryHaskellDepends = [ aeson base smash unordered-containers ]; description = "Aeson support for the smash library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "smash-lens" = callPackage @@ -273856,7 +259208,6 @@ self: { testHaskellDepends = [ base ]; description = "Optics for the `smash` library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "smash-microlens" = callPackage @@ -273869,7 +259220,6 @@ self: { testHaskellDepends = [ base ]; description = "Optics for the `smash` library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "smash-optics" = callPackage @@ -273881,7 +259231,6 @@ self: { libraryHaskellDepends = [ base optics-core smash ]; description = "Optics for the `smash` library using `optics-core`"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "smawk" = callPackage @@ -273895,8 +259244,6 @@ self: { ]; description = "Linear time row minima for totally monotone matrices"; license = "(BSD-2-Clause OR Apache-2.0)"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smcdel" = callPackage @@ -273935,7 +259282,6 @@ self: { benchmarkToolDepends = [ alex happy ]; description = "Symbolic Model Checking for Dynamic Epistemic Logic"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "sme" = callPackage @@ -273947,8 +259293,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A library for Secure Multi-Execution in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smerdyakov" = callPackage @@ -273967,8 +259311,6 @@ self: { transformers yaml ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smiles" = callPackage @@ -273980,8 +259322,6 @@ self: { libraryHaskellDepends = [ base megaparsec text ]; testHaskellDepends = [ base hspec megaparsec QuickCheck text ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smith" = callPackage @@ -273995,8 +259335,6 @@ self: { libraryHaskellDepends = [ base bytesmith primitive ]; description = "Parse arrays of tokens"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smith-cli" = callPackage @@ -274020,7 +259358,6 @@ self: { ]; description = "Command line tool for ."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "smith"; }) {}; @@ -274045,7 +259382,6 @@ self: { ]; description = "API client for ."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "smoothie" = callPackage @@ -274058,8 +259394,6 @@ self: { libraryHaskellDepends = [ aeson base linear text vector ]; description = "Smooth curves via several interpolation modes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smsaero" = callPackage @@ -274076,8 +259410,6 @@ self: { ]; description = "SMSAero API and HTTP client based on servant library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smt" = callPackage @@ -274093,7 +259425,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Interface to Satisfiability Modulo Theories solvers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "smt-lib" = callPackage @@ -274105,8 +259436,6 @@ self: { libraryHaskellDepends = [ array base directory polyparse ]; description = "Parsing and printing SMT-LIB"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smt2-parser" = callPackage @@ -274141,8 +259470,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Low-level functions for SMT-LIB-based interaction with SMT solvers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smtlib-backends-process" = callPackage @@ -274162,7 +259489,6 @@ self: { ]; description = "An SMT-LIB backend running solvers as external processes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "smtlib-backends-tests" = callPackage @@ -274174,7 +259500,6 @@ self: { libraryHaskellDepends = [ base smtlib-backends tasty tasty-hunit ]; description = "Testing SMT-LIB backends"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "smtlib-backends-z3" = callPackage @@ -274193,7 +259518,6 @@ self: { ]; description = "An SMT-LIB backend implemented using Z3's C API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gomp; inherit (pkgs) z3;}; "smtlib2" = callPackage @@ -274212,8 +259536,6 @@ self: { ]; description = "A type-safe interface to communicate with an SMT solver"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smtlib2-debug" = callPackage @@ -274230,7 +259552,6 @@ self: { ]; description = "Dump the communication with an SMT solver for debugging purposes"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "smtlib2-pipe" = callPackage @@ -274252,7 +259573,6 @@ self: { ]; description = "A type-safe interface to communicate with an SMT solver"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "smtlib2-quickcheck" = callPackage @@ -274268,7 +259588,6 @@ self: { ]; description = "Helper functions to create SMTLib expressions in QuickCheck"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "smtlib2-timing" = callPackage @@ -274280,7 +259599,6 @@ self: { libraryHaskellDepends = [ base dependent-sum mtl smtlib2 time ]; description = "Get timing informations for SMT queries"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "smtp-mail" = callPackage @@ -274319,8 +259637,6 @@ self: { ]; description = "An SMTP client EDSL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smtp2mta" = callPackage @@ -274334,7 +259650,6 @@ self: { executableHaskellDepends = [ base haskell98 network process ]; description = "Listen for SMTP traffic and send it to an MTA script"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "smtp2mta"; }) {}; @@ -274369,8 +259684,6 @@ self: { ]; description = "Gmail SMTP Client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "smuggler" = callPackage @@ -274393,9 +259706,7 @@ self: { testHaskellDepends = [ base directory filepath ]; description = "GHC Source Plugin that helps to manage imports"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "play-smuggler"; - broken = true; }) {}; "smuggler2" = callPackage @@ -274417,8 +259728,6 @@ self: { ]; description = "GHC Source Plugin that helps to minimise imports and generate explicit exports"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snack" = callPackage @@ -274435,8 +259744,6 @@ self: { ]; description = "Strict ByteString Parser Combinator"; license = lib.licenses.cc0; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snake" = callPackage @@ -274450,9 +259757,7 @@ self: { executableHaskellDepends = [ base random split terminal-size ]; description = "A basic console snake game"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "snake"; - broken = true; }) {}; "snake-game" = callPackage @@ -274464,8 +259769,6 @@ self: { libraryHaskellDepends = [ base GLUT OpenGL random ]; description = "Snake Game Using OpenGL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snap" = callPackage @@ -274517,8 +259820,6 @@ self: { ]; description = "Accept header branching for the Snap web framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snap-app" = callPackage @@ -274550,9 +259851,7 @@ self: { ]; description = "Command-line tool to manage Snap AuthManager database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "snap-auth-cli"; - broken = true; }) {}; "snap-blaze" = callPackage @@ -274575,8 +259874,6 @@ self: { libraryHaskellDepends = [ base blaze-html clay snap-core ]; description = "blaze-html-clay integration for Snap"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snap-configuration-utilities" = callPackage @@ -274590,8 +259887,6 @@ self: { ]; description = "Methods to manipulate Configurator objects for Snap & Snaplets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snap-core" = callPackage @@ -274656,7 +259951,6 @@ self: { ]; description = "Serve Elm files through the Snap web framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snap-error-collector" = callPackage @@ -274673,8 +259967,6 @@ self: { ]; description = "Collect errors in batches and dispatch them"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snap-extras" = callPackage @@ -274706,7 +259998,6 @@ self: { ]; description = "A collection of useful helpers and utilities for Snap web applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snap-language" = callPackage @@ -274722,8 +260013,6 @@ self: { ]; description = "Language handling for Snap"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snap-loader-dynamic" = callPackage @@ -274740,8 +260029,6 @@ self: { ]; description = "Snap dynamic loader"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snap-loader-static" = callPackage @@ -274778,8 +260065,6 @@ self: { ]; description = "Declarative routing for Snap"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snap-routes" = callPackage @@ -274797,8 +260082,6 @@ self: { ]; description = "Typesafe URLs for Snap applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snap-server" = callPackage @@ -274857,8 +260140,6 @@ self: { ]; description = "Streaming Snap handlers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snap-templates" = callPackage @@ -274904,8 +260185,6 @@ self: { ]; description = "A library for BDD-style testing with the Snap Web Framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snap-utils" = callPackage @@ -274923,8 +260202,6 @@ self: { ]; description = "Snap Framework utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snap-web-routes" = callPackage @@ -274940,8 +260217,6 @@ self: { ]; description = "Type safe URLs for Snap"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-acid-state" = callPackage @@ -274955,8 +260230,6 @@ self: { ]; description = "acid-state snaplet for Snap Framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-actionlog" = callPackage @@ -274981,7 +260254,6 @@ self: { ]; description = "Generic action log snaplet for the Snap Framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snaplet-amqp" = callPackage @@ -274999,8 +260271,6 @@ self: { ]; description = "Snap framework snaplet for the AMQP library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-auth-acid" = callPackage @@ -275021,8 +260291,6 @@ self: { ]; description = "Provides an Acid-State backend for the Auth Snaplet"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-coffee" = callPackage @@ -275042,8 +260310,6 @@ self: { ]; description = "CoffeeScript for Snap, auto-compilation and pre-compilation"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-css-min" = callPackage @@ -275060,8 +260326,6 @@ self: { ]; description = "A Snaplet for CSS minification"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-customauth" = callPackage @@ -275084,7 +260348,6 @@ self: { ]; description = "Alternate authentication snaplet"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snaplet-environments" = callPackage @@ -275101,8 +260364,6 @@ self: { ]; description = "DEPRECATED! You should use standard Snap >= 0.9 \"environments\" functionality. It provided ability to easly read configuration based on given app environment given at command line, envs are defined in app configuration file"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-fay" = callPackage @@ -275122,7 +260383,6 @@ self: { ]; description = "Fay integration for Snap with request- and pre-compilation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snaplet-ghcjs" = callPackage @@ -275156,7 +260416,6 @@ self: { ]; description = "A Hasql snaplet"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "snaplet-haxl" = callPackage @@ -275172,7 +260431,6 @@ self: { ]; description = "Snaplet for Facebook's Haxl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snaplet-hdbc" = callPackage @@ -275193,7 +260451,6 @@ self: { ]; description = "HDBC snaplet for Snap Framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snaplet-hslogger" = callPackage @@ -275210,8 +260467,6 @@ self: { ]; description = "Snap framework snaplet for the Logger API library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-i18n" = callPackage @@ -275254,8 +260509,6 @@ self: { ]; description = "Snap framework snaplet for the InfluxDB library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-lss" = callPackage @@ -275272,7 +260525,6 @@ self: { testHaskellDepends = [ base hspec-snap hspec2 lens snap text ]; description = "Lexical Style Sheets - Snap Web Framework adaptor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snaplet-mandrill" = callPackage @@ -275289,8 +260541,6 @@ self: { ]; description = "Snap framework snaplet for the Mandrill API library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-mongoDB" = callPackage @@ -275310,7 +260560,6 @@ self: { ]; description = "Snap Framework MongoDB support as Snaplet"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snaplet-mongodb-minimalistic" = callPackage @@ -275325,8 +260574,6 @@ self: { ]; description = "Minimalistic MongoDB Snaplet"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-mysql-simple" = callPackage @@ -275347,8 +260594,6 @@ self: { ]; description = "mysql-simple snaplet for the Snap Framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-oauth" = callPackage @@ -275374,7 +260619,6 @@ self: { ]; description = "snaplet-oauth"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snaplet-persistent" = callPackage @@ -275420,8 +260664,6 @@ self: { ]; description = "postgresql-simple snaplet for the Snap Framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-postmark" = callPackage @@ -275438,7 +260680,6 @@ self: { ]; description = "Postmark snaplet for the Snap Framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snaplet-purescript" = callPackage @@ -275455,8 +260696,6 @@ self: { ]; description = "Automatic (re)compilation of purescript projects"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-recaptcha" = callPackage @@ -275474,8 +260713,6 @@ self: { ]; description = "A ReCAPTCHA verification snaplet with Heist integration and connection sharing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-redis" = callPackage @@ -275495,8 +260732,6 @@ self: { ]; description = "Redis support for Snap Framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-redson" = callPackage @@ -275516,7 +260751,6 @@ self: { ]; description = "CRUD for JSON data with Redis storage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snaplet-rest" = callPackage @@ -275534,7 +260768,6 @@ self: { ]; description = "REST resources for the Snap web framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "snaplet-riak" = callPackage @@ -275552,7 +260785,6 @@ self: { ]; description = "A Snaplet for the Riak database"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "snaplet-sass" = callPackage @@ -275570,8 +260802,6 @@ self: { ]; description = "Sass integration for Snap with request- and pre-compilation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-scoped-session" = callPackage @@ -275588,8 +260818,6 @@ self: { ]; description = "Modularised session state for Snaplets, in a Snaplet"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-sedna" = callPackage @@ -275606,7 +260834,6 @@ self: { ]; description = "Snaplet for Sedna Bindings. Essentailly a rip of snaplet-hdbc."; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "snaplet-ses-html" = callPackage @@ -275623,8 +260850,6 @@ self: { ]; description = "Snaplet for the ses-html package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-sqlite-simple" = callPackage @@ -275674,8 +260899,6 @@ self: { ]; description = "Snaplet for JWT authentication with snaplet-sqlite-simple"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-stripe" = callPackage @@ -275694,7 +260917,6 @@ self: { ]; description = "Stripe snaplet for the Snap Framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snaplet-tasks" = callPackage @@ -275711,7 +260933,6 @@ self: { ]; description = "Snaplet for Snap Framework enabling developers to administrative tasks akin to Rake tasks from Ruby On Rails framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snaplet-typed-sessions" = callPackage @@ -275729,8 +260950,6 @@ self: { ]; description = "Typed session snaplets and continuation-based programming for the Snap web framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snaplet-wordpress" = callPackage @@ -275757,7 +260976,6 @@ self: { ]; description = "A snaplet that communicates with wordpress over its api"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snappy" = callPackage @@ -275787,8 +261005,6 @@ self: { libraryHaskellDepends = [ base bytestring conduit snappy ]; description = "Conduit bindings for Snappy (see snappy package)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snappy-framing" = callPackage @@ -275811,8 +261027,6 @@ self: { libraryHaskellDepends = [ base bytestring iteratee snappy ]; description = "An enumeratee that uses Google's snappy compression library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snappy-lazy" = callPackage @@ -275845,7 +261059,6 @@ self: { ]; description = "Audio file reading/writing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sneakyterm" = callPackage @@ -275861,7 +261074,6 @@ self: { ]; description = "Tiny, declarative wrapper around ncurses"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "sneathlane-haste" = callPackage @@ -275873,7 +261085,6 @@ self: { libraryHaskellDepends = [ base haste-compiler ]; description = "A compositional web UI library, which draws to a Canvas element"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "snipcheck" = callPackage @@ -275885,8 +261096,6 @@ self: { libraryHaskellDepends = [ base containers pandoc process text ]; description = "Markdown tester"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snippet-extractor" = callPackage @@ -275922,7 +261131,6 @@ self: { ]; description = "The Simple Nice-Looking Manual Generator"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "snm"; }) {}; @@ -275942,7 +261150,6 @@ self: { ]; description = "SNMP protocol library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snorkels" = callPackage @@ -275965,9 +261172,7 @@ self: { ]; description = "Strategic board game of medium complexity"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "snorkels"; - broken = true; }) {}; "snow-white" = callPackage @@ -275980,7 +261185,6 @@ self: { libraryHaskellDepends = [ base binary bytestring mps ]; description = "encode any binary instance to white space"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snowball" = callPackage @@ -276023,8 +261227,6 @@ self: { ]; description = "A checksummed variation on Twitter's Snowflake UID generation algorithm"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "snowflake" = callPackage @@ -276050,7 +261252,6 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "twitter's snowflake"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "snowflake-server" = callPackage @@ -276069,7 +261270,6 @@ self: { ]; description = "snowflake http server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "snowflake-server"; }) {}; @@ -276105,9 +261305,7 @@ self: { ]; description = "snowtify send your result of `stack build` (`stack test`) to notify-daemon :dog2:"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "snowtify"; - broken = true; }) {}; "snumber" = callPackage @@ -276121,7 +261319,6 @@ self: { libraryHaskellDepends = [ base numeric-kinds type-compare ]; description = "Integer singletons with flexible representation"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "soap" = callPackage @@ -276201,7 +261398,6 @@ self: { ]; description = "Tunnel a socket over a single datastream (stdin/stdout)"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "sock2stream"; }) {}; @@ -276246,8 +261442,6 @@ self: { libraryHaskellDepends = [ base network transformers unix ]; description = "systemd socket activation library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "socket-icmp" = callPackage @@ -276274,7 +261468,6 @@ self: { transformers unordered-containers vector ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "socket-sctp" = callPackage @@ -276288,8 +261481,6 @@ self: { testHaskellDepends = [ base bytestring socket ]; description = "STCP socket extensions library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) lksctp-tools;}; "socket-unix" = callPackage @@ -276306,8 +261497,6 @@ self: { ]; description = "Unix domain sockets"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "socketed" = callPackage @@ -276334,9 +261523,7 @@ self: { ]; description = "simpe tool to serve piped data over http and websocket"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "socketed"; - broken = true; }) {}; "socketio" = callPackage @@ -276365,8 +261552,6 @@ self: { ]; description = "Socket.IO server"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sockets" = callPackage @@ -276395,8 +261580,6 @@ self: { doHaddock = false; description = "High-level network sockets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sockets-and-pipes" = callPackage @@ -276418,8 +261601,6 @@ self: { doHaddock = false; description = "Support for the Sockets and Pipes book"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "socketson" = callPackage @@ -276445,7 +261626,6 @@ self: { ]; description = "A small websocket backend provider"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "socks" = callPackage @@ -276470,8 +261650,6 @@ self: { libraryHaskellDepends = [ base containers mtl ]; description = "Sodium Reactive Programming (FRP) System"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "soegtk" = callPackage @@ -276484,8 +261662,6 @@ self: { libraryHaskellDepends = [ base cairo gtk old-time stm ]; description = "GUI functions as used in the book \"The Haskell School of Expression\""; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "softfloat-hs" = callPackage @@ -276498,8 +261674,6 @@ self: { librarySystemDepends = [ softfloat ]; description = "Haskell bindings for SoftFloat"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {softfloat = null;}; "solana-staking-csvs" = callPackage @@ -276539,8 +261713,6 @@ self: { libraryHaskellDepends = [ base time ]; description = "Simple library for solar calculations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "solga" = callPackage @@ -276564,8 +261736,6 @@ self: { ]; description = "Simple typesafe web routing"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "solga-swagger" = callPackage @@ -276583,7 +261753,6 @@ self: { ]; description = "Swagger generation for Solga"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "solr" = callPackage @@ -276608,7 +261777,6 @@ self: { ]; description = "A minimal Solr client library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "solve" = callPackage @@ -276642,8 +261810,6 @@ self: { ]; description = "Self-Organising Maps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "some" = callPackage @@ -276701,7 +261867,6 @@ self: { ]; description = "Sonic Visualiser"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "svdump"; }) {}; @@ -276773,8 +261938,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Efficient, type-safe sorted sequences"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sorted-list" = callPackage @@ -276810,8 +261973,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Utils for sorting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sorting-network" = callPackage @@ -276840,9 +262001,7 @@ self: { executableHaskellDepends = [ base bytestring ]; description = "Sort lines per file size"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sorty"; - broken = true; }) {}; "souffle-dsl" = callPackage @@ -276866,7 +262025,6 @@ self: { ]; description = "Haskell EDSL for Souffle"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "souffle-haskell" = callPackage @@ -276889,8 +262047,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq text vector ]; description = "Souffle Datalog bindings for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sound-collage" = callPackage @@ -276967,7 +262123,6 @@ self: { ]; description = "The server backend for the source code iPhone app"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "source-code-server"; }) {}; @@ -276988,8 +262143,6 @@ self: { ]; description = "Source constraints GHC plugin"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sourcemap" = callPackage @@ -277029,8 +262182,6 @@ self: { ]; description = "Source/Sink/Transform: An alternative to lazy IO and iteratees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sox" = callPackage @@ -277090,9 +262241,7 @@ self: { ]; description = "DCPU-16 architecture utilities for Notch's 0x10c game"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "soyuz"; - broken = true; }) {}; "space" = callPackage @@ -277178,8 +262327,6 @@ self: { libraryHaskellDepends = [ base vector-space ]; description = "Space partition data structures. Currently only a QuadTree."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "spaceprobe" = callPackage @@ -277248,9 +262395,7 @@ self: { description = "A simple programming and debugging environment"; license = lib.licenses.gpl3Only; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; mainProgram = "spade"; - broken = true; }) {}; "spake2" = callPackage @@ -277277,9 +262422,7 @@ self: { ]; description = "Implementation of the SPAKE2 Password-Authenticated Key Exchange algorithm"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "haskell-spake2-interop-entrypoint"; - broken = true; }) {}; "spanout" = callPackage @@ -277297,9 +262440,7 @@ self: { ]; description = "A breakout clone written in netwire and gloss"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "spanout"; - broken = true; }) {}; "sparkle" = callPackage @@ -277327,7 +262468,6 @@ self: { ]; description = "Distributed Apache Spark applications in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sparkle"; }) {}; @@ -277374,7 +262514,6 @@ self: { ]; description = "Unified streaming data-dependency framework for web apps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "spars" = callPackage @@ -277386,8 +262525,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A sparse set-based parsing library for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sparse" = callPackage @@ -277415,8 +262552,6 @@ self: { benchmarkHaskellDepends = [ array base criterion deepseq vector ]; description = "A playground of sparse linear algebra primitives using Morton ordering"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sparse-lin-alg" = callPackage @@ -277434,8 +262569,6 @@ self: { ]; description = "Effective linear algebra on sparse matrices"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sparse-linear-algebra" = callPackage @@ -277460,8 +262593,6 @@ self: { ]; description = "Numerical computing in native Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sparse-merkle-trees" = callPackage @@ -277486,8 +262617,6 @@ self: { ]; description = "Sparse Merkle trees with proofs of inclusion and exclusion"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sparse-tensor" = callPackage @@ -277510,8 +262639,6 @@ self: { ]; description = "typesafe tensor algebra library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sparsebit" = callPackage @@ -277523,7 +262650,6 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "Sparse bitmaps for pattern match coverage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sparsecheck" = callPackage @@ -277535,8 +262661,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A Logic Programming Library for Test-Data Generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sparser" = callPackage @@ -277552,7 +262676,6 @@ self: { ]; description = "Lightweight parsing library based on partial functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "spartacon" = callPackage @@ -277571,7 +262694,6 @@ self: { ]; description = "A unix-style (read from stdin, write to stdout) global hotkey daemon"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "spartacon"; }) {}; @@ -277585,7 +262707,6 @@ self: { libraryHaskellDepends = [ base dlist mps mtl ]; description = "brainless form validation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "spatial-math" = callPackage @@ -277713,8 +262834,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Control.Applicative, Data.Foldable, Data.Traversable (compatibility package)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "special-keys" = callPackage @@ -277732,8 +262851,6 @@ self: { ]; description = "Simple data types that help me here and there"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "special-values" = callPackage @@ -277775,7 +262892,6 @@ self: { ]; description = "Create specialized types from polymorphic ones using TH"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "species" = callPackage @@ -277817,8 +262933,6 @@ self: { ]; description = "Embedded specification language & model checker in Haskell"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "spectral-clustering" = callPackage @@ -277836,7 +262950,6 @@ self: { ]; description = "Library for spectral clustering"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "speculate" = callPackage @@ -277863,8 +262976,6 @@ self: { libraryHaskellDepends = [ base ghc-prim stm transformers ]; description = "A framework for safe, programmable, speculative parallelism"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "speculation-transformers" = callPackage @@ -277877,7 +262988,6 @@ self: { doHaddock = false; description = "Merged into 'speculation'. Use that instead."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "speechmatics" = callPackage @@ -277908,7 +263018,6 @@ self: { ]; description = "Speechmatics api client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "speechmatics"; }) {}; @@ -277948,7 +263057,6 @@ self: { ]; description = "Spelling suggestion tool with library and command-line interfaces"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "spherical" = callPackage @@ -277975,7 +263083,6 @@ self: { ]; description = "Orbotix Sphero client library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sphinx" = callPackage @@ -277992,8 +263099,6 @@ self: { ]; description = "Haskell bindings to the Sphinx full-text searching daemon"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sphinx-cli" = callPackage @@ -278007,7 +263112,6 @@ self: { executableHaskellDepends = [ base sphinx ]; description = "Sphinx CLI and demo of Haskell Sphinx library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sphinx-cli"; }) {}; @@ -278027,9 +263131,7 @@ self: { executableHaskellDepends = [ base optparse-applicative ]; description = "Transform queries for sphinx input"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sphinxesc"; - broken = true; }) {}; "spice" = callPackage @@ -278046,7 +263148,6 @@ self: { ]; description = "An FRP-based game engine written in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "spike" = callPackage @@ -278091,8 +263192,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Some utilities for reading and writing SPIR-V files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "spiros" = callPackage @@ -278119,8 +263218,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Spiros Boosalis's Custom Prelude"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "spirv-reflect-ffi" = callPackage @@ -278174,8 +263271,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Generic splay-based sequence representation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "splaytree" = callPackage @@ -278195,8 +263290,6 @@ self: { ]; description = "Provides an annotated splay tree"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "splice" = callPackage @@ -278230,7 +263323,6 @@ self: { ]; description = "A parallel implementation of the Sorokina/Zeilfelder spline scheme"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "spline3"; }) {}; @@ -278253,7 +263345,6 @@ self: { benchmarkHaskellDepends = [ base criterion polynomial vector ]; description = "B-Splines, other splines, and NURBS"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "splint" = callPackage @@ -278265,8 +263356,6 @@ self: { libraryHaskellDepends = [ base containers ghc hlint stm ]; description = "HLint as a GHC source plugin"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "split" = callPackage @@ -278302,8 +263391,6 @@ self: { testHaskellDepends = [ base invariant lens QuickCheck ]; description = "Split Epimorphisms and Monomorphisms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "split-record" = callPackage @@ -278392,9 +263479,7 @@ self: { ]; description = "Use numerical ranges to split out certain lines from a file"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "splitter"; - broken = true; }) {}; "splot" = callPackage @@ -278469,9 +263554,7 @@ self: { ]; description = "Spoon's utilities. Simple testing and nice looking error reporting."; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "test"; - broken = true; }) {}; "spork" = callPackage @@ -278518,9 +263601,7 @@ self: { doHaddock = false; description = "Spotify Web API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "examples"; - broken = true; }) {}; "spoty" = callPackage @@ -278537,8 +263618,6 @@ self: { ]; description = "Spotify web API wrapper"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "spreadsheet" = callPackage @@ -278601,7 +263680,6 @@ self: { ]; description = "JSON API to HTML website wrapper"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sprinkles"; }) {}; @@ -278614,8 +263692,6 @@ self: { libraryHaskellDepends = [ base lens mtl vector ]; description = "An implementation of the Spritz RC4-like stream cipher in Haskell"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sproxy" = callPackage @@ -278640,7 +263716,6 @@ self: { ]; description = "HTTP proxy for authenticating users via OAuth2"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sproxy"; }) {}; @@ -278667,7 +263742,6 @@ self: { ]; description = "Web interface to sproxy database"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sproxy-web"; }) {}; @@ -278694,7 +263768,6 @@ self: { ]; description = "Secure HTTP proxy for authenticating users via OAuth2"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sproxy2"; }) {}; @@ -278715,8 +263788,6 @@ self: { benchmarkHaskellDepends = [ base criterion hmatrix random ]; description = "Simultaneous Perturbation Stochastic Approximation Optimization Algorithm"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "spy" = callPackage @@ -278742,9 +263813,7 @@ self: { ]; description = "A compact file system watcher for Mac OS X, Linux and Windows"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "spy"; - broken = true; }) {}; "sqel" = callPackage @@ -278772,7 +263841,6 @@ self: { ]; description = "Guided derivation for Hasql statements"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "sqids" = callPackage @@ -278787,8 +263855,6 @@ self: { testHaskellDepends = [ base containers hspec mtl split text ]; description = "A small library that lets you generate YouTube-looking IDs from numbers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sql-simple" = callPackage @@ -278805,8 +263871,6 @@ self: { ]; description = "common middle-level sql client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sql-simple-mysql" = callPackage @@ -278822,7 +263886,6 @@ self: { ]; description = "mysql backend for sql-simple"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "sql-simple-pool" = callPackage @@ -278839,7 +263902,6 @@ self: { ]; description = "conection pool for sql-simple"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "sql-simple-postgresql" = callPackage @@ -278855,7 +263917,6 @@ self: { ]; description = "postgresql backend for sql-simple"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "sql-simple-sqlite" = callPackage @@ -278867,7 +263928,6 @@ self: { libraryHaskellDepends = [ base sql-simple sqlite-simple ]; description = "sqlite backend for sql-simple"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "sql-words" = callPackage @@ -278898,8 +263958,6 @@ self: { testHaskellDepends = [ base filepath hspec temporary ]; description = "Haskell binding to sqlcipher"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) openssl;}; "sqlcli" = callPackage @@ -278940,8 +263998,6 @@ self: { testHaskellDepends = [ base ]; description = "Haskell binding to sqlite3"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) sqlite;}; "sqlite-easy" = callPackage @@ -278963,8 +264019,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A primitive yet easy to use sqlite library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sqlite-simple" = callPackage @@ -278997,8 +264051,6 @@ self: { testHaskellDepends = [ base mtl sqlite-simple text ]; description = "Wrapper around errors from sqlite-simple"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sqlite-simple-interpolate" = callPackage @@ -279031,7 +264083,6 @@ self: { ]; description = "Typed extension to sqlite simple"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sqlvalue-list" = callPackage @@ -279043,8 +264094,6 @@ self: { libraryHaskellDepends = [ base convertible HDBC template-haskell ]; description = "Class and instances for conversion to list of SqlValue"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sqsd-local" = callPackage @@ -279066,7 +264115,6 @@ self: { testHaskellDepends = [ base ]; description = "Initial project template from stack"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "sqsd-local"; }) {}; @@ -279124,7 +264172,6 @@ self: { ]; description = "Squeal PostgreSQL Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -279142,7 +264189,6 @@ self: { ]; description = "LTree extension for Squeal"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "squeal-postgresql-uuid-ossp" = callPackage @@ -279154,7 +264200,6 @@ self: { libraryHaskellDepends = [ base squeal-postgresql ]; description = "UUID OSSP extension for Squeal"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "squeather" = callPackage @@ -279195,7 +264240,6 @@ self: { ]; description = "A file-packing application"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "squeeze"; }) {}; @@ -279226,7 +264270,6 @@ self: { ]; description = "Module limbo"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "srcinst" = callPackage @@ -279245,9 +264288,7 @@ self: { ]; description = "Build and install Debian packages completely from source"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "srcinst"; - broken = true; }) {}; "srcloc" = callPackage @@ -279297,8 +264338,6 @@ self: { ]; description = "Attoparsec parser for the SRT format"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "srt-dhall" = callPackage @@ -279319,8 +264358,6 @@ self: { ]; description = "Dhall Encoder/Decoder for SRT"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "srt-formatting" = callPackage @@ -279337,7 +264374,6 @@ self: { ]; description = "Format an SRT"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "srtree" = callPackage @@ -279393,9 +264429,7 @@ self: { ]; description = "text UI for scanning with SANE"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "sscan"; - broken = true; }) {}; "sscgi" = callPackage @@ -279413,7 +264447,6 @@ self: { ]; description = "Simple SCGI Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sscript" = callPackage @@ -279457,8 +264490,6 @@ self: { doCheck = false; description = "A pure-Haskell SSH server library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ssh-known-hosts" = callPackage @@ -279498,8 +264529,6 @@ self: { ]; description = "Proxy http-client via ssh tunnel"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sshd-lint" = callPackage @@ -279520,7 +264549,6 @@ self: { ]; description = "Check sshd configuration for adherence to best practices"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sshd-lint"; }) {}; @@ -279570,7 +264598,6 @@ self: { ]; description = "HTTP proxy for S3"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sssp"; }) {}; @@ -279590,7 +264617,6 @@ self: { executableHaskellDepends = [ cmdargs ]; description = "SSTables in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sstable"; }) {}; @@ -279618,8 +264644,6 @@ self: { libraryHaskellDepends = [ base gdp primitive ]; description = "shared heap regions between local mutable state threads"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stable-heap" = callPackage @@ -279641,8 +264665,6 @@ self: { ]; description = "Purely functional stable heaps (fair priority queues)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stable-maps" = callPackage @@ -279654,8 +264676,6 @@ self: { libraryHaskellDepends = [ base containers ghc-prim ]; description = "Heterogeneous maps keyed by StableNames"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stable-marriage" = callPackage @@ -279668,8 +264688,6 @@ self: { testHaskellDepends = [ base ghc-prim ]; description = "algorithms around stable marriage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stable-memo" = callPackage @@ -279681,8 +264699,6 @@ self: { libraryHaskellDepends = [ base ghc-prim hashtables ]; description = "Memoization based on argument identity"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stable-tree" = callPackage @@ -279707,7 +264723,6 @@ self: { ]; description = "Trees whose branches are resistant to change"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "demo"; }) {}; @@ -279883,9 +264898,7 @@ self: { ]; description = "Dead simple version bumping for hpack packages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "stack-bump"; - broken = true; }) {}; "stack-clean-old" = callPackage @@ -279917,9 +264930,7 @@ self: { executableHaskellDepends = [ base options text turtle ]; description = "Console program used to fix Stack build errors automatically"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "stack-fix"; - broken = true; }) {}; "stack-hpc-coveralls" = callPackage @@ -279944,7 +264955,6 @@ self: { ]; description = "Initial project template from stack"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; mainProgram = "shc"; }) {}; @@ -279961,8 +264971,6 @@ self: { ]; description = "Wrapper to use stack as a library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stack-network" = callPackage @@ -280004,7 +265012,6 @@ self: { ]; description = "A program for extending Stack to add distributed capabilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "stack-network"; }) {}; @@ -280024,8 +265031,6 @@ self: { testHaskellDepends = [ base template-haskell ]; description = "Stack prisms"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stack-run" = callPackage @@ -280045,9 +265050,7 @@ self: { ]; description = "An equivalent to cabal run for stack"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "stack-run"; - broken = true; }) {}; "stack-run-auto" = callPackage @@ -280075,7 +265078,6 @@ self: { ]; description = "Initial project template from stack"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "stack-tag" = callPackage @@ -280123,8 +265125,6 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "The basic stack type"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stack-wrapper" = callPackage @@ -280141,8 +265141,6 @@ self: { executableHaskellDepends = [ base filepath process ]; description = "Call ghc within stack by calling ghc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stack-yaml" = callPackage @@ -280185,9 +265183,7 @@ self: { ]; description = "Convert stack projects to cabal.project + cabal.project.freeze"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "stack2cabal"; - broken = true; }) {}; "stack2nix" = callPackage @@ -280214,9 +265210,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "Convert stack.yaml files into Nix build instructions."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "stack2nix"; - broken = true; }) {}; "stackage" = callPackage @@ -280235,7 +265229,6 @@ self: { ]; description = "Dummy package forcing installation of other Stackage packages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "stackage-build-plan" = callPackage @@ -280260,7 +265253,6 @@ self: { ]; description = "Calculate and print (in different formats) Stackage build plans"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "stackage-build-plan"; }) {}; @@ -280282,7 +265274,6 @@ self: { ]; description = "A CLI executable for cabal-based stackage commands"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "stackage-cli" = callPackage @@ -280304,8 +265295,6 @@ self: { executableHaskellDepends = [ base text ]; description = "A CLI library for stackage commands"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stackage-curator" = callPackage @@ -280350,7 +265339,6 @@ self: { ]; description = "Tools for curating Stackage bundles"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "stackage-install" = callPackage @@ -280400,9 +265388,7 @@ self: { ]; description = "DEPRECATED Grab current metadata for all packages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "all-cabal-metadata-tool"; - broken = true; }) {}; "stackage-query" = callPackage @@ -280426,7 +265412,6 @@ self: { ]; description = "Tool for querying Stackage"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "stackage"; }) {}; @@ -280448,7 +265433,6 @@ self: { ]; description = "Work with shared stackage sandboxes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "stackage-sandbox"; }) {}; @@ -280473,7 +265457,6 @@ self: { ]; description = "An executable for downloading a Haskell setup"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "stackage-setup"; }) {}; @@ -280500,9 +265483,7 @@ self: { ]; description = "Convert stack.yaml to cabal.project + cabal.project.freeze"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "stackage-to-hackage"; - broken = true; }) {}; "stackage-types" = callPackage @@ -280522,8 +265503,6 @@ self: { ]; description = "Shared data types between various Stackage packages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stackage-update" = callPackage @@ -280561,7 +265540,6 @@ self: { ]; description = "A more secure version of cabal upload which uses HTTPS"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "stackage-upload"; }) {}; @@ -280593,7 +265571,6 @@ self: { ]; description = "Convert Stack files into Nix build instructions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "stackage2nix"; }) {}; @@ -280620,9 +265597,7 @@ self: { ]; description = "Program to fold GHC prof files into flamegraph input"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "stackcollapse-ghc"; - broken = true; }) {}; "stackctl" = callPackage @@ -280655,7 +265630,6 @@ self: { aeson base bytestring hspec mtl QuickCheck yaml ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "stackctl"; }) {}; @@ -280704,8 +265678,6 @@ self: { ]; description = "GHC.Generics style staged generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stagen" = callPackage @@ -280761,7 +265733,6 @@ self: { doHaddock = false; description = "Haskell STatic ANalyser"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "stan"; }) {}; @@ -280774,8 +265745,6 @@ self: { libraryHaskellDepends = [ base mtl template-haskell ]; description = "This package will derive class instance along the data type declaration tree. (Deprecated)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "standalone-haddock" = callPackage @@ -280793,9 +265762,7 @@ self: { ]; description = "Generate standalone haddock documentation for a set of packages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "standalone-haddock"; - broken = true; }) {}; "star" = callPackage @@ -280842,8 +265809,6 @@ self: { ]; description = "A memcached client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "starrover2" = callPackage @@ -280863,7 +265828,6 @@ self: { ]; description = "Space simulation game"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "starrover2"; }) {}; @@ -280876,8 +265840,6 @@ self: { libraryHaskellDepends = [ base fsnotify ]; description = "Develop applications without restarts"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stash" = callPackage @@ -280893,8 +265855,6 @@ self: { ]; description = "To be written"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "state" = callPackage @@ -280906,8 +265866,6 @@ self: { libraryHaskellDepends = [ arrows base mtl ]; description = "Data.State"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "state-bag" = callPackage @@ -280924,8 +265882,6 @@ self: { testHaskellDepends = [ base hspec transformers ]; description = "Monad transformers for holding bags of state"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "state-codes" = callPackage @@ -280951,8 +265907,6 @@ self: { testHaskellDepends = [ base checkers mtl QuickCheck ]; description = "MonadPlus for StateT"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "state-record" = callPackage @@ -280964,8 +265918,6 @@ self: { libraryHaskellDepends = [ base mtl template-haskell ]; description = "Better records for State monad states"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stateWriter" = callPackage @@ -281009,7 +265961,6 @@ self: { libraryHaskellDepends = [ base MaybeT mtl ]; description = "Typeclass instances for monad transformer stacks with an ST thread at the bottom"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "stateref" = callPackage @@ -281083,8 +266034,6 @@ self: { ]; description = "Type-safe and interoperable static values and closures"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "static-bytes" = callPackage @@ -281117,8 +266066,6 @@ self: { libraryHaskellDepends = [ base double-conversion free mtl text ]; description = "DSL to generate HTML5 Canvas javascript"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "static-closure" = callPackage @@ -281135,7 +266082,6 @@ self: { ]; description = "Serialisable static pointers to functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "static-hash" = callPackage @@ -281179,9 +266125,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "See README on Github for more information"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "static-ls"; - broken = true; }) {}; "static-resources" = callPackage @@ -281226,8 +266170,6 @@ self: { ]; description = "Tensors of statically known size"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "static-text" = callPackage @@ -281301,8 +266243,6 @@ self: { ]; description = "Functions for working with Dirichlet densities and mixtures on vectors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "statistics-fusion" = callPackage @@ -281314,8 +266254,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "An implementation of high performance, minimal statistics functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "statistics-hypergeometric-genvar" = callPackage @@ -281331,8 +266269,6 @@ self: { ]; description = "Random variate generation from hypergeometric distributions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "statistics-linreg" = callPackage @@ -281373,8 +266309,6 @@ self: { ]; description = "A library of statistical types, data, and functions"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stats" = callPackage @@ -281388,9 +266322,7 @@ self: { executableHaskellDepends = [ base statistics text vector ]; description = "command line statistics"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "stats"; - broken = true; }) {}; "statsd" = callPackage @@ -281406,8 +266338,6 @@ self: { ]; description = "StatsD API"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "statsd-client" = callPackage @@ -281425,7 +266355,6 @@ self: { ]; description = "Statsd UDP client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "statsd-datadog" = callPackage @@ -281464,7 +266393,6 @@ self: { ]; description = "A lovely [Dog]StatsD implementation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "status-notifier-item" = callPackage @@ -281499,8 +266427,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Get unix filesystem statistics with statfs, statvfs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "staversion" = callPackage @@ -281531,9 +266457,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "What version is the package X in stackage lts-Y.ZZ?"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "staversion"; - broken = true; }) {}; "stb-image" = callPackage @@ -281557,8 +266481,6 @@ self: { testHaskellDepends = [ base hspec vector ]; description = "Image loading and writing microlibrary"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stb-truetype" = callPackage @@ -281603,9 +266525,7 @@ self: { ]; description = "A library for implicit, monadic dataflow parallelism"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ohua-stream-bench"; - broken = true; }) {}; "std" = callPackage @@ -281628,8 +266548,6 @@ self: { libraryHaskellDepends = [ base parsec syb template-haskell ]; description = "Structure Data Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stdcxx" = callPackage @@ -281663,8 +266581,6 @@ self: { ]; description = "Parse Structured Test Data Format (STDF)"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stdio" = callPackage @@ -281690,8 +266606,6 @@ self: { ]; description = "A simple and high performance IO toolkit for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libuv;}; "steambrowser" = callPackage @@ -281705,9 +266619,7 @@ self: { executableHaskellDepends = [ base directory parsec transformers ]; description = "List and launch steam games from the cli"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "steambrowser"; - broken = true; }) {}; "steeloverseer" = callPackage @@ -281741,7 +266653,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A file watcher and development tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sos"; }) {}; @@ -281756,8 +266667,6 @@ self: { testHaskellDepends = [ base random uuid ]; description = "Generator and verifier for steganographic numbers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stemmer" = callPackage @@ -281769,8 +266678,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell bindings to the Snowball stemming library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stemmer-german" = callPackage @@ -281784,8 +266691,6 @@ self: { libraryHaskellDepends = [ base text ]; description = "Extract the stem of a German inflected word form"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "step-function" = callPackage @@ -281810,8 +266715,6 @@ self: { sha256 = "059k8g3wb4hkxk42vm83vv6kh3igrpf7fc97xvn3qai5rx3jmgqf"; libraryHaskellDepends = [ base containers mtl ]; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stern-brocot" = callPackage @@ -281829,7 +266732,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Positive rational numbers represented as paths in the Stern-Brocot tree"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "stgi" = callPackage @@ -281858,9 +266760,7 @@ self: { ]; description = "Educational implementation of the STG (Spineless Tagless G-machine)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "stgi-exe"; - broken = true; }) {}; "stickyKeysHotKey" = callPackage @@ -281919,7 +266819,6 @@ self: { testHaskellDepends = [ base hspec mtl stm stm-queue ]; description = "A simplistic actor model based on STM"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "stm-channelize" = callPackage @@ -281954,8 +266853,6 @@ self: { testHaskellDepends = [ async base HUnit stm tasty tasty-hunit ]; description = "Chunked Communication Queues"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stm-conduit" = callPackage @@ -282043,8 +266940,6 @@ self: { testHaskellDepends = [ base hspec HUnit stm ]; description = "Conduits and STM operations for fire hoses"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stm-hamt" = callPackage @@ -282082,8 +266977,6 @@ self: { testHaskellDepends = [ base hspec stm ]; description = "A library for constructing incremental computations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stm-io-hooks" = callPackage @@ -282140,8 +267033,6 @@ self: { testHaskellDepends = [ base QuickCheck stm ]; description = "Simple STM Promises for IO computations and external processes"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stm-queue" = callPackage @@ -282158,8 +267049,6 @@ self: { ]; description = "An implementation of a real-time concurrent queue"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stm-queue-extras" = callPackage @@ -282207,8 +267096,6 @@ self: { ]; description = "retry statistics for STM transactions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stm-supply" = callPackage @@ -282223,7 +267110,6 @@ self: { testHaskellDepends = [ async base QuickCheck random Unique ]; description = "STM wrapper around Control.Concurrent.Supply."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "stm-tlist" = callPackage @@ -282247,7 +267133,6 @@ self: { libraryHaskellDepends = [ base haskell98 mtl stm ]; description = "Control communication among retrying transactions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "stochastic" = callPackage @@ -282263,8 +267148,6 @@ self: { ]; description = "Monadic composition of probabilistic functions and sampling"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stocks" = callPackage @@ -282360,8 +267243,6 @@ self: { doHaddock = false; description = "A simple wrapper around stooq.pl API for downloading market data."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stopwatch" = callPackage @@ -282385,8 +267266,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Storable type class for variable-sized data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "storable-complex" = callPackage @@ -282431,8 +267310,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Storable offsets for record fields"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "storable-record" = callPackage @@ -282462,8 +267339,6 @@ self: { libraryHaskellDepends = [ array base tagged vector ]; description = "Statically-sized array wrappers with Storable instances for FFI marshaling"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "storable-tuple" = callPackage @@ -282530,7 +267405,6 @@ self: { ]; description = "Conversion between storablevector and stream-fusion lists with fusion"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "store" = callPackage @@ -282633,9 +267507,7 @@ self: { executableHaskellDepends = [ base regex-compat ]; description = "Simple Theorem Prover"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "mu-test"; - broken = true; }) {}; "str" = callPackage @@ -282652,8 +267524,6 @@ self: { ]; description = "A type class to abstract between many different string types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stratosphere" = callPackage @@ -282698,7 +267568,6 @@ self: { ]; description = "Client for Stratum protocol"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "stratum-tool"; }) {}; @@ -282715,7 +267584,6 @@ self: { ]; description = "A library for stratux"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "stratux-demo" = callPackage @@ -282738,7 +267606,6 @@ self: { ]; description = "A demonstration of the stratux library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "stratux-demo"; }) {}; @@ -282755,7 +267622,6 @@ self: { ]; description = "A library for using HTTP with stratux"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "stratux-types" = callPackage @@ -282771,8 +267637,6 @@ self: { ]; description = "A library for reading JSON output from stratux"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stratux-websockets" = callPackage @@ -282789,7 +267653,6 @@ self: { ]; description = "A library for using websockets with stratux"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "stream" = callPackage @@ -282809,8 +267672,6 @@ self: { ]; description = "Initial project template from stack"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stream-fusion" = callPackage @@ -282824,8 +267685,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Faster Haskell lists using stream fusion"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stream-monad" = callPackage @@ -282839,8 +267698,6 @@ self: { libraryHaskellDepends = [ base logict ]; description = "Simple, Fair and Terminating Backtracking Monad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streamdeck" = callPackage @@ -282852,8 +267709,6 @@ self: { libraryHaskellDepends = [ base bytestring hidapi mtl split ]; description = "Control library for the Elgato Stream Deck"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streamed" = callPackage @@ -282873,8 +267728,6 @@ self: { description = "Programmatically edit MIDI event streams via ALSA"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streaming" = callPackage @@ -282931,7 +267784,6 @@ self: { ]; description = "Streaming conversion from/to base64"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "streaming-benchmarks" = callPackage @@ -282952,8 +267804,6 @@ self: { ]; description = "Measures and compares the performance of streaming libraries"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streaming-binary" = callPackage @@ -283009,8 +267859,6 @@ self: { ]; description = "Streaming interface for Brotli (RFC7932) compression"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streaming-bytestring" = callPackage @@ -283053,8 +267901,6 @@ self: { ]; description = "Cassava support for the streaming ecosystem"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streaming-commons" = callPackage @@ -283102,8 +267948,6 @@ self: { ]; description = "Concurrency support for the streaming ecosystem"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streaming-conduit" = callPackage @@ -283120,8 +267964,6 @@ self: { testHaskellDepends = [ base conduit hspec streaming ]; description = "Bidirectional support between the streaming and conduit libraries"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streaming-events" = callPackage @@ -283138,8 +267980,6 @@ self: { ]; description = "Client-side consumption of a ServerEvent"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streaming-eversion" = callPackage @@ -283175,7 +268015,6 @@ self: { ]; description = "online streaming fft"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "streaming-histogram" = callPackage @@ -283212,8 +268051,6 @@ self: { ]; description = "Streaming interface for LZMA/XZ compression"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streaming-nonempty" = callPackage @@ -283248,8 +268085,6 @@ self: { ]; description = "A hand-written streaming byte parser for OpenStreetMap Protobuf data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streaming-pcap" = callPackage @@ -283271,8 +268106,6 @@ self: { ]; description = "Stream packets via libpcap"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streaming-png" = callPackage @@ -283293,8 +268126,6 @@ self: { ]; description = "Perfectly streaming PNG image decoding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streaming-postgresql-simple" = callPackage @@ -283314,8 +268145,6 @@ self: { ]; description = "Stream postgresql-query results using the streaming library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streaming-process" = callPackage @@ -283340,7 +268169,6 @@ self: { ]; description = "Streaming support for running system process"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "streaming-sort" = callPackage @@ -283362,8 +268190,6 @@ self: { ]; description = "Sorting streams"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streaming-utils" = callPackage @@ -283415,8 +268241,6 @@ self: { ]; description = "with/bracket-style idioms for use with streaming"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streamly" = callPackage @@ -283477,8 +268301,6 @@ self: { ]; description = "Integration of streamly and binary"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streamly-bytestring" = callPackage @@ -283528,8 +268350,6 @@ self: { ]; description = "CSV streaming support via cassava for the streamly ecosystem"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streamly-core" = callPackage @@ -283568,8 +268388,6 @@ self: { ]; description = "Examples for Streamly"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streamly-fsnotify" = callPackage @@ -283587,8 +268405,6 @@ self: { ]; description = "Folder watching as a Streamly stream"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streamly-lmdb" = callPackage @@ -283629,8 +268445,6 @@ self: { benchmarkHaskellDepends = [ base directory gauge streamly ]; description = "Streamly combinators for LZ4 compression"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streamly-posix" = callPackage @@ -283652,8 +268466,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Posix related streaming APIs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streamly-process" = callPackage @@ -283675,8 +268487,6 @@ self: { ]; description = "Use OS processes as stream transformation functions"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streamly-statistics" = callPackage @@ -283713,8 +268523,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Stream Processer Arrow"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "streams" = callPackage @@ -283767,7 +268575,6 @@ self: { ]; description = "A simple, flexible and composable web-router"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "strelka-core" = callPackage @@ -283784,8 +268591,6 @@ self: { ]; description = "Core components of \"strelka\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "strelka-wai" = callPackage @@ -283802,7 +268607,6 @@ self: { ]; description = "WAI compatibility layer for \"strelka\""; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "strict" = callPackage @@ -283883,8 +268687,6 @@ self: { ]; description = "Strict containers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "strict-containers-lens" = callPackage @@ -283896,7 +268698,6 @@ self: { libraryHaskellDepends = [ base hashable lens strict-containers ]; description = "Strict containers - Lens instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "strict-containers-serialise" = callPackage @@ -283912,7 +268713,6 @@ self: { ]; description = "Strict containers - Serialise instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "strict-data" = callPackage @@ -283937,7 +268737,6 @@ self: { ]; description = "A collection of commonly used strict data structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "strict-ghc-plugin" = callPackage @@ -283949,8 +268748,6 @@ self: { libraryHaskellDepends = [ base ghc syb ]; description = "Compiler plugin for making Haskell strict"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "strict-identity" = callPackage @@ -284076,8 +268873,6 @@ self: { libraryHaskellDepends = [ base lens strict-tuple ]; description = "Optics for the `strict-tuple` library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "strict-types" = callPackage @@ -284145,8 +268940,6 @@ self: { libraryHaskellDepends = [ base deepseq ]; description = "Combinators for strictifying functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "string" = callPackage @@ -284171,8 +268964,6 @@ self: { libraryHaskellDepends = [ base bytestring tagged text ]; description = "String class library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "string-combinators" = callPackage @@ -284218,8 +269009,6 @@ self: { ]; description = "Tests for the string-conv library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "string-conversions" = callPackage @@ -284268,8 +269057,6 @@ self: { libraryHaskellDepends = [ base bytestring memory text ]; description = "Conversions between common string types, as well as Base16/Base32/Base64"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "string-interpolate" = callPackage @@ -284314,7 +269101,6 @@ self: { ]; description = "Is used in the phonetic languages approach (e. g. in the recursive mode)."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "string-isos" = callPackage @@ -284330,8 +269116,6 @@ self: { ]; description = "Tools for working with isomorphisms of strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "string-like" = callPackage @@ -284367,8 +269151,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "QuasiQuoter for non-interpolated strings, texts and bytestrings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "string-random" = callPackage @@ -284439,7 +269221,6 @@ self: { ]; description = "Type-level Chars and Strings, with decidable equality"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "string-variants" = callPackage @@ -284504,8 +269285,6 @@ self: { ]; description = "Transformations to several string-like types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stringprep" = callPackage @@ -284536,8 +269315,6 @@ self: { libraryHaskellDepends = [ base bytestring text ]; description = "Functions for working with strings, including Text, ByteString, etc"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stringsearch" = callPackage @@ -284562,8 +269339,6 @@ self: { libraryHaskellDepends = [ base binary bytestring containers syb ]; description = "Memoize Strings as Atoms for fast comparison and sorting, with maps and sets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "strio" = callPackage @@ -284610,8 +269385,6 @@ self: { ]; description = "A Haskell implementation of the Stripe API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stripe-concepts" = callPackage @@ -284639,8 +269412,6 @@ self: { ]; description = "Stripe API for Haskell - Pure Core"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stripe-haskell" = callPackage @@ -284652,7 +269423,6 @@ self: { libraryHaskellDepends = [ base stripe-core stripe-http-client ]; description = "Stripe API for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "stripe-hs" = callPackage @@ -284678,8 +269448,6 @@ self: { ]; description = "Unofficial Stripe client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stripe-http-client" = callPackage @@ -284699,7 +269467,6 @@ self: { ]; description = "Stripe API for Haskell - http-client backend"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "stripe-http-streams" = callPackage @@ -284720,7 +269487,6 @@ self: { doCheck = false; description = "Stripe API for Haskell - http-streams backend"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "stripe-scotty" = callPackage @@ -284790,7 +269556,6 @@ self: { ]; description = "Tests for Stripe API bindings for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "stripe-wreq" = callPackage @@ -284876,8 +269641,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Strongly typed paths in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "strongswan-sql" = callPackage @@ -285002,7 +269765,6 @@ self: { ]; description = "Instantiate structural induction schemas for algebraic data types"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "structural-traversal" = callPackage @@ -285015,8 +269777,6 @@ self: { testHaskellDepends = [ base HUnit mtl ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "structured" = callPackage @@ -285077,10 +269837,8 @@ self: { ]; description = "Structured editing Emacs mode for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "structured-haskell-mode"; maintainers = [ lib.maintainers.peti ]; - broken = true; }) {}; "structured-mongoDB" = callPackage @@ -285099,7 +269857,6 @@ self: { ]; description = "Structured MongoDB interface"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "structures" = callPackage @@ -285130,8 +269887,6 @@ self: { ]; description = "\"Advanced\" Data Structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stt" = callPackage @@ -285148,8 +269903,6 @@ self: { ]; description = "A monad transformer version of the ST monad"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stunclient" = callPackage @@ -285173,8 +269926,6 @@ self: { ]; description = "RFC 5389: Session Traversal Utilities for NAT (STUN) client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stunts" = callPackage @@ -285195,7 +269946,6 @@ self: { ]; description = "A revival of the classic game Stunts (LambdaCube tech demo)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "stunts"; }) {}; @@ -285224,7 +269974,6 @@ self: { ]; description = "(Stutter Text|String)-Utterer"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "stutter"; }) {}; @@ -285252,9 +270001,7 @@ self: { doHaddock = false; description = "Format Cabal files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "stylish-cabal"; - broken = true; }) {}; "stylish-haskell_0_14_3_0" = callPackage @@ -285382,8 +270129,6 @@ self: { ]; description = "Apply CSS styles to a document tree"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "stylist-traits" = callPackage @@ -285408,8 +270153,6 @@ self: { libraryHaskellDepends = [ ansi-terminal base ]; description = "Ways to output stylized text on ANSI consoles"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "styx" = callPackage @@ -285467,8 +270210,6 @@ self: { ]; description = "Get the total, put a single element"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "subG" = callPackage @@ -285491,8 +270232,6 @@ self: { libraryHaskellDepends = [ base subG vector ]; description = "Additional instances for the InsertLeft class from subG package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "subcategories" = callPackage @@ -285548,7 +270287,6 @@ self: { benchmarkHaskellDepends = [ base criterion MonadRandom ]; description = "Type safe interface for programming in subcategories of Hask"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "subleq-toolchain" = callPackage @@ -285570,9 +270308,7 @@ self: { ]; description = "Toolchain of subleq computer"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "subleq"; - broken = true; }) {}; "sublists" = callPackage @@ -285605,9 +270341,7 @@ self: { ]; description = "Extract a part from CommonMark/Markdown docs"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "submark"; - broken = true; }) {}; "subnet" = callPackage @@ -285637,9 +270371,7 @@ self: { ]; description = "Subsample data"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "subsample"; - broken = true; }) {}; "substring-parser" = callPackage @@ -285658,7 +270390,6 @@ self: { ]; description = "Match / replace substrings with a parser combinators"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "subtitleParser" = callPackage @@ -285696,8 +270427,6 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Subword graph implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "subzero" = callPackage @@ -285758,9 +270487,7 @@ self: { benchmarkHaskellDepends = [ base criterion random ]; description = "Simple and moderately efficient suffix array implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "suffix-array-exe"; - broken = true; }) {}; "suffixarray" = callPackage @@ -285775,8 +270502,6 @@ self: { executableHaskellDepends = [ base HUnit ]; description = "n log n implementation of suffix array"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "suffixtree" = callPackage @@ -285808,8 +270533,6 @@ self: { ]; description = "A pretty, sweet data language"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sugar-data" = callPackage @@ -285824,7 +270547,6 @@ self: { testHaskellDepends = [ base hspec sugar tasty tasty-hspec ]; description = "Convert sugar to common data types for code generation"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "sugar-json" = callPackage @@ -285844,7 +270566,6 @@ self: { testHaskellDepends = [ base hspec sugar tasty tasty-hspec ]; description = "Sugar with JSON"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "sugar-scheme" = callPackage @@ -285861,7 +270582,6 @@ self: { testHaskellDepends = [ base hspec sugar tasty tasty-hspec ]; description = "Sugar with Scheme"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "sugarhaskell" = callPackage @@ -285875,8 +270595,6 @@ self: { executableHaskellDepends = [ base process ]; description = "Library-based syntactic extensibility for Haskell"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "suitable" = callPackage @@ -285890,8 +270608,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Abstract over the constraints on the parameters to type constructors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sum-type-boilerplate" = callPackage @@ -285904,8 +270620,6 @@ self: { testHaskellDepends = [ base hspec template-haskell ]; description = "Library for reducing the boilerplate involved with sum types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "summer" = callPackage @@ -285918,8 +270632,6 @@ self: { testHaskellDepends = [ base ]; description = "An implementation of extensible products and sums"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "summoner" = callPackage @@ -285947,9 +270659,7 @@ self: { ]; description = "Tool for scaffolding fully configured batteries-included production-level Haskell projects"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "summon"; - broken = true; }) {}; "summoner-tui" = callPackage @@ -285969,7 +270679,6 @@ self: { executableHaskellDepends = [ base relude ]; description = "Tool for scaffolding fully configured batteries-included production-level Haskell projects using TUI"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "summon-tui"; }) {}; @@ -285988,8 +270697,6 @@ self: { ]; description = "A Haskell interface to SUMP-compatible logic analyzers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sundown" = callPackage @@ -286017,8 +270724,6 @@ self: { ]; description = "Test Cabalized package against multiple dependency versions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sunroof-compiler" = callPackage @@ -286036,8 +270741,6 @@ self: { ]; description = "Monadic Javascript Compiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sunroof-examples" = callPackage @@ -286059,7 +270762,6 @@ self: { ]; description = "Tests for Sunroof"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sunroof-server" = callPackage @@ -286081,7 +270783,6 @@ self: { ]; description = "Monadic Javascript Compiler - Server Utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "super-user-spark" = callPackage @@ -286111,9 +270812,7 @@ self: { ]; description = "Configure your dotfile deployment with a DSL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "super-user-spark"; - broken = true; }) {}; "superbubbles" = callPackage @@ -286128,8 +270827,6 @@ self: { testHaskellDepends = [ base containers hspec ]; description = "Find \"superbubbles\", as described in https://arxiv.org/abs/1307.7925"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "superbuffer" = callPackage @@ -286164,7 +270861,6 @@ self: { ]; description = "Haskell SuperCollider utilities"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "supercollider-midi" = callPackage @@ -286187,7 +270883,6 @@ self: { ]; description = "Demonstrate how to control SuperCollider via ALSA-MIDI"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "superconstraints" = callPackage @@ -286204,7 +270899,6 @@ self: { ]; description = "Access an instance's constraints"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "superdoc" = callPackage @@ -286244,8 +270938,6 @@ self: { ]; description = "A simple opinionated event store implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "supermonad" = callPackage @@ -286262,8 +270954,6 @@ self: { testHaskellDepends = [ base containers ghc QuickCheck ]; description = "Plugin and base library to support supermonads in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "supernova" = callPackage @@ -286284,7 +270974,6 @@ self: { testHaskellDepends = [ aeson async base bytestring streamly text ]; description = "Apache Pulsar client for Haskell"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "supero" = callPackage @@ -286303,9 +270992,7 @@ self: { ]; description = "A Supercompiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "supero"; - broken = true; }) {}; "superrecord" = callPackage @@ -286327,8 +271014,6 @@ self: { ]; description = "Supercharged anonymous records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "supervisor" = callPackage @@ -286342,8 +271027,6 @@ self: { ]; description = "Control an internal monad execution for trace generation, backtrakcking, testing and other purposes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "supervisors" = callPackage @@ -286360,8 +271043,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Monitor groups of threads with non-hierarchical lifetimes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "supplemented" = callPackage @@ -286380,8 +271061,6 @@ self: { ]; description = "Early termination for monads"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "supply-chain" = callPackage @@ -286437,8 +271116,6 @@ self: { libraryHaskellDepends = [ base lens mtl template-haskell ]; description = "An output coverage checker"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "suspend" = callPackage @@ -286478,7 +271155,6 @@ self: { ]; description = "Encode and decode separated values (CSV, PSV, ...)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sv-cassava" = callPackage @@ -286500,7 +271176,6 @@ self: { ]; description = "Integration to use sv with cassava's parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sv-core" = callPackage @@ -286528,8 +271203,6 @@ self: { ]; description = "Encode and decode separated values (CSV, PSV, ...)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sv-svfactor" = callPackage @@ -286547,7 +271220,6 @@ self: { ]; description = "sv-core + svfactor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sv2v" = callPackage @@ -286567,9 +271239,7 @@ self: { executableToolDepends = [ alex happy ]; description = "SystemVerilog to Verilog conversion"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sv2v"; - broken = true; }) {}; "svfactor" = callPackage @@ -286595,8 +271265,6 @@ self: { ]; description = "Syntax-preserving CSV manipulation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "svg-builder" = callPackage @@ -286629,8 +271297,6 @@ self: { ]; description = "DSL for building SVG"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "svg-icons" = callPackage @@ -286649,9 +271315,7 @@ self: { ]; description = "Svg Icons and more"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "svg-icons-exe"; - broken = true; }) {}; "svg-tree" = callPackage @@ -286688,7 +271352,6 @@ self: { ]; description = "Code generation tool for Quartz code from a SVG"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "svg2q"; }) {}; @@ -286730,7 +271393,6 @@ self: { ]; description = "Optimise SVGs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "svgone"; }) {}; @@ -286751,9 +271413,7 @@ self: { ]; description = "A tool to prune unused symbols from icon SVG files"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "svgsym"; - broken = true; }) {}; "svgutils" = callPackage @@ -286768,9 +271428,7 @@ self: { executableHaskellDepends = [ base filepath xml ]; description = "Helper functions for dealing with SVG files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "SVGtile"; - broken = true; }) {}; "svm" = callPackage @@ -286795,8 +271453,6 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring containers ]; description = "Parsers and formatters for the SVMlight input file format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "svm-simple" = callPackage @@ -286813,8 +271469,6 @@ self: { ]; description = "Medium level, simplified, bindings to libsvm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "svndump" = callPackage @@ -286833,8 +271487,6 @@ self: { ]; description = "Library for reading Subversion dump files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "swagger" = callPackage @@ -286851,8 +271503,6 @@ self: { testHaskellDepends = [ aeson base bytestring tasty tasty-hunit ]; description = "Implementation of swagger data model"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "swagger-petstore" = callPackage @@ -286880,8 +271530,6 @@ self: { ]; description = "Auto-generated openapi-petstore API Client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "swagger-test" = callPackage @@ -286911,9 +271559,7 @@ self: { ]; description = "Testing of Swagger APIs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "swagger-test"; - broken = true; }) {}; "swagger2" = callPackage @@ -286963,7 +271609,6 @@ self: { librarySystemDepends = [ tokyocabinet ]; description = "Transparently swapping data from in-memory structures to disk"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) tokyocabinet;}; "swarm" = callPackage @@ -287030,9 +271675,7 @@ self: { ]; description = "Clojure without alphanumerics"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "swearjure"; - broken = true; }) {}; "sweet-egison" = callPackage @@ -287055,7 +271698,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Shallow embedding implementation of non-linear pattern matching"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "swf" = callPackage @@ -287067,8 +271709,6 @@ self: { libraryHaskellDepends = [ base mtl pretty ]; description = "A library for creating Shockwave Flash (SWF) files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "swift-lda" = callPackage @@ -287084,8 +271724,6 @@ self: { ]; description = "Online sampler for Latent Dirichlet Allocation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "swish" = callPackage @@ -287123,8 +271761,6 @@ self: { libraryHaskellDepends = [ base bytestring parallel time ]; description = "Basic functions for development with Core libraries and GHC boot libraries dependencies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "swiss-ephemeris" = callPackage @@ -287142,8 +271778,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell bindings for the Swiss Ephemeris C library"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "swisstable" = callPackage @@ -287184,7 +271818,6 @@ self: { ]; description = "Nintendo Switch Controller Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sws" = callPackage @@ -287208,9 +271841,7 @@ self: { ]; description = "A simple web server for serving directories"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sws"; - broken = true; }) {}; "sxml" = callPackage @@ -287249,8 +271880,6 @@ self: { libraryHaskellDepends = [ base eq prelude-extras ]; description = "Higher order versions of the Scrap Your Boilerplate classes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "syb-with-class" = callPackage @@ -287267,8 +271896,6 @@ self: { testHaskellDepends = [ base HUnit ]; description = "Scrap Your Boilerplate With Class"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "syb-with-class-instances-text" = callPackage @@ -287280,8 +271907,6 @@ self: { libraryHaskellDepends = [ base syb-with-class text ]; description = "Scrap Your Boilerplate With Class Text instance"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sydtest" = callPackage @@ -287349,7 +271974,6 @@ self: { testToolDepends = [ sydtest-discover ]; description = "An amqp companion library for sydtest"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "sydtest-autodocodec" = callPackage @@ -287420,8 +272044,6 @@ self: { testToolDepends = [ sydtest-discover ]; description = "An hedis companion library for sydtest"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sydtest-hspec" = callPackage @@ -287439,8 +272061,6 @@ self: { testToolDepends = [ sydtest-discover ]; description = "An Hspec companion library for sydtest"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sydtest-mongo" = callPackage @@ -287460,8 +272080,6 @@ self: { testToolDepends = [ sydtest-discover ]; description = "An mongoDB companion library for sydtest"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sydtest-persistent" = callPackage @@ -287498,8 +272116,6 @@ self: { testToolDepends = [ sydtest-discover ]; description = "An persistent-postgresql companion library for sydtest"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sydtest-persistent-sqlite" = callPackage @@ -287518,8 +272134,6 @@ self: { testToolDepends = [ sydtest-discover ]; description = "A persistent-sqlite companion library for sydtest"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sydtest-process" = callPackage @@ -287554,8 +272168,6 @@ self: { testToolDepends = [ sydtest-discover ]; description = "An rabbitmq companion library for sydtest"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sydtest-servant" = callPackage @@ -287634,8 +272246,6 @@ self: { testToolDepends = [ sydtest-discover ]; description = "A webdriver companion library for sydtest"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sydtest-webdriver-screenshot" = callPackage @@ -287658,7 +272268,6 @@ self: { testToolDepends = [ sydtest-discover ]; description = "A webdriver screenshot companion library for sydtest"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "sydtest-webdriver-yesod" = callPackage @@ -287681,7 +272290,6 @@ self: { testToolDepends = [ sydtest-discover ]; description = "A webdriver+yesod companion library for sydtest"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "sydtest-yesod" = callPackage @@ -287711,7 +272319,6 @@ self: { testToolDepends = [ sydtest-discover ]; description = "A yesod companion library for sydtest"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "syfco" = callPackage @@ -287732,9 +272339,7 @@ self: { ]; description = "Synthesis Format Conversion Tool / Library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "syfco"; - broken = true; }) {}; "sylvia" = callPackage @@ -287760,7 +272365,6 @@ self: { ]; description = "Lambda calculus visualization"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "sylvia"; }) {}; @@ -287801,8 +272405,6 @@ self: { ]; description = "Library for Typed Tagless-Final Higher-Order Composable DSL"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "symantic-atom" = callPackage @@ -287824,7 +272426,6 @@ self: { ]; description = "Library for reading and writing Atom"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "symantic-base" = callPackage @@ -287857,8 +272458,6 @@ self: { ]; description = "Symantics for parsing and documenting a CLI"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "symantic-document" = callPackage @@ -287925,8 +272524,6 @@ self: { ]; description = "symantic-http applied to the derivation of HTTP clients"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "symantic-http-demo" = callPackage @@ -287953,7 +272550,6 @@ self: { ]; description = "Demo for symantic-http and its companion libraries"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "symantic-http-pipes" = callPackage @@ -288020,7 +272616,6 @@ self: { ]; description = "Test symantic-http and its companion libraries"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "symantic-lib" = callPackage @@ -288043,7 +272638,6 @@ self: { ]; description = "Symantics for common types"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "symantic-parser" = callPackage @@ -288076,8 +272670,6 @@ self: { doHaddock = false; description = "Parser combinators statically optimized and staged via typed meta-programming"; license = lib.licenses.agpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "symantic-xml" = callPackage @@ -288101,8 +272693,6 @@ self: { ]; description = "Library for reading, validating and writing XML"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "symbiote" = callPackage @@ -288134,7 +272724,6 @@ self: { ]; description = "Data serialization, communication, and operation verification implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "symbol" = callPackage @@ -288160,8 +272749,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit unix ]; description = "Symlink functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "symbols" = callPackage @@ -288188,8 +272775,6 @@ self: { testSystemDepends = [ gmp gmpxx symengine ]; description = "SymEngine symbolic mathematics engine for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) gmp; inherit (pkgs) gmpxx; inherit (pkgs) symengine;}; @@ -288208,9 +272793,7 @@ self: { testSystemDepends = [ gmp gmpxx symengine ]; description = "SymEngine symbolic mathematics engine for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "symengine-hs-exe"; - broken = true; }) {inherit (pkgs) gmp; inherit (pkgs) gmpxx; inherit (pkgs) symengine;}; @@ -288240,7 +272823,6 @@ self: { ]; description = "Derivation of symbols and coordinate triplets Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "symon" = callPackage @@ -288268,8 +272850,6 @@ self: { libraryHaskellDepends = [ base stm ]; description = "A fast implementation of synchronous channels with a CML-like API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "sync-mht" = callPackage @@ -288307,9 +272887,7 @@ self: { ]; description = "Fast incremental file transfer using Merkle-Hash-Trees"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "sync-mht"; - broken = true; }) {}; "synchronous-channels" = callPackage @@ -288348,7 +272926,6 @@ self: { ]; description = "Haskell bindings for the Syncthing REST API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "synt" = callPackage @@ -288398,8 +272975,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "Generic representation and manipulation of abstract syntax"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "syntactical" = callPackage @@ -288428,7 +273003,6 @@ self: { ]; description = "Reversible parsing and pretty-printing"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "syntax-attoparsec" = callPackage @@ -288444,7 +273018,6 @@ self: { ]; description = "Syntax instances for Attoparsec"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "syntax-example" = callPackage @@ -288463,7 +273036,6 @@ self: { ]; description = "Example application using syntax, a library for abstract syntax descriptions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "syntax-example"; }) {}; @@ -288483,7 +273055,6 @@ self: { ]; description = "Example JSON parser/pretty-printer"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "syntax-example-json"; }) {}; @@ -288499,7 +273070,6 @@ self: { ]; description = "Syntax instance for pretty, the pretty printing library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "syntax-printer" = callPackage @@ -288516,7 +273086,6 @@ self: { ]; description = "Text and ByteString printers for 'syntax'"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "syntax-trees" = callPackage @@ -288532,8 +273101,6 @@ self: { ]; description = "Convert between different Haskell syntax trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "syntax-trees-fork-bairyn" = callPackage @@ -288549,8 +273116,6 @@ self: { ]; description = "Convert between different Haskell syntax trees. Bairyn's fork."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "syntaxnet-haskell" = callPackage @@ -288569,7 +273134,6 @@ self: { testHaskellDepends = [ aeson base cassava haskell-conll hspec ]; description = "Working with Google's SyntaxNet output files - CoNLL, Tree"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "synthesizer" = callPackage @@ -288591,8 +273155,6 @@ self: { ]; description = "Audio signal processing coded in Haskell"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "synthesizer-alsa" = callPackage @@ -288743,7 +273305,6 @@ self: { doHaddock = false; description = "Efficient signal processing using runtime compilation"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "synthesizer-midi" = callPackage @@ -288804,7 +273365,6 @@ self: { ]; description = "A replacement for System.Exit and System.Process."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "sysinfo" = callPackage @@ -288844,8 +273404,6 @@ self: { testHaskellDepends = [ base basic-prelude chell system-filepath ]; description = "Abstract data type for canonical paths with some utilities"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "system-command" = callPackage @@ -288864,8 +273422,6 @@ self: { ]; description = "A replacement for System.Exit and System.Process"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "system-error" = callPackage @@ -288891,8 +273447,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "A bunch of system utilities used by other projects"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "system-fileio" = callPackage @@ -288964,8 +273518,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Binding to Linux's inotify interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "system-lifted" = callPackage @@ -288988,9 +273540,7 @@ self: { ]; description = "Lifted versions of System functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "main"; - broken = true; }) {}; "system-linux-proc" = callPackage @@ -289007,8 +273557,6 @@ self: { testHaskellDepends = [ base directory hedgehog pretty-show ]; description = "A library for accessing the /proc filesystem in Linux"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "system-locale" = callPackage @@ -289025,8 +273573,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Get system locales"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "system-posix-redirect" = callPackage @@ -289064,8 +273610,6 @@ self: { ]; description = "Random number generation for extensible effects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "system-test" = callPackage @@ -289085,9 +273629,7 @@ self: { testHaskellDepends = [ base HUnit ]; description = "Runs system tests of applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "system-test"; - broken = true; }) {}; "system-time-monotonic" = callPackage @@ -289173,7 +273715,6 @@ self: { description = "systemd bindings"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) systemd;}; "systemd-socket-activation" = callPackage @@ -289209,7 +273750,6 @@ self: { ]; description = "An application that regularly logs system stats for later analysis"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "systemstats"; }) {}; @@ -289239,8 +273779,6 @@ self: { ]; description = "Matchers and grammars using tree regular expressions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "t3-client" = callPackage @@ -289252,7 +273790,6 @@ self: { libraryHaskellDepends = [ base t3-game t3-server ]; description = "tic-tac-toe Rexports for client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "t3-game" = callPackage @@ -289288,8 +273825,6 @@ self: { ]; description = "tic-tac-toe server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ta" = callPackage @@ -289305,7 +273840,6 @@ self: { ]; description = "Transito Abierto: convenience library when using Takusen and Oracle"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tabl" = callPackage @@ -289334,9 +273868,7 @@ self: { ]; description = "Simple tool to generate tables from DSV input"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "table"; - broken = true; }) {}; "table-layout" = callPackage @@ -289373,8 +273905,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A table tennis game tracking engine"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tableaux" = callPackage @@ -289392,7 +273922,6 @@ self: { ]; description = "An interactive theorem prover based on semantic tableaux"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tableaux.cgi"; }) {}; @@ -289417,8 +273946,6 @@ self: { ]; description = "In-memory storage with multiple keys using lenses and traversals"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tablestorage" = callPackage @@ -289439,8 +273966,6 @@ self: { ]; description = "Azure Table Storage REST API Wrapper"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tablize" = callPackage @@ -289477,9 +274002,7 @@ self: { ]; description = "View the output of shell commands in a table"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tabloid"; - broken = true; }) {}; "tabs" = callPackage @@ -289494,9 +274017,7 @@ self: { executableHaskellDepends = [ base filepath monadlist mtl tagged ]; description = "Indents source files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tabs"; - broken = true; }) {}; "tabular" = callPackage @@ -289569,8 +274090,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Provides access to the dynamic pointer tagging bits used by GHC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tag-stream" = callPackage @@ -289586,7 +274105,6 @@ self: { ]; description = "streamlined html tag parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tagchup" = callPackage @@ -289668,8 +274186,6 @@ self: { ]; description = "Reflect exceptions using phantom types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tagged-identity" = callPackage @@ -289700,7 +274216,6 @@ self: { ]; description = "Lists tagged with a type-level natural number representing their length"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tagged-th" = callPackage @@ -289714,7 +274229,6 @@ self: { ]; description = "QuasiQuoter and Template Haskell splices for creating proxies at higher-kinds"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tagged-timers" = callPackage @@ -289728,8 +274242,6 @@ self: { ]; description = "Simple wrappers for timing IO actions (single-threaded)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tagged-transformer" = callPackage @@ -289806,8 +274318,6 @@ self: { ]; description = "Lenses for the taggy html/xml parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "taglib" = callPackage @@ -289837,8 +274347,6 @@ self: { libraryPkgconfigDepends = [ taglib ]; description = "An FFI layer over TagLib's C bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) taglib;}; "tagset-positional" = callPackage @@ -289904,8 +274412,6 @@ self: { ]; description = "alternative parser for the tagsoup package"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tagsoup-megaparsec" = callPackage @@ -289922,8 +274428,6 @@ self: { ]; description = "A Tag token parser and Tag specific parsing combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tagsoup-navigate" = callPackage @@ -289941,7 +274445,6 @@ self: { ]; description = "Tagsoup Navigate"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tagsoup-parsec" = callPackage @@ -289953,8 +274456,6 @@ self: { libraryHaskellDepends = [ base parsec tagsoup ]; description = "Tokenizes Tag, so [ Tag ] can be used as parser input"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tagsoup-selection" = callPackage @@ -289966,8 +274467,6 @@ self: { libraryHaskellDepends = [ base containers parsec tagsoup ]; description = "Selecting subtrees from TagSoup's TagTrees using CSS selectors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tagstew" = callPackage @@ -289988,7 +274487,6 @@ self: { ]; description = "Black magic tagsoup"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tagstew"; }) {}; @@ -290026,8 +274524,6 @@ self: { ]; description = "Hierarchical Tags & Tag Trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tahoe-capabilities" = callPackage @@ -290075,7 +274571,6 @@ self: { ]; description = "The Tahoe-LAFS' Content-Hash-Key (CHK) cryptographic protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tahoe-chk-encrypt"; }) {}; @@ -290121,7 +274616,6 @@ self: { ]; description = "An implementation of the \"Great Black Swamp\" LAFS protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tahoe-ssk" = callPackage @@ -290152,7 +274646,6 @@ self: { ]; description = "An implementation of the Tahoe-LAFS SSK cryptographic protocols"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tai" = callPackage @@ -290170,8 +274663,6 @@ self: { ]; description = "Support library to enable TAI usage on systems with time kept in UTC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tai64" = callPackage @@ -290190,8 +274681,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Tai64 Labels for Haskell"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tailfile-hinotify" = callPackage @@ -290243,9 +274732,7 @@ self: { ]; description = "Tailwind wrapped in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "tailwind-run"; - broken = true; }) {}; "tak" = callPackage @@ -290266,8 +274753,6 @@ self: { ]; description = "A library encoding the rules of Tak, and a playtak.com client."; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tak-ai" = callPackage @@ -290285,7 +274770,6 @@ self: { ]; description = "AI(s) for playing Tak on playtak.com"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "takky"; }) {}; @@ -290299,8 +274783,6 @@ self: { libraryHaskellDepends = [ base lens monad-skeleton mtl ]; description = "create slide for presentation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "takedouble" = callPackage @@ -290337,8 +274819,6 @@ self: { librarySystemDepends = [ clntsh ]; description = "Database library with left-fold interface for Oracle"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {clntsh = null;}; "tal" = callPackage @@ -290354,7 +274834,6 @@ self: { ]; description = "An implementation of Typed Assembly Language (Morrisett, Walker, Crary, Glew)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "talash" = callPackage @@ -290379,7 +274858,6 @@ self: { executableHaskellDepends = [ base ]; description = "Line oriented fast enough text search"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "talash"; }) {}; @@ -290410,7 +274888,6 @@ self: { ]; description = "The Tamarin prover for security protocol analysis"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "tamarin-prover"; }) {}; @@ -290430,7 +274907,6 @@ self: { ]; description = "Term manipulation library for the tamarin prover"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "tamarin-prover-theory" = callPackage @@ -290452,7 +274928,6 @@ self: { ]; description = "Term manipulation library for the tamarin prover"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "tamarin-prover-utils" = callPackage @@ -290470,8 +274945,6 @@ self: { ]; description = "Utility library for the tamarin prover"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tamper" = callPackage @@ -290538,8 +275011,6 @@ self: { testHaskellDepends = [ base hspec vector ]; description = "A tasty enhancement to cassava for easy csv exporting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tar" = callPackage @@ -290595,7 +275066,6 @@ self: { ]; description = "Reading, writing and manipulating \".tar\" archive files."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tar-conduit" = callPackage @@ -290698,7 +275168,6 @@ self: { ]; description = "Generate test-suites from refinement types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "target"; }) {inherit (pkgs) z3;}; @@ -290742,7 +275211,6 @@ self: { ]; description = "A command line tool for keeping track of tasks you worked on"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "task"; }) {}; @@ -290780,7 +275248,6 @@ self: { ]; description = "Distributed processing of changing tasks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "taskell" = callPackage @@ -290904,9 +275371,7 @@ self: { ]; description = "Auto discovery for Tasty with support for ingredients and test tree generation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "tasty-auto"; - broken = true; }) {}; "tasty-autocollect" = callPackage @@ -290936,9 +275401,7 @@ self: { ]; description = "Autocollection of tasty tests"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tasty-autocollect"; - broken = true; }) {}; "tasty-bdd" = callPackage @@ -290964,7 +275427,6 @@ self: { ]; description = "BDD tests language and tasty provider"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tasty-bench" = callPackage @@ -291018,7 +275480,6 @@ self: { ]; description = "Check multiple items during a tasty test"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; }) {}; "tasty-dejafu" = callPackage @@ -291093,8 +275554,6 @@ self: { ]; description = "Adds the ability to fail a tasty test suite on first test failure"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tasty-focus" = callPackage @@ -291152,8 +275611,6 @@ self: { testHaskellDepends = [ aeson base tasty tasty-hunit ]; description = "Grade your tasty-testsuite"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tasty-groundhog-converters" = callPackage @@ -291172,7 +275629,6 @@ self: { ]; description = "Tasty Tests for groundhog converters"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tasty-hedgehog" = callPackage @@ -291230,8 +275686,6 @@ self: { ]; description = "Coverage tracking for Hedgehog Property-Based Testing via Tasty"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tasty-hslua" = callPackage @@ -291404,7 +275858,6 @@ self: { ]; description = "automated integration of QuickCheck properties into tasty suites"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tasty-jenkins-xml" = callPackage @@ -291424,7 +275877,6 @@ self: { ]; description = "Render tasty output to both console and XML for Jenkins"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tasty-json" = callPackage @@ -291442,8 +275894,6 @@ self: { ]; description = "JSON reporter for the tasty testing framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tasty-kat" = callPackage @@ -291477,7 +275927,6 @@ self: { testHaskellDepends = [ base smallcheck smallcheck-laws tasty ]; description = "Test common laws"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tasty-leancheck" = callPackage @@ -291506,7 +275955,6 @@ self: { testHaskellDepends = [ base lens tasty ]; description = "Tasty TestTrees for Lens validation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tasty-lua" = callPackage @@ -291553,9 +276001,7 @@ self: { ]; description = "Golden testing provider for tasty with muti-line diff output"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tasty-mgolden-example"; - broken = true; }) {}; "tasty-papi" = callPackage @@ -291570,8 +276016,6 @@ self: { description = "Bencmarking using instruction counting"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) papi;}; "tasty-prelude" = callPackage @@ -291705,8 +276149,6 @@ self: { ]; description = "Collect statistics of your Tasty testsuite"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tasty-sugar" = callPackage @@ -291731,7 +276173,6 @@ self: { doHaddock = false; description = "Tests defined by Search Using Golden Answer References"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; }) {}; "tasty-tap" = callPackage @@ -291766,8 +276207,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Producing JUnit-style XML test reports"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tasty-test-vector" = callPackage @@ -291781,8 +276220,6 @@ self: { libraryHaskellDepends = [ base tasty ]; description = "Test vector support for tasty"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tasty-th" = callPackage @@ -291862,7 +276299,6 @@ self: { ]; description = "Meta tic-tac-toe ncurses game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tateti-tateti"; }) {}; @@ -291916,7 +276352,6 @@ self: { ]; description = "Transactional variables and data structures with IO hooks"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "tcache-AWS" = callPackage @@ -291932,7 +276367,6 @@ self: { ]; description = "tcache using Amazon Web Services as default persistence mechanism"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tccli" = callPackage @@ -291950,7 +276384,6 @@ self: { ]; description = "TokyoCabinet CLI interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tchcli"; }) {}; @@ -291985,8 +276418,6 @@ self: { libraryPkgconfigDepends = [ libtcod ]; description = "Bindings to libtcod roguelike engine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libtcod;}; "tconfig" = callPackage @@ -292009,8 +276440,6 @@ self: { libraryHaskellDepends = [ base containers old-time ]; description = "A purely functional TCP implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tcp-streams" = callPackage @@ -292054,8 +276483,6 @@ self: { ]; description = "Tcp streams using openssl for tls support"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tdd-util" = callPackage @@ -292083,8 +276510,6 @@ self: { ]; description = "Test framework wrapper"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tdigest" = callPackage @@ -292127,8 +276552,6 @@ self: { ]; description = "Chart generation from tdigest"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tdlib" = callPackage @@ -292220,8 +276643,6 @@ self: { ]; description = "TDoc is a typed document builder with support for (X)HTML"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tds" = callPackage @@ -292243,9 +276664,7 @@ self: { executableHaskellDepends = [ base ]; description = "Pure Haskell TDS protocol implementation. Mainly for beam-mssql and beam-sybase"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "test"; - broken = true; }) {}; "teams" = callPackage @@ -292257,8 +276676,6 @@ self: { libraryHaskellDepends = [ base containers fgl graphviz ]; description = "Graphical modeling tools for sequential teams"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "teardown" = callPackage @@ -292303,7 +276720,6 @@ self: { ]; description = "Bleeding edge prelude"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "technique" = callPackage @@ -292335,9 +276751,7 @@ self: { doHaddock = false; description = "Procedures and Sequences"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "technique"; - broken = true; }) {}; "teeth" = callPackage @@ -292349,8 +276763,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Dental data types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tehepero" = callPackage @@ -292366,8 +276778,6 @@ self: { ]; description = "Prettier error"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "telega" = callPackage @@ -292384,8 +276794,6 @@ self: { ]; description = "Telegram Bot API binding"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "telegram" = callPackage @@ -292401,8 +276809,6 @@ self: { ]; description = "Telegram API client"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "telegram-api" = callPackage @@ -292432,8 +276838,6 @@ self: { ]; description = "Telegram Bot API bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "telegram-bot" = callPackage @@ -292454,7 +276858,6 @@ self: { testHaskellDepends = [ base ]; description = "Telegram Bot microframework for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "hello-bot"; }) {}; @@ -292480,7 +276883,6 @@ self: { ]; description = "Easy to use library for building Telegram bots. Exports Telegram Bot API."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "telegram-bot-simple" = callPackage @@ -292507,7 +276909,6 @@ self: { ]; description = "Easy to use library for building Telegram bots"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "telegram-raw-api" = callPackage @@ -292532,7 +276933,6 @@ self: { ]; description = "Servant bindings to the Telegram bot API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "telegram-types" = callPackage @@ -292554,8 +276954,6 @@ self: { ]; description = "Types used in Telegram bot API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "telegraph" = callPackage @@ -292578,8 +276976,6 @@ self: { ]; description = "Binding to the telegraph API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "teleport" = callPackage @@ -292600,9 +276996,7 @@ self: { testHaskellDepends = [ base ]; description = "A tool to quickly switch between directories"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "teleport-exe"; - broken = true; }) {}; "teleshell" = callPackage @@ -292625,8 +277019,6 @@ self: { ]; description = "Telnet client and other things"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tell" = callPackage @@ -292657,9 +277049,7 @@ self: { ]; description = "IRC tellbot"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "tellbot"; - broken = true; }) {}; "tempered" = callPackage @@ -292704,8 +277094,6 @@ self: { libraryHaskellDepends = [ base mtl text ]; description = "Simple string substitution"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "template-default" = callPackage @@ -292717,8 +277105,6 @@ self: { libraryHaskellDepends = [ base data-default template-haskell ]; description = "declaring Default instances just got even easier"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "template-haskell_2_20_0_0" = callPackage @@ -292759,8 +277145,6 @@ self: { ]; description = "Optics for template-haskell types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "template-haskell-util" = callPackage @@ -292774,8 +277158,6 @@ self: { ]; description = "Some utilities for template Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "template-hsml" = callPackage @@ -292796,8 +277178,6 @@ self: { ]; description = "Haskell's Simple Markup Language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "template-toolkit" = callPackage @@ -292817,8 +277197,6 @@ self: { ]; description = "Template Toolkit implementation for Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "template-yj" = callPackage @@ -292830,8 +277208,6 @@ self: { libraryHaskellDepends = [ base bytestring text ]; description = "Process template file"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "templateify" = callPackage @@ -292845,9 +277221,7 @@ self: { executableHaskellDepends = [ base mtl tagsoup uniplate ]; description = "Make template from website"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "templateify"; - broken = true; }) {}; "templatepg" = callPackage @@ -292865,8 +277239,6 @@ self: { ]; description = "A PostgreSQL access library with compile-time SQL type inference"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "templater" = callPackage @@ -292921,8 +277293,6 @@ self: { ]; description = "A small Haskell wrapper around the TempoDB api"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "temporal-csound" = callPackage @@ -292940,7 +277310,6 @@ self: { ]; description = "library to make electronic music, brings together temporal-music-notation and csound-expression packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "temporal-media" = callPackage @@ -293062,9 +277431,7 @@ self: { executableToolDepends = [ happy ]; description = "Interpreter for the FRP language Tempus"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tempus"; - broken = true; }) {}; "tempus-fugit" = callPackage @@ -293105,8 +277472,6 @@ self: { ]; description = "Functors et al. over arity-1 type constructors"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ten-lens" = callPackage @@ -293120,7 +277485,6 @@ self: { libraryHaskellDepends = [ base lens profunctors some ten ]; description = "Lenses for the types in the ten package"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "ten-unordered-containers" = callPackage @@ -293146,7 +277510,6 @@ self: { ]; description = "Higher-kinded hash containers"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "tensor" = callPackage @@ -293159,8 +277522,6 @@ self: { testHaskellDepends = [ base QuickCheck random ]; description = "A completely type-safe library for linear algebra"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tensor-safe" = callPackage @@ -293184,9 +277545,7 @@ self: { ]; description = "Create valid deep neural network architectures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tensor-safe"; - broken = true; }) {}; "tensorflow" = callPackage @@ -293316,7 +277675,6 @@ self: { ]; description = "Code generation for TensorFlow operations"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "tensorflow-ops" = callPackage @@ -293363,7 +277721,6 @@ self: { libraryToolDepends = [ protobuf ]; description = "TensorFlow protocol buffers"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) protobuf;}; "tensorflow-records" = callPackage @@ -293484,9 +277841,7 @@ self: { executableHaskellDepends = [ base ]; description = "Bindings to the Termbox library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "termbox-bindings-c" = callPackage @@ -293625,7 +277980,6 @@ self: { ]; description = "Text data type for styled terminal output, including all standard ANSI effects (bold, italic, blinking) and ANSI / 256 / truecolor colors support for Unix and Windows (whenever possible)"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "termination-combinators" = callPackage @@ -293637,8 +277991,6 @@ self: { libraryHaskellDepends = [ base containers contravariant ]; description = "Termination combinators for forcing non-terminating algorithms to terminate"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "terminfo_0_4_1_6" = callPackage @@ -293727,9 +278079,7 @@ self: { ]; description = "Plot time series in your terminal using commands stdout"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "termplot"; - broken = true; }) {}; "terntup" = callPackage @@ -293747,8 +278097,6 @@ self: { ]; description = "a ternary library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "terraform-http-backend-pass" = callPackage @@ -293782,7 +278130,6 @@ self: { librarySystemDepends = [ terralib4c translib ]; description = "A Haskell GIS Programming Environment"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {terralib4c = null; translib = null;}; "tersmu" = callPackage @@ -293803,9 +278150,7 @@ self: { ]; description = "A semantic parser for lojban"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "tersmu"; - broken = true; }) {}; "tesla" = callPackage @@ -293835,8 +278180,6 @@ self: { ]; description = "Tesla API client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "test-fixture" = callPackage @@ -293858,8 +278201,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Test monadic side-effects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "test-framework" = callPackage @@ -293900,8 +278241,6 @@ self: { testHaskellDepends = [ base test-framework ]; description = "Test.Framework wrapper for DocTest"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "test-framework-golden" = callPackage @@ -293971,8 +278310,6 @@ self: { ]; description = "QuickCheck support for the test-framework package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "test-framework-quickcheck2" = callPackage @@ -294029,8 +278366,6 @@ self: { ]; description = "Functions for conveniently marking some of the tests in a suite as being skipped"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "test-framework-smallcheck" = callPackage @@ -294056,8 +278391,6 @@ self: { testHaskellDepends = [ base test-framework testing-feat ]; description = "A test framework provider for testing-feat"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "test-framework-th" = callPackage @@ -294091,8 +278424,6 @@ self: { ]; description = "Template Haskell for test framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "test-fun" = callPackage @@ -294166,9 +278497,7 @@ self: { executableHaskellDepends = [ base simple-get-opt ]; description = "A library to make a quick test-runner script"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; mainProgram = "test-runner"; - broken = true; }) {}; "test-monad-laws" = callPackage @@ -294200,8 +278529,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Just tests Hackage"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "test-sandbox" = callPackage @@ -294262,7 +278589,6 @@ self: { ]; description = "Lightweight development enviroments using test-sandbox"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "test-sandbox-compose"; }) {}; @@ -294303,8 +278629,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Catchy combinators for HUnit"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "test-simple" = callPackage @@ -294323,7 +278647,6 @@ self: { ]; description = "Simple Perl inspired testing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "testCom" = callPackage @@ -294341,8 +278664,6 @@ self: { ]; description = "Write your tests in comments"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "testPkg" = callPackage @@ -294356,9 +278677,7 @@ self: { executableHaskellDepends = [ base ]; description = "Small test package"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "testPkg"; - broken = true; }) {}; "testbench" = callPackage @@ -294380,7 +278699,6 @@ self: { ]; description = "Create tests and benchmarks together"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "testcontainers" = callPackage @@ -294407,8 +278725,6 @@ self: { testToolDepends = [ hspec-discover tasty-discover ]; description = "Docker containers for your integration tests"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "testing-feat" = callPackage @@ -294453,8 +278769,6 @@ self: { ]; description = "Quick feedback loop for test suites"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "testpack" = callPackage @@ -294471,8 +278785,6 @@ self: { ]; description = "Test Utililty Pack for HUnit and QuickCheck (unmaintained)"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "testpattern" = callPackage @@ -294487,9 +278799,7 @@ self: { executableHaskellDepends = [ base filepath gtk ]; description = "Display a monitor test pattern"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "testpattern"; - broken = true; }) {}; "testrunner" = callPackage @@ -294504,8 +278814,6 @@ self: { ]; description = "Easy unit test driver framework"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tetris" = callPackage @@ -294541,9 +278849,7 @@ self: { ]; description = "Compile separate tex files with the same bibliography"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "tex-join-bib"; - broken = true; }) {}; "tex2txt" = callPackage @@ -294558,9 +278864,7 @@ self: { executableHaskellDepends = [ base containers deepseq parsec ]; description = "LaTeX to plain-text conversion"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "tex2txt"; - broken = true; }) {}; "texbuilder" = callPackage @@ -294581,9 +278885,7 @@ self: { ]; description = "View your latex output while editing"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "texbuilder"; - broken = true; }) {}; "texmath" = callPackage @@ -294673,8 +278975,6 @@ self: { ]; description = "Everything Data.Text related in one package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-and-plots" = callPackage @@ -294691,8 +278991,6 @@ self: { ]; description = "EDSL to create HTML documents with plots based on the C3.js library."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-ansi" = callPackage @@ -294721,8 +279019,6 @@ self: { ]; description = "ASCII string and character processing"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-binary" = callPackage @@ -294792,8 +279088,6 @@ self: { ]; description = "Builder for Text and ByteString based on linear types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-compression" = callPackage @@ -294808,8 +279102,6 @@ self: { ]; description = "A text compression library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-containers" = callPackage @@ -294832,8 +279124,6 @@ self: { ]; description = "Memory-efficient string-indexed container types"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-conversions" = callPackage @@ -294888,8 +279178,6 @@ self: { ]; description = "A typeclass for user-facing output"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-format" = callPackage @@ -294926,8 +279214,6 @@ self: { testHaskellDepends = [ base hspec time ]; description = "Full-weight string formatting library, analog of Python's string.format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-format-simple" = callPackage @@ -294963,8 +279249,6 @@ self: { ]; description = "A generic, derivable, haskell pretty printer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-icu" = callPackage @@ -295009,8 +279293,6 @@ self: { ]; description = "Dealing with Strict Text in NFC normalization"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-icu-translit" = callPackage @@ -295029,8 +279311,6 @@ self: { ]; description = "ICU transliteration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) icu;}; "text-iso8601" = callPackage @@ -295070,7 +279350,6 @@ self: { ]; description = "Json Quasiquatation for Haskell"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "text-latin1" = callPackage @@ -295121,8 +279400,6 @@ self: { testHaskellDepends = [ base hspec lens ]; description = "Lenses for operating over text"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-lips" = callPackage @@ -295160,7 +279437,6 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-handle text ]; description = "Encode and decode Text to/from ByteString using TextEncoding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "text-manipulate" = callPackage @@ -295191,8 +279467,6 @@ self: { ]; description = "A data structure for mapping metadata to text subsequences"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-metrics" = callPackage @@ -295226,8 +279500,6 @@ self: { ]; description = "Unicode-normalized text"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-offset" = callPackage @@ -295246,8 +279518,6 @@ self: { ]; description = "Library for converting between line/column and byte offset"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-plus" = callPackage @@ -295264,7 +279534,6 @@ self: { testHaskellDepends = [ base doctest HTF text ]; description = "Utils for text"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "text-position" = callPackage @@ -295279,8 +279548,6 @@ self: { testHaskellDepends = [ base QuickCheck regex-applicative ]; description = "Handling positions in text and position-tagging it"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-postgresql" = callPackage @@ -295360,8 +279627,6 @@ self: { libraryHaskellDepends = [ base containers mtl vector ]; description = "A Haskell implementation of the 1# Text Register Machine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-render" = callPackage @@ -295511,8 +279776,6 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion text ]; description = "Streaming decoding functions for UTF encodings. (deprecated)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-time" = callPackage @@ -295546,8 +279809,6 @@ self: { ]; description = "An efficient finite map from Text to values, based on bytestring-trie"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-utf7" = callPackage @@ -295565,8 +279826,6 @@ self: { ]; description = "UTF-7 encoding/decoding for Data.Text"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-utf8" = callPackage @@ -295591,8 +279850,6 @@ self: { ]; description = "An efficient packed UTF-8 backed Unicode text type"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-utils" = callPackage @@ -295621,7 +279878,6 @@ self: { ]; description = "Serialize Data to XML (strings)"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "text-xml-qq" = callPackage @@ -295633,8 +279889,6 @@ self: { libraryHaskellDepends = [ base parsec template-haskell xml ]; description = "Quasiquoter for xml. XML DSL in Haskell."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text-zipper" = callPackage @@ -295660,8 +279914,6 @@ self: { testHaskellDepends = [ base hspec text-zipper ]; description = "Monadic interface to the text-zipper package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "text1" = callPackage @@ -295680,8 +279932,6 @@ self: { ]; description = "Non-empty values of `Data.Text`."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "textPlot" = callPackage @@ -295722,7 +279972,6 @@ self: { executableHaskellDepends = [ base haskell98 process ]; description = "A simple Haskell program to provide tags for Haskell code completion in TextMate"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "textmatetags"; }) {}; @@ -295744,8 +279993,6 @@ self: { ]; description = "Unofficial Haskell SDK for Textocat API -- http://textocat.com"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "texts" = callPackage @@ -295768,8 +280015,6 @@ self: { libraryHaskellDepends = [ base bytestring text utf8-string ]; description = "Textual type class for data that represent text"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tf-random" = callPackage @@ -295805,8 +280050,6 @@ self: { libraryHaskellDepends = [ base template-haskell tfp ]; description = "Template-Haskell code for tfp"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tftp" = callPackage @@ -295831,9 +280074,7 @@ self: { ]; description = "A library for building tftp servers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tftp_upload"; - broken = true; }) {}; "tga" = callPackage @@ -295845,8 +280086,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Reading and writing of tga image files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "th-abstraction" = callPackage @@ -295897,7 +280136,6 @@ self: { ]; description = "Alpha equivalence for TH Exp"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "th-bang-compat" = callPackage @@ -295920,8 +280158,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "More convenient construction of TH ASTs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "th-cas" = callPackage @@ -295987,7 +280223,6 @@ self: { ]; description = "Test instance context"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "th-data-compat_0_1_1_1" = callPackage @@ -296068,8 +280303,6 @@ self: { libraryHaskellDepends = [ base constraints template-haskell ]; description = "Automatically discover available dictionaries at compile time"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "th-env" = callPackage @@ -296130,8 +280363,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "TH fold generator"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "th-format" = callPackage @@ -296148,8 +280379,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit text ]; description = "Template Haskell based support for format strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "th-inline-io-action" = callPackage @@ -296161,8 +280390,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Simple inline IO action into compiled code using TH"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "th-instance-reification" = callPackage @@ -296183,8 +280410,6 @@ self: { ]; description = "Fixed versions of instances reification functions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "th-instances" = callPackage @@ -296208,7 +280433,6 @@ self: { ]; description = "A place to collect orphan instances for Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "th-kinds" = callPackage @@ -296224,8 +280448,6 @@ self: { ]; description = "Automated kind inference in Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "th-kinds-fork" = callPackage @@ -296241,8 +280463,6 @@ self: { ]; description = "Automated kind inference in Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "th-lego" = callPackage @@ -296359,8 +280579,6 @@ self: { libraryHaskellDepends = [ base lens pretty template-haskell ]; description = "Simplify and render Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "th-printf" = callPackage @@ -296442,8 +280660,6 @@ self: { libraryHaskellDepends = [ base containers template-haskell ]; description = "Binding group analysis in Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "th-strict-compat" = callPackage @@ -296470,8 +280686,6 @@ self: { ]; description = "Typechecking in Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "th-test-utils" = callPackage @@ -296505,8 +280719,6 @@ self: { testHaskellDepends = [ base hspec template-haskell ]; description = "Provides a way to persist data from compile-time to runtime"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "th-traced" = callPackage @@ -296518,8 +280730,6 @@ self: { libraryHaskellDepends = [ base containers mtl template-haskell ]; description = "Tracing Q monad computation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "th-typegraph" = callPackage @@ -296547,7 +280757,6 @@ self: { ]; description = "Graph of the subtype relation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "th-utilities" = callPackage @@ -296593,9 +280802,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Give your dependencies stars on GitHub!"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "thank-you-stars"; - broken = true; }) {}; "the-snip" = callPackage @@ -296657,9 +280864,7 @@ self: { ]; description = "Haskell API bindings for http://themoviedb.org"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "tmdb"; - broken = true; }) {}; "themplate" = callPackage @@ -296707,8 +280912,6 @@ self: { ]; description = "All-in-one session handling for servant-based frontends"; license = "AGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "theoremquest" = callPackage @@ -296720,8 +280923,6 @@ self: { libraryHaskellDepends = [ base HTTP json utf8-string ]; description = "A common library for TheoremQuest, a theorem proving game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "theoremquest-client" = callPackage @@ -296735,7 +280936,6 @@ self: { executableHaskellDepends = [ base HTTP network theoremquest ]; description = "A simple client for the TheoremQuest theorem proving game"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tq"; }) {}; @@ -296825,9 +281025,7 @@ self: { libraryHaskellDepends = [ base pretty ]; description = "Typing Haskell In Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "thih"; - broken = true; }) {}; "thimk" = callPackage @@ -296846,7 +281044,6 @@ self: { ]; description = "Command-line spelling word suggestion tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "thock" = callPackage @@ -296874,8 +281071,6 @@ self: { ]; description = "A modern TUI typing game featuring online racing against friends"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "thorn" = callPackage @@ -296894,8 +281089,6 @@ self: { ]; description = "Datatype Manipulation with Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "thread-hierarchy" = callPackage @@ -296941,8 +281134,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A simplified implementation of Erlang/OTP like supervisor over thread"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "thread-utils-context" = callPackage @@ -297008,7 +281199,6 @@ self: { ]; description = "Manage concurrently operating threads without having to spark them"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "threadmanager" = callPackage @@ -297020,8 +281210,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "(deprecated in favor of 'threads') Simple thread management"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "threads" = callPackage @@ -297147,8 +281335,6 @@ self: { ]; description = "Composable algebraic editors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "threepenny-gui" = callPackage @@ -297189,9 +281375,7 @@ self: { executableHaskellDepends = [ base threepenny-gui ]; description = "Write simple nested context menus for threepenny-gui"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "threepenny-gui-contextmenu-exe"; - broken = true; }) {}; "threepenny-gui-flexbox" = callPackage @@ -297206,9 +281390,7 @@ self: { executableHaskellDepends = [ base threepenny-gui ]; description = "Flexbox layouts for Threepenny-gui"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "threepenny-flexbox-exe"; - broken = true; }) {}; "thrift" = callPackage @@ -297231,8 +281413,6 @@ self: { ]; description = "Haskell bindings for the Apache Thrift RPC system"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "thrist" = callPackage @@ -297272,8 +281452,6 @@ self: { ]; description = "Throttler between arbitrary IO producer and consumer functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "throttled" = callPackage @@ -297297,8 +281475,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Loop over an action but throttle it to a certain rate"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "through-text" = callPackage @@ -297312,8 +281488,6 @@ self: { libraryHaskellDepends = [ base bytestring case-insensitive text ]; description = "Convert textual types through Text without needing O(n^2) instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "throwable-exceptions" = callPackage @@ -297332,8 +281506,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "throwable-exceptions gives the easy way to throw exceptions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "thumbnail" = callPackage @@ -297345,8 +281517,6 @@ self: { libraryHaskellDepends = [ base bytestring gd ]; description = "generate thumbnail image"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "thumbnail-plus" = callPackage @@ -297370,8 +281540,6 @@ self: { ]; description = "Generate thumbnails easily and safely"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "thumbnail-polish" = callPackage @@ -297388,7 +281556,6 @@ self: { ]; description = "Image thumbnail creation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "thyme" = callPackage @@ -297454,9 +281621,7 @@ self: { ]; description = "A desktop bar based on WebKit"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "tianbar"; - broken = true; }) {inherit (pkgs) gtk3; inherit (pkgs) webkitgtk;}; "tibetan-utils" = callPackage @@ -297489,7 +281654,6 @@ self: { executableHaskellDepends = [ base glade gtk haskell98 ]; description = "Useful if reading \"Why FP matters\" by John Hughes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tic-tac-toe"; }) {}; @@ -297527,9 +281691,7 @@ self: { testHaskellDepends = [ base QuickCheck text ]; description = "A basic implementation of a personal ticket management system"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "ticket-manager"; - broken = true; }) {}; "tickle" = callPackage @@ -297550,7 +281712,6 @@ self: { ]; description = "A port of @Data.Binary@"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tictactoe3d" = callPackage @@ -297562,8 +281723,6 @@ self: { libraryHaskellDepends = [ base tuples-homogenous-h98 vector ]; description = "3D Tic-Tac-Toe game"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tidal" = callPackage @@ -297618,8 +281777,6 @@ self: { ]; description = "Please ignore this package"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tidal-serial" = callPackage @@ -297633,8 +281790,6 @@ self: { ]; description = "Serial support for tidal"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tidal-vis" = callPackage @@ -297655,9 +281810,7 @@ self: { executableHaskellDepends = [ base ]; description = "Visual rendering for Tidal patterns and osc messages"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "tidal-vis"; - broken = true; }) {}; "tie-knot" = callPackage @@ -297669,8 +281822,6 @@ self: { libraryHaskellDepends = [ base containers mtl recursion-schemes ]; description = "\"Ties the knot\" on a given set of structures that reference each other by keys"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tiempo" = callPackage @@ -297682,8 +281833,6 @@ self: { libraryHaskellDepends = [ base deepseq time ]; description = "Specify time intervals in different units (secs, mins, hours, etc.)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tiger" = callPackage @@ -297700,9 +281849,7 @@ self: { ]; description = "Tiger Compiler of Universiteit Utrecht"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tiger"; - broken = true; }) {}; "tight-apply" = callPackage @@ -297730,8 +281877,6 @@ self: { ]; description = "Nice API for a Slackbot"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tighttp" = callPackage @@ -297750,7 +281895,6 @@ self: { ]; description = "Tiny and Incrementally-Growing HTTP library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tikzsd" = callPackage @@ -297771,9 +281915,7 @@ self: { ]; description = "A program for generating LaTeX code of string diagrams"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "tikzsd"; - broken = true; }) {}; "tile" = callPackage @@ -297816,7 +281958,6 @@ self: { executableToolDepends = [ happy ]; description = "The Timber Compiler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "timberc"; }) {}; @@ -297896,8 +282037,6 @@ self: { libraryHaskellDepends = [ base time ]; description = "Data instances for the time package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "time-exts" = callPackage @@ -297919,7 +282058,6 @@ self: { ]; description = "Yet another time library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "time-http" = callPackage @@ -297943,7 +282081,6 @@ self: { ]; description = "Parse and format HTTP/1.1 Date and Time strings"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; }) {}; "time-interval" = callPackage @@ -297966,7 +282103,6 @@ self: { libraryHaskellDepends = [ base base-io-access time ]; description = "IO Access for time"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "time-lens" = callPackage @@ -298012,8 +282148,6 @@ self: { testHaskellDepends = [ base hspec HUnit mtl time tz ]; description = "A library to mock the current time"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "time-manager" = callPackage @@ -298100,8 +282234,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Quasi-quoter for UTCTime times"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "time-quote" = callPackage @@ -298118,8 +282250,6 @@ self: { ]; description = "Quasi-quoters for dates and times"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "time-recurrence" = callPackage @@ -298137,8 +282267,6 @@ self: { ]; description = "Generate recurring dates"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "time-series" = callPackage @@ -298153,9 +282281,7 @@ self: { executableHaskellDepends = [ base ]; description = "Time series analysis"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "time-series"; - broken = true; }) {}; "time-series-lib" = callPackage @@ -298169,8 +282295,6 @@ self: { doHaddock = false; description = "Library for Time Series processing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "time-units" = callPackage @@ -298206,8 +282330,6 @@ self: { libraryHaskellDepends = [ base convertible parsec time ]; description = "Parse, format and convert W3C Date and Time"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "time-warp" = callPackage @@ -298245,7 +282367,6 @@ self: { ]; description = "Distributed systems execution emulation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "timecalc" = callPackage @@ -298258,9 +282379,7 @@ self: { isExecutable = true; executableHaskellDepends = [ base haskeline uu-parsinglib ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "timecalc"; - broken = true; }) {}; "timeconsole" = callPackage @@ -298411,8 +282530,6 @@ self: { time unordered-containers ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "timeout" = callPackage @@ -298429,8 +282546,6 @@ self: { ]; description = "Generalized sleep and timeout functions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "timeout-control" = callPackage @@ -298457,8 +282572,6 @@ self: { libraryHaskellDepends = [ base deepseq mtl parallel ]; description = "Runs a time-limited computation alowing it to return intermediate results"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "timeparsers" = callPackage @@ -298474,8 +282587,6 @@ self: { ]; description = "Attoparsec parsers for various Date/Time formats"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "timeplot" = callPackage @@ -298496,9 +282607,7 @@ self: { ]; description = "A tool for visualizing time series from log files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tplot"; - broken = true; }) {}; "timeprint" = callPackage @@ -298510,7 +282619,6 @@ self: { libraryHaskellDepends = [ base datetime ]; description = "Prints timestamps after each line evaluated"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "timer-wheel" = callPackage @@ -298600,8 +282708,6 @@ self: { ]; description = "Library for Time Series processing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "timespan" = callPackage @@ -298687,9 +282793,7 @@ self: { testHaskellDepends = [ base hspec microlens time ]; description = "Time utilities"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "timeutils"; - broken = true; }) {}; "timezone-detect" = callPackage @@ -298709,8 +282813,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell bindings for the zone-detect C library; plus tz-aware utils"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "timezone-olson" = callPackage @@ -298774,7 +282876,6 @@ self: { timezone-series ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "timing-convenience" = callPackage @@ -298819,7 +282920,6 @@ self: { libraryToolDepends = [ proto-lens-protoc ]; description = "gRPC based SDK for Tinkoff Invest API V2"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "tintin" = callPackage @@ -298845,7 +282945,6 @@ self: { testHaskellDepends = [ base require ]; description = "A softer alternative to Haddock"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "tintin"; }) {}; @@ -298858,8 +282957,6 @@ self: { libraryHaskellDepends = [ async base time ]; description = "tiny no-brainer job scheduler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tinyMesh" = callPackage @@ -298875,8 +282972,6 @@ self: { ]; description = "TinyMesh - communicating with auto-meshing sensor network"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tinyXml" = callPackage @@ -298901,9 +282996,7 @@ self: { ]; description = "A fast DOM parser for a subset of XML"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "validate"; - broken = true; }) {}; "tinyfiledialogs" = callPackage @@ -298927,8 +283020,6 @@ self: { libraryHaskellDepends = [ base bytestring entropy ]; description = "A secure URL-friendly string ID generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tinylog" = callPackage @@ -298946,8 +283037,6 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion ]; description = "Simplistic logging using fast-logger"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tinytemplate" = callPackage @@ -298960,8 +283049,6 @@ self: { testHaskellDepends = [ base QuickCheck text ]; description = "A tiny text templating library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tinytools" = callPackage @@ -298996,7 +283083,6 @@ self: { ]; description = "tinytools is a mono-space unicode diagram editor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tinytools-vty" = callPackage @@ -299041,7 +283127,6 @@ self: { ]; description = "tinytools-vty is a terminal based monospace unicode diagram editing tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tip-haskell-frontend" = callPackage @@ -299066,7 +283151,6 @@ self: { ]; description = "Convert from Haskell to Tip"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tip-ghc"; }) {}; @@ -299091,7 +283175,6 @@ self: { ]; description = "tons of inductive problems - support library and tools"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tip"; }) {}; @@ -299109,8 +283192,6 @@ self: { testHaskellDepends = [ aeson base hspec vector ]; description = "Navigating and editing JSON data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "titan" = callPackage @@ -299139,7 +283220,6 @@ self: { ]; description = "Testing Infrastructure for Temporal AbstractioNs - GUI to debug temporal programs"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "titan"; }) {}; @@ -299158,8 +283238,6 @@ self: { ]; description = "Testing Infrastructure for Temporal AbstractioNs - Interactive Yampa debugging layer"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "titan-record-yampa" = callPackage @@ -299171,8 +283249,6 @@ self: { libraryHaskellDepends = [ base Yampa ]; description = "Testing Infrastructure for Temporal AbstractioNs - Yampa record-and-replay layer"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "titlecase" = callPackage @@ -299208,9 +283284,7 @@ self: { testHaskellDepends = [ HUnit test-framework test-framework-hunit ]; description = "Simple Presentation Utility"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tkhs"; - broken = true; }) {}; "tkyprof" = callPackage @@ -299237,9 +283311,7 @@ self: { ]; description = "A web-based visualizer for GHC Profiling Reports"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tkyprof"; - broken = true; }) {}; "tld" = callPackage @@ -299296,7 +283368,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A lexer generator"; license = "(Apache-2.0 OR MPL-2.0)"; - hydraPlatforms = lib.platforms.none; }) {}; "tlex-core" = callPackage @@ -299320,7 +283391,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A lexer generator"; license = "(Apache-2.0 OR MPL-2.0)"; - hydraPlatforms = lib.platforms.none; }) {}; "tlex-debug" = callPackage @@ -299343,7 +283413,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Debug utilities for Tlex"; license = "(Apache-2.0 OR MPL-2.0)"; - hydraPlatforms = lib.platforms.none; }) {}; "tlex-encoding" = callPackage @@ -299366,7 +283435,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Encoding plugin for Tlex"; license = "(Apache-2.0 OR MPL-2.0)"; - hydraPlatforms = lib.platforms.none; }) {}; "tlex-th" = callPackage @@ -299390,7 +283458,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "TemplateHaskell plugin for Tlex"; license = "(Apache-2.0 OR MPL-2.0)"; - hydraPlatforms = lib.platforms.none; }) {}; "tls" = callPackage @@ -299468,8 +283535,6 @@ self: { ]; description = "Set of programs for TLS testing and debugging"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tls-extra" = callPackage @@ -299489,7 +283554,6 @@ self: { ]; description = "TLS extra default values and helpers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tls-session-manager" = callPackage @@ -299673,8 +283737,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Test a simple service with backends running on docker using tmp-proc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tmp-proc-postgres" = callPackage @@ -299813,7 +283875,6 @@ self: { ]; description = "simple executable for templating"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "tmpl"; }) {}; @@ -299837,7 +283898,6 @@ self: { ]; description = "A simple daily journal program"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; mainProgram = "tn"; }) {}; @@ -299883,8 +283943,6 @@ self: { ]; description = "A type class and some utilities for generating Haskell code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "to-string-class" = callPackage @@ -299898,8 +283956,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Converting string-like types to Strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "to-string-instances" = callPackage @@ -299911,7 +283967,6 @@ self: { libraryHaskellDepends = [ bytestring pretty text to-string-class ]; description = "Instances for the ToString class"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "toboggan" = callPackage @@ -299930,7 +283985,6 @@ self: { executableHaskellDepends = [ base ]; description = "Twitter bot generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "toboggan"; }) {}; @@ -299968,7 +284022,6 @@ self: { ]; description = "Easy-to-use TODOs manager"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "todos"; }) {}; @@ -299988,8 +284041,6 @@ self: { ]; description = "Reading and writing Haskell data from and to XML"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "toilet" = callPackage @@ -300007,9 +284058,7 @@ self: { ]; description = "Manage the toilet queue at the IMO"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "toilet"; - broken = true; }) {}; "token-bucket" = callPackage @@ -300024,8 +284073,6 @@ self: { testHaskellDepends = [ base time ]; description = "Rate limiter using lazy bucket algorithm"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "token-limiter" = callPackage @@ -300047,9 +284094,7 @@ self: { ]; description = "Fast rate limiting using the token bucket algorithm (BSD)"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "token-limiter-extended-tests"; - broken = true; }) {}; "token-limiter-concurrent" = callPackage @@ -300092,9 +284137,7 @@ self: { text unordered-containers ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "token-search"; - broken = true; }) {}; "tokenify" = callPackage @@ -300106,8 +284149,6 @@ self: { libraryHaskellDepends = [ base containers text ]; description = "A regex lexer"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tokenize" = callPackage @@ -300141,8 +284182,6 @@ self: { ]; description = "Check uniqueness and tokenize safely"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tokenizer-monad" = callPackage @@ -300170,8 +284209,6 @@ self: { ]; description = "A variant of tokenizer-monad that supports streaming"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tokstyle" = callPackage @@ -300197,8 +284234,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "TokTok C code style checker"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "toktok" = callPackage @@ -300213,7 +284248,6 @@ self: { libraryHaskellDepends = [ base containers haskell98 ]; executableHaskellDepends = [ base bytestring gf iconv ]; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "tokyocabinet-haskell" = callPackage @@ -300232,8 +284266,6 @@ self: { testSystemDepends = [ tokyocabinet ]; description = "Haskell binding of Tokyo Cabinet"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) tokyocabinet;}; "tokyotyrant-haskell" = callPackage @@ -300248,8 +284280,6 @@ self: { description = "FFI bindings to libtokyotyrant"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) tokyocabinet; inherit (pkgs) tokyotyrant;}; "tomato-rubato-openal" = callPackage @@ -300279,8 +284309,6 @@ self: { attoparsec base bytestring containers old-locale time ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "toml-parser" = callPackage @@ -300388,7 +284416,6 @@ self: { ]; description = "Command-line tool to check syntax of TOML files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tomlcheck"; }) {}; @@ -300402,8 +284429,6 @@ self: { testHaskellDepends = [ base bytestring doctest Glob rio unliftio ]; description = "A standard library for Tonatona framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tonaparser" = callPackage @@ -300418,8 +284443,6 @@ self: { testHaskellDepends = [ base doctest envy Glob rio say tonatona ]; description = "Scalable way to pass runtime configurations for tonatona"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tonatona" = callPackage @@ -300432,7 +284455,6 @@ self: { testHaskellDepends = [ base doctest Glob rio tonaparser ]; description = "meta application framework"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "tonatona-google-server-api" = callPackage @@ -300455,7 +284477,6 @@ self: { ]; description = "tonatona plugin for google-server-api"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "tonatona-logger" = callPackage @@ -300468,7 +284489,6 @@ self: { testHaskellDepends = [ base doctest Glob rio tonaparser tonatona ]; description = "tonatona plugin for logging"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "tonatona-persistent-postgresql" = callPackage @@ -300489,7 +284509,6 @@ self: { ]; description = "tonatona plugin for accessing PostgreSQL database"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "tonatona-persistent-sqlite" = callPackage @@ -300510,7 +284529,6 @@ self: { ]; description = "tonatona plugin for accessing Sqlite database"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "tonatona-servant" = callPackage @@ -300534,7 +284552,6 @@ self: { ]; description = "tonatona plugin for servant"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "too-many-cells" = callPackage @@ -300580,7 +284597,6 @@ self: { executableHaskellDepends = [ base optparse-applicative ]; description = "Cluster single cells and analyze cell clade relationships"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "too-many-cells"; }) {}; @@ -300617,9 +284633,7 @@ self: { ]; description = "Manage the TODO entries in your code"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "toodles"; - broken = true; }) {}; "toolshed" = callPackage @@ -300661,7 +284675,6 @@ self: { ]; description = "Top (typed oriented protocol) API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "topaz" = callPackage @@ -300677,7 +284690,6 @@ self: { ]; description = "Extensible records library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tophat" = callPackage @@ -300712,9 +284724,7 @@ self: { ]; description = "OpenGL Arcade Game"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "topkata"; - broken = true; }) {}; "topograph" = callPackage @@ -300743,8 +284753,6 @@ self: { libraryHaskellDepends = [ base mtl parallel QuickCheck ]; description = "Simple unit test library (or framework)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "torrent" = callPackage @@ -300820,7 +284828,6 @@ self: { libraryHaskellDepends = [ base containers semiring-num ]; description = "Finitely represented total maps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "total-maps" = callPackage @@ -300837,8 +284844,6 @@ self: { ]; description = "Dense and sparse total maps"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "touched" = callPackage @@ -300853,9 +284858,7 @@ self: { executableHaskellDepends = [ base cmdargs ]; description = "Library (and cli) to execute a procedure on file change"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "touched"; - broken = true; }) {}; "tower" = callPackage @@ -300902,7 +284905,6 @@ self: { ]; description = "A Tox protocol implementation in Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "toxsave-convert"; }) {}; @@ -300929,7 +284931,6 @@ self: { ]; description = "Haskell bindings to the C reference implementation of Tox"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "groupbot"; }) {toxcore = null;}; @@ -300950,8 +284951,6 @@ self: { ]; description = "Client library for Toxiproxy: a TCP failure testing proxy"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "toysolver" = callPackage @@ -301007,7 +285006,6 @@ self: { ]; description = "Assorted decision procedures for SAT, SMT, Max-SAT, PB, MIP, etc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tpar" = callPackage @@ -301044,7 +285042,6 @@ self: { ]; description = "simple, parallel job scheduling"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tpar"; }) {}; @@ -301071,7 +285068,6 @@ self: { ]; description = "Applications for interacting with the Pushbullet API"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "tpdb" = callPackage @@ -301113,8 +285109,6 @@ self: { ]; description = "Parser and pretty printer for the TPTP language"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "trace" = callPackage @@ -301131,8 +285125,6 @@ self: { ]; description = "A monad transformer for tracing provenience of errors"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "trace-call" = callPackage @@ -301144,8 +285136,6 @@ self: { libraryHaskellDepends = [ base containers mtl ]; description = "functions for logging the arguments and results of function calls"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "trace-function-call" = callPackage @@ -301157,8 +285147,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Easy lightweight tracing of function arguments and results for ad hoc debugging"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "traced" = callPackage @@ -301170,8 +285158,6 @@ self: { libraryHaskellDepends = [ base containers mtl pretty ]; description = "Simple evaluation trace"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tracer" = callPackage @@ -301203,8 +285189,6 @@ self: { ]; description = "Visualize Haskell data structures as edge-labeled trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tracing" = callPackage @@ -301263,9 +285247,7 @@ self: { testHaskellDepends = [ base directory hspec process ]; description = "Package to list all tracked and untracked existing files via Git"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "tracked-files"; - broken = true; }) {}; "tracker" = callPackage @@ -301277,8 +285259,6 @@ self: { libraryHaskellDepends = [ base containers glib ]; description = "Client library for Tracker metadata database, indexer and search tool"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "trackit" = callPackage @@ -301297,9 +285277,7 @@ self: { ]; description = "A command-line tool for live monitoring"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "trackit"; - broken = true; }) {}; "traction" = callPackage @@ -301321,8 +285299,6 @@ self: { ]; description = "Tools for postgresql-simple"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tracy" = callPackage @@ -301334,8 +285310,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Convenience wrappers for non-intrusive debug tracing"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "trade-journal" = callPackage @@ -301392,8 +285366,6 @@ self: { ]; description = "TrailDB bindings for Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {Judy = null; traildb = null;}; "trajectory" = callPackage @@ -301416,7 +285388,6 @@ self: { ]; description = "Tools and a library for working with Trajectory"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "trans-fx-core" = callPackage @@ -301428,8 +285399,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Monadic effect framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "trans-fx-data" = callPackage @@ -301441,7 +285410,6 @@ self: { libraryHaskellDepends = [ base trans-fx-core ]; description = "Monadic effect framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "trans-fx-io" = callPackage @@ -301454,7 +285422,6 @@ self: { testHaskellDepends = [ base time trans-fx-core ]; description = "Monadic effect framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "transaction" = callPackage @@ -301484,8 +285451,6 @@ self: { libraryHaskellDepends = [ base ListZipper MonadPrompt stm ]; description = "Transactional events, based on Concurrent ML semantics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "transf" = callPackage @@ -301504,7 +285469,6 @@ self: { ]; description = "Text transformer and interpreter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "transf"; }) {}; @@ -301534,7 +285498,6 @@ self: { ]; description = "ODBC database transfer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "transfer-db"; }) {}; @@ -301556,7 +285519,6 @@ self: { ]; description = "Generic representation of tree transformations"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "Benchmark"; }) {}; @@ -301614,8 +285576,6 @@ self: { libraryHaskellDepends = [ base mmorph transformers ]; description = "Bifunctors over monad transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "transformers-compat" = callPackage @@ -301638,8 +285598,6 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Arrow-like / category-like composition for transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "transformers-continue" = callPackage @@ -301669,7 +285627,6 @@ self: { ]; description = "Sensible conversions between some of the monad transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "transformers-eff" = callPackage @@ -301751,8 +285708,6 @@ self: { ]; description = "Ad-hoc type classes for lifting"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "transformers-runnable" = callPackage @@ -301764,8 +285719,6 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "A unified interface for the run operation of monad transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "transformers-supply" = callPackage @@ -301797,8 +285750,6 @@ self: { ]; description = "composing programs with multithreading, events and distributed computing"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "transient-universe" = callPackage @@ -301834,7 +285785,6 @@ self: { ]; description = "fully composable remote execution for the creation of distributed systems"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "transient-universe-tls" = callPackage @@ -301851,7 +285801,6 @@ self: { ]; description = "transient with secure communications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "translatable-intset" = callPackage @@ -301865,8 +285814,6 @@ self: { libraryHaskellDepends = [ base fingertree ]; description = "Integer sets with a constant time translate operation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "translate" = callPackage @@ -301879,8 +285826,6 @@ self: { libraryHaskellDepends = [ base curl json network utf8-string ]; description = "Haskell binding to Google's AJAX Language API for Translation and Detection"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "translate-cli" = callPackage @@ -301898,7 +285843,6 @@ self: { testHaskellDepends = [ base HUnit ]; description = "Translation cli tool"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "translate"; }) {}; @@ -301918,7 +285862,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Type Safe Web Routing"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "trasa-client" = callPackage @@ -301935,7 +285878,6 @@ self: { ]; description = "Type safe http requests"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "trasa-extra" = callPackage @@ -301953,7 +285895,6 @@ self: { ]; description = "Extra functions for trasa"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "trasa-form" = callPackage @@ -301972,7 +285913,6 @@ self: { ]; description = "generate forms using lucid, ditto and trasa"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "trasa-reflex" = callPackage @@ -301989,7 +285929,6 @@ self: { ]; description = "Reactive Type Safe Routing"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "trasa-server" = callPackage @@ -302006,7 +285945,6 @@ self: { ]; description = "Type safe web server"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "trasa-th" = callPackage @@ -302023,7 +285961,6 @@ self: { testHaskellDepends = [ base trasa ]; description = "Template Haskell to generate trasa routes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "traversal-template" = callPackage @@ -302039,7 +285976,6 @@ self: { benchmarkHaskellDepends = [ base gauge template-haskell util ]; description = "See README for more info"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "traverse-code" = callPackage @@ -302060,8 +285996,6 @@ self: { ]; description = "General data structure lifting for Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "traverse-with-class" = callPackage @@ -302093,8 +286027,6 @@ self: { ]; description = "A simple client implementation using Travis CI API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "travis-meta-yaml" = callPackage @@ -302124,9 +286056,7 @@ self: { ]; description = ".travis.yml preprocessor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "travis-meta-yaml"; - broken = true; }) {}; "travis-pogodi" = callPackage @@ -302160,9 +286090,7 @@ self: { ]; description = "A tool for finding haddocks"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "trawl"; - broken = true; }) {}; "traypoweroff" = callPackage @@ -302177,9 +286105,7 @@ self: { executableHaskellDepends = [ base gtk process ]; description = "Tray Icon application to PowerOff / Reboot computer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "traypoweroff"; - broken = true; }) {}; "treap" = callPackage @@ -302196,8 +286122,6 @@ self: { testHaskellDepends = [ base doctest Glob hspec hspec-core ]; description = "Efficient implementation of the implicit treap data structure"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tree-diff" = callPackage @@ -302250,8 +286174,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Non-Determinism Monad for Tree Search"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tree-render-text" = callPackage @@ -302263,8 +286185,6 @@ self: { libraryHaskellDepends = [ base boxes containers mtl ]; description = "Configurable text rendering of trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tree-sitter" = callPackage @@ -302451,8 +286371,6 @@ self: { testHaskellDepends = [ base containers doctest mtl ]; description = "Functions and newtype wrappers for traversing Trees"; license = lib.licenses.cc0; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tree-view" = callPackage @@ -302499,8 +286417,6 @@ self: { ]; description = "A tree of Data.Map."; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "treemap-html" = callPackage @@ -302516,8 +286432,6 @@ self: { ]; description = "Generates HTML for Data.Tree as TreeMap"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "treemap-html-tools" = callPackage @@ -302537,7 +286451,6 @@ self: { doHaddock = false; description = "Treemap related commands for producing foldable TreeMap HTML"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "treersec" = callPackage @@ -302549,7 +286462,6 @@ self: { libraryHaskellDepends = [ base haste-compiler sneathlane-haste ]; description = "Structure Editing Combinators"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "treeseq" = callPackage @@ -302618,7 +286530,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A PostgreSQL Database Migrator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "trek"; }) {}; @@ -302643,7 +286554,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "A PostgreSQL Database Migrator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "trek-lens" = callPackage @@ -302670,8 +286580,6 @@ self: { ]; description = "Library for polling Tremulous servers"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "trhsx" = callPackage @@ -302682,8 +286590,6 @@ self: { sha256 = "11jx2jf6vi7368ys39mz0ziy6xknbi0z87926n2y16am6k2h25k3"; description = "Deprecated"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "trial" = callPackage @@ -302728,8 +286634,6 @@ self: { libraryHaskellDepends = [ base text tomland trial ]; description = "Trial helper functions for tomland"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "triangulation" = callPackage @@ -302745,7 +286649,6 @@ self: { ]; description = "triangulation of polygons"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "trie-simple" = callPackage @@ -302799,8 +286702,6 @@ self: { ]; description = "Various trie implementations in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "trifecta" = callPackage @@ -302846,9 +286747,7 @@ self: { testHaskellDepends = [ base hspec protolude ]; description = "Trigger is a cross platform file system watcher for super fast build-and-restart workflows"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "trigger"; - broken = true; }) {}; "trim" = callPackage @@ -302864,9 +286763,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "A command-line tool for trimming whitespace"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "trim"; - broken = true; }) {}; "trimdent" = callPackage @@ -302896,7 +286793,6 @@ self: { executableHaskellDepends = [ base bio bytestring simpleargs ]; description = "Search for, annotate and trim poly-A tail"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "trimpolya"; }) {}; @@ -302913,8 +286809,6 @@ self: { ]; description = "A very simple triple store"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "triplesec" = callPackage @@ -302947,8 +286841,6 @@ self: { libraryHaskellDepends = [ base comonad distributive ]; description = "The trivial monad and comonad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "trivial-constraint" = callPackage @@ -302971,8 +286863,6 @@ self: { libraryHaskellDepends = [ base semiring-simple ]; description = "A library for tropical mathematics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tropical-geometry" = callPackage @@ -302997,9 +286887,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "A Tropical Geometry package for Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "tropical-geometry"; - broken = true; }) {}; "true-name" = callPackage @@ -303050,7 +286938,6 @@ self: { testHaskellDepends = [ base hastache tasty tasty-hunit ]; description = "Haskell template code generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "trurl"; }) {}; @@ -303068,8 +286955,6 @@ self: { testHaskellDepends = [ base binary containers cropty merge text ]; description = "An implementation of a trust chain"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "truthful" = callPackage @@ -303105,8 +286990,6 @@ self: { libraryHaskellDepends = [ base containers mtl time transformers ]; description = "A Transaction Framework for Web Applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tsession-happstack" = callPackage @@ -303120,7 +287003,6 @@ self: { ]; description = "A Transaction Framework for Happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tsetchan" = callPackage @@ -303164,8 +287046,6 @@ self: { ]; description = "-"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tslogger" = callPackage @@ -303212,9 +287092,7 @@ self: { executableHaskellDepends = [ base gloss stm vector ]; description = "Real time TSP tour visualization"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tsp-viz"; - broken = true; }) {}; "tsparse" = callPackage @@ -303232,8 +287110,6 @@ self: { ]; description = "Parses U.S. federal Thrift Savings Plan PDF quarterly statements"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tst" = callPackage @@ -303265,9 +287141,7 @@ self: { ]; description = "Interacts with tesseract to ease reading of RAW Japanese manga"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tsuntsun"; - broken = true; }) {}; "tsv2csv" = callPackage @@ -303301,9 +287175,7 @@ self: { ]; description = "Template tsv into SQL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "tsvsql"; - broken = true; }) {}; "tsweb" = callPackage @@ -303332,7 +287204,6 @@ self: { ]; description = "An API binding Web.Spock to Database.Beam"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tsweb"; }) {}; @@ -303356,9 +287227,7 @@ self: { testHaskellDepends = [ base ]; description = "This is task management tool for yourself, that inspired by scrum"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ttask"; - broken = true; }) {}; "ttc" = callPackage @@ -303399,8 +287268,6 @@ self: { ]; description = "Extends hashtables so that entries added can be expired after a TTL"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ttn" = callPackage @@ -303440,10 +287307,8 @@ self: { executableHaskellDepends = [ base text time ttn ]; description = "TheThingsNetwork client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ttnc"; maintainers = [ lib.maintainers.sorki ]; - broken = true; }) {}; "ttrie" = callPackage @@ -303496,9 +287361,7 @@ self: { ]; description = "Working with files for the Tiptoi® pen"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "tttool"; - broken = true; }) {}; "tubes" = callPackage @@ -303515,8 +287378,6 @@ self: { ]; description = "Write stream processing computations with side effects in a series of tubes"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tuntap" = callPackage @@ -303528,8 +287389,6 @@ self: { libraryHaskellDepends = [ base bytestring unix ]; description = "Interface to TUN/TAP drivers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tuntap-simple" = callPackage @@ -303543,7 +287402,6 @@ self: { libraryHaskellDepends = [ base ioctl ]; description = "A simple tun/tap library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tup-functor" = callPackage @@ -303558,7 +287416,6 @@ self: { executableHaskellDepends = [ base haskell-src-exts parsec2 ]; description = "Homogeneous tuples"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tuplepp"; }) {}; @@ -303583,8 +287440,6 @@ self: { testHaskellDepends = [ base ghc-prim hspec ]; description = "A package to append, sequence and fold items and tuples into new tuples"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tuple-append-instances" = callPackage @@ -303600,7 +287455,6 @@ self: { ]; description = "Extra instances for the typeclasses in the tuple-append package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tuple-fields" = callPackage @@ -303628,8 +287482,6 @@ self: { libraryHaskellDepends = [ base combinat ]; description = "Enum instances for tuples where the digits increase with the same speed"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tuple-generic" = callPackage @@ -303652,8 +287504,6 @@ self: { libraryHaskellDepends = [ base HList OneTuple ]; description = "Functions to convert between tuples and HLists"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tuple-lenses" = callPackage @@ -303665,8 +287515,6 @@ self: { libraryHaskellDepends = [ base lens template-haskell ]; description = "Stock FieldN combos and generators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tuple-morph" = callPackage @@ -303680,8 +287528,6 @@ self: { libraryHaskellDepends = [ base HList template-haskell ]; description = "Morph between tuples, or convert them from and to HLists"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tuple-ops" = callPackage @@ -303693,7 +287539,6 @@ self: { libraryHaskellDepends = [ base type-combinators ]; description = "various operations on n-ary tuples via GHC.Generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "tuple-sop" = callPackage @@ -303728,8 +287573,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Functor, Applicative and Monad for n-ary tuples"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tuples" = callPackage @@ -303782,8 +287625,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A simple simulator for Turing machines"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "turing-music" = callPackage @@ -303797,9 +287638,7 @@ self: { executableHaskellDepends = [ ALUT base ]; description = "Plays music generated by Turing machines with 5 states and 2 symbols"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "turing-music"; - broken = true; }) {}; "turingMachine" = callPackage @@ -303816,7 +287655,6 @@ self: { ]; description = "An implementation of Turing Machine and Automaton"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "turkish-deasciifier" = callPackage @@ -303902,9 +287740,7 @@ self: { testHaskellDepends = [ base HUnit parsec ]; description = "Collection of command line options and parsers for these options"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "tw" = callPackage @@ -303938,8 +287774,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Tiny web application framework for WAI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tweak" = callPackage @@ -303951,8 +287785,6 @@ self: { libraryHaskellDepends = [ base containers lens stm transformers ]; description = "A library for incremental computing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "twee" = callPackage @@ -303970,7 +287802,6 @@ self: { ]; description = "An equational theorem prover"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "twee"; }) {}; @@ -304017,7 +287848,6 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion megaparsec ]; description = "Command-line tool for twitter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tweet"; }) {}; @@ -304047,7 +287877,6 @@ self: { ]; description = "Used as Lab Assignments Environment at the University of Twente"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "twentefp-eventloop-trees" = callPackage @@ -304059,7 +287888,6 @@ self: { libraryHaskellDepends = [ base eventloop ]; description = "Tree type and show functions for lab assignment of University of Twente. Contains RoseTree and RedBlackTree"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "twentefp-graphs" = callPackage @@ -304071,7 +287899,6 @@ self: { libraryHaskellDepends = [ base twentefp-eventloop-graphics ]; description = "Lab Assignments Environment at Univeriteit Twente"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "twentefp-number" = callPackage @@ -304097,7 +287924,6 @@ self: { ]; description = "RoseTree type and show functions for lab assignment of University of Twente"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "twentefp-trees" = callPackage @@ -304109,7 +287935,6 @@ self: { libraryHaskellDepends = [ base twentefp-eventloop-graphics ]; description = "Tree type and show functions for lab assignment of University of Twente. Contains RoseTree and ParseTree"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "twentefp-websockets" = callPackage @@ -304128,8 +287953,6 @@ self: { ]; description = "A fork of the popular websockets package. It is used for the practical assignments of the University of Twente. A sensible and clean way to write WebSocket-capable servers in Haskell."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "twentyseven" = callPackage @@ -304159,7 +287982,6 @@ self: { ]; description = "Rubik's cube solver"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "twentyseven"; }) {}; @@ -304186,9 +288008,7 @@ self: { testHaskellDepends = [ base ]; description = "They Work For You API Client Library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "twfy-api-client"; - broken = true; }) {}; "twhs" = callPackage @@ -304219,9 +288039,7 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "CLI twitter client"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "twhs"; - broken = true; }) {}; "twidge" = callPackage @@ -304242,7 +288060,6 @@ self: { ]; description = "Unix Command-Line Twitter and Identica Client"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "twidge"; }) {}; @@ -304255,7 +288072,6 @@ self: { libraryHaskellDepends = [ base containers haskell98 mtl ]; description = "STM library with safe irrevocable I/O and inconsistency repair"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "twilio" = callPackage @@ -304282,8 +288098,6 @@ self: { doCheck = false; description = "Twilio REST API library for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "twill" = callPackage @@ -304302,7 +288116,6 @@ self: { ]; description = "Twilio API interaction"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "twiml" = callPackage @@ -304320,8 +288133,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "TwiML library for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "twine" = callPackage @@ -304337,8 +288148,6 @@ self: { ]; description = "very simple template language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "twirl" = callPackage @@ -304363,9 +288172,7 @@ self: { description = "Simple 2D Game Engine"; license = lib.licenses.zlib; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "twirp" = callPackage @@ -304387,8 +288194,6 @@ self: { ]; description = "Haskell twirp foundations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "twisty" = callPackage @@ -304404,8 +288209,6 @@ self: { ]; description = "Simulator of twisty puzzles à la Rubik's Cube"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "twitch" = callPackage @@ -304426,8 +288229,6 @@ self: { ]; description = "A high level file watcher DSL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "twitchapi" = callPackage @@ -304448,8 +288249,6 @@ self: { ]; description = "Client access to Twitch.tv API endpoints"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "twitter" = callPackage @@ -304467,9 +288266,7 @@ self: { ]; description = "A Haskell-based CLI Twitter client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "twitter"; - broken = true; }) {}; "twitter-conduit" = callPackage @@ -304518,7 +288315,6 @@ self: { ]; description = "Twitter API package with enumerator interface and Streaming API support"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "twitter-feed" = callPackage @@ -304540,8 +288336,6 @@ self: { ]; description = "Client for fetching Twitter timeline via Oauth"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "twitter-types" = callPackage @@ -304593,8 +288387,6 @@ self: { ]; description = "Persistent transactions on top of STM"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "txt" = callPackage @@ -304613,7 +288405,6 @@ self: { testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; description = "Text"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "txt-sushi" = callPackage @@ -304656,8 +288447,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Deprecated in favor of eros"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ty" = callPackage @@ -304682,8 +288471,6 @@ self: { libraryHaskellDepends = [ base containers template-haskell ]; description = "Provide proof witnesses for closed type family evaluation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "typalyze" = callPackage @@ -304702,8 +288489,6 @@ self: { ]; description = "Analyzes Haskell source files for easy reference"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-aligned" = callPackage @@ -304728,7 +288513,6 @@ self: { testHaskellDepends = [ base hspec test-fixture ]; description = "Runtime type assertions for testing"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; }) {}; "type-booleans" = callPackage @@ -304755,7 +288539,6 @@ self: { ]; description = "Utilities for caching type families results. Sometimes complex type families take long time to compile, so it is proficient to cache them and use the final result without the need of re-computation."; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "type-cereal" = callPackage @@ -304772,7 +288555,6 @@ self: { ]; description = "Type-level serialization of type constructors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "type-combinators" = callPackage @@ -304786,8 +288568,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A collection of data types for type-level programming"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-combinators-quote" = callPackage @@ -304803,7 +288583,6 @@ self: { ]; description = "Quasiquoters for the 'type-combinators' package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "type-combinators-singletons" = callPackage @@ -304815,7 +288594,6 @@ self: { libraryHaskellDepends = [ base singletons type-combinators ]; description = "Interop between /type-combinators/ and /singletons/"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "type-compare" = callPackage @@ -304827,8 +288605,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Type-level Ord compatibility layer"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-digits" = callPackage @@ -304840,7 +288616,6 @@ self: { libraryHaskellDepends = [ base template-haskell type-spine ]; description = "Arbitrary-base type-level digits"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "type-eq" = callPackage @@ -304855,8 +288630,6 @@ self: { libraryToolDepends = [ cpphs ]; description = "Type equality evidence you can carry around"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-equality" = callPackage @@ -304914,8 +288687,6 @@ self: { testHaskellDepends = [ base doctest Glob ]; description = "Combinators for writing pretty type errors easily"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-fun" = callPackage @@ -304972,8 +288743,6 @@ self: { ]; description = "Queues with verified and unverified versions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-int" = callPackage @@ -304985,8 +288754,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Type Level 2s- and 16s- Complement Integers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-interpreter" = callPackage @@ -304999,8 +288766,6 @@ self: { testHaskellDepends = [ base template-haskell ]; description = "Interpreter for Template Haskell types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-iso" = callPackage @@ -305039,8 +288804,6 @@ self: { libraryHaskellDepends = [ base ]; description = "type-level binary search trees in haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-level-integers" = callPackage @@ -305113,8 +288876,6 @@ self: { ]; description = "High-level combinators for performing inductive operations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-level-natural-number-operations" = callPackage @@ -305126,8 +288887,6 @@ self: { libraryHaskellDepends = [ base type-level-natural-number ]; description = "Basic operations on type-level natural numbers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-level-numbers" = callPackage @@ -305153,8 +288912,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Type-level sets and finite maps (with value-level counterparts)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-level-tf" = callPackage @@ -305177,8 +288934,6 @@ self: { libraryHaskellDepends = [ base singletons ]; description = "Operations on type-level lists and tuples"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-map" = callPackage @@ -305254,8 +289009,6 @@ self: { testHaskellDepends = [ base type-of-html ]; description = "Optimize static parts of type-of-html"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-operators" = callPackage @@ -305269,8 +289022,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Various type-level operators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-ord" = callPackage @@ -305284,7 +289035,6 @@ self: { ]; description = "Type-level comparison operator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "type-ord-spine-cereal" = callPackage @@ -305300,7 +289050,6 @@ self: { ]; description = "Generic type-level comparison of types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "type-prelude" = callPackage @@ -305312,8 +289061,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Partial port of prelude to the type level. Requires GHC 7.6.1."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-reflection" = callPackage @@ -305351,8 +289098,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Type safe BST and AVL trees"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-sets" = callPackage @@ -305365,7 +289110,6 @@ self: { testHaskellDepends = [ base cmptype ]; description = "Type-level sets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "type-settheory" = callPackage @@ -305381,8 +289125,6 @@ self: { ]; description = "Sets and functions-as-relations in the type system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-spec" = callPackage @@ -305406,8 +289148,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "A spine-view on types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-structure" = callPackage @@ -305434,7 +289174,6 @@ self: { ]; description = "Type structure analysis"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "type-sub-th" = callPackage @@ -305459,7 +289198,6 @@ self: { ]; description = "Substitute types for other types with Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "type-tree" = callPackage @@ -305477,8 +289215,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Tree representations of datatypes"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "type-unary" = callPackage @@ -305498,8 +289234,6 @@ self: { ]; description = "Type-level and typed unary natural numbers, inequality proofs, vectors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "typeable-mock" = callPackage @@ -305530,8 +289264,6 @@ self: { testHaskellDepends = [ base ]; description = "Automatic deriving of TypeableN instances with Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "typecheck-plugin-nat-simple" = callPackage @@ -305574,7 +289306,6 @@ self: { ]; description = "Admin console framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "typed-digits" = callPackage @@ -305592,8 +289323,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Digits, indexed by their base at the type level"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "typed-duration" = callPackage @@ -305629,8 +289358,6 @@ self: { ]; description = "Type safe string transformations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "typed-encoding-encoding" = callPackage @@ -305650,7 +289377,6 @@ self: { ]; description = "Bridge between encoding and typed-encoding packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "typed-process" = callPackage @@ -305691,9 +289417,7 @@ self: { executableHaskellDepends = [ base diagrams-lib text ]; description = "Typed and composable spreadsheets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.Gabriella439 ]; - broken = true; }) {}; "typed-streams" = callPackage @@ -305715,7 +289439,6 @@ self: { ]; description = "A stream based replacement for lists"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "typed-time" = callPackage @@ -305728,8 +289451,6 @@ self: { testHaskellDepends = [ base hspec hspec-core time ]; description = "A strongly typed way to handle time and date formats"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "typed-uuid" = callPackage @@ -305771,9 +289492,7 @@ self: { ]; description = "Language-independent type-safe communication"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "twirec"; - broken = true; }) {}; "typed-wire-utils" = callPackage @@ -305803,7 +289522,6 @@ self: { ]; description = "Typed frontend to TensorFlow and higher-order deep learning"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "typedquery" = callPackage @@ -305820,8 +289538,6 @@ self: { ]; description = "Parser for SQL augmented with types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "typehash" = callPackage @@ -305833,8 +289549,6 @@ self: { libraryHaskellDepends = [ base binary bytestring mtl pureMD5 syb ]; description = "Create a unique hash value for a type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "typelet" = callPackage @@ -305849,8 +289563,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; description = "Plugin to faciliate type-level let"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "typelevel" = callPackage @@ -305867,7 +289579,6 @@ self: { ]; description = "Useful type level operations (type families and related operators)"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "typelevel-rewrite-rules" = callPackage @@ -305884,8 +289595,6 @@ self: { testHaskellDepends = [ base ghc-prim vinyl ]; description = "Solve type equalities using custom type-level rewrite rules"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "typelevel-tensor" = callPackage @@ -305903,8 +289612,6 @@ self: { ]; description = "Tensors whose ranks and dimensions type-inferred and type-checked"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "typelits-printf" = callPackage @@ -305929,8 +289636,6 @@ self: { libraryHaskellDepends = [ base dependent-sum ]; description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "typenums" = callPackage @@ -305974,8 +289679,6 @@ self: { ]; description = "Lens-like interface for type level parameters; allows unboxed unboxed vectors and supercompilation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "typerep-map" = callPackage @@ -306000,8 +289703,6 @@ self: { doHaddock = false; description = "Efficient implementation of a dependent map with types as keys"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "types-compat" = callPackage @@ -306015,8 +289716,6 @@ self: { libraryHaskellDepends = [ base ]; description = "ghc-7.6/7.8 compatible GHC.TypeLits, Data.Typeable and Data.Proxy."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "typesafe-endian" = callPackage @@ -306049,7 +289748,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Type-safe transformations and purifications of PreCures (Japanese Battle Heroine)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "typescript-docs" = callPackage @@ -306069,7 +289767,6 @@ self: { ]; description = "A documentation generator for TypeScript Definition files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "typescript-docs"; }) {}; @@ -306101,9 +289798,7 @@ self: { executableHaskellDepends = [ base gl mtl sdl2 text ]; description = "Just let me draw nice text already"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "typograffiti"; - broken = true; }) {}; "typography-geometry" = callPackage @@ -306141,7 +289836,6 @@ self: { ]; description = "Typson Beam Integration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "typson-core" = callPackage @@ -306157,8 +289851,6 @@ self: { ]; description = "Type-safe PostgreSQL JSON Querying"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "typson-esqueleto" = callPackage @@ -306183,7 +289875,6 @@ self: { ]; description = "Typson Esqueleto Integration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "typson-selda" = callPackage @@ -306206,7 +289897,6 @@ self: { ]; description = "Typson Selda Integration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "typst" = callPackage @@ -306266,8 +289956,6 @@ self: { ]; description = "Type derived JSON parsing using Aeson"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tz" = callPackage @@ -306341,8 +290029,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Safe timezone-aware handling of time"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "u2f" = callPackage @@ -306361,7 +290047,6 @@ self: { testHaskellDepends = [ base bytestring either-unwrap hspec text ]; description = "Haskell Universal Two Factor helper toolbox library thing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "uAgda" = callPackage @@ -306381,9 +290066,7 @@ self: { ]; description = "A simplistic dependently-typed language with parametricity"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "uAgda"; - broken = true; }) {}; "ua-parser" = callPackage @@ -306444,7 +290127,6 @@ self: { testHaskellDepends = [ base hspec text ]; description = "Uber client for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "uberlast" = callPackage @@ -306456,8 +290138,6 @@ self: { libraryHaskellDepends = [ base lens tagged template-haskell ]; description = "Generate overloaded lenses from plain data declaration"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ucam-webauth" = callPackage @@ -306487,7 +290167,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "The Ucam-Webauth protocol, used by Raven"; license = "(BSD-3-Clause OR Apache-2.0)"; - hydraPlatforms = lib.platforms.none; }) {}; "ucam-webauth-types" = callPackage @@ -306509,8 +290188,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Types for the Ucam-Webauth protocol, as used by Raven"; license = "(BSD-3-Clause OR Apache-2.0)"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ucd" = callPackage @@ -306529,7 +290206,6 @@ self: { benchmarkHaskellDepends = [ base gauge ]; description = "Unicode Character Database — Predicates on characters specified by Unicode"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ucl" = callPackage @@ -306544,8 +290220,6 @@ self: { testHaskellDepends = [ base containers ]; description = "Datatype and parser for the Universal Configuration Language (UCL) using libucl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libucl;}; "uconv" = callPackage @@ -306558,8 +290232,6 @@ self: { librarySystemDepends = [ icu ]; description = "String encoding conversion with ICU"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) icu;}; "udbus" = callPackage @@ -306581,8 +290253,6 @@ self: { ]; description = "Small DBus implementation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "udbus-model" = callPackage @@ -306596,7 +290266,6 @@ self: { libraryHaskellDepends = [ base bytestring udbus xml ]; description = "Model API for udbus introspection and definitions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "udcode" = callPackage @@ -306638,8 +290307,6 @@ self: { ]; description = "Simple fire-and-forget conduit UDP wrappers"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "udp-streaming" = callPackage @@ -306653,8 +290320,6 @@ self: { ]; description = "Streaming to and from UDP socket"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ueberzug" = callPackage @@ -306667,8 +290332,6 @@ self: { testHaskellDepends = [ base ]; description = "Haskell bindings for ueberzug to display images in the terminal"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uglymemo" = callPackage @@ -306707,7 +290370,6 @@ self: { ]; description = "Part of UHC packaged as cabal/hackage installable library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "uhc-util" = callPackage @@ -306727,7 +290389,6 @@ self: { ]; description = "UHC utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "uhexdump" = callPackage @@ -306741,9 +290402,7 @@ self: { executableHaskellDepends = [ base bytestring split ]; description = "hex dumper for UTF-8 text"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "uhexdump"; - broken = true; }) {}; "uhttpc" = callPackage @@ -306768,9 +290427,7 @@ self: { ]; description = "Minimal HTTP client library optimized for benchmarking"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "uhttpc-bench"; - broken = true; }) {}; "ui-command" = callPackage @@ -306784,9 +290441,7 @@ self: { libraryHaskellDepends = [ base data-default mtl old-locale time ]; description = "A framework for friendly commandline programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ui-cmd-hello"; - broken = true; }) {}; "uid" = callPackage @@ -306813,7 +290468,6 @@ self: { libraryHaskellDepends = [ base bytestring mmsyn2 mmsyn5 vector ]; description = "A library to work with the basic Ukrainian phonetics and syllable segmentation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "ukrainian-phonetics-basic-array" = callPackage @@ -306829,8 +290483,6 @@ self: { ]; description = "A library to work with the basic Ukrainian phonetics and syllable segmentation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ukrainian-phonetics-basic-array-bytestring" = callPackage @@ -306846,8 +290498,6 @@ self: { ]; description = "A library to work with the basic Ukrainian phonetics and syllable segmentation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ukrainian-phonetics-common" = callPackage @@ -306919,7 +290569,6 @@ self: { ]; description = "A fast, cache-efficient, concurrent bloom filter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "unagi-chan" = callPackage @@ -306974,8 +290623,6 @@ self: { libraryHaskellDepends = [ base containers mtl ]; description = "Functional concurrency with unamb using a custom scheduler"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unbeliever" = callPackage @@ -307001,8 +290648,6 @@ self: { ]; description = "Opinionated Haskell Interoperability"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unbound" = callPackage @@ -307022,7 +290667,6 @@ self: { ]; description = "Generic support for programming with names and binders"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "unbound-generics" = callPackage @@ -307060,8 +290704,6 @@ self: { ]; description = "Support for programming with names and binders using kind-generics"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unbounded-delays" = callPackage @@ -307084,8 +290726,6 @@ self: { libraryHaskellDepends = [ base unbounded-delays units units-defs ]; description = "Thread delays and timeouts using proper time units"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unboxed" = callPackage @@ -307097,8 +290737,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "All the standard sum types but strict and unboxed as possible"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unboxed-containers" = callPackage @@ -307112,8 +290750,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Self-optimizing unboxed sets using view patterns and data families"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unboxed-ref" = callPackage @@ -307140,9 +290776,7 @@ self: { executableHaskellDepends = [ base vector ]; description = "A library for reference cells backed by unboxed-vectors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "unboxing-vector" = callPackage @@ -307185,9 +290819,7 @@ self: { executableHaskellDepends = [ base bytestring cmdargs ]; description = "Secure and resilient remote file storage utility"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "unbreak"; - broken = true; }) {}; "uncaught-exception" = callPackage @@ -307244,8 +290876,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Tiny package providing unescaping versions of show and print"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unexceptionalio" = callPackage @@ -307285,8 +290915,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Unfixing and recursion schemes for data types with binders"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unfoldable" = callPackage @@ -307371,7 +290999,6 @@ self: { libraryHaskellDepends = [ base containers uni-util ]; description = "uni events"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "uni-graphs" = callPackage @@ -307387,7 +291014,6 @@ self: { ]; description = "Graphs"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "uni-htk" = callPackage @@ -307404,7 +291030,6 @@ self: { ]; description = "Graphical User Interface for Haskell Programs"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "uni-posixutil" = callPackage @@ -307420,7 +291045,6 @@ self: { ]; description = "Posix utilities for the uniform workbench"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "uni-reactor" = callPackage @@ -307435,7 +291059,6 @@ self: { ]; description = "Reactors for the uniform workbench"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "uni-uDrawGraph" = callPackage @@ -307452,7 +291075,6 @@ self: { ]; description = "Graphs binding"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "uni-util" = callPackage @@ -307469,8 +291091,6 @@ self: { ]; description = "Utilities for the uniform workbench"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unicode" = callPackage @@ -307550,8 +291170,6 @@ self: { benchmarkHaskellDepends = [ base deepseq tasty tasty-bench ]; description = "Unicode characters names and aliases"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unicode-data-scripts" = callPackage @@ -307571,8 +291189,6 @@ self: { ]; description = "Unicode characters scripts"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unicode-data-security" = callPackage @@ -307591,8 +291207,6 @@ self: { benchmarkHaskellDepends = [ base deepseq tasty tasty-bench ]; description = "Unicode security mechanisms database"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unicode-general-category" = callPackage @@ -307611,8 +291225,6 @@ self: { ]; description = "Unicode General Category Database"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unicode-names" = callPackage @@ -307638,7 +291250,6 @@ self: { librarySystemDepends = [ icu ]; description = "Unicode normalization using the ICU library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) icu;}; "unicode-prelude" = callPackage @@ -307650,8 +291261,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Unicode notation for some definitions in Prelude"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unicode-properties" = callPackage @@ -307686,8 +291295,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Unicode alternatives for common functions and operators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unicode-transforms" = callPackage @@ -307732,8 +291339,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Functions to work with unicode blocks more convenient"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unicoder" = callPackage @@ -307756,7 +291361,6 @@ self: { testHaskellDepends = [ base text ]; description = "Make writing in unicode easy"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "unicoder"; }) {}; @@ -307869,7 +291473,6 @@ self: { ]; description = "uniform text based operations to call http"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "uniform-io" = callPackage @@ -307889,7 +291492,6 @@ self: { testHaskellDepends = [ attoparsec base bytestring Cabal ]; description = "Uniform IO over files, network, anything"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) openssl;}; "uniform-json" = callPackage @@ -307912,8 +291514,6 @@ self: { ]; description = "handling of JSON and YAML in an uniform way"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uniform-latex2pdf" = callPackage @@ -307930,7 +291530,6 @@ self: { ]; description = "convert a latex `tex` file to a pdf"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "uniform-pair" = callPackage @@ -307963,7 +291562,6 @@ self: { ]; description = "handling of some pandoc stuff"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "uniform-shake" = callPackage @@ -307975,7 +291573,6 @@ self: { libraryHaskellDepends = [ base shake uniform-json uniformBase ]; description = "uniform wrapper for shake"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "uniform-strings" = callPackage @@ -308025,7 +291622,6 @@ self: { libraryHaskellDepends = [ base fsnotify twitch uniformBase ]; description = "uniform wrapper for watch"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "uniform-webserver" = callPackage @@ -308112,8 +291708,6 @@ self: { libraryHaskellDepends = [ base containers transformers ]; description = "Efficient union and equivalence testing of sets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "union-find-array" = callPackage @@ -308136,8 +291730,6 @@ self: { libraryHaskellDepends = [ base containers extensible ]; description = "Heterogeneous map by open unions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unionmount" = callPackage @@ -308156,8 +291748,6 @@ self: { ]; description = "Union mount filesystem paths into Haskell datastructures"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unipatterns" = callPackage @@ -308204,8 +291794,6 @@ self: { ]; description = "UniProt-KB format parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uniq-deep" = callPackage @@ -308302,8 +291890,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Splittable Unique Identifier Supply"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uniquely-represented-sets" = callPackage @@ -308320,8 +291906,6 @@ self: { ]; benchmarkHaskellDepends = [ base criterion random ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uniqueness-periods" = callPackage @@ -308333,7 +291917,6 @@ self: { libraryHaskellDepends = [ base mmsyn6ukr vector ]; description = "Can be used to produce the 'uniquenessPeriods' function and related functionality"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "uniqueness-periods-general" = callPackage @@ -308345,8 +291928,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Can be used to produce the similar to 'String.Ukrainian.UniquenessPeriods' functions."; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uniqueness-periods-vector" = callPackage @@ -308358,8 +291939,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Generalization of the uniqueness-periods and uniqueness-periods-general packages functionality"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uniqueness-periods-vector-common" = callPackage @@ -308371,8 +291950,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Generalization of the dobutokO-poetry-general package functionality"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uniqueness-periods-vector-examples" = callPackage @@ -308404,7 +291981,6 @@ self: { ]; description = "Usage examples for the uniqueness-periods-vector series of packages"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "uniqueness-periods-vector-filters" = callPackage @@ -308416,7 +291992,6 @@ self: { libraryHaskellDepends = [ base mmsyn2 vector ]; description = "A library allows to change the structure of the 'RealFrac' function output"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "uniqueness-periods-vector-general" = callPackage @@ -308432,7 +292007,6 @@ self: { ]; description = "Some kind of the optimization approach to data inner structure"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "uniqueness-periods-vector-properties" = callPackage @@ -308452,7 +292026,6 @@ self: { ]; description = "Metrices for the maximum element for the uniqueness-periods-vector packages family"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "uniqueness-periods-vector-stats" = callPackage @@ -308520,8 +292093,6 @@ self: { ]; description = "Attoparsec parsers for the units package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "units-defs" = callPackage @@ -308562,8 +292133,6 @@ self: { testHaskellDepends = [ base ]; description = "An extendable library for type-safe computations including units"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unity-testresult-parser" = callPackage @@ -308598,8 +292167,6 @@ self: { libraryHaskellDepends = [ base text transformers ]; description = "A monad type class shared between web services"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unitym-servant" = callPackage @@ -308615,7 +292182,6 @@ self: { ]; description = "Implementaation of unitym for Servant servers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "unitym-yesod" = callPackage @@ -308627,8 +292193,6 @@ self: { libraryHaskellDepends = [ base unitym yesod ]; description = "Implementation of the unity monad for the Yesod framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "universal" = callPackage @@ -308648,7 +292212,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Universal"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "universal-binary" = callPackage @@ -308661,8 +292224,6 @@ self: { libraryHaskellDepends = [ base binary bytestring ]; description = "Parser for OS X Universal Binary format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "universe" = callPackage @@ -308679,7 +292240,6 @@ self: { ]; description = "A class for finite and recursively enumerable types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "universe-base" = callPackage @@ -308706,7 +292266,6 @@ self: { libraryHaskellDepends = [ base universe-some ]; description = "Universe instances for types from dependent-sum"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "universe-instances-base" = callPackage @@ -308720,8 +292279,6 @@ self: { libraryHaskellDepends = [ base universe-base ]; description = "Universe instances for types from the base package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "universe-instances-extended" = callPackage @@ -308752,8 +292309,6 @@ self: { libraryHaskellDepends = [ base universe-base ]; description = "Universe instances for types from the transformers and mtl packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "universe-reverse-instances" = callPackage @@ -308786,8 +292341,6 @@ self: { testHaskellDepends = [ base some template-haskell universe-base ]; description = "Universe instances for Some from some"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "universe-th" = callPackage @@ -308810,7 +292363,6 @@ self: { ]; description = "Construct a Dec's ancestor list"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "universum" = callPackage @@ -308913,7 +292465,6 @@ self: { libraryHaskellDepends = [ base foreign-var ]; description = "Comprehensive bindings to fcntl(2)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "unix-handle" = callPackage @@ -308925,8 +292476,6 @@ self: { libraryHaskellDepends = [ base unix ]; description = "POSIX operations on Handles"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unix-io-extra" = callPackage @@ -308976,8 +292525,6 @@ self: { ]; description = "Run processes on Unix systems, with a conduit interface (deprecated)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unix-pty-light" = callPackage @@ -309006,8 +292553,6 @@ self: { benchmarkHaskellDepends = [ base criterion dir-traverse ]; description = "Fast and flexible primitives for recursive file system IO on Posix systems"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unix-simple" = callPackage @@ -309089,8 +292634,6 @@ self: { ]; description = "Typeclass for monads that can be unlifted to arbitrary base monads"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unlift-stm" = callPackage @@ -309105,8 +292648,6 @@ self: { ]; description = "(un)lifted classes and functions for the STM monad"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unlifted" = callPackage @@ -309129,8 +292670,6 @@ self: { libraryHaskellDepends = [ base ghc-prim semigroups ]; description = "GHC Haskell lists of non-thunks (things of kind TYPE 'UnliftedRep)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unliftio" = callPackage @@ -309202,9 +292741,7 @@ self: { ]; description = "Fast and robust message queues for concurrent processes"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "unliftio-messagebox-memleak-test"; - broken = true; }) {}; "unliftio-path" = callPackage @@ -309274,8 +292811,6 @@ self: { ]; description = "A Library for the manipulation of images"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unmed2" = callPackage @@ -309333,8 +292868,6 @@ self: { ]; description = "Rematch support for unordered containers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unordered-graphs" = callPackage @@ -309350,8 +292883,6 @@ self: { ]; description = "Graph library using unordered-containers"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unordered-intmap" = callPackage @@ -309368,8 +292899,6 @@ self: { ]; description = "A specialization of `HashMap Int v`"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unpack-funcs" = callPackage @@ -309385,8 +292914,6 @@ self: { ]; description = "Monad transformers that mirror worker-wrapper transformations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unpacked-containers" = callPackage @@ -309417,8 +292944,6 @@ self: { testHaskellDepends = [ base QuickCheck quickcheck-classes ]; description = "An unpacked either data type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unpacked-maybe" = callPackage @@ -309431,8 +292956,6 @@ self: { testHaskellDepends = [ base QuickCheck quickcheck-classes ]; description = "An unpacked maybe data type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unpacked-maybe-numeric" = callPackage @@ -309447,8 +292970,6 @@ self: { testHaskellDepends = [ base QuickCheck quickcheck-classes ]; description = "maybes of numeric values with fewer indirections"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unpacked-maybe-text" = callPackage @@ -309478,7 +292999,6 @@ self: { testHaskellDepends = [ base QuickCheck quickcheck-classes ]; description = "An unpacked these data type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "unpacked-validation" = callPackage @@ -309495,7 +293015,6 @@ self: { testHaskellDepends = [ base QuickCheck quickcheck-classes ]; description = "An unpacked validation data type"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "unparse-attoparsec" = callPackage @@ -309516,7 +293035,6 @@ self: { ]; description = "An attoparsec roundtrip"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "unroll-ghc-plugin" = callPackage @@ -309528,8 +293046,6 @@ self: { libraryHaskellDepends = [ base ghc ]; description = "Compiler plugin for loop unrolling"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unsafe" = callPackage @@ -309567,8 +293083,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Flexible access control for unsafe operations and instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unsafeperformst" = callPackage @@ -309592,8 +293106,6 @@ self: { libraryHaskellDepends = [ base ghc ]; description = "Unsatisfiable type class"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unscramble" = callPackage @@ -309612,7 +293124,6 @@ self: { ]; description = "Solve Boggle-like word games"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "unscramble"; }) {}; @@ -309632,8 +293143,6 @@ self: { ]; description = "An extension removing the sequentiality from monads"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "unusable-pkg" = callPackage @@ -309676,9 +293185,7 @@ self: { testHaskellDepends = [ base containers hspec text ]; description = "A command line tool to identify unused code"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "unused"; - broken = true; }) {}; "unwrapped-functors" = callPackage @@ -309707,8 +293214,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Units of measure as a GHC type-checker plugin"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "up" = callPackage @@ -309726,7 +293231,6 @@ self: { ]; description = "Command-line tool to generate paths for moving upward in a file system"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "up"; }) {}; @@ -309842,8 +293346,6 @@ self: { ]; description = "Haskell client for Uploadcare"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uploadtest" = callPackage @@ -309866,8 +293368,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Binding to upskirt"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "urbit-airlock" = callPackage @@ -309884,7 +293384,6 @@ self: { ]; description = "Talk to Urbit from Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "urbit-api" = callPackage @@ -309901,7 +293400,6 @@ self: { ]; description = "Talk to Urbit from Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "urbit-hob" = callPackage @@ -309917,8 +293415,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "Hoon-style atom manipulation and printing functions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ureader" = callPackage @@ -309942,7 +293438,6 @@ self: { ]; description = "Minimalistic CLI RSS reader"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ureader"; }) {}; @@ -309964,7 +293459,6 @@ self: { ]; description = "Ur/Web static content generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "urembed"; }) {}; @@ -309977,8 +293471,6 @@ self: { libraryHaskellDepends = [ base parsec safe utf8-string ]; description = "Library for working with URIs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uri-bytestring" = callPackage @@ -310035,8 +293527,6 @@ self: { ]; description = "Read and write URIs (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uri-encode" = callPackage @@ -310074,8 +293564,6 @@ self: { ]; description = "A uri encoder to make your strings less readable"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uri-enumerator" = callPackage @@ -310092,7 +293580,6 @@ self: { ]; description = "Read and write URIs (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "uri-enumerator-file" = callPackage @@ -310111,7 +293598,6 @@ self: { ]; description = "uri-enumerator backend for the file scheme (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "uri-parse" = callPackage @@ -310128,8 +293614,6 @@ self: { testHaskellDepends = [ base data-default hspec lens ]; description = "A simple library for parsing and generating URIs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uri-template" = callPackage @@ -310144,9 +293628,7 @@ self: { executableHaskellDepends = [ base ]; description = "URI template library for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "main"; - broken = true; }) {}; "uri-templater" = callPackage @@ -310170,8 +293652,6 @@ self: { ]; description = "Parsing & Quasiquoting for RFC 6570 URI Templates"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "url" = callPackage @@ -310206,8 +293686,6 @@ self: { ]; description = "Memory efficient url type and parser"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "url-decoders" = callPackage @@ -310230,8 +293708,6 @@ self: { benchmarkHaskellDepends = [ criterion http-types rerebase ]; description = "Decoders for URL-encoding (aka Percent-encoding)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "url-generic" = callPackage @@ -310245,8 +293721,6 @@ self: { libraryHaskellDepends = [ base mtl syb ]; description = "Parse/format generic key/value URLs from record data types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "url-slug" = callPackage @@ -310279,9 +293753,7 @@ self: { ]; description = "Parallel link checker"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "urlcheck"; - broken = true; }) {}; "urldecode" = callPackage @@ -310295,9 +293767,7 @@ self: { executableHaskellDepends = [ base network ]; description = "Decode percent-encoded strings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "urldecode"; - broken = true; }) {}; "urldisp-happstack" = callPackage @@ -310309,8 +293779,6 @@ self: { libraryHaskellDepends = [ base bytestring happstack-server mtl ]; description = "Simple, declarative, expressive URL routing -- on happstack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "urlencoded" = callPackage @@ -310326,8 +293794,6 @@ self: { testHaskellDepends = [ base network network-uri QuickCheck ]; description = "Generate or process x-www-urlencoded data"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "urlpath" = callPackage @@ -310347,7 +293813,6 @@ self: { ]; description = "Painfully simple URL deployment"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "urn" = callPackage @@ -310360,8 +293825,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Universal Resource Names"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "urn-random" = callPackage @@ -310378,8 +293841,6 @@ self: { ]; description = "A package for updatable discrete distributions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "urxml" = callPackage @@ -310397,9 +293858,7 @@ self: { ]; description = "XML parser-printer supporting Ur/Web syntax extensions"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "urxml"; - broken = true; }) {}; "usa-holidays" = callPackage @@ -310426,7 +293885,6 @@ self: { ]; description = "Communicate with USB devices"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "usb-enumerator" = callPackage @@ -310443,7 +293901,6 @@ self: { ]; description = "Iteratee enumerators for the usb package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "usb-hid" = callPackage @@ -310457,7 +293914,6 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring usb ]; description = "Parser and request Library for USB HIDs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "usb-id-database" = callPackage @@ -310477,7 +293933,6 @@ self: { ]; description = "A database of USB identifiers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "usb-iteratee" = callPackage @@ -310494,7 +293949,6 @@ self: { ]; description = "Iteratee enumerators for the usb package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "usb-safe" = callPackage @@ -310511,7 +293965,6 @@ self: { ]; description = "Type-safe communication with USB devices"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "useragents" = callPackage @@ -310526,9 +293979,7 @@ self: { executableHaskellDepends = [ base random-fu text ]; description = "A collection of user agents"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "random-user-agent"; - broken = true; }) {}; "userid" = callPackage @@ -310544,8 +293995,6 @@ self: { ]; description = "The UserId type and useful instances for web development"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "users" = callPackage @@ -310600,8 +294049,6 @@ self: { ]; description = "A persistent backend for the users package"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "users-postgresql-simple" = callPackage @@ -310649,9 +294096,7 @@ self: { ]; description = "A pragmatic time and date library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.sternenseemann ]; - broken = true; }) {}; "utf" = callPackage @@ -310665,7 +294110,6 @@ self: { benchmarkHaskellDepends = [ base gauge ]; description = "UTF-8"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "utf8-conversions" = callPackage @@ -310684,8 +294128,6 @@ self: { ]; description = "A string conversion library that assumes utf8"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "utf8-env" = callPackage @@ -310725,9 +294167,7 @@ self: { libraryHaskellDepends = [ base utf8-string ]; description = "Variants of Prelude and System.IO with UTF8 text I/O operations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "utf8-test"; - broken = true; }) {}; "utf8-string" = callPackage @@ -310757,8 +294197,6 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Constant-space UTF8 validator for ByteStrings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "util" = callPackage @@ -310772,8 +294210,6 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "util-exception" = callPackage @@ -310787,7 +294223,6 @@ self: { libraryHaskellDepends = [ base basic control lifted-base-tf util ]; description = "Exceptional utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "util-logict" = callPackage @@ -310801,8 +294236,6 @@ self: { benchmarkHaskellDepends = [ base gauge logict ]; description = "See README for more info"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "util-plus" = callPackage @@ -310819,8 +294252,6 @@ self: { testHaskellDepends = [ base containers HTF QuickCheck ]; description = "A collection of commonly used utils"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "util-primitive" = callPackage @@ -310834,8 +294265,6 @@ self: { libraryHaskellDepends = [ base primitive ]; description = "Primitive memory-related utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "util-primitive-control" = callPackage @@ -310852,7 +294281,6 @@ self: { testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; description = "Utilities for stateful primitive types and types based on them"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "util-universe" = callPackage @@ -310871,7 +294299,6 @@ self: { testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; description = "Utilities for universal types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "utility-ht" = callPackage @@ -310900,8 +294327,6 @@ self: { libraryHaskellDepends = [ ansi-terminal base ]; description = "Utilities for compiler construction: core functionality"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uu-cco-examples" = callPackage @@ -310915,7 +294340,6 @@ self: { executableHaskellDepends = [ base uu-cco uuagc uuagc-cabal ]; description = "Utilities for compiler construction: example programs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "uu-cco-hut-parsing" = callPackage @@ -310927,7 +294351,6 @@ self: { libraryHaskellDepends = [ base uu-cco uulib ]; description = "Utilities for compiler construction: Feedback wrapper around parser in uulib"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "uu-cco-uu-parsinglib" = callPackage @@ -310939,7 +294362,6 @@ self: { libraryHaskellDepends = [ base ListLike uu-cco uu-parsinglib ]; description = "Utilities for compiler construction: Feedback wrapper around parser in uu-parsinglib"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "uu-interleaved" = callPackage @@ -310971,7 +294393,6 @@ self: { ]; description = "Parse command line options using uu-interleave and uu-parsinglib"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "uu-parsinglib" = callPackage @@ -311040,9 +294461,7 @@ self: { ]; description = "Attribute Grammar System of Universiteit Utrecht"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "uuagc-bootstrap"; - broken = true; }) {}; "uuagc-cabal" = callPackage @@ -311069,8 +294488,6 @@ self: { libraryHaskellDepends = [ base diagrams-lib SVGFonts ]; description = "Utility for drawing attribute grammar pictures with the diagrams package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uuagd" = callPackage @@ -311123,8 +294540,6 @@ self: { libraryHaskellDepends = [ aeson base text uuid ]; description = "Aeson types for UUID instances"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uuid-bytes" = callPackage @@ -311163,7 +294578,6 @@ self: { ]; description = "Reversable and secure encoding of object ids as uuids"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "uuid-le" = callPackage @@ -311250,9 +294664,7 @@ self: { testHaskellDepends = [ base Cabal HUnit text ]; description = "Tweak .cabal files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.berberman ]; - broken = true; }) {}; "uvector" = callPackage @@ -311266,8 +294678,6 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Fast unboxed arrays with a flexible interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uvector-algorithms" = callPackage @@ -311279,7 +294689,6 @@ self: { libraryHaskellDepends = [ base uvector ]; description = "Efficient algorithms for uvector unboxed arrays"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "uxadt" = callPackage @@ -311291,8 +294700,6 @@ self: { libraryHaskellDepends = [ base json MissingH mtl ]; description = "Cross-language extensible representation for algebraic data type instances"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "uzbl-with-source" = callPackage @@ -311320,7 +294727,6 @@ self: { ]; description = "interface to Video For Linux Two (V4L2)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "v4l2-examples" = callPackage @@ -311334,7 +294740,6 @@ self: { executableHaskellDepends = [ base GLUT v4l2 ]; description = "video for linux two examples"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vabal" = callPackage @@ -311356,7 +294761,6 @@ self: { testHaskellDepends = [ base process ]; description = "the cabal companion"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "vabal"; }) {}; @@ -311375,8 +294779,6 @@ self: { testHaskellDepends = [ base Cabal containers ]; description = "Core algorithms and datatypes used by vabal"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vacuum" = callPackage @@ -311388,8 +294790,6 @@ self: { libraryHaskellDepends = [ array base containers ghc-prim ]; description = "Graph representation of the GHC heap"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vacuum-cairo" = callPackage @@ -311406,7 +294806,6 @@ self: { ]; description = "Visualize live Haskell data structures using vacuum, graphviz and cairo"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vacuum-graphviz" = callPackage @@ -311418,7 +294817,6 @@ self: { libraryHaskellDepends = [ base filepath graphviz vacuum ]; description = "A library for transforming vacuum graphs into GraphViz output"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "vacuum-opengl" = callPackage @@ -311438,7 +294836,6 @@ self: { ]; description = "Visualize live Haskell data structures using vacuum, graphviz and OpenGL"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; mainProgram = "vacuum-opengl-server"; }) {}; @@ -311451,7 +294848,6 @@ self: { libraryHaskellDepends = [ base containers hubigraph vacuum ]; description = "Visualize Haskell data structures using vacuum and Ubigraph"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vado" = callPackage @@ -311475,8 +294871,6 @@ self: { ]; description = "Runs commands on remote machines using ssh"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "valid" = callPackage @@ -311488,7 +294882,6 @@ self: { libraryHaskellDepends = [ base util ]; description = "Type isomorphic to `Either` with `Applicative` instance which combines errors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "valid-names" = callPackage @@ -311500,8 +294893,6 @@ self: { libraryHaskellDepends = [ base containers MonadRandom ]; description = "Valid operator/module characters"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "valida" = callPackage @@ -311594,8 +294985,6 @@ self: { testHaskellDepends = [ base ]; description = "Type-level constraints on strings and other input"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "validation" = callPackage @@ -311664,8 +295053,6 @@ self: { ]; description = "A nice way to define field validations in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "validationt" = callPackage @@ -311696,8 +295083,6 @@ self: { testHaskellDepends = [ base containers doctest Glob hspec text ]; description = "Composable validations for your Haskell data types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "validity" = callPackage @@ -311776,8 +295161,6 @@ self: { libraryHaskellDepends = [ base network-uri validity ]; description = "Validity instances for URI"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "validity-path" = callPackage @@ -311910,8 +295293,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A library for generating values without having to thread state"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vampire" = callPackage @@ -311934,9 +295315,7 @@ self: { ]; description = "Analyze and visualize expression trees"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "vampire"; - broken = true; }) {}; "var" = callPackage @@ -311954,8 +295333,6 @@ self: { benchmarkHaskellDepends = [ array base criterion deepseq ]; description = "Mutable variables and tuples"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "var-monad" = callPackage @@ -311985,8 +295362,6 @@ self: { ]; description = "Process mpileup output to identify significant differences"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "variable-media-field" = callPackage @@ -311998,8 +295373,6 @@ self: { libraryHaskellDepends = [ base text ]; description = "Simple type for representing one of several media types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "variable-media-field-dhall" = callPackage @@ -312011,7 +295384,6 @@ self: { libraryHaskellDepends = [ base dhall variable-media-field ]; description = "Dhall instances for VF"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "variable-media-field-optics" = callPackage @@ -312023,7 +295395,6 @@ self: { libraryHaskellDepends = [ base optics-th variable-media-field ]; description = "Optics for variable-media-field"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "variable-precision" = callPackage @@ -312040,7 +295411,6 @@ self: { ]; description = "variable-precision floating point"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "variables" = callPackage @@ -312053,8 +295423,6 @@ self: { testHaskellDepends = [ base hspec mtl QuickCheck stm ]; description = "Monads with variables, without deep magic"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "variadic" = callPackage @@ -312072,8 +295440,6 @@ self: { benchmarkHaskellDepends = [ base criterion mmorph mtl ]; description = "Abstractions for working with variadic functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "variadic-function" = callPackage @@ -312100,8 +295466,6 @@ self: { ]; description = "nominal value with possible variations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "varying" = callPackage @@ -312159,8 +295523,6 @@ self: { ]; description = "Client library for HashiCorp's Vault tool (via HTTP API)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vault-tool-server" = callPackage @@ -312180,7 +295542,6 @@ self: { ]; description = "Utility library for spawning a HashiCorp Vault process"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "vault-trans" = callPackage @@ -312197,7 +295558,6 @@ self: { ]; description = "A monad transformer for vault-tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vaultaire-common" = callPackage @@ -312221,7 +295581,6 @@ self: { ]; description = "Common types and instances for Vaultaire"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vcache" = callPackage @@ -312238,8 +295597,6 @@ self: { ]; description = "semi-transparent persistence for Haskell using LMDB, STM"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vcache-trie" = callPackage @@ -312255,7 +295612,6 @@ self: { ]; description = "patricia tries modeled above VCache"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vcard" = callPackage @@ -312269,7 +295625,6 @@ self: { ]; description = "A library for parsing/printing vCards from/to various formats"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; }) {}; "vcatt" = callPackage @@ -312284,9 +295639,7 @@ self: { executableHaskellDepends = [ base shelly text ]; description = "Recursively check that a directory is under version control"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "vcatt"; - broken = true; }) {}; "vcd" = callPackage @@ -312314,8 +295667,6 @@ self: { ]; description = "A package to parse VCF files inspired in similar python libraries"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vcs-ignore" = callPackage @@ -312387,7 +295738,6 @@ self: { ]; description = "GUI library for source code management systems"; license = "GPL"; - hydraPlatforms = lib.platforms.none; }) {}; "vcswrapper" = callPackage @@ -312411,9 +295761,7 @@ self: { ]; description = "Wrapper for source code management systems"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "vcswrapper"; - broken = true; }) {}; "vec" = callPackage @@ -312484,8 +295832,6 @@ self: { libraryHaskellDepends = [ base random ]; description = "A low-dimensional linear algebra library, operating on the Floating typeclass"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vect-floating-accelerate" = callPackage @@ -312499,7 +295845,6 @@ self: { libraryHaskellDepends = [ accelerate base vect-floating ]; description = "Accelerate instances for vect-floating types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vect-opengl" = callPackage @@ -312511,8 +295856,6 @@ self: { libraryHaskellDepends = [ base OpenGL vect ]; description = "OpenGL support for the `vect' low-dimensional linear algebra library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector" = callPackage @@ -312645,8 +295988,6 @@ self: { testHaskellDepends = [ base directory QuickCheck random ]; description = "ByteStrings as type synonyms of Storable Vectors of Word8s"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector-circular" = callPackage @@ -312665,8 +296006,6 @@ self: { testHaskellDepends = [ base hedgehog hedgehog-classes ]; description = "circular vectors"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector-clock" = callPackage @@ -312686,8 +296025,6 @@ self: { ]; description = "Vector clocks for versioning message flows"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector-conduit" = callPackage @@ -312706,8 +296043,6 @@ self: { ]; description = "Conduit utilities for vectors"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector-doublezip" = callPackage @@ -312719,8 +296054,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Some special functions to work with Vector (with zip)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector-endian" = callPackage @@ -312735,8 +296068,6 @@ self: { doHaddock = false; description = "Storable vectors with cpu-independent representation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector-extras" = callPackage @@ -312782,8 +296113,6 @@ self: { ]; description = "A binding to the fftw library for one-dimensional vectors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) fftw;}; "vector-functorlazy" = callPackage @@ -312798,8 +296127,6 @@ self: { ]; description = "vectors that perform the fmap operation in constant time"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector-hashtables" = callPackage @@ -312833,8 +296160,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "A type-safe library for vectors whose elements can be of any type, or any type satisfying some constraints"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector-instances" = callPackage @@ -312863,7 +296188,6 @@ self: { ]; description = "Instances of the Data.Collections classes for Data.Vector.*"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vector-mmap" = callPackage @@ -312905,8 +296229,6 @@ self: { doHaddock = false; description = "Fast and flexible quicksort implementation for mutable vectors"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector-random" = callPackage @@ -312920,8 +296242,6 @@ self: { libraryHaskellDepends = [ base mersenne-random-pure64 vector ]; description = "Generate vectors filled with high quality pseudorandom numbers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector-read-instances" = callPackage @@ -312933,8 +296253,6 @@ self: { libraryHaskellDepends = [ base vector ]; description = "(deprecated) Read instances for 'Data.Vector'"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector-rotcev" = callPackage @@ -312958,8 +296276,6 @@ self: { libraryHaskellDepends = [ base random vector ]; description = "Algorithms for vector shuffling"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector-sized" = callPackage @@ -313003,8 +296319,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "vector-space operations for finite maps using Data.Map"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector-space-opengl" = callPackage @@ -313022,8 +296336,6 @@ self: { ]; description = "Instances of vector-space classes for OpenGL types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector-space-points" = callPackage @@ -313037,8 +296349,6 @@ self: { libraryHaskellDepends = [ base vector-space ]; description = "A type for points, as distinct from vectors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector-split" = callPackage @@ -313066,8 +296376,6 @@ self: { libraryHaskellDepends = [ base primitive vector ]; description = "Statically checked sizes on Data.Vector"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vector-strategies" = callPackage @@ -313107,7 +296415,6 @@ self: { ]; description = "Text implementation based on unboxed char vector"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "vector-th-unbox" = callPackage @@ -313149,7 +296456,6 @@ self: { ]; description = "GIS Vector Tiles, as defined by Mapbox"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vega-view" = callPackage @@ -313169,9 +296475,7 @@ self: { ]; description = "Easily view Vega or Vega-Lite visualizations"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "vegaview"; - broken = true; }) {}; "velma" = callPackage @@ -313191,9 +296495,7 @@ self: { testHaskellDepends = [ base Cabal filepath hspec text ]; description = "Automatically add files to exposed-modules and other-modules"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "velma"; - broken = true; }) {}; "venzone" = callPackage @@ -313222,7 +296524,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "ASCII platform-adventure game"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "venzone"; }) {}; @@ -313235,8 +296536,6 @@ self: { libraryHaskellDepends = [ base regex-pcre ]; description = "Regular expressions made easy"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "verbosity" = callPackage @@ -313269,9 +296568,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "Validation framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "tutorial"; - broken = true; }) {}; "verdict-json" = callPackage @@ -313292,7 +296589,6 @@ self: { ]; description = "JSON instances and JSON Schema for verdict"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "verifiable-expressions" = callPackage @@ -313311,7 +296607,6 @@ self: { description = "An intermediate language for Hoare logic style verification"; license = lib.licenses.asl20; badPlatforms = [ "aarch64-linux" ]; - hydraPlatforms = lib.platforms.none; }) {}; "verify" = callPackage @@ -313334,9 +296629,7 @@ self: { ]; description = "A new Haskeleton package"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; mainProgram = "verify"; - broken = true; }) {}; "verilog" = callPackage @@ -313349,8 +296642,6 @@ self: { libraryToolDepends = [ alex happy ]; description = "Verilog preprocessor, parser, and AST"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "verismith" = callPackage @@ -313387,7 +296678,6 @@ self: { benchmarkHaskellDepends = [ base criterion lens ]; description = "Random verilog generation and simulator testing"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "verismith"; }) {}; @@ -313406,8 +296696,6 @@ self: { ]; description = "Small alternative prelude"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "version-natural" = callPackage @@ -313442,8 +296730,6 @@ self: { testHaskellDepends = [ aeson base bytestring hspec ]; description = "Type-safe data versioning"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "versioning-servant" = callPackage @@ -313464,7 +296750,6 @@ self: { ]; description = "Servant combinators for the versioning library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "versions" = callPackage @@ -313512,7 +296797,6 @@ self: { doHaddock = false; description = "Functor-parametric containers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vflow-types" = callPackage @@ -313533,7 +296817,6 @@ self: { ]; description = "types for ingesting vflow data with aeson"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vformat" = callPackage @@ -313554,8 +296837,6 @@ self: { ]; description = "A Python str.format() like formatter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vformat-aeson" = callPackage @@ -313578,7 +296859,6 @@ self: { ]; description = "Extend vformat to Aeson datatypes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vformat-time" = callPackage @@ -313593,7 +296873,6 @@ self: { testHaskellDepends = [ base time vformat ]; description = "Extend vformat to time datatypes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vfr-waypoints" = callPackage @@ -313615,7 +296894,6 @@ self: { ]; description = "VFR waypoints, as published in the AIP (ERSA)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "vfr-waypoints"; }) {}; @@ -313650,9 +296928,7 @@ self: { ]; description = "A pager for grep"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "vgrep"; - broken = true; }) {}; "vhd" = callPackage @@ -313678,8 +296954,6 @@ self: { ]; description = "Provides functions to inspect and manipulate virtual hard disk (VHD) files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vhdl" = callPackage @@ -313691,8 +296965,6 @@ self: { libraryHaskellDepends = [ base mtl pretty regex-posix ]; description = "VHDL AST and pretty printer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vicinity" = callPackage @@ -313708,8 +296980,6 @@ self: { base containers doctest QuickCheck quickcheck-classes ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "viewprof" = callPackage @@ -313728,9 +296998,7 @@ self: { ]; description = "Text-based interactive GHC .prof viewer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "viewprof"; - broken = true; }) {}; "views" = callPackage @@ -313742,8 +297010,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Views allow you to run a State monad on part of a state"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vigilance" = callPackage @@ -313784,7 +297050,6 @@ self: { ]; description = "An extensible dead-man's switch system"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "vimeta" = callPackage @@ -313811,7 +297076,6 @@ self: { ]; description = "Frontend for video metadata tagging tools"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "vimeta"; }) {}; @@ -313842,9 +297106,7 @@ self: { ]; description = "An MPD client with vim-like key bindings"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "vimus"; - broken = true; }) {inherit (pkgs) ncurses;}; "vintage-basic" = callPackage @@ -313865,9 +297127,7 @@ self: { testHaskellDepends = [ base ]; description = "Interpreter for microcomputer-era BASIC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "vintbas"; - broken = true; }) {}; "vinyl" = callPackage @@ -313907,7 +297167,6 @@ self: { ]; description = "Convert plain records to vinyl (and vice versa), generically"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vinyl-gl" = callPackage @@ -313945,8 +297204,6 @@ self: { testHaskellDepends = [ base hlint ]; description = "Provide json instances automagically to vinyl types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vinyl-loeb" = callPackage @@ -313969,8 +297226,6 @@ self: { libraryHaskellDepends = [ base vinyl ]; description = "Syntax sugar for vinyl records using overloaded labels"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vinyl-operational" = callPackage @@ -313985,7 +297240,6 @@ self: { ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vinyl-plus" = callPackage @@ -314005,8 +297259,6 @@ self: { testHaskellDepends = [ base doctest vinyl ]; description = "Vinyl records utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vinyl-utils" = callPackage @@ -314018,8 +297270,6 @@ self: { libraryHaskellDepends = [ base contravariant transformers vinyl ]; description = "Utilities for vinyl"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vinyl-vectors" = callPackage @@ -314038,8 +297288,6 @@ self: { ]; description = "Vectors for vinyl vectors"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "virthualenv" = callPackage @@ -314059,9 +297307,7 @@ self: { ]; description = "Virtual Haskell Environment builder"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "virthualenv"; - broken = true; }) {}; "visibility" = callPackage @@ -314073,8 +297319,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Simple computation of visibility polygons"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vision" = callPackage @@ -314096,7 +297340,6 @@ self: { ]; description = "An XMMS2 client"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "vision"; }) {}; @@ -314125,7 +297368,6 @@ self: { ]; description = "Visualize the graph-rewrite steps of a Haskell program"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "visual-graphrewrite"; }) {}; @@ -314145,9 +297387,7 @@ self: { ]; description = "Create a visual profile of a program's source code"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "visual-prof"; - broken = true; }) {}; "visualize-cbn" = callPackage @@ -314169,9 +297409,7 @@ self: { ]; description = "Visualize CBN reduction"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "visualize-cbn"; - broken = true; }) {}; "vitrea" = callPackage @@ -314183,8 +297421,6 @@ self: { libraryHaskellDepends = [ base mtl profunctors ]; description = "Profunctor optics via the profunctor representation theorem"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vivid" = callPackage @@ -314253,8 +297489,6 @@ self: { ]; description = "Amazon Route53 DNS service plugin for the aws package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vk-posix-pty" = callPackage @@ -314294,7 +297528,6 @@ self: { libraryHaskellDepends = [ base random vector vector-fftw ]; description = "Phase vocoder"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "vocoder-audio" = callPackage @@ -314313,7 +297546,6 @@ self: { ]; description = "Phase vocoder for conduit-audio"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "vocoder-conduit" = callPackage @@ -314335,7 +297567,6 @@ self: { ]; description = "Phase vocoder for Conduit"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "vocoder-dunai" = callPackage @@ -314357,7 +297588,6 @@ self: { ]; description = "Phase vocoder for Dunai and Rhine"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "voicebase" = callPackage @@ -314382,7 +297612,6 @@ self: { testHaskellDepends = [ aeson base hspec roundtrip-aeson ]; description = "Upload audio files to voicebase to get a transcription"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "voicebase"; }) {}; @@ -314409,7 +297638,6 @@ self: { ]; description = "Reading of Vorbis comments from Ogg Vorbis files"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "vowpal-utils" = callPackage @@ -314421,8 +297649,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Vowpal Wabbit utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "voyeur" = callPackage @@ -314434,8 +297660,6 @@ self: { libraryHaskellDepends = [ base bytestring process utf8-string ]; description = "Haskell bindings for libvoyeur"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vp-tree" = callPackage @@ -314476,7 +297700,6 @@ self: { testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; description = "Priority queue based on vector"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vrpn" = callPackage @@ -314519,8 +297742,6 @@ self: { ]; description = "Vector and Text utilities"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vte" = callPackage @@ -314538,8 +297759,6 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the VTE library"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) vte;}; "vtegtk3" = callPackage @@ -314557,8 +297776,6 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the VTE library"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) vte;}; "vty_5_35_1" = callPackage @@ -314641,8 +297858,6 @@ self: { ]; description = "Examples programs using the vty library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "vty-menu" = callPackage @@ -314656,9 +297871,7 @@ self: { libraryHaskellDepends = [ base vty ]; description = "A lib for displaying a menu and getting a selection using VTY"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "vty-menu"; - broken = true; }) {}; "vty-ui" = callPackage @@ -314680,9 +297893,7 @@ self: { executableHaskellDepends = [ base QuickCheck random text vty ]; description = "An interactive terminal user interface library for Vty"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "vty-ui-tests"; - broken = true; }) {}; "vty-ui-extras" = callPackage @@ -314694,7 +297905,6 @@ self: { libraryHaskellDepends = [ base regex-base regex-pcre vty vty-ui ]; description = "Extra vty-ui functionality not included in the core library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "vulkan" = callPackage @@ -314790,7 +298000,6 @@ self: { ]; description = "JSON wrangling"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wacom-daemon" = callPackage @@ -314814,8 +298023,6 @@ self: { ]; description = "Manage Wacom tablet settings profiles, including Intuos Pro ring modes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "waddle" = callPackage @@ -314838,8 +298045,6 @@ self: { ]; description = "DOOM WAD file utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wahsp" = callPackage @@ -314860,7 +298065,6 @@ self: { ]; description = "A haskell binding of the Web Audio API ala blank-canvas"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wai" = callPackage @@ -315061,7 +298265,6 @@ self: { testHaskellDepends = [ base hspec stm ]; description = "A web server for the development of WAI compliant web applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "wai-devel"; }) {}; @@ -315090,7 +298293,6 @@ self: { libraryHaskellDepends = [ base text wai yesod-routes ]; description = "Nice wrapper around yesod-routes for use with WAI"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "wai-enforce-https" = callPackage @@ -315204,7 +298406,6 @@ self: { ]; description = "Run CGI apps on WAI"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "wai-git-http" = callPackage @@ -315228,8 +298429,6 @@ self: { ]; description = "Git http-backend CGI App of WAI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-graceful" = callPackage @@ -315241,8 +298440,6 @@ self: { libraryHaskellDepends = [ base http-types mtl resourcet unix wai ]; description = "Graceful shutdown for WAI applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-handler-devel" = callPackage @@ -315263,8 +298460,6 @@ self: { executableHaskellDepends = [ cmdargs ]; description = "WAI server that automatically reloads code after modification. (deprecated)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-handler-fastcgi" = callPackage @@ -315277,8 +298472,6 @@ self: { librarySystemDepends = [ fcgi ]; description = "Wai handler to fastcgi"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) fcgi;}; "wai-handler-hal" = callPackage @@ -315303,7 +298496,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Wrap WAI applications to run on AWS Lambda"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wai-handler-launch" = callPackage @@ -315331,8 +298523,6 @@ self: { libraryHaskellDepends = [ base bytestring wai wai-extra ]; description = "Wai handler to SCGI (deprecated)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-handler-snap" = callPackage @@ -315349,7 +298539,6 @@ self: { ]; description = "Web Application Interface handler using snap-server. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wai-handler-webkit" = callPackage @@ -315362,8 +298551,6 @@ self: { libraryPkgconfigDepends = [ QtWebKit ]; description = "Turn WAI applications into standalone GUIs using QtWebkit"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {QtWebKit = null;}; "wai-hastache" = callPackage @@ -315379,7 +298566,6 @@ self: { ]; description = "Nice wrapper around hastache for use with WAI"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "wai-hmac-auth" = callPackage @@ -315402,8 +298588,6 @@ self: { ]; description = "hmac authentication tools for WAI apps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-http2-extra" = callPackage @@ -315445,9 +298629,7 @@ self: { ]; description = "Haskell Webapps on AWS Lambda"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "wai-lambda"; - broken = true; }) {}; "wai-lens" = callPackage @@ -315463,8 +298645,6 @@ self: { ]; description = "Lenses for WAI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-lite" = callPackage @@ -315480,8 +298660,6 @@ self: { ]; description = "DEPCRECATED (use package \"simple\" instead) A minimalist web framework for WAI web applications"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-log" = callPackage @@ -315498,7 +298676,6 @@ self: { ]; description = "A logging middleware for WAI applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wai-logger" = callPackage @@ -315539,9 +298716,7 @@ self: { ]; description = "Buffer requets before logging them"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "wai-logger-prefork" = callPackage @@ -315558,8 +298733,6 @@ self: { ]; description = "A logging system for preforked WAI apps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-make-assets" = callPackage @@ -315629,9 +298802,7 @@ self: { ]; description = "Authentication middleware that secures WAI application"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "wai-auth"; - broken = true; }) {}; "wai-middleware-bearer" = callPackage @@ -315674,7 +298845,6 @@ self: { ]; description = "WAI middleware for brotli compression"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wai-middleware-brotli-server"; }) {}; @@ -315697,7 +298867,6 @@ self: { ]; description = "Caching middleware for WAI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wai-middleware-cache-redis" = callPackage @@ -315716,7 +298885,6 @@ self: { ]; description = "Redis backend for wai-middleware-cache"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wai-middleware-caching" = callPackage @@ -315779,8 +298947,6 @@ self: { ]; description = "Wai error catching middleware"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-middleware-clacks" = callPackage @@ -315824,7 +298990,6 @@ self: { ]; description = "Wai Middleware for Consul"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "wai-middleware-content-type" = callPackage @@ -315857,7 +299022,6 @@ self: { ]; description = "Route to different middlewares based on the incoming Accept header"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wai-middleware-crowd" = callPackage @@ -315889,9 +299053,7 @@ self: { ]; description = "Middleware and utilities for using Atlassian Crowd authentication"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "wai-crowd"; - broken = true; }) {}; "wai-middleware-delegate" = callPackage @@ -315919,8 +299081,6 @@ self: { ]; description = "WAI middleware that delegates handling of requests"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-middleware-delegate_0_1_4_0" = callPackage @@ -315951,7 +299111,6 @@ self: { description = "WAI middleware that delegates handling of requests"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-middleware-etag" = callPackage @@ -315969,8 +299128,6 @@ self: { ]; description = "WAI ETag middleware for static files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-middleware-gunzip" = callPackage @@ -315997,8 +299154,6 @@ self: { libraryHaskellDepends = [ base bytestring http-types wai ]; description = "cors and addHeaders for WAI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-middleware-hmac" = callPackage @@ -316041,8 +299196,6 @@ self: { ]; description = "WAI HMAC Authentication Middleware Client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-middleware-json-errors" = callPackage @@ -316101,8 +299254,6 @@ self: { ]; description = "WAI middleware for preprocessing static files"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-middleware-prometheus" = callPackage @@ -316136,7 +299287,6 @@ self: { ]; description = "Middleware that communicates to Rollbar"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wai-middleware-route" = callPackage @@ -316157,7 +299307,6 @@ self: { ]; description = "Wai dispatch middleware"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wai-middleware-slack-verify" = callPackage @@ -316224,8 +299373,6 @@ self: { ]; description = "WAI middleware that serves requests to static files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-middleware-static-embedded" = callPackage @@ -316267,7 +299414,6 @@ self: { ]; description = "WAI Middleware for Request Throttling"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wai-middleware-travisci" = callPackage @@ -316286,8 +299432,6 @@ self: { ]; description = "WAI middleware for authenticating webhook payloads from Travis CI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-middleware-validation" = callPackage @@ -316309,8 +299453,6 @@ self: { ]; description = "WAI Middleware to validate the request and response bodies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-middleware-verbs" = callPackage @@ -316330,7 +299472,6 @@ self: { ]; description = "Route Wai middlewares based on HTTP verbs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wai-predicates" = callPackage @@ -316353,8 +299494,6 @@ self: { ]; description = "WAI request predicates"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-problem-details" = callPackage @@ -316375,8 +299514,6 @@ self: { ]; description = "Problem details middleware for WAI"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-rate-limit" = callPackage @@ -316409,8 +299546,6 @@ self: { ]; description = "See README for more info"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-rate-limit-redis" = callPackage @@ -316428,8 +299563,6 @@ self: { ]; description = "Redis backend for rate limiting as WAI middleware"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-request-spec" = callPackage @@ -316448,8 +299581,6 @@ self: { ]; description = "Declarative request parsing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-responsible" = callPackage @@ -316461,8 +299592,6 @@ self: { libraryHaskellDepends = [ base bytestring http-types wai ]; description = "Response interface for WAI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-route" = callPackage @@ -316485,7 +299614,6 @@ self: { ]; description = "WAI middleware for path-based request routing with captures"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "wai-router" = callPackage @@ -316497,8 +299625,6 @@ self: { libraryHaskellDepends = [ base text wai ]; description = "Provides basic routing on URL paths for WAI"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-routes" = callPackage @@ -316523,8 +299649,6 @@ self: { ]; description = "Typesafe URLs for Wai applications"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-routing" = callPackage @@ -316551,7 +299675,6 @@ self: { ]; description = "Declarative routing for WAI"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "wai-saml2" = callPackage @@ -316578,8 +299701,6 @@ self: { ]; description = "SAML2 assertion validation as WAI middleware"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-secure-cookies" = callPackage @@ -316602,9 +299723,7 @@ self: { wai-extra ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "waicookie-genkey"; - broken = true; }) {}; "wai-session" = callPackage @@ -316638,7 +299757,6 @@ self: { ]; description = "An alternative session middleware for WAI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wai-session-clientsession" = callPackage @@ -316675,8 +299793,6 @@ self: { ]; description = "MySQL backed Wai session store"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-session-postgresql" = callPackage @@ -316699,8 +299815,6 @@ self: { ]; description = "PostgreSQL backed Wai session store"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-session-redis" = callPackage @@ -316726,9 +299840,7 @@ self: { ]; description = "Simple Redis backed wai-session backend"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wai-session-redis-example-exe"; - broken = true; }) {}; "wai-session-tokyocabinet" = callPackage @@ -316745,7 +299857,6 @@ self: { ]; description = "Session store based on Tokyo Cabinet"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "wai-slack-middleware" = callPackage @@ -316777,8 +299888,6 @@ self: { ]; description = "A simple cache for serving static files in a WAI middleware"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-static-pages" = callPackage @@ -316822,7 +299931,6 @@ self: { ]; description = "Thrift transport layer for Wai"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "wai-throttler" = callPackage @@ -316838,8 +299946,6 @@ self: { ]; description = "Wai middleware for request throttling"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wai-token-bucket-ratelimiter" = callPackage @@ -316877,7 +299983,6 @@ self: { transformers wai wai-websockets websockets ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wai-util" = callPackage @@ -316941,8 +300046,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A wrapping library for waitfree computation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "waitra" = callPackage @@ -316967,8 +300070,6 @@ self: { ]; description = "A very simple Wai router"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wakame" = callPackage @@ -316987,8 +300088,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Functions to manipulate records"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "waldo" = callPackage @@ -317021,7 +300120,6 @@ self: { ]; description = "A generator of comics based on some ascertainable data about the requester"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wallpaper" = callPackage @@ -317043,8 +300141,6 @@ self: { testHaskellDepends = [ base ]; description = "A library and executable for creating wallpaper, frieze, and rosette patterns"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "warc" = callPackage @@ -317071,9 +300167,7 @@ self: { ]; description = "A parser for the Web Archive (WARC) format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "warc-export"; - broken = true; }) {}; "warp" = callPackage @@ -317159,9 +300253,7 @@ self: { executableHaskellDepends = [ base ]; description = "Dynamic configurable warp HTTP server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "warpd"; - broken = true; }) {}; "warp-grpc" = callPackage @@ -317179,7 +300271,6 @@ self: { ]; description = "A minimal gRPC server on top of Warp"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "warp-quic" = callPackage @@ -317193,7 +300284,6 @@ self: { ]; description = "Warp based on QUIC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "warp-static" = callPackage @@ -317214,9 +300304,7 @@ self: { ]; description = "Static file server based on Warp and wai-app-static (deprecated)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "warp"; - broken = true; }) {}; "warp-systemd" = callPackage @@ -317233,9 +300321,7 @@ self: { executableHaskellDepends = [ base http-types wai warp ]; description = "Socket activation and other systemd integration for the Warp web server (WAI)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "warp-systemd-example"; - broken = true; }) {}; "warp-tls" = callPackage @@ -317310,7 +300396,6 @@ self: { ]; description = "Warp and Wai Library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "wasm" = callPackage @@ -317332,8 +300417,6 @@ self: { ]; description = "WebAssembly Language Toolkit and Interpreter"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "watchdog" = callPackage @@ -317361,8 +300444,6 @@ self: { ]; description = "Opinionated filesystem watcher"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "watchit" = callPackage @@ -317391,9 +300472,7 @@ self: { ]; description = "File change watching utility"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "watchit"; - broken = true; }) {}; "wavconvert" = callPackage @@ -317445,8 +300524,6 @@ self: { ]; description = "Wavefront OBJ loader"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wavefront-obj" = callPackage @@ -317465,8 +300542,6 @@ self: { testHaskellDepends = [ base hspec linear ]; description = "Wavefront .obj file loader"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wavesurfer" = callPackage @@ -317483,7 +300558,6 @@ self: { ]; description = "Parse WaveSurfer files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wavy" = callPackage @@ -317504,7 +300578,6 @@ self: { ]; description = "Process WAVE files in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wcwidth" = callPackage @@ -317554,8 +300627,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Mutable bag backed by weak pointers to each item"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "weather-api" = callPackage @@ -317572,8 +300643,6 @@ self: { ]; description = "Weather API implemented in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "weatherhs" = callPackage @@ -317595,7 +300664,6 @@ self: { ]; description = "Weather and related data info command-line tool"; license = lib.licenses.gpl3Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "weatherhs"; }) {}; @@ -317620,8 +300688,6 @@ self: { libraryHaskellDepends = [ base text ]; description = "Simple functions for CSS"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "web-encodings" = callPackage @@ -317639,8 +300705,6 @@ self: { ]; description = "Encapsulate multiple web encoding in a single package. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "web-fpco" = callPackage @@ -317676,7 +300740,6 @@ self: { testHaskellDepends = [ base bytestring HUnit network-uri text ]; description = "Composable, reversible, efficient web routing using invertible invariants and bijections"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "web-mongrel2" = callPackage @@ -317695,7 +300758,6 @@ self: { ]; description = "Bindings for the Mongrel2 web server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "web-output" = callPackage @@ -317714,8 +300776,6 @@ self: { ]; description = "Library to present content to an user via their browser"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "web-page" = callPackage @@ -317735,8 +300795,6 @@ self: { ]; description = "Monoidally construct web pages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "web-plugins" = callPackage @@ -317752,8 +300810,6 @@ self: { ]; description = "dynamic plugin system for web applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "web-push" = callPackage @@ -317775,8 +300831,6 @@ self: { ]; description = "Send messages using Web Push protocol"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "web-rep" = callPackage @@ -317804,7 +300858,6 @@ self: { ]; description = "representations of a web page"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "web-rep-example"; }) {}; @@ -317898,8 +300951,6 @@ self: { libraryHaskellDepends = [ base path-pieces template-haskell text ]; description = "Define data types and parse/build functions for web-routes via a quasi-quoted DSL (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "web-routes-regular" = callPackage @@ -317911,7 +300962,6 @@ self: { libraryHaskellDepends = [ base parsec regular text web-routes ]; description = "portable, type-safe URL routing"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "web-routes-th" = callPackage @@ -317939,8 +300989,6 @@ self: { libraryHaskellDepends = [ base transformers web-routes ]; description = "Extends web-routes with some transformers instances for RouteT"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "web-routes-wai" = callPackage @@ -317975,7 +301023,6 @@ self: { benchmarkHaskellDepends = [ base criterion text ]; description = "simple routing library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "web3" = callPackage @@ -317990,7 +301037,6 @@ self: { ]; description = "Haskell Web3 library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "web3-bignum" = callPackage @@ -318011,7 +301057,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Fixed size big integers for Haskell Web3 library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "web3-crypto" = callPackage @@ -318035,7 +301080,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Cryptograhical primitives for Haskell Web3 library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "web3-ethereum" = callPackage @@ -318066,7 +301110,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Ethereum support for Haskell Web3 library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "web3-ipfs" = callPackage @@ -318084,8 +301127,6 @@ self: { ]; description = "IPFS support for Haskell Web3 library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "web3-polkadot" = callPackage @@ -318116,7 +301157,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Polkadot support for Haskell Web3 library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "web3-provider" = callPackage @@ -318133,7 +301173,6 @@ self: { ]; description = "Node connection provider for Haskell Web3 library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "web3-solidity" = callPackage @@ -318160,7 +301199,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Solidity language for Haskell Web3 library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "webapi" = callPackage @@ -318187,8 +301225,6 @@ self: { ]; description = "WAI based library for web api"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "webapp" = callPackage @@ -318211,8 +301247,6 @@ self: { ]; description = "Haskell web app framework based on WAI & Warp"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "webauthn" = callPackage @@ -318243,8 +301277,6 @@ self: { ]; description = "Relying party (server) implementation of the WebAuthn 2 specification"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "webby" = callPackage @@ -318271,8 +301303,6 @@ self: { ]; description = "A super-simple web server framework"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "webcloud" = callPackage @@ -318289,7 +301319,6 @@ self: { executableHaskellDepends = [ base optparse-applicative ]; description = "Turn an optparse-applicative program into a CGI program!"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "testcloud"; }) {}; @@ -318318,8 +301347,6 @@ self: { ]; description = "Webmachine inspired toolkit for building http applications and services"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "webcrank-dispatch" = callPackage @@ -318335,8 +301362,6 @@ self: { ]; description = "A simple request dispatcher"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "webcrank-wai" = callPackage @@ -318354,7 +301379,6 @@ self: { ]; description = "Build a WAI Application from Webcrank Resources"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "webdriver" = callPackage @@ -318401,8 +301425,6 @@ self: { ]; description = "Webdriver actions to assist with testing a webpage which uses Angular.Js"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "webdriver-snoy" = callPackage @@ -318429,8 +301451,6 @@ self: { testHaskellDepends = [ base parallel text ]; description = "a Haskell client for the Selenium WebDriver protocol (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "webdriver-w3c" = callPackage @@ -318466,7 +301486,6 @@ self: { ]; description = "Bindings to the WebDriver API"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "webex-teams-api" = callPackage @@ -318569,8 +301588,6 @@ self: { ]; description = "WebFinger client library"; license = lib.licenses.publicDomain; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "webgear-core" = callPackage @@ -318606,7 +301623,6 @@ self: { ]; description = "Composable, type-safe library to build HTTP API servers"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "webgear-server" = callPackage @@ -318632,7 +301648,6 @@ self: { ]; description = "Composable, type-safe library to build HTTP API servers"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; }) {}; "webidl" = callPackage @@ -318674,7 +301689,6 @@ self: { ]; description = "webfont generator"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "webify"; }) {}; @@ -318709,8 +301723,6 @@ self: { libraryPkgconfigDepends = [ webkit ]; description = "JavaScriptCore FFI from webkitgtk"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {webkit = null;}; "webkit2gtk3-javascriptcore" = callPackage @@ -318745,8 +301757,6 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the Webkit library"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) webkitgtk;}; "webkitgtk3-javascriptcore" = callPackage @@ -318782,8 +301792,6 @@ self: { ]; description = "Types and functions for working with Webmentions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "webp" = callPackage @@ -318843,7 +301851,6 @@ self: { ]; description = "HTTP server library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "webshow" = callPackage @@ -318863,9 +301870,7 @@ self: { ]; description = "Show programming language printed values in a web UI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "webshow"; - broken = true; }) {}; "websnap" = callPackage @@ -318957,7 +301962,6 @@ self: { ]; description = "Simple streaming RPC mechanism using WebSockets"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "websockets-simple" = callPackage @@ -318982,7 +301986,6 @@ self: { ]; description = "Composable websockets clients"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "websockets-simple-extra" = callPackage @@ -318993,7 +301996,6 @@ self: { sha256 = "1ckni1imxh4k1nxivvj9p1mffzvdmyjc20nas8b90dkkxblgnk1j"; libraryHaskellDepends = [ base mtl websockets-simple ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "websockets-snap" = callPackage @@ -319032,8 +302034,6 @@ self: { ]; description = "Functional reactive web framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wedding-announcement" = callPackage @@ -319061,9 +302061,7 @@ self: { executableHaskellDepends = [ array base containers random ]; description = "Wedged postcard generator"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "wedged"; - broken = true; }) {}; "weeder_2_2_0" = callPackage @@ -319205,9 +302203,7 @@ self: { ]; description = "A school-timetable problem-solver"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "weekdaze"; - broken = true; }) {}; "weierstrass-functions" = callPackage @@ -319224,7 +302220,6 @@ self: { testHaskellDepends = [ base gamma tasty tasty-hunit ]; description = "Weierstrass Elliptic Functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "weigh" = callPackage @@ -319270,7 +302265,6 @@ self: { libraryHaskellDepends = [ base mtl semiring-num transformers ]; description = "Writer monad which uses semiring constraint"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "weighted-regexp" = callPackage @@ -319285,8 +302279,6 @@ self: { libraryToolDepends = [ happy ]; description = "Weighted Regular Expression Matcher"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "weighted-search" = callPackage @@ -319335,8 +302327,6 @@ self: { ]; description = "Haskell web framework (because Scotty had trouble yodeling)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wembley" = callPackage @@ -319379,9 +302369,7 @@ self: { ]; description = "A game engine for playing werewolf within an arbitrary chat client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "werewolf"; - broken = true; }) {}; "werewolf-slack" = callPackage @@ -319401,7 +302389,6 @@ self: { ]; description = "A chat interface for playing werewolf in Slack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "werewolf-slack"; }) {}; @@ -319429,7 +302416,6 @@ self: { doHaddock = false; description = "WGPU"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wgpu-raw-hs" = callPackage @@ -319442,8 +302428,6 @@ self: { libraryPkgconfigDepends = [ SDL2 ]; description = "WGPU Raw"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) SDL2;}; "what4" = callPackage @@ -319487,7 +302471,6 @@ self: { ]; description = "Solver-agnostic symbolic values support for issuing queries"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "quickstart"; }) {}; @@ -319500,7 +302483,6 @@ self: { libraryHaskellDepends = [ base bson mongoDB mtl text Wheb ]; description = "MongoDB plugin for Wheb"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wheb-redis" = callPackage @@ -319512,7 +302494,6 @@ self: { libraryHaskellDepends = [ base bytestring hedis mtl text Wheb ]; description = "Redis connection for Wheb"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wheb-strapped" = callPackage @@ -319524,7 +302505,6 @@ self: { libraryHaskellDepends = [ base mtl StrappedTemplates text Wheb ]; description = "Strapped templates for Wheb"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "which" = callPackage @@ -319547,8 +302527,6 @@ self: { libraryHaskellDepends = [ base indents parsec ]; description = "Parser for the While language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "whim" = callPackage @@ -319567,9 +302545,7 @@ self: { ]; description = "A Haskell window manager"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "whim"; - broken = true; }) {}; "whiskers" = callPackage @@ -319581,8 +302557,6 @@ self: { libraryHaskellDepends = [ base parsec template-haskell ]; description = "Mustache templates with Template Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "whitespace" = callPackage @@ -319597,7 +302571,6 @@ self: { executableHaskellDepends = [ haskell98 random ]; description = "Whitespace, an esoteric programming language"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "wspace"; }) {}; @@ -319612,8 +302585,6 @@ self: { libraryHaskellDepends = [ base network network-uri split ]; description = "WHOIS client library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wholepixels" = callPackage @@ -319630,7 +302601,6 @@ self: { random-fu random-shuffle random-source relude temporary time ]; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; }) {}; "why3" = callPackage @@ -319649,8 +302619,6 @@ self: { libraryToolDepends = [ alex happy ]; description = "Haskell support for the Why3 input format"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wide-word" = callPackage @@ -319684,8 +302652,6 @@ self: { libraryHaskellDepends = [ base binary serialise wide-word ]; description = "Instances for wide-word"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wigner-symbols" = callPackage @@ -319734,8 +302700,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Scrape WikiCFP web site"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wikipedia4epub" = callPackage @@ -319755,7 +302719,6 @@ self: { ]; description = "Wikipedia EPUB E-Book construction from Firefox history"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wiki4e-mkepub-subtree"; }) {}; @@ -319776,8 +302739,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Dynamic key binding framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wild-bind-indicator" = callPackage @@ -319795,7 +302756,6 @@ self: { ]; description = "Graphical indicator for WildBind"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wild-bind-task-x11" = callPackage @@ -319812,7 +302772,6 @@ self: { testHaskellDepends = [ base ]; description = "Task to install and export everything you need to use WildBind in X11"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wild-bind-x11" = callPackage @@ -319834,7 +302793,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "X11-specific implementation for WildBind"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "willow" = callPackage @@ -319859,8 +302817,6 @@ self: { ]; description = "An implementation of the web Document Object Model, and its rendering"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wilton-ffi" = callPackage @@ -319901,8 +302857,6 @@ self: { librarySystemDepends = [ dnsapi ]; description = "Domain Name Service (DNS) lookup via the /dnsapi.dll standard library"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {dnsapi = null;}; "window-utils" = callPackage @@ -319917,8 +302871,6 @@ self: { ]; description = "OS window icon/name utilities"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "windowslive" = callPackage @@ -319936,8 +302888,6 @@ self: { ]; description = "Implements Windows Live Web Authentication and Delegated Authentication"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "winerror" = callPackage @@ -319949,8 +302899,6 @@ self: { doHaddock = false; description = "Error handling for foreign calls to the Windows API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "winery" = callPackage @@ -319988,7 +302936,6 @@ self: { ]; description = "A compact, well-typed seralisation format for Haskell values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "winery"; }) {}; @@ -320006,7 +302953,6 @@ self: { librarySystemDepends = [ kernel32 ws2_32 ]; description = "I/O library for Windows"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {kernel32 = null; ws2_32 = null;}; "wire-streams" = callPackage @@ -320032,7 +302978,6 @@ self: { ]; description = "Fast binary io-streams adapter"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wireguard-hs" = callPackage @@ -320051,8 +302996,6 @@ self: { ]; description = "API for Linux Kernel Wireguard device management"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wires" = callPackage @@ -320070,8 +303013,6 @@ self: { ]; description = "Functional reactive programming library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wiring" = callPackage @@ -320088,8 +303029,6 @@ self: { ]; description = "Wiring, promotion and demotion of types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wiringPi" = callPackage @@ -320263,9 +303202,7 @@ self: { executableHaskellDepends = [ base bytestring network unix ]; description = "A network server to show bottlenecks of GHC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "witty"; - broken = true; }) {}; "wizard" = callPackage @@ -320312,8 +303249,6 @@ self: { ]; description = "Parsec parsers and types for geographic data in well-known text (WKT) format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wkt-geom" = callPackage @@ -320337,8 +303272,6 @@ self: { ]; description = "A parser of WKT, WKB and eWKB"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wl-pprint" = callPackage @@ -320384,7 +303317,6 @@ self: { ]; description = "ANSI Terminal support with wl-pprint-extras"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wl-pprint-console" = callPackage @@ -320400,8 +303332,6 @@ self: { ]; description = "Wadler/Leijen pretty printer supporting colorful console output"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wl-pprint-extras" = callPackage @@ -320421,8 +303351,6 @@ self: { ]; description = "A free monad based on the Wadler/Leijen pretty printer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wl-pprint-terminfo" = callPackage @@ -320440,7 +303368,6 @@ self: { ]; description = "A color pretty printer with terminfo support"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wl-pprint-text" = callPackage @@ -320472,7 +303399,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Haskell bindings for the wlc library"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) wlc;}; "wobsurv" = callPackage @@ -320508,7 +303434,6 @@ self: { ]; description = "A simple and highly performant HTTP file server"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "wobsurv"; }) {}; @@ -320521,8 +303446,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Convenient typeclass for defining arbitrary-index enums"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "woffex" = callPackage @@ -320538,9 +303461,7 @@ self: { ]; description = "Web Open Font Format (WOFF) unpacker"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "woffex"; - broken = true; }) {}; "wol" = callPackage @@ -320555,9 +303476,7 @@ self: { executableHaskellDepends = [ base ]; description = "Send a Wake on LAN Magic Packet"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wol"; - broken = true; }) {}; "wolf" = callPackage @@ -320580,7 +303499,6 @@ self: { executableHaskellDepends = [ base optparse-generic ]; description = "Amazon Simple Workflow Service Wrapper"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "woot" = callPackage @@ -320611,7 +303529,6 @@ self: { testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; description = "Words of arbitrary size"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "word-array" = callPackage @@ -320720,8 +303637,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "24-bit word and int types for GHC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "word2vec-model" = callPackage @@ -320749,8 +303664,6 @@ self: { ]; description = "Reading word2vec binary models"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "word8" = callPackage @@ -320782,8 +303695,6 @@ self: { ]; description = "Word8 set"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wordchoice" = callPackage @@ -320812,9 +303723,7 @@ self: { benchmarkHaskellDepends = [ base criterion pandoc text ]; description = "Get word counts and distributions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wrd"; - broken = true; }) {}; "wordcloud" = callPackage @@ -320867,9 +303776,7 @@ self: { unordered-containers ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wordify-exe"; - broken = true; }) {}; "wordlist" = callPackage @@ -320888,9 +303795,7 @@ self: { ]; description = "Command-line tool to get random words"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "wordlist"; - broken = true; }) {}; "wordn" = callPackage @@ -320911,8 +303816,6 @@ self: { doHaddock = false; description = "arbitrary bit size Words"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wordpass" = callPackage @@ -320935,9 +303838,7 @@ self: { ]; description = "Dictionary-based password generator"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wordpass"; - broken = true; }) {}; "wordpress-auth" = callPackage @@ -320984,9 +303885,7 @@ self: { executableHaskellDepends = [ base containers fclabels ]; description = "A word search solver library and executable"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wordsearch"; - broken = true; }) {}; "wordsetdiff" = callPackage @@ -321020,9 +303919,7 @@ self: { executableHaskellDepends = [ base text ]; description = "A library for parsing a chat-based work hour reporting scheme"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "work-time"; - broken = true; }) {}; "workdays" = callPackage @@ -321035,8 +303932,6 @@ self: { testHaskellDepends = [ base containers doctest hspec ]; description = "Workday calculations"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "workflow-extra" = callPackage @@ -321059,7 +303954,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "Utilities (e.g. Googling the clipboard contents) for the `workflow` pacakge"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example-workflow-extra"; }) {}; @@ -321080,9 +303974,7 @@ self: { executableHaskellDepends = [ base ]; description = "a \"Desktop Workflow\" monad with Objective-C bindings"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "example"; - broken = true; }) {}; "workflow-pure" = callPackage @@ -321105,7 +303997,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "manipulate `workflow-types:Workflow`'s"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example-workflow-pure"; }) {}; @@ -321125,7 +304016,6 @@ self: { executableHaskellDepends = [ base ]; description = "Automate keyboard\\/mouse\\/clipboard\\/application interaction"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "example-workflow-types"; }) {}; @@ -321141,9 +304031,7 @@ self: { testHaskellDepends = [ base doctest hspec QuickCheck ]; description = "Automate keyboard/mouse/clipboard/application interaction"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "workflow-windows-example"; - broken = true; }) {}; "world-peace" = callPackage @@ -321176,8 +304064,6 @@ self: { ]; description = "LOGO-like Turtle graphics with a monadic interface"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wp-archivebot" = callPackage @@ -321193,9 +304079,7 @@ self: { ]; description = "Subscribe to a wiki's RSS feed and archive external links"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wp-archivebot"; - broken = true; }) {}; "wrap" = callPackage @@ -321264,7 +304148,6 @@ self: { ]; description = "Lazy wrapper to HaXML, HXT, TagSoup via custom XML tree structure"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "wrecker" = callPackage @@ -321303,7 +304186,6 @@ self: { ]; description = "An HTTP Performance Benchmarker"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wreck"; }) {}; @@ -321337,7 +304219,6 @@ self: { ]; description = "A web interface for Wrecker, the HTTP Performance Benchmarker"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wrecker-ui"; }) {}; @@ -321431,8 +304312,6 @@ self: { ]; description = "HTTP/HTTPS response process"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wreq-patchable" = callPackage @@ -321471,8 +304350,6 @@ self: { ]; description = "An easy-to-use HTTP client library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wreq-sb" = callPackage @@ -321510,8 +304387,6 @@ self: { ]; description = "An easy-to-use HTTP client library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wreq-stringless" = callPackage @@ -321540,7 +304415,6 @@ self: { ]; description = "Colour space transformations and metrics"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "write-buffer-core" = callPackage @@ -321601,7 +304475,6 @@ self: { ]; description = "WriteT and RWST monad transformers (Reexport with all dependencies)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "writer-cps-lens" = callPackage @@ -321618,8 +304491,6 @@ self: { ]; description = "Lens instances for the stricter CPS WriterT and RWST"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "writer-cps-monads-tf" = callPackage @@ -321635,8 +304506,6 @@ self: { ]; description = "MonadWriter orphan instances for writer-cps-transformers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "writer-cps-morph" = callPackage @@ -321650,8 +304519,6 @@ self: { libraryHaskellDepends = [ base mmorph writer-cps-transformers ]; description = "MFunctor instance for CPS style WriterT and RWST"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "writer-cps-mtl" = callPackage @@ -321758,8 +304625,6 @@ self: { ]; description = "WSDL parsing in Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wsedit" = callPackage @@ -321777,9 +304642,7 @@ self: { ]; description = "A small tool to list, add and remove webseeds from a torrent file"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "wsedit"; - broken = true; }) {}; "wshterm" = callPackage @@ -321820,7 +304683,6 @@ self: { executableHaskellDepends = [ base ]; description = "WSJT-X UDP protocol"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wsjtx-dump-udp"; }) {}; @@ -321840,8 +304702,6 @@ self: { testHaskellDepends = [ base bytestring envy hspec skews text ]; description = "A-little-higher-level WebSocket client"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wstunnel" = callPackage @@ -321885,8 +304745,6 @@ self: { libraryHaskellDepends = [ base old-locale time transformers ]; description = "Wojcik Tool Kit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wtk-gtk" = callPackage @@ -321902,7 +304760,6 @@ self: { ]; description = "GTK tools within Wojcik Tool Kit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wu-wei" = callPackage @@ -321918,7 +304775,6 @@ self: { ]; description = "Unimportant Unix adminstration tool"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "pao"; }) {}; @@ -321937,7 +304793,6 @@ self: { ]; description = "Code for the dice chain problem"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -321954,7 +304809,6 @@ self: { ]; description = "Basic objects and system code built on Wumpus-Core"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wumpus-core" = callPackage @@ -321968,8 +304822,6 @@ self: { libraryHaskellDepends = [ base containers time vector-space ]; description = "Pure Haskell PostScript and SVG generation"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "wumpus-drawing" = callPackage @@ -321985,7 +304837,6 @@ self: { ]; description = "High-level drawing objects built on Wumpus-Basic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wumpus-microprint" = callPackage @@ -322001,7 +304852,6 @@ self: { ]; description = "Microprints - \"greek-text\" pictures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wumpus-tree" = callPackage @@ -322018,7 +304868,6 @@ self: { ]; description = "Drawing trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wuss" = callPackage @@ -322062,7 +304911,6 @@ self: { libraryHaskellDepends = [ base stm time wxcore ]; description = "wxHaskell"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {}; "wxAsteroids" = callPackage @@ -322077,7 +304925,6 @@ self: { executableHaskellDepends = [ base directory random wx wxcore ]; description = "Try to avoid the asteroids with your space ship"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wxAsteroids"; }) {}; @@ -322093,7 +304940,6 @@ self: { executableHaskellDepends = [ base wx wxcore Yampa ]; description = "An implementation of Fruit using wxHaskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "paddle"; }) {}; @@ -322106,7 +304952,6 @@ self: { libraryHaskellDepends = [ base cubicbezier wx wxcore ]; description = "Simple zoomable canvas for wxHaskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "wxc" = callPackage @@ -322130,7 +304975,6 @@ self: { postPatch = "sed -i -e '/ldconfig inst_lib_dir/d' Setup.hs"; description = "wxHaskell C++ wrapper"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libGL; inherit (pkgs.xorg) libX11; inherit (pkgs) wxGTK;}; @@ -322151,7 +304995,6 @@ self: { libraryPkgconfigDepends = [ wxGTK ]; description = "wxHaskell core"; license = "unknown"; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) wxGTK;}; "wxdirect" = callPackage @@ -322169,9 +305012,7 @@ self: { ]; description = "helper tool for building wxHaskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wxdirect"; - broken = true; }) {}; "wxhnotepad" = callPackage @@ -322186,7 +305027,6 @@ self: { executableHaskellDepends = [ base wx wxcore ]; description = "An example of how to implement a basic notepad with wxHaskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wxhnotepad"; }) {}; @@ -322203,7 +305043,6 @@ self: { ]; description = "turtle like LOGO with wxHaskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "testTurtle"; }) {}; @@ -322244,7 +305083,6 @@ self: { ]; description = "An autoresponder for Dragon Go Server"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "wyvern"; }) {}; @@ -322262,8 +305100,6 @@ self: { ]; description = "A embedded DSL for manipulating DSP languages in Haskell"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "x11-xim" = callPackage @@ -322493,9 +305329,7 @@ self: { ]; description = "XChat"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "hsxchat"; - broken = true; }) {}; "xcp" = callPackage @@ -322511,8 +305345,6 @@ self: { ]; description = "Partial implementation of the XCP protocol with ethernet as transport layer"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xdcc" = callPackage @@ -322538,7 +305370,6 @@ self: { ]; description = "A wget-like utility for retrieving files from XDCC bots on IRC"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "xdcc"; }) {}; @@ -322572,7 +305403,6 @@ self: { ]; description = "XDG Basedir"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "xdg-desktop-entry" = callPackage @@ -322659,8 +305489,6 @@ self: { libraryHaskellDepends = [ base bytestring cereal mtl network ]; description = "Xenstore client access"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xfconf" = callPackage @@ -322681,8 +305509,6 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "FFI bindings to xfconf"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {libxfconf = null;}; "xformat" = callPackage @@ -322695,8 +305521,6 @@ self: { testHaskellDepends = [ base ]; description = "Extensible, type-safe formatting with scanf- and printf-like functions"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xgboost-haskell" = callPackage @@ -322729,8 +305553,6 @@ self: { ]; description = "Replaces/Enhances Text.Regex"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xhb" = callPackage @@ -322749,8 +305571,6 @@ self: { ]; description = "X Haskell Bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xhb-atom-cache" = callPackage @@ -322766,7 +305586,6 @@ self: { ]; description = "Atom cache for XHB"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "xhb-ewmh" = callPackage @@ -322783,7 +305602,6 @@ self: { ]; description = "EWMH utilities for XHB"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; }) {}; "xhtml_3000_3_0_0" = callPackage @@ -322826,8 +305644,6 @@ self: { executableHaskellDepends = [ base directory process ]; description = "The Lava system for Xilinx FPGA design with layout combinators"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xine" = callPackage @@ -322842,8 +305658,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Bindings to xine-lib"; license = "LGPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {libxine = null; xine = null;}; "xing-api" = callPackage @@ -322867,8 +305681,6 @@ self: { ]; description = "Wrapper for the XING API, v1"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xinput-conduit" = callPackage @@ -322908,8 +305720,6 @@ self: { benchmarkHaskellDepends = [ base random time vector ]; description = "Haskell bindings for libxkbcommon"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) libxkbcommon;}; "xkcd" = callPackage @@ -322929,9 +305739,7 @@ self: { ]; description = "Downloads the most recent xkcd comic"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "xkcd"; - broken = true; }) {}; "xleb" = callPackage @@ -322947,8 +305755,6 @@ self: { libraryHaskellDepends = [ base containers mtl xml ]; description = "A simple monadic language for parsing XML structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xls" = callPackage @@ -322970,9 +305776,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "Parse Microsoft Excel xls files (BIFF/Excel 97-2004)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "xls2csv"; - broken = true; }) {}; "xlsior" = callPackage @@ -322996,8 +305800,6 @@ self: { ]; description = "Streaming Excel file generation and parsing"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xlsx" = callPackage @@ -323047,8 +305849,6 @@ self: { testHaskellDepends = [ base ]; description = "Xlsx table cell value extraction utility"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xlsx-templater" = callPackage @@ -323067,9 +305867,7 @@ self: { ]; description = "Simple and incomplete Excel file templater"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "test"; - broken = true; }) {}; "xml" = callPackage @@ -323116,7 +305914,6 @@ self: { ]; description = "Parse XML catalog files (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "xml-conduit" = callPackage @@ -323160,8 +305957,6 @@ self: { ]; description = "Historical cursors & decoding on top of xml-conduit"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xml-conduit-microlens" = callPackage @@ -323201,8 +305996,6 @@ self: { ]; description = "Streaming XML parser based on conduits"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xml-conduit-selectors" = callPackage @@ -323222,8 +306015,6 @@ self: { ]; description = "jQuery-style CSS selectors for xml-conduit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xml-conduit-stylist" = callPackage @@ -323240,8 +306031,6 @@ self: { ]; description = "Bridge between xml-conduit/html-conduit and stylist"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xml-conduit-writer" = callPackage @@ -323281,7 +306070,6 @@ self: { ]; description = "Pure-Haskell utilities for dealing with XML with the enumerator package. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "xml-enumerator-combinators" = callPackage @@ -323299,7 +306087,6 @@ self: { ]; description = "Parser combinators for xml-enumerator and compatible XML parsers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "xml-extractors" = callPackage @@ -323360,8 +306147,6 @@ self: { ]; description = "Optics for xml-conduit and html-conduit"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xml-html-qq" = callPackage @@ -323426,7 +306211,6 @@ self: { ]; description = "Generate XML-isomorphic types"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "xml-lens" = callPackage @@ -323458,7 +306242,6 @@ self: { ]; description = "Monadic extensions to the xml package"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "xml-optics" = callPackage @@ -323484,8 +306267,6 @@ self: { libraryHaskellDepends = [ base HaXml parsec ]; description = "Parsing XML with Parsec"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xml-parser" = callPackage @@ -323536,7 +306317,6 @@ self: { libraryHaskellDepends = [ base bytestring papillon simple-pipe ]; description = "XML parser which uses simple-pipe"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "xml-prettify" = callPackage @@ -323551,9 +306331,7 @@ self: { executableHaskellDepends = [ base cmdargs unix ]; description = "Pretty print XML"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "xml-prettify"; - broken = true; }) {}; "xml-prettify-text" = callPackage @@ -323577,9 +306355,7 @@ self: { benchmarkHaskellDepends = [ base gauge protolude ]; description = "XML pretty printer"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "xml-prettify"; - broken = true; }) {}; "xml-push" = callPackage @@ -323600,7 +306376,6 @@ self: { ]; description = "Push XML from/to client to/from server over XMPP or HTTP"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "xml-query" = callPackage @@ -323612,8 +306387,6 @@ self: { libraryHaskellDepends = [ base free text ]; description = "A parser-agnostic declarative API for querying XML-documents"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xml-query-xml-conduit" = callPackage @@ -323630,7 +306403,6 @@ self: { ]; description = "A binding for the \"xml-query\" and \"xml-conduit\" libraries"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "xml-query-xml-types" = callPackage @@ -323654,8 +306426,6 @@ self: { ]; description = "An interpreter of \"xml-query\" queries for the \"xml-types\" documents"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xml-syntax" = callPackage @@ -323676,8 +306446,6 @@ self: { ]; description = "Parse XML from bytes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xml-to-json" = callPackage @@ -323699,9 +306467,7 @@ self: { executableHaskellDepends = [ base ]; description = "Library and command line tool for converting XML files to json"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "xml-to-json"; - broken = true; }) {}; "xml-to-json-fast" = callPackage @@ -323738,7 +306504,6 @@ self: { ]; description = "Typed XML encoding for an xml-conduit backend"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "xml-tydom-core" = callPackage @@ -323750,8 +306515,6 @@ self: { libraryHaskellDepends = [ base containers mtl QuickCheck text ]; description = "Typed XML encoding (core library)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xml-types" = callPackage @@ -323779,8 +306542,6 @@ self: { libraryPkgconfigDepends = [ xmlsec1 ]; description = "Verifying XML signatures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {xmlsec1 = null;}; "xml2html" = callPackage @@ -323821,9 +306582,7 @@ self: { ]; description = "translate xml to json"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "xml2json"; - broken = true; }) {}; "xml2x" = callPackage @@ -323842,7 +306601,6 @@ self: { ]; description = "Convert BLAST output in XML format to CSV or HTML"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "xml2x"; }) {}; @@ -323972,7 +306730,6 @@ self: { ]; description = "Show tv channels in the terminal"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "tv"; }) {}; @@ -323990,7 +306747,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "An XMMS2 client library"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "xmms2-client-glib" = callPackage @@ -324003,7 +306759,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "An XMMS2 client library — GLib integration"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "xmobar" = callPackage @@ -324104,9 +306859,7 @@ self: { ]; description = "A tiling window manager"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "xmonad"; - broken = true; }) {}; "xmonad-contrib" = callPackage @@ -324152,7 +306905,6 @@ self: { ]; description = "Third party extensions for xmonad"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "xmonad-contrib-gpl" = callPackage @@ -324164,8 +306916,6 @@ self: { libraryHaskellDepends = [ base mtl xmonad xmonad-contrib ]; description = "Third party extensions for xmonad"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xmonad-dbus" = callPackage @@ -324197,8 +306947,6 @@ self: { ]; description = "XMonad config entry point wrapper"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xmonad-eval" = callPackage @@ -324215,8 +306963,6 @@ self: { ]; description = "Module for evaluation Haskell expressions in the running xmonad instance"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xmonad-extras" = callPackage @@ -324250,8 +306996,6 @@ self: { libraryHaskellDepends = [ base gtk xmonad ]; description = "Workspaces screenshooting utility for XMonad"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xmonad-spotify" = callPackage @@ -324300,8 +307044,6 @@ self: { testHaskellDepends = [ base hspec xmonad ]; description = "Custom xmonad, which builds with stack or cabal"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xmonad-volume" = callPackage @@ -324331,8 +307073,6 @@ self: { libraryHaskellDepends = [ base magic mtl random unix xmonad ]; description = "xmonad wallpaper extension"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xmonad-windownames" = callPackage @@ -324348,8 +307088,6 @@ self: { ]; description = "A library to automatically put named windows into the DynamicLog"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xmpipe" = callPackage @@ -324366,7 +307104,6 @@ self: { ]; description = "XMPP implementation using simple-PIPE"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "xor" = callPackage @@ -324418,8 +307155,6 @@ self: { ]; description = "Simple implementation of xorshift+ PRNG"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xosd" = callPackage @@ -324449,7 +307184,6 @@ self: { ]; description = "text builder for xournal file format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "xournal-convert" = callPackage @@ -324471,7 +307205,6 @@ self: { executableHaskellDepends = [ base cmdargs ]; description = "convert utility for xoj files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "xournal-convert"; }) {}; @@ -324492,7 +307225,6 @@ self: { ]; description = "Xournal file parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "xournal-render" = callPackage @@ -324510,7 +307242,6 @@ self: { ]; description = "Xournal file renderer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "xournal-types" = callPackage @@ -324528,7 +307259,6 @@ self: { ]; description = "Data types for programs for xournal file format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "xpathdsv" = callPackage @@ -324584,7 +307314,6 @@ self: { ]; testToolDepends = [ tasty-discover ]; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "xrefcheck"; }) {}; @@ -324603,8 +307332,6 @@ self: { ]; description = "Cluster EST sequences"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xsd" = callPackage @@ -324620,8 +307347,6 @@ self: { ]; description = "XML Schema data structures"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xsha1" = callPackage @@ -324633,8 +307358,6 @@ self: { libraryHaskellDepends = [ base HUnit QuickCheck uniplate vector ]; description = "cryptanalysis of Blizzard's broken SHA-1 implementation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xslt" = callPackage @@ -324647,8 +307370,6 @@ self: { librarySystemDepends = [ xslt ]; description = "Binding to libxslt"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {xslt = null;}; "xss-sanitize" = callPackage @@ -324714,7 +307435,6 @@ self: { libraryHaskellDepends = [ base wx wxcore ]; description = "eXtended & Typed Controls for wxHaskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "xtest" = callPackage @@ -324759,8 +307479,6 @@ self: { ]; description = "A Haskell implementation of the xxHash algorithm"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "xxhash-ffi" = callPackage @@ -324797,9 +307515,7 @@ self: { ]; description = "#plaimi's all-encompassing bot"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "yolobot"; - broken = true; }) {}; "yabi" = callPackage @@ -324834,9 +307550,7 @@ self: { executableHaskellDepends = [ base containers mtl parsec ]; description = "Yet Another Brainfuck Interpreter"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "yabi"; - broken = true; }) {}; "yackage" = callPackage @@ -324860,8 +307574,6 @@ self: { ]; description = "Personal Hackage replacement for testing new packages"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yahoo-finance-api" = callPackage @@ -324883,8 +307595,6 @@ self: { ]; description = "Read quotes from Yahoo Finance API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yahoo-finance-conduit" = callPackage @@ -324900,8 +307610,6 @@ self: { ]; description = "Streaming aproach to the yahoo finance api"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yahoo-prices" = callPackage @@ -324919,8 +307627,6 @@ self: { doHaddock = false; description = "A wrapper around Yahoo API for downloading market data"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yahoo-web-search" = callPackage @@ -324932,8 +307638,6 @@ self: { libraryHaskellDepends = [ base HTTP network xml ]; description = "Yahoo Web Search Services"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yajl" = callPackage @@ -324947,8 +307651,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Bindings for YAJL, an event-based JSON implementation"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) yajl;}; "yajl-enumerator" = callPackage @@ -324964,7 +307666,6 @@ self: { ]; description = "Enumerator-based interface to YAJL, an event-based JSON implementation"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "yak" = callPackage @@ -324981,8 +307682,6 @@ self: { testHaskellDepends = [ base bytestring hspec ]; description = "A strongly typed IRC library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yall" = callPackage @@ -324994,8 +307693,6 @@ self: { libraryHaskellDepends = [ base categories transformers ]; description = "Lenses with a southern twang"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yam" = callPackage @@ -325029,7 +307726,6 @@ self: { ]; description = "A wrapper of servant"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yam-app" = callPackage @@ -325053,8 +307749,6 @@ self: { ]; description = "Yam App"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yam-config" = callPackage @@ -325071,8 +307765,6 @@ self: { ]; description = "Yam Configuation"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yam-datasource" = callPackage @@ -325090,7 +307782,6 @@ self: { ]; description = "Yam DataSource Middleware"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yam-job" = callPackage @@ -325101,7 +307792,6 @@ self: { sha256 = "0c6frqjf3xhd5bksaz6rvd6qbqbj15y441476dgj2asm2yd64895"; libraryHaskellDepends = [ base cron yam-app ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yam-logger" = callPackage @@ -325117,7 +307807,6 @@ self: { ]; description = "Yam Logger"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "yam-redis" = callPackage @@ -325134,7 +307823,6 @@ self: { ]; description = "Yam Redis Middleware"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yam-servant" = callPackage @@ -325151,7 +307839,6 @@ self: { servant-swagger-ui swagger2 text wai wai-extra warp yam-app yam-job ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yam-transaction" = callPackage @@ -325172,7 +307859,6 @@ self: { ]; description = "Yam transaction"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "yam-transaction-odbc" = callPackage @@ -325185,7 +307871,6 @@ self: { base containers persistent-odbc yam-app ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yam-transaction-postgresql" = callPackage @@ -325200,7 +307885,6 @@ self: { base containers persistent-postgresql unliftio-core yam-app ]; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yam-web" = callPackage @@ -325230,7 +307914,6 @@ self: { ]; description = "Yam Web"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "yam-web"; }) {}; @@ -325295,8 +307978,6 @@ self: { ]; description = "YAML parsing combinators for improved validation and error reporting"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yaml-config" = callPackage @@ -325318,8 +307999,6 @@ self: { ]; description = "Configuration management"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yaml-light" = callPackage @@ -325347,8 +308026,6 @@ self: { testHaskellDepends = [ base doctest ]; description = "Lens interface to yaml-light"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yaml-pretty-extras" = callPackage @@ -325361,8 +308038,6 @@ self: { testHaskellDepends = [ base hspec microlens-platform rio ]; description = "Extra functionality for pretty printing Yaml documents"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yaml-rpc" = callPackage @@ -325381,8 +308056,6 @@ self: { ]; description = "Simple library for network (HTTP REST-like) YAML RPC"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yaml-rpc-scotty" = callPackage @@ -325399,7 +308072,6 @@ self: { ]; description = "Scotty server backend for yaml-rpc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yaml-rpc-snap" = callPackage @@ -325416,7 +308088,6 @@ self: { ]; description = "Snap server backend for yaml-rpc"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yaml-streamly" = callPackage @@ -325450,7 +308121,6 @@ self: { ]; description = "Support for parsing and rendering YAML documents"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yaml-union" = callPackage @@ -325478,8 +308148,6 @@ self: { ]; description = "Read multiple yaml-files and override fields recursively"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yaml-unscrambler" = callPackage @@ -325506,8 +308174,6 @@ self: { ]; description = "Flexible declarative YAML parsing toolkit"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yaml2owl" = callPackage @@ -325544,9 +308210,7 @@ self: { ]; description = "Compares the keys from two yaml files"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "yamlkeysdiff"; - broken = true; }) {}; "yamlparse-applicative" = callPackage @@ -325598,9 +308262,7 @@ self: { ]; description = "Connects GLFW-b (GLFW 3+) with the Yampa FRP library"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "yampa-glfw-example"; - broken = true; }) {}; "yampa-gloss" = callPackage @@ -325614,8 +308276,6 @@ self: { libraryHaskellDepends = [ base gloss Yampa ]; description = "A GLOSS backend for Yampa"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yampa-glut" = callPackage @@ -325633,8 +308293,6 @@ self: { ]; description = "Connects Yampa and GLUT"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yampa-sdl2" = callPackage @@ -325653,8 +308311,6 @@ self: { ]; description = "Yampa and SDL2 made easy"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yampa-test" = callPackage @@ -325673,8 +308329,6 @@ self: { ]; description = "Testing library for Yampa"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yampa2048" = callPackage @@ -325688,9 +308342,7 @@ self: { executableHaskellDepends = [ base gloss random Yampa ]; description = "2048 game clone using Yampa/Gloss"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "yampa2048"; - broken = true; }) {}; "yandex-translate" = callPackage @@ -325708,8 +308360,6 @@ self: { ]; description = "Bindings to Yandex translate API"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yaop" = callPackage @@ -325723,8 +308373,6 @@ self: { libraryHaskellDepends = [ base mtl template-haskell ]; description = "Yet another option parser"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yap" = callPackage @@ -325762,8 +308410,6 @@ self: { ]; description = "Yet Another Parser Builder (YAPB)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yarl" = callPackage @@ -325837,9 +308483,7 @@ self: { ]; description = "Convert yarn.lock files to nix expressions"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.sternenseemann ]; - broken = true; }) {}; "yarr" = callPackage @@ -325856,8 +308500,6 @@ self: { ]; description = "Yet another array library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yarr-image-io" = callPackage @@ -325870,7 +308512,6 @@ self: { librarySystemDepends = [ libdevil ]; description = "Image IO for Yarr library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libdevil;}; "yasi" = callPackage @@ -325892,7 +308533,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "Yet another string interpolator"; license = lib.licenses.cc0; - hydraPlatforms = lib.platforms.none; }) {}; "yate" = callPackage @@ -325912,8 +308552,6 @@ self: { ]; description = "Yet Another Template Engine"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yavie" = callPackage @@ -325933,7 +308571,6 @@ self: { executableHaskellDepends = [ base Cabal directory process ]; description = "yet another visual editor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "yavie"; }) {}; @@ -325981,8 +308618,6 @@ self: { ]; description = "Test suites for `yaya`"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yaya-unsafe" = callPackage @@ -326014,8 +308649,6 @@ self: { ]; description = "Test suites for `yaya-unsafe`"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ycextra" = callPackage @@ -326030,7 +308663,6 @@ self: { ]; description = "Additional utilities to work with Yhc Core"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yeamer" = callPackage @@ -326066,7 +308698,6 @@ self: { ]; description = "Yesod-based server for interactive presentation slides"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; }) {}; "yeganesh" = callPackage @@ -326110,8 +308741,6 @@ self: { ]; description = "A Yeller Client For Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yes-precure5-command" = callPackage @@ -326145,7 +308774,6 @@ self: { libraryHaskellDepends = [ base yeshql-core yeshql-hdbc ]; description = "YesQL-style SQL database abstraction (legacy compatibility wrapper)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "yeshql-core" = callPackage @@ -326185,8 +308813,6 @@ self: { ]; description = "YesQL-style SQL database abstraction (HDBC backend)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yeshql-postgresql-simple" = callPackage @@ -326208,8 +308834,6 @@ self: { ]; description = "YesQL-style SQL database abstraction (postgresql-simple backend)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod" = callPackage @@ -326246,7 +308870,6 @@ self: { ]; description = "Alert messages for the Yesod framework"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yesod-angular" = callPackage @@ -326263,8 +308886,6 @@ self: { ]; description = "Angular JS integratoin"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-angular-ui" = callPackage @@ -326284,8 +308905,6 @@ self: { ]; description = "Angular Helpers"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-articles" = callPackage @@ -326308,7 +308927,6 @@ self: { ]; description = "Automatically generate article previews for a yesod site"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yesod-auth" = callPackage @@ -326359,8 +308977,6 @@ self: { ]; description = "An account authentication plugin for Yesod"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-auth-account-fork" = callPackage @@ -326385,8 +309001,6 @@ self: { ]; description = "An account authentication plugin for Yesod"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-auth-basic" = callPackage @@ -326420,8 +309034,6 @@ self: { ]; description = "BCrypt salted and hashed passwords in a database as auth for yesod"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-auth-bcryptdb" = callPackage @@ -326438,8 +309050,6 @@ self: { ]; description = "Authentication plugin for Yesod"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-auth-deskcom" = callPackage @@ -326461,8 +309071,6 @@ self: { ]; description = "Desk.com remote authentication support for Yesod apps."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-auth-fb" = callPackage @@ -326480,8 +309088,6 @@ self: { ]; description = "Authentication backend for Yesod using Facebook"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-auth-hashdb" = callPackage @@ -326525,8 +309131,6 @@ self: { ]; description = "An account authentication plugin for yesod with encrypted token transfer"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-auth-kerberos" = callPackage @@ -326544,8 +309148,6 @@ self: { ]; description = "Kerberos Authentication for Yesod"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-auth-ldap" = callPackage @@ -326562,7 +309164,6 @@ self: { ]; description = "LDAP Authentication for Yesod"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yesod-auth-ldap-mediocre" = callPackage @@ -326578,8 +309179,6 @@ self: { ]; description = "Very simlple LDAP auth for yesod"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-auth-ldap-native" = callPackage @@ -326597,8 +309196,6 @@ self: { testHaskellDepends = [ base ]; description = "Yesod LDAP authentication plugin"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-auth-lti13" = callPackage @@ -326648,8 +309245,6 @@ self: { ]; description = "A plugin for Yesod to provide email-only authentication"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-auth-oauth" = callPackage @@ -326722,8 +309317,6 @@ self: { ]; description = "Provides PAM authentication module"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-auth-simple" = callPackage @@ -326782,8 +309375,6 @@ self: { ]; description = "Authentication plugin for Yesod using smbclient"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-auth-zendesk" = callPackage @@ -326802,8 +309393,6 @@ self: { ]; description = "Zendesk remote authentication support for Yesod apps"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-autoreload" = callPackage @@ -326870,8 +309459,6 @@ self: { ]; description = "Bootstrap widgets for yesod"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-colonnade" = callPackage @@ -326890,7 +309477,6 @@ self: { ]; description = "Helper functions for using yesod with colonnade"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yesod-comments" = callPackage @@ -326911,8 +309497,6 @@ self: { ]; description = "A generic comments interface for a Yesod application"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-content-pdf" = callPackage @@ -326934,8 +309518,6 @@ self: { ]; description = "PDF Content Type for Yesod"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-continuations" = callPackage @@ -326954,7 +309536,6 @@ self: { ]; description = "Continuations for Yesod"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "yesodContinuationsTest"; }) {}; @@ -327010,8 +309591,6 @@ self: { ]; description = "Generic administrative CRUD operations as a Yesod subsite"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-crud-persist" = callPackage @@ -327030,8 +309609,6 @@ self: { ]; description = "Flexible CRUD subsite usable with Yesod and Persistent"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-csp" = callPackage @@ -327053,8 +309630,6 @@ self: { ]; description = "Add CSP headers to Yesod apps"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-datatables" = callPackage @@ -327081,8 +309656,6 @@ self: { ]; description = "Yesod plugin for DataTables (jQuery grid plugin)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-default" = callPackage @@ -327120,9 +309693,7 @@ self: { ]; description = "DSL for generating Yesod subsite to manage an RDBMS;"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "yesod-dsl"; - broken = true; }) {}; "yesod-elements" = callPackage @@ -327174,7 +309745,6 @@ self: { executableSystemDepends = [ sqlite ]; description = "Example programs using the Yesod Web Framework. (deprecated)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) sqlite;}; "yesod-fast-devel" = callPackage @@ -327196,9 +309766,7 @@ self: { ]; description = "Fast live-reloading for yesod applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "yesod-fast-devel"; - broken = true; }) {}; "yesod-fay" = callPackage @@ -327218,7 +309786,6 @@ self: { ]; description = "Utilities for using the Fay Haskell-to-JS compiler with Yesod"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "yesod-fb" = callPackage @@ -327256,8 +309823,6 @@ self: { ]; description = "Automatic filter generator for Yesod"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-form" = callPackage @@ -327334,8 +309899,6 @@ self: { ]; description = "Extension for Yesod web framework to handle JSON requests as applicative forms"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-form-multi" = callPackage @@ -327368,8 +309931,6 @@ self: { ]; description = "Various rich-text WYSIWYG editors for Yesod forms"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-gitrepo" = callPackage @@ -327402,8 +309963,6 @@ self: { testHaskellDepends = [ base process template-haskell yesod-core ]; description = "A subsite for displaying git information"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-goodies" = callPackage @@ -327422,8 +309981,6 @@ self: { ]; description = "A collection of various small helpers useful in any yesod application"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-ip" = callPackage @@ -327442,8 +309999,6 @@ self: { ]; description = "Code for using the ip package with yesod"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-job-queue" = callPackage @@ -327465,8 +310020,6 @@ self: { testHaskellDepends = [ base ]; description = "Background jobs library for Yesod"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-json" = callPackage @@ -327495,8 +310048,6 @@ self: { ]; description = "Logging bridge between Yesod and Katip"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-links" = callPackage @@ -327510,8 +310061,6 @@ self: { libraryHaskellDepends = [ base text yesod-core ]; description = "A typeclass which simplifies creating link widgets throughout your site"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-lucid" = callPackage @@ -327523,8 +310072,6 @@ self: { libraryHaskellDepends = [ base lucid monads-tf text yesod-core ]; description = "Lucid support for Yesod"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-mangopay" = callPackage @@ -327544,7 +310091,6 @@ self: { ]; description = "Yesod library for MangoPay API access"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yesod-markdown" = callPackage @@ -327606,8 +310152,6 @@ self: { ]; description = "A middleware for building CSP headers on the fly"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-newsfeed" = callPackage @@ -327659,8 +310203,6 @@ self: { libraryHaskellDepends = [ base template-haskell yesod ]; description = "Pagination for Yesod sites"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-pagination" = callPackage @@ -327679,8 +310221,6 @@ self: { ]; description = "Pagination in Yesod"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-paginator" = callPackage @@ -327717,7 +310257,6 @@ self: { ]; description = "Yesod plugin to use PayPal with the paypal-rest-client library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "yesod-persistent" = callPackage @@ -327808,7 +310347,6 @@ self: { ]; description = "Meta package for Yesod (deprecated)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "yesod-pnotify" = callPackage @@ -327829,9 +310367,7 @@ self: { ]; description = "Yet another getMessage/setMessage using pnotify jquery plugins"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "sample"; - broken = true; }) {}; "yesod-pure" = callPackage @@ -327843,8 +310379,6 @@ self: { libraryHaskellDepends = [ base fast-logger text yesod yesod-core ]; description = "Yesod in pure Haskell: no Template Haskell or QuasiQuotes (deprecated)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-purescript" = callPackage @@ -327864,7 +310398,6 @@ self: { ]; description = "PureScript integration for Yesod"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "yesod-raml" = callPackage @@ -327888,8 +310421,6 @@ self: { ]; description = "RAML style route definitions for Yesod"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-raml-bin" = callPackage @@ -327912,7 +310443,6 @@ self: { ]; description = "The raml helper executable"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "yesod-raml-bin"; }) {}; @@ -327930,7 +310460,6 @@ self: { ]; description = "A html documentation generator library for RAML"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "yesod-raml-mock" = callPackage @@ -327954,7 +310483,6 @@ self: { ]; description = "A mock-handler generator library from RAML"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "yesod-recaptcha" = callPackage @@ -327973,8 +310501,6 @@ self: { ]; description = "Dead simple support for reCAPTCHA on Yesod applications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-recaptcha2" = callPackage @@ -328011,8 +310537,6 @@ self: { ]; description = "Efficient routing for Yesod. (deprecated)"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-routes-flow" = callPackage @@ -328051,7 +310575,6 @@ self: { ]; description = "generate TypeScript routes for Yesod"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "yesod-rst" = callPackage @@ -328068,8 +310591,6 @@ self: { ]; description = "Tools for using reStructuredText (RST) in a yesod application"; license = "GPL"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-s3" = callPackage @@ -328086,8 +310607,6 @@ self: { ]; description = "Simple Helper Library for using Amazon's Simple Storage Service (S3) with Yesod"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-sass" = callPackage @@ -328104,8 +310623,6 @@ self: { ]; description = "A simple quasiquoter to include sass code in yesod"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-session-redis" = callPackage @@ -328123,7 +310640,6 @@ self: { ]; description = "Redis-Powered Sessions for Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yesod-sitemap" = callPackage @@ -328198,8 +310714,6 @@ self: { ]; description = "Yesod generators for embedding AngularJs code into yesod-static at compile time"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-static-remote" = callPackage @@ -328216,8 +310730,6 @@ self: { ]; testHaskellDepends = [ base yesod-static ]; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-static-streamly" = callPackage @@ -328243,8 +310755,6 @@ self: { ]; description = "A streamly-based library providing performance-focused alternatives for functionality found in yesod-static"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-table" = callPackage @@ -328315,8 +310825,6 @@ self: { ]; description = "Utility functions for testing JSON web services written in Yesod"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-text-markdown" = callPackage @@ -328333,8 +310841,6 @@ self: { ]; description = "Yesod support for Text.Markdown."; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-tls" = callPackage @@ -328351,8 +310857,6 @@ self: { ]; description = "Provides main functions using warp-tls for yesod projects"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-transloadit" = callPackage @@ -328376,8 +310880,6 @@ self: { ]; description = "Transloadit support for Yesod"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yesod-vend" = callPackage @@ -328399,9 +310901,7 @@ self: { ]; description = "Simple CRUD classes for easy view creation for Yesod"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "vend-test-user"; - broken = true; }) {}; "yesod-websockets" = callPackage @@ -328449,7 +310949,6 @@ self: { testHaskellDepends = [ base ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yet-another-logger" = callPackage @@ -328497,8 +310996,6 @@ self: { testHaskellDepends = [ base cryptonite hspec QuickCheck ]; description = "Executable specifications of composable cryptographic protocols"; license = lib.licenses.agpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yhccore" = callPackage @@ -328510,8 +311007,6 @@ self: { libraryHaskellDepends = [ base containers mtl pretty uniplate ]; description = "Yhc's Internal Core language"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yhseq" = callPackage @@ -328530,9 +311025,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Calculation of YH sequence system"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "yhseq"; - broken = true; }) {}; "yi" = callPackage @@ -328555,7 +311048,6 @@ self: { ]; description = "Yi editor"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; mainProgram = "yi"; }) {}; @@ -328575,7 +311067,6 @@ self: { ]; description = "Add-ons to Yi, the Haskell-Scriptable Editor"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "yi-core" = callPackage @@ -328608,7 +311099,6 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq yi-rope ]; description = "Yi editor core library"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "yi-dynamic-configuration" = callPackage @@ -328625,7 +311115,6 @@ self: { ]; description = "Dynamic configuration support for Yi"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "yi-emacs-colours" = callPackage @@ -328637,7 +311126,6 @@ self: { libraryHaskellDepends = [ base containers split yi-language ]; description = "Simple mapping from colour names used in emacs to Color"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "yi-frontend-pango" = callPackage @@ -328657,7 +311145,6 @@ self: { ]; description = "Pango frontend for Yi editor"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "yi-frontend-vty" = callPackage @@ -328675,7 +311162,6 @@ self: { ]; description = "Vty frontend for Yi editor"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "yi-fuzzy-open" = callPackage @@ -328694,7 +311180,6 @@ self: { ]; description = "Fuzzy open plugin for yi"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "yi-gtk" = callPackage @@ -328722,7 +311207,6 @@ self: { ]; description = "Yi editor incremental reader"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "yi-keymap-cua" = callPackage @@ -328738,7 +311222,6 @@ self: { ]; description = "Cua keymap for Yi editor"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "yi-keymap-emacs" = callPackage @@ -328758,7 +311241,6 @@ self: { ]; description = "Emacs keymap for Yi editor"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "yi-keymap-vim" = callPackage @@ -328787,7 +311269,6 @@ self: { ]; description = "Vim keymap for Yi editor"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "yi-language" = callPackage @@ -328815,8 +311296,6 @@ self: { ]; description = "Collection of language-related Yi libraries"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yi-misc-modes" = callPackage @@ -328834,7 +311313,6 @@ self: { libraryToolDepends = [ alex ]; description = "Yi editor miscellaneous modes"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "yi-mode-haskell" = callPackage @@ -328852,7 +311330,6 @@ self: { libraryToolDepends = [ alex ]; description = "Yi editor haskell mode"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "yi-mode-javascript" = callPackage @@ -328873,7 +311350,6 @@ self: { libraryToolDepends = [ alex ]; description = "Yi editor javascript mode"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "yi-monokai" = callPackage @@ -328885,7 +311361,6 @@ self: { libraryHaskellDepends = [ base yi ]; description = "Monokai colour theme for the Yi text editor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yi-rope" = callPackage @@ -328925,7 +311400,6 @@ self: { ]; description = "Snippet support for yi"; license = lib.licenses.gpl2Only; - hydraPlatforms = lib.platforms.none; }) {}; "yi-solarized" = callPackage @@ -328937,7 +311411,6 @@ self: { libraryHaskellDepends = [ base yi ]; description = "Solarized colour theme for the Yi text editor"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "yi-spolsky" = callPackage @@ -328949,7 +311422,6 @@ self: { libraryHaskellDepends = [ base yi ]; description = "Spolsky colour theme for the Yi text editor"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "yi-vty" = callPackage @@ -328973,8 +311445,6 @@ self: { libraryHaskellDepends = [ base parsec process ]; description = "Haskell programming interface to Yices SMT solver"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yices-easy" = callPackage @@ -329048,7 +311518,6 @@ self: { executableHaskellDepends = [ hsConfigure ]; description = "CUI FTP client like 'ftp', 'ncftp'"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "yjftp"; }) {}; @@ -329063,7 +311532,6 @@ self: { libraryHaskellDepends = [ base directory ftphs mtl process unix ]; description = "CUI FTP client like 'ftp', 'ncftp'"; license = "GPL"; - hydraPlatforms = lib.platforms.none; mainProgram = "yjftp-ni"; }) {}; @@ -329116,8 +311584,6 @@ self: { libraryHaskellDepends = [ base free mtl ]; description = "A truly tiny monadic parsing library"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yoda" = callPackage @@ -329129,8 +311595,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Parser combinators for young padawans"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yoga" = callPackage @@ -329163,7 +311627,6 @@ self: { ]; description = "Generic Programming with Disbanded Data Types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "york-lava" = callPackage @@ -329175,7 +311638,6 @@ self: { libraryHaskellDepends = [ base containers haskell98 ]; description = "A library for digital circuit description"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "youtube" = callPackage @@ -329192,9 +311654,7 @@ self: { executableHaskellDepends = [ base bytestring process utility-ht ]; description = "Upload video to YouTube via YouTube API"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; - broken = true; }) {}; "yql" = callPackage @@ -329221,7 +311681,6 @@ self: { ]; description = "A YQL engine to execute Open Data Tables"; license = lib.licenses.bsd2; - hydraPlatforms = lib.platforms.none; mainProgram = "yql"; }) {}; @@ -329243,9 +311702,7 @@ self: { ]; description = "Builds a static website from templates and data in YAML or CSV files"; license = lib.licenses.gpl2Plus; - hydraPlatforms = lib.platforms.none; mainProgram = "yst"; - broken = true; }) {}; "ytl" = callPackage @@ -329274,8 +311731,6 @@ self: { testHaskellDepends = [ base MonadRandom random yu-utils ]; description = "Auth module for Yu"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yu-core" = callPackage @@ -329288,8 +311743,6 @@ self: { testHaskellDepends = [ base blaze-markup hspec yu-utils ]; description = "The core of Yu"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yu-launch" = callPackage @@ -329305,7 +311758,6 @@ self: { ]; description = "The launcher for Yu"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "yu-launch"; }) {}; @@ -329324,9 +311776,7 @@ self: { ]; description = "Tool for Yu"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; mainProgram = "yu"; - broken = true; }) {}; "yu-utils" = callPackage @@ -329361,8 +311811,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Grids defined by layout hints and implemented on top of Yahoo grids"; license = "unknown"; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "yuuko" = callPackage @@ -329386,7 +311834,6 @@ self: { ]; description = "A transcendental HTML parser gently wrapping the HXT library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "yuuko"; }) {}; @@ -329438,8 +311885,6 @@ self: { ]; description = "Utilities for reading and writing Alteryx .yxdb files"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "z3" = callPackage @@ -329469,8 +311914,6 @@ self: { testHaskellDepends = [ base containers hspec z3 ]; description = "High-level assertion encoding to Z3 solver"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "z85" = callPackage @@ -329494,8 +311937,6 @@ self: { ]; description = "Implementation of the z85 binary codec"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zabt" = callPackage @@ -329508,8 +311949,6 @@ self: { testHaskellDepends = [ base tasty tasty-hspec ]; description = "Simple-minded abstract binding trees"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zalgo" = callPackage @@ -329539,9 +311978,7 @@ self: { ]; description = "A tool for checking how much work is done on group projects"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "zampolit"; - broken = true; }) {}; "zasni-gerna" = callPackage @@ -329553,7 +311990,6 @@ self: { libraryHaskellDepends = [ base papillon ]; description = "lojban parser (zasni gerna)"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "zbar" = callPackage @@ -329567,8 +312003,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "zbar bindings in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) zbar;}; "zcache" = callPackage @@ -329665,8 +312099,6 @@ self: { ]; description = "Zendesk API for Haskell programming language"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zenhack-prelude" = callPackage @@ -329699,9 +312131,7 @@ self: { ]; description = "An automated proof system for Haskell programs"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "zeno"; - broken = true; }) {}; "zeolite-lang" = callPackage @@ -329728,8 +312158,6 @@ self: { doHaddock = false; description = "Zeolite is a statically-typed, general-purpose programming language"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zephyr" = callPackage @@ -329762,9 +312190,7 @@ self: { testToolDepends = [ purescript ]; description = "Zephyr, tree-shaking for the PureScript language"; license = lib.licenses.mpl20; - hydraPlatforms = lib.platforms.none; mainProgram = "zephyr"; - broken = true; }) {}; "zephyr-copilot" = callPackage @@ -329783,7 +312209,6 @@ self: { testHaskellDepends = [ base directory process temporary ]; description = "Embedded programming in haskell using the Copilot stream DSL and Zephyr"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "zero" = callPackage @@ -329795,8 +312220,6 @@ self: { libraryHaskellDepends = [ base semigroups ]; description = "Semigroups with absorption"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zerobin" = callPackage @@ -329818,7 +312241,6 @@ self: { ]; description = "Post to 0bin services"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "zerobin"; }) {}; @@ -329838,8 +312260,6 @@ self: { ]; description = "Bindings to ZeroMQ 2.1.x"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) zeromq;}; "zeromq3-conduit" = callPackage @@ -329856,7 +312276,6 @@ self: { ]; description = "Conduit bindings for zeromq3-haskell"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; }) {}; "zeromq3-haskell" = callPackage @@ -329879,8 +312298,6 @@ self: { ]; description = "Bindings to ZeroMQ 3.x"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {inherit (pkgs) zeromq;}; "zeromq4-clone-pattern" = callPackage @@ -329907,9 +312324,7 @@ self: { ]; description = "Haskell implementation of the ZeroMQ clone pattern"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "zeromq4-clone-pattern-exe"; - broken = true; }) {}; "zeromq4-conduit" = callPackage @@ -329928,8 +312343,6 @@ self: { testHaskellDepends = [ base ]; description = "Conduit wrapper around zeromq4-haskell"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zeromq4-haskell" = callPackage @@ -329974,9 +312387,7 @@ self: { ]; description = "Haskell implementation of several ZeroMQ patterns"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "zeromq4-patterns-exe"; - broken = true; }) {}; "zeromq4-simple" = callPackage @@ -330015,7 +312426,6 @@ self: { ]; description = "ZeroTH - remove unnecessary TH dependencies"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "zeroth"; }) {}; @@ -330041,9 +312451,7 @@ self: { testHaskellDepends = [ base ]; description = "Command-line utility for working with zettelkast files"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "zettelkast"; - broken = true; }) {}; "zeugma" = callPackage @@ -330061,7 +312469,6 @@ self: { ]; description = "Polysemy effects for testing"; license = "BSD-2-Clause-Patent"; - hydraPlatforms = lib.platforms.none; }) {}; "zifter" = callPackage @@ -330085,8 +312492,6 @@ self: { ]; description = "zifter"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zifter-cabal" = callPackage @@ -330102,7 +312507,6 @@ self: { ]; description = "zifter-cabal"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "zifter-git" = callPackage @@ -330114,7 +312518,6 @@ self: { libraryHaskellDepends = [ base path process zifter ]; description = "zifter-git"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "zifter-google-java-format" = callPackage @@ -330130,7 +312533,6 @@ self: { ]; description = "zifter-google-java-format"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "zifter-hindent" = callPackage @@ -330146,7 +312548,6 @@ self: { ]; description = "zifter-hindent"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "zifter-hlint" = callPackage @@ -330161,7 +312562,6 @@ self: { ]; description = "zifter-hlint"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "zifter-stack" = callPackage @@ -330181,7 +312581,6 @@ self: { ]; description = "zifter-stack"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "zigbee-znet25" = callPackage @@ -330198,8 +312597,6 @@ self: { testHaskellDepends = [ base bytestring mtl QuickCheck random ]; description = "XBee ZNet 2.5 (ZigBee) wireless modem communications"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zigzag" = callPackage @@ -330372,8 +312769,6 @@ self: { ]; description = "Working with zip archives via conduits"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zip-stream" = callPackage @@ -330412,8 +312807,6 @@ self: { libraryHaskellDepends = [ base directory mtl process ]; description = "Create simple list editor interfaces"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zipkin" = callPackage @@ -330429,8 +312822,6 @@ self: { ]; description = "Zipkin-style request tracing monad"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zipper" = callPackage @@ -330442,7 +312833,6 @@ self: { libraryHaskellDepends = [ base multirec ]; description = "Generic zipper for families of recursive datatypes"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "zipper-extra" = callPackage @@ -330487,7 +312877,6 @@ self: { libraryHaskellDepends = [ base mtl yall ]; description = "A simple lens-based, generic, heterogenous, type-checked zipper library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ziptastic-client" = callPackage @@ -330509,7 +312898,6 @@ self: { ]; description = "A type-safe client for the Ziptastic API for doing forward and reverse geocoding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "ziptastic-core" = callPackage @@ -330529,8 +312917,6 @@ self: { ]; description = "Core Servant specification for the Ziptastic API for doing forward and reverse geocoding"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zlib" = callPackage @@ -330580,8 +312966,6 @@ self: { ]; description = "zlib compression bindings"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zlib-conduit" = callPackage @@ -330611,7 +312995,6 @@ self: { ]; description = "Enumerator interface for zlib compression"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; }) {}; "zlib-lens" = callPackage @@ -330623,8 +313006,6 @@ self: { libraryHaskellDepends = [ base bytestring profunctors zlib ]; description = "Lenses for zlib"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zm" = callPackage @@ -330647,7 +313028,6 @@ self: { ]; description = "Language independent, reproducible, absolute types"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "zmcat" = callPackage @@ -330662,7 +313042,6 @@ self: { executableHaskellDepends = [ base bytestring ]; description = "Command-line tool for ZeroMQ"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "zmcat"; }) {}; @@ -330692,8 +313071,6 @@ self: { ]; description = "Representing MIDI a simple score"; license = lib.licenses.lgpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zmqat" = callPackage @@ -330711,9 +313088,7 @@ self: { ]; description = "A socat-like tool for zeromq library"; license = "unknown"; - hydraPlatforms = lib.platforms.none; mainProgram = "zmqat"; - broken = true; }) {}; "zoneinfo" = callPackage @@ -330725,8 +313100,6 @@ self: { libraryHaskellDepends = [ base time ]; description = "ZoneInfo library"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zoom" = callPackage @@ -330745,9 +313118,7 @@ self: { ]; description = "A rake/thor-like task runner written in Haskell"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "zoom"; - broken = true; }) {}; "zoom-cache" = callPackage @@ -330779,7 +313150,6 @@ self: { ]; description = "A streamable, seekable, zoomable cache file format"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "zoom-cache"; }) {}; @@ -330797,7 +313167,6 @@ self: { ]; description = "Library for zoom-cache PCM audio codecs"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; }) {}; "zoom-cache-sndfile" = callPackage @@ -330817,7 +313186,6 @@ self: { ]; description = "Tools for generating zoom-cache-pcm files"; license = lib.licenses.lgpl21Only; - hydraPlatforms = lib.platforms.none; mainProgram = "zoom-cache-sndfile"; }) {}; @@ -330830,8 +313198,6 @@ self: { libraryHaskellDepends = [ base lens stm ]; description = "Zoom (~ Functor) and pairing (~ Applicative) for mutable references"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zoovisitor" = callPackage @@ -330914,8 +313280,6 @@ self: { ]; description = "Zero-Suppressed and Reduced Decision Diagrams"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zsh-battery" = callPackage @@ -330929,9 +313293,7 @@ self: { executableHaskellDepends = [ base directory filepath mtl ]; description = "Ascii bars representing battery status"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "zsh-battery"; - broken = true; }) {}; "zstd" = callPackage @@ -330966,8 +313328,6 @@ self: { testHaskellDepends = [ base containers mtl multiset ]; description = "Automated theorem prover for the Zsyntax biochemical calculus"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "ztail" = callPackage @@ -330986,9 +313346,7 @@ self: { ]; description = "Multi-file, colored, filtered log tailer"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; mainProgram = "ztail"; - broken = true; }) {}; "ztar" = callPackage @@ -331012,8 +313370,6 @@ self: { ]; description = "Creating and extracting arbitrary archives"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zuramaru" = callPackage @@ -331052,7 +313408,6 @@ self: { testToolDepends = [ tasty-discover ]; description = "A lisp processor, An inline-lisp, in Haskell"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "maru"; }) {}; @@ -331077,9 +313432,7 @@ self: { testHaskellDepends = [ aeson base bytestring tasty tasty-hunit ]; description = "A zuul client library"; license = lib.licenses.asl20; - hydraPlatforms = lib.platforms.none; mainProgram = "zuul-cli"; - broken = true; }) {}; "zxcvbn-c" = callPackage @@ -331109,8 +313462,6 @@ self: { ]; description = "Password strength estimation based on zxcvbn"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zxcvbn-hs" = callPackage @@ -331166,8 +313517,6 @@ self: { ]; description = "Haskell language binding for the Zydis library, a x86/x86-64 disassembler"; license = lib.licenses.gpl3Only; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "zyre2" = callPackage @@ -331190,9 +313539,7 @@ self: { testHaskellDepends = [ base bytestring containers inline-c text ]; description = "Haskell zyre bindings for reliable group messaging over local area networks"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; mainProgram = "zyre-example-exe"; - broken = true; }) {inherit (pkgs) czmq; zyre = null;}; } From 868fac2a1dde1ad728bbf4aca6e061f96efee6e6 Mon Sep 17 00:00:00 2001 From: natsukium Date: Wed, 23 Aug 2023 16:16:56 +0900 Subject: [PATCH 033/346] python310Packages.viennarna: rename from ViennaRNA --- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 8d15f5979d5c..f88372d64173 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -377,6 +377,7 @@ mapAliases ({ uproot3 = throw "uproot3 has been removed, use uproot instead"; # added 2022-12-13 uproot3-methods = throw "uproot3-methods has been removed"; # added 2022-12-13 validictory = throw "validictory has been removed, since it abandoned"; # added 2023-07-07 + ViennaRNA = viennarna; # added 2023-08-23 virtual-display = throw "virtual-display has been renamed to PyVirtualDisplay"; # added 2023-01-07 Wand = wand; # added 2022-11-13 wasm = throw "wasm has been removed because it no longer builds and is unmaintained"; # added 2023-05-20 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 28f2118aa08b..1645cfef7374 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13422,7 +13422,7 @@ self: super: with self; { vidstab = callPackage ../development/python-modules/vidstab { }; - ViennaRNA = toPythonModule pkgs.ViennaRNA; + viennarna = toPythonModule pkgs.ViennaRNA; viewstate = callPackage ../development/python-modules/viewstate { }; From ae0bfcb156a66efb4e914152669c13066eb75594 Mon Sep 17 00:00:00 2001 From: natsukium Date: Wed, 23 Aug 2023 16:20:02 +0900 Subject: [PATCH 034/346] viennarna: rename from ViennaRNA --- .../science/molecular-dynamics/viennarna/default.nix | 4 ++-- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/python-packages.nix | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/science/molecular-dynamics/viennarna/default.nix b/pkgs/applications/science/molecular-dynamics/viennarna/default.nix index 3d20eeabe268..f292cbb378c9 100644 --- a/pkgs/applications/science/molecular-dynamics/viennarna/default.nix +++ b/pkgs/applications/science/molecular-dynamics/viennarna/default.nix @@ -8,11 +8,11 @@ }: stdenv.mkDerivation rec { - pname = "ViennaRNA"; + pname = "viennarna"; version = "2.5.1"; src = fetchurl { - url = "https://www.tbi.univie.ac.at/RNA/download/sourcecode/2_5_x/${pname}-${version}.tar.gz"; + url = "https://www.tbi.univie.ac.at/RNA/download/sourcecode/2_5_x/ViennaRNA-${version}.tar.gz"; sha256 = "sha256-BUAEN88VWV4QsaJd9snEiFbzVhMPnR44D6iGa20n9Fc="; }; diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 1a3191b08c5d..ed1ca0918902 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1805,6 +1805,7 @@ mapAliases ({ ventoy-bin-full = ventoy-full; # Added 2023-04-12 venus = throw "venus has been removed from nixpkgs, as it's unmaintained"; # Added 2021-02-05 vgo2nix = throw "vgo2nix has been removed, because it was deprecated. Consider using gomod2nix instead"; # added 2022-08-24 + ViennaRNA = viennarna; # Added 2023-08-23 vimHugeX = vim-full; # Added 2022-12-04 vim_configurable = vim-full; # Added 2022-12-04 vimbWrapper = throw "'vimbWrapper' has been renamed to/replaced by 'vimb'"; # Converted to throw 2022-02-22 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6c8d167c7f3a..8680113e05aa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -41283,7 +41283,7 @@ with pkgs; viddy = callPackage ../tools/misc/viddy { }; - ViennaRNA = callPackage ../applications/science/molecular-dynamics/viennarna { }; + viennarna = callPackage ../applications/science/molecular-dynamics/viennarna { }; viewnior = callPackage ../applications/graphics/viewnior { }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1645cfef7374..6e01d98a6491 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13422,7 +13422,7 @@ self: super: with self; { vidstab = callPackage ../development/python-modules/vidstab { }; - viennarna = toPythonModule pkgs.ViennaRNA; + viennarna = toPythonModule pkgs.viennarna; viewstate = callPackage ../development/python-modules/viewstate { }; From 33c4d1eba0dcbca231b74d4eccca1d0ec1be3de1 Mon Sep 17 00:00:00 2001 From: Oliver Richter Date: Thu, 27 Jul 2023 17:21:41 +0200 Subject: [PATCH 035/346] djenrandom: init at 1.0 Add djenrandom as a package. djenrandom is a tool to generate random data. Signed-off-by: Oliver Richter --- pkgs/tools/misc/djenrandom/default.nix | 43 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 45 insertions(+) create mode 100644 pkgs/tools/misc/djenrandom/default.nix diff --git a/pkgs/tools/misc/djenrandom/default.nix b/pkgs/tools/misc/djenrandom/default.nix new file mode 100644 index 000000000000..f55329a66180 --- /dev/null +++ b/pkgs/tools/misc/djenrandom/default.nix @@ -0,0 +1,43 @@ +{ lib +, stdenv +, fetchFromGitHub +}: + +stdenv.mkDerivation rec { + pname = "djenrandom"; + version = "1.0"; + + src = fetchFromGitHub { + owner = "dj-on-github"; + repo = "djenrandom"; + rev = "${version}"; + hash = "sha256-r5UT8z8vvFZDffsl6CqBXuvBaZ/sl1WLxJi26CxkpAw="; + }; + + preBuild = '' + sed -i s/gcc/${stdenv.cc.targetPrefix}gcc/g Makefile + '' + + lib.optionalString (!stdenv.hostPlatform.isx86_64) '' + sed -i s/-m64//g Makefile + ''; + + installPhase = '' + runHook preInstall + install -D djenrandom $out/bin/djenrandom + runHook postInstall + ''; + + makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ]; + + meta = { + homepage = "http://www.deadhat.com/"; + description = '' + A C program to generate random data using several random models, + with parameterized non uniformities and flexible output formats + ''; + license = lib.licenses.gpl2Only; + # djenrandom uses x86 specific instructions, therefore we can only compile for the x86 architechture + platforms = lib.platforms.x86; + maintainers = with lib.maintainers; [ orichter thillux ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 21289fab6073..84ebdbd85fc7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -39741,6 +39741,8 @@ with pkgs; terminal-parrot = callPackage ../applications/misc/terminal-parrot { }; + djenrandom = callPackage ../tools/misc/djenrandom { }; + epsonscan2 = pkgs.libsForQt5.callPackage ../misc/drivers/epsonscan2 { }; epson-alc1100 = callPackage ../misc/drivers/epson-alc1100 { }; From 8e15df471550f875284109797d9942eeb6280fa6 Mon Sep 17 00:00:00 2001 From: Oliver Richter Date: Mon, 31 Jul 2023 12:17:25 +0200 Subject: [PATCH 036/346] libkcapi: init at 1.4.0 Linux Kernel Crypto API User Space Interface Library. libkcapi allows user-space to access the Linux kernel crypto API. The esdm package may include support for libkcapi in the jittentropy source in a future release. Therefor having this package upstream would be prefered. Signed-off-by: Oliver Richter --- .../libraries/libkcapi/default.nix | 53 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 55 insertions(+) create mode 100644 pkgs/development/libraries/libkcapi/default.nix diff --git a/pkgs/development/libraries/libkcapi/default.nix b/pkgs/development/libraries/libkcapi/default.nix new file mode 100644 index 000000000000..bee1ac93598c --- /dev/null +++ b/pkgs/development/libraries/libkcapi/default.nix @@ -0,0 +1,53 @@ +{ lib +, stdenv +, fetchFromGitHub +, autoreconfHook +, buildPackages + # libkcapi offers multiple tools. They can be disabled for minimization. +, kcapi-test ? true +, kcapi-speed ? true +, kcapi-hasher ? true +, kcapi-rngapp ? true +, kcapi-encapp ? true +, kcapi-dgstapp ? true +}: + +stdenv.mkDerivation rec { + pname = "libkcapi"; + version = "1.4.0"; + + src = fetchFromGitHub { + owner = "smuellerDD"; + repo = "libkcapi"; + rev = "v${version}"; + hash = "sha256-G/4G8179Gc8RfQfQImOCsBC8WXKK7jQJfUSXm0hYLJ0="; + }; + + nativeBuildInputs = [ autoreconfHook ]; + + # libkcapi looks also for a host c compiler when cross-compiling + # otherwise you obtain following error message: + # "error: no acceptable C compiler found in $PATH" + depsBuildBuild = [ + buildPackages.stdenv.cc + ]; + + enableParallelBuilding = true; + + configureFlags = + lib.optional kcapi-test "--enable-kcapi-test" ++ + lib.optional kcapi-speed "--enable-kcapi-speed" ++ + lib.optional kcapi-hasher "--enable-kcapi-hasher" ++ + lib.optional kcapi-rngapp "--enable-kcapi-rngapp" ++ + lib.optional kcapi-encapp "--enable-kcapi-encapp" ++ + lib.optional kcapi-dgstapp "--enable-kcapi-dgstapp" + ; + + meta = { + homepage = "http://www.chronox.de/libkcapi.html"; + description = "Linux Kernel Crypto API User Space Interface Library"; + license = with lib.licenses; [ bsd3 gpl2Only ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ orichter thillux ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 877a88a0ff10..e3944ad801e2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -22464,6 +22464,8 @@ with pkgs; libinklevel = callPackage ../development/libraries/libinklevel { }; + libkcapi = callPackage ../development/libraries/libkcapi { }; + libnats-c = callPackage ../development/libraries/libnats-c { }; liburing = callPackage ../development/libraries/liburing { }; From 9d830541990252e859c00c9b5a7579bc9305c79c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anselm=20Sch=C3=BCler?= Date: Sun, 27 Aug 2023 13:51:23 +0200 Subject: [PATCH 037/346] nano: add file as a dependency to allow libmagic usage --- pkgs/applications/editors/nano/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/nano/default.nix b/pkgs/applications/editors/nano/default.nix index 5b51f9563c39..cbb53a8f9991 100644 --- a/pkgs/applications/editors/nano/default.nix +++ b/pkgs/applications/editors/nano/default.nix @@ -1,6 +1,6 @@ { lib, stdenv, fetchurl, fetchFromGitHub, ncurses, texinfo, writeScript , common-updater-scripts, git, nix, nixfmt, coreutils, gnused, callPackage -, gettext ? null, enableNls ? true, enableTiny ? false }: +, file ? null, gettext ? null, enableNls ? true, enableTiny ? false }: assert enableNls -> (gettext != null); @@ -22,7 +22,7 @@ in stdenv.mkDerivation rec { }; nativeBuildInputs = [ texinfo ] ++ lib.optional enableNls gettext; - buildInputs = [ ncurses ]; + buildInputs = [ ncurses ] ++ lib.optional (!enableTiny) file; outputs = [ "out" "info" ]; From cf6f6b2b00446e1ee21d7ec2df381bc404a16cc3 Mon Sep 17 00:00:00 2001 From: Daniel Rolls Date: Sat, 26 Aug 2023 16:46:55 +0100 Subject: [PATCH 038/346] shellify: init at 0.10.0.3 --- pkgs/development/haskell-modules/configuration-nix.nix | 2 ++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index e426ea4be07c..19a191394817 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -452,6 +452,8 @@ self: super: builtins.intersectAttrs super { wxc = (addBuildDepend self.split super.wxc).override { wxGTK = pkgs.wxGTK32; }; wxcore = super.wxcore.override { wxGTK = pkgs.wxGTK32; }; + shellify = enableSeparateBinOutput super.shellify; + # Test suite wants to connect to $DISPLAY. bindings-GLFW = dontCheck super.bindings-GLFW; gi-gtk-declarative = dontCheck super.gi-gtk-declarative; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9e451ba0c98d..308748a7c73c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13000,6 +13000,8 @@ with pkgs; shelldap = callPackage ../tools/misc/shelldap { }; + shellify = haskellPackages.shellify.bin; + shellspec = callPackage ../tools/misc/shellspec { }; schema2ldif = callPackage ../tools/text/schema2ldif { }; From 833956a621dbbd84a8ea4a6510e51890b5e8e56e Mon Sep 17 00:00:00 2001 From: Dennis Wuitz Date: Mon, 28 Aug 2023 12:21:28 +0200 Subject: [PATCH 039/346] python3.pkgs.django-google-analytics-app: init at 6.0.0 --- .../django-google-analytics-app/default.nix | 54 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 56 insertions(+) create mode 100644 pkgs/development/python-modules/django-google-analytics-app/default.nix diff --git a/pkgs/development/python-modules/django-google-analytics-app/default.nix b/pkgs/development/python-modules/django-google-analytics-app/default.nix new file mode 100644 index 000000000000..ad9262f844a5 --- /dev/null +++ b/pkgs/development/python-modules/django-google-analytics-app/default.nix @@ -0,0 +1,54 @@ +{ lib +, beautifulsoup4 +, buildPythonPackage +, celery +, django +, fetchFromGitHub +, importlib-metadata +, python +, pythonOlder +, requests +, structlog +}: + +buildPythonPackage rec { + pname = "django-google-analytics-app"; + version = "6.0.0"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; + + src = fetchFromGitHub { + owner = "praekeltfoundation"; + repo = "django-google-analytics"; + rev = "refs/tags/${version}"; + hash = "sha256-0KLfGZY8qq5JGb+LJXpQRS76+qXtrf/hv6QLenm+BhQ="; + }; + + propagatedBuildInputs = [ + beautifulsoup4 + celery + django + importlib-metadata + requests + structlog + ]; + + checkPhase = '' + runHook preCheck + ${python.interpreter} -m django check --settings=test_settings + runHook postCheck + ''; + + pythonImportsCheck = [ + "google_analytics" + ]; + + meta = with lib; { + description = "Django Google Analytics brings the power of server side/non-js Google Analytics to your Django projects"; + homepage = "https://github.com/praekeltfoundation/django-google-analytics/"; + changelog = "https://github.com/praekeltfoundation/django-google-analytics/releases/tag/${version}"; + license = licenses.bsd3; + maintainers = with maintainers; [ derdennisop ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 446eccfa1955..1663d2f825ed 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2868,6 +2868,8 @@ self: super: with self; { django-gravatar2 = callPackage ../development/python-modules/django-gravatar2 { }; + django-google-analytics-app = callPackage ../development/python-modules/django-google-analytics-app { }; + django-guardian = callPackage ../development/python-modules/django-guardian { }; django-haystack = callPackage ../development/python-modules/django-haystack { }; From 261473c2fb2e3d9961e075cab5d51e73be203ba8 Mon Sep 17 00:00:00 2001 From: Dennis Wuitz Date: Mon, 28 Aug 2023 12:29:25 +0200 Subject: [PATCH 040/346] python3.pkgs.django-simple-history: init at 3.4.0 --- .../django-simple-history/default.nix | 50 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 52 insertions(+) create mode 100644 pkgs/development/python-modules/django-simple-history/default.nix diff --git a/pkgs/development/python-modules/django-simple-history/default.nix b/pkgs/development/python-modules/django-simple-history/default.nix new file mode 100644 index 000000000000..5ed17c5f6425 --- /dev/null +++ b/pkgs/development/python-modules/django-simple-history/default.nix @@ -0,0 +1,50 @@ +{ lib +, buildPythonPackage +, django +, fetchFromGitHub +, pytest-django +, python +, pythonOlder +, setuptools-scm +}: + +buildPythonPackage rec { + pname = "django-simple-history"; + version = "3.4.0"; + format = "setuptools"; + + disabled = pythonOlder "3.8"; + + src = fetchFromGitHub { + owner = "jazzband"; + repo = "django-simple-history"; + rev = "refs/tags/${version}"; + hash = "sha256-XY6YNajwX5z3AXkYYGFtrURDqxub9EQwu52jQ7CZwrI="; + }; + + env.SETUPTOOLS_SCM_PRETEND_VERSION = version; + + nativeBuildInputs = [ + setuptools-scm + ]; + + propagatedBuildInputs = [ + django + ]; + + checkPhase = '' + ${python.interpreter} runtests.py + ''; + + pythonImportsCheck = [ + "simple_history" + ]; + + meta = with lib; { + description = "django-simple-history stores Django model state on every create/update/delete"; + homepage = "https://github.com/jazzband/django-simple-history/"; + changelog = "https://github.com/jazzband/django-simple-history/releases/tag/${version}"; + license = licenses.bsd3; + maintainers = with maintainers; [ derdennisop ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 446eccfa1955..defbfa38dd5b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2996,6 +2996,8 @@ self: super: with self; { django-simple-captcha = callPackage ../development/python-modules/django-simple-captcha { }; + django-simple-history = callPackage ../development/python-modules/django-simple-history { }; + django-sites = callPackage ../development/python-modules/django-sites { }; django-sr = callPackage ../development/python-modules/django-sr { }; From 0ed874c00368dddfde556faf64d1df3bde33d405 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thea=20Sch=C3=B6bl?= Date: Tue, 29 Aug 2023 13:59:28 +0200 Subject: [PATCH 041/346] insomnia: add electron wayland flags --- pkgs/development/web/insomnia/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/web/insomnia/default.nix b/pkgs/development/web/insomnia/default.nix index 99843767d906..6042d1c30a81 100644 --- a/pkgs/development/web/insomnia/default.nix +++ b/pkgs/development/web/insomnia/default.nix @@ -82,7 +82,10 @@ in stdenv.mkDerivation rec { ''; preFixup = '' - wrapProgram "$out/bin/insomnia" "''${gappsWrapperArgs[@]}" --prefix LD_LIBRARY_PATH : ${runtimeLibs} + wrapProgramShell "$out/bin/insomnia" \ + "''${gappsWrapperArgs[@]}" \ + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform=wayland --enable-features=WaylandWindowDecorations}}" \ + --prefix LD_LIBRARY_PATH : ${runtimeLibs} ''; meta = with lib; { From dbd590c8db3bc5744395168baacb498abfbf435e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viorel-C=C4=83t=C4=83lin=20R=C4=83pi=C8=9Beanu?= Date: Wed, 30 Aug 2023 11:48:33 +0300 Subject: [PATCH 042/346] clamav: 1.1.0 -> 1.2.0 --- pkgs/tools/security/clamav/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/clamav/default.nix b/pkgs/tools/security/clamav/default.nix index d893c83680c5..2188cf99a3c9 100644 --- a/pkgs/tools/security/clamav/default.nix +++ b/pkgs/tools/security/clamav/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { pname = "clamav"; - version = "1.1.0"; + version = "1.2.0"; src = fetchurl { url = "https://www.clamav.net/downloads/production/${pname}-${version}.tar.gz"; - hash = "sha256-owAg2ZzUZ/peoO+9b08YLv6/Yqn8YvxKOnssw/Vea3Q="; + hash = "sha256-l6GS3/4UFIC1bKvxBj15qfxVzVkgMkH6Qb/HqYpUgCA="; }; patches = [ From e6f657ba8784f0673c03ff14217072f5f24e162b Mon Sep 17 00:00:00 2001 From: "Miao, ZhiCheng" Date: Mon, 28 Aug 2023 09:55:21 +0300 Subject: [PATCH 043/346] echidna: fix build due to brick-1.9 - use fetchpatch --- pkgs/tools/security/echidna/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/tools/security/echidna/default.nix b/pkgs/tools/security/echidna/default.nix index bf28f8936166..80dcba3a8038 100644 --- a/pkgs/tools/security/echidna/default.nix +++ b/pkgs/tools/security/echidna/default.nix @@ -1,6 +1,7 @@ { lib , mkDerivation , fetchFromGitHub +, fetchpatch , haskellPackages , haskell , slither-analyzer @@ -34,6 +35,15 @@ in mkDerivation rec { sha256 = "sha256-5d9ttPR3rRHywBeLM85EGCEZLNZNZzOAhIN6AJToJyI="; }; + # Note: pending PR https://github.com/crytic/echidna/pull/1096 + patches = [ + (fetchpatch { + name = "brick-1.9-update"; + url = "https://github.com/crytic/echidna/pull/1096/commits/36657d54943727e569691a6b3d85b83130480a2e.patch"; + sha256 = "sha256-AOmB/fAZCF7ruXW1HusRe7wWWsLyMCWw+j3qIPARIAc="; + }) + ]; + isLibrary = true; isExecutable = true; From ae6630cb5be679a34d4bbfae4673a471c2e925fe Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Wed, 30 Aug 2023 23:44:58 +0200 Subject: [PATCH 044/346] haskellPackages.servant-foreign: allow hspec >= 2.10 --- pkgs/development/haskell-modules/configuration-common.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index b0c1966cf185..fa82eb527533 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1150,9 +1150,11 @@ self: super: { github-backup = doJailbreak super.github-backup; # dontCheck: https://github.com/haskell-servant/servant-auth/issues/113 - # doJailbreak: waiting on revision 1 to hit hackage - servant-auth-client = doJailbreak (dontCheck super.servant-auth-client); + servant-auth-client = dontCheck super.servant-auth-client; + # Allow lens-aeson >= 1.2 https://github.com/haskell-servant/servant/issues/1703 servant-auth-server = doJailbreak super.servant-auth-server; + # Allow hspec >= 2.10 https://github.com/haskell-servant/servant/issues/1704 + servant-foreign = doJailbreak super.servant-foreign; # Generate cli completions for dhall. dhall = self.generateOptparseApplicativeCompletions [ "dhall" ] super.dhall; From b6fbef42493fd879aa64d9da6a468d138bf18595 Mon Sep 17 00:00:00 2001 From: Aidan Gauland Date: Fri, 1 Sep 2023 21:51:52 +1200 Subject: [PATCH 045/346] mailctl: add to release-haskell.nix This prevents Hackage updates from silently breaking this package. --- pkgs/top-level/release-haskell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/release-haskell.nix b/pkgs/top-level/release-haskell.nix index 1c5615d5dbb1..3365032f4188 100644 --- a/pkgs/top-level/release-haskell.nix +++ b/pkgs/top-level/release-haskell.nix @@ -316,6 +316,7 @@ let lambdabot lhs2tex madlang + mailctl matterhorn mueval naproche From 5c58c59c4e75ab7b6a58b43503da8b14c08a27d2 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 3 Sep 2023 17:22:48 +0200 Subject: [PATCH 046/346] haskellPackages.GLUT: make sure patch applies despite revisions (by fixing line endings using dos2unix) --- .../haskell-modules/configuration-nix.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 19a191394817..6242b5af6f4f 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -601,7 +601,17 @@ self: super: builtins.intersectAttrs super { # # Additional note: nixpkgs' freeglut and macOS's OpenGL implementation do not cooperate, # so disable this on Darwin only - ${if pkgs.stdenv.isDarwin then null else "GLUT"} = addPkgconfigDepend pkgs.freeglut (appendPatch ./patches/GLUT.patch super.GLUT); + ${if pkgs.stdenv.isDarwin then null else "GLUT"} = overrideCabal (drv: { + pkg-configDepends = drv.pkg-configDepends or [] ++ [ + pkgs.freeglut + ]; + patches = drv.patches or [] ++ [ + ./patches/GLUT.patch + ]; + prePatch = drv.prePatch or "" + '' + ${lib.getBin pkgs.buildPackages.dos2unix}/bin/dos2unix *.cabal + ''; + }) super.GLUT; libsystemd-journal = doJailbreak (addExtraLibrary pkgs.systemd super.libsystemd-journal); From 10e6c90caa645e590efbb0db826cd9b2ecda061f Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 3 Sep 2023 17:27:34 +0200 Subject: [PATCH 047/346] haskellPackages.hix: lift upper bound on path-io --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index fa82eb527533..79824158847e 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -248,6 +248,10 @@ self: super: { # https://github.com/glguy/config-value/commit/c5558c8258598fab686c259bff510cc1b19a0c50#commitcomment-119514821 config-value = doJailbreak super.config-value; + # path-io bound is adjusted in 0.6.1 release + # https://github.com/tek/hix/commit/019426f6a3db256e4c96558ffe6fa2114e2f19a0 + hix = doJailbreak super.hix; + # waiting for release: https://github.com/jwiegley/c2hsc/issues/41 c2hsc = appendPatch (fetchpatch { url = "https://github.com/jwiegley/c2hsc/commit/490ecab202e0de7fc995eedf744ad3cb408b53cc.patch"; From 7511d5bfbf426ddd492e53a5b12cdd7c6bc8d53c Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sat, 2 Sep 2023 11:18:22 +0200 Subject: [PATCH 048/346] haskellPackages: mark builds failing on hydra as broken This commit has been generated by maintainers/scripts/haskell/mark-broken.sh based on *evaluation [1798943](https://hydra.nixos.org/eval/1798943) of nixpkgs commit [692f8e1](https://github.com/NixOS/nixpkgs/commits/692f8e118ea05c891218a90e39a1a551b0d0cb90) as of 2023-09-02 01:02 UTC* from the haskell-updates jobset on hydra under https://hydra.nixos.org/jobset/nixpkgs/haskell-updates --- .../configuration-hackage2nix/broken.yaml | 6109 +++++- .../transitive-broken.yaml | 4331 +++- .../haskell-modules/hackage-packages.nix | 16515 ++++++++++++++++ 3 files changed, 26953 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml index 08aadf5aa2f3..256e713cda06 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml @@ -1 +1,6108 @@ -broken-packages: [] +broken-packages: + # These packages don't compile. + - 2captcha # failure in job https://hydra.nixos.org/build/233233765 at 2023-09-02 + - 3dmodels # failure in job https://hydra.nixos.org/build/233220850 at 2023-09-02 + - AAI # failure in job https://hydra.nixos.org/build/233258828 at 2023-09-02 + - aasam # failure in job https://hydra.nixos.org/build/233216423 at 2023-09-02 + - abacate # failure in job https://hydra.nixos.org/build/233201225 at 2023-09-02 + - abcnotation # failure in job https://hydra.nixos.org/build/233204259 at 2023-09-02 + - abeson # failure in job https://hydra.nixos.org/build/233210579 at 2023-09-02 + - abides # failure in job https://hydra.nixos.org/build/233260056 at 2023-09-02 + - abnf # failure in job https://hydra.nixos.org/build/233238839 at 2023-09-02 + - AbortT-transformers # failure in job https://hydra.nixos.org/build/233210345 at 2023-09-02 + - abt # failure in job https://hydra.nixos.org/build/233201301 at 2023-09-02 + - AC-BuildPlatform # failure in job https://hydra.nixos.org/build/233219130 at 2023-09-02 + - accelerate # failure in job https://hydra.nixos.org/build/233198907 at 2023-09-02 + - accentuateus # failure in job https://hydra.nixos.org/build/233253627 at 2023-09-02 + - access-time # failure in job https://hydra.nixos.org/build/233246051 at 2023-09-02 + - accuerr # failure in job https://hydra.nixos.org/build/233220965 at 2023-09-02 + - AC-EasyRaster-GTK # failure in job https://hydra.nixos.org/build/233226232 at 2023-09-02 + - ace # failure in job https://hydra.nixos.org/build/233214870 at 2023-09-02 + - AC-HalfInteger # failure in job https://hydra.nixos.org/build/233239266 at 2023-09-02 + - achille # failure in job https://hydra.nixos.org/build/233236118 at 2023-09-02 + - acid-state-dist # failure in job https://hydra.nixos.org/build/233216067 at 2023-09-02 + - acid-state-tls # failure in job https://hydra.nixos.org/build/233211210 at 2023-09-02 + - ac-machine # failure in job https://hydra.nixos.org/build/233253535 at 2023-09-02 + - acme-all-monad # failure in job https://hydra.nixos.org/build/233197817 at 2023-09-02 + - acme-comonad # failure in job https://hydra.nixos.org/build/233249166 at 2023-09-02 + - acme-dont # failure in job https://hydra.nixos.org/build/233226392 at 2023-09-02 + - ACME # failure in job https://hydra.nixos.org/build/233229388 at 2023-09-02 + - acme-flipping-tables # failure in job https://hydra.nixos.org/build/233222456 at 2023-09-02 + - acme-hq9plus # failure in job https://hydra.nixos.org/build/233248868 at 2023-09-02 + - acme-http # failure in job https://hydra.nixos.org/build/233203112 at 2023-09-02 + - acme-inator # failure in job https://hydra.nixos.org/build/233211599 at 2023-09-02 + - acme-io # failure in job https://hydra.nixos.org/build/233224872 at 2023-09-02 + - acme-kitchen-sink # failure in job https://hydra.nixos.org/build/233222038 at 2023-09-02 + - acme-left-pad # failure in job https://hydra.nixos.org/build/233197685 at 2023-09-02 + - acme-memorandom # failure in job https://hydra.nixos.org/build/233222926 at 2023-09-02 + - acme-miscorder # failure in job https://hydra.nixos.org/build/233209957 at 2023-09-02 + - acme-mutable-package # failure in job https://hydra.nixos.org/build/233213349 at 2023-09-02 + - acme-now # failure in job https://hydra.nixos.org/build/233243289 at 2023-09-02 + - acme-numbersystem # failure in job https://hydra.nixos.org/build/233208106 at 2023-09-02 + - acme-operators # failure in job https://hydra.nixos.org/build/233248282 at 2023-09-02 + - acme-schoenfinkel # failure in job https://hydra.nixos.org/build/233231988 at 2023-09-02 + - acme-strfry # failure in job https://hydra.nixos.org/build/233242092 at 2023-09-02 + - acme-stringly-typed # failure in job https://hydra.nixos.org/build/233192651 at 2023-09-02 + - acme-this # failure in job https://hydra.nixos.org/build/233230930 at 2023-09-02 + - acme-zalgo # failure in job https://hydra.nixos.org/build/233216155 at 2023-09-02 + - acme-zero # failure in job https://hydra.nixos.org/build/233192937 at 2023-09-02 + - AC-MiniTest # failure in job https://hydra.nixos.org/build/233216015 at 2023-09-02 + - acousticbrainz-client # failure in job https://hydra.nixos.org/build/233192638 at 2023-09-02 + - AC-Terminal # failure in job https://hydra.nixos.org/build/233192747 at 2023-09-02 + - activehs-base # failure in job https://hydra.nixos.org/build/233254736 at 2023-09-02 + - activitypub # failure in job https://hydra.nixos.org/build/233253119 at 2023-09-02 + - activitystreams-aeson # failure in job https://hydra.nixos.org/build/233222522 at 2023-09-02 + - AC-VanillaArray # failure in job https://hydra.nixos.org/build/233216801 at 2023-09-02 + - AC-Vector # failure in job https://hydra.nixos.org/build/233201957 at 2023-09-02 + - Adaptive-Blaisorblade # failure in job https://hydra.nixos.org/build/233229679 at 2023-09-02 + - adaptive-containers # failure in job https://hydra.nixos.org/build/233243181 at 2023-09-02 + - Adaptive # failure in job https://hydra.nixos.org/build/233217421 at 2023-09-02 + - adaptive-tuple # failure in job https://hydra.nixos.org/build/233244881 at 2023-09-02 + - adb # failure in job https://hydra.nixos.org/build/233193888 at 2023-09-02 + - addy # failure in job https://hydra.nixos.org/build/233240594 at 2023-09-02 + - adjunction # failure in job https://hydra.nixos.org/build/233237774 at 2023-09-02 + - adobe-swatch-exchange # failure in job https://hydra.nixos.org/build/233255779 at 2023-09-02 + - adp-multi # failure in job https://hydra.nixos.org/build/233256331 at 2023-09-02 + - adtrees # failure in job https://hydra.nixos.org/build/233192320 at 2023-09-02 + - AERN-Basics # failure in job https://hydra.nixos.org/build/233246999 at 2023-09-02 + - aeson-applicative # failure in job https://hydra.nixos.org/build/233213824 at 2023-09-02 + - aeson-bson # failure in job https://hydra.nixos.org/build/233201964 at 2023-09-02 + - aeson-commit # failure in job https://hydra.nixos.org/build/233198515 at 2023-09-02 + - aeson-compat # failure in job https://hydra.nixos.org/build/233208257 at 2023-09-02 + - aeson-decode # failure in job https://hydra.nixos.org/build/233251197 at 2023-09-02 + - aeson-default # failure in job https://hydra.nixos.org/build/233203427 at 2023-09-02 + - aeson-dependent-sum # failure in job https://hydra.nixos.org/build/233223384 at 2023-09-02 + - aeson-deriving # failure in job https://hydra.nixos.org/build/233247857 at 2023-09-02 + - aeson-diff-generic # failure in job https://hydra.nixos.org/build/233213146 at 2023-09-02 + - aeson-filthy # failure in job https://hydra.nixos.org/build/233198472 at 2023-09-02 + - aeson-flat # failure in job https://hydra.nixos.org/build/233220787 at 2023-09-02 + - aeson-flatten # failure in job https://hydra.nixos.org/build/233242954 at 2023-09-02 + - aeson-flowtyped # failure in job https://hydra.nixos.org/build/233245878 at 2023-09-02 + - aeson-gadt-th # failure in job https://hydra.nixos.org/build/233247060 at 2023-09-02 + - aeson-injector # failure in job https://hydra.nixos.org/build/233200351 at 2023-09-02 + - aeson-json-ast # failure in job https://hydra.nixos.org/build/233249406 at 2023-09-02 + - aeson-lens # failure in job https://hydra.nixos.org/build/233235357 at 2023-09-02 + - aeson-modern-tojson # failure in job https://hydra.nixos.org/build/233202149 at 2023-09-02 + - aeson-options # failure in job https://hydra.nixos.org/build/233245051 at 2023-09-02 + - aeson-parsec-picky # failure in job https://hydra.nixos.org/build/233222117 at 2023-09-02 + - aeson-prefix # failure in job https://hydra.nixos.org/build/233215656 at 2023-09-02 + - aeson-schema # failure in job https://hydra.nixos.org/build/233229960 at 2023-09-02 + - aeson-single-field # failure in job https://hydra.nixos.org/build/233247758 at 2023-09-02 + - aeson-smart # failure in job https://hydra.nixos.org/build/233197032 at 2023-09-02 + - aeson-streams # failure in job https://hydra.nixos.org/build/233191057 at 2023-09-02 + - aeson-t # failure in job https://hydra.nixos.org/build/233243634 at 2023-09-02 + - aeson-toolkit # failure in job https://hydra.nixos.org/build/233248208 at 2023-09-02 + - aeson-utils # failure in job https://hydra.nixos.org/build/233238768 at 2023-09-02 + - aeson-with # failure in job https://hydra.nixos.org/build/233206342 at 2023-09-02 + - affection # failure in job https://hydra.nixos.org/build/233213076 at 2023-09-02 + - affine-invariant-ensemble-mcmc # failure in job https://hydra.nixos.org/build/233237176 at 2023-09-02 + - Agata # failure in job https://hydra.nixos.org/build/233221026 at 2023-09-02 + - Agda-executable # failure in job https://hydra.nixos.org/build/233332629 at 2023-09-02 + - agda-language-server # failure in job https://hydra.nixos.org/build/233332694 at 2023-09-02 + - agda-snippets # failure in job https://hydra.nixos.org/build/233332749 at 2023-09-02 + - agda-unused # failure in job https://hydra.nixos.org/build/233332657 at 2023-09-02 + - AGI # failure in job https://hydra.nixos.org/build/233211491 at 2023-09-02 + - ag-pictgen # failure in job https://hydra.nixos.org/build/233252615 at 2023-09-02 + - AhoCorasick # failure in job https://hydra.nixos.org/build/233204899 at 2023-09-02 + - aig # failure in job https://hydra.nixos.org/build/233199755 at 2023-09-02 + - airbrake # failure in job https://hydra.nixos.org/build/233199319 at 2023-09-02 + - air-extra # failure in job https://hydra.nixos.org/build/233250519 at 2023-09-02 + - airship # failure in job https://hydra.nixos.org/build/233239011 at 2023-09-02 + - airtable-api # failure in job https://hydra.nixos.org/build/233228482 at 2023-09-02 + - air-th # failure in job https://hydra.nixos.org/build/233228206 at 2023-09-02 + - aivika-gpss # failure in job https://hydra.nixos.org/build/233254603 at 2023-09-02 + - ajhc # failure in job https://hydra.nixos.org/build/233197894 at 2023-09-02 + - AlanDeniseEricLauren # failure in job https://hydra.nixos.org/build/233235486 at 2023-09-02 + - alerta # failure in job https://hydra.nixos.org/build/233203379 at 2023-09-02 + - alerts # failure in job https://hydra.nixos.org/build/233251101 at 2023-09-02 + - alex-prelude # failure in job https://hydra.nixos.org/build/233238387 at 2023-09-02 + - alfred # failure in job https://hydra.nixos.org/build/233227316 at 2023-09-02 + - alfred-margaret # failure in job https://hydra.nixos.org/build/233223038 at 2023-09-02 + - alga # failure in job https://hydra.nixos.org/build/233252723 at 2023-09-02 + - algebra-dag # failure in job https://hydra.nixos.org/build/233191945 at 2023-09-02 + - algebraic-classes # failure in job https://hydra.nixos.org/build/233246872 at 2023-09-02 + - algebraic-prelude # failure in job https://hydra.nixos.org/build/233197561 at 2023-09-02 + - AlgorithmW # failure in job https://hydra.nixos.org/build/233245254 at 2023-09-02 + - algo-s # failure in job https://hydra.nixos.org/build/233221988 at 2023-09-02 + - align-affine # failure in job https://hydra.nixos.org/build/233230079 at 2023-09-02 + - align-text # failure in job https://hydra.nixos.org/build/233215779 at 2023-09-02 + - ally-invest # failure in job https://hydra.nixos.org/build/233236224 at 2023-09-02 + - alpaca-netcode # failure in job https://hydra.nixos.org/build/233239392 at 2023-09-02 + - alpino-tools # failure in job https://hydra.nixos.org/build/233236168 at 2023-09-02 + - alsa # failure in job https://hydra.nixos.org/build/233250059 at 2023-09-02 + - alsa-midi # failure in job https://hydra.nixos.org/build/233245836 at 2023-09-02 + - altcomposition # failure in job https://hydra.nixos.org/build/233203544 at 2023-09-02 + - alternative-extra # failure in job https://hydra.nixos.org/build/233222901 at 2023-09-02 + - alternative-io # failure in job https://hydra.nixos.org/build/233259524 at 2023-09-02 + - altfloat # failure in job https://hydra.nixos.org/build/233197874 at 2023-09-02 + - alure # failure in job https://hydra.nixos.org/build/233230238 at 2023-09-02 + - amazon-emailer # failure in job https://hydra.nixos.org/build/233220018 at 2023-09-02 + - amazonka # failure in job https://hydra.nixos.org/build/233220743 at 2023-09-02 + - amazonka-iam-policy # failure in job https://hydra.nixos.org/build/233233098 at 2023-09-02 + - amazon-products # failure in job https://hydra.nixos.org/build/233193877 at 2023-09-02 + - AMI # failure in job https://hydra.nixos.org/build/233232505 at 2023-09-02 + - amqp-conduit # failure in job https://hydra.nixos.org/build/233228080 at 2023-09-02 + - analyze # failure in job https://hydra.nixos.org/build/233251441 at 2023-09-02 + - anansi-pandoc # failure in job https://hydra.nixos.org/build/233252389 at 2023-09-02 + - android-activity # failure in job https://hydra.nixos.org/build/233203400 at 2023-09-02 + - android # failure in job https://hydra.nixos.org/build/233222148 at 2023-09-02 + - android-lint-summary # failure in job https://hydra.nixos.org/build/233194598 at 2023-09-02 + - angel # failure in job https://hydra.nixos.org/build/233191548 at 2023-09-02 + - angle # failure in job https://hydra.nixos.org/build/233203144 at 2023-09-02 + - animalcase # failure in job https://hydra.nixos.org/build/233191888 at 2023-09-02 + - animascii # failure in job https://hydra.nixos.org/build/233211290 at 2023-09-02 + - Animas # failure in job https://hydra.nixos.org/build/233256636 at 2023-09-02 + - animate # failure in job https://hydra.nixos.org/build/233243661 at 2023-09-02 + - anki-tools # failure in job https://hydra.nixos.org/build/233205129 at 2023-09-02 + - annotated-fix # failure in job https://hydra.nixos.org/build/233241215 at 2023-09-02 + - anonymous-sums # failure in job https://hydra.nixos.org/build/233222773 at 2023-09-02 + - ansigraph # failure in job https://hydra.nixos.org/build/233227928 at 2023-09-02 + - ansi-pretty # failure in job https://hydra.nixos.org/build/233204335 at 2023-09-02 + - antfarm # failure in job https://hydra.nixos.org/build/233225661 at 2023-09-02 + - antigate # failure in job https://hydra.nixos.org/build/233194081 at 2023-09-02 + - antimirov # failure in job https://hydra.nixos.org/build/233210987 at 2023-09-02 + - antiope-swf # failure in job https://hydra.nixos.org/build/233206369 at 2023-09-02 + - antiquoter # failure in job https://hydra.nixos.org/build/233221962 at 2023-09-02 + - antisplice # failure in job https://hydra.nixos.org/build/233238144 at 2023-09-02 + - antlr-haskell # failure in job https://hydra.nixos.org/build/233208196 at 2023-09-02 + - anydbm # failure in job https://hydra.nixos.org/build/233195447 at 2023-09-02 + - Aoide # failure in job https://hydra.nixos.org/build/233239286 at 2023-09-02 + - aosd # failure in job https://hydra.nixos.org/build/233207331 at 2023-09-02 + - apache-md5 # failure in job https://hydra.nixos.org/build/233193946 at 2023-09-02 + - apart # failure in job https://hydra.nixos.org/build/233219668 at 2023-09-02 + - apecs-physics # failure in job https://hydra.nixos.org/build/233212565 at 2023-09-02 + - api-builder # failure in job https://hydra.nixos.org/build/233205755 at 2023-09-02 + - api-rpc-factom # failure in job https://hydra.nixos.org/build/233198474 at 2023-09-02 + - apns-http2 # failure in job https://hydra.nixos.org/build/233248620 at 2023-09-02 + - appc # failure in job https://hydra.nixos.org/build/233200853 at 2023-09-02 + - appendful-persistent # failure in job https://hydra.nixos.org/build/233249677 at 2023-09-02 + - app-lens # failure in job https://hydra.nixos.org/build/233193948 at 2023-09-02 + - AppleScript # failure in job https://hydra.nixos.org/build/233231626 at 2023-09-02 + - applicative-fail # failure in job https://hydra.nixos.org/build/233237624 at 2023-09-02 + - applicative-parsec # failure in job https://hydra.nixos.org/build/233221615 at 2023-09-02 + - applicative-quoters # failure in job https://hydra.nixos.org/build/233191023 at 2023-09-02 + - applicative-splice # failure in job https://hydra.nixos.org/build/233202183 at 2023-09-02 + - apply-unordered # failure in job https://hydra.nixos.org/build/233238590 at 2023-09-02 + - approveapi # failure in job https://hydra.nixos.org/build/233197597 at 2023-09-02 + - approx # failure in job https://hydra.nixos.org/build/233236548 at 2023-09-02 + - ApproxFun-hs # failure in job https://hydra.nixos.org/build/233247678 at 2023-09-02 + - arbb-vm # failure in job https://hydra.nixos.org/build/233252062 at 2023-09-02 + - arb-fft # failure in job https://hydra.nixos.org/build/233201190 at 2023-09-02 + - arbor-lru-cache # failure in job https://hydra.nixos.org/build/233204554 at 2023-09-02 + - arbor-monad-counter # failure in job https://hydra.nixos.org/build/233220436 at 2023-09-02 + - arbor-monad-logger # failure in job https://hydra.nixos.org/build/233228659 at 2023-09-02 + - arbor-monad-metric # failure in job https://hydra.nixos.org/build/233236175 at 2023-09-02 + - arbor-postgres # failure in job https://hydra.nixos.org/build/233232935 at 2023-09-02 + - arch-hs # failure in job https://hydra.nixos.org/build/233225768 at 2023-09-02 + - archiver # failure in job https://hydra.nixos.org/build/233245795 at 2023-09-02 + - archlinux # failure in job https://hydra.nixos.org/build/233202430 at 2023-09-02 + - archnews # failure in job https://hydra.nixos.org/build/233192480 at 2023-09-02 + - arena # failure in job https://hydra.nixos.org/build/233252500 at 2023-09-02 + - argo # failure in job https://hydra.nixos.org/build/233216252 at 2023-09-02 + - argon2 # failure in job https://hydra.nixos.org/build/233207704 at 2023-09-02 + - argparser # failure in job https://hydra.nixos.org/build/233222416 at 2023-09-02 + - arguedit # failure in job https://hydra.nixos.org/build/233211367 at 2023-09-02 + - arion # failure in job https://hydra.nixos.org/build/233254120 at 2023-09-02 + - armor # failure in job https://hydra.nixos.org/build/233241366 at 2023-09-02 + - arpack # failure in job https://hydra.nixos.org/build/233240937 at 2023-09-02 + - arpa # failure in job https://hydra.nixos.org/build/233200212 at 2023-09-02 + - arrayfire # failure in job https://hydra.nixos.org/build/233225004 at 2023-09-02 + - array-list # failure in job https://hydra.nixos.org/build/233197669 at 2023-09-02 + - array-primops # failure in job https://hydra.nixos.org/build/233191559 at 2023-09-02 + - ArrayRef # failure in job https://hydra.nixos.org/build/233196329 at 2023-09-02 + - arrowapply-utils # failure in job https://hydra.nixos.org/build/233192063 at 2023-09-02 + - arrow-improve # failure in job https://hydra.nixos.org/build/233239994 at 2023-09-02 + - arrow-list # failure in job https://hydra.nixos.org/build/233249150 at 2023-09-02 + - arrowp # failure in job https://hydra.nixos.org/build/233255376 at 2023-09-02 + - arrowp-qq # failure in job https://hydra.nixos.org/build/233251384 at 2023-09-02 + - ArrowVHDL # failure in job https://hydra.nixos.org/build/233206149 at 2023-09-02 + - artery # failure in job https://hydra.nixos.org/build/233206830 at 2023-09-02 + - artifact # failure in job https://hydra.nixos.org/build/233233300 at 2023-09-02 + - asap # failure in job https://hydra.nixos.org/build/233214968 at 2023-09-02 + - ascii85-conduit # failure in job https://hydra.nixos.org/build/233235427 at 2023-09-02 + - asciidiagram # failure in job https://hydra.nixos.org/build/233259020 at 2023-09-02 + - ascii-flatten # failure in job https://hydra.nixos.org/build/233229168 at 2023-09-02 + - ascii-string # failure in job https://hydra.nixos.org/build/233249978 at 2023-09-02 + - ascii-vector-avc # failure in job https://hydra.nixos.org/build/233208533 at 2023-09-02 + - asif # failure in job https://hydra.nixos.org/build/233251551 at 2023-09-02 + - asil # failure in job https://hydra.nixos.org/build/233204081 at 2023-09-02 + - asn1-ber-syntax # failure in job https://hydra.nixos.org/build/233235772 at 2023-09-02 + - asn1-codec # failure in job https://hydra.nixos.org/build/233217242 at 2023-09-02 + - asn1-data # failure in job https://hydra.nixos.org/build/233252918 at 2023-09-02 + - AspectAG # failure in job https://hydra.nixos.org/build/233231125 at 2023-09-02 + - assert # failure in job https://hydra.nixos.org/build/233257692 at 2023-09-02 + - assertions # failure in job https://hydra.nixos.org/build/233215277 at 2023-09-02 + - asset-map # failure in job https://hydra.nixos.org/build/233218566 at 2023-09-02 + - assoc-list # failure in job https://hydra.nixos.org/build/233224148 at 2023-09-02 + - assoc-listlike # failure in job https://hydra.nixos.org/build/233200483 at 2023-09-02 + - assumpta # failure in job https://hydra.nixos.org/build/233245580 at 2023-09-02 + - ast-monad # failure in job https://hydra.nixos.org/build/233192822 at 2023-09-02 + - astrds # failure in job https://hydra.nixos.org/build/233220701 at 2023-09-02 + - astro # failure in job https://hydra.nixos.org/build/233243443 at 2023-09-02 + - async-combinators # failure in job https://hydra.nixos.org/build/233198111 at 2023-09-02 + - async-dejafu # failure in job https://hydra.nixos.org/build/233254234 at 2023-09-02 + - asynchronous-exceptions # failure in job https://hydra.nixos.org/build/233218419 at 2023-09-02 + - async-manager # failure in job https://hydra.nixos.org/build/233246552 at 2023-09-02 + - async-timer # failure in job https://hydra.nixos.org/build/233200611 at 2023-09-02 + - aterm # failure in job https://hydra.nixos.org/build/233226675 at 2023-09-02 + - atlassian-connect-descriptor # failure in job https://hydra.nixos.org/build/233249503 at 2023-09-02 + - atndapi # failure in job https://hydra.nixos.org/build/233223849 at 2023-09-02 + - atom # failure in job https://hydra.nixos.org/build/233193561 at 2023-09-02 + - atomic-modify # failure in job https://hydra.nixos.org/build/233220400 at 2023-09-02 + - atomic-primops-vector # failure in job https://hydra.nixos.org/build/233228512 at 2023-09-02 + - atomo # failure in job https://hydra.nixos.org/build/233257502 at 2023-09-02 + - atp-haskell # failure in job https://hydra.nixos.org/build/233202077 at 2023-09-02 + - ats-format # failure in job https://hydra.nixos.org/build/233254532 at 2023-09-02 + - ats-pkg # failure in job https://hydra.nixos.org/build/233232354 at 2023-09-02 + - ats-setup # failure in job https://hydra.nixos.org/build/233240435 at 2023-09-02 + - ats-storable # failure in job https://hydra.nixos.org/build/233242765 at 2023-09-02 + - attempt # failure in job https://hydra.nixos.org/build/233233073 at 2023-09-02 + - attic-schedule # failure in job https://hydra.nixos.org/build/233249781 at 2023-09-02 + - AttoBencode # failure in job https://hydra.nixos.org/build/233198079 at 2023-09-02 + - atto-lisp # failure in job https://hydra.nixos.org/build/233222679 at 2023-09-02 + - attomail # failure in job https://hydra.nixos.org/build/233225937 at 2023-09-02 + - attoparsec-csv # failure in job https://hydra.nixos.org/build/233245402 at 2023-09-02 + - attoparsec-text # failure in job https://hydra.nixos.org/build/233227820 at 2023-09-02 + - attoparsec-trans # failure in job https://hydra.nixos.org/build/233203168 at 2023-09-02 + - attoparsec-varword # failure in job https://hydra.nixos.org/build/233234240 at 2023-09-02 + - attosplit # failure in job https://hydra.nixos.org/build/233203118 at 2023-09-02 + - augeas # failure in job https://hydra.nixos.org/build/233228677 at 2023-09-02 + - augur # failure in job https://hydra.nixos.org/build/233223910 at 2023-09-02 + - aur-api # failure in job https://hydra.nixos.org/build/233237328 at 2023-09-02 + - aur # failure in job https://hydra.nixos.org/build/233239429 at 2023-09-02 + - Aurochs # failure in job https://hydra.nixos.org/build/233244773 at 2023-09-02 + - authenticate-ldap # failure in job https://hydra.nixos.org/build/233216602 at 2023-09-02 + - authinfo-hs # failure in job https://hydra.nixos.org/build/233224767 at 2023-09-02 + - auto # failure in job https://hydra.nixos.org/build/233211088 at 2023-09-02 + - autonix-deps # failure in job https://hydra.nixos.org/build/233258269 at 2023-09-02 + - autopack # failure in job https://hydra.nixos.org/build/233215025 at 2023-09-02 + - avatar-generator # failure in job https://hydra.nixos.org/build/233214253 at 2023-09-02 + - aviation-units # failure in job https://hydra.nixos.org/build/233245762 at 2023-09-02 + - avl-static # failure in job https://hydra.nixos.org/build/233199062 at 2023-09-02 + - avro-piper # failure in job https://hydra.nixos.org/build/233197510 at 2023-09-02 + - avr-shake # failure in job https://hydra.nixos.org/build/233223187 at 2023-09-02 + - avwx # failure in job https://hydra.nixos.org/build/233258167 at 2023-09-02 + - awesome-prelude # failure in job https://hydra.nixos.org/build/233232761 at 2023-09-02 + - awesomium-raw # failure in job https://hydra.nixos.org/build/233241036 at 2023-09-02 + - aws-cloudfront-signer # failure in job https://hydra.nixos.org/build/233194723 at 2023-09-02 + - aws-ec2 # failure in job https://hydra.nixos.org/build/233201556 at 2023-09-02 + - aws-ec2-knownhosts # failure in job https://hydra.nixos.org/build/233237078 at 2023-09-02 + - aws-general # failure in job https://hydra.nixos.org/build/233211106 at 2023-09-02 + - aws-lambda-runtime # failure in job https://hydra.nixos.org/build/233195123 at 2023-09-02 + - aws-larpi # failure in job https://hydra.nixos.org/build/233246059 at 2023-09-02 + - aws-performance-tests # failure in job https://hydra.nixos.org/build/233259271 at 2023-09-02 + - aws-route53 # failure in job https://hydra.nixos.org/build/233218200 at 2023-09-02 + - aws-sdk-text-converter # failure in job https://hydra.nixos.org/build/233237525 at 2023-09-02 + - azubi # failure in job https://hydra.nixos.org/build/233258480 at 2023-09-02 + - azure-acs # failure in job https://hydra.nixos.org/build/233252578 at 2023-09-02 + - azure-email # failure in job https://hydra.nixos.org/build/233255535 at 2023-09-02 + - azurify # failure in job https://hydra.nixos.org/build/233239263 at 2023-09-02 + - babl # failure in job https://hydra.nixos.org/build/233204665 at 2023-09-02 + - backstop # failure in job https://hydra.nixos.org/build/233223957 at 2023-09-02 + - backtracking-exceptions # failure in job https://hydra.nixos.org/build/233233211 at 2023-09-02 + - backward-state # failure in job https://hydra.nixos.org/build/233196922 at 2023-09-02 + - bag # failure in job https://hydra.nixos.org/build/233250281 at 2023-09-02 + - Baggins # failure in job https://hydra.nixos.org/build/233192786 at 2023-09-02 + - bake # failure in job https://hydra.nixos.org/build/233211889 at 2023-09-02 + - Bang # failure in job https://hydra.nixos.org/build/233226846 at 2023-09-02 + - banwords # failure in job https://hydra.nixos.org/build/233229703 at 2023-09-02 + - barbies-th # failure in job https://hydra.nixos.org/build/233251598 at 2023-09-02 + - barchart # failure in job https://hydra.nixos.org/build/233216957 at 2023-09-02 + - barcodes-code128 # failure in job https://hydra.nixos.org/build/233227808 at 2023-09-02 + - barecheck # failure in job https://hydra.nixos.org/build/233231208 at 2023-09-02 + - barrie # failure in job https://hydra.nixos.org/build/233220267 at 2023-09-02 + - barrier # failure in job https://hydra.nixos.org/build/233229384 at 2023-09-02 + - barrier-monad # failure in job https://hydra.nixos.org/build/233215823 at 2023-09-02 + - base16-lens # failure in job https://hydra.nixos.org/build/233229864 at 2023-09-02 + - base32-lens # failure in job https://hydra.nixos.org/build/233226670 at 2023-09-02 + - base58address # failure in job https://hydra.nixos.org/build/233221633 at 2023-09-02 + - base62 # failure in job https://hydra.nixos.org/build/233250040 at 2023-09-02 + - base64-conduit # failure in job https://hydra.nixos.org/build/233197196 at 2023-09-02 + - base64-lens # failure in job https://hydra.nixos.org/build/233252600 at 2023-09-02 + - base-compat-migrate # failure in job https://hydra.nixos.org/build/233208966 at 2023-09-02 + - based # failure in job https://hydra.nixos.org/build/233211900 at 2023-09-02 + - base-encoding # failure in job https://hydra.nixos.org/build/233232516 at 2023-09-02 + - base-feature-macros # failure in job https://hydra.nixos.org/build/233212558 at 2023-09-02 + - base-generics # failure in job https://hydra.nixos.org/build/233198530 at 2023-09-02 + - base-io-access # failure in job https://hydra.nixos.org/build/233249224 at 2023-09-02 + - basement-cd # failure in job https://hydra.nixos.org/build/233191991 at 2023-09-02 + - basen # failure in job https://hydra.nixos.org/build/233210680 at 2023-09-02 + - basex-client # failure in job https://hydra.nixos.org/build/233214592 at 2023-09-02 + - basic-sop # failure in job https://hydra.nixos.org/build/233253357 at 2023-09-02 + - baskell # failure in job https://hydra.nixos.org/build/233246705 at 2023-09-02 + - battlenet # failure in job https://hydra.nixos.org/build/233260076 at 2023-09-02 + - battleplace # failure in job https://hydra.nixos.org/build/233230199 at 2023-09-02 + - bazel-coverage-report-renderer # failure in job https://hydra.nixos.org/build/233243746 at 2023-09-02 + - BCMtools # failure in job https://hydra.nixos.org/build/233250221 at 2023-09-02 + - bdd # failure in job https://hydra.nixos.org/build/233248150 at 2023-09-02 + - bdelta # failure in job https://hydra.nixos.org/build/233214765 at 2023-09-02 + - bdo # failure in job https://hydra.nixos.org/build/233216486 at 2023-09-02 + - beamable # failure in job https://hydra.nixos.org/build/233211619 at 2023-09-02 + - beam # failure in job https://hydra.nixos.org/build/233213313 at 2023-09-02 + - beam-mysql # failure in job https://hydra.nixos.org/build/233253237 at 2023-09-02 + - beam-newtype-field # failure in job https://hydra.nixos.org/build/233206317 at 2023-09-02 + - bech32 # failure in job https://hydra.nixos.org/build/233194823 at 2023-09-02 + - bed-and-breakfast # failure in job https://hydra.nixos.org/build/233221152 at 2023-09-02 + - Befunge93 # failure in job https://hydra.nixos.org/build/233226751 at 2023-09-02 + - bench-graph # failure in job https://hydra.nixos.org/build/233239830 at 2023-09-02 + - BenchmarkHistory # failure in job https://hydra.nixos.org/build/233213179 at 2023-09-02 + - bench-show # failure in job https://hydra.nixos.org/build/233245858 at 2023-09-02 + - bencodex # failure in job https://hydra.nixos.org/build/233203593 at 2023-09-02 + - bencoding-lens # failure in job https://hydra.nixos.org/build/233236760 at 2023-09-02 + - berkeleydb # failure in job https://hydra.nixos.org/build/233216507 at 2023-09-02 + - BerkeleyDBXML # failure in job https://hydra.nixos.org/build/233216219 at 2023-09-02 + - berp # failure in job https://hydra.nixos.org/build/233243070 at 2023-09-02 + - bert # failure in job https://hydra.nixos.org/build/233195424 at 2023-09-02 + - besout # failure in job https://hydra.nixos.org/build/233194433 at 2023-09-02 + - betacode # failure in job https://hydra.nixos.org/build/233193221 at 2023-09-02 + - bet # failure in job https://hydra.nixos.org/build/233205655 at 2023-09-02 + - betris # failure in job https://hydra.nixos.org/build/233200110 at 2023-09-02 + - bgmax # failure in job https://hydra.nixos.org/build/233222709 at 2023-09-02 + - bgzf # failure in job https://hydra.nixos.org/build/233224580 at 2023-09-02 + - bibdb # failure in job https://hydra.nixos.org/build/233210682 at 2023-09-02 + - bidi-icu # failure in job https://hydra.nixos.org/build/233257520 at 2023-09-02 + - bidirectional # failure in job https://hydra.nixos.org/build/233239780 at 2023-09-02 + - bidirectional-instances # failure in job https://hydra.nixos.org/build/233244611 at 2023-09-02 + - bidirectionalization-combined # failure in job https://hydra.nixos.org/build/233206201 at 2023-09-02 + - bidispec-extras # failure in job https://hydra.nixos.org/build/233235808 at 2023-09-02 + - bidispec # failure in job https://hydra.nixos.org/build/233199029 at 2023-09-02 + - BiGUL # failure in job https://hydra.nixos.org/build/233258614 at 2023-09-02 + - billeksah-services # failure in job https://hydra.nixos.org/build/233195677 at 2023-09-02 + - binary-bits # failure in job https://hydra.nixos.org/build/233199968 at 2023-09-02 + - binary-communicator # failure in job https://hydra.nixos.org/build/233248642 at 2023-09-02 + - binary-derive # failure in job https://hydra.nixos.org/build/233201950 at 2023-09-02 + - binary-ext # failure in job https://hydra.nixos.org/build/233247463 at 2023-09-02 + - binary-indexed-tree # failure in job https://hydra.nixos.org/build/233204069 at 2023-09-02 + - binary-parsers # failure in job https://hydra.nixos.org/build/233194579 at 2023-09-02 + - binary-protocol # failure in job https://hydra.nixos.org/build/233206098 at 2023-09-02 + - binary-strict # failure in job https://hydra.nixos.org/build/233231473 at 2023-09-02 + - binary-tree # failure in job https://hydra.nixos.org/build/233211047 at 2023-09-02 + - binary-typed # failure in job https://hydra.nixos.org/build/233222741 at 2023-09-02 + - BinderAnn # failure in job https://hydra.nixos.org/build/233197117 at 2023-09-02 + - binding-core # failure in job https://hydra.nixos.org/build/233223706 at 2023-09-02 + - bindings-apr # failure in job https://hydra.nixos.org/build/233212499 at 2023-09-02 + - bindings-bfd # failure in job https://hydra.nixos.org/build/233210763 at 2023-09-02 + - bindings-cctools # failure in job https://hydra.nixos.org/build/233216939 at 2023-09-02 + - bindings-common # failure in job https://hydra.nixos.org/build/233217363 at 2023-09-02 + - bindings-dc1394 # failure in job https://hydra.nixos.org/build/233200022 at 2023-09-02 + - bindings-eskit # failure in job https://hydra.nixos.org/build/233223517 at 2023-09-02 + - bindings-EsounD # failure in job https://hydra.nixos.org/build/233245565 at 2023-09-02 + - bindings-fann # failure in job https://hydra.nixos.org/build/233232900 at 2023-09-02 + - bindings-fluidsynth # failure in job https://hydra.nixos.org/build/233221612 at 2023-09-02 + - bindings-friso # failure in job https://hydra.nixos.org/build/233201584 at 2023-09-02 + - bindings-gsl # failure in job https://hydra.nixos.org/build/233243360 at 2023-09-02 + - bindings-hamlib # failure in job https://hydra.nixos.org/build/233259986 at 2023-09-02 + - bindings-hdf5 # failure in job https://hydra.nixos.org/build/233215409 at 2023-09-02 + - bindings-K8055 # failure in job https://hydra.nixos.org/build/233192986 at 2023-09-02 + - bindings-libftdi # failure in job https://hydra.nixos.org/build/233256908 at 2023-09-02 + - bindings-libg15 # failure in job https://hydra.nixos.org/build/233207984 at 2023-09-02 + - bindings-libpci # failure in job https://hydra.nixos.org/build/233200095 at 2023-09-02 + - bindings-librrd # failure in job https://hydra.nixos.org/build/233207396 at 2023-09-02 + - bindings-libstemmer # failure in job https://hydra.nixos.org/build/233199518 at 2023-09-02 + - bindings-libusb # failure in job https://hydra.nixos.org/build/233224303 at 2023-09-02 + - bindings-libv4l2 # failure in job https://hydra.nixos.org/build/233236316 at 2023-09-02 + - bindings-monetdb-mapi # failure in job https://hydra.nixos.org/build/233219584 at 2023-09-02 + - bindings-mpdecimal # failure in job https://hydra.nixos.org/build/233235379 at 2023-09-02 + - bindings-sc3 # failure in job https://hydra.nixos.org/build/233198459 at 2023-09-02 + - bindings-sipc # failure in job https://hydra.nixos.org/build/233219411 at 2023-09-02 + - bindings-wlc # failure in job https://hydra.nixos.org/build/233332720 at 2023-09-02 + - bind-marshal # failure in job https://hydra.nixos.org/build/233196758 at 2023-09-02 + - binembed # failure in job https://hydra.nixos.org/build/233219100 at 2023-09-02 + - binrep # failure in job https://hydra.nixos.org/build/233208877 at 2023-09-02 + - binsm # failure in job https://hydra.nixos.org/build/233232355 at 2023-09-02 + - biocore # failure in job https://hydra.nixos.org/build/233229466 at 2023-09-02 + - bio # failure in job https://hydra.nixos.org/build/233225273 at 2023-09-02 + - biohazard # failure in job https://hydra.nixos.org/build/233249284 at 2023-09-02 + - bio-sequence # failure in job https://hydra.nixos.org/build/233236140 at 2023-09-02 + - biscuit-haskell # failure in job https://hydra.nixos.org/build/233241833 at 2023-09-02 + - bisect-binary # failure in job https://hydra.nixos.org/build/233190746 at 2023-09-02 + - bitcoind-rpc # failure in job https://hydra.nixos.org/build/233204068 at 2023-09-02 + - bitcoin-hs # failure in job https://hydra.nixos.org/build/233251583 at 2023-09-02 + - bitcoin-keys # failure in job https://hydra.nixos.org/build/233215632 at 2023-09-02 + - bitcoin-rpc # failure in job https://hydra.nixos.org/build/233209694 at 2023-09-02 + - bitcoin-script # failure in job https://hydra.nixos.org/build/233201469 at 2023-09-02 + - bitfield # failure in job https://hydra.nixos.org/build/233235414 at 2023-09-02 + - bits-atomic # failure in job https://hydra.nixos.org/build/233236099 at 2023-09-02 + - bits-conduit # failure in job https://hydra.nixos.org/build/233236564 at 2023-09-02 + - bitset # failure in job https://hydra.nixos.org/build/233218622 at 2023-09-02 + - bits-extras # failure in job https://hydra.nixos.org/build/233217492 at 2023-09-02 + - bitspeak # failure in job https://hydra.nixos.org/build/233219582 at 2023-09-02 + - bit-stream # failure in job https://hydra.nixos.org/build/233230353 at 2023-09-02 + - bitstream # failure in job https://hydra.nixos.org/build/233240888 at 2023-09-02 + - BitStringRandomMonad # failure in job https://hydra.nixos.org/build/233203519 at 2023-09-02 + - BitSyntax # failure in job https://hydra.nixos.org/build/233211551 at 2023-09-02 + - bitx-bitcoin # failure in job https://hydra.nixos.org/build/233215594 at 2023-09-02 + - bizzlelude # failure in job https://hydra.nixos.org/build/233255574 at 2023-09-02 + - bizzlelude-js # failure in job https://hydra.nixos.org/build/233224267 at 2023-09-02 + - bkr # failure in job https://hydra.nixos.org/build/233246377 at 2023-09-02 + - blagda # failure in job https://hydra.nixos.org/build/233332725 at 2023-09-02 + - blakesum # failure in job https://hydra.nixos.org/build/233194284 at 2023-09-02 + - blas # failure in job https://hydra.nixos.org/build/233244820 at 2023-09-02 + - blaze-html-contrib # failure in job https://hydra.nixos.org/build/233203969 at 2023-09-02 + - blaze-html-hexpat # failure in job https://hydra.nixos.org/build/233251654 at 2023-09-02 + - blaze-html-truncate # failure in job https://hydra.nixos.org/build/233220789 at 2023-09-02 + - blaze-json # failure in job https://hydra.nixos.org/build/233241853 at 2023-09-02 + - blaze-shields # failure in job https://hydra.nixos.org/build/233214358 at 2023-09-02 + - blaze-textual-native # failure in job https://hydra.nixos.org/build/233250559 at 2023-09-02 + - blazeT # failure in job https://hydra.nixos.org/build/233245198 at 2023-09-02 + - blindpass # failure in job https://hydra.nixos.org/build/233210012 at 2023-09-02 + - bliplib # failure in job https://hydra.nixos.org/build/233195751 at 2023-09-02 + - blockchain # failure in job https://hydra.nixos.org/build/233245492 at 2023-09-02 + - blockhash # failure in job https://hydra.nixos.org/build/233227049 at 2023-09-02 + - Blogdown # failure in job https://hydra.nixos.org/build/233239841 at 2023-09-02 + - BlogLiterately # failure in job https://hydra.nixos.org/build/233202164 at 2023-09-02 + - bloomfilter-redis # failure in job https://hydra.nixos.org/build/233226393 at 2023-09-02 + - blosum # failure in job https://hydra.nixos.org/build/233198029 at 2023-09-02 + - blubber-server # failure in job https://hydra.nixos.org/build/233199530 at 2023-09-02 + - bludigon # failure in job https://hydra.nixos.org/build/233248190 at 2023-09-02 + - Blueprint # failure in job https://hydra.nixos.org/build/233252987 at 2023-09-02 + - bluetileutils # failure in job https://hydra.nixos.org/build/233197334 at 2023-09-02 + - blunk-hask-tests # failure in job https://hydra.nixos.org/build/233240288 at 2023-09-02 + - bogocopy # failure in job https://hydra.nixos.org/build/233232322 at 2023-09-02 + - boilerplate # failure in job https://hydra.nixos.org/build/233252821 at 2023-09-02 + - bolt # failure in job https://hydra.nixos.org/build/233234045 at 2023-09-02 + - boltzmann-brain # failure in job https://hydra.nixos.org/build/233220308 at 2023-09-02 + - bookhound-format # failure in job https://hydra.nixos.org/build/233202674 at 2023-09-02 + - bookkeeping # failure in job https://hydra.nixos.org/build/233241963 at 2023-09-02 + - boolean-like # failure in job https://hydra.nixos.org/build/233190873 at 2023-09-02 + - boolean-normal-forms # failure in job https://hydra.nixos.org/build/233220091 at 2023-09-02 + - boombox # failure in job https://hydra.nixos.org/build/233249287 at 2023-09-02 + - boring-window-switcher # failure in job https://hydra.nixos.org/build/233252547 at 2023-09-02 + - bot # failure in job https://hydra.nixos.org/build/233230089 at 2023-09-02 + - botpp # failure in job https://hydra.nixos.org/build/233201674 at 2023-09-02 + - bottom # failure in job https://hydra.nixos.org/build/233225154 at 2023-09-02 + - bounded-array # failure in job https://hydra.nixos.org/build/233200854 at 2023-09-02 + - bound-simple # failure in job https://hydra.nixos.org/build/233201896 at 2023-09-02 + - box-csv # failure in job https://hydra.nixos.org/build/233253321 at 2023-09-02 + - box-tuples # failure in job https://hydra.nixos.org/build/233205890 at 2023-09-02 + - bpath # failure in job https://hydra.nixos.org/build/233239160 at 2023-09-02 + - braid # failure in job https://hydra.nixos.org/build/233244144 at 2023-09-02 + - brain-bleep # failure in job https://hydra.nixos.org/build/233198839 at 2023-09-02 + - brassica # failure in job https://hydra.nixos.org/build/233224897 at 2023-09-02 + - Bravo # failure in job https://hydra.nixos.org/build/233199668 at 2023-09-02 + - brians-brain # failure in job https://hydra.nixos.org/build/233201634 at 2023-09-02 + - brick-dropdownmenu # failure in job https://hydra.nixos.org/build/233223686 at 2023-09-02 + - brick-filetree # failure in job https://hydra.nixos.org/build/233217076 at 2023-09-02 + - brick-list-search # failure in job https://hydra.nixos.org/build/233193835 at 2023-09-02 + - brick-panes # failure in job https://hydra.nixos.org/build/233207542 at 2023-09-02 + - bricks-internal # failure in job https://hydra.nixos.org/build/233215572 at 2023-09-02 + - brillig # failure in job https://hydra.nixos.org/build/233208148 at 2023-09-02 + - brittany # failure in job https://hydra.nixos.org/build/233234100 at 2023-09-02 + - broadcast-chan-tests # failure in job https://hydra.nixos.org/build/233202605 at 2023-09-02 + - broccoli # failure in job https://hydra.nixos.org/build/233191381 at 2023-09-02 + - broker-haskell # failure in job https://hydra.nixos.org/build/233200969 at 2023-09-02 + - brok # failure in job https://hydra.nixos.org/build/233214233 at 2023-09-02 + - bronyradiogermany-common # failure in job https://hydra.nixos.org/build/233211166 at 2023-09-02 + - brotli-conduit # failure in job https://hydra.nixos.org/build/233249983 at 2023-09-02 + - browscap # failure in job https://hydra.nixos.org/build/233196112 at 2023-09-02 + - bsd-sysctl # failure in job https://hydra.nixos.org/build/233203232 at 2023-09-02 + - bson-generic # failure in job https://hydra.nixos.org/build/233237712 at 2023-09-02 + - bson-generics # failure in job https://hydra.nixos.org/build/233251530 at 2023-09-02 + - bson-mapping # failure in job https://hydra.nixos.org/build/233242165 at 2023-09-02 + - bsparse # failure in job https://hydra.nixos.org/build/233243753 at 2023-09-02 + - btree-concurrent # failure in job https://hydra.nixos.org/build/233201065 at 2023-09-02 + - btrfs # failure in job https://hydra.nixos.org/build/233220699 at 2023-09-02 + - buffer-builder-aeson # failure in job https://hydra.nixos.org/build/233198028 at 2023-09-02 + - BufferedSocket # failure in job https://hydra.nixos.org/build/233222939 at 2023-09-02 + - buffer # failure in job https://hydra.nixos.org/build/233216007 at 2023-09-02 + - buffet # failure in job https://hydra.nixos.org/build/233250252 at 2023-09-02 + - buffon # failure in job https://hydra.nixos.org/build/233241665 at 2023-09-02 + - buffon-machines # failure in job https://hydra.nixos.org/build/233257929 at 2023-09-02 + - bugzilla # failure in job https://hydra.nixos.org/build/233223784 at 2023-09-02 + - buildable # failure in job https://hydra.nixos.org/build/233199077 at 2023-09-02 + - buildbox # failure in job https://hydra.nixos.org/build/233216315 at 2023-09-02 + - builder # failure in job https://hydra.nixos.org/build/233207846 at 2023-09-02 + - build # failure in job https://hydra.nixos.org/build/233195606 at 2023-09-02 + - bumper # failure in job https://hydra.nixos.org/build/233234378 at 2023-09-02 + - bunz # failure in job https://hydra.nixos.org/build/233193945 at 2023-09-02 + - burst-detection # failure in job https://hydra.nixos.org/build/233254074 at 2023-09-02 + - buster # failure in job https://hydra.nixos.org/build/233197502 at 2023-09-02 + - Buster # failure in job https://hydra.nixos.org/build/233214182 at 2023-09-02 + - butter # failure in job https://hydra.nixos.org/build/233212117 at 2023-09-02 + - buttplug-hs-core # failure in job https://hydra.nixos.org/build/233223928 at 2023-09-02 + - bv-little # failure in job https://hydra.nixos.org/build/233253839 at 2023-09-02 + - bv-sized-lens # failure in job https://hydra.nixos.org/build/233237486 at 2023-09-02 + - byline # failure in job https://hydra.nixos.org/build/233231017 at 2023-09-02 + - bytearray-parsing # failure in job https://hydra.nixos.org/build/233244355 at 2023-09-02 + - bytestring-arbitrary # failure in job https://hydra.nixos.org/build/233195013 at 2023-09-02 + - bytestring-class # failure in job https://hydra.nixos.org/build/233230793 at 2023-09-02 + - bytestring-conversion # failure in job https://hydra.nixos.org/build/233211464 at 2023-09-02 + - bytestring-csv # failure in job https://hydra.nixos.org/build/233215194 at 2023-09-02 + - bytestring-delta # failure in job https://hydra.nixos.org/build/233207977 at 2023-09-02 + - bytestring-handle # failure in job https://hydra.nixos.org/build/233192234 at 2023-09-02 + - bytestringparser # failure in job https://hydra.nixos.org/build/233227781 at 2023-09-02 + - bytestringparser-temporary # failure in job https://hydra.nixos.org/build/233226655 at 2023-09-02 + - bytestring-plain # failure in job https://hydra.nixos.org/build/233230746 at 2023-09-02 + - bytestringreadp # failure in job https://hydra.nixos.org/build/233209066 at 2023-09-02 + - bytestring-rematch # failure in job https://hydra.nixos.org/build/233228234 at 2023-09-02 + - bytestring-show # failure in job https://hydra.nixos.org/build/233207681 at 2023-09-02 + - bytestring-substring # failure in job https://hydra.nixos.org/build/233244318 at 2023-09-02 + - bytestring-time # failure in job https://hydra.nixos.org/build/233190686 at 2023-09-02 + - bytestring-typenats # failure in job https://hydra.nixos.org/build/233211815 at 2023-09-02 + - bzlib-conduit-jappie # failure in job https://hydra.nixos.org/build/233210179 at 2023-09-02 + - c10k # failure in job https://hydra.nixos.org/build/233213264 at 2023-09-02 + - c2ats # failure in job https://hydra.nixos.org/build/233220801 at 2023-09-02 + - cabal2doap # failure in job https://hydra.nixos.org/build/233207973 at 2023-09-02 + - cabal2ebuild # failure in job https://hydra.nixos.org/build/233221248 at 2023-09-02 + - cabal2ghci # failure in job https://hydra.nixos.org/build/233233018 at 2023-09-02 + - cabal2json # failure in job https://hydra.nixos.org/build/233196099 at 2023-09-02 + - cabal-audit # failure in job https://hydra.nixos.org/build/233193414 at 2023-09-02 + - cabal-auto-expose # failure in job https://hydra.nixos.org/build/233195440 at 2023-09-02 + - cabal-bundle-clib # failure in job https://hydra.nixos.org/build/233199225 at 2023-09-02 + - cabal-constraints # failure in job https://hydra.nixos.org/build/233214316 at 2023-09-02 + - cabal-db # failure in job https://hydra.nixos.org/build/233197235 at 2023-09-02 + - cabal-debian # failure in job https://hydra.nixos.org/build/233255267 at 2023-09-02 + - cabal-dependency-licenses # failure in job https://hydra.nixos.org/build/233249247 at 2023-09-02 + - cabal-dev # failure in job https://hydra.nixos.org/build/233227918 at 2023-09-02 + - cabal-dir # failure in job https://hydra.nixos.org/build/233194037 at 2023-09-02 + - cabal-edit # failure in job https://hydra.nixos.org/build/233244268 at 2023-09-02 + - cabal-file-th # failure in job https://hydra.nixos.org/build/233224650 at 2023-09-02 + - cabal-ghc-dynflags # failure in job https://hydra.nixos.org/build/233244580 at 2023-09-02 + - cabal-ghci # failure in job https://hydra.nixos.org/build/233239354 at 2023-09-02 + - cabal-graphdeps # failure in job https://hydra.nixos.org/build/233221966 at 2023-09-02 + - cabalgraph # failure in job https://hydra.nixos.org/build/233241573 at 2023-09-02 + - cabal-hoogle # failure in job https://hydra.nixos.org/build/233191666 at 2023-09-02 + - Cabal-ide-backend # failure in job https://hydra.nixos.org/build/233258880 at 2023-09-02 + - cabal-info # failure in job https://hydra.nixos.org/build/233225001 at 2023-09-02 + - cabal-install-bundle # failure in job https://hydra.nixos.org/build/233194629 at 2023-09-02 + - cabal-install-ghc72 # failure in job https://hydra.nixos.org/build/233246160 at 2023-09-02 + - cabal-install-ghc74 # failure in job https://hydra.nixos.org/build/233226625 at 2023-09-02 + - cabalish # failure in job https://hydra.nixos.org/build/233193578 at 2023-09-02 + - cabal-lenses # failure in job https://hydra.nixos.org/build/233247565 at 2023-09-02 + - cabal-meta # failure in job https://hydra.nixos.org/build/233194466 at 2023-09-02 + - cabal-mon # failure in job https://hydra.nixos.org/build/233217320 at 2023-09-02 + - cabal-nirvana # failure in job https://hydra.nixos.org/build/233222083 at 2023-09-02 + - cabal-plan # failure in job https://hydra.nixos.org/build/233223914 at 2023-09-02 + - cabal-progdeps # failure in job https://hydra.nixos.org/build/233251917 at 2023-09-02 + - cabalQuery # failure in job https://hydra.nixos.org/build/233211475 at 2023-09-02 + - CabalSearch # failure in job https://hydra.nixos.org/build/233200817 at 2023-09-02 + - cabal-setup # failure in job https://hydra.nixos.org/build/233225406 at 2023-09-02 + - cabal-sort # failure in job https://hydra.nixos.org/build/233240882 at 2023-09-02 + - cabal-src # failure in job https://hydra.nixos.org/build/233229475 at 2023-09-02 + - cabal-test-quickcheck # failure in job https://hydra.nixos.org/build/233211903 at 2023-09-02 + - cabal-toolkit # failure in job https://hydra.nixos.org/build/233192328 at 2023-09-02 + - cabal-upload # failure in job https://hydra.nixos.org/build/233207791 at 2023-09-02 + - cabalvchk # failure in job https://hydra.nixos.org/build/233221561 at 2023-09-02 + - cabin # failure in job https://hydra.nixos.org/build/233225287 at 2023-09-02 + - cabocha # failure in job https://hydra.nixos.org/build/233259983 at 2023-09-02 + - cached # failure in job https://hydra.nixos.org/build/233249807 at 2023-09-02 + - cache-polysemy # failure in job https://hydra.nixos.org/build/233200602 at 2023-09-02 + - caching # failure in job https://hydra.nixos.org/build/233233548 at 2023-09-02 + - cacophony # failure in job https://hydra.nixos.org/build/233239380 at 2023-09-02 + - cafeteria-prelude # failure in job https://hydra.nixos.org/build/233254881 at 2023-09-02 + - cairo-core # failure in job https://hydra.nixos.org/build/233248151 at 2023-09-02 + - cake3 # failure in job https://hydra.nixos.org/build/233231662 at 2023-09-02 + - cal3d # failure in job https://hydra.nixos.org/build/233200357 at 2023-09-02 + - caledon # failure in job https://hydra.nixos.org/build/233209888 at 2023-09-02 + - calenderweek # failure in job https://hydra.nixos.org/build/233209930 at 2023-09-02 + - call-alloy # failure in job https://hydra.nixos.org/build/233249056 at 2023-09-02 + - cal-layout # failure in job https://hydra.nixos.org/build/233191194 at 2023-09-02 + - call-haskell-from-anything # failure in job https://hydra.nixos.org/build/233222493 at 2023-09-02 + - call-plantuml # failure in job https://hydra.nixos.org/build/233241670 at 2023-09-02 + - canon # failure in job https://hydra.nixos.org/build/233235027 at 2023-09-02 + - canonical-filepath # failure in job https://hydra.nixos.org/build/233233390 at 2023-09-02 + - canteven-listen-http # failure in job https://hydra.nixos.org/build/233210500 at 2023-09-02 + - canteven-log # failure in job https://hydra.nixos.org/build/233220599 at 2023-09-02 + - canteven-parsedate # failure in job https://hydra.nixos.org/build/233218076 at 2023-09-02 + - cantor # failure in job https://hydra.nixos.org/build/233204922 at 2023-09-02 + - Capabilities # failure in job https://hydra.nixos.org/build/233233256 at 2023-09-02 + - capataz # failure in job https://hydra.nixos.org/build/233226186 at 2023-09-02 + - ca-patterns # failure in job https://hydra.nixos.org/build/233246800 at 2023-09-02 + - capped-list # failure in job https://hydra.nixos.org/build/233232627 at 2023-09-02 + - capri # failure in job https://hydra.nixos.org/build/233247984 at 2023-09-02 + - caramia # failure in job https://hydra.nixos.org/build/233257225 at 2023-09-02 + - carbonara # failure in job https://hydra.nixos.org/build/233201166 at 2023-09-02 + - carettah # failure in job https://hydra.nixos.org/build/233230612 at 2023-09-02 + - CarneadesDSL # failure in job https://hydra.nixos.org/build/233236706 at 2023-09-02 + - carte # failure in job https://hydra.nixos.org/build/233201806 at 2023-09-02 + - Cartesian # failure in job https://hydra.nixos.org/build/233249956 at 2023-09-02 + - casa-abbreviations-and-acronyms # failure in job https://hydra.nixos.org/build/233194663 at 2023-09-02 + - casadi-bindings-internal # failure in job https://hydra.nixos.org/build/233256224 at 2023-09-02 + - Cascade # failure in job https://hydra.nixos.org/build/233223917 at 2023-09-02 + - cascading # failure in job https://hydra.nixos.org/build/233238563 at 2023-09-02 + - case-insensitive-match # failure in job https://hydra.nixos.org/build/233252304 at 2023-09-02 + - caseof # failure in job https://hydra.nixos.org/build/233256025 at 2023-09-02 + - cas-hashable # failure in job https://hydra.nixos.org/build/233238789 at 2023-09-02 + - casr-logbook # failure in job https://hydra.nixos.org/build/233227183 at 2023-09-02 + - casr-logbook-types # failure in job https://hydra.nixos.org/build/233231548 at 2023-09-02 + - cassandra-cql # failure in job https://hydra.nixos.org/build/233194724 at 2023-09-02 + - cassava-conduit # failure in job https://hydra.nixos.org/build/233220495 at 2023-09-02 + - Cassava # failure in job https://hydra.nixos.org/build/233245677 at 2023-09-02 + - cassava-records # failure in job https://hydra.nixos.org/build/233259049 at 2023-09-02 + - cassava-streams # failure in job https://hydra.nixos.org/build/233222669 at 2023-09-02 + - cassette # failure in job https://hydra.nixos.org/build/233201251 at 2023-09-02 + - castagnoli # failure in job https://hydra.nixos.org/build/233213036 at 2023-09-02 + - castle # failure in job https://hydra.nixos.org/build/233204027 at 2023-09-02 + - catamorphism # failure in job https://hydra.nixos.org/build/233208488 at 2023-09-02 + - Catana # failure in job https://hydra.nixos.org/build/233196550 at 2023-09-02 + - catch-fd # failure in job https://hydra.nixos.org/build/233223935 at 2023-09-02 + - category-printf # failure in job https://hydra.nixos.org/build/233216355 at 2023-09-02 + - category-traced # failure in job https://hydra.nixos.org/build/233193963 at 2023-09-02 + - catnplus # failure in job https://hydra.nixos.org/build/233241280 at 2023-09-02 + - cautious-file # failure in job https://hydra.nixos.org/build/233218702 at 2023-09-02 + - cautious-gen # failure in job https://hydra.nixos.org/build/233258367 at 2023-09-02 + - cayene-lpp # failure in job https://hydra.nixos.org/build/233228959 at 2023-09-02 + - cayley-client # failure in job https://hydra.nixos.org/build/233260112 at 2023-09-02 + - cblrepo # failure in job https://hydra.nixos.org/build/233251926 at 2023-09-02 + - cbor-tool # failure in job https://hydra.nixos.org/build/233198797 at 2023-09-02 + - CCA # failure in job https://hydra.nixos.org/build/233206723 at 2023-09-02 + - ccast # failure in job https://hydra.nixos.org/build/233254517 at 2023-09-02 + - CC-delcont-cxe # failure in job https://hydra.nixos.org/build/233190865 at 2023-09-02 + - CC-delcont-exc # failure in job https://hydra.nixos.org/build/233236141 at 2023-09-02 + - CC-delcont-ref # failure in job https://hydra.nixos.org/build/233229304 at 2023-09-02 + - CC-delcont-ref-tf # failure in job https://hydra.nixos.org/build/233257768 at 2023-09-02 + - cci # failure in job https://hydra.nixos.org/build/233244756 at 2023-09-02 + - ccnx # failure in job https://hydra.nixos.org/build/233237732 at 2023-09-02 + - cdp # failure in job https://hydra.nixos.org/build/233251735 at 2023-09-02 + - c-dsl # failure in job https://hydra.nixos.org/build/233236075 at 2023-09-02 + - cedict # failure in job https://hydra.nixos.org/build/233206454 at 2023-09-02 + - cef3-raw # failure in job https://hydra.nixos.org/build/233216467 at 2023-09-02 + - cef # failure in job https://hydra.nixos.org/build/233221542 at 2023-09-02 + - cellrenderer-cairo # failure in job https://hydra.nixos.org/build/233245838 at 2023-09-02 + - cereal-derive # failure in job https://hydra.nixos.org/build/233229941 at 2023-09-02 + - cereal-ieee754 # failure in job https://hydra.nixos.org/build/233208388 at 2023-09-02 + - cereal-plus # failure in job https://hydra.nixos.org/build/233226162 at 2023-09-02 + - cfenv # failure in job https://hydra.nixos.org/build/233235017 at 2023-09-02 + - cf # failure in job https://hydra.nixos.org/build/233244067 at 2023-09-02 + - cfg # failure in job https://hydra.nixos.org/build/233236445 at 2023-09-02 + - cfn-flip # failure in job https://hydra.nixos.org/build/233221000 at 2023-09-02 + - cgen # failure in job https://hydra.nixos.org/build/233198570 at 2023-09-02 + - cg # failure in job https://hydra.nixos.org/build/233212272 at 2023-09-02 + - cgi-utils # failure in job https://hydra.nixos.org/build/233251773 at 2023-09-02 + - cgroup-rts-threads # failure in job https://hydra.nixos.org/build/233207888 at 2023-09-02 + - chalmers-lava2000 # failure in job https://hydra.nixos.org/build/233239592 at 2023-09-02 + - changelogged # failure in job https://hydra.nixos.org/build/233211675 at 2023-09-02 + - character-cases # failure in job https://hydra.nixos.org/build/233197636 at 2023-09-02 + - charter # failure in job https://hydra.nixos.org/build/233237264 at 2023-09-02 + - chart-histogram # failure in job https://hydra.nixos.org/build/233250470 at 2023-09-02 + - Chart-simple # failure in job https://hydra.nixos.org/build/233240919 at 2023-09-02 + - chaselev-deque # failure in job https://hydra.nixos.org/build/233237595 at 2023-09-02 + - chatty-text # failure in job https://hydra.nixos.org/build/233199498 at 2023-09-02 + - chatwork # failure in job https://hydra.nixos.org/build/233240489 at 2023-09-02 + - cheapskate # failure in job https://hydra.nixos.org/build/233197892 at 2023-09-02 + - check-cfg-ambiguity # failure in job https://hydra.nixos.org/build/233251852 at 2023-09-02 + - checked # failure in job https://hydra.nixos.org/build/233223182 at 2023-09-02 + - Checked # failure in job https://hydra.nixos.org/build/233257598 at 2023-09-02 + - checkmate # failure in job https://hydra.nixos.org/build/233248012 at 2023-09-02 + - chez-grater # failure in job https://hydra.nixos.org/build/233213537 at 2023-09-02 + - chiphunk # failure in job https://hydra.nixos.org/build/233232520 at 2023-09-02 + - Chitra # failure in job https://hydra.nixos.org/build/233256826 at 2023-09-02 + - choose # failure in job https://hydra.nixos.org/build/233194245 at 2023-09-02 + - chorale # failure in job https://hydra.nixos.org/build/233200153 at 2023-09-02 + - chp # failure in job https://hydra.nixos.org/build/233232868 at 2023-09-02 + - ChristmasTree # failure in job https://hydra.nixos.org/build/233259648 at 2023-09-02 + - chronograph # failure in job https://hydra.nixos.org/build/233232822 at 2023-09-02 + - chr-parse # failure in job https://hydra.nixos.org/build/233243933 at 2023-09-02 + - chunky # failure in job https://hydra.nixos.org/build/233216440 at 2023-09-02 + - church # failure in job https://hydra.nixos.org/build/233223920 at 2023-09-02 + - church-maybe # failure in job https://hydra.nixos.org/build/233258572 at 2023-09-02 + - churros # failure in job https://hydra.nixos.org/build/233218976 at 2023-09-02 + - cicero-api # failure in job https://hydra.nixos.org/build/233222299 at 2023-09-02 + - cielo # failure in job https://hydra.nixos.org/build/233240001 at 2023-09-02 + - cil # failure in job https://hydra.nixos.org/build/233255428 at 2023-09-02 + - cimple # failure in job https://hydra.nixos.org/build/233243386 at 2023-09-02 + - cinvoke # failure in job https://hydra.nixos.org/build/233244748 at 2023-09-02 + - c-io # failure in job https://hydra.nixos.org/build/233198654 at 2023-09-02 + - cio # failure in job https://hydra.nixos.org/build/233218269 at 2023-09-02 + - cipher-aes128 # failure in job https://hydra.nixos.org/build/233242645 at 2023-09-02 + - cipher-blowfish # failure in job https://hydra.nixos.org/build/233193834 at 2023-09-02 + - cipher-des # failure in job https://hydra.nixos.org/build/233232112 at 2023-09-02 + - circlehs # failure in job https://hydra.nixos.org/build/233246591 at 2023-09-02 + - citeproc-hs # failure in job https://hydra.nixos.org/build/233254388 at 2023-09-02 + - cjk # failure in job https://hydra.nixos.org/build/233258734 at 2023-09-02 + - cj-token # failure in job https://hydra.nixos.org/build/233253928 at 2023-09-02 + - cl3-hmatrix-interface # failure in job https://hydra.nixos.org/build/233260081 at 2023-09-02 + - cl3-linear-interface # failure in job https://hydra.nixos.org/build/233255205 at 2023-09-02 + - clang-compilation-database # failure in job https://hydra.nixos.org/build/233225320 at 2023-09-02 + - clang-pure # failure in job https://hydra.nixos.org/build/233193420 at 2023-09-02 + - clanki # failure in job https://hydra.nixos.org/build/233196970 at 2023-09-02 + - clarifai # failure in job https://hydra.nixos.org/build/233229480 at 2023-09-02 + - CLASE # failure in job https://hydra.nixos.org/build/233234459 at 2023-09-02 + - clash-prelude # failure in job https://hydra.nixos.org/build/233252128 at 2023-09-02 + - Clash-Royale-Hack-Cheats # failure in job https://hydra.nixos.org/build/233216034 at 2023-09-02 + - ClassLaws # failure in job https://hydra.nixos.org/build/233243019 at 2023-09-02 + - classy-influxdb-simple # failure in job https://hydra.nixos.org/build/233253418 at 2023-09-02 + - classy-parallel # failure in job https://hydra.nixos.org/build/233213514 at 2023-09-02 + - classyplate # failure in job https://hydra.nixos.org/build/233212613 at 2023-09-02 + - ClassyPrelude # failure in job https://hydra.nixos.org/build/233216521 at 2023-09-02 + - cld2 # failure in job https://hydra.nixos.org/build/233205709 at 2023-09-02 + - Clean # failure in job https://hydra.nixos.org/build/233255199 at 2023-09-02 + - clean-unions # failure in job https://hydra.nixos.org/build/233237582 at 2023-09-02 + - cleff # failure in job https://hydra.nixos.org/build/233243158 at 2023-09-02 + - clevercss # failure in job https://hydra.nixos.org/build/233206298 at 2023-09-02 + - clexer # failure in job https://hydra.nixos.org/build/233229804 at 2023-09-02 + - cli-builder # failure in job https://hydra.nixos.org/build/233209961 at 2023-09-02 + - cli-extras # failure in job https://hydra.nixos.org/build/233226908 at 2023-09-02 + - CLI # failure in job https://hydra.nixos.org/build/233191087 at 2023-09-02 + - clif # failure in job https://hydra.nixos.org/build/233197110 at 2023-09-02 + - clifm # failure in job https://hydra.nixos.org/build/233227426 at 2023-09-02 + - clingo # failure in job https://hydra.nixos.org/build/233238084 at 2023-09-02 + - clippard # failure in job https://hydra.nixos.org/build/233252884 at 2023-09-02 + - clipper # failure in job https://hydra.nixos.org/build/233235418 at 2023-09-02 + - clisparkline # failure in job https://hydra.nixos.org/build/233218465 at 2023-09-02 + - clit # failure in job https://hydra.nixos.org/build/233227334 at 2023-09-02 + - cloben # failure in job https://hydra.nixos.org/build/233194390 at 2023-09-02 + - clocked # failure in job https://hydra.nixos.org/build/233241524 at 2023-09-02 + - clock-extras # failure in job https://hydra.nixos.org/build/233190748 at 2023-09-02 + - clogparse # failure in job https://hydra.nixos.org/build/233220294 at 2023-09-02 + - clone-all # failure in job https://hydra.nixos.org/build/233234063 at 2023-09-02 + - closed-classes # failure in job https://hydra.nixos.org/build/233250965 at 2023-09-02 + - closed-intervals # failure in job https://hydra.nixos.org/build/233209665 at 2023-09-02 + - closure # failure in job https://hydra.nixos.org/build/233215133 at 2023-09-02 + - cloudfront-signer # failure in job https://hydra.nixos.org/build/233238255 at 2023-09-02 + - clplug # failure in job https://hydra.nixos.org/build/233236794 at 2023-09-02 + - clr-host # failure in job https://hydra.nixos.org/build/233207709 at 2023-09-02 + - clr-typed # failure in job https://hydra.nixos.org/build/233212102 at 2023-09-02 + - cluss # failure in job https://hydra.nixos.org/build/233245341 at 2023-09-02 + - cmark-highlight # failure in job https://hydra.nixos.org/build/233218534 at 2023-09-02 + - cmark-patterns # failure in job https://hydra.nixos.org/build/233192983 at 2023-09-02 + - cmark-sections # failure in job https://hydra.nixos.org/build/233222829 at 2023-09-02 + - cmath # failure in job https://hydra.nixos.org/build/233236588 at 2023-09-02 + - cmd-item # failure in job https://hydra.nixos.org/build/233223946 at 2023-09-02 + - cmdlib # failure in job https://hydra.nixos.org/build/233222751 at 2023-09-02 + - cmdtheline # failure in job https://hydra.nixos.org/build/233199201 at 2023-09-02 + - cmf # failure in job https://hydra.nixos.org/build/233256827 at 2023-09-02 + - cmonad # failure in job https://hydra.nixos.org/build/233254242 at 2023-09-02 + - c-mosquitto # failure in job https://hydra.nixos.org/build/233231310 at 2023-09-02 + - cmph # failure in job https://hydra.nixos.org/build/233225766 at 2023-09-02 + - CMQ # failure in job https://hydra.nixos.org/build/233233168 at 2023-09-02 + - cmt # failure in job https://hydra.nixos.org/build/233233474 at 2023-09-02 + - coalpit # failure in job https://hydra.nixos.org/build/233193043 at 2023-09-02 + - cobot-tools # failure in job https://hydra.nixos.org/build/233259173 at 2023-09-02 + - code-builder # failure in job https://hydra.nixos.org/build/233239215 at 2023-09-02 + - codec-beam # failure in job https://hydra.nixos.org/build/233198704 at 2023-09-02 + - codecov-haskell # failure in job https://hydra.nixos.org/build/233256758 at 2023-09-02 + - codeforces-cli # failure in job https://hydra.nixos.org/build/233210719 at 2023-09-02 + - codepad # failure in job https://hydra.nixos.org/build/233197730 at 2023-09-02 + - codex # failure in job https://hydra.nixos.org/build/233212311 at 2023-09-02 + - codo-notation # failure in job https://hydra.nixos.org/build/233202566 at 2023-09-02 + - coercible-utils # failure in job https://hydra.nixos.org/build/233230462 at 2023-09-02 + - coinbase-pro # failure in job https://hydra.nixos.org/build/233245350 at 2023-09-02 + - coin # failure in job https://hydra.nixos.org/build/233198975 at 2023-09-02 + - colchis # failure in job https://hydra.nixos.org/build/233207690 at 2023-09-02 + - collada-output # failure in job https://hydra.nixos.org/build/233192394 at 2023-09-02 + - collapse-util # failure in job https://hydra.nixos.org/build/233238818 at 2023-09-02 + - collate # failure in job https://hydra.nixos.org/build/233243978 at 2023-09-02 + - collections-api # failure in job https://hydra.nixos.org/build/233220769 at 2023-09-02 + - collections # failure in job https://hydra.nixos.org/build/233251207 at 2023-09-02 + - co-log-sys # failure in job https://hydra.nixos.org/build/233206587 at 2023-09-02 + - colonnade # failure in job https://hydra.nixos.org/build/233248956 at 2023-09-02 + - colorless # failure in job https://hydra.nixos.org/build/233220728 at 2023-09-02 + - coltrane # failure in job https://hydra.nixos.org/build/233216437 at 2023-09-02 + - comark-syntax # failure in job https://hydra.nixos.org/build/233243043 at 2023-09-02 + - combinat-compat # failure in job https://hydra.nixos.org/build/233201337 at 2023-09-02 + - combinat # failure in job https://hydra.nixos.org/build/233259056 at 2023-09-02 + - combinatorial-problems # failure in job https://hydra.nixos.org/build/233244505 at 2023-09-02 + - combinator-interactive # failure in job https://hydra.nixos.org/build/233233138 at 2023-09-02 + - combobuffer # failure in job https://hydra.nixos.org/build/233240114 at 2023-09-02 + - com # failure in job https://hydra.nixos.org/build/233213869 at 2023-09-02 + - commander # failure in job https://hydra.nixos.org/build/233239812 at 2023-09-02 + - Command # failure in job https://hydra.nixos.org/build/233249718 at 2023-09-02 + - Commando # failure in job https://hydra.nixos.org/build/233248911 at 2023-09-02 + - commodities # failure in job https://hydra.nixos.org/build/233239851 at 2023-09-02 + - Compactable # failure in job https://hydra.nixos.org/build/233227285 at 2023-09-02 + - compactable # failure in job https://hydra.nixos.org/build/233228106 at 2023-09-02 + - compact # failure in job https://hydra.nixos.org/build/233203421 at 2023-09-02 + - compact-list # failure in job https://hydra.nixos.org/build/233241961 at 2023-09-02 + - compact-map # failure in job https://hydra.nixos.org/build/233201665 at 2023-09-02 + - compact-sequences # failure in job https://hydra.nixos.org/build/233208553 at 2023-09-02 + - compact-string # failure in job https://hydra.nixos.org/build/233204162 at 2023-09-02 + - compact-string-fix # failure in job https://hydra.nixos.org/build/233238513 at 2023-09-02 + - comparse # failure in job https://hydra.nixos.org/build/233220012 at 2023-09-02 + - compdata-dags # failure in job https://hydra.nixos.org/build/233216580 at 2023-09-02 + - compdata-param # failure in job https://hydra.nixos.org/build/233227003 at 2023-09-02 + - compendium-client # failure in job https://hydra.nixos.org/build/233231884 at 2023-09-02 + - competition # failure in job https://hydra.nixos.org/build/233243172 at 2023-09-02 + - compilation # failure in job https://hydra.nixos.org/build/233252348 at 2023-09-02 + - complex-generic # failure in job https://hydra.nixos.org/build/233243926 at 2023-09-02 + - composable-associations-aeson # failure in job https://hydra.nixos.org/build/233247162 at 2023-09-02 + - compose-trans # failure in job https://hydra.nixos.org/build/233236785 at 2023-09-02 + - composite-aeson-path # failure in job https://hydra.nixos.org/build/233203114 at 2023-09-02 + - composite-aeson-refined # failure in job https://hydra.nixos.org/build/233241450 at 2023-09-02 + - composite-cassava # failure in job https://hydra.nixos.org/build/233241110 at 2023-09-02 + - composite-ekg # failure in job https://hydra.nixos.org/build/233235858 at 2023-09-02 + - composite-opaleye # failure in job https://hydra.nixos.org/build/233256318 at 2023-09-02 + - composite-swagger # failure in job https://hydra.nixos.org/build/233258006 at 2023-09-02 + - composition-tree # failure in job https://hydra.nixos.org/build/233219116 at 2023-09-02 + - compressed # failure in job https://hydra.nixos.org/build/233214349 at 2023-09-02 + - compression # failure in job https://hydra.nixos.org/build/233250833 at 2023-09-02 + - compstrat # failure in job https://hydra.nixos.org/build/233255500 at 2023-09-02 + - comptrans # failure in job https://hydra.nixos.org/build/233209853 at 2023-09-02 + - computational-geometry # failure in job https://hydra.nixos.org/build/233220627 at 2023-09-02 + - computations # failure in job https://hydra.nixos.org/build/233249992 at 2023-09-02 + - ConClusion # failure in job https://hydra.nixos.org/build/233236846 at 2023-09-02 + - concrete-relaxng-parser # failure in job https://hydra.nixos.org/build/233192905 at 2023-09-02 + - concrete-typerep # failure in job https://hydra.nixos.org/build/233234198 at 2023-09-02 + - concurrent-buffer # failure in job https://hydra.nixos.org/build/233249002 at 2023-09-02 + - Concurrent-Cache # failure in job https://hydra.nixos.org/build/233238494 at 2023-09-02 + - Concurrential # failure in job https://hydra.nixos.org/build/233221502 at 2023-09-02 + - concurrent-state # failure in job https://hydra.nixos.org/build/233248441 at 2023-09-02 + - concurrent-st # failure in job https://hydra.nixos.org/build/233219451 at 2023-09-02 + - concurrent-utilities # failure in job https://hydra.nixos.org/build/233224892 at 2023-09-02 + - conditional-restriction-parser # failure in job https://hydra.nixos.org/build/233211470 at 2023-09-02 + - condorcet # failure in job https://hydra.nixos.org/build/233208640 at 2023-09-02 + - conductive-base # failure in job https://hydra.nixos.org/build/233234746 at 2023-09-02 + - conduit-audio-lame # failure in job https://hydra.nixos.org/build/233253987 at 2023-09-02 + - conduit-audio-samplerate # failure in job https://hydra.nixos.org/build/233208457 at 2023-09-02 + - conduit-connection # failure in job https://hydra.nixos.org/build/233232646 at 2023-09-02 + - conduit-find # failure in job https://hydra.nixos.org/build/233259909 at 2023-09-02 + - conduit-iconv # failure in job https://hydra.nixos.org/build/233246555 at 2023-09-02 + - conduit-network-stream # failure in job https://hydra.nixos.org/build/233243436 at 2023-09-02 + - conduit-resumablesink # failure in job https://hydra.nixos.org/build/233248566 at 2023-09-02 + - conduit-tokenize-attoparsec # failure in job https://hydra.nixos.org/build/233237152 at 2023-09-02 + - conduit-vfs # failure in job https://hydra.nixos.org/build/233205270 at 2023-09-02 + - conferer-dhall # failure in job https://hydra.nixos.org/build/233208902 at 2023-09-02 + - conferer-hspec # failure in job https://hydra.nixos.org/build/233225311 at 2023-09-02 + - conferer-provider-json # failure in job https://hydra.nixos.org/build/233195298 at 2023-09-02 + - conferer-snap # failure in job https://hydra.nixos.org/build/233215013 at 2023-09-02 + - conferer-source-json # failure in job https://hydra.nixos.org/build/233195696 at 2023-09-02 + - conf # failure in job https://hydra.nixos.org/build/233213738 at 2023-09-02 + - ConfigFileTH # failure in job https://hydra.nixos.org/build/233191126 at 2023-09-02 + - config-parser # failure in job https://hydra.nixos.org/build/233206136 at 2023-09-02 + - Configurable # failure in job https://hydra.nixos.org/build/233200781 at 2023-09-02 + - configuration # failure in job https://hydra.nixos.org/build/233195399 at 2023-09-02 + - configurator-pg # failure in job https://hydra.nixos.org/build/233219556 at 2023-09-02 + - config-value-getopt # failure in job https://hydra.nixos.org/build/233204566 at 2023-09-02 + - confsolve # failure in job https://hydra.nixos.org/build/233194913 at 2023-09-02 + - congruence-relation # failure in job https://hydra.nixos.org/build/233222125 at 2023-09-02 + - conjure # failure in job https://hydra.nixos.org/build/233220494 at 2023-09-02 + - conkin # failure in job https://hydra.nixos.org/build/233246485 at 2023-09-02 + - conlogger # failure in job https://hydra.nixos.org/build/233193354 at 2023-09-02 + - connection-pool # failure in job https://hydra.nixos.org/build/233199817 at 2023-09-02 + - connections # failure in job https://hydra.nixos.org/build/233193445 at 2023-09-02 + - connection-string # failure in job https://hydra.nixos.org/build/233205032 at 2023-09-02 + - Conscript # failure in job https://hydra.nixos.org/build/233216349 at 2023-09-02 + - consistent # failure in job https://hydra.nixos.org/build/233210122 at 2023-09-02 + - console-program # failure in job https://hydra.nixos.org/build/233207490 at 2023-09-02 + - constable # failure in job https://hydra.nixos.org/build/233256456 at 2023-09-02 + - const # failure in job https://hydra.nixos.org/build/233227000 at 2023-09-02 + - const-math-ghc-plugin # failure in job https://hydra.nixos.org/build/233198147 at 2023-09-02 + - constrained-dynamic # failure in job https://hydra.nixos.org/build/233192949 at 2023-09-02 + - constrained # failure in job https://hydra.nixos.org/build/233248444 at 2023-09-02 + - constrained-monads # failure in job https://hydra.nixos.org/build/233250865 at 2023-09-02 + - ConstraintKinds # failure in job https://hydra.nixos.org/build/233222006 at 2023-09-02 + - constraints-deriving # failure in job https://hydra.nixos.org/build/233222833 at 2023-09-02 + - constraints-emerge # failure in job https://hydra.nixos.org/build/233242146 at 2023-09-02 + - constr-eq # failure in job https://hydra.nixos.org/build/233231863 at 2023-09-02 + - construct # failure in job https://hydra.nixos.org/build/233248810 at 2023-09-02 + - constructive-algebra # failure in job https://hydra.nixos.org/build/233241970 at 2023-09-02 + - consul-haskell # failure in job https://hydra.nixos.org/build/233195306 at 2023-09-02 + - Consumer # failure in job https://hydra.nixos.org/build/233227840 at 2023-09-02 + - containers-benchmark # failure in job https://hydra.nixos.org/build/233244707 at 2023-09-02 + - containers-unicode-symbols # failure in job https://hydra.nixos.org/build/233206693 at 2023-09-02 + - containers-verified # failure in job https://hydra.nixos.org/build/233228855 at 2023-09-02 + - ContArrow # failure in job https://hydra.nixos.org/build/233215540 at 2023-09-02 + - ContextAlgebra # failure in job https://hydra.nixos.org/build/233197054 at 2023-09-02 + - context-stack # failure in job https://hydra.nixos.org/build/233228489 at 2023-09-02 + - contiguous-checked # failure in job https://hydra.nixos.org/build/233225639 at 2023-09-02 + - contiguous-fft # failure in job https://hydra.nixos.org/build/233197368 at 2023-09-02 + - continued-fractions # failure in job https://hydra.nixos.org/build/233258785 at 2023-09-02 + - continue # failure in job https://hydra.nixos.org/build/233231634 at 2023-09-02 + - contracheck-applicative # failure in job https://hydra.nixos.org/build/233255104 at 2023-09-02 + - Contract # failure in job https://hydra.nixos.org/build/233242103 at 2023-09-02 + - contra-tracers # failure in job https://hydra.nixos.org/build/233197959 at 2023-09-02 + - control-dsl # failure in job https://hydra.nixos.org/build/233249037 at 2023-09-02 + - control-iso # failure in job https://hydra.nixos.org/build/233229763 at 2023-09-02 + - control-monad-failure # failure in job https://hydra.nixos.org/build/233240265 at 2023-09-02 + - control-monad-failure-mtl # failure in job https://hydra.nixos.org/build/233245249 at 2023-09-02 + - Control-Monad-ST2 # failure in job https://hydra.nixos.org/build/233222919 at 2023-09-02 + - contstuff-monads-tf # failure in job https://hydra.nixos.org/build/233224064 at 2023-09-02 + - contstuff-transformers # failure in job https://hydra.nixos.org/build/233244153 at 2023-09-02 + - copilot-c99 # failure in job https://hydra.nixos.org/build/233258148 at 2023-09-02 + - copr # failure in job https://hydra.nixos.org/build/233252310 at 2023-09-02 + - coquina # failure in job https://hydra.nixos.org/build/233254665 at 2023-09-02 + - COrdering # failure in job https://hydra.nixos.org/build/233232083 at 2023-09-02 + - corebot-bliki # failure in job https://hydra.nixos.org/build/233241143 at 2023-09-02 + - core-compiler # failure in job https://hydra.nixos.org/build/233250303 at 2023-09-02 + - CoreDump # failure in job https://hydra.nixos.org/build/233247860 at 2023-09-02 + - CoreErlang # failure in job https://hydra.nixos.org/build/233199110 at 2023-09-02 + - core # failure in job https://hydra.nixos.org/build/233253971 at 2023-09-02 + - core-haskell # failure in job https://hydra.nixos.org/build/233222588 at 2023-09-02 + - core-warn # failure in job https://hydra.nixos.org/build/233204404 at 2023-09-02 + - Coroutine # failure in job https://hydra.nixos.org/build/233211213 at 2023-09-02 + - coroutine-object # failure in job https://hydra.nixos.org/build/233220413 at 2023-09-02 + - couchdb-conduit # failure in job https://hydra.nixos.org/build/233227244 at 2023-09-02 + - CouchDB # failure in job https://hydra.nixos.org/build/233253163 at 2023-09-02 + - couch-hs # failure in job https://hydra.nixos.org/build/233210189 at 2023-09-02 + - counter # failure in job https://hydra.nixos.org/build/233193842 at 2023-09-02 + - country-codes # failure in job https://hydra.nixos.org/build/233248159 at 2023-09-02 + - courier # failure in job https://hydra.nixos.org/build/233215760 at 2023-09-02 + - court # failure in job https://hydra.nixos.org/build/233192047 at 2023-09-02 + - coverage # failure in job https://hydra.nixos.org/build/233199365 at 2023-09-02 + - cparsing # failure in job https://hydra.nixos.org/build/233192377 at 2023-09-02 + - cpio-conduit # failure in job https://hydra.nixos.org/build/233220518 at 2023-09-02 + - cplusplus-th # failure in job https://hydra.nixos.org/build/233204461 at 2023-09-02 + - cpuperf # failure in job https://hydra.nixos.org/build/233252964 at 2023-09-02 + - cpython # failure in job https://hydra.nixos.org/build/233255188 at 2023-09-02 + - cql-io # failure in job https://hydra.nixos.org/build/233245286 at 2023-09-02 + - cqrs-core # failure in job https://hydra.nixos.org/build/233192102 at 2023-09-02 + - crack # failure in job https://hydra.nixos.org/build/233229111 at 2023-09-02 + - Craft3e # failure in job https://hydra.nixos.org/build/233255152 at 2023-09-02 + - craftwerk # failure in job https://hydra.nixos.org/build/233221392 at 2023-09-02 + - crawlchain # failure in job https://hydra.nixos.org/build/233192450 at 2023-09-02 + - crc16 # failure in job https://hydra.nixos.org/build/233253624 at 2023-09-02 + - crc32c # failure in job https://hydra.nixos.org/build/233217329 at 2023-09-02 + - crdt-event-fold # failure in job https://hydra.nixos.org/build/233191438 at 2023-09-02 + - crdt # failure in job https://hydra.nixos.org/build/233254930 at 2023-09-02 + - creatur # failure in job https://hydra.nixos.org/build/233252591 at 2023-09-02 + - credential-store # failure in job https://hydra.nixos.org/build/233230143 at 2023-09-02 + - crem # failure in job https://hydra.nixos.org/build/233240415 at 2023-09-02 + - cr # failure in job https://hydra.nixos.org/build/233235318 at 2023-09-02 + - critbit # failure in job https://hydra.nixos.org/build/233237880 at 2023-09-02 + - criterion-cmp # failure in job https://hydra.nixos.org/build/233192619 at 2023-09-02 + - criterion-compare # failure in job https://hydra.nixos.org/build/233257858 at 2023-09-02 + - criterion-plus # failure in job https://hydra.nixos.org/build/233194095 at 2023-09-02 + - criterion-to-html # failure in job https://hydra.nixos.org/build/233209983 at 2023-09-02 + - crjdt-haskell # failure in job https://hydra.nixos.org/build/233199652 at 2023-09-02 + - crockford # failure in job https://hydra.nixos.org/build/233210759 at 2023-09-02 + - crocodile # failure in job https://hydra.nixos.org/build/233222277 at 2023-09-02 + - cronus # failure in job https://hydra.nixos.org/build/233225303 at 2023-09-02 + - cruncher-types # failure in job https://hydra.nixos.org/build/233229024 at 2023-09-02 + - crunghc # failure in job https://hydra.nixos.org/build/233193295 at 2023-09-02 + - crypto-cipher-benchmarks # failure in job https://hydra.nixos.org/build/233195297 at 2023-09-02 + - cryptocompare # failure in job https://hydra.nixos.org/build/233192898 at 2023-09-02 + - cryptoconditions # failure in job https://hydra.nixos.org/build/233211816 at 2023-09-02 + - cryptoids-types # failure in job https://hydra.nixos.org/build/233242596 at 2023-09-02 + - crypto-keys-ssh # failure in job https://hydra.nixos.org/build/233222227 at 2023-09-02 + - crypto-multihash # failure in job https://hydra.nixos.org/build/233220770 at 2023-09-02 + - crypton-connection # failure in job https://hydra.nixos.org/build/233230068 at 2023-09-02 + - crypto-numbers # failure in job https://hydra.nixos.org/build/233225721 at 2023-09-02 + - crypto-pubkey-openssh # failure in job https://hydra.nixos.org/build/233207007 at 2023-09-02 + - crypto-random-effect # failure in job https://hydra.nixos.org/build/233236324 at 2023-09-02 + - crypto-simple # failure in job https://hydra.nixos.org/build/233192703 at 2023-09-02 + - cryptsy-api # failure in job https://hydra.nixos.org/build/233195814 at 2023-09-02 + - csa # failure in job https://hydra.nixos.org/build/233233907 at 2023-09-02 + - cse-ghc-plugin # failure in job https://hydra.nixos.org/build/233251963 at 2023-09-02 + - csound-expression-dynamic # failure in job https://hydra.nixos.org/build/233225568 at 2023-09-02 + - CSPM-Frontend # failure in job https://hydra.nixos.org/build/233219295 at 2023-09-02 + - cspretty # failure in job https://hydra.nixos.org/build/233246796 at 2023-09-02 + - css-easings # failure in job https://hydra.nixos.org/build/233203513 at 2023-09-02 + - css # failure in job https://hydra.nixos.org/build/233220825 at 2023-09-02 + - css-selectors # failure in job https://hydra.nixos.org/build/233247710 at 2023-09-02 + - css-simple # failure in job https://hydra.nixos.org/build/233220768 at 2023-09-02 + - C-structs # failure in job https://hydra.nixos.org/build/233247498 at 2023-09-02 + - csv-nptools # failure in job https://hydra.nixos.org/build/233215773 at 2023-09-02 + - csv-sip # failure in job https://hydra.nixos.org/build/233211292 at 2023-09-02 + - ctemplate # failure in job https://hydra.nixos.org/build/233257909 at 2023-09-02 + - ctkl # failure in job https://hydra.nixos.org/build/233219516 at 2023-09-02 + - cuckoo # failure in job https://hydra.nixos.org/build/233210915 at 2023-09-02 + - cuckoo-filter # failure in job https://hydra.nixos.org/build/233226484 at 2023-09-02 + - curl-aeson # failure in job https://hydra.nixos.org/build/233210106 at 2023-09-02 + - curl-runnings # failure in job https://hydra.nixos.org/build/233258680 at 2023-09-02 + - curly-expander # failure in job https://hydra.nixos.org/build/233250838 at 2023-09-02 + - currencies # failure in job https://hydra.nixos.org/build/233216717 at 2023-09-02 + - currency-convert # failure in job https://hydra.nixos.org/build/233224509 at 2023-09-02 + - curry-base # failure in job https://hydra.nixos.org/build/233246647 at 2023-09-02 + - CurryDB # failure in job https://hydra.nixos.org/build/233238995 at 2023-09-02 + - curry-frontend # failure in job https://hydra.nixos.org/build/233190895 at 2023-09-02 + - curryrs # failure in job https://hydra.nixos.org/build/233250943 at 2023-09-02 + - cursedcsv # failure in job https://hydra.nixos.org/build/233253732 at 2023-09-02 + - curves # failure in job https://hydra.nixos.org/build/233237354 at 2023-09-02 + - custom-prelude # failure in job https://hydra.nixos.org/build/233216882 at 2023-09-02 + - cut-the-crap # failure in job https://hydra.nixos.org/build/233238478 at 2023-09-02 + - CV # failure in job https://hydra.nixos.org/build/233223571 at 2023-09-02 + - d3js # failure in job https://hydra.nixos.org/build/233251474 at 2023-09-02 + - dag # failure in job https://hydra.nixos.org/build/233220719 at 2023-09-02 + - DAG-Tournament # failure in job https://hydra.nixos.org/build/233218747 at 2023-09-02 + - dahdit # failure in job https://hydra.nixos.org/build/233245113 at 2023-09-02 + - damnpacket # failure in job https://hydra.nixos.org/build/233235248 at 2023-09-02 + - danibot # failure in job https://hydra.nixos.org/build/233197740 at 2023-09-02 + - Dao # failure in job https://hydra.nixos.org/build/233207745 at 2023-09-02 + - dao # failure in job https://hydra.nixos.org/build/233240654 at 2023-09-02 + - darcs2dot # failure in job https://hydra.nixos.org/build/233209236 at 2023-09-02 + - darcs-buildpackage # failure in job https://hydra.nixos.org/build/233213566 at 2023-09-02 + - darcs-cabalized # failure in job https://hydra.nixos.org/build/233234765 at 2023-09-02 + - darcs-graph # failure in job https://hydra.nixos.org/build/233245230 at 2023-09-02 + - darcs-monitor # failure in job https://hydra.nixos.org/build/233249455 at 2023-09-02 + - darkplaces-rcon # failure in job https://hydra.nixos.org/build/233247609 at 2023-09-02 + - darkplaces-text # failure in job https://hydra.nixos.org/build/233249204 at 2023-09-02 + - data-accessor-monadLib # failure in job https://hydra.nixos.org/build/233212217 at 2023-09-02 + - data-accessor-monads-fd # failure in job https://hydra.nixos.org/build/233222664 at 2023-09-02 + - data-accessor-monads-tf # failure in job https://hydra.nixos.org/build/233252242 at 2023-09-02 + - data-accessor-template # failure in job https://hydra.nixos.org/build/233210431 at 2023-09-02 + - data-ascii # failure in job https://hydra.nixos.org/build/233254894 at 2023-09-02 + - data-aviary # failure in job https://hydra.nixos.org/build/233243398 at 2023-09-02 + - data-base # failure in job https://hydra.nixos.org/build/233217341 at 2023-09-02 + - database-migrate # failure in job https://hydra.nixos.org/build/233201597 at 2023-09-02 + - database-study # failure in job https://hydra.nixos.org/build/233222466 at 2023-09-02 + - data-check # failure in job https://hydra.nixos.org/build/233210384 at 2023-09-02 + - data-combinator-gen # failure in job https://hydra.nixos.org/build/233193769 at 2023-09-02 + - data-concurrent-queue # failure in job https://hydra.nixos.org/build/233252841 at 2023-09-02 + - data-construction # failure in job https://hydra.nixos.org/build/233251464 at 2023-09-02 + - data-constructors # failure in job https://hydra.nixos.org/build/233241097 at 2023-09-02 + - data-default-instances-new-base # failure in job https://hydra.nixos.org/build/233256824 at 2023-09-02 + - data-default-instances-text # failure in job https://hydra.nixos.org/build/233209026 at 2023-09-02 + - data-dispersal # failure in job https://hydra.nixos.org/build/233242611 at 2023-09-02 + - data-diverse-lens # failure in job https://hydra.nixos.org/build/233221672 at 2023-09-02 + - datadog # failure in job https://hydra.nixos.org/build/233191124 at 2023-09-02 + - data-easy # failure in job https://hydra.nixos.org/build/233250802 at 2023-09-02 + - data-embed # failure in job https://hydra.nixos.org/build/233201230 at 2023-09-02 + - data-emoticons # failure in job https://hydra.nixos.org/build/233255035 at 2023-09-02 + - data-filepath # failure in job https://hydra.nixos.org/build/233243231 at 2023-09-02 + - data-filter # failure in job https://hydra.nixos.org/build/233240259 at 2023-09-02 + - data-fin # failure in job https://hydra.nixos.org/build/233216426 at 2023-09-02 + - data-fin-simple # failure in job https://hydra.nixos.org/build/233191648 at 2023-09-02 + - data-flagset # failure in job https://hydra.nixos.org/build/233211231 at 2023-09-02 + - data-forced # failure in job https://hydra.nixos.org/build/233242817 at 2023-09-02 + - data-index # failure in job https://hydra.nixos.org/build/233197067 at 2023-09-02 + - DataIndex # failure in job https://hydra.nixos.org/build/233254506 at 2023-09-02 + - data-ivar # failure in job https://hydra.nixos.org/build/233239043 at 2023-09-02 + - data-kiln # failure in job https://hydra.nixos.org/build/233220764 at 2023-09-02 + - data-lens-fd # failure in job https://hydra.nixos.org/build/233252537 at 2023-09-02 + - data-lens-template # failure in job https://hydra.nixos.org/build/233194446 at 2023-09-02 + - datalog # failure in job https://hydra.nixos.org/build/233242707 at 2023-09-02 + - data-map-multikey # failure in job https://hydra.nixos.org/build/233223141 at 2023-09-02 + - data-named # failure in job https://hydra.nixos.org/build/233196088 at 2023-09-02 + - data-nat # failure in job https://hydra.nixos.org/build/233226801 at 2023-09-02 + - data-object # failure in job https://hydra.nixos.org/build/233207567 at 2023-09-02 + - datapacker # failure in job https://hydra.nixos.org/build/233206524 at 2023-09-02 + - data-pdf-fieldreader # failure in job https://hydra.nixos.org/build/233246028 at 2023-09-02 + - data-pprint # failure in job https://hydra.nixos.org/build/233221300 at 2023-09-02 + - data-quotientref # failure in job https://hydra.nixos.org/build/233258168 at 2023-09-02 + - data-reify-cse # failure in job https://hydra.nixos.org/build/233240126 at 2023-09-02 + - data-repr # failure in job https://hydra.nixos.org/build/233255402 at 2023-09-02 + - data-rev # failure in job https://hydra.nixos.org/build/233239036 at 2023-09-02 + - datarobot # failure in job https://hydra.nixos.org/build/233206913 at 2023-09-02 + - Data-Rope # failure in job https://hydra.nixos.org/build/233194176 at 2023-09-02 + - data-rope # failure in job https://hydra.nixos.org/build/233245124 at 2023-09-02 + - data-r-tree # failure in job https://hydra.nixos.org/build/233232284 at 2023-09-02 + - data-size # failure in job https://hydra.nixos.org/build/233192633 at 2023-09-02 + - data-spacepart # failure in job https://hydra.nixos.org/build/233239099 at 2023-09-02 + - data-standards # failure in job https://hydra.nixos.org/build/233219444 at 2023-09-02 + - data-store # failure in job https://hydra.nixos.org/build/233239477 at 2023-09-02 + - data-stringmap # failure in job https://hydra.nixos.org/build/233218683 at 2023-09-02 + - DataTreeView # failure in job https://hydra.nixos.org/build/233213871 at 2023-09-02 + - data-type # failure in job https://hydra.nixos.org/build/233196761 at 2023-09-02 + - data-util # failure in job https://hydra.nixos.org/build/233194965 at 2023-09-02 + - data-validation # failure in job https://hydra.nixos.org/build/233217804 at 2023-09-02 + - data-variant # failure in job https://hydra.nixos.org/build/233236491 at 2023-09-02 + - data-vector-growable # failure in job https://hydra.nixos.org/build/233244511 at 2023-09-02 + - dates # failure in job https://hydra.nixos.org/build/233194418 at 2023-09-02 + - datetime # failure in job https://hydra.nixos.org/build/233231333 at 2023-09-02 + - datetime-sb # failure in job https://hydra.nixos.org/build/233213753 at 2023-09-02 + - dawdle # failure in job https://hydra.nixos.org/build/233201776 at 2023-09-02 + - dawg # failure in job https://hydra.nixos.org/build/233198731 at 2023-09-02 + - dawg-ord # failure in job https://hydra.nixos.org/build/233192491 at 2023-09-02 + - daytripper # failure in job https://hydra.nixos.org/build/233233486 at 2023-09-02 + - dbcleaner # failure in job https://hydra.nixos.org/build/233203745 at 2023-09-02 + - dbf # failure in job https://hydra.nixos.org/build/233256644 at 2023-09-02 + - DBlimited # failure in job https://hydra.nixos.org/build/233249214 at 2023-09-02 + - dbm # failure in job https://hydra.nixos.org/build/233191264 at 2023-09-02 + - dbmigrations # failure in job https://hydra.nixos.org/build/233242055 at 2023-09-02 + - dbus-core # failure in job https://hydra.nixos.org/build/233228888 at 2023-09-02 + - DBus # failure in job https://hydra.nixos.org/build/233207529 at 2023-09-02 + - d-bus # failure in job https://hydra.nixos.org/build/233228668 at 2023-09-02 + - dbus-qq # failure in job https://hydra.nixos.org/build/233219927 at 2023-09-02 + - dclabel-eci11 # failure in job https://hydra.nixos.org/build/233210572 at 2023-09-02 + - dclabel # failure in job https://hydra.nixos.org/build/233231206 at 2023-09-02 + - dcpu16 # failure in job https://hydra.nixos.org/build/233201425 at 2023-09-02 + - ddc-base # failure in job https://hydra.nixos.org/build/233190710 at 2023-09-02 + - ddc-code # failure in job https://hydra.nixos.org/build/233226278 at 2023-09-02 + - dead-code-detection # failure in job https://hydra.nixos.org/build/233205957 at 2023-09-02 + - Deadpan-DDP # failure in job https://hydra.nixos.org/build/233221990 at 2023-09-02 + - dead-simple-json # failure in job https://hydra.nixos.org/build/233204301 at 2023-09-02 + - dear-imgui # failure in job https://hydra.nixos.org/build/233238246 at 2023-09-02 + - debugger-hs # failure in job https://hydra.nixos.org/build/233206302 at 2023-09-02 + - debug-me # failure in job https://hydra.nixos.org/build/233213991 at 2023-09-02 + - debug-trace-file # failure in job https://hydra.nixos.org/build/233231840 at 2023-09-02 + - debug-tracy # failure in job https://hydra.nixos.org/build/233242924 at 2023-09-02 + - decepticons # failure in job https://hydra.nixos.org/build/233258681 at 2023-09-02 + - decision-diagrams # failure in job https://hydra.nixos.org/build/233239021 at 2023-09-02 + - DecisionTree # failure in job https://hydra.nixos.org/build/233231682 at 2023-09-02 + - decoder-conduit # failure in job https://hydra.nixos.org/build/233228100 at 2023-09-02 + - deepcontrol # failure in job https://hydra.nixos.org/build/233238035 at 2023-09-02 + - DeepDarkFantasy # failure in job https://hydra.nixos.org/build/233242150 at 2023-09-02 + - deepl # failure in job https://hydra.nixos.org/build/233232956 at 2023-09-02 + - deepseq-bounded # failure in job https://hydra.nixos.org/build/233211193 at 2023-09-02 + - deepseq-instances # failure in job https://hydra.nixos.org/build/233236748 at 2023-09-02 + - deepseq-magic # failure in job https://hydra.nixos.org/build/233228993 at 2023-09-02 + - deepseq-th # failure in job https://hydra.nixos.org/build/233233106 at 2023-09-02 + - definitive-base # failure in job https://hydra.nixos.org/build/233255489 at 2023-09-02 + - deiko-config # failure in job https://hydra.nixos.org/build/233210895 at 2023-09-02 + - deka # failure in job https://hydra.nixos.org/build/233206540 at 2023-09-02 + - Delta-Lambda # failure in job https://hydra.nixos.org/build/233239406 at 2023-09-02 + - delude # failure in job https://hydra.nixos.org/build/233231224 at 2023-09-02 + - demarcate # failure in job https://hydra.nixos.org/build/233194005 at 2023-09-02 + - denominate # failure in job https://hydra.nixos.org/build/233214619 at 2023-09-02 + - dense # failure in job https://hydra.nixos.org/build/233205807 at 2023-09-02 + - dense-int-set # failure in job https://hydra.nixos.org/build/233214797 at 2023-09-02 + - dependent-hashmap # failure in job https://hydra.nixos.org/build/233202881 at 2023-09-02 + - dependent-monoidal-map # failure in job https://hydra.nixos.org/build/233212829 at 2023-09-02 + - dep-t # failure in job https://hydra.nixos.org/build/233217847 at 2023-09-02 + - deptrack-core # failure in job https://hydra.nixos.org/build/233239143 at 2023-09-02 + - derangement # failure in job https://hydra.nixos.org/build/233209660 at 2023-09-02 + - derivation-trees # failure in job https://hydra.nixos.org/build/233254679 at 2023-09-02 + - derive-enumerable # failure in job https://hydra.nixos.org/build/233254290 at 2023-09-02 + - derive # failure in job https://hydra.nixos.org/build/233209166 at 2023-09-02 + - derive-gadt # failure in job https://hydra.nixos.org/build/233220430 at 2023-09-02 + - deriveJsonNoPrefix # failure in job https://hydra.nixos.org/build/233242453 at 2023-09-02 + - derive-lifted-instances # failure in job https://hydra.nixos.org/build/233194868 at 2023-09-02 + - derive-monoid # failure in job https://hydra.nixos.org/build/233205670 at 2023-09-02 + - derive-trie # failure in job https://hydra.nixos.org/build/233207961 at 2023-09-02 + - derp-lib # failure in job https://hydra.nixos.org/build/233199053 at 2023-09-02 + - describe # failure in job https://hydra.nixos.org/build/233207296 at 2023-09-02 + - desktop-portal # failure in job https://hydra.nixos.org/build/233241462 at 2023-09-02 + - deterministic-game-engine # failure in job https://hydra.nixos.org/build/233259188 at 2023-09-02 + - detrospector # failure in job https://hydra.nixos.org/build/233209424 at 2023-09-02 + - deunicode # failure in job https://hydra.nixos.org/build/233220923 at 2023-09-02 + - devil # failure in job https://hydra.nixos.org/build/233251561 at 2023-09-02 + - df1-html # failure in job https://hydra.nixos.org/build/233251495 at 2023-09-02 + - Dflow # failure in job https://hydra.nixos.org/build/233233514 at 2023-09-02 + - dfsbuild # failure in job https://hydra.nixos.org/build/233209260 at 2023-09-02 + - dgim # failure in job https://hydra.nixos.org/build/233227538 at 2023-09-02 + - dgs # failure in job https://hydra.nixos.org/build/233221509 at 2023-09-02 + - dhall-check # failure in job https://hydra.nixos.org/build/233206425 at 2023-09-02 + - dhall-csv # failure in job https://hydra.nixos.org/build/233256049 at 2023-09-02 + - dhall-fly # failure in job https://hydra.nixos.org/build/233220306 at 2023-09-02 + - dhall-lsp-server # failure in job https://hydra.nixos.org/build/233216852 at 2023-09-02 + - dhall-recursive-adt # failure in job https://hydra.nixos.org/build/233210665 at 2023-09-02 + - dhall-text # failure in job https://hydra.nixos.org/build/233253809 at 2023-09-02 + - dhall-to-cabal # failure in job https://hydra.nixos.org/build/233193270 at 2023-09-02 + - dhcp-lease-parser # failure in job https://hydra.nixos.org/build/233229124 at 2023-09-02 + - dhrun # failure in job https://hydra.nixos.org/build/233227529 at 2023-09-02 + - dia-base # failure in job https://hydra.nixos.org/build/233230896 at 2023-09-02 + - diagnose # failure in job https://hydra.nixos.org/build/233231767 at 2023-09-02 + - diagrams-boolean # failure in job https://hydra.nixos.org/build/233202036 at 2023-09-02 + - diagrams-pdf # failure in job https://hydra.nixos.org/build/233197864 at 2023-09-02 + - diagrams-qrcode # failure in job https://hydra.nixos.org/build/233229542 at 2023-09-02 + - diagrams-rubiks-cube # failure in job https://hydra.nixos.org/build/233213426 at 2023-09-02 + - diagrams-tikz # failure in job https://hydra.nixos.org/build/233237968 at 2023-09-02 + - dialogflow-fulfillment # failure in job https://hydra.nixos.org/build/233214148 at 2023-09-02 + - dialogue # failure in job https://hydra.nixos.org/build/233214533 at 2023-09-02 + - dib # failure in job https://hydra.nixos.org/build/233222111 at 2023-09-02 + - dice2tex # failure in job https://hydra.nixos.org/build/233240419 at 2023-09-02 + - dicom # failure in job https://hydra.nixos.org/build/233222473 at 2023-09-02 + - dictionaries # failure in job https://hydra.nixos.org/build/233210367 at 2023-09-02 + - dictparser # failure in job https://hydra.nixos.org/build/233215487 at 2023-09-02 + - diet # failure in job https://hydra.nixos.org/build/233259625 at 2023-09-02 + - diffcabal # failure in job https://hydra.nixos.org/build/233203648 at 2023-09-02 + - DifferentialEvolution # failure in job https://hydra.nixos.org/build/233230795 at 2023-09-02 + - diff-gestalt # failure in job https://hydra.nixos.org/build/233195164 at 2023-09-02 + - diffmap # failure in job https://hydra.nixos.org/build/233219852 at 2023-09-02 + - difftodo # failure in job https://hydra.nixos.org/build/233215179 at 2023-09-02 + - digestive-bootstrap # failure in job https://hydra.nixos.org/build/233208165 at 2023-09-02 + - digestive-functors-aeson # failure in job https://hydra.nixos.org/build/233207417 at 2023-09-02 + - digestive-functors-happstack # failure in job https://hydra.nixos.org/build/233222641 at 2023-09-02 + - digestive-functors-lucid # failure in job https://hydra.nixos.org/build/233209397 at 2023-09-02 + - digestive-functors-snap # failure in job https://hydra.nixos.org/build/233238117 at 2023-09-02 + - digest-pure # failure in job https://hydra.nixos.org/build/233194135 at 2023-09-02 + - DigitalOcean # failure in job https://hydra.nixos.org/build/233231291 at 2023-09-02 + - digitalocean-kzs # failure in job https://hydra.nixos.org/build/233251576 at 2023-09-02 + - dijkstra-simple # failure in job https://hydra.nixos.org/build/233218373 at 2023-09-02 + - DimensionalHash # failure in job https://hydra.nixos.org/build/233230945 at 2023-09-02 + - diophantine # failure in job https://hydra.nixos.org/build/233229215 at 2023-09-02 + - diplomacy # failure in job https://hydra.nixos.org/build/233207895 at 2023-09-02 + - direct-binary-files # failure in job https://hydra.nixos.org/build/233246387 at 2023-09-02 + - directed-cubical # failure in job https://hydra.nixos.org/build/233215175 at 2023-09-02 + - direct-fastcgi # failure in job https://hydra.nixos.org/build/233258737 at 2023-09-02 + - direct-http # failure in job https://hydra.nixos.org/build/233232796 at 2023-09-02 + - directory-ospath-streaming # failure in job https://hydra.nixos.org/build/233240003 at 2023-09-02 + - direct-plugins # failure in job https://hydra.nixos.org/build/233211547 at 2023-09-02 + - direm # failure in job https://hydra.nixos.org/build/233211496 at 2023-09-02 + - disco # failure in job https://hydra.nixos.org/build/233212298 at 2023-09-02 + - discordian-calendar # failure in job https://hydra.nixos.org/build/233218124 at 2023-09-02 + - discord-types # failure in job https://hydra.nixos.org/build/233251778 at 2023-09-02 + - discrete # failure in job https://hydra.nixos.org/build/233206492 at 2023-09-02 + - DiscussionSupportSystem # failure in job https://hydra.nixos.org/build/233244662 at 2023-09-02 + - Dish # failure in job https://hydra.nixos.org/build/233233264 at 2023-09-02 + - disjoint-containers # failure in job https://hydra.nixos.org/build/233219391 at 2023-09-02 + - disjoint-set # failure in job https://hydra.nixos.org/build/233201934 at 2023-09-02 + - disjoint-set-stateful # failure in job https://hydra.nixos.org/build/233253300 at 2023-09-02 + - diskhash # failure in job https://hydra.nixos.org/build/233230362 at 2023-09-02 + - distance # failure in job https://hydra.nixos.org/build/233255082 at 2023-09-02 + - Dist # failure in job https://hydra.nixos.org/build/233217811 at 2023-09-02 + - distributed-closure # failure in job https://hydra.nixos.org/build/233223516 at 2023-09-02 + - distribution # failure in job https://hydra.nixos.org/build/233227278 at 2023-09-02 + - dist-upload # failure in job https://hydra.nixos.org/build/233225018 at 2023-09-02 + - ditto-lucid # failure in job https://hydra.nixos.org/build/233256989 at 2023-09-02 + - djembe # failure in job https://hydra.nixos.org/build/233201037 at 2023-09-02 + - djinn-ghc # failure in job https://hydra.nixos.org/build/233250488 at 2023-09-02 + - djinn-th # failure in job https://hydra.nixos.org/build/233219394 at 2023-09-02 + - dmcc # failure in job https://hydra.nixos.org/build/233259362 at 2023-09-02 + - dmenu # failure in job https://hydra.nixos.org/build/233230756 at 2023-09-02 + - dnscache # failure in job https://hydra.nixos.org/build/233227512 at 2023-09-02 + - dns-patterns # failure in job https://hydra.nixos.org/build/233251499 at 2023-09-02 + - dnsrbl # failure in job https://hydra.nixos.org/build/233196401 at 2023-09-02 + - dnssd # failure in job https://hydra.nixos.org/build/233194195 at 2023-09-02 + - dobutok # failure in job https://hydra.nixos.org/build/233221133 at 2023-09-02 + - dobutokO # failure in job https://hydra.nixos.org/build/233259278 at 2023-09-02 + - doccheck # failure in job https://hydra.nixos.org/build/233234564 at 2023-09-02 + - docidx # failure in job https://hydra.nixos.org/build/233253428 at 2023-09-02 + - docker-build-cacher # failure in job https://hydra.nixos.org/build/233209897 at 2023-09-02 + - dockercook # failure in job https://hydra.nixos.org/build/233243738 at 2023-09-02 + - docker # failure in job https://hydra.nixos.org/build/233195921 at 2023-09-02 + - dockerfile-creator # failure in job https://hydra.nixos.org/build/233225136 at 2023-09-02 + - docopt # failure in job https://hydra.nixos.org/build/233256772 at 2023-09-02 + - docrecords # failure in job https://hydra.nixos.org/build/233218633 at 2023-09-02 + - doctest-discover-configurator # failure in job https://hydra.nixos.org/build/233200147 at 2023-09-02 + - doctest-prop # failure in job https://hydra.nixos.org/build/233255947 at 2023-09-02 + - docusign-example # failure in job https://hydra.nixos.org/build/233242945 at 2023-09-02 + - docvim # failure in job https://hydra.nixos.org/build/233206985 at 2023-09-02 + - DOH # failure in job https://hydra.nixos.org/build/233231913 at 2023-09-02 + - domaindriven-core # failure in job https://hydra.nixos.org/build/233234739 at 2023-09-02 + - domain-optics # failure in job https://hydra.nixos.org/build/233255232 at 2023-09-02 + - dom-events # failure in job https://hydra.nixos.org/build/233231199 at 2023-09-02 + - dom-parser # failure in job https://hydra.nixos.org/build/233235797 at 2023-09-02 + - domplate # failure in job https://hydra.nixos.org/build/233241400 at 2023-09-02 + - dom-selector # failure in job https://hydra.nixos.org/build/233212663 at 2023-09-02 + - do-notation-dsl # failure in job https://hydra.nixos.org/build/233252824 at 2023-09-02 + - dormouse-uri # failure in job https://hydra.nixos.org/build/233191706 at 2023-09-02 + - do-spaces # failure in job https://hydra.nixos.org/build/233244331 at 2023-09-02 + - dotfs # failure in job https://hydra.nixos.org/build/233200762 at 2023-09-02 + - dot-linker # failure in job https://hydra.nixos.org/build/233237512 at 2023-09-02 + - doublezip # failure in job https://hydra.nixos.org/build/233219270 at 2023-09-02 + - doublify-toolkit # failure in job https://hydra.nixos.org/build/233223302 at 2023-09-02 + - downloader # failure in job https://hydra.nixos.org/build/233195131 at 2023-09-02 + - dozenal # failure in job https://hydra.nixos.org/build/233255439 at 2023-09-02 + - dozens # failure in job https://hydra.nixos.org/build/233200638 at 2023-09-02 + - dph-base # failure in job https://hydra.nixos.org/build/233211189 at 2023-09-02 + - dpkg # failure in job https://hydra.nixos.org/build/233663149 at 2023-09-02 + - DPM # failure in job https://hydra.nixos.org/build/233191307 at 2023-09-02 + - dpor # failure in job https://hydra.nixos.org/build/233213785 at 2023-09-02 + - dragen # failure in job https://hydra.nixos.org/build/233254270 at 2023-09-02 + - drawille # failure in job https://hydra.nixos.org/build/233226647 at 2023-09-02 + - dr-cabal # failure in job https://hydra.nixos.org/build/233253361 at 2023-09-02 + - drClickOn # failure in job https://hydra.nixos.org/build/233217916 at 2023-09-02 + - dresdner-verkehrsbetriebe # failure in job https://hydra.nixos.org/build/233222542 at 2023-09-02 + - DrIFT-cabalized # failure in job https://hydra.nixos.org/build/233221273 at 2023-09-02 + - drifter-postgresql # failure in job https://hydra.nixos.org/build/233248442 at 2023-09-02 + - DrIFT # failure in job https://hydra.nixos.org/build/233220463 at 2023-09-02 + - drmaa # failure in job https://hydra.nixos.org/build/233241074 at 2023-09-02 + - drone # failure in job https://hydra.nixos.org/build/233207037 at 2023-09-02 + - dropbox # failure in job https://hydra.nixos.org/build/233598046 at 2023-09-02 + - dsc # failure in job https://hydra.nixos.org/build/233243851 at 2023-09-02 + - ds-kanren # failure in job https://hydra.nixos.org/build/233216074 at 2023-09-02 + - dson # failure in job https://hydra.nixos.org/build/233210971 at 2023-09-02 + - dson-parsec # failure in job https://hydra.nixos.org/build/233236453 at 2023-09-02 + - dstring # failure in job https://hydra.nixos.org/build/233238408 at 2023-09-02 + - dsv # failure in job https://hydra.nixos.org/build/233228032 at 2023-09-02 + - DTC # failure in job https://hydra.nixos.org/build/233252009 at 2023-09-02 + - dtd-text # failure in job https://hydra.nixos.org/build/233203050 at 2023-09-02 + - dtw # failure in job https://hydra.nixos.org/build/233198932 at 2023-09-02 + - dualizer # failure in job https://hydra.nixos.org/build/233237592 at 2023-09-02 + - duckling # failure in job https://hydra.nixos.org/build/233247880 at 2023-09-02 + - duet # failure in job https://hydra.nixos.org/build/233219004 at 2023-09-02 + - dump-core # failure in job https://hydra.nixos.org/build/233244428 at 2023-09-02 + - dunai-core # failure in job https://hydra.nixos.org/build/233255804 at 2023-09-02 + - Dung # failure in job https://hydra.nixos.org/build/233206343 at 2023-09-02 + - duplo # failure in job https://hydra.nixos.org/build/233237341 at 2023-09-02 + - dura # failure in job https://hydra.nixos.org/build/233210320 at 2023-09-02 + - duration # failure in job https://hydra.nixos.org/build/233207705 at 2023-09-02 + - dvault # failure in job https://hydra.nixos.org/build/233225259 at 2023-09-02 + - dvdread # failure in job https://hydra.nixos.org/build/233227587 at 2023-09-02 + - dvi-processing # failure in job https://hydra.nixos.org/build/233224281 at 2023-09-02 + - dwarfadt # failure in job https://hydra.nixos.org/build/233254895 at 2023-09-02 + - dwarf # failure in job https://hydra.nixos.org/build/233244074 at 2023-09-02 + - dyckword # failure in job https://hydra.nixos.org/build/233256385 at 2023-09-02 + - dyna-brick # failure in job https://hydra.nixos.org/build/233193254 at 2023-09-02 + - dynamic-graphs # failure in job https://hydra.nixos.org/build/233210231 at 2023-09-02 + - dynamic-mvector # failure in job https://hydra.nixos.org/build/233252826 at 2023-09-02 + - dynamic-object # failure in job https://hydra.nixos.org/build/233216605 at 2023-09-02 + - DynamicTimeWarp # failure in job https://hydra.nixos.org/build/233238244 at 2023-09-02 + - dynloader # failure in job https://hydra.nixos.org/build/233239248 at 2023-09-02 + - DysFRP # failure in job https://hydra.nixos.org/build/233214134 at 2023-09-02 + - dywapitchtrack # failure in job https://hydra.nixos.org/build/233195810 at 2023-09-02 + - dzen-dhall # failure in job https://hydra.nixos.org/build/233245800 at 2023-09-02 + - dzen-utils # failure in job https://hydra.nixos.org/build/233217831 at 2023-09-02 + - each # failure in job https://hydra.nixos.org/build/233259543 at 2023-09-02 + - eager-sockets # failure in job https://hydra.nixos.org/build/233212504 at 2023-09-02 + - earclipper # failure in job https://hydra.nixos.org/build/233212721 at 2023-09-02 + - earcut # failure in job https://hydra.nixos.org/build/233211385 at 2023-09-02 + - early # failure in job https://hydra.nixos.org/build/233252768 at 2023-09-02 + - easy-api # failure in job https://hydra.nixos.org/build/233208757 at 2023-09-02 + - easy-args # failure in job https://hydra.nixos.org/build/233221956 at 2023-09-02 + - easy-bitcoin # failure in job https://hydra.nixos.org/build/233201882 at 2023-09-02 + - easyjson # failure in job https://hydra.nixos.org/build/233199317 at 2023-09-02 + - easyplot # failure in job https://hydra.nixos.org/build/233213312 at 2023-09-02 + - easytest # failure in job https://hydra.nixos.org/build/233209710 at 2023-09-02 + - ebeats # failure in job https://hydra.nixos.org/build/233235039 at 2023-09-02 + - ebnf-bff # failure in job https://hydra.nixos.org/build/233221694 at 2023-09-02 + - eccrypto-ed25519-bindings # failure in job https://hydra.nixos.org/build/233217399 at 2023-09-02 + - ecma262 # failure in job https://hydra.nixos.org/build/233260026 at 2023-09-02 + - ecta-plugin # failure in job https://hydra.nixos.org/build/233224764 at 2023-09-02 + - ecu # failure in job https://hydra.nixos.org/build/233230797 at 2023-09-02 + - eddie # failure in job https://hydra.nixos.org/build/233254499 at 2023-09-02 + - ede # failure in job https://hydra.nixos.org/build/233207345 at 2023-09-02 + - edenmodules # failure in job https://hydra.nixos.org/build/233255833 at 2023-09-02 + - edf # failure in job https://hydra.nixos.org/build/233257484 at 2023-09-02 + - edis # failure in job https://hydra.nixos.org/build/233258962 at 2023-09-02 + - edit # failure in job https://hydra.nixos.org/build/233237521 at 2023-09-02 + - edit-lenses # failure in job https://hydra.nixos.org/build/233195827 at 2023-09-02 + - editline # failure in job https://hydra.nixos.org/build/233259515 at 2023-09-02 + - effectful-st # failure in job https://hydra.nixos.org/build/233248591 at 2023-09-02 + - effect-handlers # failure in job https://hydra.nixos.org/build/233234988 at 2023-09-02 + - effective-aspects # failure in job https://hydra.nixos.org/build/233223120 at 2023-09-02 + - effect-stack # failure in job https://hydra.nixos.org/build/233212358 at 2023-09-02 + - effet # failure in job https://hydra.nixos.org/build/233204265 at 2023-09-02 + - effin # failure in job https://hydra.nixos.org/build/233212960 at 2023-09-02 + - egison-pattern-src # failure in job https://hydra.nixos.org/build/233248458 at 2023-09-02 + - ehaskell # failure in job https://hydra.nixos.org/build/233196183 at 2023-09-02 + - ehs # failure in job https://hydra.nixos.org/build/233234594 at 2023-09-02 + - eibd-client-simple # failure in job https://hydra.nixos.org/build/233225416 at 2023-09-02 + - eigen # failure in job https://hydra.nixos.org/build/233204115 at 2023-09-02 + - Eight-Ball-Pool-Hack-Cheats # failure in job https://hydra.nixos.org/build/233211937 at 2023-09-02 + - eio # failure in job https://hydra.nixos.org/build/233256103 at 2023-09-02 + - EitherT # failure in job https://hydra.nixos.org/build/233217056 at 2023-09-02 + - either-unwrap # failure in job https://hydra.nixos.org/build/233254495 at 2023-09-02 + - ejdb2-binding # failure in job https://hydra.nixos.org/build/233253666 at 2023-09-02 + - ekg-bosun # failure in job https://hydra.nixos.org/build/233250564 at 2023-09-02 + - ekg-elastic # failure in job https://hydra.nixos.org/build/233204565 at 2023-09-02 + - ekg-elasticsearch # failure in job https://hydra.nixos.org/build/233234000 at 2023-09-02 + - ekg-json # failure in job https://hydra.nixos.org/build/233245374 at 2023-09-02 + - ekg-log # failure in job https://hydra.nixos.org/build/233218201 at 2023-09-02 + - ekg-prometheus-adapter # failure in job https://hydra.nixos.org/build/233226437 at 2023-09-02 + - ekg-push # failure in job https://hydra.nixos.org/build/233249323 at 2023-09-02 + - ekg-rrd # failure in job https://hydra.nixos.org/build/233214672 at 2023-09-02 + - ekg-statsd # failure in job https://hydra.nixos.org/build/233200955 at 2023-09-02 + - elevator # failure in job https://hydra.nixos.org/build/233213794 at 2023-09-02 + - elision # failure in job https://hydra.nixos.org/build/233218969 at 2023-09-02 + - elm-export-persistent # failure in job https://hydra.nixos.org/build/233248910 at 2023-09-02 + - elm-websocket # failure in job https://hydra.nixos.org/build/233192201 at 2023-09-02 + - elocrypt # failure in job https://hydra.nixos.org/build/233229627 at 2023-09-02 + - ema-generics # failure in job https://hydra.nixos.org/build/233200038 at 2023-09-02 + - emailaddress # failure in job https://hydra.nixos.org/build/233202700 at 2023-09-02 + - email-header # failure in job https://hydra.nixos.org/build/233243713 at 2023-09-02 + - email-postmark # failure in job https://hydra.nixos.org/build/233245426 at 2023-09-02 + - embed-config # failure in job https://hydra.nixos.org/build/233237733 at 2023-09-02 + - embla # failure in job https://hydra.nixos.org/build/233206703 at 2023-09-02 + - emgm # failure in job https://hydra.nixos.org/build/233257789 at 2023-09-02 + - Emping # failure in job https://hydra.nixos.org/build/233229400 at 2023-09-02 + - Empty # failure in job https://hydra.nixos.org/build/233228745 at 2023-09-02 + - empty-monad # failure in job https://hydra.nixos.org/build/233259244 at 2023-09-02 + - enchant # failure in job https://hydra.nixos.org/build/233196992 at 2023-09-02 + - encode-string # failure in job https://hydra.nixos.org/build/233251833 at 2023-09-02 + - encoding # failure in job https://hydra.nixos.org/build/233216476 at 2023-09-02 + - encoding-io # failure in job https://hydra.nixos.org/build/233208714 at 2023-09-02 + - encryptable # failure in job https://hydra.nixos.org/build/233215911 at 2023-09-02 + - endo # failure in job https://hydra.nixos.org/build/233222561 at 2023-09-02 + - engine-io # failure in job https://hydra.nixos.org/build/233234034 at 2023-09-02 + - entwine # failure in job https://hydra.nixos.org/build/233239261 at 2023-09-02 + - EnumContainers # failure in job https://hydra.nixos.org/build/233258056 at 2023-09-02 + - enumerator # failure in job https://hydra.nixos.org/build/233246612 at 2023-09-02 + - EnumMap # failure in job https://hydra.nixos.org/build/233250249 at 2023-09-02 + - enummapmap # failure in job https://hydra.nixos.org/build/233228525 at 2023-09-02 + - enummapset-th # failure in job https://hydra.nixos.org/build/233225322 at 2023-09-02 + - enummaps # failure in job https://hydra.nixos.org/build/233251965 at 2023-09-02 + - enum-text # failure in job https://hydra.nixos.org/build/233194373 at 2023-09-02 + - enum-utf8 # failure in job https://hydra.nixos.org/build/233234628 at 2023-09-02 + - envelope # failure in job https://hydra.nixos.org/build/233199309 at 2023-09-02 + - env-parser # failure in job https://hydra.nixos.org/build/233237933 at 2023-09-02 + - envstatus # failure in job https://hydra.nixos.org/build/233257940 at 2023-09-02 + - envy-extensible # failure in job https://hydra.nixos.org/build/233229313 at 2023-09-02 + - epanet-haskell # failure in job https://hydra.nixos.org/build/233197331 at 2023-09-02 + - epass # failure in job https://hydra.nixos.org/build/233194117 at 2023-09-02 + - epic # failure in job https://hydra.nixos.org/build/233204921 at 2023-09-02 + - epi-sim # failure in job https://hydra.nixos.org/build/233246076 at 2023-09-02 + - epoll # failure in job https://hydra.nixos.org/build/233247564 at 2023-09-02 + - epubname # failure in job https://hydra.nixos.org/build/233198937 at 2023-09-02 + - Eq # failure in job https://hydra.nixos.org/build/233200216 at 2023-09-02 + - EqualitySolver # failure in job https://hydra.nixos.org/build/233190999 at 2023-09-02 + - equational-reasoning-induction # failure in job https://hydra.nixos.org/build/233235280 at 2023-09-02 + - equeue # failure in job https://hydra.nixos.org/build/233237274 at 2023-09-02 + - erd # failure in job https://hydra.nixos.org/build/233215438 at 2023-09-02 + - erlang # failure in job https://hydra.nixos.org/build/233195837 at 2023-09-02 + - erlang-ffi # failure in job https://hydra.nixos.org/build/233233314 at 2023-09-02 + - eros # failure in job https://hydra.nixos.org/build/233247983 at 2023-09-02 + - error-context # failure in job https://hydra.nixos.org/build/233245027 at 2023-09-02 + - error-continuations # failure in job https://hydra.nixos.org/build/233232357 at 2023-09-02 + - error-list # failure in job https://hydra.nixos.org/build/233237173 at 2023-09-02 + - error-loc # failure in job https://hydra.nixos.org/build/233243511 at 2023-09-02 + - error-util # failure in job https://hydra.nixos.org/build/233233764 at 2023-09-02 + - ersaconcat # failure in job https://hydra.nixos.org/build/233196142 at 2023-09-02 + - ersatz # failure in job https://hydra.nixos.org/build/233256809 at 2023-09-02 + - ert # failure in job https://hydra.nixos.org/build/233250717 at 2023-09-02 + - escape-artist # failure in job https://hydra.nixos.org/build/233195305 at 2023-09-02 + - escoger # failure in job https://hydra.nixos.org/build/233224731 at 2023-09-02 + - esqueleto-pgcrypto # failure in job https://hydra.nixos.org/build/233208955 at 2023-09-02 + - esqueleto-textsearch # failure in job https://hydra.nixos.org/build/233239400 at 2023-09-02 + - essence-of-live-coding # failure in job https://hydra.nixos.org/build/233216872 at 2023-09-02 + - ess # failure in job https://hydra.nixos.org/build/233218789 at 2023-09-02 + - EstProgress # failure in job https://hydra.nixos.org/build/233236617 at 2023-09-02 + - Etage # failure in job https://hydra.nixos.org/build/233219527 at 2023-09-02 + - etcd # failure in job https://hydra.nixos.org/build/233196041 at 2023-09-02 + - etc # failure in job https://hydra.nixos.org/build/233199192 at 2023-09-02 + - ethereum-rlp # failure in job https://hydra.nixos.org/build/233236392 at 2023-09-02 + - eurofxref # failure in job https://hydra.nixos.org/build/233230942 at 2023-09-02 + - eve-cli # failure in job https://hydra.nixos.org/build/233254555 at 2023-09-02 + - eved # failure in job https://hydra.nixos.org/build/233194319 at 2023-09-02 + - event-driven # failure in job https://hydra.nixos.org/build/233233946 at 2023-09-02 + - event # failure in job https://hydra.nixos.org/build/233209756 at 2023-09-02 + - eventsource-api # failure in job https://hydra.nixos.org/build/233243220 at 2023-09-02 + - eventsourced # failure in job https://hydra.nixos.org/build/233192731 at 2023-09-02 + - eventstore # failure in job https://hydra.nixos.org/build/233202734 at 2023-09-02 + - evoke # failure in job https://hydra.nixos.org/build/233213948 at 2023-09-02 + - ewe # failure in job https://hydra.nixos.org/build/233217228 at 2023-09-02 + - exact-cover # failure in job https://hydra.nixos.org/build/233203182 at 2023-09-02 + - exact-real-positional # failure in job https://hydra.nixos.org/build/233239627 at 2023-09-02 + - except-exceptions # failure in job https://hydra.nixos.org/build/233191953 at 2023-09-02 + - exceptional # failure in job https://hydra.nixos.org/build/233214345 at 2023-09-02 + - exceptionfree-readfile # failure in job https://hydra.nixos.org/build/233222995 at 2023-09-02 + - exception-monads-fd # failure in job https://hydra.nixos.org/build/233224946 at 2023-09-02 + - exception-via # failure in job https://hydra.nixos.org/build/233197670 at 2023-09-02 + - exchangerates # failure in job https://hydra.nixos.org/build/233230944 at 2023-09-02 + - execs # failure in job https://hydra.nixos.org/build/233210274 at 2023-09-02 + - executor # failure in job https://hydra.nixos.org/build/233250118 at 2023-09-02 + - exhaustive # failure in job https://hydra.nixos.org/build/233238024 at 2023-09-02 + - exherbo-cabal # failure in job https://hydra.nixos.org/build/233206319 at 2023-09-02 + - exh # failure in job https://hydra.nixos.org/build/233253883 at 2023-09-02 + - exif # failure in job https://hydra.nixos.org/build/233229247 at 2023-09-02 + - exigo-schema # failure in job https://hydra.nixos.org/build/233197808 at 2023-09-02 + - exinst-deepseq # failure in job https://hydra.nixos.org/build/233207947 at 2023-09-02 + - exinst-hashable # failure in job https://hydra.nixos.org/build/233210438 at 2023-09-02 + - exists # failure in job https://hydra.nixos.org/build/233243541 at 2023-09-02 + - exitcode # failure in job https://hydra.nixos.org/build/233238454 at 2023-09-02 + - exp-cache # failure in job https://hydra.nixos.org/build/233220561 at 2023-09-02 + - exp-extended # failure in job https://hydra.nixos.org/build/233236139 at 2023-09-02 + - explain # failure in job https://hydra.nixos.org/build/233207210 at 2023-09-02 + - explicit-constraint-lens # failure in job https://hydra.nixos.org/build/233230188 at 2023-09-02 + - explicit-determinant # failure in job https://hydra.nixos.org/build/233246543 at 2023-09-02 + - explicit-iomodes # failure in job https://hydra.nixos.org/build/233247342 at 2023-09-02 + - exploring-interpreters # failure in job https://hydra.nixos.org/build/233254448 at 2023-09-02 + - exposed-containers # failure in job https://hydra.nixos.org/build/233200558 at 2023-09-02 + - expression-parser # failure in job https://hydra.nixos.org/build/233250586 at 2023-09-02 + - expressions # failure in job https://hydra.nixos.org/build/233212192 at 2023-09-02 + - expresso # failure in job https://hydra.nixos.org/build/233208513 at 2023-09-02 + - extcore # failure in job https://hydra.nixos.org/build/233230369 at 2023-09-02 + - extended-categories # failure in job https://hydra.nixos.org/build/233258803 at 2023-09-02 + - extended-containers # failure in job https://hydra.nixos.org/build/233226876 at 2023-09-02 + - extensible-data # failure in job https://hydra.nixos.org/build/233198917 at 2023-09-02 + - extensible-effects-concurrent # failure in job https://hydra.nixos.org/build/233233685 at 2023-09-02 + - extensioneer # failure in job https://hydra.nixos.org/build/233663099 at 2023-09-02 + - external-sort # failure in job https://hydra.nixos.org/build/233244337 at 2023-09-02 + - extism # failure in job https://hydra.nixos.org/build/233242807 at 2023-09-02 + - extractelf # failure in job https://hydra.nixos.org/build/233240806 at 2023-09-02 + - Extra # failure in job https://hydra.nixos.org/build/233243671 at 2023-09-02 + - extralife # failure in job https://hydra.nixos.org/build/233236550 at 2023-09-02 + - ez3 # failure in job https://hydra.nixos.org/build/233233362 at 2023-09-02 + - ez-couch # failure in job https://hydra.nixos.org/build/233216577 at 2023-09-02 + - Facebook-Password-Hacker-Online-Latest-Version # failure in job https://hydra.nixos.org/build/233194533 at 2023-09-02 + - faceted # failure in job https://hydra.nixos.org/build/233231120 at 2023-09-02 + - factory # failure in job https://hydra.nixos.org/build/233222084 at 2023-09-02 + - facts # failure in job https://hydra.nixos.org/build/233194410 at 2023-09-02 + - Facts # failure in job https://hydra.nixos.org/build/233224533 at 2023-09-02 + - fadno-braids # failure in job https://hydra.nixos.org/build/233246763 at 2023-09-02 + - fadno-xml # failure in job https://hydra.nixos.org/build/233228192 at 2023-09-02 + - failable-list # failure in job https://hydra.nixos.org/build/233198924 at 2023-09-02 + - failure-detector # failure in job https://hydra.nixos.org/build/233244451 at 2023-09-02 + - fake # failure in job https://hydra.nixos.org/build/233199052 at 2023-09-02 + - fake-type # failure in job https://hydra.nixos.org/build/233197081 at 2023-09-02 + - faktory # failure in job https://hydra.nixos.org/build/233240158 at 2023-09-02 + - f-algebra-gen # failure in job https://hydra.nixos.org/build/233194303 at 2023-09-02 + - fastbayes # failure in job https://hydra.nixos.org/build/233223718 at 2023-09-02 + - fast-combinatorics # failure in job https://hydra.nixos.org/build/233250615 at 2023-09-02 + - fastedit # failure in job https://hydra.nixos.org/build/233213468 at 2023-09-02 + - fastly # failure in job https://hydra.nixos.org/build/233213136 at 2023-09-02 + - fast-nats # failure in job https://hydra.nixos.org/build/233238596 at 2023-09-02 + - fastpbkdf2 # failure in job https://hydra.nixos.org/build/233218574 at 2023-09-02 + - FastPush # failure in job https://hydra.nixos.org/build/233224507 at 2023-09-02 + - fast-tagsoup-utf8-only # failure in job https://hydra.nixos.org/build/233202322 at 2023-09-02 + - FastxPipe # failure in job https://hydra.nixos.org/build/233232889 at 2023-09-02 + - fathead-util # failure in job https://hydra.nixos.org/build/233255882 at 2023-09-02 + - fay # failure in job https://hydra.nixos.org/build/233197122 at 2023-09-02 + - fbmessenger-api # failure in job https://hydra.nixos.org/build/233247641 at 2023-09-02 + - fb-persistent # failure in job https://hydra.nixos.org/build/233193999 at 2023-09-02 + - fcache # failure in job https://hydra.nixos.org/build/233258505 at 2023-09-02 + - fca # failure in job https://hydra.nixos.org/build/233205050 at 2023-09-02 + - fcf-composite # failure in job https://hydra.nixos.org/build/233252957 at 2023-09-02 + - fcf-graphs # failure in job https://hydra.nixos.org/build/233254885 at 2023-09-02 + - fcg # failure in job https://hydra.nixos.org/build/233228656 at 2023-09-02 + - fckeditor # failure in job https://hydra.nixos.org/build/233226949 at 2023-09-02 + - fclabels-monadlib # failure in job https://hydra.nixos.org/build/233192353 at 2023-09-02 + - fcm-client # failure in job https://hydra.nixos.org/build/233241459 at 2023-09-02 + - fdo-trash # failure in job https://hydra.nixos.org/build/233244987 at 2023-09-02 + - feather # failure in job https://hydra.nixos.org/build/233192230 at 2023-09-02 + - feature-flipper # failure in job https://hydra.nixos.org/build/233192476 at 2023-09-02 + - fedora-packages # failure in job https://hydra.nixos.org/build/233256230 at 2023-09-02 + - feed-cli # failure in job https://hydra.nixos.org/build/233234086 at 2023-09-02 + - feed-collect # failure in job https://hydra.nixos.org/build/233203100 at 2023-09-02 + - feed-crawl # failure in job https://hydra.nixos.org/build/233227566 at 2023-09-02 + - fenfire # failure in job https://hydra.nixos.org/build/233254038 at 2023-09-02 + - fernet # failure in job https://hydra.nixos.org/build/233228830 at 2023-09-02 + - FerryCore # failure in job https://hydra.nixos.org/build/233198667 at 2023-09-02 + - festival # failure in job https://hydra.nixos.org/build/233257483 at 2023-09-02 + - Feval # failure in job https://hydra.nixos.org/build/233233117 at 2023-09-02 + - fez-conf # failure in job https://hydra.nixos.org/build/233240692 at 2023-09-02 + - ffeed # failure in job https://hydra.nixos.org/build/233209944 at 2023-09-02 + - ffmpeg-light # failure in job https://hydra.nixos.org/build/233213041 at 2023-09-02 + - ffunctor # failure in job https://hydra.nixos.org/build/233247887 at 2023-09-02 + - fgl-extras-decompositions # failure in job https://hydra.nixos.org/build/233237744 at 2023-09-02 + - fib # failure in job https://hydra.nixos.org/build/233225971 at 2023-09-02 + - fibon # failure in job https://hydra.nixos.org/build/233215748 at 2023-09-02 + - fields # failure in job https://hydra.nixos.org/build/233197886 at 2023-09-02 + - fieldwise # failure in job https://hydra.nixos.org/build/233202285 at 2023-09-02 + - fig # failure in job https://hydra.nixos.org/build/233212262 at 2023-09-02 + - filecache # failure in job https://hydra.nixos.org/build/233229175 at 2023-09-02 + - file-collection # failure in job https://hydra.nixos.org/build/233205586 at 2023-09-02 + - file-command-qq # failure in job https://hydra.nixos.org/build/233205913 at 2023-09-02 + - filediff # failure in job https://hydra.nixos.org/build/233256056 at 2023-09-02 + - file-embed-poly # failure in job https://hydra.nixos.org/build/233252504 at 2023-09-02 + - file-io # failure in job https://hydra.nixos.org/build/233192040 at 2023-09-02 + - file-location # failure in job https://hydra.nixos.org/build/233202456 at 2023-09-02 + - FileManipCompat # failure in job https://hydra.nixos.org/build/233254887 at 2023-09-02 + - FileManip # failure in job https://hydra.nixos.org/build/233237292 at 2023-09-02 + - fileneglect # failure in job https://hydra.nixos.org/build/233209920 at 2023-09-02 + - Files # failure in job https://hydra.nixos.org/build/233207543 at 2023-09-02 + - filesystem-conduit # failure in job https://hydra.nixos.org/build/233239975 at 2023-09-02 + - FileSystem # failure in job https://hydra.nixos.org/build/233230289 at 2023-09-02 + - filesystem-trees # failure in job https://hydra.nixos.org/build/233216661 at 2023-09-02 + - file-templates # failure in job https://hydra.nixos.org/build/233255339 at 2023-09-02 + - fillit # failure in job https://hydra.nixos.org/build/233214605 at 2023-09-02 + - final-pretty-printer # failure in job https://hydra.nixos.org/build/233238571 at 2023-09-02 + - Finance-Quote-Yahoo # failure in job https://hydra.nixos.org/build/233223617 at 2023-09-02 + - find-conduit # failure in job https://hydra.nixos.org/build/233243763 at 2023-09-02 + - find-source-files # failure in job https://hydra.nixos.org/build/233239773 at 2023-09-02 + - fingertree-psqueue # failure in job https://hydra.nixos.org/build/233224766 at 2023-09-02 + - fingertree-tf # failure in job https://hydra.nixos.org/build/233259910 at 2023-09-02 + - finite # failure in job https://hydra.nixos.org/build/233226313 at 2023-09-02 + - finite-fields # failure in job https://hydra.nixos.org/build/233191530 at 2023-09-02 + - firefly-example # failure in job https://hydra.nixos.org/build/233259350 at 2023-09-02 + - first-and-last # failure in job https://hydra.nixos.org/build/233256888 at 2023-09-02 + - first-class-instances # failure in job https://hydra.nixos.org/build/233207181 at 2023-09-02 + - FirstPrelude # failure in job https://hydra.nixos.org/build/233256065 at 2023-09-02 + - fit # failure in job https://hydra.nixos.org/build/233239893 at 2023-09-02 + - fitsio # failure in job https://hydra.nixos.org/build/233246119 at 2023-09-02 + - fits-parse # failure in job https://hydra.nixos.org/build/233242853 at 2023-09-02 + - fixed-point # failure in job https://hydra.nixos.org/build/233255142 at 2023-09-02 + - fixedprec # failure in job https://hydra.nixos.org/build/233231519 at 2023-09-02 + - fixed-precision # failure in job https://hydra.nixos.org/build/233226433 at 2023-09-02 + - fixed-storable-array # failure in job https://hydra.nixos.org/build/233200413 at 2023-09-02 + - fixed-timestep # failure in job https://hydra.nixos.org/build/233252950 at 2023-09-02 + - fixed-vector-hetero # failure in job https://hydra.nixos.org/build/233207863 at 2023-09-02 + - fixed-width # failure in job https://hydra.nixos.org/build/233236195 at 2023-09-02 + - fixer # failure in job https://hydra.nixos.org/build/233246038 at 2023-09-02 + - fixfile # failure in job https://hydra.nixos.org/build/233209830 at 2023-09-02 + - fixie # failure in job https://hydra.nixos.org/build/233230496 at 2023-09-02 + - fix-imports # failure in job https://hydra.nixos.org/build/233251518 at 2023-09-02 + - fix-symbols-gitit # failure in job https://hydra.nixos.org/build/233259222 at 2023-09-02 + - fizzbuzz-as-a-service # failure in job https://hydra.nixos.org/build/233235796 at 2023-09-02 + - fizzbuzz # failure in job https://hydra.nixos.org/build/233207626 at 2023-09-02 + - flaccuraterip # failure in job https://hydra.nixos.org/build/233255839 at 2023-09-02 + - flamethrower # failure in job https://hydra.nixos.org/build/233258696 at 2023-09-02 + - flamingra # failure in job https://hydra.nixos.org/build/233242907 at 2023-09-02 + - flat-maybe # failure in job https://hydra.nixos.org/build/233197544 at 2023-09-02 + - flat-mcmc # failure in job https://hydra.nixos.org/build/233234404 at 2023-09-02 + - flay # failure in job https://hydra.nixos.org/build/233235511 at 2023-09-02 + - flexible-time # failure in job https://hydra.nixos.org/build/233208099 at 2023-09-02 + - flickr # failure in job https://hydra.nixos.org/build/233212718 at 2023-09-02 + - float-binstring # failure in job https://hydra.nixos.org/build/233203257 at 2023-09-02 + - floating-bits # failure in job https://hydra.nixos.org/build/233223171 at 2023-09-02 + - flock # failure in job https://hydra.nixos.org/build/233245164 at 2023-09-02 + - flowdock-api # failure in job https://hydra.nixos.org/build/233215251 at 2023-09-02 + - flowdock # failure in job https://hydra.nixos.org/build/233206736 at 2023-09-02 + - flowdock-rest # failure in job https://hydra.nixos.org/build/233240090 at 2023-09-02 + - flow-er # failure in job https://hydra.nixos.org/build/233202082 at 2023-09-02 + - flowlocks-framework # failure in job https://hydra.nixos.org/build/233255068 at 2023-09-02 + - flp # failure in job https://hydra.nixos.org/build/233219373 at 2023-09-02 + - fltkhs # failure in job https://hydra.nixos.org/build/233207014 at 2023-09-02 + - fluffy-parser # failure in job https://hydra.nixos.org/build/233212110 at 2023-09-02 + - fluid-idl # failure in job https://hydra.nixos.org/build/233214307 at 2023-09-02 + - fluidsynth # failure in job https://hydra.nixos.org/build/233225998 at 2023-09-02 + - flux-monoid # failure in job https://hydra.nixos.org/build/233202845 at 2023-09-02 + - fmark # failure in job https://hydra.nixos.org/build/233196159 at 2023-09-02 + - FModExRaw # failure in job https://hydra.nixos.org/build/233259032 at 2023-09-02 + - fold-debounce-conduit # failure in job https://hydra.nixos.org/build/233195249 at 2023-09-02 + - foldl-incremental # failure in job https://hydra.nixos.org/build/233201921 at 2023-09-02 + - foldl-statistics # failure in job https://hydra.nixos.org/build/233243724 at 2023-09-02 + - foldl-transduce # failure in job https://hydra.nixos.org/build/233192486 at 2023-09-02 + - folds-common # failure in job https://hydra.nixos.org/build/233237316 at 2023-09-02 + - follow # failure in job https://hydra.nixos.org/build/233255423 at 2023-09-02 + - fontconfig-pure # failure in job https://hydra.nixos.org/build/233254573 at 2023-09-02 + - font-opengl-basic4x6 # failure in job https://hydra.nixos.org/build/233200978 at 2023-09-02 + - forbidden-fruit # failure in job https://hydra.nixos.org/build/233258954 at 2023-09-02 + - fordo # failure in job https://hydra.nixos.org/build/233255879 at 2023-09-02 + - forecast-io # failure in job https://hydra.nixos.org/build/233197283 at 2023-09-02 + - foreign # failure in job https://hydra.nixos.org/build/233250127 at 2023-09-02 + - foreign-var # failure in job https://hydra.nixos.org/build/233215431 at 2023-09-02 + - forest # failure in job https://hydra.nixos.org/build/233208811 at 2023-09-02 + - forest-fire # failure in job https://hydra.nixos.org/build/233203922 at 2023-09-02 + - forex2ledger # failure in job https://hydra.nixos.org/build/233212197 at 2023-09-02 + - for-free # failure in job https://hydra.nixos.org/build/233235927 at 2023-09-02 + - forger # failure in job https://hydra.nixos.org/build/233234444 at 2023-09-02 + - ForkableT # failure in job https://hydra.nixos.org/build/233253947 at 2023-09-02 + - forma # failure in job https://hydra.nixos.org/build/233200787 at 2023-09-02 + - formattable # failure in job https://hydra.nixos.org/build/233230195 at 2023-09-02 + - formura # failure in job https://hydra.nixos.org/build/233193674 at 2023-09-02 + - Fortnite-Hack-Cheats-Free-V-Bucks-Generator # failure in job https://hydra.nixos.org/build/233233147 at 2023-09-02 + - fortran-vars # failure in job https://hydra.nixos.org/build/233257719 at 2023-09-02 + - fortytwo # failure in job https://hydra.nixos.org/build/233209552 at 2023-09-02 + - foscam-filename # failure in job https://hydra.nixos.org/build/233237326 at 2023-09-02 + - FPretty # failure in job https://hydra.nixos.org/build/233196648 at 2023-09-02 + - fptest # failure in job https://hydra.nixos.org/build/233233288 at 2023-09-02 + - fquery # failure in job https://hydra.nixos.org/build/233196287 at 2023-09-02 + - Fractaler # failure in job https://hydra.nixos.org/build/233253414 at 2023-09-02 + - fractals # failure in job https://hydra.nixos.org/build/233205969 at 2023-09-02 + - fraction # failure in job https://hydra.nixos.org/build/233204186 at 2023-09-02 + - franchise # failure in job https://hydra.nixos.org/build/233256790 at 2023-09-02 + - fraxl # failure in job https://hydra.nixos.org/build/233219345 at 2023-09-02 + - freddy # failure in job https://hydra.nixos.org/build/233208999 at 2023-09-02 + - free-concurrent # failure in job https://hydra.nixos.org/build/233257070 at 2023-09-02 + - f-ree-hack-cheats-free-v-bucks-generator # failure in job https://hydra.nixos.org/build/233225159 at 2023-09-02 + - free-http # failure in job https://hydra.nixos.org/build/233227362 at 2023-09-02 + - freenect # failure in job https://hydra.nixos.org/build/233196105 at 2023-09-02 + - free-operational # failure in job https://hydra.nixos.org/build/233201565 at 2023-09-02 + - freer-effects # failure in job https://hydra.nixos.org/build/233214270 at 2023-09-02 + - freer-simple # failure in job https://hydra.nixos.org/build/233243415 at 2023-09-02 + - freesect # failure in job https://hydra.nixos.org/build/233218671 at 2023-09-02 + - freesound # failure in job https://hydra.nixos.org/build/233240464 at 2023-09-02 + - free-theorems-counterexamples # failure in job https://hydra.nixos.org/build/233231989 at 2023-09-02 + - free-theorems-seq # failure in job https://hydra.nixos.org/build/233207326 at 2023-09-02 + - free-theorems-webui # failure in job https://hydra.nixos.org/build/233255034 at 2023-09-02 + - FreeTypeGL # failure in job https://hydra.nixos.org/build/233212222 at 2023-09-02 + - freetype-simple # failure in job https://hydra.nixos.org/build/233249707 at 2023-09-02 + - free-v-bucks-generator-no-survey # failure in job https://hydra.nixos.org/build/233208419 at 2023-09-02 + - free-v-bucks-generator-ps4-no-survey # failure in job https://hydra.nixos.org/build/233190747 at 2023-09-02 + - freq # failure in job https://hydra.nixos.org/build/233247154 at 2023-09-02 + - fresh # failure in job https://hydra.nixos.org/build/233196569 at 2023-09-02 + - fresnel # failure in job https://hydra.nixos.org/build/233214198 at 2023-09-02 + - friday # failure in job https://hydra.nixos.org/build/233249799 at 2023-09-02 + - friendly # failure in job https://hydra.nixos.org/build/233254836 at 2023-09-02 + - from-env # failure in job https://hydra.nixos.org/build/233219518 at 2023-09-02 + - frown # failure in job https://hydra.nixos.org/build/233208462 at 2023-09-02 + - frp-arduino # failure in job https://hydra.nixos.org/build/233192216 at 2023-09-02 + - frpnow # failure in job https://hydra.nixos.org/build/233236056 at 2023-09-02 + - fs-events # failure in job https://hydra.nixos.org/build/233218231 at 2023-09-02 + - fsh-csv # failure in job https://hydra.nixos.org/build/233220196 at 2023-09-02 + - fsmActions # failure in job https://hydra.nixos.org/build/233224366 at 2023-09-02 + - FSM # failure in job https://hydra.nixos.org/build/233247343 at 2023-09-02 + - fsnotify-conduit # failure in job https://hydra.nixos.org/build/233196251 at 2023-09-02 + - fst # failure in job https://hydra.nixos.org/build/233233271 at 2023-09-02 + - fsutils # failure in job https://hydra.nixos.org/build/233204599 at 2023-09-02 + - fswait # failure in job https://hydra.nixos.org/build/233247770 at 2023-09-02 + - fswatcher # failure in job https://hydra.nixos.org/build/233226757 at 2023-09-02 + - fswatch # failure in job https://hydra.nixos.org/build/233233447 at 2023-09-02 + - ft-generator # failure in job https://hydra.nixos.org/build/233205823 at 2023-09-02 + - FTGL-bytestring # failure in job https://hydra.nixos.org/build/233256032 at 2023-09-02 + - ftp-client # failure in job https://hydra.nixos.org/build/233227664 at 2023-09-02 + - ftp-conduit # failure in job https://hydra.nixos.org/build/233244330 at 2023-09-02 + - ftphs # failure in job https://hydra.nixos.org/build/233215550 at 2023-09-02 + - full-sessions # failure in job https://hydra.nixos.org/build/233254332 at 2023-09-02 + - funbot-client # failure in job https://hydra.nixos.org/build/233255739 at 2023-09-02 + - funcons-values # failure in job https://hydra.nixos.org/build/233194179 at 2023-09-02 + - function-instances-algebra # failure in job https://hydra.nixos.org/build/233202209 at 2023-09-02 + - functor-friends # failure in job https://hydra.nixos.org/build/233208108 at 2023-09-02 + - functor-infix # failure in job https://hydra.nixos.org/build/233228794 at 2023-09-02 + - functorm # failure in job https://hydra.nixos.org/build/233212335 at 2023-09-02 + - functor-products # failure in job https://hydra.nixos.org/build/233209316 at 2023-09-02 + - functor-utils # failure in job https://hydra.nixos.org/build/233213259 at 2023-09-02 + - Fungi # failure in job https://hydra.nixos.org/build/233253088 at 2023-09-02 + - funpat # failure in job https://hydra.nixos.org/build/233222123 at 2023-09-02 + - funspection # failure in job https://hydra.nixos.org/build/233227352 at 2023-09-02 + - fused-effects-exceptions # failure in job https://hydra.nixos.org/build/233203744 at 2023-09-02 + - fused-effects-mwc-random # failure in job https://hydra.nixos.org/build/233253228 at 2023-09-02 + - fused-effects-resumable # failure in job https://hydra.nixos.org/build/233242479 at 2023-09-02 + - fused-effects-th # failure in job https://hydra.nixos.org/build/233192186 at 2023-09-02 + - fusion # failure in job https://hydra.nixos.org/build/233204359 at 2023-09-02 + - futhask # failure in job https://hydra.nixos.org/build/233229281 at 2023-09-02 + - futun # failure in job https://hydra.nixos.org/build/233245115 at 2023-09-02 + - future # failure in job https://hydra.nixos.org/build/233224844 at 2023-09-02 + - futures # failure in job https://hydra.nixos.org/build/233230206 at 2023-09-02 + - fuzzyfind # failure in job https://hydra.nixos.org/build/233206269 at 2023-09-02 + - fuzzyset # failure in job https://hydra.nixos.org/build/233231726 at 2023-09-02 + - fuzzy-timings # failure in job https://hydra.nixos.org/build/233235765 at 2023-09-02 + - fwgl # failure in job https://hydra.nixos.org/build/233246210 at 2023-09-02 + - g4ip # failure in job https://hydra.nixos.org/build/233248315 at 2023-09-02 + - gameclock # failure in job https://hydra.nixos.org/build/233234964 at 2023-09-02 + - game-probability # failure in job https://hydra.nixos.org/build/233191255 at 2023-09-02 + - gamgee # failure in job https://hydra.nixos.org/build/233249846 at 2023-09-02 + - Gamgine # failure in job https://hydra.nixos.org/build/233242510 at 2023-09-02 + - Ganymede # failure in job https://hydra.nixos.org/build/233248892 at 2023-09-02 + - garepinoh # failure in job https://hydra.nixos.org/build/233238111 at 2023-09-02 + - gargoyle # failure in job https://hydra.nixos.org/build/233196445 at 2023-09-02 + - gas # failure in job https://hydra.nixos.org/build/233233966 at 2023-09-02 + - gather # failure in job https://hydra.nixos.org/build/233208848 at 2023-09-02 + - gc-monitoring-wai # failure in job https://hydra.nixos.org/build/233209449 at 2023-09-02 + - gconf # failure in job https://hydra.nixos.org/build/233259023 at 2023-09-02 + - gdiff-th # failure in job https://hydra.nixos.org/build/233215065 at 2023-09-02 + - gelatin # failure in job https://hydra.nixos.org/build/233249394 at 2023-09-02 + - gemcap # failure in job https://hydra.nixos.org/build/233202506 at 2023-09-02 + - gemstone # failure in job https://hydra.nixos.org/build/233202246 at 2023-09-02 + - gender # failure in job https://hydra.nixos.org/build/233235712 at 2023-09-02 + - genders # failure in job https://hydra.nixos.org/build/233238566 at 2023-09-02 + - general-allocate # failure in job https://hydra.nixos.org/build/233214648 at 2023-09-02 + - general-prelude # failure in job https://hydra.nixos.org/build/233248628 at 2023-09-02 + - GeneralTicTacToe # failure in job https://hydra.nixos.org/build/233207939 at 2023-09-02 + - generator # failure in job https://hydra.nixos.org/build/233213384 at 2023-09-02 + - generators # failure in job https://hydra.nixos.org/build/233246459 at 2023-09-02 + - generic-aeson # failure in job https://hydra.nixos.org/build/233198064 at 2023-09-02 + - generic-binary # failure in job https://hydra.nixos.org/build/233214473 at 2023-09-02 + - generic-church # failure in job https://hydra.nixos.org/build/233213419 at 2023-09-02 + - generic-enumeration # failure in job https://hydra.nixos.org/build/233213191 at 2023-09-02 + - generic-enum # failure in job https://hydra.nixos.org/build/233220316 at 2023-09-02 + - generic-labels # failure in job https://hydra.nixos.org/build/233230621 at 2023-09-02 + - generic-lens-labels # failure in job https://hydra.nixos.org/build/233256875 at 2023-09-02 + - generic-lucid-scaffold # failure in job https://hydra.nixos.org/build/233259250 at 2023-09-02 + - generic-match # failure in job https://hydra.nixos.org/build/233221364 at 2023-09-02 + - generic-maybe # failure in job https://hydra.nixos.org/build/233246991 at 2023-09-02 + - generic-override # failure in job https://hydra.nixos.org/build/233235699 at 2023-09-02 + - generic-persistence # failure in job https://hydra.nixos.org/build/233240709 at 2023-09-02 + - generic-pretty # failure in job https://hydra.nixos.org/build/233205583 at 2023-09-02 + - generic-pretty-instances # failure in job https://hydra.nixos.org/build/233243114 at 2023-09-02 + - generic-records # failure in job https://hydra.nixos.org/build/233237235 at 2023-09-02 + - genericserialize # failure in job https://hydra.nixos.org/build/233253092 at 2023-09-02 + - generic-server # failure in job https://hydra.nixos.org/build/233259385 at 2023-09-02 + - generics-mrsop # failure in job https://hydra.nixos.org/build/233233310 at 2023-09-02 + - generic-storable # failure in job https://hydra.nixos.org/build/233213225 at 2023-09-02 + - generic-tree # failure in job https://hydra.nixos.org/build/233219539 at 2023-09-02 + - generic-xmlpickler # failure in job https://hydra.nixos.org/build/233246507 at 2023-09-02 + - genetics # failure in job https://hydra.nixos.org/build/233219599 at 2023-09-02 + - genifunctors # failure in job https://hydra.nixos.org/build/233255126 at 2023-09-02 + - gen-imports # failure in job https://hydra.nixos.org/build/233216588 at 2023-09-02 + - geniplate # failure in job https://hydra.nixos.org/build/233233607 at 2023-09-02 + - gen-passwd # failure in job https://hydra.nixos.org/build/233224836 at 2023-09-02 + - genprog # failure in job https://hydra.nixos.org/build/233198970 at 2023-09-02 + - gentlemark # failure in job https://hydra.nixos.org/build/233202158 at 2023-09-02 + - geocode-google # failure in job https://hydra.nixos.org/build/233191594 at 2023-09-02 + - GeocoderOpenCage # failure in job https://hydra.nixos.org/build/233214852 at 2023-09-02 + - geodetic-types # failure in job https://hydra.nixos.org/build/233209496 at 2023-09-02 + - GeoIp # failure in job https://hydra.nixos.org/build/233257383 at 2023-09-02 + - geojson-types # failure in job https://hydra.nixos.org/build/233224929 at 2023-09-02 + - geom2d # failure in job https://hydra.nixos.org/build/233254609 at 2023-09-02 + - GeomPredicates-SSE # failure in job https://hydra.nixos.org/build/233249584 at 2023-09-02 + - geo-resolver # failure in job https://hydra.nixos.org/build/233206563 at 2023-09-02 + - geos # failure in job https://hydra.nixos.org/build/233203852 at 2023-09-02 + - geo-uk # failure in job https://hydra.nixos.org/build/233221284 at 2023-09-02 + - gerrit # failure in job https://hydra.nixos.org/build/233214951 at 2023-09-02 + - Get # failure in job https://hydra.nixos.org/build/233216093 at 2023-09-02 + - getflag # failure in job https://hydra.nixos.org/build/233258316 at 2023-09-02 + - gev-lib # failure in job https://hydra.nixos.org/build/233250284 at 2023-09-02 + - gf # failure in job https://hydra.nixos.org/build/233237752 at 2023-09-02 + - GGg # failure in job https://hydra.nixos.org/build/233207289 at 2023-09-02 + - ggtsTC # failure in job https://hydra.nixos.org/build/233229612 at 2023-09-02 + - ghc-api-compat # failure in job https://hydra.nixos.org/build/233235008 at 2023-09-02 + - ghc-clippy-plugin # failure in job https://hydra.nixos.org/build/233227499 at 2023-09-02 + - ghc-core-smallstep # failure in job https://hydra.nixos.org/build/233209763 at 2023-09-02 + - ghc-corroborate # failure in job https://hydra.nixos.org/build/233223692 at 2023-09-02 + - ghc-datasize # failure in job https://hydra.nixos.org/build/233196292 at 2023-09-02 + - ghc-definitions-th # failure in job https://hydra.nixos.org/build/233254844 at 2023-09-02 + - ghc-dump-core # failure in job https://hydra.nixos.org/build/233214478 at 2023-09-02 + - ghc-dump-tree # failure in job https://hydra.nixos.org/build/233237228 at 2023-09-02 + - ghc-dup # failure in job https://hydra.nixos.org/build/233203978 at 2023-09-02 + - ghc-events-analyze # failure in job https://hydra.nixos.org/build/233207621 at 2023-09-02 + - ghc-events-parallel # failure in job https://hydra.nixos.org/build/233218757 at 2023-09-02 + - ghc-gc-hook # failure in job https://hydra.nixos.org/build/233195053 at 2023-09-02 + - ghc-generic-instances # failure in job https://hydra.nixos.org/build/233259298 at 2023-09-02 + - ghc-hotswap # failure in job https://hydra.nixos.org/build/233220146 at 2023-09-02 + - ghcide-test-utils # failure in job https://hydra.nixos.org/build/233209491 at 2023-09-02 + - ghci-diagrams # failure in job https://hydra.nixos.org/build/233194407 at 2023-09-02 + - ghci-haskeline # failure in job https://hydra.nixos.org/build/233216940 at 2023-09-02 + - ghci-history-parser # failure in job https://hydra.nixos.org/build/233204448 at 2023-09-02 + - ghci-lib # failure in job https://hydra.nixos.org/build/233216644 at 2023-09-02 + - ghci-ng # failure in job https://hydra.nixos.org/build/233229533 at 2023-09-02 + - ghcjs-dom-jsffi # failure in job https://hydra.nixos.org/build/233215225 at 2023-09-02 + - ghcjs-promise # failure in job https://hydra.nixos.org/build/233243985 at 2023-09-02 + - ghcjs-xhr # failure in job https://hydra.nixos.org/build/233235693 at 2023-09-02 + - ghc-justdoit # failure in job https://hydra.nixos.org/build/233221884 at 2023-09-02 + - ghclive # failure in job https://hydra.nixos.org/build/233231592 at 2023-09-02 + - ghc-man-completion # failure in job https://hydra.nixos.org/build/233245740 at 2023-09-02 + - ghc-mtl # failure in job https://hydra.nixos.org/build/233227810 at 2023-09-02 + - ghc-parmake # failure in job https://hydra.nixos.org/build/233191327 at 2023-09-02 + - ghc-pkg-autofix # failure in job https://hydra.nixos.org/build/233229332 at 2023-09-02 + - ghc-pkg-lib # failure in job https://hydra.nixos.org/build/233250745 at 2023-09-02 + - ghc-plugin-non-empty # failure in job https://hydra.nixos.org/build/233229023 at 2023-09-02 + - ghc-proofs # failure in job https://hydra.nixos.org/build/233230633 at 2023-09-02 + - ghc-simple # failure in job https://hydra.nixos.org/build/233201423 at 2023-09-02 + - ghc-source-gen # failure in job https://hydra.nixos.org/build/233223566 at 2023-09-02 + - ghc-srcspan-plugin # failure in job https://hydra.nixos.org/build/233231564 at 2023-09-02 + - ghc-syb # failure in job https://hydra.nixos.org/build/233236783 at 2023-09-02 + - ghc-syb-utils # failure in job https://hydra.nixos.org/build/233229196 at 2023-09-02 + - ghc-tags-plugin # failure in job https://hydra.nixos.org/build/233229916 at 2023-09-02 + - ghc-time-alloc-prof # failure in job https://hydra.nixos.org/build/233242289 at 2023-09-02 + - ghc-usage # failure in job https://hydra.nixos.org/build/233199565 at 2023-09-02 + - gh-labeler # failure in job https://hydra.nixos.org/build/233233139 at 2023-09-02 + - giak # failure in job https://hydra.nixos.org/build/233242229 at 2023-09-02 + - gi-clutter # failure in job https://hydra.nixos.org/build/233252753 at 2023-09-02 + - gi-coglpango # failure in job https://hydra.nixos.org/build/233194401 at 2023-09-02 + - Gifcurry # failure in job https://hydra.nixos.org/build/233200204 at 2023-09-02 + - gi-gio-hs-list-model # failure in job https://hydra.nixos.org/build/233241640 at 2023-09-02 + - gi-graphene # failure in job https://hydra.nixos.org/build/233205231 at 2023-09-02 + - gi-gsttag # failure in job https://hydra.nixos.org/build/233197576 at 2023-09-02 + - gi-gtk-declarative # failure in job https://hydra.nixos.org/build/233217494 at 2023-09-02 + - gi-gtksheet # failure in job https://hydra.nixos.org/build/233211386 at 2023-09-02 + - gi-gtksource # failure in job https://hydra.nixos.org/build/233215342 at 2023-09-02 + - gi-ibus # failure in job https://hydra.nixos.org/build/233220272 at 2023-09-02 + - gingersnap # failure in job https://hydra.nixos.org/build/233227186 at 2023-09-02 + - ginsu # failure in job https://hydra.nixos.org/build/233223259 at 2023-09-02 + - gipeda # failure in job https://hydra.nixos.org/build/233228149 at 2023-09-02 + - giphy-api # failure in job https://hydra.nixos.org/build/233203687 at 2023-09-02 + - GiST # failure in job https://hydra.nixos.org/build/233199759 at 2023-09-02 + - gist # failure in job https://hydra.nixos.org/build/233221381 at 2023-09-02 + - git-all # failure in job https://hydra.nixos.org/build/233252935 at 2023-09-02 + - git-brunch # failure in job https://hydra.nixos.org/build/233250960 at 2023-09-02 + - git-checklist # failure in job https://hydra.nixos.org/build/233203228 at 2023-09-02 + - git-cuk # failure in job https://hydra.nixos.org/build/233211733 at 2023-09-02 + - git-date # failure in job https://hydra.nixos.org/build/233259193 at 2023-09-02 + - git # failure in job https://hydra.nixos.org/build/233225634 at 2023-09-02 + - github-backup # failure in job https://hydra.nixos.org/build/233208904 at 2023-09-02 + - github-post-receive # failure in job https://hydra.nixos.org/build/233204914 at 2023-09-02 + - github-tools # failure in job https://hydra.nixos.org/build/233247519 at 2023-09-02 + - github-utils # failure in job https://hydra.nixos.org/build/233211299 at 2023-09-02 + - github-webhook-handler # failure in job https://hydra.nixos.org/build/233246904 at 2023-09-02 + - githud # failure in job https://hydra.nixos.org/build/233195046 at 2023-09-02 + - gitHUD # failure in job https://hydra.nixos.org/build/233221244 at 2023-09-02 + - gitignore # failure in job https://hydra.nixos.org/build/233207356 at 2023-09-02 + - git-jump # failure in job https://hydra.nixos.org/build/233206544 at 2023-09-02 + - gitlab-api # failure in job https://hydra.nixos.org/build/233256639 at 2023-09-02 + - gitlab-haskell # failure in job https://hydra.nixos.org/build/233190692 at 2023-09-02 + - gitlib-cmdline # failure in job https://hydra.nixos.org/build/233230857 at 2023-09-02 + - gitlib-utils # failure in job https://hydra.nixos.org/build/233190826 at 2023-09-02 + - git-repair # failure in job https://hydra.nixos.org/build/233222686 at 2023-09-02 + - gitter # failure in job https://hydra.nixos.org/build/233210040 at 2023-09-02 + - git-vogue # failure in job https://hydra.nixos.org/build/233249420 at 2023-09-02 + - gi-webkitwebprocessextension # failure in job https://hydra.nixos.org/build/233227647 at 2023-09-02 + - glade # failure in job https://hydra.nixos.org/build/233229566 at 2023-09-02 + - glapp # failure in job https://hydra.nixos.org/build/233213499 at 2023-09-02 + - glaze # failure in job https://hydra.nixos.org/build/233210047 at 2023-09-02 + - Gleam # failure in job https://hydra.nixos.org/build/233228018 at 2023-09-02 + - GLFW-b-demo # failure in job https://hydra.nixos.org/build/233230505 at 2023-09-02 + - GLFW # failure in job https://hydra.nixos.org/build/233234389 at 2023-09-02 + - glicko # failure in job https://hydra.nixos.org/build/233200868 at 2023-09-02 + - glider-nlp # failure in job https://hydra.nixos.org/build/233229600 at 2023-09-02 + - gli # failure in job https://hydra.nixos.org/build/233210279 at 2023-09-02 + - GLMatrix # failure in job https://hydra.nixos.org/build/233202880 at 2023-09-02 + - global-variables # failure in job https://hydra.nixos.org/build/233204607 at 2023-09-02 + - glob-posix # failure in job https://hydra.nixos.org/build/233253059 at 2023-09-02 + - GlomeTrace # failure in job https://hydra.nixos.org/build/233211872 at 2023-09-02 + - glsl # failure in job https://hydra.nixos.org/build/233224139 at 2023-09-02 + - gltf-codec # failure in job https://hydra.nixos.org/build/233205342 at 2023-09-02 + - glue # failure in job https://hydra.nixos.org/build/233233587 at 2023-09-02 + - g-npm # failure in job https://hydra.nixos.org/build/233215965 at 2023-09-02 + - goa # failure in job https://hydra.nixos.org/build/233193916 at 2023-09-02 + - goal-core # failure in job https://hydra.nixos.org/build/233242261 at 2023-09-02 + - goatee # failure in job https://hydra.nixos.org/build/233220875 at 2023-09-02 + - gochan # failure in job https://hydra.nixos.org/build/233223866 at 2023-09-02 + - godot-haskell # failure in job https://hydra.nixos.org/build/233213405 at 2023-09-02 + - godot-megaparsec # failure in job https://hydra.nixos.org/build/233252882 at 2023-09-02 + - gofer-prelude # failure in job https://hydra.nixos.org/build/233237015 at 2023-09-02 + - gogol-core # failure in job https://hydra.nixos.org/build/233245807 at 2023-09-02 + - gooey # failure in job https://hydra.nixos.org/build/233192207 at 2023-09-02 + - google-cloud # failure in job https://hydra.nixos.org/build/233218503 at 2023-09-02 + - GoogleCodeJam # failure in job https://hydra.nixos.org/build/233234738 at 2023-09-02 + - google-html5-slide # failure in job https://hydra.nixos.org/build/233233311 at 2023-09-02 + - google-oauth2-easy # failure in job https://hydra.nixos.org/build/233251694 at 2023-09-02 + - google-oauth2 # failure in job https://hydra.nixos.org/build/233223208 at 2023-09-02 + - google-oauth2-jwt # failure in job https://hydra.nixos.org/build/233234162 at 2023-09-02 + - googlepolyline # failure in job https://hydra.nixos.org/build/233209674 at 2023-09-02 + - google-search # failure in job https://hydra.nixos.org/build/233214524 at 2023-09-02 + - google-server-api # failure in job https://hydra.nixos.org/build/233218521 at 2023-09-02 + - google-translate # failure in job https://hydra.nixos.org/build/233234076 at 2023-09-02 + - gopherbot # failure in job https://hydra.nixos.org/build/233207680 at 2023-09-02 + - gopro-plus # failure in job https://hydra.nixos.org/build/233225073 at 2023-09-02 + - gore-and-ash # failure in job https://hydra.nixos.org/build/233237810 at 2023-09-02 + - gothic # failure in job https://hydra.nixos.org/build/233218967 at 2023-09-02 + - GotoT-transformers # failure in job https://hydra.nixos.org/build/233229336 at 2023-09-02 + - gotta-go-fast # failure in job https://hydra.nixos.org/build/233213439 at 2023-09-02 + - gotyno-hs # failure in job https://hydra.nixos.org/build/233205043 at 2023-09-02 + - gpah # failure in job https://hydra.nixos.org/build/233236000 at 2023-09-02 + - GPipe-Core # failure in job https://hydra.nixos.org/build/233194426 at 2023-09-02 + - GPipe # failure in job https://hydra.nixos.org/build/233202480 at 2023-09-02 + - gpmf # failure in job https://hydra.nixos.org/build/233245964 at 2023-09-02 + - gpx-conduit # failure in job https://hydra.nixos.org/build/233245487 at 2023-09-02 + - graceful # failure in job https://hydra.nixos.org/build/233199650 at 2023-09-02 + - grafana # failure in job https://hydra.nixos.org/build/233206262 at 2023-09-02 + - Grafos # failure in job https://hydra.nixos.org/build/233201494 at 2023-09-02 + - grakn # failure in job https://hydra.nixos.org/build/233218052 at 2023-09-02 + - grammatical-parsers # failure in job https://hydra.nixos.org/build/233252219 at 2023-09-02 + - Graph500 # failure in job https://hydra.nixos.org/build/233257715 at 2023-09-02 + - Graphalyze # failure in job https://hydra.nixos.org/build/233194082 at 2023-09-02 + - graphbuilder # failure in job https://hydra.nixos.org/build/233190797 at 2023-09-02 + - graphene # failure in job https://hydra.nixos.org/build/233250729 at 2023-09-02 + - graphics-drawingcombinators # failure in job https://hydra.nixos.org/build/233242920 at 2023-09-02 + - graphics-formats-collada # failure in job https://hydra.nixos.org/build/233199422 at 2023-09-02 + - graph-matchings # failure in job https://hydra.nixos.org/build/233245821 at 2023-09-02 + - graphmod-plugin # failure in job https://hydra.nixos.org/build/233192543 at 2023-09-02 + - graphql-api # failure in job https://hydra.nixos.org/build/233254333 at 2023-09-02 + - graphql-utils # failure in job https://hydra.nixos.org/build/233221340 at 2023-09-02 + - graphql-w-persistent # failure in job https://hydra.nixos.org/build/233228956 at 2023-09-02 + - graph-rewriting # failure in job https://hydra.nixos.org/build/233191278 at 2023-09-02 + - graph-serialize # failure in job https://hydra.nixos.org/build/233192162 at 2023-09-02 + - graphted # failure in job https://hydra.nixos.org/build/233227052 at 2023-09-02 + - graphula-core # failure in job https://hydra.nixos.org/build/233259608 at 2023-09-02 + - graph-utils # failure in job https://hydra.nixos.org/build/233224932 at 2023-09-02 + - graql # failure in job https://hydra.nixos.org/build/233219809 at 2023-09-02 + - grasp # failure in job https://hydra.nixos.org/build/233213280 at 2023-09-02 + - gray-code # failure in job https://hydra.nixos.org/build/233234283 at 2023-09-02 + - graylog # failure in job https://hydra.nixos.org/build/233197050 at 2023-09-02 + - greencard # failure in job https://hydra.nixos.org/build/233252292 at 2023-09-02 + - greg-client # failure in job https://hydra.nixos.org/build/233207343 at 2023-09-02 + - gremlin-haskell # failure in job https://hydra.nixos.org/build/233243223 at 2023-09-02 + - Grempa # failure in job https://hydra.nixos.org/build/233256440 at 2023-09-02 + - greplicate # failure in job https://hydra.nixos.org/build/233215148 at 2023-09-02 + - greskell-core # failure in job https://hydra.nixos.org/build/233241303 at 2023-09-02 + - gridfs # failure in job https://hydra.nixos.org/build/233213958 at 2023-09-02 + - grids # failure in job https://hydra.nixos.org/build/233218294 at 2023-09-02 + - grm # failure in job https://hydra.nixos.org/build/233259788 at 2023-09-02 + - GroteTrap # failure in job https://hydra.nixos.org/build/233203176 at 2023-09-02 + - groundhog # failure in job https://hydra.nixos.org/build/233199269 at 2023-09-02 + - grouped-list # failure in job https://hydra.nixos.org/build/233240891 at 2023-09-02 + - group-theory # failure in job https://hydra.nixos.org/build/233235833 at 2023-09-02 + - group-with # failure in job https://hydra.nixos.org/build/233196589 at 2023-09-02 + - growable-vector # failure in job https://hydra.nixos.org/build/233253891 at 2023-09-02 + - growler # failure in job https://hydra.nixos.org/build/233207497 at 2023-09-02 + - grow-vector # failure in job https://hydra.nixos.org/build/233196279 at 2023-09-02 + - grpc-api-etcd # failure in job https://hydra.nixos.org/build/233239600 at 2023-09-02 + - gsl-random # failure in job https://hydra.nixos.org/build/233191503 at 2023-09-02 + - gstreamer # failure in job https://hydra.nixos.org/build/233239224 at 2023-09-02 + - GTALib # failure in job https://hydra.nixos.org/build/233250568 at 2023-09-02 + - gtk2hs-cast-th # failure in job https://hydra.nixos.org/build/233244841 at 2023-09-02 + - gtk2hs-hello # failure in job https://hydra.nixos.org/build/233232522 at 2023-09-02 + - gtk2hs-rpn # failure in job https://hydra.nixos.org/build/233208312 at 2023-09-02 + - gtk3-helpers # failure in job https://hydra.nixos.org/build/233221005 at 2023-09-02 + - gtkglext # failure in job https://hydra.nixos.org/build/233230364 at 2023-09-02 + - gtk-helpers # failure in job https://hydra.nixos.org/build/233244213 at 2023-09-02 + - gtksourceview2 # failure in job https://hydra.nixos.org/build/233195456 at 2023-09-02 + - gtksourceview3 # failure in job https://hydra.nixos.org/build/233209745 at 2023-09-02 + - gtk-toy # failure in job https://hydra.nixos.org/build/233208132 at 2023-09-02 + - guardian # failure in job https://hydra.nixos.org/build/233662964 at 2023-09-02 + - gulcii # failure in job https://hydra.nixos.org/build/233253472 at 2023-09-02 + - gw # failure in job https://hydra.nixos.org/build/233252652 at 2023-09-02 + - gyah-bin # failure in job https://hydra.nixos.org/build/233206981 at 2023-09-02 + - gym-http-api # failure in job https://hydra.nixos.org/build/233219968 at 2023-09-02 + - h2048 # failure in job https://hydra.nixos.org/build/233231384 at 2023-09-02 + - h2c # failure in job https://hydra.nixos.org/build/233196032 at 2023-09-02 + - haar # failure in job https://hydra.nixos.org/build/233217259 at 2023-09-02 + - HABQT # failure in job https://hydra.nixos.org/build/233256547 at 2023-09-02 + - hack2-contrib # failure in job https://hydra.nixos.org/build/233251090 at 2023-09-02 + - hack2-handler-warp # failure in job https://hydra.nixos.org/build/233226457 at 2023-09-02 + - hackage2hwn # failure in job https://hydra.nixos.org/build/233246308 at 2023-09-02 + - hackage-api # failure in job https://hydra.nixos.org/build/233246132 at 2023-09-02 + - hackage-diff # failure in job https://hydra.nixos.org/build/233243364 at 2023-09-02 + - hackage-mirror # failure in job https://hydra.nixos.org/build/233240852 at 2023-09-02 + - hackage-processing # failure in job https://hydra.nixos.org/build/233243914 at 2023-09-02 + - hackage-proxy # failure in job https://hydra.nixos.org/build/233221269 at 2023-09-02 + - hackager # failure in job https://hydra.nixos.org/build/233247230 at 2023-09-02 + - hackage-server # failure in job https://hydra.nixos.org/build/233254343 at 2023-09-02 + - hackage-whatsnew # failure in job https://hydra.nixos.org/build/233194915 at 2023-09-02 + - hackernews # failure in job https://hydra.nixos.org/build/233215522 at 2023-09-02 + - hack-frontend-happstack # failure in job https://hydra.nixos.org/build/233251834 at 2023-09-02 + - hack-handler-cgi # failure in job https://hydra.nixos.org/build/233200753 at 2023-09-02 + - hack-handler-happstack # failure in job https://hydra.nixos.org/build/233225525 at 2023-09-02 + - hack-handler-kibro # failure in job https://hydra.nixos.org/build/233219102 at 2023-09-02 + - HackMail # failure in job https://hydra.nixos.org/build/233215224 at 2023-09-02 + - hactor # failure in job https://hydra.nixos.org/build/233254977 at 2023-09-02 + - hactors # failure in job https://hydra.nixos.org/build/233218599 at 2023-09-02 + - haddock-api # failure in job https://hydra.nixos.org/build/233216515 at 2023-09-02 + - haddock-leksah # failure in job https://hydra.nixos.org/build/233206878 at 2023-09-02 + - haddock-test # failure in job https://hydra.nixos.org/build/233246641 at 2023-09-02 + - hadoop-formats # failure in job https://hydra.nixos.org/build/233224647 at 2023-09-02 + - hadoop-rpc # failure in job https://hydra.nixos.org/build/233247222 at 2023-09-02 + - hadoop-streaming # failure in job https://hydra.nixos.org/build/233229895 at 2023-09-02 + - hafar # failure in job https://hydra.nixos.org/build/233231237 at 2023-09-02 + - haggle # failure in job https://hydra.nixos.org/build/233198660 at 2023-09-02 + - Haggressive # failure in job https://hydra.nixos.org/build/233235332 at 2023-09-02 + - hahp # failure in job https://hydra.nixos.org/build/233250101 at 2023-09-02 + - haiji # failure in job https://hydra.nixos.org/build/233232272 at 2023-09-02 + - hail # failure in job https://hydra.nixos.org/build/233219127 at 2023-09-02 + - hailgun # failure in job https://hydra.nixos.org/build/233242996 at 2023-09-02 + - hairy # failure in job https://hydra.nixos.org/build/233226903 at 2023-09-02 + - hakaru # failure in job https://hydra.nixos.org/build/233231467 at 2023-09-02 + - hakismet # failure in job https://hydra.nixos.org/build/233212497 at 2023-09-02 + - hakka # failure in job https://hydra.nixos.org/build/233196395 at 2023-09-02 + - hako # failure in job https://hydra.nixos.org/build/233257679 at 2023-09-02 + - hakyll-agda # failure in job https://hydra.nixos.org/build/233332603 at 2023-09-02 + - hakyll-blaze-templates # failure in job https://hydra.nixos.org/build/233207117 at 2023-09-02 + - hakyll-contrib-csv # failure in job https://hydra.nixos.org/build/233229781 at 2023-09-02 + - hakyll-contrib-elm # failure in job https://hydra.nixos.org/build/233234686 at 2023-09-02 + - hakyll-contrib # failure in job https://hydra.nixos.org/build/233195056 at 2023-09-02 + - hakyll-contrib-i18n # failure in job https://hydra.nixos.org/build/233218608 at 2023-09-02 + - hakyll-contrib-links # failure in job https://hydra.nixos.org/build/233218456 at 2023-09-02 + - hakyll-dhall # failure in job https://hydra.nixos.org/build/233226092 at 2023-09-02 + - hakyll-dir-list # failure in job https://hydra.nixos.org/build/233221518 at 2023-09-02 + - hakyll-R # failure in job https://hydra.nixos.org/build/233230132 at 2023-09-02 + - hakyll-series # failure in job https://hydra.nixos.org/build/233257506 at 2023-09-02 + - hakyll-shortcode # failure in job https://hydra.nixos.org/build/233240216 at 2023-09-02 + - hakyll-typescript # failure in job https://hydra.nixos.org/build/233218630 at 2023-09-02 + - HaLeX # failure in job https://hydra.nixos.org/build/233233225 at 2023-09-02 + - hal # failure in job https://hydra.nixos.org/build/233243847 at 2023-09-02 + - halfs # failure in job https://hydra.nixos.org/build/233235337 at 2023-09-02 + - halide-haskell # failure in job https://hydra.nixos.org/build/233244282 at 2023-09-02 + - halipeto # failure in job https://hydra.nixos.org/build/233223245 at 2023-09-02 + - halive # failure in job https://hydra.nixos.org/build/233215317 at 2023-09-02 + - halma # failure in job https://hydra.nixos.org/build/233245758 at 2023-09-02 + - halves # failure in job https://hydra.nixos.org/build/233214240 at 2023-09-02 + - hampp # failure in job https://hydra.nixos.org/build/233239269 at 2023-09-02 + - hamsql # failure in job https://hydra.nixos.org/build/233241294 at 2023-09-02 + - hamtmap # failure in job https://hydra.nixos.org/build/233225685 at 2023-09-02 + - hanabi-dealer # failure in job https://hydra.nixos.org/build/233231209 at 2023-09-02 + - handa-gdata # failure in job https://hydra.nixos.org/build/233257022 at 2023-09-02 + - handle-like # failure in job https://hydra.nixos.org/build/233245789 at 2023-09-02 + - HandlerSocketClient # failure in job https://hydra.nixos.org/build/233239906 at 2023-09-02 + - handsy # failure in job https://hydra.nixos.org/build/233192732 at 2023-09-02 + - HangmanAscii # failure in job https://hydra.nixos.org/build/233192660 at 2023-09-02 + - Hangman # failure in job https://hydra.nixos.org/build/233257262 at 2023-09-02 + - hannahci # failure in job https://hydra.nixos.org/build/233201493 at 2023-09-02 + - hans # failure in job https://hydra.nixos.org/build/233214027 at 2023-09-02 + - hanspell # failure in job https://hydra.nixos.org/build/233238153 at 2023-09-02 + - haphviz # failure in job https://hydra.nixos.org/build/233206220 at 2023-09-02 + - hapistrano # failure in job https://hydra.nixos.org/build/233209900 at 2023-09-02 + - happindicator3 # failure in job https://hydra.nixos.org/build/233191315 at 2023-09-02 + - happindicator # failure in job https://hydra.nixos.org/build/233212275 at 2023-09-02 + - happlets # failure in job https://hydra.nixos.org/build/233208337 at 2023-09-02 + - happraise # failure in job https://hydra.nixos.org/build/233251808 at 2023-09-02 + - happstack-clientsession # failure in job https://hydra.nixos.org/build/233224969 at 2023-09-02 + - happstack # failure in job https://hydra.nixos.org/build/233196813 at 2023-09-02 + - happstack-hamlet # failure in job https://hydra.nixos.org/build/233227835 at 2023-09-02 + - happstack-hstringtemplate # failure in job https://hydra.nixos.org/build/233201171 at 2023-09-02 + - happstack-lite # failure in job https://hydra.nixos.org/build/233196392 at 2023-09-02 + - happstack-monad-peel # failure in job https://hydra.nixos.org/build/233247282 at 2023-09-02 + - happstack-server-tls-cryptonite # failure in job https://hydra.nixos.org/build/233236252 at 2023-09-02 + - happstack-util # failure in job https://hydra.nixos.org/build/233202063 at 2023-09-02 + - happstack-yui # failure in job https://hydra.nixos.org/build/233221482 at 2023-09-02 + - HAppS-Util # failure in job https://hydra.nixos.org/build/233237912 at 2023-09-02 + - happybara # failure in job https://hydra.nixos.org/build/233236198 at 2023-09-02 + - happybara-webkit-server # failure in job https://hydra.nixos.org/build/233247667 at 2023-09-02 + - HappyTree # failure in job https://hydra.nixos.org/build/233249720 at 2023-09-02 + - hapstone # failure in job https://hydra.nixos.org/build/233190701 at 2023-09-02 + - HaPy # failure in job https://hydra.nixos.org/build/233256693 at 2023-09-02 + - haquery # failure in job https://hydra.nixos.org/build/233216714 at 2023-09-02 + - harchive # failure in job https://hydra.nixos.org/build/233259819 at 2023-09-02 + - harg # failure in job https://hydra.nixos.org/build/233232453 at 2023-09-02 + - HARM # failure in job https://hydra.nixos.org/build/233232650 at 2023-09-02 + - HarmTrace-Base # failure in job https://hydra.nixos.org/build/233213843 at 2023-09-02 + - haroonga # failure in job https://hydra.nixos.org/build/233226376 at 2023-09-02 + - harpy # failure in job https://hydra.nixos.org/build/233225779 at 2023-09-02 + - harvest-api # failure in job https://hydra.nixos.org/build/233213054 at 2023-09-02 + - hasbolt-extras # failure in job https://hydra.nixos.org/build/233211734 at 2023-09-02 + - HasCacBDD # failure in job https://hydra.nixos.org/build/233238688 at 2023-09-02 + - hascard # failure in job https://hydra.nixos.org/build/233238626 at 2023-09-02 + - hascar # failure in job https://hydra.nixos.org/build/233197274 at 2023-09-02 + - hascas # failure in job https://hydra.nixos.org/build/233250350 at 2023-09-02 + - has # failure in job https://hydra.nixos.org/build/233193689 at 2023-09-02 + - hashable-extras # failure in job https://hydra.nixos.org/build/233191748 at 2023-09-02 + - hashable-generics # failure in job https://hydra.nixos.org/build/233209175 at 2023-09-02 + - hashabler # failure in job https://hydra.nixos.org/build/233236154 at 2023-09-02 + - hashed-storage # failure in job https://hydra.nixos.org/build/233193382 at 2023-09-02 + - hash # failure in job https://hydra.nixos.org/build/233219137 at 2023-09-02 + - hashring # failure in job https://hydra.nixos.org/build/233231092 at 2023-09-02 + - hashtables-plus # failure in job https://hydra.nixos.org/build/233234463 at 2023-09-02 + - hasim # failure in job https://hydra.nixos.org/build/233248675 at 2023-09-02 + - haskades # failure in job https://hydra.nixos.org/build/233191525 at 2023-09-02 + - haskarrow # failure in job https://hydra.nixos.org/build/233223366 at 2023-09-02 + - haskbot-core # failure in job https://hydra.nixos.org/build/233194787 at 2023-09-02 + - haskeline-class # failure in job https://hydra.nixos.org/build/233214356 at 2023-09-02 + - haskelisp # failure in job https://hydra.nixos.org/build/233234452 at 2023-09-02 + - haskell2010 # failure in job https://hydra.nixos.org/build/233255384 at 2023-09-02 + - haskell2020 # failure in job https://hydra.nixos.org/build/233251111 at 2023-09-02 + - haskell98 # failure in job https://hydra.nixos.org/build/233231799 at 2023-09-02 + - haskell98libraries # failure in job https://hydra.nixos.org/build/233255099 at 2023-09-02 + - haskell-admin-core # failure in job https://hydra.nixos.org/build/233242655 at 2023-09-02 + - HaskellAnalysisProgram # failure in job https://hydra.nixos.org/build/233235074 at 2023-09-02 + - haskell-awk # failure in job https://hydra.nixos.org/build/233235921 at 2023-09-02 + - haskell-bcrypt # failure in job https://hydra.nixos.org/build/233258991 at 2023-09-02 + - haskell-bitmex-rest # failure in job https://hydra.nixos.org/build/233244003 at 2023-09-02 + - haskell-brainfuck # failure in job https://hydra.nixos.org/build/233233282 at 2023-09-02 + - haskell-cnc # failure in job https://hydra.nixos.org/build/233229233 at 2023-09-02 + - haskell-compression # failure in job https://hydra.nixos.org/build/233212749 at 2023-09-02 + - haskell-conll # failure in job https://hydra.nixos.org/build/233203484 at 2023-09-02 + - haskell-course-preludes # failure in job https://hydra.nixos.org/build/233196306 at 2023-09-02 + - haskelldb # failure in job https://hydra.nixos.org/build/233248300 at 2023-09-02 + - haskelldb-wx # failure in job https://hydra.nixos.org/build/233197525 at 2023-09-02 + - haskell-disque # failure in job https://hydra.nixos.org/build/233226200 at 2023-09-02 + - HaskellForMaths # failure in job https://hydra.nixos.org/build/233237608 at 2023-09-02 + - haskell-formatter # failure in job https://hydra.nixos.org/build/233237167 at 2023-09-02 + - haskell-generate # failure in job https://hydra.nixos.org/build/233197927 at 2023-09-02 + - haskell-holes-th # failure in job https://hydra.nixos.org/build/233238457 at 2023-09-02 + - haskell-igraph # failure in job https://hydra.nixos.org/build/233201209 at 2023-09-02 + - haskell-import-graph # failure in job https://hydra.nixos.org/build/233225328 at 2023-09-02 + - haskell-in-space # failure in job https://hydra.nixos.org/build/233207121 at 2023-09-02 + - haskell-kubernetes # failure in job https://hydra.nixos.org/build/233214499 at 2023-09-02 + - HaskellLM # failure in job https://hydra.nixos.org/build/233237641 at 2023-09-02 + - haskell-lsp-types # failure in job https://hydra.nixos.org/build/233226386 at 2023-09-02 + - haskell-ml # failure in job https://hydra.nixos.org/build/233199372 at 2023-09-02 + - haskell-mpfr # failure in job https://hydra.nixos.org/build/233211691 at 2023-09-02 + - haskell-names # failure in job https://hydra.nixos.org/build/233191174 at 2023-09-02 + - haskell-neo4j-client # failure in job https://hydra.nixos.org/build/233202206 at 2023-09-02 + - HaskellNN # failure in job https://hydra.nixos.org/build/233209323 at 2023-09-02 + - Haskelloids # failure in job https://hydra.nixos.org/build/233204861 at 2023-09-02 + - haskell-openflow # failure in job https://hydra.nixos.org/build/233235229 at 2023-09-02 + - haskell-overridez # failure in job https://hydra.nixos.org/build/233215398 at 2023-09-02 + - haskell-packages # failure in job https://hydra.nixos.org/build/233192989 at 2023-09-02 + - haskell-player # failure in job https://hydra.nixos.org/build/233206419 at 2023-09-02 + - haskell-plot # failure in job https://hydra.nixos.org/build/233256531 at 2023-09-02 + - haskell-postal # failure in job https://hydra.nixos.org/build/233241454 at 2023-09-02 + - haskell-postgis # failure in job https://hydra.nixos.org/build/233258634 at 2023-09-02 + - haskell-read-editor # failure in job https://hydra.nixos.org/build/233225002 at 2023-09-02 + - haskell-rules # failure in job https://hydra.nixos.org/build/233225854 at 2023-09-02 + - haskellscrabble # failure in job https://hydra.nixos.org/build/233251248 at 2023-09-02 + - haskellscript # failure in job https://hydra.nixos.org/build/233193435 at 2023-09-02 + - haskell-spacegoo # failure in job https://hydra.nixos.org/build/233206108 at 2023-09-02 + - haskell-src-exts-prisms # failure in job https://hydra.nixos.org/build/233197742 at 2023-09-02 + - haskell-src-exts-qq # failure in job https://hydra.nixos.org/build/233234764 at 2023-09-02 + - haskell-src-exts-sc # failure in job https://hydra.nixos.org/build/233257890 at 2023-09-02 + - haskell-src-match # failure in job https://hydra.nixos.org/build/233233529 at 2023-09-02 + - haskell-src-meta-mwotton # failure in job https://hydra.nixos.org/build/233251914 at 2023-09-02 + - haskell-stack-trace-plugin # failure in job https://hydra.nixos.org/build/233231305 at 2023-09-02 + - haskell-to-elm # failure in job https://hydra.nixos.org/build/233210318 at 2023-09-02 + - HaskellTorrent # failure in job https://hydra.nixos.org/build/233231874 at 2023-09-02 + - HaskellTutorials # failure in job https://hydra.nixos.org/build/233209605 at 2023-09-02 + - haskell-type-exts # failure in job https://hydra.nixos.org/build/233209731 at 2023-09-02 + - haskell-typescript # failure in job https://hydra.nixos.org/build/233239625 at 2023-09-02 + - haskell-tyrant # failure in job https://hydra.nixos.org/build/233230507 at 2023-09-02 + - haskelzinc # failure in job https://hydra.nixos.org/build/233207478 at 2023-09-02 + - haskeme # failure in job https://hydra.nixos.org/build/233232706 at 2023-09-02 + - haskey-btree # failure in job https://hydra.nixos.org/build/233213529 at 2023-09-02 + - hask # failure in job https://hydra.nixos.org/build/233215974 at 2023-09-02 + - haskheap # failure in job https://hydra.nixos.org/build/233231657 at 2023-09-02 + - haskhol-core # failure in job https://hydra.nixos.org/build/233232550 at 2023-09-02 + - haskintex # failure in job https://hydra.nixos.org/build/233238166 at 2023-09-02 + - haskmon # failure in job https://hydra.nixos.org/build/233228390 at 2023-09-02 + - haskoin # failure in job https://hydra.nixos.org/build/233201668 at 2023-09-02 + - haskoin-util # failure in job https://hydra.nixos.org/build/233222171 at 2023-09-02 + - haskoin-wallet # failure in job https://hydra.nixos.org/build/233206922 at 2023-09-02 + - haskore # failure in job https://hydra.nixos.org/build/233238668 at 2023-09-02 + - haskore-vintage # failure in job https://hydra.nixos.org/build/233230742 at 2023-09-02 + - hasktorch-codegen # failure in job https://hydra.nixos.org/build/233232876 at 2023-09-02 + - hasktorch-ffi-th # failure in job https://hydra.nixos.org/build/233252974 at 2023-09-02 + - hasktorch-signatures-partial # failure in job https://hydra.nixos.org/build/233197869 at 2023-09-02 + - hasktorch-signatures-support # failure in job https://hydra.nixos.org/build/233212137 at 2023-09-02 + - haskus-utils-variant # failure in job https://hydra.nixos.org/build/233218226 at 2023-09-02 + - haskyapi # failure in job https://hydra.nixos.org/build/233247040 at 2023-09-02 + - hasmin # failure in job https://hydra.nixos.org/build/233256557 at 2023-09-02 + - haspara # failure in job https://hydra.nixos.org/build/233208502 at 2023-09-02 + - hasparql-client # failure in job https://hydra.nixos.org/build/233191734 at 2023-09-02 + - hasql-backend # failure in job https://hydra.nixos.org/build/233255310 at 2023-09-02 + - hasql-class # failure in job https://hydra.nixos.org/build/233191053 at 2023-09-02 + - hasql-cursor-transaction # failure in job https://hydra.nixos.org/build/233240886 at 2023-09-02 + - hasql-explain-tests # failure in job https://hydra.nixos.org/build/233247034 at 2023-09-02 + - hasql-generic # failure in job https://hydra.nixos.org/build/233204654 at 2023-09-02 + - hasql-resource-pool # failure in job https://hydra.nixos.org/build/233217667 at 2023-09-02 + - hasql-simple # failure in job https://hydra.nixos.org/build/233249588 at 2023-09-02 + - hasql-transaction-io # failure in job https://hydra.nixos.org/build/233211964 at 2023-09-02 + - hasql-url # failure in job https://hydra.nixos.org/build/233201809 at 2023-09-02 + - hastache # failure in job https://hydra.nixos.org/build/233224317 at 2023-09-02 + - haste # failure in job https://hydra.nixos.org/build/233238510 at 2023-09-02 + - haste-prim # failure in job https://hydra.nixos.org/build/233203281 at 2023-09-02 + - hasura-ekg-core # failure in job https://hydra.nixos.org/build/233211397 at 2023-09-02 + - hatex-guide # failure in job https://hydra.nixos.org/build/233258593 at 2023-09-02 + - hat # failure in job https://hydra.nixos.org/build/233243655 at 2023-09-02 + - hats # failure in job https://hydra.nixos.org/build/233256724 at 2023-09-02 + - hatt # failure in job https://hydra.nixos.org/build/233195039 at 2023-09-02 + - haveibeenpwned # failure in job https://hydra.nixos.org/build/233253058 at 2023-09-02 + - haven # failure in job https://hydra.nixos.org/build/233216806 at 2023-09-02 + - haverer # failure in job https://hydra.nixos.org/build/233210491 at 2023-09-02 + - hax # failure in job https://hydra.nixos.org/build/233212147 at 2023-09-02 + - haxl # failure in job https://hydra.nixos.org/build/233243740 at 2023-09-02 + - haxparse # failure in job https://hydra.nixos.org/build/233205900 at 2023-09-02 + - haxr-th # failure in job https://hydra.nixos.org/build/233250109 at 2023-09-02 + - hayland # failure in job https://hydra.nixos.org/build/233201482 at 2023-09-02 + - hayoo-cli # failure in job https://hydra.nixos.org/build/233245478 at 2023-09-02 + - hBDD-CMUBDD # failure in job https://hydra.nixos.org/build/233210132 at 2023-09-02 + - hBDD-CUDD # failure in job https://hydra.nixos.org/build/233243982 at 2023-09-02 + - hbeanstalk # failure in job https://hydra.nixos.org/build/233229856 at 2023-09-02 + - hbeat # failure in job https://hydra.nixos.org/build/233228628 at 2023-09-02 + - hblas # failure in job https://hydra.nixos.org/build/233232561 at 2023-09-02 + - hblock # failure in job https://hydra.nixos.org/build/233205351 at 2023-09-02 + - h-booru # failure in job https://hydra.nixos.org/build/233258209 at 2023-09-02 + - hburg # failure in job https://hydra.nixos.org/build/233247429 at 2023-09-02 + - hcad # failure in job https://hydra.nixos.org/build/233219976 at 2023-09-02 + - HCard # failure in job https://hydra.nixos.org/build/233231922 at 2023-09-02 + - hcc # failure in job https://hydra.nixos.org/build/233235578 at 2023-09-02 + - hcg-minus # failure in job https://hydra.nixos.org/build/233205053 at 2023-09-02 + - hchesslib # failure in job https://hydra.nixos.org/build/233203219 at 2023-09-02 + - hcltest # failure in job https://hydra.nixos.org/build/233230099 at 2023-09-02 + - hcoap # failure in job https://hydra.nixos.org/build/233233393 at 2023-09-02 + - hcobs # failure in job https://hydra.nixos.org/build/233230173 at 2023-09-02 + - hcom # failure in job https://hydra.nixos.org/build/233201664 at 2023-09-02 + - hcron # failure in job https://hydra.nixos.org/build/233235518 at 2023-09-02 + - hCsound # failure in job https://hydra.nixos.org/build/233254871 at 2023-09-02 + - hdaemonize-buildfix # failure in job https://hydra.nixos.org/build/233225678 at 2023-09-02 + - hdbc-aeson # failure in job https://hydra.nixos.org/build/233240596 at 2023-09-02 + - HDBC-mysql # failure in job https://hydra.nixos.org/build/233205323 at 2023-09-02 + - hdbc-postgresql-hstore # failure in job https://hydra.nixos.org/build/233201143 at 2023-09-02 + - HDBC-postgresql-hstore # failure in job https://hydra.nixos.org/build/233243932 at 2023-09-02 + - hdevtools # failure in job https://hydra.nixos.org/build/233229115 at 2023-09-02 + - hdf5 # failure in job https://hydra.nixos.org/build/233244523 at 2023-09-02 + - hDFA # failure in job https://hydra.nixos.org/build/233229180 at 2023-09-02 + - hdf # failure in job https://hydra.nixos.org/build/233221986 at 2023-09-02 + - hdigest # failure in job https://hydra.nixos.org/build/233257809 at 2023-09-02 + - hdis86 # failure in job https://hydra.nixos.org/build/233229636 at 2023-09-02 + - hdiscount # failure in job https://hydra.nixos.org/build/233236884 at 2023-09-02 + - hdm # failure in job https://hydra.nixos.org/build/233238354 at 2023-09-02 + - hdo # failure in job https://hydra.nixos.org/build/233218112 at 2023-09-02 + - hdph-closure # failure in job https://hydra.nixos.org/build/233191583 at 2023-09-02 + - hdr-histogram # failure in job https://hydra.nixos.org/build/233196278 at 2023-09-02 + - headergen # failure in job https://hydra.nixos.org/build/233229610 at 2023-09-02 + - heap-console # failure in job https://hydra.nixos.org/build/233191563 at 2023-09-02 + - heapsort # failure in job https://hydra.nixos.org/build/233197726 at 2023-09-02 + - heartbeat-streams # failure in job https://hydra.nixos.org/build/233214515 at 2023-09-02 + - heart-core # failure in job https://hydra.nixos.org/build/233216585 at 2023-09-02 + - heatitup-complete # failure in job https://hydra.nixos.org/build/233218404 at 2023-09-02 + - hebrew-time # failure in job https://hydra.nixos.org/build/233250014 at 2023-09-02 + - heckle # failure in job https://hydra.nixos.org/build/233228954 at 2023-09-02 + - heddit # failure in job https://hydra.nixos.org/build/233229058 at 2023-09-02 + - hedgehog-checkers # failure in job https://hydra.nixos.org/build/233229405 at 2023-09-02 + - hedgehog-generic # failure in job https://hydra.nixos.org/build/233204695 at 2023-09-02 + - hedgehog-golden # failure in job https://hydra.nixos.org/build/233219619 at 2023-09-02 + - hedgehog-lens # failure in job https://hydra.nixos.org/build/233251825 at 2023-09-02 + - hedgehog-servant # failure in job https://hydra.nixos.org/build/233258223 at 2023-09-02 + - hedis-config # failure in job https://hydra.nixos.org/build/233198326 at 2023-09-02 + - hedis-namespace # failure in job https://hydra.nixos.org/build/233256546 at 2023-09-02 + - hedis-simple # failure in job https://hydra.nixos.org/build/233231466 at 2023-09-02 + - hedis-tags # failure in job https://hydra.nixos.org/build/233246456 at 2023-09-02 + - hedra # failure in job https://hydra.nixos.org/build/233217122 at 2023-09-02 + - heidi # failure in job https://hydra.nixos.org/build/233199241 at 2023-09-02 + - hein # failure in job https://hydra.nixos.org/build/233241797 at 2023-09-02 + - heist-emanote # failure in job https://hydra.nixos.org/build/233242732 at 2023-09-02 + - heist # failure in job https://hydra.nixos.org/build/233217810 at 2023-09-02 + - helisp # failure in job https://hydra.nixos.org/build/233221194 at 2023-09-02 + - helix # failure in job https://hydra.nixos.org/build/233254335 at 2023-09-02 + - helm # failure in job https://hydra.nixos.org/build/233251620 at 2023-09-02 + - help-esb # failure in job https://hydra.nixos.org/build/233202622 at 2023-09-02 + - hemkay # failure in job https://hydra.nixos.org/build/233227889 at 2023-09-02 + - HERA # failure in job https://hydra.nixos.org/build/233204724 at 2023-09-02 + - herbalizer # failure in job https://hydra.nixos.org/build/233214866 at 2023-09-02 + - HerbiePlugin # failure in job https://hydra.nixos.org/build/233193018 at 2023-09-02 + - heredocs # failure in job https://hydra.nixos.org/build/233238862 at 2023-09-02 + - her-lexer-parsec # failure in job https://hydra.nixos.org/build/233237312 at 2023-09-02 + - Hermes # failure in job https://hydra.nixos.org/build/233223694 at 2023-09-02 + - herms # failure in job https://hydra.nixos.org/build/233217216 at 2023-09-02 + - heroku-persistent # failure in job https://hydra.nixos.org/build/233253569 at 2023-09-02 + - hetero-dict # failure in job https://hydra.nixos.org/build/233250917 at 2023-09-02 + - heterogeneous-list-literals # failure in job https://hydra.nixos.org/build/233212297 at 2023-09-02 + - hetris # failure in job https://hydra.nixos.org/build/233256814 at 2023-09-02 + - heukarya # failure in job https://hydra.nixos.org/build/233247440 at 2023-09-02 + - HExcel # failure in job https://hydra.nixos.org/build/233211971 at 2023-09-02 + - hexchat # failure in job https://hydra.nixos.org/build/233234161 at 2023-09-02 + - hexif # failure in job https://hydra.nixos.org/build/233245470 at 2023-09-02 + - hexml-lens # failure in job https://hydra.nixos.org/build/233247930 at 2023-09-02 + - hexpat-lens # failure in job https://hydra.nixos.org/build/233199827 at 2023-09-02 + - hexpat-pickle-generic # failure in job https://hydra.nixos.org/build/233219898 at 2023-09-02 + - hexpat-streamparser # failure in job https://hydra.nixos.org/build/233249543 at 2023-09-02 + - hexpress # failure in job https://hydra.nixos.org/build/233219047 at 2023-09-02 + - hexpr # failure in job https://hydra.nixos.org/build/233198146 at 2023-09-02 + - hexquote # failure in job https://hydra.nixos.org/build/233230240 at 2023-09-02 + - hexstring # failure in job https://hydra.nixos.org/build/233193009 at 2023-09-02 + - hext # failure in job https://hydra.nixos.org/build/233221345 at 2023-09-02 + - hextra # failure in job https://hydra.nixos.org/build/233238071 at 2023-09-02 + - heyefi # failure in job https://hydra.nixos.org/build/233221712 at 2023-09-02 + - heyting-algebras # failure in job https://hydra.nixos.org/build/233259836 at 2023-09-02 + - hF2 # failure in job https://hydra.nixos.org/build/233208978 at 2023-09-02 + - hfann # failure in job https://hydra.nixos.org/build/233198657 at 2023-09-02 + - HFitUI # failure in job https://hydra.nixos.org/build/233218009 at 2023-09-02 + - hfmt # failure in job https://hydra.nixos.org/build/233246648 at 2023-09-02 + - hfov # failure in job https://hydra.nixos.org/build/233227082 at 2023-09-02 + - HFrequencyQueue # failure in job https://hydra.nixos.org/build/233218262 at 2023-09-02 + - hfusion # failure in job https://hydra.nixos.org/build/233198044 at 2023-09-02 + - HGamer3D-Data # failure in job https://hydra.nixos.org/build/233248475 at 2023-09-02 + - HGamer3D # failure in job https://hydra.nixos.org/build/233200642 at 2023-09-02 + - hg-buildpackage # failure in job https://hydra.nixos.org/build/233244725 at 2023-09-02 + - hgdbmi # failure in job https://hydra.nixos.org/build/233227678 at 2023-09-02 + - hgearman # failure in job https://hydra.nixos.org/build/233231063 at 2023-09-02 + - hGelf # failure in job https://hydra.nixos.org/build/233203909 at 2023-09-02 + - hgeometric # failure in job https://hydra.nixos.org/build/233197856 at 2023-09-02 + - hgis # failure in job https://hydra.nixos.org/build/233200418 at 2023-09-02 + - hgom # failure in job https://hydra.nixos.org/build/233255569 at 2023-09-02 + - hgopher # failure in job https://hydra.nixos.org/build/233222066 at 2023-09-02 + - h-gpgme # failure in job https://hydra.nixos.org/build/233240826 at 2023-09-02 + - HGraphStorage # failure in job https://hydra.nixos.org/build/233217988 at 2023-09-02 + - hgreet # failure in job https://hydra.nixos.org/build/233247614 at 2023-09-02 + - hgrep # failure in job https://hydra.nixos.org/build/233219726 at 2023-09-02 + - hgrev # failure in job https://hydra.nixos.org/build/233241115 at 2023-09-02 + - hgrib # failure in job https://hydra.nixos.org/build/233226885 at 2023-09-02 + - hharp # failure in job https://hydra.nixos.org/build/233237395 at 2023-09-02 + - HHDL # failure in job https://hydra.nixos.org/build/233197917 at 2023-09-02 + - hhp # failure in job https://hydra.nixos.org/build/233244322 at 2023-09-02 + - hhwloc # failure in job https://hydra.nixos.org/build/233215132 at 2023-09-02 + - hi3status # failure in job https://hydra.nixos.org/build/233217321 at 2023-09-02 + - hichi # failure in job https://hydra.nixos.org/build/233208897 at 2023-09-02 + - hidden-char # failure in job https://hydra.nixos.org/build/233206791 at 2023-09-02 + - hid-examples # failure in job https://hydra.nixos.org/build/233221413 at 2023-09-02 + - hid # failure in job https://hydra.nixos.org/build/233209289 at 2023-09-02 + - hieraclus # failure in job https://hydra.nixos.org/build/233241310 at 2023-09-02 + - hierarchical-clustering # failure in job https://hydra.nixos.org/build/233226120 at 2023-09-02 + - hierarchical-exceptions # failure in job https://hydra.nixos.org/build/233195047 at 2023-09-02 + - hierarchy # failure in job https://hydra.nixos.org/build/233203253 at 2023-09-02 + - hiernotify # failure in job https://hydra.nixos.org/build/233223185 at 2023-09-02 + - hifi # failure in job https://hydra.nixos.org/build/233192325 at 2023-09-02 + - higher-leveldb # failure in job https://hydra.nixos.org/build/233237992 at 2023-09-02 + - higherorder # failure in job https://hydra.nixos.org/build/233201392 at 2023-09-02 + - highjson # failure in job https://hydra.nixos.org/build/233221080 at 2023-09-02 + - highlight-versions # failure in job https://hydra.nixos.org/build/233240502 at 2023-09-02 + - highWaterMark # failure in job https://hydra.nixos.org/build/233244731 at 2023-09-02 + - hills # failure in job https://hydra.nixos.org/build/233215201 at 2023-09-02 + - himg # failure in job https://hydra.nixos.org/build/233213810 at 2023-09-02 + - hindley-milner # failure in job https://hydra.nixos.org/build/233195252 at 2023-09-02 + - hindley-milner-type-check # failure in job https://hydra.nixos.org/build/233216545 at 2023-09-02 + - hinquire # failure in job https://hydra.nixos.org/build/233235549 at 2023-09-02 + - hinstaller # failure in job https://hydra.nixos.org/build/233244650 at 2023-09-02 + - hinterface # failure in job https://hydra.nixos.org/build/233250383 at 2023-09-02 + - hinter # failure in job https://hydra.nixos.org/build/233245954 at 2023-09-02 + - hint-server # failure in job https://hydra.nixos.org/build/233240346 at 2023-09-02 + - hipchat-hs # failure in job https://hydra.nixos.org/build/233198550 at 2023-09-02 + - Hipmunk # failure in job https://hydra.nixos.org/build/233259272 at 2023-09-02 + - hipsql-api # failure in job https://hydra.nixos.org/build/233222961 at 2023-09-02 + - hircules # failure in job https://hydra.nixos.org/build/233221393 at 2023-09-02 + - Hish # failure in job https://hydra.nixos.org/build/233226443 at 2023-09-02 + - hissmetrics # failure in job https://hydra.nixos.org/build/233206890 at 2023-09-02 + - historian # failure in job https://hydra.nixos.org/build/233210703 at 2023-09-02 + - hist-pl-types # failure in job https://hydra.nixos.org/build/233245977 at 2023-09-02 + - hit-on # failure in job https://hydra.nixos.org/build/233233939 at 2023-09-02 + - HJavaScript # failure in job https://hydra.nixos.org/build/233191718 at 2023-09-02 + - hjcase # failure in job https://hydra.nixos.org/build/233195095 at 2023-09-02 + - hjs # failure in job https://hydra.nixos.org/build/233215541 at 2023-09-02 + - hjsonpointer # failure in job https://hydra.nixos.org/build/233238177 at 2023-09-02 + - hjson-query # failure in job https://hydra.nixos.org/build/233202240 at 2023-09-02 + - hjugement-protocol # failure in job https://hydra.nixos.org/build/233227109 at 2023-09-02 + - HJVM # failure in job https://hydra.nixos.org/build/233238646 at 2023-09-02 + - hkd-delta # failure in job https://hydra.nixos.org/build/233204318 at 2023-09-02 + - hkd-lens # failure in job https://hydra.nixos.org/build/233242120 at 2023-09-02 + - hkd-records # failure in job https://hydra.nixos.org/build/233234491 at 2023-09-02 + - hkt # failure in job https://hydra.nixos.org/build/233244808 at 2023-09-02 + - hlbfgsb # failure in job https://hydra.nixos.org/build/233260021 at 2023-09-02 + - hleap # failure in job https://hydra.nixos.org/build/233229908 at 2023-09-02 + - hledger-chart # failure in job https://hydra.nixos.org/build/233205387 at 2023-09-02 + - hledger-diff # failure in job https://hydra.nixos.org/build/233199639 at 2023-09-02 + - hledger-flow # failure in job https://hydra.nixos.org/build/233252169 at 2023-09-02 + - hledger-iadd # failure in job https://hydra.nixos.org/build/233198670 at 2023-09-02 + - hledger-irr # failure in job https://hydra.nixos.org/build/233230276 at 2023-09-02 + - hledger-makeitso # failure in job https://hydra.nixos.org/build/233213046 at 2023-09-02 + - hledger-vty # failure in job https://hydra.nixos.org/build/233191782 at 2023-09-02 + - hlibBladeRF # failure in job https://hydra.nixos.org/build/233237204 at 2023-09-02 + - hlibev # failure in job https://hydra.nixos.org/build/233256218 at 2023-09-02 + - hlibfam # failure in job https://hydra.nixos.org/build/233244702 at 2023-09-02 + - HList # failure in job https://hydra.nixos.org/build/233193236 at 2023-09-02 + - hlivy # failure in job https://hydra.nixos.org/build/233222495 at 2023-09-02 + - hlogger # failure in job https://hydra.nixos.org/build/233197314 at 2023-09-02 + - HLogger # failure in job https://hydra.nixos.org/build/233247351 at 2023-09-02 + - hlongurl # failure in job https://hydra.nixos.org/build/233227204 at 2023-09-02 + - hls-brittany-plugin # failure in job https://hydra.nixos.org/build/233201998 at 2023-09-02 + - hls-haddock-comments-plugin # failure in job https://hydra.nixos.org/build/233233944 at 2023-09-02 + - hls-refine-imports-plugin # failure in job https://hydra.nixos.org/build/233211155 at 2023-09-02 + - hls-selection-range-plugin # failure in job https://hydra.nixos.org/build/233205582 at 2023-09-02 + - hls-stan-plugin # failure in job https://hydra.nixos.org/build/233246900 at 2023-09-02 + - hls-tactics-plugin # failure in job https://hydra.nixos.org/build/233238907 at 2023-09-02 + - hlwm # failure in job https://hydra.nixos.org/build/233235119 at 2023-09-02 + - hly # failure in job https://hydra.nixos.org/build/233206910 at 2023-09-02 + - hmarkup # failure in job https://hydra.nixos.org/build/233234817 at 2023-09-02 + - hmatrix-banded # failure in job https://hydra.nixos.org/build/233244249 at 2023-09-02 + - hmatrix-mmap # failure in job https://hydra.nixos.org/build/233233046 at 2023-09-02 + - hmatrix-nipals # failure in job https://hydra.nixos.org/build/233197543 at 2023-09-02 + - hmatrix-sparse # failure in job https://hydra.nixos.org/build/233224288 at 2023-09-02 + - hmatrix-static # failure in job https://hydra.nixos.org/build/233193039 at 2023-09-02 + - hmatrix-svdlibc # failure in job https://hydra.nixos.org/build/233216875 at 2023-09-02 + - hmatrix-syntax # failure in job https://hydra.nixos.org/build/233234153 at 2023-09-02 + - hmatrix-tests # failure in job https://hydra.nixos.org/build/233230077 at 2023-09-02 + - hmenu # failure in job https://hydra.nixos.org/build/233219510 at 2023-09-02 + - hmk # failure in job https://hydra.nixos.org/build/233226029 at 2023-09-02 + - hmm # failure in job https://hydra.nixos.org/build/233191368 at 2023-09-02 + - HMM # failure in job https://hydra.nixos.org/build/233233312 at 2023-09-02 + - hmm-hmatrix # failure in job https://hydra.nixos.org/build/233208947 at 2023-09-02 + - hMollom # failure in job https://hydra.nixos.org/build/233214138 at 2023-09-02 + - hmp3 # failure in job https://hydra.nixos.org/build/233240864 at 2023-09-02 + - Hmpf # failure in job https://hydra.nixos.org/build/233212948 at 2023-09-02 + - hmumps # failure in job https://hydra.nixos.org/build/233209336 at 2023-09-02 + - hnn # failure in job https://hydra.nixos.org/build/233253882 at 2023-09-02 + - hnock # failure in job https://hydra.nixos.org/build/233247419 at 2023-09-02 + - hnop # failure in job https://hydra.nixos.org/build/233214340 at 2023-09-02 + - hoauth2-providers # failure in job https://hydra.nixos.org/build/233231128 at 2023-09-02 + - hoauth2-tutorial # failure in job https://hydra.nixos.org/build/233198819 at 2023-09-02 + - hoauth # failure in job https://hydra.nixos.org/build/233191191 at 2023-09-02 + - hobbes # failure in job https://hydra.nixos.org/build/233211279 at 2023-09-02 + - hobbits # failure in job https://hydra.nixos.org/build/233209874 at 2023-09-02 + - hocilib # failure in job https://hydra.nixos.org/build/233256688 at 2023-09-02 + - hocker # failure in job https://hydra.nixos.org/build/233235020 at 2023-09-02 + - hocon # failure in job https://hydra.nixos.org/build/233235831 at 2023-09-02 + - hodatime # failure in job https://hydra.nixos.org/build/233213965 at 2023-09-02 + - HODE # failure in job https://hydra.nixos.org/build/233214875 at 2023-09-02 + - hoe # failure in job https://hydra.nixos.org/build/233218776 at 2023-09-02 + - hofix-mtl # failure in job https://hydra.nixos.org/build/233225185 at 2023-09-02 + - hog # failure in job https://hydra.nixos.org/build/233220359 at 2023-09-02 + - hogg # failure in job https://hydra.nixos.org/build/233257874 at 2023-09-02 + - hoggl # failure in job https://hydra.nixos.org/build/233194252 at 2023-09-02 + - hois # failure in job https://hydra.nixos.org/build/233250712 at 2023-09-02 + - hold-em # failure in job https://hydra.nixos.org/build/233236968 at 2023-09-02 + - hole # failure in job https://hydra.nixos.org/build/233226698 at 2023-09-02 + - holmes # failure in job https://hydra.nixos.org/build/233257690 at 2023-09-02 + - Holumbus-Searchengine # failure in job https://hydra.nixos.org/build/233203951 at 2023-09-02 + - homeomorphic # failure in job https://hydra.nixos.org/build/233203853 at 2023-09-02 + - homoiconic # failure in job https://hydra.nixos.org/build/233205548 at 2023-09-02 + - homplexity # failure in job https://hydra.nixos.org/build/233195616 at 2023-09-02 + - honi # failure in job https://hydra.nixos.org/build/233241731 at 2023-09-02 + - hoobuddy # failure in job https://hydra.nixos.org/build/233252172 at 2023-09-02 + - hood2 # failure in job https://hydra.nixos.org/build/233204179 at 2023-09-02 + - hoodle-types # failure in job https://hydra.nixos.org/build/233195584 at 2023-09-02 + - hood-off # failure in job https://hydra.nixos.org/build/233249500 at 2023-09-02 + - hoogle-index # failure in job https://hydra.nixos.org/build/233251874 at 2023-09-02 + - hooks-dir # failure in job https://hydra.nixos.org/build/233254014 at 2023-09-02 + - hoop # failure in job https://hydra.nixos.org/build/233214206 at 2023-09-02 + - hoopl # failure in job https://hydra.nixos.org/build/233250120 at 2023-09-02 + - hopencc # failure in job https://hydra.nixos.org/build/233192954 at 2023-09-02 + - hopencl # failure in job https://hydra.nixos.org/build/233249443 at 2023-09-02 + - HOpenCV # failure in job https://hydra.nixos.org/build/233255422 at 2023-09-02 + - hopenpgp-tools # failure in job https://hydra.nixos.org/build/233259304 at 2023-09-02 + - hopfield # failure in job https://hydra.nixos.org/build/233598214 at 2023-09-02 + - hoppy-generator # failure in job https://hydra.nixos.org/build/233240608 at 2023-09-02 + - hops # failure in job https://hydra.nixos.org/build/233207172 at 2023-09-02 + - hoq # failure in job https://hydra.nixos.org/build/233234499 at 2023-09-02 + - ho-rewriting # failure in job https://hydra.nixos.org/build/233253726 at 2023-09-02 + - horizon # failure in job https://hydra.nixos.org/build/233215473 at 2023-09-02 + - horizon-gen-nix # failure in job https://hydra.nixos.org/build/233663130 at 2023-09-02 + - horizon-spec-lens # failure in job https://hydra.nixos.org/build/233221337 at 2023-09-02 + - horizon-spec-pretty # failure in job https://hydra.nixos.org/build/233227612 at 2023-09-02 + - horname # failure in job https://hydra.nixos.org/build/233198123 at 2023-09-02 + - hosc-json # failure in job https://hydra.nixos.org/build/233220569 at 2023-09-02 + - hosts-server # failure in job https://hydra.nixos.org/build/233249074 at 2023-09-02 + - hothasktags # failure in job https://hydra.nixos.org/build/233207150 at 2023-09-02 + - hourglass-fuzzy-parsing # failure in job https://hydra.nixos.org/build/233200977 at 2023-09-02 + - houseman # failure in job https://hydra.nixos.org/build/233247185 at 2023-09-02 + - hp2any-core # failure in job https://hydra.nixos.org/build/233205070 at 2023-09-02 + - hpack-convert # failure in job https://hydra.nixos.org/build/233257334 at 2023-09-02 + - hpack-dhall # failure in job https://hydra.nixos.org/build/233663050 at 2023-09-02 + - hpapi # failure in job https://hydra.nixos.org/build/233208886 at 2023-09-02 + - hpasteit # failure in job https://hydra.nixos.org/build/233197680 at 2023-09-02 + - HPath # failure in job https://hydra.nixos.org/build/233257819 at 2023-09-02 + - hpc-coveralls # failure in job https://hydra.nixos.org/build/233255685 at 2023-09-02 + - hpg # failure in job https://hydra.nixos.org/build/233243212 at 2023-09-02 + - HPi # failure in job https://hydra.nixos.org/build/233257411 at 2023-09-02 + - hpio # failure in job https://hydra.nixos.org/build/233215789 at 2023-09-02 + - hplaylist # failure in job https://hydra.nixos.org/build/233219978 at 2023-09-02 + - hpodder # failure in job https://hydra.nixos.org/build/233207276 at 2023-09-02 + - hpqtypes # failure in job https://hydra.nixos.org/build/233256283 at 2023-09-02 + - hps-kmeans # failure in job https://hydra.nixos.org/build/233207461 at 2023-09-02 + - hPushover # failure in job https://hydra.nixos.org/build/233215804 at 2023-09-02 + - hpygments # failure in job https://hydra.nixos.org/build/233258827 at 2023-09-02 + - hpyrg # failure in job https://hydra.nixos.org/build/233225042 at 2023-09-02 + - hquantlib-time # failure in job https://hydra.nixos.org/build/233192009 at 2023-09-02 + - hquery # failure in job https://hydra.nixos.org/build/233203709 at 2023-09-02 + - hreq-core # failure in job https://hydra.nixos.org/build/233259937 at 2023-09-02 + - hRESP # failure in job https://hydra.nixos.org/build/233229961 at 2023-09-02 + - h-reversi # failure in job https://hydra.nixos.org/build/233235617 at 2023-09-02 + - hR # failure in job https://hydra.nixos.org/build/233205131 at 2023-09-02 + - Hricket # failure in job https://hydra.nixos.org/build/233226183 at 2023-09-02 + - hricket # failure in job https://hydra.nixos.org/build/233247261 at 2023-09-02 + - HROOT-core # failure in job https://hydra.nixos.org/build/233217487 at 2023-09-02 + - hruby # failure in job https://hydra.nixos.org/build/233210664 at 2023-09-02 + - hs2bf # failure in job https://hydra.nixos.org/build/233251996 at 2023-09-02 + - hs2ps # failure in job https://hydra.nixos.org/build/233258362 at 2023-09-02 + - hsaml2 # failure in job https://hydra.nixos.org/build/233252618 at 2023-09-02 + - hsay # failure in job https://hydra.nixos.org/build/233218925 at 2023-09-02 + - hsbc # failure in job https://hydra.nixos.org/build/233206310 at 2023-09-02 + - hsbencher # failure in job https://hydra.nixos.org/build/233214962 at 2023-09-02 + - hs-brotli # failure in job https://hydra.nixos.org/build/233215213 at 2023-09-02 + - hsc3-cairo # failure in job https://hydra.nixos.org/build/233215926 at 2023-09-02 + - hsc3-db # failure in job https://hydra.nixos.org/build/233191679 at 2023-09-02 + - hsc3-dot # failure in job https://hydra.nixos.org/build/233219452 at 2023-09-02 + - hsc3-lang # failure in job https://hydra.nixos.org/build/233198291 at 2023-09-02 + - hsc3-process # failure in job https://hydra.nixos.org/build/233196358 at 2023-09-02 + - hsc3-rec # failure in job https://hydra.nixos.org/build/233206364 at 2023-09-02 + - hsc3-rw # failure in job https://hydra.nixos.org/build/233244499 at 2023-09-02 + - hsc3-sf # failure in job https://hydra.nixos.org/build/233208404 at 2023-09-02 + - hsc3-unsafe # failure in job https://hydra.nixos.org/build/233202606 at 2023-09-02 + - hscaffold # failure in job https://hydra.nixos.org/build/233207380 at 2023-09-02 + - hscamwire # failure in job https://hydra.nixos.org/build/233194329 at 2023-09-02 + - hscd # failure in job https://hydra.nixos.org/build/233195644 at 2023-09-02 + - hscdio # failure in job https://hydra.nixos.org/build/233195843 at 2023-09-02 + - hschema-aeson # failure in job https://hydra.nixos.org/build/233196871 at 2023-09-02 + - hscim # failure in job https://hydra.nixos.org/build/233208569 at 2023-09-02 + - hsclock # failure in job https://hydra.nixos.org/build/233220439 at 2023-09-02 + - hScraper # failure in job https://hydra.nixos.org/build/233239652 at 2023-09-02 + - hscuid # failure in job https://hydra.nixos.org/build/233245223 at 2023-09-02 + - hs-di # failure in job https://hydra.nixos.org/build/233254606 at 2023-09-02 + - hsdif # failure in job https://hydra.nixos.org/build/233239725 at 2023-09-02 + - hsdip # failure in job https://hydra.nixos.org/build/233229128 at 2023-09-02 + - hsdns-cache # failure in job https://hydra.nixos.org/build/233225611 at 2023-09-02 + - hs-dotnet # failure in job https://hydra.nixos.org/build/233232755 at 2023-09-02 + - hs-duktape # failure in job https://hydra.nixos.org/build/233223882 at 2023-09-02 + - hsebaysdk # failure in job https://hydra.nixos.org/build/233251126 at 2023-09-02 + - hsenv # failure in job https://hydra.nixos.org/build/233196846 at 2023-09-02 + - HSet # failure in job https://hydra.nixos.org/build/233202216 at 2023-09-02 + - hs-excelx # failure in job https://hydra.nixos.org/build/233230761 at 2023-09-02 + - hsfcsh # failure in job https://hydra.nixos.org/build/233245258 at 2023-09-02 + - HSFFIG # failure in job https://hydra.nixos.org/build/233257379 at 2023-09-02 + - hsfilt # failure in job https://hydra.nixos.org/build/233242295 at 2023-09-02 + - hs-fltk # failure in job https://hydra.nixos.org/build/233225244 at 2023-09-02 + - hsforce # failure in job https://hydra.nixos.org/build/233242016 at 2023-09-02 + - hs-gizapp # failure in job https://hydra.nixos.org/build/233248733 at 2023-09-02 + - hsgnutls # failure in job https://hydra.nixos.org/build/233199419 at 2023-09-02 + - hsgnutls-yj # failure in job https://hydra.nixos.org/build/233220680 at 2023-09-02 + - hsgsom # failure in job https://hydra.nixos.org/build/233192340 at 2023-09-02 + - HsHaruPDF # failure in job https://hydra.nixos.org/build/233220916 at 2023-09-02 + - HsHyperEstraier # failure in job https://hydra.nixos.org/build/233253787 at 2023-09-02 + - hsI2C # failure in job https://hydra.nixos.org/build/233247520 at 2023-09-02 + - hSimpleDB # failure in job https://hydra.nixos.org/build/233236736 at 2023-09-02 + - hsimport # failure in job https://hydra.nixos.org/build/233219578 at 2023-09-02 + - hs-java # failure in job https://hydra.nixos.org/build/233224973 at 2023-09-02 + - hs-json-rpc # failure in job https://hydra.nixos.org/build/233217334 at 2023-09-02 + - HsJudy # failure in job https://hydra.nixos.org/build/233243273 at 2023-09-02 + - hskeleton # failure in job https://hydra.nixos.org/build/233220443 at 2023-09-02 + - hslackbuilder # failure in job https://hydra.nixos.org/build/233230141 at 2023-09-02 + - hslibsvm # failure in job https://hydra.nixos.org/build/233255959 at 2023-09-02 + - hslinks # failure in job https://hydra.nixos.org/build/233221444 at 2023-09-02 + - hslogger-reader # failure in job https://hydra.nixos.org/build/233226346 at 2023-09-02 + - hslogger-template # failure in job https://hydra.nixos.org/build/233192309 at 2023-09-02 + - hs-logo # failure in job https://hydra.nixos.org/build/233211298 at 2023-09-02 + - hsluv-haskell # failure in job https://hydra.nixos.org/build/233239548 at 2023-09-02 + - hsmagick # failure in job https://hydra.nixos.org/build/233235964 at 2023-09-02 + - hsmodetweaks # failure in job https://hydra.nixos.org/build/233663004 at 2023-09-02 + - Hsmtlib # failure in job https://hydra.nixos.org/build/233213073 at 2023-09-02 + - hsmtpclient # failure in job https://hydra.nixos.org/build/233224596 at 2023-09-02 + - hsnock # failure in job https://hydra.nixos.org/build/233194525 at 2023-09-02 + - hs-nombre-generator # failure in job https://hydra.nixos.org/build/233246102 at 2023-09-02 + - hsns # failure in job https://hydra.nixos.org/build/233240328 at 2023-09-02 + - hsnsq # failure in job https://hydra.nixos.org/build/233215245 at 2023-09-02 + - hsntp # failure in job https://hydra.nixos.org/build/233206211 at 2023-09-02 + - hsoptions # failure in job https://hydra.nixos.org/build/233198363 at 2023-09-02 + - hsoz # failure in job https://hydra.nixos.org/build/233217005 at 2023-09-02 + - hs-pattrans # failure in job https://hydra.nixos.org/build/233230577 at 2023-09-02 + - hsp-cgi # failure in job https://hydra.nixos.org/build/233254927 at 2023-09-02 + - hspear # failure in job https://hydra.nixos.org/build/233192286 at 2023-09-02 + - hspec2 # failure in job https://hydra.nixos.org/build/233251459 at 2023-09-02 + - hspec-api # failure in job https://hydra.nixos.org/build/233201204 at 2023-09-02 + - hspec-expectations-match # failure in job https://hydra.nixos.org/build/233210221 at 2023-09-02 + - hspec-experimental # failure in job https://hydra.nixos.org/build/233216119 at 2023-09-02 + - hspec-jenkins # failure in job https://hydra.nixos.org/build/233213269 at 2023-09-02 + - hspec-junit-formatter # failure in job https://hydra.nixos.org/build/233218310 at 2023-09-02 + - hspec-monad-control # failure in job https://hydra.nixos.org/build/233223942 at 2023-09-02 + - hspec-need-env # failure in job https://hydra.nixos.org/build/233208310 at 2023-09-02 + - hspec-slow # failure in job https://hydra.nixos.org/build/233248782 at 2023-09-02 + - hspec-structured-formatter # failure in job https://hydra.nixos.org/build/233199636 at 2023-09-02 + - hspec-tables # failure in job https://hydra.nixos.org/build/233221785 at 2023-09-02 + - HsPerl5 # failure in job https://hydra.nixos.org/build/233256038 at 2023-09-02 + - hs-pgms # failure in job https://hydra.nixos.org/build/233237693 at 2023-09-02 + - hspkcs11 # failure in job https://hydra.nixos.org/build/233225806 at 2023-09-02 + - hs-pkg-config # failure in job https://hydra.nixos.org/build/233240839 at 2023-09-02 + - hspread # failure in job https://hydra.nixos.org/build/233217578 at 2023-09-02 + - hspresent # failure in job https://hydra.nixos.org/build/233191185 at 2023-09-02 + - hspretty # failure in job https://hydra.nixos.org/build/233253394 at 2023-09-02 + - hsql # failure in job https://hydra.nixos.org/build/233217626 at 2023-09-02 + - hs-re # failure in job https://hydra.nixos.org/build/233253430 at 2023-09-02 + - hsrelp # failure in job https://hydra.nixos.org/build/233255841 at 2023-09-02 + - hs-rqlite # failure in job https://hydra.nixos.org/build/233191478 at 2023-09-02 + - hs-rs-notify # failure in job https://hydra.nixos.org/build/233253577 at 2023-09-02 + - hs-scrape # failure in job https://hydra.nixos.org/build/233244221 at 2023-09-02 + - hsseccomp # failure in job https://hydra.nixos.org/build/233194411 at 2023-09-02 + - hsshellscript # failure in job https://hydra.nixos.org/build/233197858 at 2023-09-02 + - hs-snowtify # failure in job https://hydra.nixos.org/build/233200511 at 2023-09-02 + - hsSqlite3 # failure in job https://hydra.nixos.org/build/233238549 at 2023-09-02 + - hssqlppp # failure in job https://hydra.nixos.org/build/233216888 at 2023-09-02 + - HsSVN # failure in job https://hydra.nixos.org/build/233213151 at 2023-09-02 + - hs-tags # failure in job https://hydra.nixos.org/build/233258358 at 2023-09-02 + - hstatsd # failure in job https://hydra.nixos.org/build/233232363 at 2023-09-02 + - hstats # failure in job https://hydra.nixos.org/build/233239963 at 2023-09-02 + - hs-term-emulator # failure in job https://hydra.nixos.org/build/233252262 at 2023-09-02 + - hstest # failure in job https://hydra.nixos.org/build/233237803 at 2023-09-02 + - hstidy # failure in job https://hydra.nixos.org/build/233194232 at 2023-09-02 + - HsTools # failure in job https://hydra.nixos.org/build/233234724 at 2023-09-02 + - hs-twitterarchiver # failure in job https://hydra.nixos.org/build/233241847 at 2023-09-02 + - hs-twitter # failure in job https://hydra.nixos.org/build/233214283 at 2023-09-02 + - hstyle # failure in job https://hydra.nixos.org/build/233232861 at 2023-09-02 + - hsudoku # failure in job https://hydra.nixos.org/build/233214738 at 2023-09-02 + - hs-vcard # failure in job https://hydra.nixos.org/build/233228457 at 2023-09-02 + - hs-watchman # failure in job https://hydra.nixos.org/build/233217591 at 2023-09-02 + - hsXenCtrl # failure in job https://hydra.nixos.org/build/233193837 at 2023-09-02 + - hsx # failure in job https://hydra.nixos.org/build/233211907 at 2023-09-02 + - hsyscall # failure in job https://hydra.nixos.org/build/233190699 at 2023-09-02 + - hsyslog-udp # failure in job https://hydra.nixos.org/build/233205524 at 2023-09-02 + - hszephyr # failure in job https://hydra.nixos.org/build/233204818 at 2023-09-02 + - hTalos # failure in job https://hydra.nixos.org/build/233246583 at 2023-09-02 + - htar # failure in job https://hydra.nixos.org/build/233218013 at 2023-09-02 + - hTensor # failure in job https://hydra.nixos.org/build/233205733 at 2023-09-02 + - htestu # failure in job https://hydra.nixos.org/build/233234583 at 2023-09-02 + - HTicTacToe # failure in job https://hydra.nixos.org/build/233235397 at 2023-09-02 + - htiled # failure in job https://hydra.nixos.org/build/233219305 at 2023-09-02 + - htlset # failure in job https://hydra.nixos.org/build/233203886 at 2023-09-02 + - html-parse # failure in job https://hydra.nixos.org/build/233241759 at 2023-09-02 + - html-rules # failure in job https://hydra.nixos.org/build/233200615 at 2023-09-02 + - html-tokenizer # failure in job https://hydra.nixos.org/build/233243581 at 2023-09-02 + - htoml # failure in job https://hydra.nixos.org/build/233246670 at 2023-09-02 + - htoml-megaparsec # failure in job https://hydra.nixos.org/build/233211134 at 2023-09-02 + - hts # failure in job https://hydra.nixos.org/build/233256407 at 2023-09-02 + - htsn # failure in job https://hydra.nixos.org/build/233197004 at 2023-09-02 + - htssets # failure in job https://hydra.nixos.org/build/233195420 at 2023-09-02 + - http2-client # failure in job https://hydra.nixos.org/build/233214193 at 2023-09-02 + - http2-grpc-types # failure in job https://hydra.nixos.org/build/233197769 at 2023-09-02 + - http2-tls # failure in job https://hydra.nixos.org/build/233227095 at 2023-09-02 + - http-attoparsec # failure in job https://hydra.nixos.org/build/233233534 at 2023-09-02 + - http-client-lens # failure in job https://hydra.nixos.org/build/233259168 at 2023-09-02 + - http-client-request-modifiers # failure in job https://hydra.nixos.org/build/233231339 at 2023-09-02 + - http-client-session # failure in job https://hydra.nixos.org/build/233221185 at 2023-09-02 + - http-client-streams # failure in job https://hydra.nixos.org/build/233233493 at 2023-09-02 + - http-conduit-browser # failure in job https://hydra.nixos.org/build/233213208 at 2023-09-02 + - http-conduit-downloader # failure in job https://hydra.nixos.org/build/233242604 at 2023-09-02 + - http-directory # failure in job https://hydra.nixos.org/build/233252965 at 2023-09-02 + - http-dispatch # failure in job https://hydra.nixos.org/build/233238880 at 2023-09-02 + - http-encodings # failure in job https://hydra.nixos.org/build/233232289 at 2023-09-02 + - http-grammar # failure in job https://hydra.nixos.org/build/233254392 at 2023-09-02 + - http-interchange # failure in job https://hydra.nixos.org/build/233213341 at 2023-09-02 + - http-kinder # failure in job https://hydra.nixos.org/build/233205030 at 2023-09-02 + - http-kit # failure in job https://hydra.nixos.org/build/233244992 at 2023-09-02 + - http-listen # failure in job https://hydra.nixos.org/build/233244011 at 2023-09-02 + - http-pony # failure in job https://hydra.nixos.org/build/233233492 at 2023-09-02 + - http-pony-serve-wai # failure in job https://hydra.nixos.org/build/233222241 at 2023-09-02 + - http-proxy # failure in job https://hydra.nixos.org/build/233218875 at 2023-09-02 + - http-querystring # failure in job https://hydra.nixos.org/build/233202925 at 2023-09-02 + - http-rfc7807 # failure in job https://hydra.nixos.org/build/233191433 at 2023-09-02 + - http-server # failure in job https://hydra.nixos.org/build/233209925 at 2023-09-02 + - http-shed # failure in job https://hydra.nixos.org/build/233236325 at 2023-09-02 + - httpstan # failure in job https://hydra.nixos.org/build/233202072 at 2023-09-02 + - http-wget # failure in job https://hydra.nixos.org/build/233236793 at 2023-09-02 + - htvm # failure in job https://hydra.nixos.org/build/233218993 at 2023-09-02 + - htzaar # failure in job https://hydra.nixos.org/build/233197602 at 2023-09-02 + - huck # failure in job https://hydra.nixos.org/build/233235354 at 2023-09-02 + - HueAPI # failure in job https://hydra.nixos.org/build/233234528 at 2023-09-02 + - huff # failure in job https://hydra.nixos.org/build/233194394 at 2023-09-02 + - huffman # failure in job https://hydra.nixos.org/build/233230189 at 2023-09-02 + - HulkImport # failure in job https://hydra.nixos.org/build/233193212 at 2023-09-02 + - human-parse # failure in job https://hydra.nixos.org/build/233212317 at 2023-09-02 + - human-text # failure in job https://hydra.nixos.org/build/233237802 at 2023-09-02 + - humble-prelude # failure in job https://hydra.nixos.org/build/233196934 at 2023-09-02 + - hum # failure in job https://hydra.nixos.org/build/233203730 at 2023-09-02 + - hums # failure in job https://hydra.nixos.org/build/233196188 at 2023-09-02 + - hunch # failure in job https://hydra.nixos.org/build/233215770 at 2023-09-02 + - HUnit-Diff # failure in job https://hydra.nixos.org/build/233221147 at 2023-09-02 + - HUnit-Plus # failure in job https://hydra.nixos.org/build/233208597 at 2023-09-02 + - hunit-rematch # failure in job https://hydra.nixos.org/build/233232138 at 2023-09-02 + - hup # failure in job https://hydra.nixos.org/build/233246919 at 2023-09-02 + - hurriyet # failure in job https://hydra.nixos.org/build/233200609 at 2023-09-02 + - husky # failure in job https://hydra.nixos.org/build/233214877 at 2023-09-02 + - hutton # failure in job https://hydra.nixos.org/build/233211451 at 2023-09-02 + - huttons-razor # failure in job https://hydra.nixos.org/build/233224736 at 2023-09-02 + - hVOIDP # failure in job https://hydra.nixos.org/build/233227778 at 2023-09-02 + - hwall-auth-iitk # failure in job https://hydra.nixos.org/build/233217629 at 2023-09-02 + - hw-ci-assist # failure in job https://hydra.nixos.org/build/233207990 at 2023-09-02 + - hw-dsv # failure in job https://hydra.nixos.org/build/233252280 at 2023-09-02 + - hw-dump # failure in job https://hydra.nixos.org/build/233208818 at 2023-09-02 + - hweblib # failure in job https://hydra.nixos.org/build/233250183 at 2023-09-02 + - hwhile # failure in job https://hydra.nixos.org/build/233206114 at 2023-09-02 + - hw-json-simd # failure in job https://hydra.nixos.org/build/233240490 at 2023-09-02 + - hworker # failure in job https://hydra.nixos.org/build/233220098 at 2023-09-02 + - hw-playground-linear # failure in job https://hydra.nixos.org/build/233208994 at 2023-09-02 + - hw-prim-bits # failure in job https://hydra.nixos.org/build/233246627 at 2023-09-02 + - hw-simd-cli # failure in job https://hydra.nixos.org/build/233223251 at 2023-09-02 + - hwsl2 # failure in job https://hydra.nixos.org/build/233203941 at 2023-09-02 + - hw-streams # failure in job https://hydra.nixos.org/build/233250370 at 2023-09-02 + - hw-tar # failure in job https://hydra.nixos.org/build/233219650 at 2023-09-02 + - hw-xml # failure in job https://hydra.nixos.org/build/233197758 at 2023-09-02 + - hx # failure in job https://hydra.nixos.org/build/233225223 at 2023-09-02 + - hxmppc # failure in job https://hydra.nixos.org/build/233253810 at 2023-09-02 + - HXQ # failure in job https://hydra.nixos.org/build/233218116 at 2023-09-02 + - hxt-pickle-utils # failure in job https://hydra.nixos.org/build/233212654 at 2023-09-02 + - hyakko # failure in job https://hydra.nixos.org/build/233199297 at 2023-09-02 + - hydra # failure in job https://hydra.nixos.org/build/233212477 at 2023-09-02 + - hydra-hs # failure in job https://hydra.nixos.org/build/233238247 at 2023-09-02 + - hydrogen # failure in job https://hydra.nixos.org/build/233219053 at 2023-09-02 + - hydrogen-multimap # failure in job https://hydra.nixos.org/build/233241591 at 2023-09-02 + - hylide # failure in job https://hydra.nixos.org/build/233251582 at 2023-09-02 + - hylolib # failure in job https://hydra.nixos.org/build/233197340 at 2023-09-02 + - hyperdrive # failure in job https://hydra.nixos.org/build/233223556 at 2023-09-02 + - hyper-extra # failure in job https://hydra.nixos.org/build/233216785 at 2023-09-02 + - hyperfunctions # failure in job https://hydra.nixos.org/build/233195544 at 2023-09-02 + - hyper-haskell-server # failure in job https://hydra.nixos.org/build/233244991 at 2023-09-02 + - hyperion # failure in job https://hydra.nixos.org/build/233218339 at 2023-09-02 + - hyperloglogplus # failure in job https://hydra.nixos.org/build/233259772 at 2023-09-02 + - hyperscript # failure in job https://hydra.nixos.org/build/233222333 at 2023-09-02 + - hypher # failure in job https://hydra.nixos.org/build/233233236 at 2023-09-02 + - hyraxAbif # failure in job https://hydra.nixos.org/build/233195246 at 2023-09-02 + - hzulip # failure in job https://hydra.nixos.org/build/233191086 at 2023-09-02 + - i18n # failure in job https://hydra.nixos.org/build/233247578 at 2023-09-02 + - I1M # failure in job https://hydra.nixos.org/build/233258307 at 2023-09-02 + - i3blocks-hs-contrib # failure in job https://hydra.nixos.org/build/233231742 at 2023-09-02 + - i3ipc # failure in job https://hydra.nixos.org/build/233213992 at 2023-09-02 + - iap-verifier # failure in job https://hydra.nixos.org/build/233202491 at 2023-09-02 + - iban # failure in job https://hydra.nixos.org/build/233236424 at 2023-09-02 + - ib-api # failure in job https://hydra.nixos.org/build/233223054 at 2023-09-02 + - ical # failure in job https://hydra.nixos.org/build/233200229 at 2023-09-02 + - icepeak # failure in job https://hydra.nixos.org/build/233242326 at 2023-09-02 + - icfpc2020-galaxy # failure in job https://hydra.nixos.org/build/233208746 at 2023-09-02 + - IcoGrid # failure in job https://hydra.nixos.org/build/233202038 at 2023-09-02 + - iconv-typed # failure in job https://hydra.nixos.org/build/233211253 at 2023-09-02 + - ideas # failure in job https://hydra.nixos.org/build/233248212 at 2023-09-02 + - ide-backend-common # failure in job https://hydra.nixos.org/build/233251470 at 2023-09-02 + - idempotent # failure in job https://hydra.nixos.org/build/233244413 at 2023-09-02 + - identifiers # failure in job https://hydra.nixos.org/build/233251845 at 2023-09-02 + - idiii # failure in job https://hydra.nixos.org/build/233228586 at 2023-09-02 + - idna2008 # failure in job https://hydra.nixos.org/build/233206444 at 2023-09-02 + - IDynamic # failure in job https://hydra.nixos.org/build/233196222 at 2023-09-02 + - ieee-utils # failure in job https://hydra.nixos.org/build/233224430 at 2023-09-02 + - iexcloud # failure in job https://hydra.nixos.org/build/233224874 at 2023-09-02 + - ifcxt # failure in job https://hydra.nixos.org/build/233196911 at 2023-09-02 + - IFS # failure in job https://hydra.nixos.org/build/233246865 at 2023-09-02 + - ige # failure in job https://hydra.nixos.org/build/233224389 at 2023-09-02 + - ig # failure in job https://hydra.nixos.org/build/233203872 at 2023-09-02 + - ignore # failure in job https://hydra.nixos.org/build/233238874 at 2023-09-02 + - igraph # failure in job https://hydra.nixos.org/build/233192875 at 2023-09-02 + - ihaskell-charts # failure in job https://hydra.nixos.org/build/233193328 at 2023-09-02 + - ihaskell-diagrams # failure in job https://hydra.nixos.org/build/233230959 at 2023-09-02 + - ihaskell-gnuplot # failure in job https://hydra.nixos.org/build/233223675 at 2023-09-02 + - ihaskell-graphviz # failure in job https://hydra.nixos.org/build/233200671 at 2023-09-02 + - ihaskell-parsec # failure in job https://hydra.nixos.org/build/233244271 at 2023-09-02 + - ihaskell-plot # failure in job https://hydra.nixos.org/build/233255936 at 2023-09-02 + - ihaskell-widgets # failure in job https://hydra.nixos.org/build/233198849 at 2023-09-02 + - ihp-hsx # failure in job https://hydra.nixos.org/build/233211401 at 2023-09-02 + - illuminate # failure in job https://hydra.nixos.org/build/233219478 at 2023-09-02 + - imagemagick # failure in job https://hydra.nixos.org/build/233598237 at 2023-09-02 + - imagepaste # failure in job https://hydra.nixos.org/build/233211716 at 2023-09-02 + - image-type # failure in job https://hydra.nixos.org/build/233251466 at 2023-09-02 + - imapget # failure in job https://hydra.nixos.org/build/233235664 at 2023-09-02 + - imgur # failure in job https://hydra.nixos.org/build/233191096 at 2023-09-02 + - imj-prelude # failure in job https://hydra.nixos.org/build/233234877 at 2023-09-02 + - immortal-worker # failure in job https://hydra.nixos.org/build/233246961 at 2023-09-02 + - ImperativeHaskell # failure in job https://hydra.nixos.org/build/233240920 at 2023-09-02 + - impl # failure in job https://hydra.nixos.org/build/233203425 at 2023-09-02 + - implicit-logging # failure in job https://hydra.nixos.org/build/233194358 at 2023-09-02 + - implicit-params # failure in job https://hydra.nixos.org/build/233201527 at 2023-09-02 + - imports # failure in job https://hydra.nixos.org/build/233227469 at 2023-09-02 + - impossible # failure in job https://hydra.nixos.org/build/233216237 at 2023-09-02 + - imprint # failure in job https://hydra.nixos.org/build/233246314 at 2023-09-02 + - impure-containers # failure in job https://hydra.nixos.org/build/233251408 at 2023-09-02 + - inchworm # failure in job https://hydra.nixos.org/build/233219017 at 2023-09-02 + - indentation-core # failure in job https://hydra.nixos.org/build/233257946 at 2023-09-02 + - index-core # failure in job https://hydra.nixos.org/build/233255196 at 2023-09-02 + - indexed-containers # failure in job https://hydra.nixos.org/build/233236806 at 2023-09-02 + - indexed-do-notation # failure in job https://hydra.nixos.org/build/233259970 at 2023-09-02 + - indextype # failure in job https://hydra.nixos.org/build/233230257 at 2023-09-02 + - indices # failure in job https://hydra.nixos.org/build/233198223 at 2023-09-02 + - infernal # failure in job https://hydra.nixos.org/build/233228571 at 2023-09-02 + - inferno-types # failure in job https://hydra.nixos.org/build/233225968 at 2023-09-02 + - infernu # failure in job https://hydra.nixos.org/build/233238697 at 2023-09-02 + - infer-upstream # failure in job https://hydra.nixos.org/build/233191739 at 2023-09-02 + - inf-interval # failure in job https://hydra.nixos.org/build/233193217 at 2023-09-02 + - infix # failure in job https://hydra.nixos.org/build/233256976 at 2023-09-02 + - inflist # failure in job https://hydra.nixos.org/build/233223710 at 2023-09-02 + - informative # failure in job https://hydra.nixos.org/build/233215837 at 2023-09-02 + - inilist # failure in job https://hydra.nixos.org/build/233203791 at 2023-09-02 + - ini-qq # failure in job https://hydra.nixos.org/build/233201946 at 2023-09-02 + - initialize # failure in job https://hydra.nixos.org/build/233228739 at 2023-09-02 + - inj-base # failure in job https://hydra.nixos.org/build/233198720 at 2023-09-02 + - inject-function # failure in job https://hydra.nixos.org/build/233252462 at 2023-09-02 + - injections # failure in job https://hydra.nixos.org/build/233207796 at 2023-09-02 + - inline-c-objc # failure in job https://hydra.nixos.org/build/233223704 at 2023-09-02 + - inline-r # failure in job https://hydra.nixos.org/build/233210520 at 2023-09-02 + - in-other-words-plugin # failure in job https://hydra.nixos.org/build/233202396 at 2023-09-02 + - inserts # failure in job https://hydra.nixos.org/build/233198758 at 2023-09-02 + - instana-haskell-trace-sdk # failure in job https://hydra.nixos.org/build/233211339 at 2023-09-02 + - instance-map # failure in job https://hydra.nixos.org/build/233209014 at 2023-09-02 + - instant-generics # failure in job https://hydra.nixos.org/build/233209385 at 2023-09-02 + - instapaper-sender # failure in job https://hydra.nixos.org/build/233225390 at 2023-09-02 + - instinct # failure in job https://hydra.nixos.org/build/233203632 at 2023-09-02 + - intcode # failure in job https://hydra.nixos.org/build/233198813 at 2023-09-02 + - integer-pure # failure in job https://hydra.nixos.org/build/233216037 at 2023-09-02 + - integer-simple # failure in job https://hydra.nixos.org/build/233192893 at 2023-09-02 + - intensional-datatys # failure in job https://hydra.nixos.org/build/233218337 at 2023-09-02 + - interact # failure in job https://hydra.nixos.org/build/233228146 at 2023-09-02 + - interactive-plot # failure in job https://hydra.nixos.org/build/233212280 at 2023-09-02 + - interleavableGen # failure in job https://hydra.nixos.org/build/233226525 at 2023-09-02 + - interleavableIO # failure in job https://hydra.nixos.org/build/233257474 at 2023-09-02 + - interlude-l # failure in job https://hydra.nixos.org/build/233204840 at 2023-09-02 + - internetmarke # failure in job https://hydra.nixos.org/build/233229638 at 2023-09-02 + - intero # failure in job https://hydra.nixos.org/build/233250290 at 2023-09-02 + - interp # failure in job https://hydra.nixos.org/build/233225966 at 2023-09-02 + - interpolatedstring-qq2 # failure in job https://hydra.nixos.org/build/233231621 at 2023-09-02 + - interpolator # failure in job https://hydra.nixos.org/build/233218382 at 2023-09-02 + - interpol # failure in job https://hydra.nixos.org/build/233218430 at 2023-09-02 + - interruptible # failure in job https://hydra.nixos.org/build/233209873 at 2023-09-02 + - interval-algebra # failure in job https://hydra.nixos.org/build/233208487 at 2023-09-02 + - interval # failure in job https://hydra.nixos.org/build/233239434 at 2023-09-02 + - interval-tree-clock # failure in job https://hydra.nixos.org/build/233234316 at 2023-09-02 + - IntFormats # failure in job https://hydra.nixos.org/build/233195190 at 2023-09-02 + - int-interval-map # failure in job https://hydra.nixos.org/build/233244556 at 2023-09-02 + - int-like # failure in job https://hydra.nixos.org/build/233245537 at 2023-09-02 + - int-multimap # failure in job https://hydra.nixos.org/build/233210427 at 2023-09-02 + - intrinsic-superclasses # failure in job https://hydra.nixos.org/build/233228909 at 2023-09-02 + - introduction # failure in job https://hydra.nixos.org/build/233223585 at 2023-09-02 + - intro # failure in job https://hydra.nixos.org/build/233192297 at 2023-09-02 + - invertible-syntax # failure in job https://hydra.nixos.org/build/233230924 at 2023-09-02 + - involutive-semigroups # failure in job https://hydra.nixos.org/build/233239156 at 2023-09-02 + - io-capture # failure in job https://hydra.nixos.org/build/233196311 at 2023-09-02 + - io-choice # failure in job https://hydra.nixos.org/build/233218388 at 2023-09-02 + - ioctl # failure in job https://hydra.nixos.org/build/233191634 at 2023-09-02 + - io-reactive # failure in job https://hydra.nixos.org/build/233205095 at 2023-09-02 + - IOR # failure in job https://hydra.nixos.org/build/233206346 at 2023-09-02 + - iostring # failure in job https://hydra.nixos.org/build/233195232 at 2023-09-02 + - iothread # failure in job https://hydra.nixos.org/build/233255761 at 2023-09-02 + - iotransaction # failure in job https://hydra.nixos.org/build/233226259 at 2023-09-02 + - ip2location # failure in job https://hydra.nixos.org/build/233208648 at 2023-09-02 + - ip2proxy # failure in job https://hydra.nixos.org/build/233218808 at 2023-09-02 + - ipa # failure in job https://hydra.nixos.org/build/233242228 at 2023-09-02 + - ipfs # failure in job https://hydra.nixos.org/build/233598054 at 2023-09-02 + - ipopt-hs # failure in job https://hydra.nixos.org/build/233210102 at 2023-09-02 + - ip-quoter # failure in job https://hydra.nixos.org/build/233234581 at 2023-09-02 + - iptables-helpers # failure in job https://hydra.nixos.org/build/233198949 at 2023-09-02 + - IPv6DB # failure in job https://hydra.nixos.org/build/233199983 at 2023-09-02 + - ircbot # failure in job https://hydra.nixos.org/build/233237219 at 2023-09-02 + - irc-core # failure in job https://hydra.nixos.org/build/233242138 at 2023-09-02 + - irc-dcc # failure in job https://hydra.nixos.org/build/233230181 at 2023-09-02 + - Irc # failure in job https://hydra.nixos.org/build/233230852 at 2023-09-02 + - irc-fun-types # failure in job https://hydra.nixos.org/build/233255910 at 2023-09-02 + - ireal # failure in job https://hydra.nixos.org/build/233239811 at 2023-09-02 + - iridium # failure in job https://hydra.nixos.org/build/233211261 at 2023-09-02 + - iri # failure in job https://hydra.nixos.org/build/233197230 at 2023-09-02 + - iris # failure in job https://hydra.nixos.org/build/233212713 at 2023-09-02 + - iron-mq # failure in job https://hydra.nixos.org/build/233200693 at 2023-09-02 + - irt # failure in job https://hydra.nixos.org/build/233216553 at 2023-09-02 + - isdicom # failure in job https://hydra.nixos.org/build/233214249 at 2023-09-02 + - IsNull # failure in job https://hydra.nixos.org/build/233233011 at 2023-09-02 + - iso8601-duration # failure in job https://hydra.nixos.org/build/233190968 at 2023-09-02 + - isobmff # failure in job https://hydra.nixos.org/build/233237273 at 2023-09-02 + - isotope # failure in job https://hydra.nixos.org/build/233204650 at 2023-09-02 + - itcli # failure in job https://hydra.nixos.org/build/233201572 at 2023-09-02 + - itemfield # failure in job https://hydra.nixos.org/build/233203571 at 2023-09-02 + - iteratee # failure in job https://hydra.nixos.org/build/233241290 at 2023-09-02 + - iterative-forward-search # failure in job https://hydra.nixos.org/build/233256255 at 2023-09-02 + - iterIO # failure in job https://hydra.nixos.org/build/233199156 at 2023-09-02 + - iterm-show # failure in job https://hydra.nixos.org/build/233215093 at 2023-09-02 + - it-has # failure in job https://hydra.nixos.org/build/233212395 at 2023-09-02 + - ivory # failure in job https://hydra.nixos.org/build/233236762 at 2023-09-02 + - ixdopp # failure in job https://hydra.nixos.org/build/233204986 at 2023-09-02 + - ixmonad # failure in job https://hydra.nixos.org/build/233252940 at 2023-09-02 + - ixshader # failure in job https://hydra.nixos.org/build/233247507 at 2023-09-02 + - jack-bindings # failure in job https://hydra.nixos.org/build/233211671 at 2023-09-02 + - JackMiniMix # failure in job https://hydra.nixos.org/build/233224671 at 2023-09-02 + - jackminimix # failure in job https://hydra.nixos.org/build/233259985 at 2023-09-02 + - jacobi-roots # failure in job https://hydra.nixos.org/build/233208856 at 2023-09-02 + - jaeger-flamegraph # failure in job https://hydra.nixos.org/build/233249468 at 2023-09-02 + - jail # failure in job https://hydra.nixos.org/build/233251033 at 2023-09-02 + - jalla # failure in job https://hydra.nixos.org/build/233197939 at 2023-09-02 + - jammittools # failure in job https://hydra.nixos.org/build/233192227 at 2023-09-02 + - jarfind # failure in job https://hydra.nixos.org/build/233205367 at 2023-09-02 + - jarify # failure in job https://hydra.nixos.org/build/233228020 at 2023-09-02 + - jaskell # failure in job https://hydra.nixos.org/build/233236416 at 2023-09-02 + - jason # failure in job https://hydra.nixos.org/build/233260078 at 2023-09-02 + - java-adt # failure in job https://hydra.nixos.org/build/233256402 at 2023-09-02 + - java-bridge # failure in job https://hydra.nixos.org/build/233219258 at 2023-09-02 + - javascript-bridge # failure in job https://hydra.nixos.org/build/233217052 at 2023-09-02 + - Javav # failure in job https://hydra.nixos.org/build/233243825 at 2023-09-02 + - javav # failure in job https://hydra.nixos.org/build/233246644 at 2023-09-02 + - jbi # failure in job https://hydra.nixos.org/build/233221466 at 2023-09-02 + - jcdecaux-vls # failure in job https://hydra.nixos.org/build/233225142 at 2023-09-02 + - Jdh # failure in job https://hydra.nixos.org/build/233251434 at 2023-09-02 + - jdi # failure in job https://hydra.nixos.org/build/233238540 at 2023-09-02 + - jenga # failure in job https://hydra.nixos.org/build/233191848 at 2023-09-02 + - jenkinsPlugins2nix # failure in job https://hydra.nixos.org/build/233259520 at 2023-09-02 + - jet-stream # failure in job https://hydra.nixos.org/build/233242983 at 2023-09-02 + - Jikka # failure in job https://hydra.nixos.org/build/233204253 at 2023-09-02 + - jinquantities # failure in job https://hydra.nixos.org/build/233205834 at 2023-09-02 + - jmacro-rpc # failure in job https://hydra.nixos.org/build/233236314 at 2023-09-02 + - jml-web-service # failure in job https://hydra.nixos.org/build/233225466 at 2023-09-02 + - jni # failure in job https://hydra.nixos.org/build/233201106 at 2023-09-02 + - join-api # failure in job https://hydra.nixos.org/build/233195265 at 2023-09-02 + - joinlist # failure in job https://hydra.nixos.org/build/233248471 at 2023-09-02 + - jonathanscard # failure in job https://hydra.nixos.org/build/233234239 at 2023-09-02 + - jordan # failure in job https://hydra.nixos.org/build/233224727 at 2023-09-02 + - jort # failure in job https://hydra.nixos.org/build/233195250 at 2023-09-02 + - joy-rewrite # failure in job https://hydra.nixos.org/build/233201002 at 2023-09-02 + - jpeg # failure in job https://hydra.nixos.org/build/233204056 at 2023-09-02 + - jsaddle-clib # failure in job https://hydra.nixos.org/build/233203899 at 2023-09-02 + - jsaddle-warp # failure in job https://hydra.nixos.org/build/233252373 at 2023-09-02 + - jsaddle-wkwebview # failure in job https://hydra.nixos.org/build/233242986 at 2023-09-02 + - js-good-parts # failure in job https://hydra.nixos.org/build/233198958 at 2023-09-02 + - json2 # failure in job https://hydra.nixos.org/build/233242447 at 2023-09-02 + - json-alt # failure in job https://hydra.nixos.org/build/233242230 at 2023-09-02 + - json-api # failure in job https://hydra.nixos.org/build/233198171 at 2023-09-02 + - json-api-lib # failure in job https://hydra.nixos.org/build/233210901 at 2023-09-02 + - json-assertions # failure in job https://hydra.nixos.org/build/233196774 at 2023-09-02 + - json-ast-quickcheck # failure in job https://hydra.nixos.org/build/233249099 at 2023-09-02 + - JSONb # failure in job https://hydra.nixos.org/build/233231060 at 2023-09-02 + - json-builder # failure in job https://hydra.nixos.org/build/233222400 at 2023-09-02 + - json-bytes-builder # failure in job https://hydra.nixos.org/build/233238428 at 2023-09-02 + - json-encoder # failure in job https://hydra.nixos.org/build/233194614 at 2023-09-02 + - jsonextfilter # failure in job https://hydra.nixos.org/build/233194770 at 2023-09-02 + - json-extra # failure in job https://hydra.nixos.org/build/233212026 at 2023-09-02 + - json-fu # failure in job https://hydra.nixos.org/build/233221469 at 2023-09-02 + - json-litobj # failure in job https://hydra.nixos.org/build/233234388 at 2023-09-02 + - jsonlogic-aeson # failure in job https://hydra.nixos.org/build/233246828 at 2023-09-02 + - jsonnet # failure in job https://hydra.nixos.org/build/233254884 at 2023-09-02 + - json-pointer # failure in job https://hydra.nixos.org/build/233229617 at 2023-09-02 + - json-pointy # failure in job https://hydra.nixos.org/build/233255533 at 2023-09-02 + - json-python # failure in job https://hydra.nixos.org/build/233200964 at 2023-09-02 + - json-qq # failure in job https://hydra.nixos.org/build/233196259 at 2023-09-02 + - jsonresume # failure in job https://hydra.nixos.org/build/233202350 at 2023-09-02 + - jsonrpc-conduit # failure in job https://hydra.nixos.org/build/233195089 at 2023-09-02 + - json-rpc-generic # failure in job https://hydra.nixos.org/build/233201371 at 2023-09-02 + - json-rpc-server # failure in job https://hydra.nixos.org/build/233201284 at 2023-09-02 + - jsonrpc-tinyclient # failure in job https://hydra.nixos.org/build/233214174 at 2023-09-02 + - jsonschema-gen # failure in job https://hydra.nixos.org/build/233225063 at 2023-09-02 + - jsonsql # failure in job https://hydra.nixos.org/build/233255704 at 2023-09-02 + - json-syntax # failure in job https://hydra.nixos.org/build/233250639 at 2023-09-02 + - json-tools # failure in job https://hydra.nixos.org/build/233247019 at 2023-09-02 + - json-tracer # failure in job https://hydra.nixos.org/build/233196632 at 2023-09-02 + - jsontsv # failure in job https://hydra.nixos.org/build/233234129 at 2023-09-02 + - jsonxlsx # failure in job https://hydra.nixos.org/build/233201772 at 2023-09-02 + - jsop # failure in job https://hydra.nixos.org/build/233239247 at 2023-09-02 + - judge # failure in job https://hydra.nixos.org/build/233231777 at 2023-09-02 + - judy # failure in job https://hydra.nixos.org/build/233259826 at 2023-09-02 + - JuicyPixels-blp # failure in job https://hydra.nixos.org/build/233220427 at 2023-09-02 + - JuicyPixels-blurhash # failure in job https://hydra.nixos.org/build/233228377 at 2023-09-02 + - JuicyPixels-canvas # failure in job https://hydra.nixos.org/build/233198693 at 2023-09-02 + - JuicyPixels-util # failure in job https://hydra.nixos.org/build/233200460 at 2023-09-02 + - jukebox # failure in job https://hydra.nixos.org/build/233195186 at 2023-09-02 + - JunkDB # failure in job https://hydra.nixos.org/build/233203494 at 2023-09-02 + - jupyter # failure in job https://hydra.nixos.org/build/233232429 at 2023-09-02 + - justified-containers # failure in job https://hydra.nixos.org/build/233240362 at 2023-09-02 + - JustParse # failure in job https://hydra.nixos.org/build/233257181 at 2023-09-02 + - jvm-binary # failure in job https://hydra.nixos.org/build/233208537 at 2023-09-02 + - jvm-parser # failure in job https://hydra.nixos.org/build/233201395 at 2023-09-02 + - JYU-Utils # failure in job https://hydra.nixos.org/build/233204548 at 2023-09-02 + - k8s-wrapper # failure in job https://hydra.nixos.org/build/233202485 at 2023-09-02 + - kademlia # failure in job https://hydra.nixos.org/build/233250935 at 2023-09-02 + - kafka-client # failure in job https://hydra.nixos.org/build/233243580 at 2023-09-02 + - kafka-client-sync # failure in job https://hydra.nixos.org/build/233208699 at 2023-09-02 + - Kalman # failure in job https://hydra.nixos.org/build/233210601 at 2023-09-02 + - kalman # failure in job https://hydra.nixos.org/build/233226292 at 2023-09-02 + - kangaroo # failure in job https://hydra.nixos.org/build/233222234 at 2023-09-02 + - kanji # failure in job https://hydra.nixos.org/build/233208078 at 2023-09-02 + - karabiner-config # failure in job https://hydra.nixos.org/build/233217813 at 2023-09-02 + - karps # failure in job https://hydra.nixos.org/build/233243155 at 2023-09-02 + - katip-datadog # failure in job https://hydra.nixos.org/build/233214346 at 2023-09-02 + - katip-elasticsearch # failure in job https://hydra.nixos.org/build/233208410 at 2023-09-02 + - katip-kafka # failure in job https://hydra.nixos.org/build/233241819 at 2023-09-02 + - katip-logzio # failure in job https://hydra.nixos.org/build/233237068 at 2023-09-02 + - katip-raven # failure in job https://hydra.nixos.org/build/233200300 at 2023-09-02 + - katip-scalyr-scribe # failure in job https://hydra.nixos.org/build/233257038 at 2023-09-02 + - katip-syslog # failure in job https://hydra.nixos.org/build/233238787 at 2023-09-02 + - katt # failure in job https://hydra.nixos.org/build/233241058 at 2023-09-02 + - katydid # failure in job https://hydra.nixos.org/build/233227524 at 2023-09-02 + - kawaii # failure in job https://hydra.nixos.org/build/233205134 at 2023-09-02 + - Kawaii-Parser # failure in job https://hydra.nixos.org/build/233222574 at 2023-09-02 + - kawhi # failure in job https://hydra.nixos.org/build/233193086 at 2023-09-02 + - kdesrc-build-extra # failure in job https://hydra.nixos.org/build/233193718 at 2023-09-02 + - kd-tree # failure in job https://hydra.nixos.org/build/233207928 at 2023-09-02 + - keccak # failure in job https://hydra.nixos.org/build/233200469 at 2023-09-02 + - keenser # failure in job https://hydra.nixos.org/build/233200021 at 2023-09-02 + - keera-hails-reactivevalues # failure in job https://hydra.nixos.org/build/233258391 at 2023-09-02 + - keid-render-basic # failure in job https://hydra.nixos.org/build/233258215 at 2023-09-02 + - keiretsu # failure in job https://hydra.nixos.org/build/233195563 at 2023-09-02 + - kempe # failure in job https://hydra.nixos.org/build/233221290 at 2023-09-02 + - kesha # failure in job https://hydra.nixos.org/build/233215581 at 2023-09-02 + - Ketchup # failure in job https://hydra.nixos.org/build/233211862 at 2023-09-02 + - kewar # failure in job https://hydra.nixos.org/build/233237574 at 2023-09-02 + - keycloak-hs # failure in job https://hydra.nixos.org/build/233193019 at 2023-09-02 + - keyed # failure in job https://hydra.nixos.org/build/233251186 at 2023-09-02 + - khph # failure in job https://hydra.nixos.org/build/233258109 at 2023-09-02 + - kickass-torrents-dump-parser # failure in job https://hydra.nixos.org/build/233210355 at 2023-09-02 + - kickchan # failure in job https://hydra.nixos.org/build/233216091 at 2023-09-02 + - kind-integer # failure in job https://hydra.nixos.org/build/233250066 at 2023-09-02 + - kleene-list # failure in job https://hydra.nixos.org/build/233237651 at 2023-09-02 + - kmn-programming # failure in job https://hydra.nixos.org/build/233258328 at 2023-09-02 + - kmonad # failure in job https://hydra.nixos.org/build/233239997 at 2023-09-02 + - kmp-dfa # failure in job https://hydra.nixos.org/build/233237266 at 2023-09-02 + - knots # failure in job https://hydra.nixos.org/build/233209153 at 2023-09-02 + - koellner-phonetic # failure in job https://hydra.nixos.org/build/233217750 at 2023-09-02 + - koneko # failure in job https://hydra.nixos.org/build/233204838 at 2023-09-02 + - Konf # failure in job https://hydra.nixos.org/build/233244880 at 2023-09-02 + - konnakol # failure in job https://hydra.nixos.org/build/233221792 at 2023-09-02 + - kontra-config # failure in job https://hydra.nixos.org/build/233193800 at 2023-09-02 + - koofr-client # failure in job https://hydra.nixos.org/build/233255749 at 2023-09-02 + - korea-holidays # failure in job https://hydra.nixos.org/build/233222677 at 2023-09-02 + - kraken # failure in job https://hydra.nixos.org/build/233202384 at 2023-09-02 + - krapsh # failure in job https://hydra.nixos.org/build/233219887 at 2023-09-02 + - Kriens # failure in job https://hydra.nixos.org/build/233251673 at 2023-09-02 + - krpc # failure in job https://hydra.nixos.org/build/233231587 at 2023-09-02 + - KSP # failure in job https://hydra.nixos.org/build/233225102 at 2023-09-02 + - ktx # failure in job https://hydra.nixos.org/build/233235924 at 2023-09-02 + - kubernetes-client-core # failure in job https://hydra.nixos.org/build/233235252 at 2023-09-02 + - kubernetes-webhook-haskell # failure in job https://hydra.nixos.org/build/233207675 at 2023-09-02 + - kudzu # failure in job https://hydra.nixos.org/build/233230306 at 2023-09-02 + - kuifje # failure in job https://hydra.nixos.org/build/233210240 at 2023-09-02 + - kure # failure in job https://hydra.nixos.org/build/233197164 at 2023-09-02 + - KyotoCabinet # failure in job https://hydra.nixos.org/build/233252460 at 2023-09-02 + - l10n # failure in job https://hydra.nixos.org/build/233199064 at 2023-09-02 + - labeled-graph # failure in job https://hydra.nixos.org/build/233241327 at 2023-09-02 + - lambda2js # failure in job https://hydra.nixos.org/build/233221862 at 2023-09-02 + - lambdaBase # failure in job https://hydra.nixos.org/build/233194002 at 2023-09-02 + - lambdabot-utils # failure in job https://hydra.nixos.org/build/233224842 at 2023-09-02 + - lambdabot-xmpp # failure in job https://hydra.nixos.org/build/233212018 at 2023-09-02 + - lambda-bridge # failure in job https://hydra.nixos.org/build/233230630 at 2023-09-02 + - lambda-calculator # failure in job https://hydra.nixos.org/build/233243971 at 2023-09-02 + - lambdacms-core # failure in job https://hydra.nixos.org/build/233217257 at 2023-09-02 + - lambdacube-core # failure in job https://hydra.nixos.org/build/233233440 at 2023-09-02 + - lambdacube-engine # failure in job https://hydra.nixos.org/build/233223079 at 2023-09-02 + - lambda-cube # failure in job https://hydra.nixos.org/build/233226812 at 2023-09-02 + - lambdacube-ir # failure in job https://hydra.nixos.org/build/233210019 at 2023-09-02 + - LambdaDesigner # failure in job https://hydra.nixos.org/build/233216338 at 2023-09-02 + - Lambdajudge # failure in job https://hydra.nixos.org/build/233227016 at 2023-09-02 + - LambdaNet # failure in job https://hydra.nixos.org/build/233197999 at 2023-09-02 + - lambda-sampler # failure in job https://hydra.nixos.org/build/233205734 at 2023-09-02 + - lambdatex # failure in job https://hydra.nixos.org/build/233215389 at 2023-09-02 + - lambda-toolbox # failure in job https://hydra.nixos.org/build/233194921 at 2023-09-02 + - lambdatwit # failure in job https://hydra.nixos.org/build/233219603 at 2023-09-02 + - Lambdaya # failure in job https://hydra.nixos.org/build/233227702 at 2023-09-02 + - lame # failure in job https://hydra.nixos.org/build/233250932 at 2023-09-02 + - language-asn # failure in job https://hydra.nixos.org/build/233227929 at 2023-09-02 + - language-c-comments # failure in job https://hydra.nixos.org/build/233234112 at 2023-09-02 + - language-c-inline # failure in job https://hydra.nixos.org/build/233245990 at 2023-09-02 + - language-conf # failure in job https://hydra.nixos.org/build/233208178 at 2023-09-02 + - language-csharp # failure in job https://hydra.nixos.org/build/233240911 at 2023-09-02 + - language-dart # failure in job https://hydra.nixos.org/build/233220340 at 2023-09-02 + - language-dockerfile # failure in job https://hydra.nixos.org/build/233197924 at 2023-09-02 + - language-elm # failure in job https://hydra.nixos.org/build/233214012 at 2023-09-02 + - language-fortran # failure in job https://hydra.nixos.org/build/233205480 at 2023-09-02 + - language-gcl # failure in job https://hydra.nixos.org/build/233218957 at 2023-09-02 + - language-gemini # failure in job https://hydra.nixos.org/build/233211812 at 2023-09-02 + - language-go # failure in job https://hydra.nixos.org/build/233194866 at 2023-09-02 + - language-guess # failure in job https://hydra.nixos.org/build/233257420 at 2023-09-02 + - language-hcl # failure in job https://hydra.nixos.org/build/233212998 at 2023-09-02 + - language-java-classfile # failure in job https://hydra.nixos.org/build/233257021 at 2023-09-02 + - language-js # failure in job https://hydra.nixos.org/build/233190676 at 2023-09-02 + - language-lua2 # failure in job https://hydra.nixos.org/build/233197435 at 2023-09-02 + - language-lua-qq # failure in job https://hydra.nixos.org/build/233194697 at 2023-09-02 + - language-mixal # failure in job https://hydra.nixos.org/build/233226763 at 2023-09-02 + - language-objc # failure in job https://hydra.nixos.org/build/233258340 at 2023-09-02 + - language-ocaml # failure in job https://hydra.nixos.org/build/233238127 at 2023-09-02 + - language-openscad # failure in job https://hydra.nixos.org/build/233201773 at 2023-09-02 + - language-pig # failure in job https://hydra.nixos.org/build/233249886 at 2023-09-02 + - language-rust # failure in job https://hydra.nixos.org/build/233194292 at 2023-09-02 + - language-sally # failure in job https://hydra.nixos.org/build/233250891 at 2023-09-02 + - language-sh # failure in job https://hydra.nixos.org/build/233249709 at 2023-09-02 + - language-sqlite # failure in job https://hydra.nixos.org/build/233248845 at 2023-09-02 + - language-sygus # failure in job https://hydra.nixos.org/build/233192608 at 2023-09-02 + - language-typescript # failure in job https://hydra.nixos.org/build/233247703 at 2023-09-02 + - language-webidl # failure in job https://hydra.nixos.org/build/233194656 at 2023-09-02 + - laop # failure in job https://hydra.nixos.org/build/233204106 at 2023-09-02 + - LargeCardinalHierarchy # failure in job https://hydra.nixos.org/build/233250339 at 2023-09-02 + - large-generics # failure in job https://hydra.nixos.org/build/233210324 at 2023-09-02 + - Lastik # failure in job https://hydra.nixos.org/build/233194460 at 2023-09-02 + - latest-npm-version # failure in job https://hydra.nixos.org/build/233239108 at 2023-09-02 + - latex-formulae-image # failure in job https://hydra.nixos.org/build/233251243 at 2023-09-02 + - latex-svg-image # failure in job https://hydra.nixos.org/build/233239345 at 2023-09-02 + - LATS # failure in job https://hydra.nixos.org/build/233248029 at 2023-09-02 + - launchdarkly-server-sdk # failure in job https://hydra.nixos.org/build/233190791 at 2023-09-02 + - launchpad-control # failure in job https://hydra.nixos.org/build/233219502 at 2023-09-02 + - lawless-concurrent-machines # failure in job https://hydra.nixos.org/build/233225327 at 2023-09-02 + - layers # failure in job https://hydra.nixos.org/build/233196766 at 2023-09-02 + - layout-bootstrap # failure in job https://hydra.nixos.org/build/233223699 at 2023-09-02 + - layout # failure in job https://hydra.nixos.org/build/233259626 at 2023-09-02 + - layout-rules # failure in job https://hydra.nixos.org/build/233250716 at 2023-09-02 + - lazify # failure in job https://hydra.nixos.org/build/233203655 at 2023-09-02 + - lazyarray # failure in job https://hydra.nixos.org/build/233192440 at 2023-09-02 + - lazyboy # failure in job https://hydra.nixos.org/build/233201158 at 2023-09-02 + - lazy-hash # failure in job https://hydra.nixos.org/build/233211405 at 2023-09-02 + - lazy-priority-queue # failure in job https://hydra.nixos.org/build/233211457 at 2023-09-02 + - lazyset # failure in job https://hydra.nixos.org/build/233248383 at 2023-09-02 + - l-bfgs-b # failure in job https://hydra.nixos.org/build/233258769 at 2023-09-02 + - LC3 # failure in job https://hydra.nixos.org/build/233192513 at 2023-09-02 + - lcs # failure in job https://hydra.nixos.org/build/233232193 at 2023-09-02 + - ldif # failure in job https://hydra.nixos.org/build/233195577 at 2023-09-02 + - ld-intervals # failure in job https://hydra.nixos.org/build/233216344 at 2023-09-02 + - leaf # failure in job https://hydra.nixos.org/build/233212614 at 2023-09-02 + - leapseconds # failure in job https://hydra.nixos.org/build/233253640 at 2023-09-02 + - learn # failure in job https://hydra.nixos.org/build/233247385 at 2023-09-02 + - Learning # failure in job https://hydra.nixos.org/build/233237137 at 2023-09-02 + - leetify # failure in job https://hydra.nixos.org/build/233200752 at 2023-09-02 + - lendingclub # failure in job https://hydra.nixos.org/build/233239123 at 2023-09-02 + - lens-datetime # failure in job https://hydra.nixos.org/build/233252409 at 2023-09-02 + - lenses # failure in job https://hydra.nixos.org/build/233239109 at 2023-09-02 + - lens-filesystem # failure in job https://hydra.nixos.org/build/233205074 at 2023-09-02 + - lens-labels # failure in job https://hydra.nixos.org/build/233216003 at 2023-09-02 + - lens-prelude # failure in job https://hydra.nixos.org/build/233220321 at 2023-09-02 + - lens-process # failure in job https://hydra.nixos.org/build/233242948 at 2023-09-02 + - lensref # failure in job https://hydra.nixos.org/build/233205479 at 2023-09-02 + - lens-simple # failure in job https://hydra.nixos.org/build/233245452 at 2023-09-02 + - lens-tell # failure in job https://hydra.nixos.org/build/233234619 at 2023-09-02 + - lens-text-encoding # failure in job https://hydra.nixos.org/build/233222713 at 2023-09-02 + - lens-th-rewrite # failure in job https://hydra.nixos.org/build/233201025 at 2023-09-02 + - lens-time # failure in job https://hydra.nixos.org/build/233260007 at 2023-09-02 + - lens-toml-parser # failure in job https://hydra.nixos.org/build/233216950 at 2023-09-02 + - lens-tutorial # failure in job https://hydra.nixos.org/build/233220488 at 2023-09-02 + - lens-typelevel # failure in job https://hydra.nixos.org/build/233225963 at 2023-09-02 + - lens-xml # failure in job https://hydra.nixos.org/build/233245746 at 2023-09-02 + - lenz-template # failure in job https://hydra.nixos.org/build/233206822 at 2023-09-02 + - less-arbitrary # failure in job https://hydra.nixos.org/build/233231412 at 2023-09-02 + - Level0 # failure in job https://hydra.nixos.org/build/233220758 at 2023-09-02 + - level-monad # failure in job https://hydra.nixos.org/build/233257036 at 2023-09-02 + - levmar # failure in job https://hydra.nixos.org/build/233254731 at 2023-09-02 + - lfst # failure in job https://hydra.nixos.org/build/233240622 at 2023-09-02 + - lhc # failure in job https://hydra.nixos.org/build/233220731 at 2023-09-02 + - lhs2TeX-hl # failure in job https://hydra.nixos.org/build/233221405 at 2023-09-02 + - lhslatex # failure in job https://hydra.nixos.org/build/233246375 at 2023-09-02 + - LibClang # failure in job https://hydra.nixos.org/build/233194732 at 2023-09-02 + - libexpect # failure in job https://hydra.nixos.org/build/233226545 at 2023-09-02 + - libGenI # failure in job https://hydra.nixos.org/build/233240857 at 2023-09-02 + - libhbb # failure in job https://hydra.nixos.org/build/233232186 at 2023-09-02 + - libinfluxdb # failure in job https://hydra.nixos.org/build/233199457 at 2023-09-02 + - libjenkins # failure in job https://hydra.nixos.org/build/233198788 at 2023-09-02 + - libjwt-typed # failure in job https://hydra.nixos.org/build/233230163 at 2023-09-02 + - libltdl # failure in job https://hydra.nixos.org/build/233225728 at 2023-09-02 + - libmdbx # failure in job https://hydra.nixos.org/build/233208793 at 2023-09-02 + - liboath-hs # failure in job https://hydra.nixos.org/build/233229056 at 2023-09-02 + - liboleg # failure in job https://hydra.nixos.org/build/233226133 at 2023-09-02 + - libpafe # failure in job https://hydra.nixos.org/build/233202070 at 2023-09-02 + - libphonenumber # failure in job https://hydra.nixos.org/build/233251839 at 2023-09-02 + - libpq # failure in job https://hydra.nixos.org/build/233192542 at 2023-09-02 + - librandomorg # failure in job https://hydra.nixos.org/build/233232749 at 2023-09-02 + - libsystemd-daemon # failure in job https://hydra.nixos.org/build/233207090 at 2023-09-02 + - libtagc # failure in job https://hydra.nixos.org/build/233223631 at 2023-09-02 + - libtelnet # failure in job https://hydra.nixos.org/build/233209594 at 2023-09-02 + - libxls # failure in job https://hydra.nixos.org/build/233257847 at 2023-09-02 + - libxlsxwriter-hs # failure in job https://hydra.nixos.org/build/233244798 at 2023-09-02 + - libxslt # failure in job https://hydra.nixos.org/build/233248464 at 2023-09-02 + - libyaml-streamly # failure in job https://hydra.nixos.org/build/233203611 at 2023-09-02 + - libzfs # failure in job https://hydra.nixos.org/build/233662945 at 2023-09-02 + - licensor # failure in job https://hydra.nixos.org/build/233248660 at 2023-09-02 + - lie # failure in job https://hydra.nixos.org/build/233228953 at 2023-09-02 + - life-sync # failure in job https://hydra.nixos.org/build/233241402 at 2023-09-02 + - lifetimes # failure in job https://hydra.nixos.org/build/233259483 at 2023-09-02 + - lifted-protolude # failure in job https://hydra.nixos.org/build/233253040 at 2023-09-02 + - ligature # failure in job https://hydra.nixos.org/build/233212688 at 2023-09-02 + - light # failure in job https://hydra.nixos.org/build/233193643 at 2023-09-02 + - lilypond # failure in job https://hydra.nixos.org/build/233221478 at 2023-09-02 + - Limit # failure in job https://hydra.nixos.org/build/233229268 at 2023-09-02 + - limp-cbc # failure in job https://hydra.nixos.org/build/233201076 at 2023-09-02 + - linda # failure in job https://hydra.nixos.org/build/233249512 at 2023-09-02 + - linden # failure in job https://hydra.nixos.org/build/233198590 at 2023-09-02 + - linear-algebra-cblas # failure in job https://hydra.nixos.org/build/233239710 at 2023-09-02 + - linear-maps # failure in job https://hydra.nixos.org/build/233258332 at 2023-09-02 + - linear-opengl # failure in job https://hydra.nixos.org/build/233237268 at 2023-09-02 + - linearscan # failure in job https://hydra.nixos.org/build/233257541 at 2023-09-02 + - linear-socket # failure in job https://hydra.nixos.org/build/233192053 at 2023-09-02 + - linear-vect # failure in job https://hydra.nixos.org/build/233252054 at 2023-09-02 + - line-bot-sdk # failure in job https://hydra.nixos.org/build/233195852 at 2023-09-02 + - line-drawing # failure in job https://hydra.nixos.org/build/233228389 at 2023-09-02 + - line-indexed-cursor # failure in job https://hydra.nixos.org/build/233210607 at 2023-09-02 + - linenoise # failure in job https://hydra.nixos.org/build/233224730 at 2023-09-02 + - lines-of-action # failure in job https://hydra.nixos.org/build/233244937 at 2023-09-02 + - lingo # failure in job https://hydra.nixos.org/build/233254522 at 2023-09-02 + - linguistic-ordinals # failure in job https://hydra.nixos.org/build/233228974 at 2023-09-02 + - linkedhashmap # failure in job https://hydra.nixos.org/build/233234634 at 2023-09-02 + - linked-list-with-iterator # failure in job https://hydra.nixos.org/build/233220466 at 2023-09-02 + - linklater # failure in job https://hydra.nixos.org/build/233220508 at 2023-09-02 + - linode # failure in job https://hydra.nixos.org/build/233256512 at 2023-09-02 + - linode-v4 # failure in job https://hydra.nixos.org/build/233238195 at 2023-09-02 + - linux-blkid # failure in job https://hydra.nixos.org/build/233220151 at 2023-09-02 + - linux-cgroup # failure in job https://hydra.nixos.org/build/233224448 at 2023-09-02 + - linux-evdev # failure in job https://hydra.nixos.org/build/233259196 at 2023-09-02 + - linux-kmod # failure in job https://hydra.nixos.org/build/233205933 at 2023-09-02 + - linux-perf # failure in job https://hydra.nixos.org/build/233193731 at 2023-09-02 + - linux-xattr # failure in job https://hydra.nixos.org/build/233226493 at 2023-09-02 + - linx-gateway # failure in job https://hydra.nixos.org/build/233220744 at 2023-09-02 + - lio-simple # failure in job https://hydra.nixos.org/build/233200711 at 2023-09-02 + - lipsum-gen # failure in job https://hydra.nixos.org/build/233233734 at 2023-09-02 + - liquid # failure in job https://hydra.nixos.org/build/233255883 at 2023-09-02 + - liquid-fixpoint # failure in job https://hydra.nixos.org/build/233213637 at 2023-09-02 + - liquidhaskell-cabal # failure in job https://hydra.nixos.org/build/233249946 at 2023-09-02 + - Liquorice # failure in job https://hydra.nixos.org/build/233193923 at 2023-09-02 + - list-fusion-probe # failure in job https://hydra.nixos.org/build/233236587 at 2023-09-02 + - listlike-instances # failure in job https://hydra.nixos.org/build/233238303 at 2023-09-02 + - list-mux # failure in job https://hydra.nixos.org/build/233206407 at 2023-09-02 + - list-prompt # failure in job https://hydra.nixos.org/build/233235855 at 2023-09-02 + - list-t-http-client # failure in job https://hydra.nixos.org/build/233239262 at 2023-09-02 + - list-t-libcurl # failure in job https://hydra.nixos.org/build/233237389 at 2023-09-02 + - list-tries # failure in job https://hydra.nixos.org/build/233250041 at 2023-09-02 + - list-t-text # failure in job https://hydra.nixos.org/build/233235451 at 2023-09-02 + - list-zip-def # failure in job https://hydra.nixos.org/build/233202564 at 2023-09-02 + - list-zipper # failure in job https://hydra.nixos.org/build/233250766 at 2023-09-02 + - literals # failure in job https://hydra.nixos.org/build/233233709 at 2023-09-02 + - LiterateMarkdown # failure in job https://hydra.nixos.org/build/233233229 at 2023-09-02 + - little-earley # failure in job https://hydra.nixos.org/build/233197880 at 2023-09-02 + - ll-picosat # failure in job https://hydra.nixos.org/build/233206257 at 2023-09-02 + - llsd # failure in job https://hydra.nixos.org/build/233241590 at 2023-09-02 + - llvm-base # failure in job https://hydra.nixos.org/build/233244366 at 2023-09-02 + - llvm-general-pure # failure in job https://hydra.nixos.org/build/233246430 at 2023-09-02 + - llvm-hs # failure in job https://hydra.nixos.org/build/233205149 at 2023-09-02 + - llvm-ht # failure in job https://hydra.nixos.org/build/233203770 at 2023-09-02 + - llvm-party # failure in job https://hydra.nixos.org/build/233221113 at 2023-09-02 + - llvm-pretty # failure in job https://hydra.nixos.org/build/233206445 at 2023-09-02 + - llvm-tf # failure in job https://hydra.nixos.org/build/233211770 at 2023-09-02 + - lmdb-high-level # failure in job https://hydra.nixos.org/build/233238988 at 2023-09-02 + - lmdb-simple # failure in job https://hydra.nixos.org/build/233206781 at 2023-09-02 + - lmonad # failure in job https://hydra.nixos.org/build/233246737 at 2023-09-02 + - lnurl # failure in job https://hydra.nixos.org/build/233217638 at 2023-09-02 + - load-balancing # failure in job https://hydra.nixos.org/build/233206458 at 2023-09-02 + - load-font # failure in job https://hydra.nixos.org/build/233255666 at 2023-09-02 + - local-address # failure in job https://hydra.nixos.org/build/233247765 at 2023-09-02 + - located # failure in job https://hydra.nixos.org/build/233234945 at 2023-09-02 + - located-monad-logger # failure in job https://hydra.nixos.org/build/233194551 at 2023-09-02 + - loch # failure in job https://hydra.nixos.org/build/233248876 at 2023-09-02 + - loc-test # failure in job https://hydra.nixos.org/build/233198477 at 2023-09-02 + - log2json # failure in job https://hydra.nixos.org/build/233211819 at 2023-09-02 + - log-effect # failure in job https://hydra.nixos.org/build/233211329 at 2023-09-02 + - logentries # failure in job https://hydra.nixos.org/build/233215590 at 2023-09-02 + - logger # failure in job https://hydra.nixos.org/build/233237524 at 2023-09-02 + - logging-effect-extra-file # failure in job https://hydra.nixos.org/build/233225200 at 2023-09-02 + - logging-effect-extra-handler # failure in job https://hydra.nixos.org/build/233232054 at 2023-09-02 + - Logic # failure in job https://hydra.nixos.org/build/233206217 at 2023-09-02 + - logicst # failure in job https://hydra.nixos.org/build/233250253 at 2023-09-02 + - logict-sequence # failure in job https://hydra.nixos.org/build/233224789 at 2023-09-02 + - logplex-parse # failure in job https://hydra.nixos.org/build/233248727 at 2023-09-02 + - log-warper # failure in job https://hydra.nixos.org/build/233220417 at 2023-09-02 + - lojbanParser # failure in job https://hydra.nixos.org/build/233236082 at 2023-09-02 + - lojbanXiragan # failure in job https://hydra.nixos.org/build/233258779 at 2023-09-02 + - lol-calculus # failure in job https://hydra.nixos.org/build/233233910 at 2023-09-02 + - longboi # failure in job https://hydra.nixos.org/build/233233913 at 2023-09-02 + - long-double # failure in job https://hydra.nixos.org/build/233246069 at 2023-09-02 + - lookup-tables # failure in job https://hydra.nixos.org/build/233196965 at 2023-09-02 + - loopbreaker # failure in job https://hydra.nixos.org/build/233235857 at 2023-09-02 + - loop-dsl # failure in job https://hydra.nixos.org/build/233198743 at 2023-09-02 + - looper # failure in job https://hydra.nixos.org/build/233254482 at 2023-09-02 + - loops # failure in job https://hydra.nixos.org/build/233238771 at 2023-09-02 + - loop-while # failure in job https://hydra.nixos.org/build/233198041 at 2023-09-02 + - loopy # failure in job https://hydra.nixos.org/build/233227154 at 2023-09-02 + - lord # failure in job https://hydra.nixos.org/build/233226478 at 2023-09-02 + - lorem # failure in job https://hydra.nixos.org/build/233255922 at 2023-09-02 + - loris # failure in job https://hydra.nixos.org/build/233250801 at 2023-09-02 + - loshadka # failure in job https://hydra.nixos.org/build/233239546 at 2023-09-02 + - louis # failure in job https://hydra.nixos.org/build/233227705 at 2023-09-02 + - lowgl # failure in job https://hydra.nixos.org/build/233216216 at 2023-09-02 + - lp-diagrams-svg # failure in job https://hydra.nixos.org/build/233220097 at 2023-09-02 + - lrucaching # failure in job https://hydra.nixos.org/build/233252034 at 2023-09-02 + - LRU # failure in job https://hydra.nixos.org/build/233206273 at 2023-09-02 + - lscabal # failure in job https://hydra.nixos.org/build/233253536 at 2023-09-02 + - L-seed # failure in job https://hydra.nixos.org/build/233222324 at 2023-09-02 + - lsfrom # failure in job https://hydra.nixos.org/build/233211705 at 2023-09-02 + - lsh # failure in job https://hydra.nixos.org/build/233256686 at 2023-09-02 + - lsp-client # failure in job https://hydra.nixos.org/build/233219871 at 2023-09-02 + - ltiv1p1 # failure in job https://hydra.nixos.org/build/233200883 at 2023-09-02 + - ltk # failure in job https://hydra.nixos.org/build/233244152 at 2023-09-02 + - LTS # failure in job https://hydra.nixos.org/build/233206427 at 2023-09-02 + - lua-bc # failure in job https://hydra.nixos.org/build/233214532 at 2023-09-02 + - luautils # failure in job https://hydra.nixos.org/build/233250269 at 2023-09-02 + - lucid2-htmx # failure in job https://hydra.nixos.org/build/233196674 at 2023-09-02 + - lucid-alpine # failure in job https://hydra.nixos.org/build/233199500 at 2023-09-02 + - lucid-aria # failure in job https://hydra.nixos.org/build/233231489 at 2023-09-02 + - lucid-hyperscript # failure in job https://hydra.nixos.org/build/233191616 at 2023-09-02 + - luhn # failure in job https://hydra.nixos.org/build/233237661 at 2023-09-02 + - luis-client # failure in job https://hydra.nixos.org/build/233244540 at 2023-09-02 + - luka # failure in job https://hydra.nixos.org/build/233235403 at 2023-09-02 + - luminance # failure in job https://hydra.nixos.org/build/233233551 at 2023-09-02 + - lushtags # failure in job https://hydra.nixos.org/build/233225015 at 2023-09-02 + - luthor # failure in job https://hydra.nixos.org/build/233210797 at 2023-09-02 + - lvmlib # failure in job https://hydra.nixos.org/build/233200386 at 2023-09-02 + - lvmrun # failure in job https://hydra.nixos.org/build/233235284 at 2023-09-02 + - lxd-client-config # failure in job https://hydra.nixos.org/build/233225008 at 2023-09-02 + - lxd-client # failure in job https://hydra.nixos.org/build/233231826 at 2023-09-02 + - lye # failure in job https://hydra.nixos.org/build/233229866 at 2023-09-02 + - lz4-frame-conduit # failure in job https://hydra.nixos.org/build/233225578 at 2023-09-02 + - lzip # failure in job https://hydra.nixos.org/build/233215027 at 2023-09-02 + - lzlib # failure in job https://hydra.nixos.org/build/233203879 at 2023-09-02 + - lzma-streams # failure in job https://hydra.nixos.org/build/233229106 at 2023-09-02 + - lzo # failure in job https://hydra.nixos.org/build/233200657 at 2023-09-02 + - maam # failure in job https://hydra.nixos.org/build/233228184 at 2023-09-02 + - macaroon-shop # failure in job https://hydra.nixos.org/build/233204165 at 2023-09-02 + - mac # failure in job https://hydra.nixos.org/build/233231421 at 2023-09-02 + - machinecell # failure in job https://hydra.nixos.org/build/233222871 at 2023-09-02 + - machines-attoparsec # failure in job https://hydra.nixos.org/build/233253893 at 2023-09-02 + - machines-binary # failure in job https://hydra.nixos.org/build/233238332 at 2023-09-02 + - machines-bytestring # failure in job https://hydra.nixos.org/build/233256615 at 2023-09-02 + - machines-encoding # failure in job https://hydra.nixos.org/build/233225978 at 2023-09-02 + - machines-io # failure in job https://hydra.nixos.org/build/233214374 at 2023-09-02 + - machines-zlib # failure in job https://hydra.nixos.org/build/233204363 at 2023-09-02 + - macho # failure in job https://hydra.nixos.org/build/233192820 at 2023-09-02 + - maclight # failure in job https://hydra.nixos.org/build/233230574 at 2023-09-02 + - macos-corelibs # failure in job https://hydra.nixos.org/build/233211307 at 2023-09-02 + - macrm # failure in job https://hydra.nixos.org/build/233222582 at 2023-09-02 + - madlang # failure in job https://hydra.nixos.org/build/233253603 at 2023-09-02 + - mage # failure in job https://hydra.nixos.org/build/233226696 at 2023-09-02 + - MagicHaskeller # failure in job https://hydra.nixos.org/build/233192169 at 2023-09-02 + - magic-tyfams # failure in job https://hydra.nixos.org/build/233218287 at 2023-09-02 + - mailchimp # failure in job https://hydra.nixos.org/build/233222458 at 2023-09-02 + - mailchimp-subscribe # failure in job https://hydra.nixos.org/build/233192581 at 2023-09-02 + - makedo # failure in job https://hydra.nixos.org/build/233244893 at 2023-09-02 + - makefile # failure in job https://hydra.nixos.org/build/233207515 at 2023-09-02 + - make-hard-links # failure in job https://hydra.nixos.org/build/233213014 at 2023-09-02 + - make-monofoldable-foldable # failure in job https://hydra.nixos.org/build/233235683 at 2023-09-02 + - mallard # failure in job https://hydra.nixos.org/build/233208248 at 2023-09-02 + - manifolds # failure in job https://hydra.nixos.org/build/233244103 at 2023-09-02 + - mapalgebra # failure in job https://hydra.nixos.org/build/233215542 at 2023-09-02 + - map-exts # failure in job https://hydra.nixos.org/build/233247423 at 2023-09-02 + - Mapping # failure in job https://hydra.nixos.org/build/233248158 at 2023-09-02 + - mappy # failure in job https://hydra.nixos.org/build/233250202 at 2023-09-02 + - map-reduce-folds # failure in job https://hydra.nixos.org/build/233245163 at 2023-09-02 + - MapWith # failure in job https://hydra.nixos.org/build/233237146 at 2023-09-02 + - markdown-kate # failure in job https://hydra.nixos.org/build/233227051 at 2023-09-02 + - marked-pretty # failure in job https://hydra.nixos.org/build/233193892 at 2023-09-02 + - markov-realization # failure in job https://hydra.nixos.org/build/233234901 at 2023-09-02 + - marshal-contt # failure in job https://hydra.nixos.org/build/233231755 at 2023-09-02 + - marvin-interpolate # failure in job https://hydra.nixos.org/build/233201000 at 2023-09-02 + - MASMGen # failure in job https://hydra.nixos.org/build/233213454 at 2023-09-02 + - massiv-scheduler # failure in job https://hydra.nixos.org/build/233196778 at 2023-09-02 + - massiv-serialise # failure in job https://hydra.nixos.org/build/233242284 at 2023-09-02 + - master-plan # failure in job https://hydra.nixos.org/build/233208718 at 2023-09-02 + - matcher # failure in job https://hydra.nixos.org/build/233198640 at 2023-09-02 + - mathflow # failure in job https://hydra.nixos.org/build/233195457 at 2023-09-02 + - math-grads # failure in job https://hydra.nixos.org/build/233222629 at 2023-09-02 + - math-interpolate # failure in job https://hydra.nixos.org/build/233225629 at 2023-09-02 + - math-metric # failure in job https://hydra.nixos.org/build/233225394 at 2023-09-02 + - math-programming # failure in job https://hydra.nixos.org/build/233217072 at 2023-09-02 + - matrix-as-xyz # failure in job https://hydra.nixos.org/build/233196953 at 2023-09-02 + - matrix-lens # failure in job https://hydra.nixos.org/build/233259955 at 2023-09-02 + - matrix-market # failure in job https://hydra.nixos.org/build/233237011 at 2023-09-02 + - matrix-sized # failure in job https://hydra.nixos.org/build/233211908 at 2023-09-02 + - matroid # failure in job https://hydra.nixos.org/build/233244169 at 2023-09-02 + - maude # failure in job https://hydra.nixos.org/build/233204879 at 2023-09-02 + - maxent-learner-hw # failure in job https://hydra.nixos.org/build/233239586 at 2023-09-02 + - maybench # failure in job https://hydra.nixos.org/build/233239576 at 2023-09-02 + - MaybeT # failure in job https://hydra.nixos.org/build/233253183 at 2023-09-02 + - MaybeT-monads-tf # failure in job https://hydra.nixos.org/build/233238946 at 2023-09-02 + - MaybeT-transformers # failure in job https://hydra.nixos.org/build/233191283 at 2023-09-02 + - MazesOfMonad # failure in job https://hydra.nixos.org/build/233200182 at 2023-09-02 + - MBot # failure in job https://hydra.nixos.org/build/233248312 at 2023-09-02 + - mbox-tools # failure in job https://hydra.nixos.org/build/233207558 at 2023-09-02 + - mbtiles # failure in job https://hydra.nixos.org/build/233237721 at 2023-09-02 + - mbug # failure in job https://hydra.nixos.org/build/233242212 at 2023-09-02 + - mcl # failure in job https://hydra.nixos.org/build/233193943 at 2023-09-02 + - mcmc-synthesis # failure in job https://hydra.nixos.org/build/233208414 at 2023-09-02 + - mcm # failure in job https://hydra.nixos.org/build/233229087 at 2023-09-02 + - mcpi # failure in job https://hydra.nixos.org/build/233231465 at 2023-09-02 + - mdapi # failure in job https://hydra.nixos.org/build/233257724 at 2023-09-02 + - mdcat # failure in job https://hydra.nixos.org/build/233249429 at 2023-09-02 + - mdp # failure in job https://hydra.nixos.org/build/233246226 at 2023-09-02 + - mealstrom # failure in job https://hydra.nixos.org/build/233253540 at 2023-09-02 + - mealy # failure in job https://hydra.nixos.org/build/233260135 at 2023-09-02 + - MeanShift # failure in job https://hydra.nixos.org/build/233194760 at 2023-09-02 + - Measure # failure in job https://hydra.nixos.org/build/233231838 at 2023-09-02 + - mecab # failure in job https://hydra.nixos.org/build/233194280 at 2023-09-02 + - Mecha # failure in job https://hydra.nixos.org/build/233243480 at 2023-09-02 + - mech # failure in job https://hydra.nixos.org/build/233238723 at 2023-09-02 + - mechs # failure in job https://hydra.nixos.org/build/233241727 at 2023-09-02 + - Mechs # failure in job https://hydra.nixos.org/build/233254531 at 2023-09-02 + - mediabus # failure in job https://hydra.nixos.org/build/233259544 at 2023-09-02 + - mediawiki # failure in job https://hydra.nixos.org/build/233213178 at 2023-09-02 + - medium-sdk-haskell # failure in job https://hydra.nixos.org/build/233195507 at 2023-09-02 + - meep # failure in job https://hydra.nixos.org/build/233193144 at 2023-09-02 + - megalisp # failure in job https://hydra.nixos.org/build/233234992 at 2023-09-02 + - megastore # failure in job https://hydra.nixos.org/build/233222876 at 2023-09-02 + - mellon-core # failure in job https://hydra.nixos.org/build/233221666 at 2023-09-02 + - melody # failure in job https://hydra.nixos.org/build/233223241 at 2023-09-02 + - membrain # failure in job https://hydra.nixos.org/build/233248480 at 2023-09-02 + - memcached-binary # failure in job https://hydra.nixos.org/build/233192281 at 2023-09-02 + - memcached # failure in job https://hydra.nixos.org/build/233190993 at 2023-09-02 + - memcache-haskell # failure in job https://hydra.nixos.org/build/233211839 at 2023-09-02 + - meminfo # failure in job https://hydra.nixos.org/build/233201130 at 2023-09-02 + - memis # failure in job https://hydra.nixos.org/build/233207107 at 2023-09-02 + - memoization-utils # failure in job https://hydra.nixos.org/build/233220093 at 2023-09-02 + - memo-ptr # failure in job https://hydra.nixos.org/build/233216357 at 2023-09-02 + - memorable-bits # failure in job https://hydra.nixos.org/build/233247877 at 2023-09-02 + - memorypool # failure in job https://hydra.nixos.org/build/233193107 at 2023-09-02 + - memo-sqlite # failure in job https://hydra.nixos.org/build/233243897 at 2023-09-02 + - menoh # failure in job https://hydra.nixos.org/build/233238503 at 2023-09-02 + - menshen # failure in job https://hydra.nixos.org/build/233217324 at 2023-09-02 + - mercury-api # failure in job https://hydra.nixos.org/build/233229812 at 2023-09-02 + - mergeful-persistent # failure in job https://hydra.nixos.org/build/233221803 at 2023-09-02 + - mergeless-persistent # failure in job https://hydra.nixos.org/build/233235114 at 2023-09-02 + - messagepack-rpc # failure in job https://hydra.nixos.org/build/233254653 at 2023-09-02 + - messente # failure in job https://hydra.nixos.org/build/233195598 at 2023-09-02 + - metadata # failure in job https://hydra.nixos.org/build/233246079 at 2023-09-02 + - MetaHDBC # failure in job https://hydra.nixos.org/build/233258864 at 2023-09-02 + - metaheuristics # failure in job https://hydra.nixos.org/build/233248251 at 2023-09-02 + - meta-misc # failure in job https://hydra.nixos.org/build/233248305 at 2023-09-02 + - meta-par # failure in job https://hydra.nixos.org/build/233227886 at 2023-09-02 + - method # failure in job https://hydra.nixos.org/build/233230721 at 2023-09-02 + - metric # failure in job https://hydra.nixos.org/build/233224295 at 2023-09-02 + - metricsd-client # failure in job https://hydra.nixos.org/build/233217951 at 2023-09-02 + - mezzo # failure in job https://hydra.nixos.org/build/233223341 at 2023-09-02 + - mezzolens # failure in job https://hydra.nixos.org/build/233248307 at 2023-09-02 + - mgeneric # failure in job https://hydra.nixos.org/build/233197809 at 2023-09-02 + - MHask # failure in job https://hydra.nixos.org/build/233232401 at 2023-09-02 + - miconix-test # failure in job https://hydra.nixos.org/build/233230738 at 2023-09-02 + - microbase # failure in job https://hydra.nixos.org/build/233204368 at 2023-09-02 + - microformats2-parser # failure in job https://hydra.nixos.org/build/233238485 at 2023-09-02 + - microgroove # failure in job https://hydra.nixos.org/build/233196933 at 2023-09-02 + - microlens-each # failure in job https://hydra.nixos.org/build/233253621 at 2023-09-02 + - microlens-process # failure in job https://hydra.nixos.org/build/233190805 at 2023-09-02 + - micrologger # failure in job https://hydra.nixos.org/build/233196212 at 2023-09-02 + - micro-recursion-schemes # failure in job https://hydra.nixos.org/build/233214118 at 2023-09-02 + - microsoft-translator # failure in job https://hydra.nixos.org/build/233235928 at 2023-09-02 + - mida # failure in job https://hydra.nixos.org/build/233223244 at 2023-09-02 + - midi-simple # failure in job https://hydra.nixos.org/build/233219079 at 2023-09-02 + - midisurface # failure in job https://hydra.nixos.org/build/233224559 at 2023-09-02 + - midi-utils # failure in job https://hydra.nixos.org/build/233222257 at 2023-09-02 + - mi # failure in job https://hydra.nixos.org/build/233227735 at 2023-09-02 + - mighttpd2 # failure in job https://hydra.nixos.org/build/233213125 at 2023-09-02 + - migrant-postgresql-simple # failure in job https://hydra.nixos.org/build/233191795 at 2023-09-02 + - mikmod # failure in job https://hydra.nixos.org/build/233247364 at 2023-09-02 + - mikrokosmos # failure in job https://hydra.nixos.org/build/233232143 at 2023-09-02 + - miku # failure in job https://hydra.nixos.org/build/233212186 at 2023-09-02 + - milena # failure in job https://hydra.nixos.org/build/233257533 at 2023-09-02 + - mime-directory # failure in job https://hydra.nixos.org/build/233209691 at 2023-09-02 + - MiniAgda # failure in job https://hydra.nixos.org/build/233259586 at 2023-09-02 + - miniforth # failure in job https://hydra.nixos.org/build/233220853 at 2023-09-02 + - minilens # failure in job https://hydra.nixos.org/build/233191347 at 2023-09-02 + - minions # failure in job https://hydra.nixos.org/build/233246840 at 2023-09-02 + - miniplex # failure in job https://hydra.nixos.org/build/233241976 at 2023-09-02 + - ministg # failure in job https://hydra.nixos.org/build/233214109 at 2023-09-02 + - minizinc-process # failure in job https://hydra.nixos.org/build/233211497 at 2023-09-02 + - minst-idx # failure in job https://hydra.nixos.org/build/233259901 at 2023-09-02 + - mios # failure in job https://hydra.nixos.org/build/233251863 at 2023-09-02 + - MIP # failure in job https://hydra.nixos.org/build/233199688 at 2023-09-02 + - mirror-tweet # failure in job https://hydra.nixos.org/build/233216951 at 2023-09-02 + - mismi-p # failure in job https://hydra.nixos.org/build/233257227 at 2023-09-02 + - miso-action-logger # failure in job https://hydra.nixos.org/build/233229061 at 2023-09-02 + - miso-examples # failure in job https://hydra.nixos.org/build/233237380 at 2023-09-02 + - mit-3qvpPyAi6mH # failure in job https://hydra.nixos.org/build/233229967 at 2023-09-02 + - mix-arrows # failure in job https://hydra.nixos.org/build/233257720 at 2023-09-02 + - mixpanel-client # failure in job https://hydra.nixos.org/build/233220132 at 2023-09-02 + - mkcabal # failure in job https://hydra.nixos.org/build/233202466 at 2023-09-02 + - mltool # failure in job https://hydra.nixos.org/build/233203849 at 2023-09-02 + - ml-w # failure in job https://hydra.nixos.org/build/233251342 at 2023-09-02 + - mm2 # failure in job https://hydra.nixos.org/build/233260048 at 2023-09-02 + - mmsyn2 # failure in job https://hydra.nixos.org/build/233201519 at 2023-09-02 + - mmsyn4 # failure in job https://hydra.nixos.org/build/233241446 at 2023-09-02 + - mmsyn6ukr-array # failure in job https://hydra.nixos.org/build/233212068 at 2023-09-02 + - mmsyn7ukr-common # failure in job https://hydra.nixos.org/build/233249446 at 2023-09-02 + - mmtf # failure in job https://hydra.nixos.org/build/233190851 at 2023-09-02 + - mmtl # failure in job https://hydra.nixos.org/build/233235862 at 2023-09-02 + - mmzk-typeid # failure in job https://hydra.nixos.org/build/233258612 at 2023-09-02 + - Mobile-Legends-Hack-Cheats # failure in job https://hydra.nixos.org/build/233194849 at 2023-09-02 + - mockazo # failure in job https://hydra.nixos.org/build/233234923 at 2023-09-02 + - mock-httpd # failure in job https://hydra.nixos.org/build/233191481 at 2023-09-02 + - modbus-tcp # failure in job https://hydra.nixos.org/build/233230661 at 2023-09-02 + - model # failure in job https://hydra.nixos.org/build/233211330 at 2023-09-02 + - modelicaparser # failure in job https://hydra.nixos.org/build/233207575 at 2023-09-02 + - modular-prelude # failure in job https://hydra.nixos.org/build/233210510 at 2023-09-02 + - module-management # failure in job https://hydra.nixos.org/build/233198407 at 2023-09-02 + - modulespection # failure in job https://hydra.nixos.org/build/233206138 at 2023-09-02 + - MoeDict # failure in job https://hydra.nixos.org/build/233255252 at 2023-09-02 + - moe # failure in job https://hydra.nixos.org/build/233253151 at 2023-09-02 + - moesocks # failure in job https://hydra.nixos.org/build/233258741 at 2023-09-02 + - mohws # failure in job https://hydra.nixos.org/build/233246088 at 2023-09-02 + - mollie-api-haskell # failure in job https://hydra.nixos.org/build/233200867 at 2023-09-02 + - monadacme # failure in job https://hydra.nixos.org/build/233218330 at 2023-09-02 + - monad-atom # failure in job https://hydra.nixos.org/build/233243367 at 2023-09-02 + - monad-atom-simple # failure in job https://hydra.nixos.org/build/233259038 at 2023-09-02 + - monad-branch # failure in job https://hydra.nixos.org/build/233251253 at 2023-09-02 + - MonadCatchIO-mtl # failure in job https://hydra.nixos.org/build/233228214 at 2023-09-02 + - MonadCatchIO-transformers-foreign # failure in job https://hydra.nixos.org/build/233251635 at 2023-09-02 + - monad-choice # failure in job https://hydra.nixos.org/build/233255987 at 2023-09-02 + - MonadCompose # failure in job https://hydra.nixos.org/build/233204478 at 2023-09-02 + - monad-control-aligned # failure in job https://hydra.nixos.org/build/233240714 at 2023-09-02 + - monadcryptorandom # failure in job https://hydra.nixos.org/build/233235604 at 2023-09-02 + - monad-fork # failure in job https://hydra.nixos.org/build/233206855 at 2023-09-02 + - monadiccp # failure in job https://hydra.nixos.org/build/233191794 at 2023-09-02 + - monad-introspect # failure in job https://hydra.nixos.org/build/233248261 at 2023-09-02 + - monad-levels # failure in job https://hydra.nixos.org/build/233230433 at 2023-09-02 + - monad-lgbt # failure in job https://hydra.nixos.org/build/233207652 at 2023-09-02 + - monadLib-compose # failure in job https://hydra.nixos.org/build/233237652 at 2023-09-02 + - monadloc-pp # failure in job https://hydra.nixos.org/build/233229067 at 2023-09-02 + - monadlog # failure in job https://hydra.nixos.org/build/233210391 at 2023-09-02 + - monad-log # failure in job https://hydra.nixos.org/build/233235588 at 2023-09-02 + - monad-logger-prefix # failure in job https://hydra.nixos.org/build/233194845 at 2023-09-02 + - monad-logger-syslog # failure in job https://hydra.nixos.org/build/233238581 at 2023-09-02 + - monad-lrs # failure in job https://hydra.nixos.org/build/233204729 at 2023-09-02 + - monad-mersenne-random # failure in job https://hydra.nixos.org/build/233219918 at 2023-09-02 + - monad-metrics # failure in job https://hydra.nixos.org/build/233213287 at 2023-09-02 + - monad-mock # failure in job https://hydra.nixos.org/build/233211936 at 2023-09-02 + - monad-open # failure in job https://hydra.nixos.org/build/233242922 at 2023-09-02 + - monad-parallel-progressbar # failure in job https://hydra.nixos.org/build/233240035 at 2023-09-02 + - monad-param # failure in job https://hydra.nixos.org/build/233257283 at 2023-09-02 + - monad-persist # failure in job https://hydra.nixos.org/build/233214035 at 2023-09-02 + - MonadRandomLazy # failure in job https://hydra.nixos.org/build/233247540 at 2023-09-02 + - monad-ran # failure in job https://hydra.nixos.org/build/233251596 at 2023-09-02 + - monad-recorder # failure in job https://hydra.nixos.org/build/233222665 at 2023-09-02 + - monad-skeleton # failure in job https://hydra.nixos.org/build/233234306 at 2023-09-02 + - MonadStack # failure in job https://hydra.nixos.org/build/233239920 at 2023-09-02 + - monad-statevar # failure in job https://hydra.nixos.org/build/233215896 at 2023-09-02 + - monad-ste # failure in job https://hydra.nixos.org/build/233226514 at 2023-09-02 + - monad-stlike-io # failure in job https://hydra.nixos.org/build/233254724 at 2023-09-02 + - monad-task # failure in job https://hydra.nixos.org/build/233199661 at 2023-09-02 + - monad-throw-exit # failure in job https://hydra.nixos.org/build/233205411 at 2023-09-02 + - monad-timing # failure in job https://hydra.nixos.org/build/233213441 at 2023-09-02 + - monad-tree # failure in job https://hydra.nixos.org/build/233259264 at 2023-09-02 + - monad-tx # failure in job https://hydra.nixos.org/build/233232176 at 2023-09-02 + - monad-unify # failure in job https://hydra.nixos.org/build/233202833 at 2023-09-02 + - monad-wrap # failure in job https://hydra.nixos.org/build/233247808 at 2023-09-02 + - Monatron # failure in job https://hydra.nixos.org/build/233211361 at 2023-09-02 + - mondo # failure in job https://hydra.nixos.org/build/233207379 at 2023-09-02 + - money # failure in job https://hydra.nixos.org/build/233236545 at 2023-09-02 + - mongodb-queue # failure in job https://hydra.nixos.org/build/233216248 at 2023-09-02 + - monitor # failure in job https://hydra.nixos.org/build/233229021 at 2023-09-02 + - monocypher # failure in job https://hydra.nixos.org/build/233195745 at 2023-09-02 + - mono-foldable # failure in job https://hydra.nixos.org/build/233238824 at 2023-09-02 + - monoid-absorbing # failure in job https://hydra.nixos.org/build/233236465 at 2023-09-02 + - monoidal-functors # failure in job https://hydra.nixos.org/build/233203234 at 2023-09-02 + - monoid # failure in job https://hydra.nixos.org/build/233252888 at 2023-09-02 + - monoidmap # failure in job https://hydra.nixos.org/build/233252527 at 2023-09-02 + - monoid-owns # failure in job https://hydra.nixos.org/build/233259043 at 2023-09-02 + - monoidplus # failure in job https://hydra.nixos.org/build/233226759 at 2023-09-02 + - monoids # failure in job https://hydra.nixos.org/build/233231684 at 2023-09-02 + - monopati # failure in job https://hydra.nixos.org/build/233234119 at 2023-09-02 + - monus # failure in job https://hydra.nixos.org/build/233252424 at 2023-09-02 + - monzo # failure in job https://hydra.nixos.org/build/233254681 at 2023-09-02 + - morfette # failure in job https://hydra.nixos.org/build/233249575 at 2023-09-02 + - morfeusz # failure in job https://hydra.nixos.org/build/233232351 at 2023-09-02 + - morpheus-graphql-cli # failure in job https://hydra.nixos.org/build/233249063 at 2023-09-02 + - morphisms-functors # failure in job https://hydra.nixos.org/build/233255311 at 2023-09-02 + - morphisms-objects # failure in job https://hydra.nixos.org/build/233216076 at 2023-09-02 + - morte # failure in job https://hydra.nixos.org/build/233212193 at 2023-09-02 + - mortred # failure in job https://hydra.nixos.org/build/233216766 at 2023-09-02 + - mosaico-lib # failure in job https://hydra.nixos.org/build/233253717 at 2023-09-02 + - motor-reflection # failure in job https://hydra.nixos.org/build/233247530 at 2023-09-02 + - mount # failure in job https://hydra.nixos.org/build/233220302 at 2023-09-02 + - movie-monad # failure in job https://hydra.nixos.org/build/233215402 at 2023-09-02 + - mpppc # failure in job https://hydra.nixos.org/build/233223008 at 2023-09-02 + - mpris # failure in job https://hydra.nixos.org/build/233259241 at 2023-09-02 + - mpvguihs # failure in job https://hydra.nixos.org/build/233196650 at 2023-09-02 + - mqtt # failure in job https://hydra.nixos.org/build/233202067 at 2023-09-02 + - mqtt-hs # failure in job https://hydra.nixos.org/build/233239399 at 2023-09-02 + - mrifk # failure in job https://hydra.nixos.org/build/233201109 at 2023-09-02 + - mrm # failure in job https://hydra.nixos.org/build/233191612 at 2023-09-02 + - ms-auth # failure in job https://hydra.nixos.org/build/233193383 at 2023-09-02 + - ms-azure-api # failure in job https://hydra.nixos.org/build/233202229 at 2023-09-02 + - ms # failure in job https://hydra.nixos.org/build/233237728 at 2023-09-02 + - msgpack # failure in job https://hydra.nixos.org/build/233258131 at 2023-09-02 + - msgpack-types # failure in job https://hydra.nixos.org/build/233235351 at 2023-09-02 + - ms-graph-api # failure in job https://hydra.nixos.org/build/233219042 at 2023-09-02 + - msh # failure in job https://hydra.nixos.org/build/233196466 at 2023-09-02 + - MTGBuilder # failure in job https://hydra.nixos.org/build/233227528 at 2023-09-02 + - mtl-c # failure in job https://hydra.nixos.org/build/233196798 at 2023-09-02 + - mtl-evil-instances # failure in job https://hydra.nixos.org/build/233239976 at 2023-09-02 + - mtl-extras # failure in job https://hydra.nixos.org/build/233199852 at 2023-09-02 + - mtl-tf # failure in job https://hydra.nixos.org/build/233254943 at 2023-09-02 + - mtlx # failure in job https://hydra.nixos.org/build/233221631 at 2023-09-02 + - mtp # failure in job https://hydra.nixos.org/build/233212895 at 2023-09-02 + - mtsl # failure in job https://hydra.nixos.org/build/233207653 at 2023-09-02 + - MuCheck # failure in job https://hydra.nixos.org/build/233254207 at 2023-09-02 + - mudbath # failure in job https://hydra.nixos.org/build/233198648 at 2023-09-02 + - mud # failure in job https://hydra.nixos.org/build/233229445 at 2023-09-02 + - mulang # failure in job https://hydra.nixos.org/build/233211001 at 2023-09-02 + - multext-east-msd # failure in job https://hydra.nixos.org/build/233191007 at 2023-09-02 + - multiaddr # failure in job https://hydra.nixos.org/build/233223452 at 2023-09-02 + - multiarg # failure in job https://hydra.nixos.org/build/233238633 at 2023-09-02 + - multihash # failure in job https://hydra.nixos.org/build/233203263 at 2023-09-02 + - multi-instance # failure in job https://hydra.nixos.org/build/233203186 at 2023-09-02 + - multilinear # failure in job https://hydra.nixos.org/build/233260046 at 2023-09-02 + - multipass # failure in job https://hydra.nixos.org/build/233252587 at 2023-09-02 + - multipath # failure in job https://hydra.nixos.org/build/233248692 at 2023-09-02 + - multiplate-simplified # failure in job https://hydra.nixos.org/build/233241999 at 2023-09-02 + - multipool # failure in job https://hydra.nixos.org/build/233234384 at 2023-09-02 + - multirec # failure in job https://hydra.nixos.org/build/233242079 at 2023-09-02 + - multivariant # failure in job https://hydra.nixos.org/build/233254625 at 2023-09-02 + - Munkres # failure in job https://hydra.nixos.org/build/233237379 at 2023-09-02 + - muon # failure in job https://hydra.nixos.org/build/233238364 at 2023-09-02 + - murmur # failure in job https://hydra.nixos.org/build/233244309 at 2023-09-02 + - mu-schema # failure in job https://hydra.nixos.org/build/233235916 at 2023-09-02 + - musicScroll # failure in job https://hydra.nixos.org/build/233197933 at 2023-09-02 + - music-util # failure in job https://hydra.nixos.org/build/233234440 at 2023-09-02 + - musicxml # failure in job https://hydra.nixos.org/build/233201763 at 2023-09-02 + - mustache2hs # failure in job https://hydra.nixos.org/build/233229095 at 2023-09-02 + - mustache-haskell # failure in job https://hydra.nixos.org/build/233235667 at 2023-09-02 + - mutable # failure in job https://hydra.nixos.org/build/233204639 at 2023-09-02 + - mvc # failure in job https://hydra.nixos.org/build/233205036 at 2023-09-02 + - mxnet # failure in job https://hydra.nixos.org/build/233212365 at 2023-09-02 + - mxnet-nnvm # failure in job https://hydra.nixos.org/build/233236073 at 2023-09-02 + - myanimelist-export # failure in job https://hydra.nixos.org/build/233255510 at 2023-09-02 + - myo # failure in job https://hydra.nixos.org/build/233251998 at 2023-09-02 + - my-package-testing # failure in job https://hydra.nixos.org/build/233201843 at 2023-09-02 + - MyPrimes # failure in job https://hydra.nixos.org/build/233247934 at 2023-09-02 + - mysql-effect # failure in job https://hydra.nixos.org/build/233248718 at 2023-09-02 + - mysql-haskell # failure in job https://hydra.nixos.org/build/233195978 at 2023-09-02 + - mysql-pure # failure in job https://hydra.nixos.org/build/233250825 at 2023-09-02 + - mysql-simple-quasi # failure in job https://hydra.nixos.org/build/233214755 at 2023-09-02 + - mystem # failure in job https://hydra.nixos.org/build/233215180 at 2023-09-02 + - my-test-docs # failure in job https://hydra.nixos.org/build/233191840 at 2023-09-02 + - myxine-client # failure in job https://hydra.nixos.org/build/233236439 at 2023-09-02 + - mzv # failure in job https://hydra.nixos.org/build/233241826 at 2023-09-02 + - n2o-protocols # failure in job https://hydra.nixos.org/build/233233132 at 2023-09-02 + - nagios-plugin-ekg # failure in job https://hydra.nixos.org/build/233203188 at 2023-09-02 + - named-binary-tag # failure in job https://hydra.nixos.org/build/233225138 at 2023-09-02 + - named-lock # failure in job https://hydra.nixos.org/build/233247307 at 2023-09-02 + - named-servant # failure in job https://hydra.nixos.org/build/233205979 at 2023-09-02 + - named-sop # failure in job https://hydra.nixos.org/build/233233523 at 2023-09-02 + - namelist # failure in job https://hydra.nixos.org/build/233216883 at 2023-09-02 + - nanoAgda # failure in job https://hydra.nixos.org/build/233259294 at 2023-09-02 + - nano-cryptr # failure in job https://hydra.nixos.org/build/233218831 at 2023-09-02 + - nanocurses # failure in job https://hydra.nixos.org/build/233215906 at 2023-09-02 + - nano-hmac # failure in job https://hydra.nixos.org/build/233224756 at 2023-09-02 + - NanoID # failure in job https://hydra.nixos.org/build/233212531 at 2023-09-02 + - nano-md5 # failure in job https://hydra.nixos.org/build/233222265 at 2023-09-02 + - nanomsg # failure in job https://hydra.nixos.org/build/233240904 at 2023-09-02 + - nanomsg-haskell # failure in job https://hydra.nixos.org/build/233207779 at 2023-09-02 + - nanoparsec # failure in job https://hydra.nixos.org/build/233248843 at 2023-09-02 + - nanopass # failure in job https://hydra.nixos.org/build/233230210 at 2023-09-02 + - NanoProlog # failure in job https://hydra.nixos.org/build/233244743 at 2023-09-02 + - nanovg-simple # failure in job https://hydra.nixos.org/build/233257414 at 2023-09-02 + - Naperian # failure in job https://hydra.nixos.org/build/233200372 at 2023-09-02 + - naperian # failure in job https://hydra.nixos.org/build/233233726 at 2023-09-02 + - naqsha # failure in job https://hydra.nixos.org/build/233256844 at 2023-09-02 + - narc # failure in job https://hydra.nixos.org/build/233215853 at 2023-09-02 + - nationstates # failure in job https://hydra.nixos.org/build/233243640 at 2023-09-02 + - nats-client # failure in job https://hydra.nixos.org/build/233241313 at 2023-09-02 + - nat-sized-numbers # failure in job https://hydra.nixos.org/build/233244238 at 2023-09-02 + - natural # failure in job https://hydra.nixos.org/build/233232490 at 2023-09-02 + - NaturalSort # failure in job https://hydra.nixos.org/build/233213239 at 2023-09-02 + - naver-translate # failure in job https://hydra.nixos.org/build/233225934 at 2023-09-02 + - nbt # failure in job https://hydra.nixos.org/build/233253509 at 2023-09-02 + - ncurses # failure in job https://hydra.nixos.org/build/233238895 at 2023-09-02 + - neat # failure in job https://hydra.nixos.org/build/233203521 at 2023-09-02 + - needle # failure in job https://hydra.nixos.org/build/233192371 at 2023-09-02 + - neet # failure in job https://hydra.nixos.org/build/233235457 at 2023-09-02 + - nehe-tuts # failure in job https://hydra.nixos.org/build/233249347 at 2023-09-02 + - neil # failure in job https://hydra.nixos.org/build/233219708 at 2023-09-02 + - neither-data # failure in job https://hydra.nixos.org/build/233201266 at 2023-09-02 + - neither # failure in job https://hydra.nixos.org/build/233244974 at 2023-09-02 + - neko-lib # failure in job https://hydra.nixos.org/build/233236797 at 2023-09-02 + - neko-obfs # failure in job https://hydra.nixos.org/build/233248732 at 2023-09-02 + - nekos-best # failure in job https://hydra.nixos.org/build/233214327 at 2023-09-02 + - Neks # failure in job https://hydra.nixos.org/build/233238103 at 2023-09-02 + - neptune-backend # failure in job https://hydra.nixos.org/build/233214329 at 2023-09-02 + - nero # failure in job https://hydra.nixos.org/build/233216907 at 2023-09-02 + - NestedFunctor # failure in job https://hydra.nixos.org/build/233253656 at 2023-09-02 + - nestedmap # failure in job https://hydra.nixos.org/build/233219375 at 2023-09-02 + - nested-sequence # failure in job https://hydra.nixos.org/build/233221359 at 2023-09-02 + - nest # failure in job https://hydra.nixos.org/build/233224450 at 2023-09-02 + - netclock # failure in job https://hydra.nixos.org/build/233207456 at 2023-09-02 + - netease-fm # failure in job https://hydra.nixos.org/build/233210043 at 2023-09-02 + - netrium # failure in job https://hydra.nixos.org/build/233258377 at 2023-09-02 + - NetSNMP # failure in job https://hydra.nixos.org/build/233598256 at 2023-09-02 + - netspec # failure in job https://hydra.nixos.org/build/233251049 at 2023-09-02 + - netwire-input-javascript # failure in job https://hydra.nixos.org/build/233245020 at 2023-09-02 + - netwire-vinylglfw-examples # failure in job https://hydra.nixos.org/build/233236274 at 2023-09-02 + - network-address # failure in job https://hydra.nixos.org/build/233248618 at 2023-09-02 + - network-api-support # failure in job https://hydra.nixos.org/build/233257275 at 2023-09-02 + - network-arbitrary # failure in job https://hydra.nixos.org/build/233250988 at 2023-09-02 + - network-attoparsec # failure in job https://hydra.nixos.org/build/233255528 at 2023-09-02 + - network-bitcoin # failure in job https://hydra.nixos.org/build/233191198 at 2023-09-02 + - network-builder # failure in job https://hydra.nixos.org/build/233235184 at 2023-09-02 + - network-bytestring # failure in job https://hydra.nixos.org/build/233201616 at 2023-09-02 + - network-carbon # failure in job https://hydra.nixos.org/build/233225276 at 2023-09-02 + - network-dbus # failure in job https://hydra.nixos.org/build/233212385 at 2023-09-02 + - networked-game # failure in job https://hydra.nixos.org/build/233239577 at 2023-09-02 + - network-house # failure in job https://hydra.nixos.org/build/233193957 at 2023-09-02 + - network-manager-tui # failure in job https://hydra.nixos.org/build/233247972 at 2023-09-02 + - network-metrics # failure in job https://hydra.nixos.org/build/233259963 at 2023-09-02 + - network-msg # failure in job https://hydra.nixos.org/build/233236413 at 2023-09-02 + - network-msgpack-rpc # failure in job https://hydra.nixos.org/build/233222467 at 2023-09-02 + - network-packet-linux # failure in job https://hydra.nixos.org/build/233235052 at 2023-09-02 + - network-server # failure in job https://hydra.nixos.org/build/233250808 at 2023-09-02 + - network-service # failure in job https://hydra.nixos.org/build/233193647 at 2023-09-02 + - network-simple-sockaddr # failure in job https://hydra.nixos.org/build/233204221 at 2023-09-02 + - network-socket-options # failure in job https://hydra.nixos.org/build/233252466 at 2023-09-02 + - network-transport-amqp # failure in job https://hydra.nixos.org/build/233224582 at 2023-09-02 + - network-voicetext # failure in job https://hydra.nixos.org/build/233204992 at 2023-09-02 + - network-wai-router # failure in job https://hydra.nixos.org/build/233219167 at 2023-09-02 + - neural-network-blashs # failure in job https://hydra.nixos.org/build/233244174 at 2023-09-02 + - neural-network-hmatrix # failure in job https://hydra.nixos.org/build/233237535 at 2023-09-02 + - newbase60 # failure in job https://hydra.nixos.org/build/233241443 at 2023-09-02 + - newhope # failure in job https://hydra.nixos.org/build/233221942 at 2023-09-02 + - newline # failure in job https://hydra.nixos.org/build/233205462 at 2023-09-02 + - newports # failure in job https://hydra.nixos.org/build/233234468 at 2023-09-02 + - newsletter # failure in job https://hydra.nixos.org/build/233252800 at 2023-09-02 + - newt # failure in job https://hydra.nixos.org/build/233227870 at 2023-09-02 + - newtype-deriving # failure in job https://hydra.nixos.org/build/233209383 at 2023-09-02 + - newtype-th # failure in job https://hydra.nixos.org/build/233203461 at 2023-09-02 + - next-ref # failure in job https://hydra.nixos.org/build/233230105 at 2023-09-02 + - nextstep-plist # failure in job https://hydra.nixos.org/build/233227343 at 2023-09-02 + - NGrams # failure in job https://hydra.nixos.org/build/233230426 at 2023-09-02 + - ngrams-loader # failure in job https://hydra.nixos.org/build/233211319 at 2023-09-02 + - ngx-export-log # failure in job https://hydra.nixos.org/build/233193133 at 2023-09-02 + - niagra # failure in job https://hydra.nixos.org/build/233234016 at 2023-09-02 + - nibblestring # failure in job https://hydra.nixos.org/build/233224888 at 2023-09-02 + - nice-html # failure in job https://hydra.nixos.org/build/233193644 at 2023-09-02 + - nicovideo-translator # failure in job https://hydra.nixos.org/build/233225618 at 2023-09-02 + - nist-beacon # failure in job https://hydra.nixos.org/build/233206376 at 2023-09-02 + - nitro # failure in job https://hydra.nixos.org/build/233229909 at 2023-09-02 + - nix-delegate # failure in job https://hydra.nixos.org/build/233232891 at 2023-09-02 + - nixdu # failure in job https://hydra.nixos.org/build/233257712 at 2023-09-02 + - nix-eval # failure in job https://hydra.nixos.org/build/233256388 at 2023-09-02 + - nix-freeze-tree # failure in job https://hydra.nixos.org/build/233234834 at 2023-09-02 + - nixfromnpm # failure in job https://hydra.nixos.org/build/233239168 at 2023-09-02 + - nixpkgs-update # failure in job https://hydra.nixos.org/build/233196708 at 2023-09-02 + - nix-serve-ng # failure in job https://hydra.nixos.org/build/233214170 at 2023-09-02 + - nix-tools # failure in job https://hydra.nixos.org/build/233662959 at 2023-09-02 + - nlp-scores # failure in job https://hydra.nixos.org/build/233232770 at 2023-09-02 + - NMap # failure in job https://hydra.nixos.org/build/233246148 at 2023-09-02 + - nme # failure in job https://hydra.nixos.org/build/233224069 at 2023-09-02 + - nm # failure in job https://hydra.nixos.org/build/233258727 at 2023-09-02 + - nn # failure in job https://hydra.nixos.org/build/233236534 at 2023-09-02 + - nntp # failure in job https://hydra.nixos.org/build/233210197 at 2023-09-02 + - noether # failure in job https://hydra.nixos.org/build/233193462 at 2023-09-02 + - nofib-analyse # failure in job https://hydra.nixos.org/build/233241646 at 2023-09-02 + - nofib-analyze # failure in job https://hydra.nixos.org/build/233203306 at 2023-09-02 + - noise # failure in job https://hydra.nixos.org/build/233190885 at 2023-09-02 + - noli # failure in job https://hydra.nixos.org/build/233208659 at 2023-09-02 + - non-empty-containers # failure in job https://hydra.nixos.org/build/233201102 at 2023-09-02 + - NonEmpty # failure in job https://hydra.nixos.org/build/233244009 at 2023-09-02 + - nonempty-lift # failure in job https://hydra.nixos.org/build/233237065 at 2023-09-02 + - non-empty-zipper # failure in job https://hydra.nixos.org/build/233244341 at 2023-09-02 + - nonlinear-optimization # failure in job https://hydra.nixos.org/build/233204674 at 2023-09-02 + - noodle # failure in job https://hydra.nixos.org/build/233195125 at 2023-09-02 + - normalization-insensitive # failure in job https://hydra.nixos.org/build/233239612 at 2023-09-02 + - no-role-annots # failure in job https://hydra.nixos.org/build/233229589 at 2023-09-02 + - notcpp # failure in job https://hydra.nixos.org/build/233216543 at 2023-09-02 + - notmuch-haskell # failure in job https://hydra.nixos.org/build/233332618 at 2023-09-02 + - not-prelude # failure in job https://hydra.nixos.org/build/233248453 at 2023-09-02 + - NoTrace # failure in job https://hydra.nixos.org/build/233229305 at 2023-09-02 + - notzero # failure in job https://hydra.nixos.org/build/233216133 at 2023-09-02 + - np-linear # failure in job https://hydra.nixos.org/build/233257696 at 2023-09-02 + - nptools # failure in job https://hydra.nixos.org/build/233234905 at 2023-09-02 + - ntp-control # failure in job https://hydra.nixos.org/build/233231061 at 2023-09-02 + - ntrip-client # failure in job https://hydra.nixos.org/build/233230605 at 2023-09-02 + - n-tuple # failure in job https://hydra.nixos.org/build/233225021 at 2023-09-02 + - nuha # failure in job https://hydra.nixos.org/build/233215103 at 2023-09-02 + - nullary # failure in job https://hydra.nixos.org/build/233214073 at 2023-09-02 + - null-canvas # failure in job https://hydra.nixos.org/build/233201814 at 2023-09-02 + - nullpipe # failure in job https://hydra.nixos.org/build/233245129 at 2023-09-02 + - NumberSieves # failure in job https://hydra.nixos.org/build/233255007 at 2023-09-02 + - NumberTheory # failure in job https://hydra.nixos.org/build/233215395 at 2023-09-02 + - number-wall # failure in job https://hydra.nixos.org/build/233197764 at 2023-09-02 + - numeric-qq # failure in job https://hydra.nixos.org/build/233207127 at 2023-09-02 + - numeric-ranges # failure in job https://hydra.nixos.org/build/233191878 at 2023-09-02 + - numhask-free # failure in job https://hydra.nixos.org/build/233214800 at 2023-09-02 + - numhask-prelude # failure in job https://hydra.nixos.org/build/233248768 at 2023-09-02 + - numhask-space # failure in job https://hydra.nixos.org/build/233210514 at 2023-09-02 + - numtype # failure in job https://hydra.nixos.org/build/233219211 at 2023-09-02 + - numtype-tf # failure in job https://hydra.nixos.org/build/233243483 at 2023-09-02 + - Nutri # failure in job https://hydra.nixos.org/build/233244244 at 2023-09-02 + - nvfetcher # failure in job https://hydra.nixos.org/build/233598212 at 2023-09-02 + - NXTDSL # failure in job https://hydra.nixos.org/build/233193483 at 2023-09-02 + - nylas # failure in job https://hydra.nixos.org/build/233193540 at 2023-09-02 + - oanda-rest-api # failure in job https://hydra.nixos.org/build/233250190 at 2023-09-02 + - oasis-xrd # failure in job https://hydra.nixos.org/build/233199264 at 2023-09-02 + - oauthenticated # failure in job https://hydra.nixos.org/build/233257682 at 2023-09-02 + - Object # failure in job https://hydra.nixos.org/build/233191909 at 2023-09-02 + - ObjectIO # failure in job https://hydra.nixos.org/build/233242132 at 2023-09-02 + - ocaml-export # failure in job https://hydra.nixos.org/build/233218217 at 2023-09-02 + - Octree # failure in job https://hydra.nixos.org/build/233228066 at 2023-09-02 + - OddWord # failure in job https://hydra.nixos.org/build/233192922 at 2023-09-02 + - oden-go-packages # failure in job https://hydra.nixos.org/build/233200117 at 2023-09-02 + - oeis2 # failure in job https://hydra.nixos.org/build/233199597 at 2023-09-02 + - OGDF # failure in job https://hydra.nixos.org/build/233200888 at 2023-09-02 + - OGL # failure in job https://hydra.nixos.org/build/233255135 at 2023-09-02 + - ogma-language-c # failure in job https://hydra.nixos.org/build/233228824 at 2023-09-02 + - ogma-language-cocospec # failure in job https://hydra.nixos.org/build/233235359 at 2023-09-02 + - ogma-language-smv # failure in job https://hydra.nixos.org/build/233239832 at 2023-09-02 + - ogmarkup # failure in job https://hydra.nixos.org/build/233229980 at 2023-09-02 + - ohloh-hs # failure in job https://hydra.nixos.org/build/233228177 at 2023-09-02 + - oi # failure in job https://hydra.nixos.org/build/233190838 at 2023-09-02 + - okapi # failure in job https://hydra.nixos.org/build/233193822 at 2023-09-02 + - old-version # failure in job https://hydra.nixos.org/build/233198538 at 2023-09-02 + - om-actor # failure in job https://hydra.nixos.org/build/233231027 at 2023-09-02 + - omaketex # failure in job https://hydra.nixos.org/build/233202599 at 2023-09-02 + - ombra # failure in job https://hydra.nixos.org/build/233192387 at 2023-09-02 + - om-doh # failure in job https://hydra.nixos.org/build/233217719 at 2023-09-02 + - Omega # failure in job https://hydra.nixos.org/build/233226089 at 2023-09-02 + - omega # failure in job https://hydra.nixos.org/build/233241129 at 2023-09-02 + - om-elm # failure in job https://hydra.nixos.org/build/233226229 at 2023-09-02 + - om-fail # failure in job https://hydra.nixos.org/build/233244639 at 2023-09-02 + - om-http # failure in job https://hydra.nixos.org/build/233245328 at 2023-09-02 + - om-http-logging # failure in job https://hydra.nixos.org/build/233218069 at 2023-09-02 + - om-logging # failure in job https://hydra.nixos.org/build/233222909 at 2023-09-02 + - omnifmt # failure in job https://hydra.nixos.org/build/233219763 at 2023-09-02 + - om-socket # failure in job https://hydra.nixos.org/build/233235423 at 2023-09-02 + - on-a-horse # failure in job https://hydra.nixos.org/build/233199193 at 2023-09-02 + - onama # failure in job https://hydra.nixos.org/build/233241430 at 2023-09-02 + - ONC-RPC # failure in job https://hydra.nixos.org/build/233225207 at 2023-09-02 + - on-demand-ssh-tunnel # failure in job https://hydra.nixos.org/build/233197181 at 2023-09-02 + - oneormore # failure in job https://hydra.nixos.org/build/233242475 at 2023-09-02 + - online # failure in job https://hydra.nixos.org/build/233195360 at 2023-09-02 + - onpartitions # failure in job https://hydra.nixos.org/build/233226163 at 2023-09-02 + - onu-course # failure in job https://hydra.nixos.org/build/233233153 at 2023-09-02 + - opaleye-classy # failure in job https://hydra.nixos.org/build/233214120 at 2023-09-02 + - opaleye-sqlite # failure in job https://hydra.nixos.org/build/233191474 at 2023-09-02 + - opaleye-trans # failure in job https://hydra.nixos.org/build/233210536 at 2023-09-02 + - open-adt # failure in job https://hydra.nixos.org/build/233201191 at 2023-09-02 + - OpenAFP # failure in job https://hydra.nixos.org/build/233249295 at 2023-09-02 + - openai-hs # failure in job https://hydra.nixos.org/build/233598196 at 2023-09-02 + - openapi3-code-generator # failure in job https://hydra.nixos.org/build/233255628 at 2023-09-02 + - openapi3 # failure in job https://hydra.nixos.org/build/233208815 at 2023-09-02 + - openapi-petstore # failure in job https://hydra.nixos.org/build/233221722 at 2023-09-02 + - openapi-typed # failure in job https://hydra.nixos.org/build/233226830 at 2023-09-02 + - opencc # failure in job https://hydra.nixos.org/build/233211902 at 2023-09-02 + - opench-meteo # failure in job https://hydra.nixos.org/build/233212476 at 2023-09-02 + - OpenCL # failure in job https://hydra.nixos.org/build/233216571 at 2023-09-02 + - OpenCLRaw # failure in job https://hydra.nixos.org/build/233247133 at 2023-09-02 + - OpenCLWrappers # failure in job https://hydra.nixos.org/build/233222391 at 2023-09-02 + - opencog-atomspace # failure in job https://hydra.nixos.org/build/233237785 at 2023-09-02 + - opencv-raw # failure in job https://hydra.nixos.org/build/233211286 at 2023-09-02 + - opendatatable # failure in job https://hydra.nixos.org/build/233254960 at 2023-09-02 + - openexchangerates # failure in job https://hydra.nixos.org/build/233203238 at 2023-09-02 + - openflow # failure in job https://hydra.nixos.org/build/233244058 at 2023-09-02 + - opengles # failure in job https://hydra.nixos.org/build/233214966 at 2023-09-02 + - OpenGLRaw21 # failure in job https://hydra.nixos.org/build/233229407 at 2023-09-02 + - open-haddock # failure in job https://hydra.nixos.org/build/233205112 at 2023-09-02 + - openid-connect # failure in job https://hydra.nixos.org/build/233196765 at 2023-09-02 + - open-pandoc # failure in job https://hydra.nixos.org/build/233247973 at 2023-09-02 + - openpgp # failure in job https://hydra.nixos.org/build/233244438 at 2023-09-02 + - open-signals # failure in job https://hydra.nixos.org/build/233207409 at 2023-09-02 + - opensoundcontrol-ht # failure in job https://hydra.nixos.org/build/233253386 at 2023-09-02 + - openssh-protocol # failure in job https://hydra.nixos.org/build/233196013 at 2023-09-02 + - opentelemetry-extra # failure in job https://hydra.nixos.org/build/233194254 at 2023-09-02 + - opentelemetry-http-client # failure in job https://hydra.nixos.org/build/233221983 at 2023-09-02 + - opentheory-char # failure in job https://hydra.nixos.org/build/233222347 at 2023-09-02 + - opentracing # failure in job https://hydra.nixos.org/build/233218638 at 2023-09-02 + - opentype # failure in job https://hydra.nixos.org/build/233213443 at 2023-09-02 + - OpenVGRaw # failure in job https://hydra.nixos.org/build/233254457 at 2023-09-02 + - Operads # failure in job https://hydra.nixos.org/build/233233055 at 2023-09-02 + - operate-do # failure in job https://hydra.nixos.org/build/233257129 at 2023-09-02 + - operational-extra # failure in job https://hydra.nixos.org/build/233232454 at 2023-09-02 + - op # failure in job https://hydra.nixos.org/build/233201812 at 2023-09-02 + - oplang # failure in job https://hydra.nixos.org/build/233208221 at 2023-09-02 + - opn # failure in job https://hydra.nixos.org/build/233198628 at 2023-09-02 + - optima # failure in job https://hydra.nixos.org/build/233200812 at 2023-09-02 + - optimization # failure in job https://hydra.nixos.org/build/233191078 at 2023-09-02 + - optional # failure in job https://hydra.nixos.org/build/233241818 at 2023-09-02 + - options-time # failure in job https://hydra.nixos.org/build/233194289 at 2023-09-02 + - optparse-applicative-simple # failure in job https://hydra.nixos.org/build/233236802 at 2023-09-02 + - optparse-helper # failure in job https://hydra.nixos.org/build/233248522 at 2023-09-02 + - optstream # failure in job https://hydra.nixos.org/build/233200326 at 2023-09-02 + - orc # failure in job https://hydra.nixos.org/build/233216448 at 2023-09-02 + - OrchestrateDB # failure in job https://hydra.nixos.org/build/233200562 at 2023-09-02 + - orchestrate # failure in job https://hydra.nixos.org/build/233228950 at 2023-09-02 + - ordered # failure in job https://hydra.nixos.org/build/233226269 at 2023-09-02 + - order-statistics # failure in job https://hydra.nixos.org/build/233255710 at 2023-09-02 + - Ordinary # failure in job https://hydra.nixos.org/build/233240078 at 2023-09-02 + - ordrea # failure in job https://hydra.nixos.org/build/233192984 at 2023-09-02 + - oref # failure in job https://hydra.nixos.org/build/233239331 at 2023-09-02 + - organize-imports # failure in job https://hydra.nixos.org/build/233217876 at 2023-09-02 + - orgmode # failure in job https://hydra.nixos.org/build/233232348 at 2023-09-02 + - orgmode-parse # failure in job https://hydra.nixos.org/build/233206463 at 2023-09-02 + - org-parser # failure in job https://hydra.nixos.org/build/233223593 at 2023-09-02 + - origami # failure in job https://hydra.nixos.org/build/233254357 at 2023-09-02 + - orion-hs # failure in job https://hydra.nixos.org/build/233210586 at 2023-09-02 + - orizentic # failure in job https://hydra.nixos.org/build/233197904 at 2023-09-02 + - OrPatterns # failure in job https://hydra.nixos.org/build/233191538 at 2023-09-02 + - ory-hydra-client # failure in job https://hydra.nixos.org/build/233197456 at 2023-09-02 + - ory-kratos # failure in job https://hydra.nixos.org/build/233191249 at 2023-09-02 + - osc # failure in job https://hydra.nixos.org/build/233250062 at 2023-09-02 + - oset # failure in job https://hydra.nixos.org/build/233230763 at 2023-09-02 + - Oslo-Vectize # failure in job https://hydra.nixos.org/build/233252956 at 2023-09-02 + - osm-conduit # failure in job https://hydra.nixos.org/build/233259898 at 2023-09-02 + - OSM # failure in job https://hydra.nixos.org/build/233231098 at 2023-09-02 + - oso2pdf # failure in job https://hydra.nixos.org/build/233235234 at 2023-09-02 + - osx-ar # failure in job https://hydra.nixos.org/build/233194090 at 2023-09-02 + - ot # failure in job https://hydra.nixos.org/build/233244553 at 2023-09-02 + - OTP # failure in job https://hydra.nixos.org/build/233215664 at 2023-09-02 + - ottparse-pretty # failure in job https://hydra.nixos.org/build/233217185 at 2023-09-02 + - overloaded # failure in job https://hydra.nixos.org/build/233239086 at 2023-09-02 + - overloaded-records # failure in job https://hydra.nixos.org/build/233235922 at 2023-09-02 + - overture # failure in job https://hydra.nixos.org/build/233245959 at 2023-09-02 + - owoify-hs # failure in job https://hydra.nixos.org/build/233213422 at 2023-09-02 + - package-description-remote # failure in job https://hydra.nixos.org/build/233221358 at 2023-09-02 + - package-version # failure in job https://hydra.nixos.org/build/233191665 at 2023-09-02 + - package-vt # failure in job https://hydra.nixos.org/build/233225831 at 2023-09-02 + - packdeps # failure in job https://hydra.nixos.org/build/233216607 at 2023-09-02 + - packed-dawg # failure in job https://hydra.nixos.org/build/233207332 at 2023-09-02 + - packed # failure in job https://hydra.nixos.org/build/233231889 at 2023-09-02 + - packed-multikey-map # failure in job https://hydra.nixos.org/build/233234157 at 2023-09-02 + - packedstring # failure in job https://hydra.nixos.org/build/233240511 at 2023-09-02 + - packer-messagepack # failure in job https://hydra.nixos.org/build/233213453 at 2023-09-02 + - pack # failure in job https://hydra.nixos.org/build/233243562 at 2023-09-02 + - packman # failure in job https://hydra.nixos.org/build/233193792 at 2023-09-02 + - packstream # failure in job https://hydra.nixos.org/build/233229259 at 2023-09-02 + - packunused # failure in job https://hydra.nixos.org/build/233252566 at 2023-09-02 + - pacman-memcache # failure in job https://hydra.nixos.org/build/233194833 at 2023-09-02 + - padic # failure in job https://hydra.nixos.org/build/233244747 at 2023-09-02 + - pads-haskell # failure in job https://hydra.nixos.org/build/233224030 at 2023-09-02 + - pagarme # failure in job https://hydra.nixos.org/build/233201914 at 2023-09-02 + - pagerduty-hs # failure in job https://hydra.nixos.org/build/233220387 at 2023-09-02 + - pagure-hook-receiver # failure in job https://hydra.nixos.org/build/233245894 at 2023-09-02 + - PandocAgda # failure in job https://hydra.nixos.org/build/233332745 at 2023-09-02 + - pandoc-citeproc # failure in job https://hydra.nixos.org/build/233198462 at 2023-09-02 + - pandoc-columns # failure in job https://hydra.nixos.org/build/233234538 at 2023-09-02 + - pandoc-csv2table # failure in job https://hydra.nixos.org/build/233229925 at 2023-09-02 + - pandoc-filter-graphviz # failure in job https://hydra.nixos.org/build/233233372 at 2023-09-02 + - pandoc-filter-indent # failure in job https://hydra.nixos.org/build/233235439 at 2023-09-02 + - pandoc-include # failure in job https://hydra.nixos.org/build/233199152 at 2023-09-02 + - pandoc-include-plus # failure in job https://hydra.nixos.org/build/233198059 at 2023-09-02 + - pandoc-lens # failure in job https://hydra.nixos.org/build/233251239 at 2023-09-02 + - pandoc-linear-table # failure in job https://hydra.nixos.org/build/233254813 at 2023-09-02 + - pandoc-link-context # failure in job https://hydra.nixos.org/build/233254006 at 2023-09-02 + - pandoc-logic-proof # failure in job https://hydra.nixos.org/build/233223409 at 2023-09-02 + - pandoc-markdown-ghci-filter # failure in job https://hydra.nixos.org/build/233213731 at 2023-09-02 + - pandoc-placetable # failure in job https://hydra.nixos.org/build/233243163 at 2023-09-02 + - pandoc-plantuml-diagrams # failure in job https://hydra.nixos.org/build/233221778 at 2023-09-02 + - pandoc-pyplot # failure in job https://hydra.nixos.org/build/233248205 at 2023-09-02 + - pandoc-select-code # failure in job https://hydra.nixos.org/build/233238415 at 2023-09-02 + - pandoc-unlit # failure in job https://hydra.nixos.org/build/233219811 at 2023-09-02 + - pandoc-utils # failure in job https://hydra.nixos.org/build/233203436 at 2023-09-02 + - pandora # failure in job https://hydra.nixos.org/build/233211349 at 2023-09-02 + - pang-a-lambda # failure in job https://hydra.nixos.org/build/233202706 at 2023-09-02 + - pangraph # failure in job https://hydra.nixos.org/build/233242559 at 2023-09-02 + - pan-os-syslog # failure in job https://hydra.nixos.org/build/233244422 at 2023-09-02 + - panpipe # failure in job https://hydra.nixos.org/build/233257048 at 2023-09-02 + - pansite # failure in job https://hydra.nixos.org/build/233245941 at 2023-09-02 + - pantry-tmp # failure in job https://hydra.nixos.org/build/233662928 at 2023-09-02 + - papa-base-export # failure in job https://hydra.nixos.org/build/233251046 at 2023-09-02 + - papa-include # failure in job https://hydra.nixos.org/build/233226603 at 2023-09-02 + - papa-lens-export # failure in job https://hydra.nixos.org/build/233228582 at 2023-09-02 + - papa-lens-implement # failure in job https://hydra.nixos.org/build/233192797 at 2023-09-02 + - papa-prelude-core # failure in job https://hydra.nixos.org/build/233212274 at 2023-09-02 + - papa-prelude # failure in job https://hydra.nixos.org/build/233256276 at 2023-09-02 + - papa-prelude-lens # failure in job https://hydra.nixos.org/build/233213147 at 2023-09-02 + - papa-prelude-semigroupoids # failure in job https://hydra.nixos.org/build/233250360 at 2023-09-02 + - papa-prelude-semigroups # failure in job https://hydra.nixos.org/build/233199275 at 2023-09-02 + - papa-semigroupoids-implement # failure in job https://hydra.nixos.org/build/233234835 at 2023-09-02 + - paphragen # failure in job https://hydra.nixos.org/build/233206378 at 2023-09-02 + - papillon # failure in job https://hydra.nixos.org/build/233195439 at 2023-09-02 + - pappy # failure in job https://hydra.nixos.org/build/233213934 at 2023-09-02 + - paragon # failure in job https://hydra.nixos.org/build/233205056 at 2023-09-02 + - Parallel-Arrows-Definition # failure in job https://hydra.nixos.org/build/233234042 at 2023-09-02 + - parallel-tasks # failure in job https://hydra.nixos.org/build/233232488 at 2023-09-02 + - parameterized-data # failure in job https://hydra.nixos.org/build/233250720 at 2023-09-02 + - paranoia # failure in job https://hydra.nixos.org/build/233241355 at 2023-09-02 + - parco # failure in job https://hydra.nixos.org/build/233248490 at 2023-09-02 + - parcom-lib # failure in job https://hydra.nixos.org/build/233222095 at 2023-09-02 + - pareto # failure in job https://hydra.nixos.org/build/233216417 at 2023-09-02 + - paripari # failure in job https://hydra.nixos.org/build/233234391 at 2023-09-02 + - parochial # failure in job https://hydra.nixos.org/build/233239964 at 2023-09-02 + - PArrows # failure in job https://hydra.nixos.org/build/233232332 at 2023-09-02 + - Parry # failure in job https://hydra.nixos.org/build/233230444 at 2023-09-02 + - parsec2 # failure in job https://hydra.nixos.org/build/233225643 at 2023-09-02 + - parsec3 # failure in job https://hydra.nixos.org/build/233221004 at 2023-09-02 + - parsec-parsers # failure in job https://hydra.nixos.org/build/233219781 at 2023-09-02 + - parsec-pratt # failure in job https://hydra.nixos.org/build/233194863 at 2023-09-02 + - parseerror-eq # failure in job https://hydra.nixos.org/build/233250555 at 2023-09-02 + - parse # failure in job https://hydra.nixos.org/build/233246780 at 2023-09-02 + - parse-gcstats # failure in job https://hydra.nixos.org/build/233241500 at 2023-09-02 + - parsely # failure in job https://hydra.nixos.org/build/233205027 at 2023-09-02 + - parser241 # failure in job https://hydra.nixos.org/build/233238792 at 2023-09-02 + - parser-combinators-tests # failure in job https://hydra.nixos.org/build/233259610 at 2023-09-02 + - parsergen # failure in job https://hydra.nixos.org/build/233197332 at 2023-09-02 + - parser-helper # failure in job https://hydra.nixos.org/build/233198774 at 2023-09-02 + - parsers-megaparsec # failure in job https://hydra.nixos.org/build/233234736 at 2023-09-02 + - parser-unbiased-choice-monad-embedding # failure in job https://hydra.nixos.org/build/233258179 at 2023-09-02 + - parsimony # failure in job https://hydra.nixos.org/build/233230339 at 2023-09-02 + - parsix # failure in job https://hydra.nixos.org/build/233250899 at 2023-09-02 + - parsley-core # failure in job https://hydra.nixos.org/build/233240217 at 2023-09-02 + - parsnip # failure in job https://hydra.nixos.org/build/233229093 at 2023-09-02 + - partial-lens # failure in job https://hydra.nixos.org/build/233234761 at 2023-09-02 + - partial-records # failure in job https://hydra.nixos.org/build/233205143 at 2023-09-02 + - partly # failure in job https://hydra.nixos.org/build/233229003 at 2023-09-02 + - passage # failure in job https://hydra.nixos.org/build/233192945 at 2023-09-02 + - passman-core # failure in job https://hydra.nixos.org/build/233217997 at 2023-09-02 + - passman # failure in job https://hydra.nixos.org/build/233234939 at 2023-09-02 + - PasswordGenerator # failure in job https://hydra.nixos.org/build/233242634 at 2023-09-02 + - passwords # failure in job https://hydra.nixos.org/build/233234987 at 2023-09-02 + - pasta-curves # failure in job https://hydra.nixos.org/build/233196512 at 2023-09-02 + - pasta # failure in job https://hydra.nixos.org/build/233216549 at 2023-09-02 + - pastis # failure in job https://hydra.nixos.org/build/233218498 at 2023-09-02 + - pasty # failure in job https://hydra.nixos.org/build/233251812 at 2023-09-02 + - patches-vector # failure in job https://hydra.nixos.org/build/233244862 at 2023-09-02 + - Pathfinder # failure in job https://hydra.nixos.org/build/233236573 at 2023-09-02 + - path-formatting # failure in job https://hydra.nixos.org/build/233199358 at 2023-09-02 + - PathTree # failure in job https://hydra.nixos.org/build/233216203 at 2023-09-02 + - patronscraper # failure in job https://hydra.nixos.org/build/233258571 at 2023-09-02 + - pattern-trie # failure in job https://hydra.nixos.org/build/233237252 at 2023-09-02 + - paynow-zw # failure in job https://hydra.nixos.org/build/233221916 at 2023-09-02 + - paypal-adaptive-hoops # failure in job https://hydra.nixos.org/build/233244557 at 2023-09-02 + - paypal-api # failure in job https://hydra.nixos.org/build/233228585 at 2023-09-02 + - pbc4hs # failure in job https://hydra.nixos.org/build/233247062 at 2023-09-02 + - pb # failure in job https://hydra.nixos.org/build/233193210 at 2023-09-02 + - PBKDF2 # failure in job https://hydra.nixos.org/build/233201545 at 2023-09-02 + - pb-next # failure in job https://hydra.nixos.org/build/233217547 at 2023-09-02 + - pcd-loader # failure in job https://hydra.nixos.org/build/233230290 at 2023-09-02 + - pcf-font-embed # failure in job https://hydra.nixos.org/build/233246806 at 2023-09-02 + - pcgen # failure in job https://hydra.nixos.org/build/233195356 at 2023-09-02 + - PCLT # failure in job https://hydra.nixos.org/build/233246845 at 2023-09-02 + - pcre-light-extra # failure in job https://hydra.nixos.org/build/233194585 at 2023-09-02 + - pdfinfo # failure in job https://hydra.nixos.org/build/233214432 at 2023-09-02 + - pdf-slave-template # failure in job https://hydra.nixos.org/build/233217870 at 2023-09-02 + - pdf-toolbox-viewer # failure in job https://hydra.nixos.org/build/233196461 at 2023-09-02 + - pdftotext # failure in job https://hydra.nixos.org/build/233242086 at 2023-09-02 + - pdynload # failure in job https://hydra.nixos.org/build/233226504 at 2023-09-02 + - PeanoWitnesses # failure in job https://hydra.nixos.org/build/233207451 at 2023-09-02 + - pecoff # failure in job https://hydra.nixos.org/build/233231268 at 2023-09-02 + - pedestrian-dag # failure in job https://hydra.nixos.org/build/233258214 at 2023-09-02 + - peg # failure in job https://hydra.nixos.org/build/233219135 at 2023-09-02 + - peggy # failure in job https://hydra.nixos.org/build/233219739 at 2023-09-02 + - pencil # failure in job https://hydra.nixos.org/build/233241521 at 2023-09-02 + - penntreebank-megaparsec # failure in job https://hydra.nixos.org/build/233192370 at 2023-09-02 + - percent-encoder # failure in job https://hydra.nixos.org/build/233227242 at 2023-09-02 + - perceptron # failure in job https://hydra.nixos.org/build/233192246 at 2023-09-02 + - peregrin # failure in job https://hydra.nixos.org/build/233219228 at 2023-09-02 + - PerfectHash # failure in job https://hydra.nixos.org/build/233252581 at 2023-09-02 + - perfect-vector-shuffle # failure in job https://hydra.nixos.org/build/233195328 at 2023-09-02 + - perhaps # failure in job https://hydra.nixos.org/build/233206486 at 2023-09-02 + - periodic-common # failure in job https://hydra.nixos.org/build/233224868 at 2023-09-02 + - periodic # failure in job https://hydra.nixos.org/build/233192615 at 2023-09-02 + - periodic-polynomials # failure in job https://hydra.nixos.org/build/233251520 at 2023-09-02 + - permutation # failure in job https://hydra.nixos.org/build/233232155 at 2023-09-02 + - permute # failure in job https://hydra.nixos.org/build/233238641 at 2023-09-02 + - persist2er # failure in job https://hydra.nixos.org/build/233243953 at 2023-09-02 + - Persistence # failure in job https://hydra.nixos.org/build/233226467 at 2023-09-02 + - persistent-cereal # failure in job https://hydra.nixos.org/build/233240762 at 2023-09-02 + - persistent-database-url # failure in job https://hydra.nixos.org/build/233233601 at 2023-09-02 + - persistent-equivalence # failure in job https://hydra.nixos.org/build/233208713 at 2023-09-02 + - persistent-generic # failure in job https://hydra.nixos.org/build/233220060 at 2023-09-02 + - persistent-mongoDB # failure in job https://hydra.nixos.org/build/233207971 at 2023-09-02 + - persistent-odbc # failure in job https://hydra.nixos.org/build/233191221 at 2023-09-02 + - persistent-postgresql-streaming # failure in job https://hydra.nixos.org/build/233194038 at 2023-09-02 + - persistent-ratelimit # failure in job https://hydra.nixos.org/build/233224537 at 2023-09-02 + - persistent-stm # failure in job https://hydra.nixos.org/build/233234706 at 2023-09-02 + - persistent-template-classy # failure in job https://hydra.nixos.org/build/233230341 at 2023-09-02 + - persist # failure in job https://hydra.nixos.org/build/233234953 at 2023-09-02 + - persist-state # failure in job https://hydra.nixos.org/build/233249568 at 2023-09-02 + - persona # failure in job https://hydra.nixos.org/build/233209614 at 2023-09-02 + - pesca # failure in job https://hydra.nixos.org/build/233231301 at 2023-09-02 + - pez # failure in job https://hydra.nixos.org/build/233212139 at 2023-09-02 + - pgdl # failure in job https://hydra.nixos.org/build/233203790 at 2023-09-02 + - pg-extras # failure in job https://hydra.nixos.org/build/233253845 at 2023-09-02 + - pgf2 # failure in job https://hydra.nixos.org/build/233234332 at 2023-09-02 + - pg-harness # failure in job https://hydra.nixos.org/build/233219805 at 2023-09-02 + - pg-harness-server # failure in job https://hydra.nixos.org/build/233236493 at 2023-09-02 + - pg-recorder # failure in job https://hydra.nixos.org/build/233241248 at 2023-09-02 + - pgsql-simple # failure in job https://hydra.nixos.org/build/233228421 at 2023-09-02 + - pg-store # failure in job https://hydra.nixos.org/build/233208603 at 2023-09-02 + - pgstream # failure in job https://hydra.nixos.org/build/233201596 at 2023-09-02 + - pg-transact # failure in job https://hydra.nixos.org/build/233253337 at 2023-09-02 + - pgvector # failure in job https://hydra.nixos.org/build/233202205 at 2023-09-02 + - phasechange # failure in job https://hydra.nixos.org/build/233254293 at 2023-09-02 + - phaser # failure in job https://hydra.nixos.org/build/233250604 at 2023-09-02 + - phoityne # failure in job https://hydra.nixos.org/build/233195238 at 2023-09-02 + - phoityne-vscode # failure in job https://hydra.nixos.org/build/233190938 at 2023-09-02 + - phone-metadata # failure in job https://hydra.nixos.org/build/233256096 at 2023-09-02 + - phone-numbers # failure in job https://hydra.nixos.org/build/233217584 at 2023-09-02 + - phone-push # failure in job https://hydra.nixos.org/build/233246934 at 2023-09-02 + - phonetic-languages-constaints # failure in job https://hydra.nixos.org/build/233232580 at 2023-09-02 + - phonetic-languages-simplified-generalized-examples-array # failure in job https://hydra.nixos.org/build/233245242 at 2023-09-02 + - phonetic-languages-simplified-properties-array # failure in job https://hydra.nixos.org/build/233195530 at 2023-09-02 + - phonetic-languages-simplified-properties-array-old # failure in job https://hydra.nixos.org/build/233258258 at 2023-09-02 + - phonetic-languages-vector # failure in job https://hydra.nixos.org/build/233258156 at 2023-09-02 + - phraskell # failure in job https://hydra.nixos.org/build/233202906 at 2023-09-02 + - Phsu # failure in job https://hydra.nixos.org/build/233243595 at 2023-09-02 + - pia-forward # failure in job https://hydra.nixos.org/build/233219067 at 2023-09-02 + - pi-calculus # failure in job https://hydra.nixos.org/build/233247119 at 2023-09-02 + - picedit # failure in job https://hydra.nixos.org/build/233204167 at 2023-09-02 + - pickle # failure in job https://hydra.nixos.org/build/233255980 at 2023-09-02 + - picologic # failure in job https://hydra.nixos.org/build/233202882 at 2023-09-02 + - picoparsec # failure in job https://hydra.nixos.org/build/233251453 at 2023-09-02 + - pictikz # failure in job https://hydra.nixos.org/build/233240766 at 2023-09-02 + - pier-core # failure in job https://hydra.nixos.org/build/233234325 at 2023-09-02 + - piet # failure in job https://hydra.nixos.org/build/233259843 at 2023-09-02 + - pi-forall # failure in job https://hydra.nixos.org/build/233247486 at 2023-09-02 + - pig # failure in job https://hydra.nixos.org/build/233234188 at 2023-09-02 + - pi-hoole # failure in job https://hydra.nixos.org/build/233242115 at 2023-09-02 + - pi-lcd # failure in job https://hydra.nixos.org/build/233251924 at 2023-09-02 + - pinboard # failure in job https://hydra.nixos.org/build/233239482 at 2023-09-02 + - pinch-gen # failure in job https://hydra.nixos.org/build/233212466 at 2023-09-02 + - pinchot # failure in job https://hydra.nixos.org/build/233230585 at 2023-09-02 + - Pipe # failure in job https://hydra.nixos.org/build/233243604 at 2023-09-02 + - pipes-async # failure in job https://hydra.nixos.org/build/233194729 at 2023-09-02 + - pipes-bgzf # failure in job https://hydra.nixos.org/build/233238921 at 2023-09-02 + - pipes-break # failure in job https://hydra.nixos.org/build/233250730 at 2023-09-02 + - pipes-brotli # failure in job https://hydra.nixos.org/build/233254662 at 2023-09-02 + - pipes-bzip # failure in job https://hydra.nixos.org/build/233222309 at 2023-09-02 + - pipes-category # failure in job https://hydra.nixos.org/build/233200163 at 2023-09-02 + - pipes-cereal # failure in job https://hydra.nixos.org/build/233195413 at 2023-09-02 + - pipes-core # failure in job https://hydra.nixos.org/build/233213024 at 2023-09-02 + - pipes-errors # failure in job https://hydra.nixos.org/build/233214912 at 2023-09-02 + - pipes-interleave # failure in job https://hydra.nixos.org/build/233247428 at 2023-09-02 + - pipes-io # failure in job https://hydra.nixos.org/build/233243253 at 2023-09-02 + - pipes-lines # failure in job https://hydra.nixos.org/build/233243979 at 2023-09-02 + - pipes-lzma # failure in job https://hydra.nixos.org/build/233256730 at 2023-09-02 + - pipes-network-ws # failure in job https://hydra.nixos.org/build/233245816 at 2023-09-02 + - pipes-protolude # failure in job https://hydra.nixos.org/build/233216770 at 2023-09-02 + - pipes-rt # failure in job https://hydra.nixos.org/build/233192738 at 2023-09-02 + - pipes-s3 # failure in job https://hydra.nixos.org/build/233212176 at 2023-09-02 + - pipes-shell # failure in job https://hydra.nixos.org/build/233201295 at 2023-09-02 + - pipes-sqlite-simple # failure in job https://hydra.nixos.org/build/233192011 at 2023-09-02 + - pipes-transduce # failure in job https://hydra.nixos.org/build/233255687 at 2023-09-02 + - pipes-vector # failure in job https://hydra.nixos.org/build/233230658 at 2023-09-02 + - pipes-zeromq4 # failure in job https://hydra.nixos.org/build/233225144 at 2023-09-02 + - Piso # failure in job https://hydra.nixos.org/build/233248525 at 2023-09-02 + - pit # failure in job https://hydra.nixos.org/build/233231533 at 2023-09-02 + - pivotal-tracker # failure in job https://hydra.nixos.org/build/233247891 at 2023-09-02 + - pixela # failure in job https://hydra.nixos.org/build/233212880 at 2023-09-02 + - pixelated-avatar-generator # failure in job https://hydra.nixos.org/build/233226212 at 2023-09-02 + - pixel-printer # failure in job https://hydra.nixos.org/build/233238475 at 2023-09-02 + - pixiv # failure in job https://hydra.nixos.org/build/233192807 at 2023-09-02 + - pkcs10 # failure in job https://hydra.nixos.org/build/233212551 at 2023-09-02 + - pkcs7 # failure in job https://hydra.nixos.org/build/233191635 at 2023-09-02 + - pkggraph # failure in job https://hydra.nixos.org/build/233238971 at 2023-09-02 + - plailude # failure in job https://hydra.nixos.org/build/233233772 at 2023-09-02 + - plan-applicative # failure in job https://hydra.nixos.org/build/233202905 at 2023-09-02 + - planar-graph # failure in job https://hydra.nixos.org/build/233217108 at 2023-09-02 + - plan-b # failure in job https://hydra.nixos.org/build/233255860 at 2023-09-02 + - planb-token-introspection # failure in job https://hydra.nixos.org/build/233226890 at 2023-09-02 + - planet-mitchell-test # failure in job https://hydra.nixos.org/build/233198054 at 2023-09-02 + - plankton # failure in job https://hydra.nixos.org/build/233216254 at 2023-09-02 + - plat # failure in job https://hydra.nixos.org/build/233205071 at 2023-09-02 + - platinum-parsing # failure in job https://hydra.nixos.org/build/233225071 at 2023-09-02 + - PlayingCards # failure in job https://hydra.nixos.org/build/233239100 at 2023-09-02 + - playlists # failure in job https://hydra.nixos.org/build/233240151 at 2023-09-02 + - plist-buddy # failure in job https://hydra.nixos.org/build/233199181 at 2023-09-02 + - plist # failure in job https://hydra.nixos.org/build/233233906 at 2023-09-02 + - plivo # failure in job https://hydra.nixos.org/build/233256647 at 2023-09-02 + - ploterific # failure in job https://hydra.nixos.org/build/233228102 at 2023-09-02 + - plot-gtk3 # failure in job https://hydra.nixos.org/build/233202048 at 2023-09-02 + - plot-gtk # failure in job https://hydra.nixos.org/build/233241286 at 2023-09-02 + - plot-gtk-ui # failure in job https://hydra.nixos.org/build/233205192 at 2023-09-02 + - plot-lab # failure in job https://hydra.nixos.org/build/233242283 at 2023-09-02 + - plots # failure in job https://hydra.nixos.org/build/233207279 at 2023-09-02 + - plow-log-async # failure in job https://hydra.nixos.org/build/233201736 at 2023-09-02 + - plugins # failure in job https://hydra.nixos.org/build/233239631 at 2023-09-02 + - plugins-multistage # failure in job https://hydra.nixos.org/build/233205493 at 2023-09-02 + - plumbers # failure in job https://hydra.nixos.org/build/233221866 at 2023-09-02 + - plural # failure in job https://hydra.nixos.org/build/233198934 at 2023-09-02 + - plur # failure in job https://hydra.nixos.org/build/233229752 at 2023-09-02 + - plzwrk # failure in job https://hydra.nixos.org/build/233219630 at 2023-09-02 + - pngload-fixed # failure in job https://hydra.nixos.org/build/233233956 at 2023-09-02 + - pocket # failure in job https://hydra.nixos.org/build/233244120 at 2023-09-02 + - podenv # failure in job https://hydra.nixos.org/build/233210257 at 2023-09-02 + - pointedalternative # failure in job https://hydra.nixos.org/build/233205911 at 2023-09-02 + - pointfree-fancy # failure in job https://hydra.nixos.org/build/233229134 at 2023-09-02 + - pointful # failure in job https://hydra.nixos.org/build/233212599 at 2023-09-02 + - pointless-haskell # failure in job https://hydra.nixos.org/build/233209713 at 2023-09-02 + - pokemon-go-protobuf-types # failure in job https://hydra.nixos.org/build/233218347 at 2023-09-02 + - poker-base # failure in job https://hydra.nixos.org/build/233221473 at 2023-09-02 + - poker-eval # failure in job https://hydra.nixos.org/build/233259714 at 2023-09-02 + - pokitdok # failure in job https://hydra.nixos.org/build/233251624 at 2023-09-02 + - polar-configfile # failure in job https://hydra.nixos.org/build/233194279 at 2023-09-02 + - polar-shader # failure in job https://hydra.nixos.org/build/233258190 at 2023-09-02 + - policeman # failure in job https://hydra.nixos.org/build/233199941 at 2023-09-02 + - polling-cache # failure in job https://hydra.nixos.org/build/233211378 at 2023-09-02 + - poly-cont # failure in job https://hydra.nixos.org/build/233223995 at 2023-09-02 + - poly-control # failure in job https://hydra.nixos.org/build/233190876 at 2023-09-02 + - polydata-core # failure in job https://hydra.nixos.org/build/233232049 at 2023-09-02 + - poly # failure in job https://hydra.nixos.org/build/233255655 at 2023-09-02 + - polyglot # failure in job https://hydra.nixos.org/build/233218267 at 2023-09-02 + - polynom # failure in job https://hydra.nixos.org/build/233237353 at 2023-09-02 + - polynomial # failure in job https://hydra.nixos.org/build/233242131 at 2023-09-02 + - polysemy-keyed-state # failure in job https://hydra.nixos.org/build/233224142 at 2023-09-02 + - polysemy-kvstore # failure in job https://hydra.nixos.org/build/233229745 at 2023-09-02 + - polysemy-managed # failure in job https://hydra.nixos.org/build/233221190 at 2023-09-02 + - polysemy-optics # failure in job https://hydra.nixos.org/build/233219159 at 2023-09-02 + - polysemy-process # failure in job https://hydra.nixos.org/build/233238650 at 2023-09-02 + - polysemy-readline # failure in job https://hydra.nixos.org/build/233219007 at 2023-09-02 + - polysemy-req # failure in job https://hydra.nixos.org/build/233224435 at 2023-09-02 + - polysemy-several # failure in job https://hydra.nixos.org/build/233216921 at 2023-09-02 + - polysemy-socket # failure in job https://hydra.nixos.org/build/233195754 at 2023-09-02 + - polyseq # failure in job https://hydra.nixos.org/build/233191210 at 2023-09-02 + - polytypeable # failure in job https://hydra.nixos.org/build/233211797 at 2023-09-02 + - polyvariadic # failure in job https://hydra.nixos.org/build/233250822 at 2023-09-02 + - pomaps # failure in job https://hydra.nixos.org/build/233246145 at 2023-09-02 + - pomohoro # failure in job https://hydra.nixos.org/build/233244601 at 2023-09-02 + - ponder # failure in job https://hydra.nixos.org/build/233223646 at 2023-09-02 + - pong-server # failure in job https://hydra.nixos.org/build/233194974 at 2023-09-02 + - pontarius-xmpp-extras # failure in job https://hydra.nixos.org/build/233246212 at 2023-09-02 + - pontarius-xpmn # failure in job https://hydra.nixos.org/build/233217546 at 2023-09-02 + - poolboy # failure in job https://hydra.nixos.org/build/233195085 at 2023-09-02 + - pool-conduit # failure in job https://hydra.nixos.org/build/233246643 at 2023-09-02 + - pool # failure in job https://hydra.nixos.org/build/233205364 at 2023-09-02 + - pop3-client # failure in job https://hydra.nixos.org/build/233251475 at 2023-09-02 + - popkey # failure in job https://hydra.nixos.org/build/233203892 at 2023-09-02 + - poppler # failure in job https://hydra.nixos.org/build/233196044 at 2023-09-02 + - porpoise # failure in job https://hydra.nixos.org/build/233191117 at 2023-09-02 + - portager # failure in job https://hydra.nixos.org/build/233192963 at 2023-09-02 + - porte # failure in job https://hydra.nixos.org/build/233224391 at 2023-09-02 + - PortFusion # failure in job https://hydra.nixos.org/build/233248354 at 2023-09-02 + - posable # failure in job https://hydra.nixos.org/build/233217897 at 2023-09-02 + - posit # failure in job https://hydra.nixos.org/build/233229714 at 2023-09-02 + - positron # failure in job https://hydra.nixos.org/build/233256252 at 2023-09-02 + - posix-acl # failure in job https://hydra.nixos.org/build/233222892 at 2023-09-02 + - posix-api # failure in job https://hydra.nixos.org/build/233240089 at 2023-09-02 + - posix-realtime # failure in job https://hydra.nixos.org/build/233191463 at 2023-09-02 + - posix-waitpid # failure in job https://hydra.nixos.org/build/233206551 at 2023-09-02 + - posplyu # failure in job https://hydra.nixos.org/build/233230437 at 2023-09-02 + - postcodes # failure in job https://hydra.nixos.org/build/233247290 at 2023-09-02 + - postgres-embedded # failure in job https://hydra.nixos.org/build/233246098 at 2023-09-02 + - postgresql-common # failure in job https://hydra.nixos.org/build/233257104 at 2023-09-02 + - postgresql-config # failure in job https://hydra.nixos.org/build/233197788 at 2023-09-02 + - postgresql-cube # failure in job https://hydra.nixos.org/build/233195283 at 2023-09-02 + - PostgreSQL # failure in job https://hydra.nixos.org/build/233258066 at 2023-09-02 + - postgresql-lo-stream # failure in job https://hydra.nixos.org/build/233194012 at 2023-09-02 + - postgresql-ltree # failure in job https://hydra.nixos.org/build/233199998 at 2023-09-02 + - postgresql-named # failure in job https://hydra.nixos.org/build/233241920 at 2023-09-02 + - postgresql-orm # failure in job https://hydra.nixos.org/build/233219383 at 2023-09-02 + - postgresql-query # failure in job https://hydra.nixos.org/build/233202114 at 2023-09-02 + - postgresql-replicant # failure in job https://hydra.nixos.org/build/233247943 at 2023-09-02 + - postgresql-resilient # failure in job https://hydra.nixos.org/build/233212362 at 2023-09-02 + - postgresql-simple-bind # failure in job https://hydra.nixos.org/build/233220640 at 2023-09-02 + - postgresql-simple-migration # failure in job https://hydra.nixos.org/build/233222723 at 2023-09-02 + - postgresql-simple-named # failure in job https://hydra.nixos.org/build/233202481 at 2023-09-02 + - postgresql-simple-sop # failure in job https://hydra.nixos.org/build/233249757 at 2023-09-02 + - postgresql-tx-monad-logger # failure in job https://hydra.nixos.org/build/233227034 at 2023-09-02 + - postgresql-tx-simple # failure in job https://hydra.nixos.org/build/233242850 at 2023-09-02 + - postgresql-typed-lifted # failure in job https://hydra.nixos.org/build/233215141 at 2023-09-02 + - postgres-tmp # failure in job https://hydra.nixos.org/build/233258685 at 2023-09-02 + - postgrest-ws # failure in job https://hydra.nixos.org/build/233247807 at 2023-09-02 + - postgres-websockets # failure in job https://hydra.nixos.org/build/233199923 at 2023-09-02 + - postie # failure in job https://hydra.nixos.org/build/233259075 at 2023-09-02 + - postmark-streams # failure in job https://hydra.nixos.org/build/233233210 at 2023-09-02 + - postmaster # failure in job https://hydra.nixos.org/build/233258599 at 2023-09-02 + - potato-tool # failure in job https://hydra.nixos.org/build/233242728 at 2023-09-02 + - potoki-core # failure in job https://hydra.nixos.org/build/233218616 at 2023-09-02 + - powerdns # failure in job https://hydra.nixos.org/build/233213008 at 2023-09-02 + - powermate # failure in job https://hydra.nixos.org/build/233224977 at 2023-09-02 + - powerpc # failure in job https://hydra.nixos.org/build/233217983 at 2023-09-02 + - powerqueue-levelmem # failure in job https://hydra.nixos.org/build/233232882 at 2023-09-02 + - pprecord # failure in job https://hydra.nixos.org/build/233198838 at 2023-09-02 + - PPrinter # failure in job https://hydra.nixos.org/build/233253160 at 2023-09-02 + - pqc # failure in job https://hydra.nixos.org/build/233217425 at 2023-09-02 + - praglude # failure in job https://hydra.nixos.org/build/233227990 at 2023-09-02 + - preamble # failure in job https://hydra.nixos.org/build/233214735 at 2023-09-02 + - precis # failure in job https://hydra.nixos.org/build/233218390 at 2023-09-02 + - precursor # failure in job https://hydra.nixos.org/build/233243544 at 2023-09-02 + - predicate-class # failure in job https://hydra.nixos.org/build/233229898 at 2023-09-02 + - predicate-typed # failure in job https://hydra.nixos.org/build/233202614 at 2023-09-02 + - prednote # failure in job https://hydra.nixos.org/build/233253938 at 2023-09-02 + - prefork # failure in job https://hydra.nixos.org/build/233213524 at 2023-09-02 + - pregame # failure in job https://hydra.nixos.org/build/233206528 at 2023-09-02 + - preliminaries # failure in job https://hydra.nixos.org/build/233210546 at 2023-09-02 + - Prelude # failure in job https://hydra.nixos.org/build/233198144 at 2023-09-02 + - prelude-generalize # failure in job https://hydra.nixos.org/build/233197167 at 2023-09-02 + - prelude-plus # failure in job https://hydra.nixos.org/build/233252792 at 2023-09-02 + - preprocess-haskell # failure in job https://hydra.nixos.org/build/233212371 at 2023-09-02 + - preprocessor # failure in job https://hydra.nixos.org/build/233225468 at 2023-09-02 + - preql # failure in job https://hydra.nixos.org/build/233192349 at 2023-09-02 + - presburger # failure in job https://hydra.nixos.org/build/233200745 at 2023-09-02 + - present # failure in job https://hydra.nixos.org/build/233247937 at 2023-09-02 + - press # failure in job https://hydra.nixos.org/build/233244648 at 2023-09-02 + - pretty-compact # failure in job https://hydra.nixos.org/build/233230012 at 2023-09-02 + - pretty-ghci # failure in job https://hydra.nixos.org/build/233236777 at 2023-09-02 + - pretty-loc # failure in job https://hydra.nixos.org/build/233198098 at 2023-09-02 + - pretty-ncols # failure in job https://hydra.nixos.org/build/233220264 at 2023-09-02 + - prettyprinter-vty # failure in job https://hydra.nixos.org/build/233251729 at 2023-09-02 + - primal # failure in job https://hydra.nixos.org/build/233260049 at 2023-09-02 + - prim-array # failure in job https://hydra.nixos.org/build/233220574 at 2023-09-02 + - prime # failure in job https://hydra.nixos.org/build/233197550 at 2023-09-02 + - primes-type # failure in job https://hydra.nixos.org/build/233258302 at 2023-09-02 + - prim # failure in job https://hydra.nixos.org/build/233215988 at 2023-09-02 + - prim-instances # failure in job https://hydra.nixos.org/build/233215690 at 2023-09-02 + - PrimitiveArray # failure in job https://hydra.nixos.org/build/233204574 at 2023-09-02 + - PrimitiveArray-Pretty # failure in job https://hydra.nixos.org/build/233234197 at 2023-09-02 + - primitive-atomic # failure in job https://hydra.nixos.org/build/233219043 at 2023-09-02 + - primitive-checked # failure in job https://hydra.nixos.org/build/233211674 at 2023-09-02 + - primitive-convenience # failure in job https://hydra.nixos.org/build/233223846 at 2023-09-02 + - primitive-foreign # failure in job https://hydra.nixos.org/build/233247413 at 2023-09-02 + - primitive-indexed # failure in job https://hydra.nixos.org/build/233245884 at 2023-09-02 + - primitive-maybe # failure in job https://hydra.nixos.org/build/233205279 at 2023-09-02 + - primitive-primvar # failure in job https://hydra.nixos.org/build/233213521 at 2023-09-02 + - primitive-simd # failure in job https://hydra.nixos.org/build/233247045 at 2023-09-02 + - primitive-slice # failure in job https://hydra.nixos.org/build/233245739 at 2023-09-02 + - primitive-sort # failure in job https://hydra.nixos.org/build/233233750 at 2023-09-02 + - primitive-stablename # failure in job https://hydra.nixos.org/build/233251421 at 2023-09-02 + - prim-ref # failure in job https://hydra.nixos.org/build/233226138 at 2023-09-02 + - pringletons # failure in job https://hydra.nixos.org/build/233246491 at 2023-09-02 + - printcess # failure in job https://hydra.nixos.org/build/233212768 at 2023-09-02 + - print-debugger # failure in job https://hydra.nixos.org/build/233229154 at 2023-09-02 + - print-info # failure in job https://hydra.nixos.org/build/233246545 at 2023-09-02 + - prints # failure in job https://hydra.nixos.org/build/233201961 at 2023-09-02 + - PriorityChansConverger # failure in job https://hydra.nixos.org/build/233217782 at 2023-09-02 + - priority-queue # failure in job https://hydra.nixos.org/build/233253122 at 2023-09-02 + - pro-abstract # failure in job https://hydra.nixos.org/build/233213330 at 2023-09-02 + - probable # failure in job https://hydra.nixos.org/build/233243771 at 2023-09-02 + - prob-fx # failure in job https://hydra.nixos.org/build/233239940 at 2023-09-02 + - Probnet # failure in job https://hydra.nixos.org/build/233190989 at 2023-09-02 + - process-conduit # failure in job https://hydra.nixos.org/build/233225334 at 2023-09-02 + - processing # failure in job https://hydra.nixos.org/build/233232969 at 2023-09-02 + - process-leksah # failure in job https://hydra.nixos.org/build/233256114 at 2023-09-02 + - process-listlike # failure in job https://hydra.nixos.org/build/233194645 at 2023-09-02 + - processmemory # failure in job https://hydra.nixos.org/build/233217444 at 2023-09-02 + - process-sequential # failure in job https://hydra.nixos.org/build/233221064 at 2023-09-02 + - procrastinating-variable # failure in job https://hydra.nixos.org/build/233229350 at 2023-09-02 + - procstat # failure in job https://hydra.nixos.org/build/233256320 at 2023-09-02 + - product-isomorphic # failure in job https://hydra.nixos.org/build/233230736 at 2023-09-02 + - prof2pretty # failure in job https://hydra.nixos.org/build/233240665 at 2023-09-02 + - prof-flamegraph # failure in job https://hydra.nixos.org/build/233254675 at 2023-09-02 + - profiteur # failure in job https://hydra.nixos.org/build/233216916 at 2023-09-02 + - profunctor-monad # failure in job https://hydra.nixos.org/build/233190940 at 2023-09-02 + - progression # failure in job https://hydra.nixos.org/build/233256355 at 2023-09-02 + - progressive # failure in job https://hydra.nixos.org/build/233228075 at 2023-09-02 + - progress-meter # failure in job https://hydra.nixos.org/build/233222787 at 2023-09-02 + - progress-reporting # failure in job https://hydra.nixos.org/build/233200528 at 2023-09-02 + - proj4-hs-bindings # failure in job https://hydra.nixos.org/build/233220980 at 2023-09-02 + - project-forge # failure in job https://hydra.nixos.org/build/233253798 at 2023-09-02 + - projectile # failure in job https://hydra.nixos.org/build/233220390 at 2023-09-02 + - prolens # failure in job https://hydra.nixos.org/build/233232251 at 2023-09-02 + - prolog # failure in job https://hydra.nixos.org/build/233259542 at 2023-09-02 + - prometheus-effect # failure in job https://hydra.nixos.org/build/233215984 at 2023-09-02 + - prometheus-wai-middleware # failure in job https://hydra.nixos.org/build/233239230 at 2023-09-02 + - promise # failure in job https://hydra.nixos.org/build/233228578 at 2023-09-02 + - pronounce # failure in job https://hydra.nixos.org/build/233234844 at 2023-09-02 + - proof-combinators # failure in job https://hydra.nixos.org/build/233210521 at 2023-09-02 + - PropaFP # failure in job https://hydra.nixos.org/build/233206496 at 2023-09-02 + - Proper # failure in job https://hydra.nixos.org/build/233194417 at 2023-09-02 + - properties # failure in job https://hydra.nixos.org/build/233240862 at 2023-09-02 + - property-list # failure in job https://hydra.nixos.org/build/233254907 at 2023-09-02 + - prop-unit # failure in job https://hydra.nixos.org/build/233233874 at 2023-09-02 + - prosidy # failure in job https://hydra.nixos.org/build/233249779 at 2023-09-02 + - pro-source # failure in job https://hydra.nixos.org/build/233226793 at 2023-09-02 + - prosper # failure in job https://hydra.nixos.org/build/233244079 at 2023-09-02 + - proteaaudio # failure in job https://hydra.nixos.org/build/233225498 at 2023-09-02 + - proto3-wire # failure in job https://hydra.nixos.org/build/233208217 at 2023-09-02 + - protocol-buffers # failure in job https://hydra.nixos.org/build/233220653 at 2023-09-02 + - protocol-buffers-fork # failure in job https://hydra.nixos.org/build/233228361 at 2023-09-02 + - protocol # failure in job https://hydra.nixos.org/build/233224436 at 2023-09-02 + - proto-lens-arbitrary # failure in job https://hydra.nixos.org/build/233239393 at 2023-09-02 + - protolude-lifted # failure in job https://hydra.nixos.org/build/233196312 at 2023-09-02 + - proton-haskell # failure in job https://hydra.nixos.org/build/233214383 at 2023-09-02 + - prototype # failure in job https://hydra.nixos.org/build/233238810 at 2023-09-02 + - prove-everywhere-server # failure in job https://hydra.nixos.org/build/233204606 at 2023-09-02 + - provenience # failure in job https://hydra.nixos.org/build/233247246 at 2023-09-02 + - proxy-kindness # failure in job https://hydra.nixos.org/build/233204762 at 2023-09-02 + - proxy-mapping # failure in job https://hydra.nixos.org/build/233227151 at 2023-09-02 + - prune-juice # failure in job https://hydra.nixos.org/build/233198633 at 2023-09-02 + - pseudo-trie # failure in job https://hydra.nixos.org/build/233230636 at 2023-09-02 + - psi # failure in job https://hydra.nixos.org/build/233222861 at 2023-09-02 + - pstemmer # failure in job https://hydra.nixos.org/build/233241342 at 2023-09-02 + - psx # failure in job https://hydra.nixos.org/build/233199666 at 2023-09-02 + - PTQ # failure in job https://hydra.nixos.org/build/233202571 at 2023-09-02 + - pub # failure in job https://hydra.nixos.org/build/233255415 at 2023-09-02 + - publicsuffix # failure in job https://hydra.nixos.org/build/233241572 at 2023-09-02 + - publicsuffixlistcreate # failure in job https://hydra.nixos.org/build/233251430 at 2023-09-02 + - publish # failure in job https://hydra.nixos.org/build/233247247 at 2023-09-02 + - pubnub # failure in job https://hydra.nixos.org/build/233221264 at 2023-09-02 + - pubsub # failure in job https://hydra.nixos.org/build/233257241 at 2023-09-02 + - pugixml # failure in job https://hydra.nixos.org/build/233241247 at 2023-09-02 + - pugs-DrIFT # failure in job https://hydra.nixos.org/build/233216584 at 2023-09-02 + - pugs-HsSyck # failure in job https://hydra.nixos.org/build/233242766 at 2023-09-02 + - PUH-Project # failure in job https://hydra.nixos.org/build/233238918 at 2023-09-02 + - Pup-Events-Server # failure in job https://hydra.nixos.org/build/233198287 at 2023-09-02 + - pure-io # failure in job https://hydra.nixos.org/build/233235168 at 2023-09-02 + - pure-priority-queue # failure in job https://hydra.nixos.org/build/233258014 at 2023-09-02 + - purescript-ast # failure in job https://hydra.nixos.org/build/233204157 at 2023-09-02 + - purescript-cst # failure in job https://hydra.nixos.org/build/233197178 at 2023-09-02 + - pure-zlib # failure in job https://hydra.nixos.org/build/233241392 at 2023-09-02 + - purview # failure in job https://hydra.nixos.org/build/233208821 at 2023-09-02 + - pushbullet # failure in job https://hydra.nixos.org/build/233209340 at 2023-09-02 + - pushbullet-types # failure in job https://hydra.nixos.org/build/233242388 at 2023-09-02 + - pusher-haskell # failure in job https://hydra.nixos.org/build/233201954 at 2023-09-02 + - pusher-ws # failure in job https://hydra.nixos.org/build/233204133 at 2023-09-02 + - pushme # failure in job https://hydra.nixos.org/build/233212481 at 2023-09-02 + - push-notifications # failure in job https://hydra.nixos.org/build/233199364 at 2023-09-02 + - putlenses # failure in job https://hydra.nixos.org/build/233197372 at 2023-09-02 + - puzzle-draw # failure in job https://hydra.nixos.org/build/233204953 at 2023-09-02 + - pvector # failure in job https://hydra.nixos.org/build/233217965 at 2023-09-02 + - pyffi # failure in job https://hydra.nixos.org/build/233260156 at 2023-09-02 + - pyfi # failure in job https://hydra.nixos.org/build/233214389 at 2023-09-02 + - python-pickle # failure in job https://hydra.nixos.org/build/233230321 at 2023-09-02 + - q4c12-twofinger # failure in job https://hydra.nixos.org/build/233190771 at 2023-09-02 + - qc-oi-testgenerator # failure in job https://hydra.nixos.org/build/233197822 at 2023-09-02 + - qd # failure in job https://hydra.nixos.org/build/233213936 at 2023-09-02 + - qed # failure in job https://hydra.nixos.org/build/233249635 at 2023-09-02 + - qhull-simple # failure in job https://hydra.nixos.org/build/233248108 at 2023-09-02 + - qif # failure in job https://hydra.nixos.org/build/233227609 at 2023-09-02 + - QIO # failure in job https://hydra.nixos.org/build/233233009 at 2023-09-02 + - QLearn # failure in job https://hydra.nixos.org/build/233252190 at 2023-09-02 + - qlinear # failure in job https://hydra.nixos.org/build/233214014 at 2023-09-02 + - qrcode # failure in job https://hydra.nixos.org/build/233225438 at 2023-09-02 + - qr-imager # failure in job https://hydra.nixos.org/build/233201973 at 2023-09-02 + - qt # failure in job https://hydra.nixos.org/build/233248869 at 2023-09-02 + - QuadEdge # failure in job https://hydra.nixos.org/build/233249144 at 2023-09-02 + - QuadTree # failure in job https://hydra.nixos.org/build/233234922 at 2023-09-02 + - qualified-imports-plugin # failure in job https://hydra.nixos.org/build/233234707 at 2023-09-02 + - quandl-api # failure in job https://hydra.nixos.org/build/233219173 at 2023-09-02 + - quantification # failure in job https://hydra.nixos.org/build/233217183 at 2023-09-02 + - quantum-arrow # failure in job https://hydra.nixos.org/build/233219576 at 2023-09-02 + - quarantimer # failure in job https://hydra.nixos.org/build/233598108 at 2023-09-02 + - qudb # failure in job https://hydra.nixos.org/build/233238799 at 2023-09-02 + - quenya-verb # failure in job https://hydra.nixos.org/build/233209006 at 2023-09-02 + - querystring-pickle # failure in job https://hydra.nixos.org/build/233246108 at 2023-09-02 + - questioner # failure in job https://hydra.nixos.org/build/233213704 at 2023-09-02 + - quibble-core # failure in job https://hydra.nixos.org/build/233200635 at 2023-09-02 + - quic # failure in job https://hydra.nixos.org/build/233238400 at 2023-09-02 + - QuickAnnotate # failure in job https://hydra.nixos.org/build/233197428 at 2023-09-02 + - quickbooks # failure in job https://hydra.nixos.org/build/233227666 at 2023-09-02 + - quickcheck-arbitrary-template # failure in job https://hydra.nixos.org/build/233223045 at 2023-09-02 + - quickcheck-combinators # failure in job https://hydra.nixos.org/build/233209131 at 2023-09-02 + - quickcheck-dynamic # failure in job https://hydra.nixos.org/build/233248273 at 2023-09-02 + - quickcheck-property-comb # failure in job https://hydra.nixos.org/build/233204877 at 2023-09-02 + - quickcheck-property-monad # failure in job https://hydra.nixos.org/build/233228775 at 2023-09-02 + - quickcheck-rematch # failure in job https://hydra.nixos.org/build/233205449 at 2023-09-02 + - quickcheck-report # failure in job https://hydra.nixos.org/build/233214523 at 2023-09-02 + - QuickCheckVariant # failure in job https://hydra.nixos.org/build/233239276 at 2023-09-02 + - quickcheck-webdriver # failure in job https://hydra.nixos.org/build/233228000 at 2023-09-02 + - quickjs-hs # failure in job https://hydra.nixos.org/build/233248440 at 2023-09-02 + - quickpull # failure in job https://hydra.nixos.org/build/233238642 at 2023-09-02 + - quick-schema # failure in job https://hydra.nixos.org/build/233256519 at 2023-09-02 + - quickset # failure in job https://hydra.nixos.org/build/233236904 at 2023-09-02 + - Quickson # failure in job https://hydra.nixos.org/build/233195101 at 2023-09-02 + - quickson # failure in job https://hydra.nixos.org/build/233216697 at 2023-09-02 + - quickspec # failure in job https://hydra.nixos.org/build/233196573 at 2023-09-02 + - quickwebapp # failure in job https://hydra.nixos.org/build/233208251 at 2023-09-02 + - quipper-core # failure in job https://hydra.nixos.org/build/233200962 at 2023-09-02 + - quiver # failure in job https://hydra.nixos.org/build/233230395 at 2023-09-02 + - quokka # failure in job https://hydra.nixos.org/build/233196347 at 2023-09-02 + - quoridor-hs # failure in job https://hydra.nixos.org/build/233217459 at 2023-09-02 + - RabbitMQ # failure in job https://hydra.nixos.org/build/233222087 at 2023-09-02 + - rad # failure in job https://hydra.nixos.org/build/233248990 at 2023-09-02 + - radian # failure in job https://hydra.nixos.org/build/233230029 at 2023-09-02 + - radium # failure in job https://hydra.nixos.org/build/233205347 at 2023-09-02 + - radium-formula-parser # failure in job https://hydra.nixos.org/build/233259018 at 2023-09-02 + - radix # failure in job https://hydra.nixos.org/build/233241258 at 2023-09-02 + - rados-haskell # failure in job https://hydra.nixos.org/build/233212247 at 2023-09-02 + - raft # failure in job https://hydra.nixos.org/build/233248392 at 2023-09-02 + - rakhana # failure in job https://hydra.nixos.org/build/233256901 at 2023-09-02 + - rakuten # failure in job https://hydra.nixos.org/build/233196803 at 2023-09-02 + - ralist # failure in job https://hydra.nixos.org/build/233195682 at 2023-09-02 + - raml # failure in job https://hydra.nixos.org/build/233212517 at 2023-09-02 + - rando # failure in job https://hydra.nixos.org/build/233257817 at 2023-09-02 + - random-access-list # failure in job https://hydra.nixos.org/build/233233464 at 2023-09-02 + - random-cycle # failure in job https://hydra.nixos.org/build/233208007 at 2023-09-02 + - random-derive # failure in job https://hydra.nixos.org/build/233222005 at 2023-09-02 + - RandomDotOrg # failure in job https://hydra.nixos.org/build/233229709 at 2023-09-02 + - random-eff # failure in job https://hydra.nixos.org/build/233255496 at 2023-09-02 + - Randometer # failure in job https://hydra.nixos.org/build/233231023 at 2023-09-02 + - random-source # failure in job https://hydra.nixos.org/build/233254664 at 2023-09-02 + - random-stream # failure in job https://hydra.nixos.org/build/233240384 at 2023-09-02 + - random-string # failure in job https://hydra.nixos.org/build/233223504 at 2023-09-02 + - rand-vars # failure in job https://hydra.nixos.org/build/233219255 at 2023-09-02 + - Range # failure in job https://hydra.nixos.org/build/233235824 at 2023-09-02 + - rangemin # failure in job https://hydra.nixos.org/build/233244031 at 2023-09-02 + - rank1dynamic # failure in job https://hydra.nixos.org/build/233229881 at 2023-09-02 + - rank-product # failure in job https://hydra.nixos.org/build/233239589 at 2023-09-02 + - rapid # failure in job https://hydra.nixos.org/build/233223077 at 2023-09-02 + - rapid-term # failure in job https://hydra.nixos.org/build/233251731 at 2023-09-02 + - rating-chgk-info # failure in job https://hydra.nixos.org/build/233598034 at 2023-09-02 + - rational-list # failure in job https://hydra.nixos.org/build/233197144 at 2023-09-02 + - rattle # failure in job https://hydra.nixos.org/build/233234335 at 2023-09-02 + - rattletrap # failure in job https://hydra.nixos.org/build/233206840 at 2023-09-02 + - raven-haskell-scotty # failure in job https://hydra.nixos.org/build/233244270 at 2023-09-02 + - raylib-imgui # failure in job https://hydra.nixos.org/build/233222471 at 2023-09-02 + - raz # failure in job https://hydra.nixos.org/build/233218482 at 2023-09-02 + - rbst # failure in job https://hydra.nixos.org/build/233238184 at 2023-09-02 + - rclient # failure in job https://hydra.nixos.org/build/233239290 at 2023-09-02 + - rdf4h # failure in job https://hydra.nixos.org/build/233234057 at 2023-09-02 + - react-flux # failure in job https://hydra.nixos.org/build/233246819 at 2023-09-02 + - react-haskell # failure in job https://hydra.nixos.org/build/233242976 at 2023-09-02 + - reaction-logic # failure in job https://hydra.nixos.org/build/233216789 at 2023-09-02 + - reactive-bacon # failure in job https://hydra.nixos.org/build/233238838 at 2023-09-02 + - reactive-banana-automation # failure in job https://hydra.nixos.org/build/233199860 at 2023-09-02 + - reactive-banana-gi-gtk # failure in job https://hydra.nixos.org/build/233219417 at 2023-09-02 + - reactive-banana-sdl2 # failure in job https://hydra.nixos.org/build/233235324 at 2023-09-02 + - reactive-banana-threepenny # failure in job https://hydra.nixos.org/build/233216958 at 2023-09-02 + - reactive-thread # failure in job https://hydra.nixos.org/build/233257806 at 2023-09-02 + - react-tutorial-haskell-server # failure in job https://hydra.nixos.org/build/233201256 at 2023-09-02 + - readability # failure in job https://hydra.nixos.org/build/233205178 at 2023-09-02 + - read-bounded # failure in job https://hydra.nixos.org/build/233195369 at 2023-09-02 + - read-ctags # failure in job https://hydra.nixos.org/build/233231382 at 2023-09-02 + - reader-soup # failure in job https://hydra.nixos.org/build/233198810 at 2023-09-02 + - read-io # failure in job https://hydra.nixos.org/build/233244370 at 2023-09-02 + - readline-statevar # failure in job https://hydra.nixos.org/build/233226053 at 2023-09-02 + - readme-lhs # failure in job https://hydra.nixos.org/build/233248229 at 2023-09-02 + - readshp # failure in job https://hydra.nixos.org/build/233197835 at 2023-09-02 + - really-simple-xml-parser # failure in job https://hydra.nixos.org/build/233195945 at 2023-09-02 + - reanimate-svg # failure in job https://hydra.nixos.org/build/233242271 at 2023-09-02 + - reasonable-lens # failure in job https://hydra.nixos.org/build/233233111 at 2023-09-02 + - reason-export # failure in job https://hydra.nixos.org/build/233212942 at 2023-09-02 + - record-encode # failure in job https://hydra.nixos.org/build/233216156 at 2023-09-02 + - record # failure in job https://hydra.nixos.org/build/233242406 at 2023-09-02 + - records # failure in job https://hydra.nixos.org/build/233254822 at 2023-09-02 + - records-sop # failure in job https://hydra.nixos.org/build/233251652 at 2023-09-02 + - record-wrangler # failure in job https://hydra.nixos.org/build/233212838 at 2023-09-02 + - rec-smallarray # failure in job https://hydra.nixos.org/build/233258592 at 2023-09-02 + - recursors # failure in job https://hydra.nixos.org/build/233234451 at 2023-09-02 + - red-black-record # failure in job https://hydra.nixos.org/build/233194275 at 2023-09-02 + - redis-hs # failure in job https://hydra.nixos.org/build/233191943 at 2023-09-02 + - redis-simple # failure in job https://hydra.nixos.org/build/233200379 at 2023-09-02 + - Redmine # failure in job https://hydra.nixos.org/build/233250398 at 2023-09-02 + - reedsolomon # failure in job https://hydra.nixos.org/build/233215366 at 2023-09-02 + - reenact # failure in job https://hydra.nixos.org/build/233229531 at 2023-09-02 + - refcount # failure in job https://hydra.nixos.org/build/233236697 at 2023-09-02 + - Referees # failure in job https://hydra.nixos.org/build/233213892 at 2023-09-02 + - references # failure in job https://hydra.nixos.org/build/233197836 at 2023-09-02 + - ref-extras # failure in job https://hydra.nixos.org/build/233255903 at 2023-09-02 + - Ref # failure in job https://hydra.nixos.org/build/233238498 at 2023-09-02 + - ref # failure in job https://hydra.nixos.org/build/233256479 at 2023-09-02 + - refined-http-api-data # failure in job https://hydra.nixos.org/build/233231753 at 2023-09-02 + - refined-with # failure in job https://hydra.nixos.org/build/233258564 at 2023-09-02 + - reflection-extras # failure in job https://hydra.nixos.org/build/233226544 at 2023-09-02 + - reflex-backend-socket # failure in job https://hydra.nixos.org/build/233254514 at 2023-09-02 + - reflex-basic-host # failure in job https://hydra.nixos.org/build/233210837 at 2023-09-02 + - reflex-dom-ace # failure in job https://hydra.nixos.org/build/233198338 at 2023-09-02 + - reflex-dom-contrib # failure in job https://hydra.nixos.org/build/233258949 at 2023-09-02 + - reflex-dom-fragment-shader-canvas # failure in job https://hydra.nixos.org/build/233202576 at 2023-09-02 + - reflex-dom-helpers # failure in job https://hydra.nixos.org/build/233239532 at 2023-09-02 + - reflex-dom-pandoc # failure in job https://hydra.nixos.org/build/233217895 at 2023-09-02 + - reflex-dom-retractable # failure in job https://hydra.nixos.org/build/233198362 at 2023-09-02 + - reflex-dom-svg # failure in job https://hydra.nixos.org/build/233193544 at 2023-09-02 + - reflex-external-ref # failure in job https://hydra.nixos.org/build/233215834 at 2023-09-02 + - reflex-gi-gtk # failure in job https://hydra.nixos.org/build/233213103 at 2023-09-02 + - reflex-jsx # failure in job https://hydra.nixos.org/build/233207137 at 2023-09-02 + - reflex-orphans # failure in job https://hydra.nixos.org/build/233249128 at 2023-09-02 + - reflex-sdl2 # failure in job https://hydra.nixos.org/build/233233947 at 2023-09-02 + - reflex-test-host # failure in job https://hydra.nixos.org/build/233220665 at 2023-09-02 + - reflex-transformers # failure in job https://hydra.nixos.org/build/233243647 at 2023-09-02 + - reflex-vty # failure in job https://hydra.nixos.org/build/233225875 at 2023-09-02 + - ref-mtl # failure in job https://hydra.nixos.org/build/233260152 at 2023-09-02 + - reformat # failure in job https://hydra.nixos.org/build/233212381 at 2023-09-02 + - reform-hamlet # failure in job https://hydra.nixos.org/build/233230013 at 2023-09-02 + - reform-hsp # failure in job https://hydra.nixos.org/build/233228737 at 2023-09-02 + - reform-lucid # failure in job https://hydra.nixos.org/build/233257636 at 2023-09-02 + - refresht # failure in job https://hydra.nixos.org/build/233245243 at 2023-09-02 + - refty # failure in job https://hydra.nixos.org/build/233215083 at 2023-09-02 + - reg-alloc # failure in job https://hydra.nixos.org/build/233195081 at 2023-09-02 + - regex-dfa # failure in job https://hydra.nixos.org/build/233242994 at 2023-09-02 + - regexdot # failure in job https://hydra.nixos.org/build/233217389 at 2023-09-02 + - regex-generator # failure in job https://hydra.nixos.org/build/233239502 at 2023-09-02 + - regex-parsec # failure in job https://hydra.nixos.org/build/233223781 at 2023-09-02 + - regex-posix-unittest # failure in job https://hydra.nixos.org/build/233249685 at 2023-09-02 + - regexpr-symbolic # failure in job https://hydra.nixos.org/build/233254451 at 2023-09-02 + - regexqq # failure in job https://hydra.nixos.org/build/233233149 at 2023-09-02 + - regex-tdfa-pipes # failure in job https://hydra.nixos.org/build/233247416 at 2023-09-02 + - regex-tdfa-quasiquoter # failure in job https://hydra.nixos.org/build/233234166 at 2023-09-02 + - regex-tdfa-rc # failure in job https://hydra.nixos.org/build/233206042 at 2023-09-02 + - regex-tdfa-text # failure in job https://hydra.nixos.org/build/233191686 at 2023-09-02 + - regex-tdfa-unittest # failure in job https://hydra.nixos.org/build/233241081 at 2023-09-02 + - regex-tdfa-utf8 # failure in job https://hydra.nixos.org/build/233211722 at 2023-09-02 + - regex-tre # failure in job https://hydra.nixos.org/build/233236303 at 2023-09-02 + - regex-type # failure in job https://hydra.nixos.org/build/233199739 at 2023-09-02 + - regions # failure in job https://hydra.nixos.org/build/233196483 at 2023-09-02 + - register-machine-typelevel # failure in job https://hydra.nixos.org/build/233217514 at 2023-09-02 + - registry # failure in job https://hydra.nixos.org/build/233235447 at 2023-09-02 + - regress # failure in job https://hydra.nixos.org/build/233208901 at 2023-09-02 + - regular # failure in job https://hydra.nixos.org/build/233232656 at 2023-09-02 + - rehoo # failure in job https://hydra.nixos.org/build/233246417 at 2023-09-02 + - rei # failure in job https://hydra.nixos.org/build/233221328 at 2023-09-02 + - reified-records # failure in job https://hydra.nixos.org/build/233220595 at 2023-09-02 + - reify # failure in job https://hydra.nixos.org/build/233247509 at 2023-09-02 + - relacion # failure in job https://hydra.nixos.org/build/233241624 at 2023-09-02 + - relation # failure in job https://hydra.nixos.org/build/233244581 at 2023-09-02 + - releaser # failure in job https://hydra.nixos.org/build/233239420 at 2023-09-02 + - relevant-time # failure in job https://hydra.nixos.org/build/233190794 at 2023-09-02 + - reload # failure in job https://hydra.nixos.org/build/233212925 at 2023-09-02 + - remark # failure in job https://hydra.nixos.org/build/233240981 at 2023-09-02 + - remarks # failure in job https://hydra.nixos.org/build/233256889 at 2023-09-02 + - remote-debugger # failure in job https://hydra.nixos.org/build/233199491 at 2023-09-02 + - remote # failure in job https://hydra.nixos.org/build/233220714 at 2023-09-02 + - remote-monad # failure in job https://hydra.nixos.org/build/233247733 at 2023-09-02 + - reorderable # failure in job https://hydra.nixos.org/build/233256477 at 2023-09-02 + - reorder-expression # failure in job https://hydra.nixos.org/build/233215573 at 2023-09-02 + - repa-eval # failure in job https://hydra.nixos.org/build/233259486 at 2023-09-02 + - repa # failure in job https://hydra.nixos.org/build/233219888 at 2023-09-02 + - repa-scalar # failure in job https://hydra.nixos.org/build/233213694 at 2023-09-02 + - repa-series # failure in job https://hydra.nixos.org/build/233200085 at 2023-09-02 + - ReplaceUmlaut # failure in job https://hydra.nixos.org/build/233228662 at 2023-09-02 + - repl # failure in job https://hydra.nixos.org/build/233233135 at 2023-09-02 + - RepLib # failure in job https://hydra.nixos.org/build/233210112 at 2023-09-02 + - replica # failure in job https://hydra.nixos.org/build/233214750 at 2023-09-02 + - ReplicateEffects # failure in job https://hydra.nixos.org/build/233233197 at 2023-09-02 + - repl-toolkit # failure in job https://hydra.nixos.org/build/233246536 at 2023-09-02 + - representable-functors # failure in job https://hydra.nixos.org/build/233252174 at 2023-09-02 + - reprinter # failure in job https://hydra.nixos.org/build/233232702 at 2023-09-02 + - reproject # failure in job https://hydra.nixos.org/build/233214934 at 2023-09-02 + - req-conduit # failure in job https://hydra.nixos.org/build/233248395 at 2023-09-02 + - request # failure in job https://hydra.nixos.org/build/233256702 at 2023-09-02 + - request-monad # failure in job https://hydra.nixos.org/build/233204896 at 2023-09-02 + - require # failure in job https://hydra.nixos.org/build/233203170 at 2023-09-02 + - req-url-extra # failure in job https://hydra.nixos.org/build/233198488 at 2023-09-02 + - rescue # failure in job https://hydra.nixos.org/build/233230073 at 2023-09-02 + - reservoir # failure in job https://hydra.nixos.org/build/233194430 at 2023-09-02 + - resolve # failure in job https://hydra.nixos.org/build/233224070 at 2023-09-02 + - resolve-trivial-conflicts # failure in job https://hydra.nixos.org/build/233237974 at 2023-09-02 + - resource-effect # failure in job https://hydra.nixos.org/build/233253816 at 2023-09-02 + - resource-embed # failure in job https://hydra.nixos.org/build/233209109 at 2023-09-02 + - resource-pool-monad # failure in job https://hydra.nixos.org/build/233204199 at 2023-09-02 + - resourcet-pool # failure in job https://hydra.nixos.org/build/233213894 at 2023-09-02 + - restartable # failure in job https://hydra.nixos.org/build/233220815 at 2023-09-02 + - restyle # failure in job https://hydra.nixos.org/build/233199043 at 2023-09-02 + - resumable-exceptions # failure in job https://hydra.nixos.org/build/233206560 at 2023-09-02 + - rethinkdb-client-driver # failure in job https://hydra.nixos.org/build/233216583 at 2023-09-02 + - rethinkdb # failure in job https://hydra.nixos.org/build/233211172 at 2023-09-02 + - retryer # failure in job https://hydra.nixos.org/build/233193427 at 2023-09-02 + - reverse-geocoding # failure in job https://hydra.nixos.org/build/233238347 at 2023-09-02 + - reverse-list # failure in job https://hydra.nixos.org/build/233192931 at 2023-09-02 + - reversi # failure in job https://hydra.nixos.org/build/233205170 at 2023-09-02 + - ReviewBoard # failure in job https://hydra.nixos.org/build/233217736 at 2023-09-02 + - rewrite-inspector # failure in job https://hydra.nixos.org/build/233243472 at 2023-09-02 + - rfc # failure in job https://hydra.nixos.org/build/233241988 at 2023-09-02 + - rfc-prelude # failure in job https://hydra.nixos.org/build/233227572 at 2023-09-02 + - rhbzquery # failure in job https://hydra.nixos.org/build/233259706 at 2023-09-02 + - rhine # failure in job https://hydra.nixos.org/build/233245503 at 2023-09-02 + - riak # failure in job https://hydra.nixos.org/build/233192622 at 2023-09-02 + - riak-protobuf-lens # failure in job https://hydra.nixos.org/build/233203142 at 2023-09-02 + - ribbit # failure in job https://hydra.nixos.org/build/233191000 at 2023-09-02 + - rib-core # failure in job https://hydra.nixos.org/build/233231659 at 2023-09-02 + - RichConditional # failure in job https://hydra.nixos.org/build/233218626 at 2023-09-02 + - riemann # failure in job https://hydra.nixos.org/build/233207899 at 2023-09-02 + - riff # failure in job https://hydra.nixos.org/build/233202602 at 2023-09-02 + - rigel-viz # failure in job https://hydra.nixos.org/build/233251060 at 2023-09-02 + - ring-buffer # failure in job https://hydra.nixos.org/build/233245453 at 2023-09-02 + - ring-buffers # failure in job https://hydra.nixos.org/build/233259860 at 2023-09-02 + - riscv-isa # failure in job https://hydra.nixos.org/build/233192811 at 2023-09-02 + - rison # failure in job https://hydra.nixos.org/build/233231694 at 2023-09-02 + - Ritt-Wu # failure in job https://hydra.nixos.org/build/233221182 at 2023-09-02 + - rivers # failure in job https://hydra.nixos.org/build/233225238 at 2023-09-02 + - rivet-migration # failure in job https://hydra.nixos.org/build/233191937 at 2023-09-02 + - rivet-simple-deploy # failure in job https://hydra.nixos.org/build/233229780 at 2023-09-02 + - rle # failure in job https://hydra.nixos.org/build/233238229 at 2023-09-02 + - rlglue # failure in job https://hydra.nixos.org/build/233222786 at 2023-09-02 + - RLP # failure in job https://hydra.nixos.org/build/233222770 at 2023-09-02 + - rl-satton # failure in job https://hydra.nixos.org/build/233256608 at 2023-09-02 + - robin # failure in job https://hydra.nixos.org/build/233205010 at 2023-09-02 + - robots-txt # failure in job https://hydra.nixos.org/build/233243090 at 2023-09-02 + - roc-cluster # failure in job https://hydra.nixos.org/build/233202517 at 2023-09-02 + - roguestar # failure in job https://hydra.nixos.org/build/233233677 at 2023-09-02 + - roku-api # failure in job https://hydra.nixos.org/build/233249158 at 2023-09-02 + - rollbar-client # failure in job https://hydra.nixos.org/build/233241484 at 2023-09-02 + - rollbar-hs # failure in job https://hydra.nixos.org/build/233240182 at 2023-09-02 + - roller # failure in job https://hydra.nixos.org/build/233198848 at 2023-09-02 + - roman-numerals # failure in job https://hydra.nixos.org/build/233214716 at 2023-09-02 + - ron # failure in job https://hydra.nixos.org/build/233197052 at 2023-09-02 + - rope # failure in job https://hydra.nixos.org/build/233198109 at 2023-09-02 + - rosebud # failure in job https://hydra.nixos.org/build/233225772 at 2023-09-02 + - rosmsg # failure in job https://hydra.nixos.org/build/233248569 at 2023-09-02 + - rospkg # failure in job https://hydra.nixos.org/build/233229989 at 2023-09-02 + - rosso # failure in job https://hydra.nixos.org/build/233230103 at 2023-09-02 + - rotating-log # failure in job https://hydra.nixos.org/build/233206245 at 2023-09-02 + - rounding # failure in job https://hydra.nixos.org/build/233234537 at 2023-09-02 + - roundtrip-aeson # failure in job https://hydra.nixos.org/build/233253408 at 2023-09-02 + - rowrecord # failure in job https://hydra.nixos.org/build/233208964 at 2023-09-02 + - R-pandoc # failure in job https://hydra.nixos.org/build/233192114 at 2023-09-02 + - rpc-framework # failure in job https://hydra.nixos.org/build/233202964 at 2023-09-02 + - rpmbuild-order # failure in job https://hydra.nixos.org/build/233257209 at 2023-09-02 + - rpm # failure in job https://hydra.nixos.org/build/233194513 at 2023-09-02 + - rpmostree-update # failure in job https://hydra.nixos.org/build/233254709 at 2023-09-02 + - rrule # failure in job https://hydra.nixos.org/build/233259470 at 2023-09-02 + - rspp # failure in job https://hydra.nixos.org/build/233236691 at 2023-09-02 + - rss2irc # failure in job https://hydra.nixos.org/build/233196081 at 2023-09-02 + - rstream # failure in job https://hydra.nixos.org/build/233249587 at 2023-09-02 + - RtMidi # failure in job https://hydra.nixos.org/build/233241377 at 2023-09-02 + - rtnetlink # failure in job https://hydra.nixos.org/build/233198783 at 2023-09-02 + - rtorrent-rpc # failure in job https://hydra.nixos.org/build/233202187 at 2023-09-02 + - rtorrent-state # failure in job https://hydra.nixos.org/build/233216983 at 2023-09-02 + - rts-loader # failure in job https://hydra.nixos.org/build/233226464 at 2023-09-02 + - rubberband # failure in job https://hydra.nixos.org/build/233191496 at 2023-09-02 + - ruby-marshal # failure in job https://hydra.nixos.org/build/233242569 at 2023-09-02 + - ruby-qq # failure in job https://hydra.nixos.org/build/233259084 at 2023-09-02 + - ruff # failure in job https://hydra.nixos.org/build/233200285 at 2023-09-02 + - ruin # failure in job https://hydra.nixos.org/build/233247866 at 2023-09-02 + - runhs # failure in job https://hydra.nixos.org/build/233193983 at 2023-09-02 + - runmany # failure in job https://hydra.nixos.org/build/233241476 at 2023-09-02 + - runtime-instances # failure in job https://hydra.nixos.org/build/233217985 at 2023-09-02 + - rustls # failure in job https://hydra.nixos.org/build/233249545 at 2023-09-02 + - rws # failure in job https://hydra.nixos.org/build/233237887 at 2023-09-02 + - RxHaskell # failure in job https://hydra.nixos.org/build/233248784 at 2023-09-02 + - rz-pipe # failure in job https://hydra.nixos.org/build/233228273 at 2023-09-02 + - SableCC2Hs # failure in job https://hydra.nixos.org/build/233213351 at 2023-09-02 + - safe-buffer-monad # failure in job https://hydra.nixos.org/build/233192108 at 2023-09-02 + - safe-coerce # failure in job https://hydra.nixos.org/build/233244289 at 2023-09-02 + - safe-coloured-text-gen # failure in job https://hydra.nixos.org/build/233225146 at 2023-09-02 + - safe-coloured-text-layout # failure in job https://hydra.nixos.org/build/233247031 at 2023-09-02 + - safecopy-migrate # failure in job https://hydra.nixos.org/build/233224574 at 2023-09-02 + - safecopy-store # failure in job https://hydra.nixos.org/build/233227973 at 2023-09-02 + - safe-freeze # failure in job https://hydra.nixos.org/build/233230451 at 2023-09-02 + - safe-globals # failure in job https://hydra.nixos.org/build/233201910 at 2023-09-02 + - safeint # failure in job https://hydra.nixos.org/build/233257369 at 2023-09-02 + - safeio # failure in job https://hydra.nixos.org/build/233219890 at 2023-09-02 + - safe-lazy-io # failure in job https://hydra.nixos.org/build/233236485 at 2023-09-02 + - safe-length # failure in job https://hydra.nixos.org/build/233255904 at 2023-09-02 + - safe-money-xmlbf # failure in job https://hydra.nixos.org/build/233254139 at 2023-09-02 + - safepath # failure in job https://hydra.nixos.org/build/233235468 at 2023-09-02 + - safe-printf # failure in job https://hydra.nixos.org/build/233232731 at 2023-09-02 + - saferoute # failure in job https://hydra.nixos.org/build/233254085 at 2023-09-02 + - safe-tensor # failure in job https://hydra.nixos.org/build/233212430 at 2023-09-02 + - safe-wild-cards # failure in job https://hydra.nixos.org/build/233217160 at 2023-09-02 + - sajson # failure in job https://hydra.nixos.org/build/233197310 at 2023-09-02 + - sakuraio-platform # failure in job https://hydra.nixos.org/build/233198228 at 2023-09-02 + - salak # failure in job https://hydra.nixos.org/build/233236898 at 2023-09-02 + - Salsa # failure in job https://hydra.nixos.org/build/233257551 at 2023-09-02 + - salvia-protocol # failure in job https://hydra.nixos.org/build/233220788 at 2023-09-02 + - sandlib # failure in job https://hydra.nixos.org/build/233249740 at 2023-09-02 + - sandman # failure in job https://hydra.nixos.org/build/233209667 at 2023-09-02 + - sarasvati # failure in job https://hydra.nixos.org/build/233208235 at 2023-09-02 + - satchmo-backends # failure in job https://hydra.nixos.org/build/233228506 at 2023-09-02 + - satchmo-minisat # failure in job https://hydra.nixos.org/build/233229585 at 2023-09-02 + - sat # failure in job https://hydra.nixos.org/build/233225713 at 2023-09-02 + - Saturnin # failure in job https://hydra.nixos.org/build/233227938 at 2023-09-02 + - satyros # failure in job https://hydra.nixos.org/build/233199726 at 2023-09-02 + - savage # failure in job https://hydra.nixos.org/build/233213243 at 2023-09-02 + - sax # failure in job https://hydra.nixos.org/build/233218617 at 2023-09-02 + - sbv # failure in job https://hydra.nixos.org/build/233210414 at 2023-09-02 + - scale # failure in job https://hydra.nixos.org/build/233222189 at 2023-09-02 + - scaleimage # failure in job https://hydra.nixos.org/build/233240688 at 2023-09-02 + - scalendar # failure in job https://hydra.nixos.org/build/233206581 at 2023-09-02 + - scat # failure in job https://hydra.nixos.org/build/233199202 at 2023-09-02 + - scc # failure in job https://hydra.nixos.org/build/233247446 at 2023-09-02 + - scgi # failure in job https://hydra.nixos.org/build/233247314 at 2023-09-02 + - schedevr # failure in job https://hydra.nixos.org/build/233240124 at 2023-09-02 + - schedule-planner # failure in job https://hydra.nixos.org/build/233192691 at 2023-09-02 + - schedyield # failure in job https://hydra.nixos.org/build/233213288 at 2023-09-02 + - schemas # failure in job https://hydra.nixos.org/build/233225239 at 2023-09-02 + - scholdoc-types # failure in job https://hydra.nixos.org/build/233194927 at 2023-09-02 + - scidb-hquery # failure in job https://hydra.nixos.org/build/233257053 at 2023-09-02 + - sci-ratio # failure in job https://hydra.nixos.org/build/233258475 at 2023-09-02 + - scons2dot # failure in job https://hydra.nixos.org/build/233204528 at 2023-09-02 + - scottish # failure in job https://hydra.nixos.org/build/233251021 at 2023-09-02 + - scotty-binding-play # failure in job https://hydra.nixos.org/build/233244465 at 2023-09-02 + - scotty-blaze # failure in job https://hydra.nixos.org/build/233190960 at 2023-09-02 + - scotty-format # failure in job https://hydra.nixos.org/build/233249643 at 2023-09-02 + - scotty-resource # failure in job https://hydra.nixos.org/build/233258457 at 2023-09-02 + - scotty-rest # failure in job https://hydra.nixos.org/build/233209040 at 2023-09-02 + - scotty-session # failure in job https://hydra.nixos.org/build/233258736 at 2023-09-02 + - scotty-tls # failure in job https://hydra.nixos.org/build/233250916 at 2023-09-02 + - scotty-view # failure in job https://hydra.nixos.org/build/233245343 at 2023-09-02 + - scrapbook-core # failure in job https://hydra.nixos.org/build/233222406 at 2023-09-02 + - scrape-changes # failure in job https://hydra.nixos.org/build/233225890 at 2023-09-02 + - ScratchFs # failure in job https://hydra.nixos.org/build/233257558 at 2023-09-02 + - script-monad # failure in job https://hydra.nixos.org/build/233221600 at 2023-09-02 + - scrobble # failure in job https://hydra.nixos.org/build/233252277 at 2023-09-02 + - scroll-list # failure in job https://hydra.nixos.org/build/233217737 at 2023-09-02 + - scrz # failure in job https://hydra.nixos.org/build/233230705 at 2023-09-02 + - scythe # failure in job https://hydra.nixos.org/build/233259400 at 2023-09-02 + - scyther-proof # failure in job https://hydra.nixos.org/build/233248937 at 2023-09-02 + - sde-solver # failure in job https://hydra.nixos.org/build/233251017 at 2023-09-02 + - sdl2-cairo-image # failure in job https://hydra.nixos.org/build/233210135 at 2023-09-02 + - sdl2-compositor # failure in job https://hydra.nixos.org/build/233198910 at 2023-09-02 + - sdl2-fps # failure in job https://hydra.nixos.org/build/233195346 at 2023-09-02 + - sdl2-gfx # failure in job https://hydra.nixos.org/build/233236795 at 2023-09-02 + - sdl2-image # failure in job https://hydra.nixos.org/build/233216837 at 2023-09-02 + - sdl2-mixer # failure in job https://hydra.nixos.org/build/233228951 at 2023-09-02 + - sdl2-ttf # failure in job https://hydra.nixos.org/build/233238600 at 2023-09-02 + - sdp # failure in job https://hydra.nixos.org/build/233246702 at 2023-09-02 + - seacat # failure in job https://hydra.nixos.org/build/233229959 at 2023-09-02 + - seakale # failure in job https://hydra.nixos.org/build/233236200 at 2023-09-02 + - secdh # failure in job https://hydra.nixos.org/build/233244391 at 2023-09-02 + - sec # failure in job https://hydra.nixos.org/build/233233150 at 2023-09-02 + - seclib # failure in job https://hydra.nixos.org/build/233203235 at 2023-09-02 + - second-transfer # failure in job https://hydra.nixos.org/build/233214725 at 2023-09-02 + - secp256k1 # failure in job https://hydra.nixos.org/build/233231129 at 2023-09-02 + - secp256k1-legacy # failure in job https://hydra.nixos.org/build/233197038 at 2023-09-02 + - secret-santa # failure in job https://hydra.nixos.org/build/233208686 at 2023-09-02 + - SecureHash-SHA3 # failure in job https://hydra.nixos.org/build/233216866 at 2023-09-02 + - secure-memory # failure in job https://hydra.nixos.org/build/233226568 at 2023-09-02 + - secure-sockets # failure in job https://hydra.nixos.org/build/233254170 at 2023-09-02 + - secureUDP # failure in job https://hydra.nixos.org/build/233215410 at 2023-09-02 + - SegmentTree # failure in job https://hydra.nixos.org/build/233216161 at 2023-09-02 + - selda # failure in job https://hydra.nixos.org/build/233234757 at 2023-09-02 + - selectors # failure in job https://hydra.nixos.org/build/233227433 at 2023-09-02 + - selenium # failure in job https://hydra.nixos.org/build/233214276 at 2023-09-02 + - selinux # failure in job https://hydra.nixos.org/build/233192853 at 2023-09-02 + - Semantique # failure in job https://hydra.nixos.org/build/233199841 at 2023-09-02 + - semaphore-compat # failure in job https://hydra.nixos.org/build/233225619 at 2023-09-02 + - semdoc # failure in job https://hydra.nixos.org/build/233258790 at 2023-09-02 + - semialign-indexed # failure in job https://hydra.nixos.org/build/233210150 at 2023-09-02 + - semialign-optics # failure in job https://hydra.nixos.org/build/233229100 at 2023-09-02 + - semibounded-lattices # failure in job https://hydra.nixos.org/build/233195267 at 2023-09-02 + - Semigroup # failure in job https://hydra.nixos.org/build/233201793 at 2023-09-02 + - semigroupoids-syntax # failure in job https://hydra.nixos.org/build/233213850 at 2023-09-02 + - semigroups-actions # failure in job https://hydra.nixos.org/build/233216317 at 2023-09-02 + - semilattices # failure in job https://hydra.nixos.org/build/233223765 at 2023-09-02 + - sendgrid-haskell # failure in job https://hydra.nixos.org/build/233228693 at 2023-09-02 + - sendgrid-v3 # failure in job https://hydra.nixos.org/build/233224134 at 2023-09-02 + - sensu-run # failure in job https://hydra.nixos.org/build/233251719 at 2023-09-02 + - sentry # failure in job https://hydra.nixos.org/build/233246813 at 2023-09-02 + - seonbi # failure in job https://hydra.nixos.org/build/233196115 at 2023-09-02 + - separated # failure in job https://hydra.nixos.org/build/233222642 at 2023-09-02 + - SeqAlign # failure in job https://hydra.nixos.org/build/233214595 at 2023-09-02 + - sequent-core # failure in job https://hydra.nixos.org/build/233202838 at 2023-09-02 + - sequential-index # failure in job https://hydra.nixos.org/build/233228686 at 2023-09-02 + - serf # failure in job https://hydra.nixos.org/build/233251981 at 2023-09-02 + - serialize-instances # failure in job https://hydra.nixos.org/build/233239330 at 2023-09-02 + - serialport # failure in job https://hydra.nixos.org/build/233201348 at 2023-09-02 + - serokell-util # failure in job https://hydra.nixos.org/build/233209952 at 2023-09-02 + - servant-aeson-specs # failure in job https://hydra.nixos.org/build/233202245 at 2023-09-02 + - servant-auth-cookie # failure in job https://hydra.nixos.org/build/233235829 at 2023-09-02 + - servant-auth-server # failure in job https://hydra.nixos.org/build/233208742 at 2023-09-02 + - servant-avro # failure in job https://hydra.nixos.org/build/233225632 at 2023-09-02 + - servant-benchmark # failure in job https://hydra.nixos.org/build/233203748 at 2023-09-02 + - servant-client-js # failure in job https://hydra.nixos.org/build/233194725 at 2023-09-02 + - servant-cli # failure in job https://hydra.nixos.org/build/233259212 at 2023-09-02 + - servant-combinators # failure in job https://hydra.nixos.org/build/233249924 at 2023-09-02 + - servant-db # failure in job https://hydra.nixos.org/build/233234946 at 2023-09-02 + - servant-dhall # failure in job https://hydra.nixos.org/build/233201199 at 2023-09-02 + - servant-docs-simple # failure in job https://hydra.nixos.org/build/233237374 at 2023-09-02 + - servant-errors # failure in job https://hydra.nixos.org/build/233239712 at 2023-09-02 + - servant-event-stream # failure in job https://hydra.nixos.org/build/233598042 at 2023-09-02 + - servant-gdp # failure in job https://hydra.nixos.org/build/233191664 at 2023-09-02 + - servant-generate # failure in job https://hydra.nixos.org/build/233199452 at 2023-09-02 + - servant-generic # failure in job https://hydra.nixos.org/build/233211338 at 2023-09-02 + - servant-github # failure in job https://hydra.nixos.org/build/233231566 at 2023-09-02 + - servant-github-webhook # failure in job https://hydra.nixos.org/build/233234237 at 2023-09-02 + - servant-htmx # failure in job https://hydra.nixos.org/build/233214786 at 2023-09-02 + - servant-http-streams # failure in job https://hydra.nixos.org/build/233242852 at 2023-09-02 + - servant-iCalendar # failure in job https://hydra.nixos.org/build/233200493 at 2023-09-02 + - servant-jquery # failure in job https://hydra.nixos.org/build/233238796 at 2023-09-02 + - servant-JuicyPixels # failure in job https://hydra.nixos.org/build/233222224 at 2023-09-02 + - servant-kotlin # failure in job https://hydra.nixos.org/build/233598190 at 2023-09-02 + - servant-namedargs # failure in job https://hydra.nixos.org/build/233258674 at 2023-09-02 + - servant-nix # failure in job https://hydra.nixos.org/build/233236159 at 2023-09-02 + - servant-pandoc # failure in job https://hydra.nixos.org/build/233203008 at 2023-09-02 + - servant-polysemy # failure in job https://hydra.nixos.org/build/233218670 at 2023-09-02 + - servant-pool # failure in job https://hydra.nixos.org/build/233208935 at 2023-09-02 + - servant-purescript # failure in job https://hydra.nixos.org/build/233598080 at 2023-09-02 + - servant-py # failure in job https://hydra.nixos.org/build/233598104 at 2023-09-02 + - servant-quickcheck # failure in job https://hydra.nixos.org/build/233236741 at 2023-09-02 + - servant-reflex # failure in job https://hydra.nixos.org/build/233212870 at 2023-09-02 + - servant-router # failure in job https://hydra.nixos.org/build/233246333 at 2023-09-02 + - servant-ruby # failure in job https://hydra.nixos.org/build/233598144 at 2023-09-02 + - servant-scotty # failure in job https://hydra.nixos.org/build/233248472 at 2023-09-02 + - servant-seo # failure in job https://hydra.nixos.org/build/233259245 at 2023-09-02 + - servant-smsc-ru # failure in job https://hydra.nixos.org/build/233239620 at 2023-09-02 + - servant-stache # failure in job https://hydra.nixos.org/build/233204547 at 2023-09-02 + - servant-static-th # failure in job https://hydra.nixos.org/build/233191735 at 2023-09-02 + - servant-streaming # failure in job https://hydra.nixos.org/build/233215168 at 2023-09-02 + - servant-streamly # failure in job https://hydra.nixos.org/build/233231404 at 2023-09-02 + - servant-tracing # failure in job https://hydra.nixos.org/build/233229308 at 2023-09-02 + - servant-wasm # failure in job https://hydra.nixos.org/build/233191644 at 2023-09-02 + - servant-yaml # failure in job https://hydra.nixos.org/build/233260010 at 2023-09-02 + - servant-zeppelin # failure in job https://hydra.nixos.org/build/233230172 at 2023-09-02 + - server-generic # failure in job https://hydra.nixos.org/build/233194042 at 2023-09-02 + - serverless-haskell # failure in job https://hydra.nixos.org/build/233201987 at 2023-09-02 + - serversession-backend-acid-state # failure in job https://hydra.nixos.org/build/233202796 at 2023-09-02 + - serversession-backend-persistent # failure in job https://hydra.nixos.org/build/233239242 at 2023-09-02 + - services # failure in job https://hydra.nixos.org/build/233249029 at 2023-09-02 + - serviette # failure in job https://hydra.nixos.org/build/233226968 at 2023-09-02 + - SessionLogger # failure in job https://hydra.nixos.org/build/233235790 at 2023-09-02 + - sessions # failure in job https://hydra.nixos.org/build/233214614 at 2023-09-02 + - sessiontypes # failure in job https://hydra.nixos.org/build/233224975 at 2023-09-02 + - setgame # failure in job https://hydra.nixos.org/build/233218664 at 2023-09-02 + - set-of # failure in job https://hydra.nixos.org/build/233202960 at 2023-09-02 + - setoid # failure in job https://hydra.nixos.org/build/233213744 at 2023-09-02 + - setters # failure in job https://hydra.nixos.org/build/233199079 at 2023-09-02 + - set-with # failure in job https://hydra.nixos.org/build/233209870 at 2023-09-02 + - sexp # failure in job https://hydra.nixos.org/build/233214197 at 2023-09-02 + - sexpr-parser # failure in job https://hydra.nixos.org/build/233208359 at 2023-09-02 + - sext # failure in job https://hydra.nixos.org/build/233245441 at 2023-09-02 + - sfml-audio # failure in job https://hydra.nixos.org/build/233253560 at 2023-09-02 + - SFML # failure in job https://hydra.nixos.org/build/233244892 at 2023-09-02 + - sfmt # failure in job https://hydra.nixos.org/build/233260124 at 2023-09-02 + - sgd # failure in job https://hydra.nixos.org/build/233240302 at 2023-09-02 + - SG # failure in job https://hydra.nixos.org/build/233228780 at 2023-09-02 + - SGplus # failure in job https://hydra.nixos.org/build/233227890 at 2023-09-02 + - sh2md # failure in job https://hydra.nixos.org/build/233254149 at 2023-09-02 + - shade # failure in job https://hydra.nixos.org/build/233227940 at 2023-09-02 + - shadower # failure in job https://hydra.nixos.org/build/233224166 at 2023-09-02 + - shake-cabal-build # failure in job https://hydra.nixos.org/build/233192322 at 2023-09-02 + - shake-dhall # failure in job https://hydra.nixos.org/build/233246191 at 2023-09-02 + - shake-extras # failure in job https://hydra.nixos.org/build/233192079 at 2023-09-02 + - shake-minify # failure in job https://hydra.nixos.org/build/233251572 at 2023-09-02 + - shake-pack # failure in job https://hydra.nixos.org/build/233195211 at 2023-09-02 + - shake-path # failure in job https://hydra.nixos.org/build/233247617 at 2023-09-02 + - shake-persist # failure in job https://hydra.nixos.org/build/233228771 at 2023-09-02 + - shakespeare-babel # failure in job https://hydra.nixos.org/build/233252003 at 2023-09-02 + - shakespeare-sass # failure in job https://hydra.nixos.org/build/233195432 at 2023-09-02 + - shared-buffer # failure in job https://hydra.nixos.org/build/233242275 at 2023-09-02 + - shared-fields # failure in job https://hydra.nixos.org/build/233228500 at 2023-09-02 + - sha-streams # failure in job https://hydra.nixos.org/build/233257983 at 2023-09-02 + - she # failure in job https://hydra.nixos.org/build/233214251 at 2023-09-02 + - Shellac # failure in job https://hydra.nixos.org/build/233214058 at 2023-09-02 + - shellish # failure in job https://hydra.nixos.org/build/233217316 at 2023-09-02 + - shellmate # failure in job https://hydra.nixos.org/build/233217636 at 2023-09-02 + - shell-pipe # failure in job https://hydra.nixos.org/build/233226605 at 2023-09-02 + - shikensu # failure in job https://hydra.nixos.org/build/233230883 at 2023-09-02 + - shimmer # failure in job https://hydra.nixos.org/build/233192737 at 2023-09-02 + - shine-examples # failure in job https://hydra.nixos.org/build/233192871 at 2023-09-02 + - shivers-cfg # failure in job https://hydra.nixos.org/build/233218516 at 2023-09-02 + - shoap # failure in job https://hydra.nixos.org/build/233207909 at 2023-09-02 + - shopify # failure in job https://hydra.nixos.org/build/233221330 at 2023-09-02 + - shortbytestring # failure in job https://hydra.nixos.org/build/233216026 at 2023-09-02 + - shortcut-links # failure in job https://hydra.nixos.org/build/233217442 at 2023-09-02 + - shorten-strings # failure in job https://hydra.nixos.org/build/233247947 at 2023-09-02 + - show-prettyprint # failure in job https://hydra.nixos.org/build/233213552 at 2023-09-02 + - show-type # failure in job https://hydra.nixos.org/build/233225756 at 2023-09-02 + - Shpadoinkle-console # failure in job https://hydra.nixos.org/build/233228559 at 2023-09-02 + - Shpadoinkle-debug # failure in job https://hydra.nixos.org/build/233194479 at 2023-09-02 + - Shpadoinkle-isreal # failure in job https://hydra.nixos.org/build/233200051 at 2023-09-02 + - shwifty # failure in job https://hydra.nixos.org/build/233249022 at 2023-09-02 + - sifflet # failure in job https://hydra.nixos.org/build/233210515 at 2023-09-02 + - sifflet-lib # failure in job https://hydra.nixos.org/build/233222675 at 2023-09-02 + - sigmacord # failure in job https://hydra.nixos.org/build/233194491 at 2023-09-02 + - simd # failure in job https://hydra.nixos.org/build/233206642 at 2023-09-02 + - simfin # failure in job https://hydra.nixos.org/build/233226776 at 2023-09-02 + - simple-actors # failure in job https://hydra.nixos.org/build/233239183 at 2023-09-02 + - simpleargs # failure in job https://hydra.nixos.org/build/233202182 at 2023-09-02 + - simple-atom # failure in job https://hydra.nixos.org/build/233226957 at 2023-09-02 + - simple-bluetooth # failure in job https://hydra.nixos.org/build/233199623 at 2023-09-02 + - simple-conduit # failure in job https://hydra.nixos.org/build/233214502 at 2023-09-02 + - simpleconfig # failure in job https://hydra.nixos.org/build/233195905 at 2023-09-02 + - simple-config # failure in job https://hydra.nixos.org/build/233258957 at 2023-09-02 + - simple-css # failure in job https://hydra.nixos.org/build/233244675 at 2023-09-02 + - simple-download # failure in job https://hydra.nixos.org/build/233227569 at 2023-09-02 + - simple-effects # failure in job https://hydra.nixos.org/build/233246128 at 2023-09-02 + - simple-eval # failure in job https://hydra.nixos.org/build/233227793 at 2023-09-02 + - simple-form # failure in job https://hydra.nixos.org/build/233243669 at 2023-09-02 + - simple-genetic-algorithm # failure in job https://hydra.nixos.org/build/233200097 at 2023-09-02 + - SimpleH # failure in job https://hydra.nixos.org/build/233212326 at 2023-09-02 + - simple-index # failure in job https://hydra.nixos.org/build/233208598 at 2023-09-02 + - simpleirc # failure in job https://hydra.nixos.org/build/233211073 at 2023-09-02 + - simple-log # failure in job https://hydra.nixos.org/build/233253013 at 2023-09-02 + - simple-media-timestamp-formatting # failure in job https://hydra.nixos.org/build/233228535 at 2023-09-02 + - simple-money # failure in job https://hydra.nixos.org/build/233240744 at 2023-09-02 + - simple-neural-networks # failure in job https://hydra.nixos.org/build/233226975 at 2023-09-02 + - simplenote # failure in job https://hydra.nixos.org/build/233225953 at 2023-09-02 + - simple-parser # failure in job https://hydra.nixos.org/build/233218275 at 2023-09-02 + - simple-pipe # failure in job https://hydra.nixos.org/build/233251483 at 2023-09-02 + - simpleprelude # failure in job https://hydra.nixos.org/build/233259585 at 2023-09-02 + - simple-rope # failure in job https://hydra.nixos.org/build/233239446 at 2023-09-02 + - simple-server # failure in job https://hydra.nixos.org/build/233242498 at 2023-09-02 + - simplesmtpclient # failure in job https://hydra.nixos.org/build/233235261 at 2023-09-02 + - simple-sql-parser # failure in job https://hydra.nixos.org/build/233203075 at 2023-09-02 + - simple-stacked-vm # failure in job https://hydra.nixos.org/build/233206051 at 2023-09-02 + - simplest-sqlite # failure in job https://hydra.nixos.org/build/233248487 at 2023-09-02 + - simple-tabular # failure in job https://hydra.nixos.org/build/233233368 at 2023-09-02 + - simple-tar # failure in job https://hydra.nixos.org/build/233206675 at 2023-09-02 + - simple-ui # failure in job https://hydra.nixos.org/build/233248287 at 2023-09-02 + - simple-units # failure in job https://hydra.nixos.org/build/233215127 at 2023-09-02 + - simplexmq # failure in job https://hydra.nixos.org/build/233223717 at 2023-09-02 + - simple-zipper # failure in job https://hydra.nixos.org/build/233210316 at 2023-09-02 + - simplistic-generics # failure in job https://hydra.nixos.org/build/233217412 at 2023-09-02 + - singlethongs # failure in job https://hydra.nixos.org/build/233202756 at 2023-09-02 + - singleton-dict # failure in job https://hydra.nixos.org/build/233245405 at 2023-09-02 + - singleton-typelits # failure in job https://hydra.nixos.org/build/233250877 at 2023-09-02 + - single-tuple # failure in job https://hydra.nixos.org/build/233204418 at 2023-09-02 + - singnal # failure in job https://hydra.nixos.org/build/233214111 at 2023-09-02 + - singular-factory # failure in job https://hydra.nixos.org/build/233250779 at 2023-09-02 + - sink # failure in job https://hydra.nixos.org/build/233240005 at 2023-09-02 + - sint # failure in job https://hydra.nixos.org/build/233238431 at 2023-09-02 + - siphash # failure in job https://hydra.nixos.org/build/233199344 at 2023-09-02 + - sitepipe # failure in job https://hydra.nixos.org/build/233201989 at 2023-09-02 + - sixfiguregroup # failure in job https://hydra.nixos.org/build/233252141 at 2023-09-02 + - sized-grid # failure in job https://hydra.nixos.org/build/233239056 at 2023-09-02 + - sized-types # failure in job https://hydra.nixos.org/build/233244977 at 2023-09-02 + - sized-vector # failure in job https://hydra.nixos.org/build/233227779 at 2023-09-02 + - sizes # failure in job https://hydra.nixos.org/build/233247070 at 2023-09-02 + - sjsp # failure in job https://hydra.nixos.org/build/233225141 at 2023-09-02 + - SJW # failure in job https://hydra.nixos.org/build/233209689 at 2023-09-02 + - skeletal-set # failure in job https://hydra.nixos.org/build/233254711 at 2023-09-02 + - skell # failure in job https://hydra.nixos.org/build/233245484 at 2023-09-02 + - skemmtun # failure in job https://hydra.nixos.org/build/233223893 at 2023-09-02 + - skopedate # failure in job https://hydra.nixos.org/build/233220634 at 2023-09-02 + - skulk # failure in job https://hydra.nixos.org/build/233258672 at 2023-09-02 + - skylighting-extensions # failure in job https://hydra.nixos.org/build/233221387 at 2023-09-02 + - skype4hs # failure in job https://hydra.nixos.org/build/233221058 at 2023-09-02 + - slack-api # failure in job https://hydra.nixos.org/build/233215701 at 2023-09-02 + - slack # failure in job https://hydra.nixos.org/build/233221065 at 2023-09-02 + - slack-notify-haskell # failure in job https://hydra.nixos.org/build/233249025 at 2023-09-02 + - slack-verify # failure in job https://hydra.nixos.org/build/233206026 at 2023-09-02 + - sliceofpy # failure in job https://hydra.nixos.org/build/233224418 at 2023-09-02 + - slidemews # failure in job https://hydra.nixos.org/build/233205910 at 2023-09-02 + - Slides # failure in job https://hydra.nixos.org/build/233201684 at 2023-09-02 + - slim # failure in job https://hydra.nixos.org/build/233211282 at 2023-09-02 + - sloane # failure in job https://hydra.nixos.org/build/233235255 at 2023-09-02 + - sloth # failure in job https://hydra.nixos.org/build/233203718 at 2023-09-02 + - slot-lambda # failure in job https://hydra.nixos.org/build/233252290 at 2023-09-02 + - slug # failure in job https://hydra.nixos.org/build/233259687 at 2023-09-02 + - slugify # failure in job https://hydra.nixos.org/build/233222023 at 2023-09-02 + - smallarray # failure in job https://hydra.nixos.org/build/233256816 at 2023-09-02 + - small-bytearray-builder # failure in job https://hydra.nixos.org/build/233248483 at 2023-09-02 + - smallcaps # failure in job https://hydra.nixos.org/build/233201384 at 2023-09-02 + - smallcheck-kind-generics # failure in job https://hydra.nixos.org/build/233230424 at 2023-09-02 + - smallcheck-series # failure in job https://hydra.nixos.org/build/233213618 at 2023-09-02 + - smallpt-hs # failure in job https://hydra.nixos.org/build/233250553 at 2023-09-02 + - smap # failure in job https://hydra.nixos.org/build/233208052 at 2023-09-02 + - smartcheck # failure in job https://hydra.nixos.org/build/233241864 at 2023-09-02 + - smartconstructor # failure in job https://hydra.nixos.org/build/233256663 at 2023-09-02 + - smartGroup # failure in job https://hydra.nixos.org/build/233200155 at 2023-09-02 + - smash # failure in job https://hydra.nixos.org/build/233191239 at 2023-09-02 + - smawk # failure in job https://hydra.nixos.org/build/233258699 at 2023-09-02 + - sme # failure in job https://hydra.nixos.org/build/233208306 at 2023-09-02 + - smerdyakov # failure in job https://hydra.nixos.org/build/233238735 at 2023-09-02 + - smiles # failure in job https://hydra.nixos.org/build/233197831 at 2023-09-02 + - SmithNormalForm # failure in job https://hydra.nixos.org/build/233253620 at 2023-09-02 + - smoothie # failure in job https://hydra.nixos.org/build/233250042 at 2023-09-02 + - smsaero # failure in job https://hydra.nixos.org/build/233215880 at 2023-09-02 + - smtlib2 # failure in job https://hydra.nixos.org/build/233251831 at 2023-09-02 + - smtlib-backends-process # failure in job https://hydra.nixos.org/build/233209223 at 2023-09-02 + - smt-lib # failure in job https://hydra.nixos.org/build/233208443 at 2023-09-02 + - SmtLib # failure in job https://hydra.nixos.org/build/233213271 at 2023-09-02 + - SMTPClient # failure in job https://hydra.nixos.org/build/233247599 at 2023-09-02 + - smtp-mail-ng # failure in job https://hydra.nixos.org/build/233220094 at 2023-09-02 + - smtps-gmail # failure in job https://hydra.nixos.org/build/233191933 at 2023-09-02 + - smuggler2 # failure in job https://hydra.nixos.org/build/233233932 at 2023-09-02 + - smuggler # failure in job https://hydra.nixos.org/build/233199288 at 2023-09-02 + - snake # failure in job https://hydra.nixos.org/build/233242029 at 2023-09-02 + - snap-accept # failure in job https://hydra.nixos.org/build/233254776 at 2023-09-02 + - snap-blaze-clay # failure in job https://hydra.nixos.org/build/233204686 at 2023-09-02 + - snap-configuration-utilities # failure in job https://hydra.nixos.org/build/233202496 at 2023-09-02 + - snap-language # failure in job https://hydra.nixos.org/build/233257003 at 2023-09-02 + - snap-loader-dynamic # failure in job https://hydra.nixos.org/build/233197376 at 2023-09-02 + - snap-predicates # failure in job https://hydra.nixos.org/build/233244904 at 2023-09-02 + - snappy-conduit # failure in job https://hydra.nixos.org/build/233196865 at 2023-09-02 + - snap-stream # failure in job https://hydra.nixos.org/build/233237969 at 2023-09-02 + - SNet # failure in job https://hydra.nixos.org/build/233225638 at 2023-09-02 + - snipcheck # failure in job https://hydra.nixos.org/build/233214417 at 2023-09-02 + - snorkels # failure in job https://hydra.nixos.org/build/233229705 at 2023-09-02 + - snowchecked # failure in job https://hydra.nixos.org/build/233258191 at 2023-09-02 + - snowtify # failure in job https://hydra.nixos.org/build/233215099 at 2023-09-02 + - socket-activation # failure in job https://hydra.nixos.org/build/233258011 at 2023-09-02 + - socketed # failure in job https://hydra.nixos.org/build/233210087 at 2023-09-02 + - socketio # failure in job https://hydra.nixos.org/build/233214659 at 2023-09-02 + - socket-sctp # failure in job https://hydra.nixos.org/build/233228125 at 2023-09-02 + - socket-unix # failure in job https://hydra.nixos.org/build/233238226 at 2023-09-02 + - sodium # failure in job https://hydra.nixos.org/build/233213989 at 2023-09-02 + - soegtk # failure in job https://hydra.nixos.org/build/233198991 at 2023-09-02 + - softfloat-hs # failure in job https://hydra.nixos.org/build/233205242 at 2023-09-02 + - solar # failure in job https://hydra.nixos.org/build/233217024 at 2023-09-02 + - solga # failure in job https://hydra.nixos.org/build/233214770 at 2023-09-02 + - som # failure in job https://hydra.nixos.org/build/233193912 at 2023-09-02 + - sonic-visualiser # failure in job https://hydra.nixos.org/build/233257956 at 2023-09-02 + - Sonnex # failure in job https://hydra.nixos.org/build/233229367 at 2023-09-02 + - SoOSiM # failure in job https://hydra.nixos.org/build/233224114 at 2023-09-02 + - sorted # failure in job https://hydra.nixos.org/build/233222633 at 2023-09-02 + - sorting # failure in job https://hydra.nixos.org/build/233214204 at 2023-09-02 + - sorty # failure in job https://hydra.nixos.org/build/233211118 at 2023-09-02 + - souffle-haskell # failure in job https://hydra.nixos.org/build/233229472 at 2023-09-02 + - source-constraints # failure in job https://hydra.nixos.org/build/233254750 at 2023-09-02 + - sousit # failure in job https://hydra.nixos.org/build/233204067 at 2023-09-02 + - soyuz # failure in job https://hydra.nixos.org/build/233196903 at 2023-09-02 + - SpaceInvaders # failure in job https://hydra.nixos.org/build/233205063 at 2023-09-02 + - spacepart # failure in job https://hydra.nixos.org/build/233190848 at 2023-09-02 + - spake2 # failure in job https://hydra.nixos.org/build/233209098 at 2023-09-02 + - sparsecheck # failure in job https://hydra.nixos.org/build/233253454 at 2023-09-02 + - sparse # failure in job https://hydra.nixos.org/build/233222289 at 2023-09-02 + - sparse-lin-alg # failure in job https://hydra.nixos.org/build/233206178 at 2023-09-02 + - sparse-linear-algebra # failure in job https://hydra.nixos.org/build/233214075 at 2023-09-02 + - sparse-merkle-trees # failure in job https://hydra.nixos.org/build/233251228 at 2023-09-02 + - sparse-tensor # failure in job https://hydra.nixos.org/build/233224869 at 2023-09-02 + - spars # failure in job https://hydra.nixos.org/build/233221560 at 2023-09-02 + - special-functors # failure in job https://hydra.nixos.org/build/233215268 at 2023-09-02 + - special-keys # failure in job https://hydra.nixos.org/build/233191988 at 2023-09-02 + - spectacle # failure in job https://hydra.nixos.org/build/233207488 at 2023-09-02 + - speculation # failure in job https://hydra.nixos.org/build/233211559 at 2023-09-02 + - sphinxesc # failure in job https://hydra.nixos.org/build/233194825 at 2023-09-02 + - sphinx # failure in job https://hydra.nixos.org/build/233247449 at 2023-09-02 + - Spintax # failure in job https://hydra.nixos.org/build/233224001 at 2023-09-02 + - spiros # failure in job https://hydra.nixos.org/build/233249615 at 2023-09-02 + - spir-v # failure in job https://hydra.nixos.org/build/233191427 at 2023-09-02 + - splay # failure in job https://hydra.nixos.org/build/233217055 at 2023-09-02 + - splaytree # failure in job https://hydra.nixos.org/build/233231273 at 2023-09-02 + - splint # failure in job https://hydra.nixos.org/build/233202156 at 2023-09-02 + - split-morphism # failure in job https://hydra.nixos.org/build/233257735 at 2023-09-02 + - splitter # failure in job https://hydra.nixos.org/build/233204684 at 2023-09-02 + - Spock-api-ghcjs # failure in job https://hydra.nixos.org/build/233246163 at 2023-09-02 + - Spock-auth # failure in job https://hydra.nixos.org/build/233212125 at 2023-09-02 + - spoonutil # failure in job https://hydra.nixos.org/build/233257645 at 2023-09-02 + - spotify # failure in job https://hydra.nixos.org/build/233254990 at 2023-09-02 + - spoty # failure in job https://hydra.nixos.org/build/233233863 at 2023-09-02 + - Sprig # failure in job https://hydra.nixos.org/build/233223144 at 2023-09-02 + - spritz # failure in job https://hydra.nixos.org/build/233230733 at 2023-09-02 + - spsa # failure in job https://hydra.nixos.org/build/233221021 at 2023-09-02 + - spy # failure in job https://hydra.nixos.org/build/233208095 at 2023-09-02 + - sqel # failure in job https://hydra.nixos.org/build/233256622 at 2023-09-02 + - sqids # failure in job https://hydra.nixos.org/build/233213849 at 2023-09-02 + - sqlcipher # failure in job https://hydra.nixos.org/build/233259217 at 2023-09-02 + - sqlite # failure in job https://hydra.nixos.org/build/233215839 at 2023-09-02 + - sqlite-simple-errors # failure in job https://hydra.nixos.org/build/233232977 at 2023-09-02 + - sql-simple # failure in job https://hydra.nixos.org/build/233252834 at 2023-09-02 + - sqlvalue-list # failure in job https://hydra.nixos.org/build/233197313 at 2023-09-02 + - srcinst # failure in job https://hydra.nixos.org/build/233221356 at 2023-09-02 + - srt-attoparsec # failure in job https://hydra.nixos.org/build/233248456 at 2023-09-02 + - sscan # failure in job https://hydra.nixos.org/build/233248144 at 2023-09-02 + - ssh # failure in job https://hydra.nixos.org/build/233215512 at 2023-09-02 + - ssh-tunnel # failure in job https://hydra.nixos.org/build/233245203 at 2023-09-02 + - SSTG # failure in job https://hydra.nixos.org/build/233250677 at 2023-09-02 + - st2 # failure in job https://hydra.nixos.org/build/233256469 at 2023-09-02 + - stable-maps # failure in job https://hydra.nixos.org/build/233229084 at 2023-09-02 + - stack2cabal # failure in job https://hydra.nixos.org/build/233663091 at 2023-09-02 + - stack2nix # failure in job https://hydra.nixos.org/build/233662912 at 2023-09-02 + - stackage-cli # failure in job https://hydra.nixos.org/build/233213721 at 2023-09-02 + - stackage-metadata # failure in job https://hydra.nixos.org/build/233197359 at 2023-09-02 + - stackage-to-hackage # failure in job https://hydra.nixos.org/build/233233948 at 2023-09-02 + - stackage-types # failure in job https://hydra.nixos.org/build/233239995 at 2023-09-02 + - stack-bump # failure in job https://hydra.nixos.org/build/233257783 at 2023-09-02 + - stackcollapse-ghc # failure in job https://hydra.nixos.org/build/233250775 at 2023-09-02 + - stack-fix # failure in job https://hydra.nixos.org/build/233253628 at 2023-09-02 + - stack-lib # failure in job https://hydra.nixos.org/build/233662933 at 2023-09-02 + - stack-prism # failure in job https://hydra.nixos.org/build/233216902 at 2023-09-02 + - stack-run # failure in job https://hydra.nixos.org/build/233213318 at 2023-09-02 + - stack-type # failure in job https://hydra.nixos.org/build/233208961 at 2023-09-02 + - stack-wrapper # failure in job https://hydra.nixos.org/build/233259663 at 2023-09-02 + - staged-gg # failure in job https://hydra.nixos.org/build/233252183 at 2023-09-02 + - standalone-derive-topdown # failure in job https://hydra.nixos.org/build/233252467 at 2023-09-02 + - standalone-haddock # failure in job https://hydra.nixos.org/build/233254339 at 2023-09-02 + - stan # failure in job https://hydra.nixos.org/build/233200000 at 2023-09-02 + - starling # failure in job https://hydra.nixos.org/build/233255468 at 2023-09-02 + - starter # failure in job https://hydra.nixos.org/build/233208799 at 2023-09-02 + - stash # failure in job https://hydra.nixos.org/build/233193110 at 2023-09-02 + - Stasis # failure in job https://hydra.nixos.org/build/233209365 at 2023-09-02 + - state-bag # failure in job https://hydra.nixos.org/build/233222753 at 2023-09-02 + - state # failure in job https://hydra.nixos.org/build/233215872 at 2023-09-02 + - state-plus # failure in job https://hydra.nixos.org/build/233243653 at 2023-09-02 + - state-record # failure in job https://hydra.nixos.org/build/233222199 at 2023-09-02 + - static # failure in job https://hydra.nixos.org/build/233217136 at 2023-09-02 + - static-ls # failure in job https://hydra.nixos.org/build/233199876 at 2023-09-02 + - static-tensor # failure in job https://hydra.nixos.org/build/233217705 at 2023-09-02 + - statistics-fusion # failure in job https://hydra.nixos.org/build/233229681 at 2023-09-02 + - statistics-hypergeometric-genvar # failure in job https://hydra.nixos.org/build/233193257 at 2023-09-02 + - statistics-skinny # failure in job https://hydra.nixos.org/build/233233994 at 2023-09-02 + - statsd # failure in job https://hydra.nixos.org/build/233235428 at 2023-09-02 + - stats # failure in job https://hydra.nixos.org/build/233255737 at 2023-09-02 + - statvfs # failure in job https://hydra.nixos.org/build/233220845 at 2023-09-02 + - stb-image-redux # failure in job https://hydra.nixos.org/build/233202153 at 2023-09-02 + - stc-lang # failure in job https://hydra.nixos.org/build/233241234 at 2023-09-02 + - stdata # failure in job https://hydra.nixos.org/build/233255940 at 2023-09-02 + - stdf # failure in job https://hydra.nixos.org/build/233229554 at 2023-09-02 + - stdio # failure in job https://hydra.nixos.org/build/233212474 at 2023-09-02 + - steambrowser # failure in job https://hydra.nixos.org/build/233234382 at 2023-09-02 + - stego-uuid # failure in job https://hydra.nixos.org/build/233206943 at 2023-09-02 + - stemmer # failure in job https://hydra.nixos.org/build/233193774 at 2023-09-02 + - stemmer-german # failure in job https://hydra.nixos.org/build/233212893 at 2023-09-02 + - stepwise # failure in job https://hydra.nixos.org/build/233238388 at 2023-09-02 + - stgi # failure in job https://hydra.nixos.org/build/233233567 at 2023-09-02 + - STL # failure in job https://hydra.nixos.org/build/233231485 at 2023-09-02 + - stm-chunked-queues # failure in job https://hydra.nixos.org/build/233227966 at 2023-09-02 + - stm-firehose # failure in job https://hydra.nixos.org/build/233220943 at 2023-09-02 + - stm-promise # failure in job https://hydra.nixos.org/build/233204293 at 2023-09-02 + - stm-stats # failure in job https://hydra.nixos.org/build/233214914 at 2023-09-02 + - stochastic # failure in job https://hydra.nixos.org/build/233242019 at 2023-09-02 + - Stomp # failure in job https://hydra.nixos.org/build/233252583 at 2023-09-02 + - stooq-api # failure in job https://hydra.nixos.org/build/233200858 at 2023-09-02 + - storable # failure in job https://hydra.nixos.org/build/233228880 at 2023-09-02 + - storable-offset # failure in job https://hydra.nixos.org/build/233242993 at 2023-09-02 + - storable-static-array # failure in job https://hydra.nixos.org/build/233222724 at 2023-09-02 + - stp # failure in job https://hydra.nixos.org/build/233204519 at 2023-09-02 + - Strafunski-ATermLib # failure in job https://hydra.nixos.org/build/233229490 at 2023-09-02 + - Strafunski-StrategyLib # failure in job https://hydra.nixos.org/build/233245449 at 2023-09-02 + - StrappedTemplates # failure in job https://hydra.nixos.org/build/233193696 at 2023-09-02 + - StrategyLib # failure in job https://hydra.nixos.org/build/233214584 at 2023-09-02 + - stratux-types # failure in job https://hydra.nixos.org/build/233232808 at 2023-09-02 + - streamdeck # failure in job https://hydra.nixos.org/build/233226165 at 2023-09-02 + - streamed # failure in job https://hydra.nixos.org/build/233203079 at 2023-09-02 + - stream # failure in job https://hydra.nixos.org/build/233226470 at 2023-09-02 + - stream-fusion # failure in job https://hydra.nixos.org/build/233225947 at 2023-09-02 + - streaming-benchmarks # failure in job https://hydra.nixos.org/build/233216756 at 2023-09-02 + - streaming-brotli # failure in job https://hydra.nixos.org/build/233245393 at 2023-09-02 + - streaming-cassava # failure in job https://hydra.nixos.org/build/233208371 at 2023-09-02 + - streaming-conduit # failure in job https://hydra.nixos.org/build/233259762 at 2023-09-02 + - streaming-events # failure in job https://hydra.nixos.org/build/233198216 at 2023-09-02 + - streaming-lzma # failure in job https://hydra.nixos.org/build/233239635 at 2023-09-02 + - streaming-osm # failure in job https://hydra.nixos.org/build/233229467 at 2023-09-02 + - streaming-png # failure in job https://hydra.nixos.org/build/233236752 at 2023-09-02 + - streaming-postgresql-simple # failure in job https://hydra.nixos.org/build/233212839 at 2023-09-02 + - streaming-with # failure in job https://hydra.nixos.org/build/233191184 at 2023-09-02 + - streamly-binary # failure in job https://hydra.nixos.org/build/233240602 at 2023-09-02 + - streamly-cassava # failure in job https://hydra.nixos.org/build/233237843 at 2023-09-02 + - streamly-fsnotify # failure in job https://hydra.nixos.org/build/233220038 at 2023-09-02 + - streamly-lz4 # failure in job https://hydra.nixos.org/build/233219321 at 2023-09-02 + - streamly-posix # failure in job https://hydra.nixos.org/build/233194023 at 2023-09-02 + - stream-monad # failure in job https://hydra.nixos.org/build/233222592 at 2023-09-02 + - streamproc # failure in job https://hydra.nixos.org/build/233196179 at 2023-09-02 + - strelka-core # failure in job https://hydra.nixos.org/build/233218594 at 2023-09-02 + - str # failure in job https://hydra.nixos.org/build/233227698 at 2023-09-02 + - StrictBench # failure in job https://hydra.nixos.org/build/233259575 at 2023-09-02 + - StrictCheck # failure in job https://hydra.nixos.org/build/233214649 at 2023-09-02 + - strict-containers # failure in job https://hydra.nixos.org/build/233215090 at 2023-09-02 + - strict-ghc-plugin # failure in job https://hydra.nixos.org/build/233246830 at 2023-09-02 + - strictly # failure in job https://hydra.nixos.org/build/233197142 at 2023-09-02 + - strict-tuple-lens # failure in job https://hydra.nixos.org/build/233194548 at 2023-09-02 + - string-class # failure in job https://hydra.nixos.org/build/233230041 at 2023-09-02 + - string-conv-tests # failure in job https://hydra.nixos.org/build/233242710 at 2023-09-02 + - string-fromto # failure in job https://hydra.nixos.org/build/233223157 at 2023-09-02 + - string-isos # failure in job https://hydra.nixos.org/build/233252917 at 2023-09-02 + - stringlike # failure in job https://hydra.nixos.org/build/233258750 at 2023-09-02 + - string-quote # failure in job https://hydra.nixos.org/build/233259595 at 2023-09-02 + - stringtable-atom # failure in job https://hydra.nixos.org/build/233235085 at 2023-09-02 + - stripe-core # failure in job https://hydra.nixos.org/build/233215702 at 2023-09-02 + - stripe # failure in job https://hydra.nixos.org/build/233248173 at 2023-09-02 + - stripe-hs # failure in job https://hydra.nixos.org/build/233203500 at 2023-09-02 + - strong-path # failure in job https://hydra.nixos.org/build/233225171 at 2023-09-02 + - structural-traversal # failure in job https://hydra.nixos.org/build/233235730 at 2023-09-02 + - structures # failure in job https://hydra.nixos.org/build/233206488 at 2023-09-02 + - stt # failure in job https://hydra.nixos.org/build/233233101 at 2023-09-02 + - stunclient # failure in job https://hydra.nixos.org/build/233251136 at 2023-09-02 + - stylish-cabal # failure in job https://hydra.nixos.org/build/233202801 at 2023-09-02 + - stylist # failure in job https://hydra.nixos.org/build/233223662 at 2023-09-02 + - stylized # failure in job https://hydra.nixos.org/build/233211499 at 2023-09-02 + - subG-instances # failure in job https://hydra.nixos.org/build/233216227 at 2023-09-02 + - subleq-toolchain # failure in job https://hydra.nixos.org/build/233239415 at 2023-09-02 + - submark # failure in job https://hydra.nixos.org/build/233231701 at 2023-09-02 + - subsample # failure in job https://hydra.nixos.org/build/233201324 at 2023-09-02 + - sub-state # failure in job https://hydra.nixos.org/build/233202687 at 2023-09-02 + - subwordgraph # failure in job https://hydra.nixos.org/build/233229131 at 2023-09-02 + - suffix-array # failure in job https://hydra.nixos.org/build/233247630 at 2023-09-02 + - suffixarray # failure in job https://hydra.nixos.org/build/233256495 at 2023-09-02 + - SuffixStructures # failure in job https://hydra.nixos.org/build/233245541 at 2023-09-02 + - sugar # failure in job https://hydra.nixos.org/build/233202489 at 2023-09-02 + - sugarhaskell # failure in job https://hydra.nixos.org/build/233199879 at 2023-09-02 + - suitable # failure in job https://hydra.nixos.org/build/233225075 at 2023-09-02 + - summoner # failure in job https://hydra.nixos.org/build/233232530 at 2023-09-02 + - sum-type-boilerplate # failure in job https://hydra.nixos.org/build/233251040 at 2023-09-02 + - sunlight # failure in job https://hydra.nixos.org/build/233212375 at 2023-09-02 + - sunroof-compiler # failure in job https://hydra.nixos.org/build/233228734 at 2023-09-02 + - superbubbles # failure in job https://hydra.nixos.org/build/233243148 at 2023-09-02 + - superevent # failure in job https://hydra.nixos.org/build/233251723 at 2023-09-02 + - supermonad # failure in job https://hydra.nixos.org/build/233203124 at 2023-09-02 + - supero # failure in job https://hydra.nixos.org/build/233191836 at 2023-09-02 + - superrecord # failure in job https://hydra.nixos.org/build/233249988 at 2023-09-02 + - super-user-spark # failure in job https://hydra.nixos.org/build/233253403 at 2023-09-02 + - supervisor # failure in job https://hydra.nixos.org/build/233226414 at 2023-09-02 + - supervisors # failure in job https://hydra.nixos.org/build/233238299 at 2023-09-02 + - supplemented # failure in job https://hydra.nixos.org/build/233237397 at 2023-09-02 + - surjective # failure in job https://hydra.nixos.org/build/233242908 at 2023-09-02 + - sv2v # failure in job https://hydra.nixos.org/build/233190750 at 2023-09-02 + - sv-core # failure in job https://hydra.nixos.org/build/233217245 at 2023-09-02 + - SVD2HS # failure in job https://hydra.nixos.org/build/233248575 at 2023-09-02 + - svfactor # failure in job https://hydra.nixos.org/build/233256743 at 2023-09-02 + - svg-builder-fork # failure in job https://hydra.nixos.org/build/233224461 at 2023-09-02 + - svgsym # failure in job https://hydra.nixos.org/build/233255287 at 2023-09-02 + - svgutils # failure in job https://hydra.nixos.org/build/233193438 at 2023-09-02 + - svm-light-utils # failure in job https://hydra.nixos.org/build/233219138 at 2023-09-02 + - svm-simple # failure in job https://hydra.nixos.org/build/233235871 at 2023-09-02 + - svndump # failure in job https://hydra.nixos.org/build/233229122 at 2023-09-02 + - swagger # failure in job https://hydra.nixos.org/build/233198161 at 2023-09-02 + - swagger-petstore # failure in job https://hydra.nixos.org/build/233205797 at 2023-09-02 + - swagger-test # failure in job https://hydra.nixos.org/build/233231958 at 2023-09-02 + - swarm # failure in job https://hydra.nixos.org/build/233201687 at 2023-09-02 + - swearjure # failure in job https://hydra.nixos.org/build/233231407 at 2023-09-02 + - swf # failure in job https://hydra.nixos.org/build/233191062 at 2023-09-02 + - swift-lda # failure in job https://hydra.nixos.org/build/233252608 at 2023-09-02 + - swiss-ephemeris # failure in job https://hydra.nixos.org/build/233250845 at 2023-09-02 + - swiss # failure in job https://hydra.nixos.org/build/233251942 at 2023-09-02 + - sws # failure in job https://hydra.nixos.org/build/233246954 at 2023-09-02 + - syb-extras # failure in job https://hydra.nixos.org/build/233206431 at 2023-09-02 + - syb-with-class # failure in job https://hydra.nixos.org/build/233222818 at 2023-09-02 + - sydtest-hedis # failure in job https://hydra.nixos.org/build/233207856 at 2023-09-02 + - sydtest-hspec # failure in job https://hydra.nixos.org/build/233228638 at 2023-09-02 + - sydtest-mongo # failure in job https://hydra.nixos.org/build/233249700 at 2023-09-02 + - sydtest-persistent-postgresql # failure in job https://hydra.nixos.org/build/233214331 at 2023-09-02 + - sydtest-persistent-sqlite # failure in job https://hydra.nixos.org/build/233229399 at 2023-09-02 + - sydtest-rabbitmq # failure in job https://hydra.nixos.org/build/233260128 at 2023-09-02 + - sydtest-webdriver # failure in job https://hydra.nixos.org/build/233245448 at 2023-09-02 + - syfco # failure in job https://hydra.nixos.org/build/233225199 at 2023-09-02 + - symantic-cli # failure in job https://hydra.nixos.org/build/233225149 at 2023-09-02 + - symantic # failure in job https://hydra.nixos.org/build/233230940 at 2023-09-02 + - symantic-http-client # failure in job https://hydra.nixos.org/build/233222353 at 2023-09-02 + - symantic-parser # failure in job https://hydra.nixos.org/build/233197879 at 2023-09-02 + - symantic-xml # failure in job https://hydra.nixos.org/build/233230860 at 2023-09-02 + - symbolic-link # failure in job https://hydra.nixos.org/build/233255331 at 2023-09-02 + - symengine # failure in job https://hydra.nixos.org/build/233203977 at 2023-09-02 + - sync # failure in job https://hydra.nixos.org/build/233254114 at 2023-09-02 + - sync-mht # failure in job https://hydra.nixos.org/build/233236022 at 2023-09-02 + - syntactic # failure in job https://hydra.nixos.org/build/233210123 at 2023-09-02 + - syntax-trees # failure in job https://hydra.nixos.org/build/233209576 at 2023-09-02 + - syntax-trees-fork-bairyn # failure in job https://hydra.nixos.org/build/233216989 at 2023-09-02 + - synthesizer # failure in job https://hydra.nixos.org/build/233259139 at 2023-09-02 + - Sysmon # failure in job https://hydra.nixos.org/build/233224152 at 2023-09-02 + - system-canonicalpath # failure in job https://hydra.nixos.org/build/233254297 at 2023-09-02 + - system-command # failure in job https://hydra.nixos.org/build/233239356 at 2023-09-02 + - system-extra # failure in job https://hydra.nixos.org/build/233203137 at 2023-09-02 + - system-inotify # failure in job https://hydra.nixos.org/build/233206871 at 2023-09-02 + - system-lifted # failure in job https://hydra.nixos.org/build/233236013 at 2023-09-02 + - system-linux-proc # failure in job https://hydra.nixos.org/build/233209447 at 2023-09-02 + - system-locale # failure in job https://hydra.nixos.org/build/233201789 at 2023-09-02 + - system-random-effect # failure in job https://hydra.nixos.org/build/233232067 at 2023-09-02 + - system-test # failure in job https://hydra.nixos.org/build/233240318 at 2023-09-02 + - t3-server # failure in job https://hydra.nixos.org/build/233220511 at 2023-09-02 + - tableaux # failure in job https://hydra.nixos.org/build/233230428 at 2023-09-02 + - table # failure in job https://hydra.nixos.org/build/233223186 at 2023-09-02 + - Tables # failure in job https://hydra.nixos.org/build/233195704 at 2023-09-02 + - tables # failure in job https://hydra.nixos.org/build/233224632 at 2023-09-02 + - tablestorage # failure in job https://hydra.nixos.org/build/233195223 at 2023-09-02 + - table-tennis # failure in job https://hydra.nixos.org/build/233225503 at 2023-09-02 + - Tablify # failure in job https://hydra.nixos.org/build/233219427 at 2023-09-02 + - tabloid # failure in job https://hydra.nixos.org/build/233244751 at 2023-09-02 + - tabs # failure in job https://hydra.nixos.org/build/233227179 at 2023-09-02 + - tag-bits # failure in job https://hydra.nixos.org/build/233245196 at 2023-09-02 + - tagged-exception-core # failure in job https://hydra.nixos.org/build/233227946 at 2023-09-02 + - tagged-timers # failure in job https://hydra.nixos.org/build/233238738 at 2023-09-02 + - taggy-lens # failure in job https://hydra.nixos.org/build/233253920 at 2023-09-02 + - taglib-api # failure in job https://hydra.nixos.org/build/233259216 at 2023-09-02 + - tagsoup-ht # failure in job https://hydra.nixos.org/build/233233672 at 2023-09-02 + - tagsoup-megaparsec # failure in job https://hydra.nixos.org/build/233205700 at 2023-09-02 + - tagsoup-parsec # failure in job https://hydra.nixos.org/build/233200887 at 2023-09-02 + - tagsoup-selection # failure in job https://hydra.nixos.org/build/233228969 at 2023-09-02 + - tagtree # failure in job https://hydra.nixos.org/build/233209409 at 2023-09-02 + - tahoe-capabilities # failure in job https://hydra.nixos.org/build/233253813 at 2023-09-02 + - tai64 # failure in job https://hydra.nixos.org/build/233257422 at 2023-09-02 + - tai # failure in job https://hydra.nixos.org/build/233210483 at 2023-09-02 + - tailwind # failure in job https://hydra.nixos.org/build/233238757 at 2023-09-02 + - tak # failure in job https://hydra.nixos.org/build/233191188 at 2023-09-02 + - Takusen # failure in job https://hydra.nixos.org/build/233230088 at 2023-09-02 + - takusen-oracle # failure in job https://hydra.nixos.org/build/233197944 at 2023-09-02 + - tamarin-prover-utils # failure in job https://hydra.nixos.org/build/233235417 at 2023-09-02 + - Tape # failure in job https://hydra.nixos.org/build/233191662 at 2023-09-02 + - tapioca # failure in job https://hydra.nixos.org/build/233207781 at 2023-09-02 + - TaskMonad # failure in job https://hydra.nixos.org/build/233219257 at 2023-09-02 + - tasty-autocollect # failure in job https://hydra.nixos.org/build/233256957 at 2023-09-02 + - tasty-auto # failure in job https://hydra.nixos.org/build/233220008 at 2023-09-02 + - tasty-fail-fast # failure in job https://hydra.nixos.org/build/233200040 at 2023-09-02 + - tasty-hedgehog-coverage # failure in job https://hydra.nixos.org/build/233231332 at 2023-09-02 + - tasty-mgolden # failure in job https://hydra.nixos.org/build/233248196 at 2023-09-02 + - tasty-stats # failure in job https://hydra.nixos.org/build/233228752 at 2023-09-02 + - tasty-test-reporter # failure in job https://hydra.nixos.org/build/233208181 at 2023-09-02 + - tasty-test-vector # failure in job https://hydra.nixos.org/build/233231957 at 2023-09-02 + - TBC # failure in job https://hydra.nixos.org/build/233217773 at 2023-09-02 + - TBit # failure in job https://hydra.nixos.org/build/233232991 at 2023-09-02 + - tcache-AWS # failure in job https://hydra.nixos.org/build/233250577 at 2023-09-02 + - tcp # failure in job https://hydra.nixos.org/build/233249662 at 2023-09-02 + - tcp-streams-openssl # failure in job https://hydra.nixos.org/build/233258076 at 2023-09-02 + - tdigest-Chart # failure in job https://hydra.nixos.org/build/233244784 at 2023-09-02 + - tdoc # failure in job https://hydra.nixos.org/build/233250532 at 2023-09-02 + - tds # failure in job https://hydra.nixos.org/build/233201528 at 2023-09-02 + - teams # failure in job https://hydra.nixos.org/build/233228277 at 2023-09-02 + - technique # failure in job https://hydra.nixos.org/build/233196740 at 2023-09-02 + - teeth # failure in job https://hydra.nixos.org/build/233238279 at 2023-09-02 + - tehepero # failure in job https://hydra.nixos.org/build/233245967 at 2023-09-02 + - telega # failure in job https://hydra.nixos.org/build/233239016 at 2023-09-02 + - telegram-api # failure in job https://hydra.nixos.org/build/233255927 at 2023-09-02 + - telegram # failure in job https://hydra.nixos.org/build/233203974 at 2023-09-02 + - telegram-types # failure in job https://hydra.nixos.org/build/233598183 at 2023-09-02 + - telegraph # failure in job https://hydra.nixos.org/build/233213772 at 2023-09-02 + - teleport # failure in job https://hydra.nixos.org/build/233194305 at 2023-09-02 + - teleshell # failure in job https://hydra.nixos.org/build/233225954 at 2023-09-02 + - tellbot # failure in job https://hydra.nixos.org/build/233200225 at 2023-09-02 + - template-default # failure in job https://hydra.nixos.org/build/233238125 at 2023-09-02 + - template # failure in job https://hydra.nixos.org/build/233242058 at 2023-09-02 + - template-haskell-optics # failure in job https://hydra.nixos.org/build/233203627 at 2023-09-02 + - template-haskell-util # failure in job https://hydra.nixos.org/build/233198104 at 2023-09-02 + - template-hsml # failure in job https://hydra.nixos.org/build/233203243 at 2023-09-02 + - templateify # failure in job https://hydra.nixos.org/build/233234863 at 2023-09-02 + - templatepg # failure in job https://hydra.nixos.org/build/233250442 at 2023-09-02 + - template-toolkit # failure in job https://hydra.nixos.org/build/233195990 at 2023-09-02 + - template-yj # failure in job https://hydra.nixos.org/build/233236245 at 2023-09-02 + - tempodb # failure in job https://hydra.nixos.org/build/233205994 at 2023-09-02 + - tempus # failure in job https://hydra.nixos.org/build/233245670 at 2023-09-02 + - ten # failure in job https://hydra.nixos.org/build/233216705 at 2023-09-02 + - tensor # failure in job https://hydra.nixos.org/build/233233707 at 2023-09-02 + - tensor-safe # failure in job https://hydra.nixos.org/build/233239719 at 2023-09-02 + - termbox-bindings # failure in job https://hydra.nixos.org/build/233257579 at 2023-09-02 + - termination-combinators # failure in job https://hydra.nixos.org/build/233202329 at 2023-09-02 + - termplot # failure in job https://hydra.nixos.org/build/233245692 at 2023-09-02 + - terntup # failure in job https://hydra.nixos.org/build/233203746 at 2023-09-02 + - tersmu # failure in job https://hydra.nixos.org/build/233253842 at 2023-09-02 + - testCom # failure in job https://hydra.nixos.org/build/233210118 at 2023-09-02 + - testcontainers # failure in job https://hydra.nixos.org/build/233226596 at 2023-09-02 + - TestExplode # failure in job https://hydra.nixos.org/build/233207327 at 2023-09-02 + - test-fixture # failure in job https://hydra.nixos.org/build/233203103 at 2023-09-02 + - test-framework-doctest # failure in job https://hydra.nixos.org/build/233256232 at 2023-09-02 + - test-framework-quickcheck # failure in job https://hydra.nixos.org/build/233199583 at 2023-09-02 + - test-framework-skip # failure in job https://hydra.nixos.org/build/233248465 at 2023-09-02 + - test-framework-testing-feat # failure in job https://hydra.nixos.org/build/233227290 at 2023-09-02 + - test-framework-th-prime # failure in job https://hydra.nixos.org/build/233241423 at 2023-09-02 + - test-lib # failure in job https://hydra.nixos.org/build/233195296 at 2023-09-02 + - testloop # failure in job https://hydra.nixos.org/build/233206527 at 2023-09-02 + - testpack # failure in job https://hydra.nixos.org/build/233194859 at 2023-09-02 + - testpattern # failure in job https://hydra.nixos.org/build/233225860 at 2023-09-02 + - testPkg # failure in job https://hydra.nixos.org/build/233221832 at 2023-09-02 + - test-pkg # failure in job https://hydra.nixos.org/build/233242918 at 2023-09-02 + - testrunner # failure in job https://hydra.nixos.org/build/233243675 at 2023-09-02 + - test-shouldbe # failure in job https://hydra.nixos.org/build/233209475 at 2023-09-02 + - tex2txt # failure in job https://hydra.nixos.org/build/233253484 at 2023-09-02 + - texbuilder # failure in job https://hydra.nixos.org/build/233190830 at 2023-09-02 + - tex-join-bib # failure in job https://hydra.nixos.org/build/233220994 at 2023-09-02 + - TeX-my-math # failure in job https://hydra.nixos.org/build/233243992 at 2023-09-02 + - text1 # failure in job https://hydra.nixos.org/build/233252861 at 2023-09-02 + - text-all # failure in job https://hydra.nixos.org/build/233229321 at 2023-09-02 + - text-and-plots # failure in job https://hydra.nixos.org/build/233205250 at 2023-09-02 + - text-ascii # failure in job https://hydra.nixos.org/build/233247653 at 2023-09-02 + - text-compression # failure in job https://hydra.nixos.org/build/233202733 at 2023-09-02 + - text-containers # failure in job https://hydra.nixos.org/build/233253948 at 2023-09-02 + - text-format-heavy # failure in job https://hydra.nixos.org/build/233213729 at 2023-09-02 + - text-generic-pretty # failure in job https://hydra.nixos.org/build/233223672 at 2023-09-02 + - text-icu-normalized # failure in job https://hydra.nixos.org/build/233234496 at 2023-09-02 + - text-icu-translit # failure in job https://hydra.nixos.org/build/233255876 at 2023-09-02 + - text-lens # failure in job https://hydra.nixos.org/build/233227419 at 2023-09-02 + - text-markup # failure in job https://hydra.nixos.org/build/233233739 at 2023-09-02 + - text-normal # failure in job https://hydra.nixos.org/build/233198509 at 2023-09-02 + - textocat-api # failure in job https://hydra.nixos.org/build/233252736 at 2023-09-02 + - text-offset # failure in job https://hydra.nixos.org/build/233250030 at 2023-09-02 + - text-position # failure in job https://hydra.nixos.org/build/233241860 at 2023-09-02 + - text-register-machine # failure in job https://hydra.nixos.org/build/233239758 at 2023-09-02 + - text-stream-decode # failure in job https://hydra.nixos.org/build/233237533 at 2023-09-02 + - text-trie # failure in job https://hydra.nixos.org/build/233231841 at 2023-09-02 + - textual # failure in job https://hydra.nixos.org/build/233254230 at 2023-09-02 + - text-utf7 # failure in job https://hydra.nixos.org/build/233254420 at 2023-09-02 + - text-utf8 # failure in job https://hydra.nixos.org/build/233198812 at 2023-09-02 + - text-xml-qq # failure in job https://hydra.nixos.org/build/233240984 at 2023-09-02 + - text-zipper-monad # failure in job https://hydra.nixos.org/build/233207310 at 2023-09-02 + - tfp-th # failure in job https://hydra.nixos.org/build/233238914 at 2023-09-02 + - tftp # failure in job https://hydra.nixos.org/build/233199412 at 2023-09-02 + - tga # failure in job https://hydra.nixos.org/build/233198921 at 2023-09-02 + - thank-you-stars # failure in job https://hydra.nixos.org/build/233219923 at 2023-09-02 + - th-build # failure in job https://hydra.nixos.org/build/233224794 at 2023-09-02 + - th-dict-discovery # failure in job https://hydra.nixos.org/build/233204140 at 2023-09-02 + - THEff # failure in job https://hydra.nixos.org/build/233221239 at 2023-09-02 + - themoviedb # failure in job https://hydra.nixos.org/build/233233008 at 2023-09-02 + - thentos-cookie-session # failure in job https://hydra.nixos.org/build/233234700 at 2023-09-02 + - Theora # failure in job https://hydra.nixos.org/build/233232413 at 2023-09-02 + - theoremquest # failure in job https://hydra.nixos.org/build/233248330 at 2023-09-02 + - th-fold # failure in job https://hydra.nixos.org/build/233196363 at 2023-09-02 + - th-format # failure in job https://hydra.nixos.org/build/233226394 at 2023-09-02 + - thih # failure in job https://hydra.nixos.org/build/233245123 at 2023-09-02 + - Thingie # failure in job https://hydra.nixos.org/build/233251760 at 2023-09-02 + - th-inline-io-action # failure in job https://hydra.nixos.org/build/233207225 at 2023-09-02 + - th-instance-reification # failure in job https://hydra.nixos.org/build/233227028 at 2023-09-02 + - th-kinds # failure in job https://hydra.nixos.org/build/233237247 at 2023-09-02 + - th-kinds-fork # failure in job https://hydra.nixos.org/build/233248565 at 2023-09-02 + - thock # failure in job https://hydra.nixos.org/build/233256198 at 2023-09-02 + - thorn # failure in job https://hydra.nixos.org/build/233242024 at 2023-09-02 + - th-pprint # failure in job https://hydra.nixos.org/build/233200791 at 2023-09-02 + - threadmanager # failure in job https://hydra.nixos.org/build/233230492 at 2023-09-02 + - threepenny-editors # failure in job https://hydra.nixos.org/build/233248820 at 2023-09-02 + - threepenny-gui-contextmenu # failure in job https://hydra.nixos.org/build/233242035 at 2023-09-02 + - threepenny-gui-flexbox # failure in job https://hydra.nixos.org/build/233213545 at 2023-09-02 + - thrift # failure in job https://hydra.nixos.org/build/233194283 at 2023-09-02 + - Thrift # failure in job https://hydra.nixos.org/build/233221585 at 2023-09-02 + - throttled-io-loop # failure in job https://hydra.nixos.org/build/233221912 at 2023-09-02 + - throttle-io-stream # failure in job https://hydra.nixos.org/build/233228060 at 2023-09-02 + - through-text # failure in job https://hydra.nixos.org/build/233217175 at 2023-09-02 + - throwable-exceptions # failure in job https://hydra.nixos.org/build/233206169 at 2023-09-02 + - th-sccs # failure in job https://hydra.nixos.org/build/233228878 at 2023-09-02 + - th-tc # failure in job https://hydra.nixos.org/build/233243402 at 2023-09-02 + - th-to-exp # failure in job https://hydra.nixos.org/build/233198437 at 2023-09-02 + - th-traced # failure in job https://hydra.nixos.org/build/233247762 at 2023-09-02 + - thumbnail # failure in job https://hydra.nixos.org/build/233257110 at 2023-09-02 + - thumbnail-plus # failure in job https://hydra.nixos.org/build/233255464 at 2023-09-02 + - tianbar # failure in job https://hydra.nixos.org/build/233195811 at 2023-09-02 + - ticket-management # failure in job https://hydra.nixos.org/build/233247134 at 2023-09-02 + - tictactoe3d # failure in job https://hydra.nixos.org/build/233193080 at 2023-09-02 + - TicTacToe # failure in job https://hydra.nixos.org/build/233256784 at 2023-09-02 + - tidal-midi # failure in job https://hydra.nixos.org/build/233194389 at 2023-09-02 + - tie-knot # failure in job https://hydra.nixos.org/build/233201321 at 2023-09-02 + - tiempo # failure in job https://hydra.nixos.org/build/233250728 at 2023-09-02 + - tiger # failure in job https://hydra.nixos.org/build/233249333 at 2023-09-02 + - TigerHash # failure in job https://hydra.nixos.org/build/233208162 at 2023-09-02 + - tightrope # failure in job https://hydra.nixos.org/build/233215237 at 2023-09-02 + - tikzsd # failure in job https://hydra.nixos.org/build/233224431 at 2023-09-02 + - timecalc # failure in job https://hydra.nixos.org/build/233207970 at 2023-09-02 + - time-extras # failure in job https://hydra.nixos.org/build/233204030 at 2023-09-02 + - time-machine # failure in job https://hydra.nixos.org/build/233192743 at 2023-09-02 + - timemap # failure in job https://hydra.nixos.org/build/233250038 at 2023-09-02 + - timeout # failure in job https://hydra.nixos.org/build/233193307 at 2023-09-02 + - timeout-with-results # failure in job https://hydra.nixos.org/build/233212129 at 2023-09-02 + - timeparsers # failure in job https://hydra.nixos.org/build/233250789 at 2023-09-02 + - TimePiece # failure in job https://hydra.nixos.org/build/233213400 at 2023-09-02 + - timeplot # failure in job https://hydra.nixos.org/build/233207049 at 2023-09-02 + - time-qq # failure in job https://hydra.nixos.org/build/233218378 at 2023-09-02 + - time-quote # failure in job https://hydra.nixos.org/build/233209453 at 2023-09-02 + - time-recurrence # failure in job https://hydra.nixos.org/build/233221759 at 2023-09-02 + - timeseries # failure in job https://hydra.nixos.org/build/233216686 at 2023-09-02 + - time-series # failure in job https://hydra.nixos.org/build/233231491 at 2023-09-02 + - time-series-lib # failure in job https://hydra.nixos.org/build/233247465 at 2023-09-02 + - timeutils # failure in job https://hydra.nixos.org/build/233230513 at 2023-09-02 + - time-w3c # failure in job https://hydra.nixos.org/build/233225902 at 2023-09-02 + - timezone-detect # failure in job https://hydra.nixos.org/build/233205213 at 2023-09-02 + - tinyid # failure in job https://hydra.nixos.org/build/233249999 at 2023-09-02 + - TinyLaunchbury # failure in job https://hydra.nixos.org/build/233233671 at 2023-09-02 + - tinylog # failure in job https://hydra.nixos.org/build/233198434 at 2023-09-02 + - tiny-scheduler # failure in job https://hydra.nixos.org/build/233224849 at 2023-09-02 + - tinytemplate # failure in job https://hydra.nixos.org/build/233208032 at 2023-09-02 + - TinyURL # failure in job https://hydra.nixos.org/build/233200716 at 2023-09-02 + - tinyXml # failure in job https://hydra.nixos.org/build/233226725 at 2023-09-02 + - tiphys # failure in job https://hydra.nixos.org/build/233199377 at 2023-09-02 + - titan-debug-yampa # failure in job https://hydra.nixos.org/build/233258714 at 2023-09-02 + - titan-record-yampa # failure in job https://hydra.nixos.org/build/233204913 at 2023-09-02 + - Titim # failure in job https://hydra.nixos.org/build/233196143 at 2023-09-02 + - tkhs # failure in job https://hydra.nixos.org/build/233216589 at 2023-09-02 + - tkyprof # failure in job https://hydra.nixos.org/build/233205547 at 2023-09-02 + - tls-debug # failure in job https://hydra.nixos.org/build/233228426 at 2023-09-02 + - TLT # failure in job https://hydra.nixos.org/build/233193495 at 2023-09-02 + - tmp-proc-example # failure in job https://hydra.nixos.org/build/233223028 at 2023-09-02 + - tmp-proc-zipkin # failure in job https://hydra.nixos.org/build/233210220 at 2023-09-02 + - tofromxml # failure in job https://hydra.nixos.org/build/233257072 at 2023-09-02 + - to-haskell # failure in job https://hydra.nixos.org/build/233195321 at 2023-09-02 + - toilet # failure in job https://hydra.nixos.org/build/233229543 at 2023-09-02 + - tokenify # failure in job https://hydra.nixos.org/build/233249392 at 2023-09-02 + - tokenizer # failure in job https://hydra.nixos.org/build/233259112 at 2023-09-02 + - tokenizer-streaming # failure in job https://hydra.nixos.org/build/233232725 at 2023-09-02 + - token-limiter # failure in job https://hydra.nixos.org/build/233255093 at 2023-09-02 + - token-search # failure in job https://hydra.nixos.org/build/233212111 at 2023-09-02 + - tokyocabinet-haskell # failure in job https://hydra.nixos.org/build/233193492 at 2023-09-02 + - tokyotyrant-haskell # failure in job https://hydra.nixos.org/build/233256228 at 2023-09-02 + - toml # failure in job https://hydra.nixos.org/build/233223844 at 2023-09-02 + - tonalude # failure in job https://hydra.nixos.org/build/233204874 at 2023-09-02 + - tonaparser # failure in job https://hydra.nixos.org/build/233224261 at 2023-09-02 + - toodles # failure in job https://hydra.nixos.org/build/233245612 at 2023-09-02 + - Top # failure in job https://hydra.nixos.org/build/233234827 at 2023-09-02 + - topkata # failure in job https://hydra.nixos.org/build/233231937 at 2023-09-02 + - torch # failure in job https://hydra.nixos.org/build/233222854 at 2023-09-02 + - TORCS # failure in job https://hydra.nixos.org/build/233192054 at 2023-09-02 + - to-string-class # failure in job https://hydra.nixos.org/build/233244336 at 2023-09-02 + - TotalMap # failure in job https://hydra.nixos.org/build/233194327 at 2023-09-02 + - total-maps # failure in job https://hydra.nixos.org/build/233242562 at 2023-09-02 + - touched # failure in job https://hydra.nixos.org/build/233199113 at 2023-09-02 + - Tournament # failure in job https://hydra.nixos.org/build/233239014 at 2023-09-02 + - toxiproxy-haskell # failure in job https://hydra.nixos.org/build/233222810 at 2023-09-02 + - tptp # failure in job https://hydra.nixos.org/build/233195607 at 2023-09-02 + - trace-call # failure in job https://hydra.nixos.org/build/233250575 at 2023-09-02 + - traced # failure in job https://hydra.nixos.org/build/233229953 at 2023-09-02 + - trace # failure in job https://hydra.nixos.org/build/233196655 at 2023-09-02 + - trace-function-call # failure in job https://hydra.nixos.org/build/233243062 at 2023-09-02 + - tracetree # failure in job https://hydra.nixos.org/build/233213937 at 2023-09-02 + - tracked-files # failure in job https://hydra.nixos.org/build/233256779 at 2023-09-02 + - tracker # failure in job https://hydra.nixos.org/build/233226925 at 2023-09-02 + - trackit # failure in job https://hydra.nixos.org/build/233243891 at 2023-09-02 + - traction # failure in job https://hydra.nixos.org/build/233193894 at 2023-09-02 + - tracy # failure in job https://hydra.nixos.org/build/233210215 at 2023-09-02 + - traildb # failure in job https://hydra.nixos.org/build/233223153 at 2023-09-02 + - transactional-events # failure in job https://hydra.nixos.org/build/233205740 at 2023-09-02 + - transf # failure in job https://hydra.nixos.org/build/233202251 at 2023-09-02 + - TransformeR # failure in job https://hydra.nixos.org/build/233255786 at 2023-09-02 + - transformers-bifunctors # failure in job https://hydra.nixos.org/build/233258007 at 2023-09-02 + - transformers-compose # failure in job https://hydra.nixos.org/build/233212861 at 2023-09-02 + - transformers-lift # failure in job https://hydra.nixos.org/build/233223136 at 2023-09-02 + - transformers-runnable # failure in job https://hydra.nixos.org/build/233209164 at 2023-09-02 + - TransformersStepByStep # failure in job https://hydra.nixos.org/build/233243582 at 2023-09-02 + - trans-fx-core # failure in job https://hydra.nixos.org/build/233219543 at 2023-09-02 + - transient # failure in job https://hydra.nixos.org/build/233221557 at 2023-09-02 + - translatable-intset # failure in job https://hydra.nixos.org/build/233252531 at 2023-09-02 + - translate # failure in job https://hydra.nixos.org/build/233239029 at 2023-09-02 + - traverse-code # failure in job https://hydra.nixos.org/build/233236749 at 2023-09-02 + - travis # failure in job https://hydra.nixos.org/build/233230706 at 2023-09-02 + - travis-meta-yaml # failure in job https://hydra.nixos.org/build/233251064 at 2023-09-02 + - trawl # failure in job https://hydra.nixos.org/build/233255726 at 2023-09-02 + - traypoweroff # failure in job https://hydra.nixos.org/build/233236313 at 2023-09-02 + - treap # failure in job https://hydra.nixos.org/build/233248089 at 2023-09-02 + - treemap # failure in job https://hydra.nixos.org/build/233207063 at 2023-09-02 + - treemap-html # failure in job https://hydra.nixos.org/build/233248494 at 2023-09-02 + - tree-monad # failure in job https://hydra.nixos.org/build/233212246 at 2023-09-02 + - tree-render-text # failure in job https://hydra.nixos.org/build/233240817 at 2023-09-02 + - TreeStructures # failure in job https://hydra.nixos.org/build/233213685 at 2023-09-02 + - tree-traversals # failure in job https://hydra.nixos.org/build/233206118 at 2023-09-02 + - t-regex # failure in job https://hydra.nixos.org/build/233254486 at 2023-09-02 + - tremulous-query # failure in job https://hydra.nixos.org/build/233200947 at 2023-09-02 + - TrendGraph # failure in job https://hydra.nixos.org/build/233258651 at 2023-09-02 + - trhsx # failure in job https://hydra.nixos.org/build/233231297 at 2023-09-02 + - trim # failure in job https://hydra.nixos.org/build/233195034 at 2023-09-02 + - tripLL # failure in job https://hydra.nixos.org/build/233217806 at 2023-09-02 + - trivia # failure in job https://hydra.nixos.org/build/233234176 at 2023-09-02 + - tropical # failure in job https://hydra.nixos.org/build/233212835 at 2023-09-02 + - trust-chain # failure in job https://hydra.nixos.org/build/233252622 at 2023-09-02 + - tsession # failure in job https://hydra.nixos.org/build/233259005 at 2023-09-02 + - tslib # failure in job https://hydra.nixos.org/build/233225813 at 2023-09-02 + - tsparse # failure in job https://hydra.nixos.org/build/233195941 at 2023-09-02 + - tsuntsun # failure in job https://hydra.nixos.org/build/233259481 at 2023-09-02 + - tsvsql # failure in job https://hydra.nixos.org/build/233230566 at 2023-09-02 + - ttask # failure in job https://hydra.nixos.org/build/233227241 at 2023-09-02 + - ttl-hashtables # failure in job https://hydra.nixos.org/build/233251418 at 2023-09-02 + - ttn-client # failure in job https://hydra.nixos.org/build/233226059 at 2023-09-02 + - tttool # failure in job https://hydra.nixos.org/build/233234046 at 2023-09-02 + - tubes # failure in job https://hydra.nixos.org/build/233245507 at 2023-09-02 + - tuntap # failure in job https://hydra.nixos.org/build/233199575 at 2023-09-02 + - tuple-append-instances # failure in job https://hydra.nixos.org/build/233256201 at 2023-09-02 + - tupleinstances # failure in job https://hydra.nixos.org/build/233208004 at 2023-09-02 + - tuple-lenses # failure in job https://hydra.nixos.org/build/233239309 at 2023-09-02 + - turing-machines # failure in job https://hydra.nixos.org/build/233195604 at 2023-09-02 + - turing-music # failure in job https://hydra.nixos.org/build/233203435 at 2023-09-02 + - turtle-options # failure in job https://hydra.nixos.org/build/233255831 at 2023-09-02 + - twain # failure in job https://hydra.nixos.org/build/233200486 at 2023-09-02 + - tweak # failure in job https://hydra.nixos.org/build/233211020 at 2023-09-02 + - twentefp-websockets # failure in job https://hydra.nixos.org/build/233207022 at 2023-09-02 + - twhs # failure in job https://hydra.nixos.org/build/233201182 at 2023-09-02 + - twilio # failure in job https://hydra.nixos.org/build/233199959 at 2023-09-02 + - twiml # failure in job https://hydra.nixos.org/build/233219327 at 2023-09-02 + - twine # failure in job https://hydra.nixos.org/build/233191924 at 2023-09-02 + - twisty # failure in job https://hydra.nixos.org/build/233212390 at 2023-09-02 + - twitchapi # failure in job https://hydra.nixos.org/build/233245126 at 2023-09-02 + - twitch # failure in job https://hydra.nixos.org/build/233198940 at 2023-09-02 + - twitter # failure in job https://hydra.nixos.org/build/233244055 at 2023-09-02 + - twitter-feed # failure in job https://hydra.nixos.org/build/233251565 at 2023-09-02 + - tx # failure in job https://hydra.nixos.org/build/233223988 at 2023-09-02 + - txtblk # failure in job https://hydra.nixos.org/build/233219915 at 2023-09-02 + - TYB # failure in job https://hydra.nixos.org/build/233246075 at 2023-09-02 + - tyfam-witnesses # failure in job https://hydra.nixos.org/build/233191033 at 2023-09-02 + - typalyze # failure in job https://hydra.nixos.org/build/233246228 at 2023-09-02 + - typeable-th # failure in job https://hydra.nixos.org/build/233234377 at 2023-09-02 + - type-combinators # failure in job https://hydra.nixos.org/build/233230024 at 2023-09-02 + - type-compare # failure in job https://hydra.nixos.org/build/233207530 at 2023-09-02 + - TypeCompose # failure in job https://hydra.nixos.org/build/233212999 at 2023-09-02 + - typed-digits # failure in job https://hydra.nixos.org/build/233198266 at 2023-09-02 + - typed-encoding # failure in job https://hydra.nixos.org/build/233208093 at 2023-09-02 + - typedquery # failure in job https://hydra.nixos.org/build/233215307 at 2023-09-02 + - typed-spreadsheet # failure in job https://hydra.nixos.org/build/233248967 at 2023-09-02 + - typed-time # failure in job https://hydra.nixos.org/build/233246930 at 2023-09-02 + - typed-wire # failure in job https://hydra.nixos.org/build/233237626 at 2023-09-02 + - type-eq # failure in job https://hydra.nixos.org/build/233214388 at 2023-09-02 + - type-errors-pretty # failure in job https://hydra.nixos.org/build/233238808 at 2023-09-02 + - typehash # failure in job https://hydra.nixos.org/build/233207184 at 2023-09-02 + - type-indexed-queues # failure in job https://hydra.nixos.org/build/233197833 at 2023-09-02 + - type-interpreter # failure in job https://hydra.nixos.org/build/233192182 at 2023-09-02 + - type-int # failure in job https://hydra.nixos.org/build/233245978 at 2023-09-02 + - type-level-bst # failure in job https://hydra.nixos.org/build/233202030 at 2023-09-02 + - type-level-natural-number-induction # failure in job https://hydra.nixos.org/build/233259499 at 2023-09-02 + - type-level-natural-number-operations # failure in job https://hydra.nixos.org/build/233198314 at 2023-09-02 + - typelevel-rewrite-rules # failure in job https://hydra.nixos.org/build/233243365 at 2023-09-02 + - type-level-sets # failure in job https://hydra.nixos.org/build/233197419 at 2023-09-02 + - typelevel-tensor # failure in job https://hydra.nixos.org/build/233190827 at 2023-09-02 + - type-list # failure in job https://hydra.nixos.org/build/233234789 at 2023-09-02 + - typelits-witnesses # failure in job https://hydra.nixos.org/build/233224289 at 2023-09-02 + - type-of-html-static # failure in job https://hydra.nixos.org/build/233226924 at 2023-09-02 + - type-operators # failure in job https://hydra.nixos.org/build/233232802 at 2023-09-02 + - typeparams # failure in job https://hydra.nixos.org/build/233192078 at 2023-09-02 + - type-prelude # failure in job https://hydra.nixos.org/build/233221195 at 2023-09-02 + - typerep-map # failure in job https://hydra.nixos.org/build/233202720 at 2023-09-02 + - type-safe-avl # failure in job https://hydra.nixos.org/build/233203946 at 2023-09-02 + - types-compat # failure in job https://hydra.nixos.org/build/233249850 at 2023-09-02 + - type-settheory # failure in job https://hydra.nixos.org/build/233209513 at 2023-09-02 + - type-spine # failure in job https://hydra.nixos.org/build/233230265 at 2023-09-02 + - type-tree # failure in job https://hydra.nixos.org/build/233246842 at 2023-09-02 + - type-unary # failure in job https://hydra.nixos.org/build/233251718 at 2023-09-02 + - typograffiti # failure in job https://hydra.nixos.org/build/233195076 at 2023-09-02 + - typson-core # failure in job https://hydra.nixos.org/build/233257835 at 2023-09-02 + - tyro # failure in job https://hydra.nixos.org/build/233200171 at 2023-09-02 + - uAgda # failure in job https://hydra.nixos.org/build/233252487 at 2023-09-02 + - uberlast # failure in job https://hydra.nixos.org/build/233233074 at 2023-09-02 + - ucam-webauth-types # failure in job https://hydra.nixos.org/build/233260145 at 2023-09-02 + - ucl # failure in job https://hydra.nixos.org/build/233246651 at 2023-09-02 + - uconv # failure in job https://hydra.nixos.org/build/233215580 at 2023-09-02 + - udbus # failure in job https://hydra.nixos.org/build/233237275 at 2023-09-02 + - udp-conduit # failure in job https://hydra.nixos.org/build/233252067 at 2023-09-02 + - udp-streaming # failure in job https://hydra.nixos.org/build/233217795 at 2023-09-02 + - ueberzug # failure in job https://hydra.nixos.org/build/233205559 at 2023-09-02 + - uhexdump # failure in job https://hydra.nixos.org/build/233209647 at 2023-09-02 + - uhttpc # failure in job https://hydra.nixos.org/build/233232481 at 2023-09-02 + - ui-command # failure in job https://hydra.nixos.org/build/233223762 at 2023-09-02 + - ukrainian-phonetics-basic-array-bytestring # failure in job https://hydra.nixos.org/build/233228787 at 2023-09-02 + - unamb-custom # failure in job https://hydra.nixos.org/build/233197458 at 2023-09-02 + - unbeliever # failure in job https://hydra.nixos.org/build/233221256 at 2023-09-02 + - unbounded-delays-units # failure in job https://hydra.nixos.org/build/233200989 at 2023-09-02 + - unboxed-containers # failure in job https://hydra.nixos.org/build/233200384 at 2023-09-02 + - unboxed # failure in job https://hydra.nixos.org/build/233219555 at 2023-09-02 + - unboxed-references # failure in job https://hydra.nixos.org/build/233192713 at 2023-09-02 + - unbreak # failure in job https://hydra.nixos.org/build/233242560 at 2023-09-02 + - unfix-binders # failure in job https://hydra.nixos.org/build/233259262 at 2023-09-02 + - unicode-general-category # failure in job https://hydra.nixos.org/build/233250572 at 2023-09-02 + - unicode-prelude # failure in job https://hydra.nixos.org/build/233241723 at 2023-09-02 + - unicode-symbols # failure in job https://hydra.nixos.org/build/233241639 at 2023-09-02 + - unicode-tricks # failure in job https://hydra.nixos.org/build/233258238 at 2023-09-02 + - union-find # failure in job https://hydra.nixos.org/build/233245476 at 2023-09-02 + - union-map # failure in job https://hydra.nixos.org/build/233222765 at 2023-09-02 + - uniprot-kb # failure in job https://hydra.nixos.org/build/233209692 at 2023-09-02 + - uniqueid # failure in job https://hydra.nixos.org/build/233251447 at 2023-09-02 + - uniquely-represented-sets # failure in job https://hydra.nixos.org/build/233242429 at 2023-09-02 + - uniqueness-periods-general # failure in job https://hydra.nixos.org/build/233208045 at 2023-09-02 + - uniqueness-periods-vector-common # failure in job https://hydra.nixos.org/build/233210018 at 2023-09-02 + - uniqueness-periods-vector # failure in job https://hydra.nixos.org/build/233243213 at 2023-09-02 + - units-attoparsec # failure in job https://hydra.nixos.org/build/233196308 at 2023-09-02 + - unittyped # failure in job https://hydra.nixos.org/build/233215159 at 2023-09-02 + - unitym # failure in job https://hydra.nixos.org/build/233246346 at 2023-09-02 + - uni-util # failure in job https://hydra.nixos.org/build/233219676 at 2023-09-02 + - universal-binary # failure in job https://hydra.nixos.org/build/233240583 at 2023-09-02 + - universe-instances-base # failure in job https://hydra.nixos.org/build/233197845 at 2023-09-02 + - universe-instances-trans # failure in job https://hydra.nixos.org/build/233235623 at 2023-09-02 + - universe-some # failure in job https://hydra.nixos.org/build/233254356 at 2023-09-02 + - unix-handle # failure in job https://hydra.nixos.org/build/233233273 at 2023-09-02 + - unix-process-conduit # failure in job https://hydra.nixos.org/build/233191509 at 2023-09-02 + - unix-recursive # failure in job https://hydra.nixos.org/build/233194742 at 2023-09-02 + - unlifted-list # failure in job https://hydra.nixos.org/build/233205239 at 2023-09-02 + - unlift # failure in job https://hydra.nixos.org/build/233217875 at 2023-09-02 + - unliftio-messagebox # failure in job https://hydra.nixos.org/build/233200633 at 2023-09-02 + - unlift-stm # failure in job https://hydra.nixos.org/build/233202388 at 2023-09-02 + - unm-hip # failure in job https://hydra.nixos.org/build/233232865 at 2023-09-02 + - unordered-containers-rematch # failure in job https://hydra.nixos.org/build/233220800 at 2023-09-02 + - unordered-graphs # failure in job https://hydra.nixos.org/build/233190879 at 2023-09-02 + - unordered-intmap # failure in job https://hydra.nixos.org/build/233194954 at 2023-09-02 + - unpacked-either # failure in job https://hydra.nixos.org/build/233207731 at 2023-09-02 + - unpacked-maybe # failure in job https://hydra.nixos.org/build/233197926 at 2023-09-02 + - unpacked-maybe-numeric # failure in job https://hydra.nixos.org/build/233250596 at 2023-09-02 + - unpack-funcs # failure in job https://hydra.nixos.org/build/233196365 at 2023-09-02 + - unroll-ghc-plugin # failure in job https://hydra.nixos.org/build/233212728 at 2023-09-02 + - unsafely # failure in job https://hydra.nixos.org/build/233238669 at 2023-09-02 + - unsatisfiable # failure in job https://hydra.nixos.org/build/233228680 at 2023-09-02 + - unsequential # failure in job https://hydra.nixos.org/build/233244400 at 2023-09-02 + - unused # failure in job https://hydra.nixos.org/build/233243602 at 2023-09-02 + - uom-plugin # failure in job https://hydra.nixos.org/build/233228019 at 2023-09-02 + - Updater # failure in job https://hydra.nixos.org/build/233215373 at 2023-09-02 + - uploadcare # failure in job https://hydra.nixos.org/build/233197403 at 2023-09-02 + - upskirt # failure in job https://hydra.nixos.org/build/233226983 at 2023-09-02 + - urbit-hob # failure in job https://hydra.nixos.org/build/233209231 at 2023-09-02 + - uri-conduit # failure in job https://hydra.nixos.org/build/233252949 at 2023-09-02 + - uri-encoder # failure in job https://hydra.nixos.org/build/233228287 at 2023-09-02 + - uri # failure in job https://hydra.nixos.org/build/233229150 at 2023-09-02 + - uri-parse # failure in job https://hydra.nixos.org/build/233258573 at 2023-09-02 + - uri-template # failure in job https://hydra.nixos.org/build/233243696 at 2023-09-02 + - uri-templater # failure in job https://hydra.nixos.org/build/233231885 at 2023-09-02 + - URLb # failure in job https://hydra.nixos.org/build/233226766 at 2023-09-02 + - url-bytes # failure in job https://hydra.nixos.org/build/233226116 at 2023-09-02 + - urlcheck # failure in job https://hydra.nixos.org/build/233211869 at 2023-09-02 + - urldecode # failure in job https://hydra.nixos.org/build/233258501 at 2023-09-02 + - url-decoders # failure in job https://hydra.nixos.org/build/233245312 at 2023-09-02 + - urldisp-happstack # failure in job https://hydra.nixos.org/build/233194536 at 2023-09-02 + - urlencoded # failure in job https://hydra.nixos.org/build/233205629 at 2023-09-02 + - url-generic # failure in job https://hydra.nixos.org/build/233221641 at 2023-09-02 + - urn # failure in job https://hydra.nixos.org/build/233228949 at 2023-09-02 + - urn-random # failure in job https://hydra.nixos.org/build/233243986 at 2023-09-02 + - urxml # failure in job https://hydra.nixos.org/build/233195104 at 2023-09-02 + - useragents # failure in job https://hydra.nixos.org/build/233203723 at 2023-09-02 + - userid # failure in job https://hydra.nixos.org/build/233227019 at 2023-09-02 + - users-persistent # failure in job https://hydra.nixos.org/build/233258182 at 2023-09-02 + - utc # failure in job https://hydra.nixos.org/build/233218307 at 2023-09-02 + - utf8-conversions # failure in job https://hydra.nixos.org/build/233245725 at 2023-09-02 + - utf8-prelude # failure in job https://hydra.nixos.org/build/233240100 at 2023-09-02 + - utf8-validator # failure in job https://hydra.nixos.org/build/233211712 at 2023-09-02 + - util # failure in job https://hydra.nixos.org/build/233234741 at 2023-09-02 + - util-logict # failure in job https://hydra.nixos.org/build/233215338 at 2023-09-02 + - util-plus # failure in job https://hydra.nixos.org/build/233231591 at 2023-09-02 + - util-primitive # failure in job https://hydra.nixos.org/build/233258861 at 2023-09-02 + - uuagc-bootstrap # failure in job https://hydra.nixos.org/build/233254123 at 2023-09-02 + - uuagc-diagrams # failure in job https://hydra.nixos.org/build/233247645 at 2023-09-02 + - uu-cco # failure in job https://hydra.nixos.org/build/233259027 at 2023-09-02 + - uuid-aeson # failure in job https://hydra.nixos.org/build/233219695 at 2023-09-02 + - uusi # failure in job https://hydra.nixos.org/build/233201662 at 2023-09-02 + - uvector # failure in job https://hydra.nixos.org/build/233224782 at 2023-09-02 + - uxadt # failure in job https://hydra.nixos.org/build/233254972 at 2023-09-02 + - vabal-lib # failure in job https://hydra.nixos.org/build/233198776 at 2023-09-02 + - vacuum # failure in job https://hydra.nixos.org/build/233238529 at 2023-09-02 + - vado # failure in job https://hydra.nixos.org/build/233202865 at 2023-09-02 + - validated-types # failure in job https://hydra.nixos.org/build/233258079 at 2023-09-02 + - Validation # failure in job https://hydra.nixos.org/build/233253977 at 2023-09-02 + - validations # failure in job https://hydra.nixos.org/build/233208976 at 2023-09-02 + - validators # failure in job https://hydra.nixos.org/build/233235532 at 2023-09-02 + - validity-network-uri # failure in job https://hydra.nixos.org/build/233240551 at 2023-09-02 + - valid-names # failure in job https://hydra.nixos.org/build/233213115 at 2023-09-02 + - value-supply # failure in job https://hydra.nixos.org/build/233190936 at 2023-09-02 + - vampire # failure in job https://hydra.nixos.org/build/233216179 at 2023-09-02 + - varan # failure in job https://hydra.nixos.org/build/233232057 at 2023-09-02 + - var # failure in job https://hydra.nixos.org/build/233240303 at 2023-09-02 + - variable-media-field # failure in job https://hydra.nixos.org/build/233231573 at 2023-09-02 + - variables # failure in job https://hydra.nixos.org/build/233237682 at 2023-09-02 + - variadic # failure in job https://hydra.nixos.org/build/233209743 at 2023-09-02 + - variation # failure in job https://hydra.nixos.org/build/233240549 at 2023-09-02 + - vault-tool # failure in job https://hydra.nixos.org/build/233217613 at 2023-09-02 + - vcache # failure in job https://hydra.nixos.org/build/233250925 at 2023-09-02 + - vcatt # failure in job https://hydra.nixos.org/build/233236976 at 2023-09-02 + - vcf # failure in job https://hydra.nixos.org/build/233246613 at 2023-09-02 + - vcswrapper # failure in job https://hydra.nixos.org/build/233228400 at 2023-09-02 + - Vec-Boolean # failure in job https://hydra.nixos.org/build/233218305 at 2023-09-02 + - Vec-OpenGLRaw # failure in job https://hydra.nixos.org/build/233230560 at 2023-09-02 + - vect-floating # failure in job https://hydra.nixos.org/build/233196146 at 2023-09-02 + - vect-opengl # failure in job https://hydra.nixos.org/build/233230142 at 2023-09-02 + - vector-bytestring # failure in job https://hydra.nixos.org/build/233209167 at 2023-09-02 + - vector-circular # failure in job https://hydra.nixos.org/build/233230058 at 2023-09-02 + - vector-clock # failure in job https://hydra.nixos.org/build/233203491 at 2023-09-02 + - vector-conduit # failure in job https://hydra.nixos.org/build/233237284 at 2023-09-02 + - vector-doublezip # failure in job https://hydra.nixos.org/build/233252979 at 2023-09-02 + - vector-endian # failure in job https://hydra.nixos.org/build/233237355 at 2023-09-02 + - vector-fftw # failure in job https://hydra.nixos.org/build/233221978 at 2023-09-02 + - vector-functorlazy # failure in job https://hydra.nixos.org/build/233201658 at 2023-09-02 + - vector-heterogenous # failure in job https://hydra.nixos.org/build/233221627 at 2023-09-02 + - vector-random # failure in job https://hydra.nixos.org/build/233254910 at 2023-09-02 + - vector-read-instances # failure in job https://hydra.nixos.org/build/233220057 at 2023-09-02 + - vector-shuffling # failure in job https://hydra.nixos.org/build/233245999 at 2023-09-02 + - vector-space-map # failure in job https://hydra.nixos.org/build/233235784 at 2023-09-02 + - vector-space-opengl # failure in job https://hydra.nixos.org/build/233206443 at 2023-09-02 + - vector-space-points # failure in job https://hydra.nixos.org/build/233230506 at 2023-09-02 + - vector-static # failure in job https://hydra.nixos.org/build/233236346 at 2023-09-02 + - vega-view # failure in job https://hydra.nixos.org/build/233224980 at 2023-09-02 + - velma # failure in job https://hydra.nixos.org/build/233252875 at 2023-09-02 + - Verba # failure in job https://hydra.nixos.org/build/233237824 at 2023-09-02 + - verbalexpressions # failure in job https://hydra.nixos.org/build/233247870 at 2023-09-02 + - verdict # failure in job https://hydra.nixos.org/build/233238835 at 2023-09-02 + - verify # failure in job https://hydra.nixos.org/build/233239874 at 2023-09-02 + - verilog # failure in job https://hydra.nixos.org/build/233211999 at 2023-09-02 + - versioning # failure in job https://hydra.nixos.org/build/233205892 at 2023-09-02 + - vformat # failure in job https://hydra.nixos.org/build/233222840 at 2023-09-02 + - vgrep # failure in job https://hydra.nixos.org/build/233210982 at 2023-09-02 + - vhd # failure in job https://hydra.nixos.org/build/233230229 at 2023-09-02 + - vhdl # failure in job https://hydra.nixos.org/build/233244814 at 2023-09-02 + - vicinity # failure in job https://hydra.nixos.org/build/233240251 at 2023-09-02 + - viewprof # failure in job https://hydra.nixos.org/build/233257842 at 2023-09-02 + - views # failure in job https://hydra.nixos.org/build/233203371 at 2023-09-02 + - Villefort # failure in job https://hydra.nixos.org/build/233224994 at 2023-09-02 + - vimus # failure in job https://hydra.nixos.org/build/233227980 at 2023-09-02 + - vintage-basic # failure in job https://hydra.nixos.org/build/233241073 at 2023-09-02 + - vinyl-json # failure in job https://hydra.nixos.org/build/233207036 at 2023-09-02 + - vinyl-named-sugar # failure in job https://hydra.nixos.org/build/233205326 at 2023-09-02 + - vinyl-plus # failure in job https://hydra.nixos.org/build/233237873 at 2023-09-02 + - vinyl-utils # failure in job https://hydra.nixos.org/build/233209198 at 2023-09-02 + - vinyl-vectors # failure in job https://hydra.nixos.org/build/233209137 at 2023-09-02 + - virthualenv # failure in job https://hydra.nixos.org/build/233216281 at 2023-09-02 + - visibility # failure in job https://hydra.nixos.org/build/233206672 at 2023-09-02 + - visual-prof # failure in job https://hydra.nixos.org/build/233250080 at 2023-09-02 + - vitrea # failure in job https://hydra.nixos.org/build/233252038 at 2023-09-02 + - vk-aws-route53 # failure in job https://hydra.nixos.org/build/233250126 at 2023-09-02 + - VKHS # failure in job https://hydra.nixos.org/build/233246557 at 2023-09-02 + - vowpal-utils # failure in job https://hydra.nixos.org/build/233251505 at 2023-09-02 + - voyeur # failure in job https://hydra.nixos.org/build/233234792 at 2023-09-02 + - VRML # failure in job https://hydra.nixos.org/build/233256643 at 2023-09-02 + - vte # failure in job https://hydra.nixos.org/build/233234429 at 2023-09-02 + - vtegtk3 # failure in job https://hydra.nixos.org/build/233226713 at 2023-09-02 + - vt-utils # failure in job https://hydra.nixos.org/build/233244619 at 2023-09-02 + - vty-examples # failure in job https://hydra.nixos.org/build/233235872 at 2023-09-02 + - vty-menu # failure in job https://hydra.nixos.org/build/233232391 at 2023-09-02 + - vty-ui # failure in job https://hydra.nixos.org/build/233200900 at 2023-09-02 + - wacom-daemon # failure in job https://hydra.nixos.org/build/233213077 at 2023-09-02 + - waddle # failure in job https://hydra.nixos.org/build/233239973 at 2023-09-02 + - wai-git-http # failure in job https://hydra.nixos.org/build/233191513 at 2023-09-02 + - wai-graceful # failure in job https://hydra.nixos.org/build/233243180 at 2023-09-02 + - wai-handler-devel # failure in job https://hydra.nixos.org/build/233226033 at 2023-09-02 + - wai-handler-fastcgi # failure in job https://hydra.nixos.org/build/233221946 at 2023-09-02 + - wai-handler-scgi # failure in job https://hydra.nixos.org/build/233246939 at 2023-09-02 + - wai-handler-webkit # failure in job https://hydra.nixos.org/build/233236556 at 2023-09-02 + - wai-hmac-auth # failure in job https://hydra.nixos.org/build/233210044 at 2023-09-02 + - wai-lens # failure in job https://hydra.nixos.org/build/233225852 at 2023-09-02 + - wai-lite # failure in job https://hydra.nixos.org/build/233234657 at 2023-09-02 + - wai-logger-buffered # failure in job https://hydra.nixos.org/build/233196102 at 2023-09-02 + - wai-logger-prefork # failure in job https://hydra.nixos.org/build/233202495 at 2023-09-02 + - wai-middleware-auth # failure in job https://hydra.nixos.org/build/233199447 at 2023-09-02 + - wai-middleware-catch # failure in job https://hydra.nixos.org/build/233222782 at 2023-09-02 + - wai-middleware-crowd # failure in job https://hydra.nixos.org/build/233237853 at 2023-09-02 + - wai-middleware-delegate # failure in job https://hydra.nixos.org/build/233197338 at 2023-09-02 + - wai-middleware-etag # failure in job https://hydra.nixos.org/build/233212107 at 2023-09-02 + - wai-middleware-headers # failure in job https://hydra.nixos.org/build/233229927 at 2023-09-02 + - wai-middleware-hmac-client # failure in job https://hydra.nixos.org/build/233249856 at 2023-09-02 + - wai-middleware-preprocessor # failure in job https://hydra.nixos.org/build/233227365 at 2023-09-02 + - wai-middleware-static-caching # failure in job https://hydra.nixos.org/build/233208386 at 2023-09-02 + - wai-middleware-travisci # failure in job https://hydra.nixos.org/build/233215805 at 2023-09-02 + - wai-problem-details # failure in job https://hydra.nixos.org/build/233227727 at 2023-09-02 + - wai-rate-limit-postgres # failure in job https://hydra.nixos.org/build/233244097 at 2023-09-02 + - wai-rate-limit-redis # failure in job https://hydra.nixos.org/build/233207860 at 2023-09-02 + - wai-request-spec # failure in job https://hydra.nixos.org/build/233252640 at 2023-09-02 + - wai-responsible # failure in job https://hydra.nixos.org/build/233248119 at 2023-09-02 + - wai-router # failure in job https://hydra.nixos.org/build/233253691 at 2023-09-02 + - wai-routes # failure in job https://hydra.nixos.org/build/233243854 at 2023-09-02 + - wai-saml2 # failure in job https://hydra.nixos.org/build/233197938 at 2023-09-02 + - wai-secure-cookies # failure in job https://hydra.nixos.org/build/233216416 at 2023-09-02 + - wai-session-mysql # failure in job https://hydra.nixos.org/build/233206451 at 2023-09-02 + - wai-session-postgresql # failure in job https://hydra.nixos.org/build/233229871 at 2023-09-02 + - wai-session-redis # failure in job https://hydra.nixos.org/build/233218737 at 2023-09-02 + - wai-static-cache # failure in job https://hydra.nixos.org/build/233228597 at 2023-09-02 + - waitfree # failure in job https://hydra.nixos.org/build/233222583 at 2023-09-02 + - wai-throttler # failure in job https://hydra.nixos.org/build/233231002 at 2023-09-02 + - waitra # failure in job https://hydra.nixos.org/build/233222291 at 2023-09-02 + - wakame # failure in job https://hydra.nixos.org/build/233254673 at 2023-09-02 + - wallpaper # failure in job https://hydra.nixos.org/build/233219027 at 2023-09-02 + - warc # failure in job https://hydra.nixos.org/build/233215734 at 2023-09-02 + - warp-dynamic # failure in job https://hydra.nixos.org/build/233220479 at 2023-09-02 + - warp-static # failure in job https://hydra.nixos.org/build/233239581 at 2023-09-02 + - warp-systemd # failure in job https://hydra.nixos.org/build/233215956 at 2023-09-02 + - wasm # failure in job https://hydra.nixos.org/build/233249877 at 2023-09-02 + - watcher # failure in job https://hydra.nixos.org/build/233245056 at 2023-09-02 + - watchit # failure in job https://hydra.nixos.org/build/233199573 at 2023-09-02 + - wavefront # failure in job https://hydra.nixos.org/build/233248071 at 2023-09-02 + - wavefront-obj # failure in job https://hydra.nixos.org/build/233200951 at 2023-09-02 + - weak-bag # failure in job https://hydra.nixos.org/build/233198097 at 2023-09-02 + - WeakSets # failure in job https://hydra.nixos.org/build/233199611 at 2023-09-02 + - weather-api # failure in job https://hydra.nixos.org/build/233202108 at 2023-09-02 + - Weather # failure in job https://hydra.nixos.org/build/233197934 at 2023-09-02 + - web3-ipfs # failure in job https://hydra.nixos.org/build/233235342 at 2023-09-02 + - webapi # failure in job https://hydra.nixos.org/build/233243522 at 2023-09-02 + - webapp # failure in job https://hydra.nixos.org/build/233201743 at 2023-09-02 + - webauthn # failure in job https://hydra.nixos.org/build/233255527 at 2023-09-02 + - WebBits # failure in job https://hydra.nixos.org/build/233244872 at 2023-09-02 + - webby # failure in job https://hydra.nixos.org/build/233221764 at 2023-09-02 + - webcloud # failure in job https://hydra.nixos.org/build/233239317 at 2023-09-02 + - webcrank-dispatch # failure in job https://hydra.nixos.org/build/233209191 at 2023-09-02 + - webcrank # failure in job https://hydra.nixos.org/build/233212229 at 2023-09-02 + - web-css # failure in job https://hydra.nixos.org/build/233195455 at 2023-09-02 + - webdriver-angular # failure in job https://hydra.nixos.org/build/233212981 at 2023-09-02 + - webdriver-snoy # failure in job https://hydra.nixos.org/build/233251068 at 2023-09-02 + - web-encodings # failure in job https://hydra.nixos.org/build/233199718 at 2023-09-02 + - WeberLogic # failure in job https://hydra.nixos.org/build/233209283 at 2023-09-02 + - webfinger-client # failure in job https://hydra.nixos.org/build/233252528 at 2023-09-02 + - webkitgtk3 # failure in job https://hydra.nixos.org/build/233215712 at 2023-09-02 + - webkit-javascriptcore # failure in job https://hydra.nixos.org/build/233208424 at 2023-09-02 + - webmention # failure in job https://hydra.nixos.org/build/233208899 at 2023-09-02 + - web-output # failure in job https://hydra.nixos.org/build/233191936 at 2023-09-02 + - web-page # failure in job https://hydra.nixos.org/build/233243334 at 2023-09-02 + - web-plugins # failure in job https://hydra.nixos.org/build/233207596 at 2023-09-02 + - web-push # failure in job https://hydra.nixos.org/build/233206721 at 2023-09-02 + - Webrexp # failure in job https://hydra.nixos.org/build/233212376 at 2023-09-02 + - web-routes-quasi # failure in job https://hydra.nixos.org/build/233222454 at 2023-09-02 + - web-routes-transformers # failure in job https://hydra.nixos.org/build/233256428 at 2023-09-02 + - webshow # failure in job https://hydra.nixos.org/build/233243842 at 2023-09-02 + - webwire # failure in job https://hydra.nixos.org/build/233233892 at 2023-09-02 + - WEditor # failure in job https://hydra.nixos.org/build/233215233 at 2023-09-02 + - weighted-regexp # failure in job https://hydra.nixos.org/build/233243077 at 2023-09-02 + - welshy # failure in job https://hydra.nixos.org/build/233224249 at 2023-09-02 + - werewolf # failure in job https://hydra.nixos.org/build/233250937 at 2023-09-02 + - wgpu-raw-hs # failure in job https://hydra.nixos.org/build/233221814 at 2023-09-02 + - Wheb # failure in job https://hydra.nixos.org/build/233258281 at 2023-09-02 + - while-lang-parser # failure in job https://hydra.nixos.org/build/233237507 at 2023-09-02 + - whiskers # failure in job https://hydra.nixos.org/build/233258941 at 2023-09-02 + - whois # failure in job https://hydra.nixos.org/build/233250022 at 2023-09-02 + - why3 # failure in job https://hydra.nixos.org/build/233235892 at 2023-09-02 + - wide-word-instances # failure in job https://hydra.nixos.org/build/233253084 at 2023-09-02 + - wikicfp-scraper # failure in job https://hydra.nixos.org/build/233198432 at 2023-09-02 + - WikimediaParser # failure in job https://hydra.nixos.org/build/233242393 at 2023-09-02 + - wild-bind # failure in job https://hydra.nixos.org/build/233200102 at 2023-09-02 + - willow # failure in job https://hydra.nixos.org/build/233215807 at 2023-09-02 + - windns # failure in job https://hydra.nixos.org/build/233242724 at 2023-09-02 + - window-utils # failure in job https://hydra.nixos.org/build/233238667 at 2023-09-02 + - winerror # failure in job https://hydra.nixos.org/build/233196100 at 2023-09-02 + - wireguard-hs # failure in job https://hydra.nixos.org/build/233218722 at 2023-09-02 + - wires # failure in job https://hydra.nixos.org/build/233192321 at 2023-09-02 + - wiring # failure in job https://hydra.nixos.org/build/233191683 at 2023-09-02 + - witty # failure in job https://hydra.nixos.org/build/233194976 at 2023-09-02 + - wkt # failure in job https://hydra.nixos.org/build/233220848 at 2023-09-02 + - wkt-geom # failure in job https://hydra.nixos.org/build/233199774 at 2023-09-02 + - WL500gPLib # failure in job https://hydra.nixos.org/build/233203811 at 2023-09-02 + - wl-pprint-console # failure in job https://hydra.nixos.org/build/233204682 at 2023-09-02 + - wl-pprint-extras # failure in job https://hydra.nixos.org/build/233233369 at 2023-09-02 + - WMSigner # failure in job https://hydra.nixos.org/build/233199780 at 2023-09-02 + - woe # failure in job https://hydra.nixos.org/build/233222792 at 2023-09-02 + - woffex # failure in job https://hydra.nixos.org/build/233210566 at 2023-09-02 + - wol # failure in job https://hydra.nixos.org/build/233237896 at 2023-09-02 + - word24 # failure in job https://hydra.nixos.org/build/233259494 at 2023-09-02 + - word2vec-model # failure in job https://hydra.nixos.org/build/233209500 at 2023-09-02 + - word8set # failure in job https://hydra.nixos.org/build/233246039 at 2023-09-02 + - wordify # failure in job https://hydra.nixos.org/build/233229102 at 2023-09-02 + - Wordlint # failure in job https://hydra.nixos.org/build/233233123 at 2023-09-02 + - wordlist # failure in job https://hydra.nixos.org/build/233199456 at 2023-09-02 + - WordNet # failure in job https://hydra.nixos.org/build/233201604 at 2023-09-02 + - WordNet-ghc74 # failure in job https://hydra.nixos.org/build/233192586 at 2023-09-02 + - wordn # failure in job https://hydra.nixos.org/build/233238840 at 2023-09-02 + - wordpass # failure in job https://hydra.nixos.org/build/233202954 at 2023-09-02 + - wordsearch # failure in job https://hydra.nixos.org/build/233203803 at 2023-09-02 + - workdays # failure in job https://hydra.nixos.org/build/233209994 at 2023-09-02 + - Workflow # failure in job https://hydra.nixos.org/build/233203463 at 2023-09-02 + - workflow-osx # failure in job https://hydra.nixos.org/build/233235315 at 2023-09-02 + - workflow-windows # failure in job https://hydra.nixos.org/build/233257774 at 2023-09-02 + - work-time # failure in job https://hydra.nixos.org/build/233245304 at 2023-09-02 + - wp-archivebot # failure in job https://hydra.nixos.org/build/233195749 at 2023-09-02 + - wreq-helper # failure in job https://hydra.nixos.org/build/233228914 at 2023-09-02 + - wreq-patchable # failure in job https://hydra.nixos.org/build/233237832 at 2023-09-02 + - wreq-sb # failure in job https://hydra.nixos.org/build/233259269 at 2023-09-02 + - writer-cps-lens # failure in job https://hydra.nixos.org/build/233238466 at 2023-09-02 + - writer-cps-monads-tf # failure in job https://hydra.nixos.org/build/233218245 at 2023-09-02 + - writer-cps-morph # failure in job https://hydra.nixos.org/build/233241891 at 2023-09-02 + - wsdl # failure in job https://hydra.nixos.org/build/233208187 at 2023-09-02 + - wsedit # failure in job https://hydra.nixos.org/build/233232333 at 2023-09-02 + - wtk # failure in job https://hydra.nixos.org/build/233220668 at 2023-09-02 + - wumpus-core # failure in job https://hydra.nixos.org/build/233244405 at 2023-09-02 + - wxdirect # failure in job https://hydra.nixos.org/build/233255519 at 2023-09-02 + - X11-extras # failure in job https://hydra.nixos.org/build/233226031 at 2023-09-02 + - X11-rm # failure in job https://hydra.nixos.org/build/233242806 at 2023-09-02 + - X11-xdamage # failure in job https://hydra.nixos.org/build/233194342 at 2023-09-02 + - X11-xfixes # failure in job https://hydra.nixos.org/build/233256494 at 2023-09-02 + - xchat-plugin # failure in job https://hydra.nixos.org/build/233238679 at 2023-09-02 + - xcp # failure in job https://hydra.nixos.org/build/233208926 at 2023-09-02 + - x-dsp # failure in job https://hydra.nixos.org/build/233218091 at 2023-09-02 + - Xec # failure in job https://hydra.nixos.org/build/233191564 at 2023-09-02 + - xenstore # failure in job https://hydra.nixos.org/build/233234469 at 2023-09-02 + - X # failure in job https://hydra.nixos.org/build/233217783 at 2023-09-02 + - xfconf # failure in job https://hydra.nixos.org/build/233234800 at 2023-09-02 + - xformat # failure in job https://hydra.nixos.org/build/233211918 at 2023-09-02 + - xhaskell-library # failure in job https://hydra.nixos.org/build/233221178 at 2023-09-02 + - xhb # failure in job https://hydra.nixos.org/build/233204853 at 2023-09-02 + - xilinx-lava # failure in job https://hydra.nixos.org/build/233247659 at 2023-09-02 + - xine # failure in job https://hydra.nixos.org/build/233255620 at 2023-09-02 + - xing-api # failure in job https://hydra.nixos.org/build/233220080 at 2023-09-02 + - xkbcommon # failure in job https://hydra.nixos.org/build/233237797 at 2023-09-02 + - xkcd # failure in job https://hydra.nixos.org/build/233211690 at 2023-09-02 + - xleb # failure in job https://hydra.nixos.org/build/233232785 at 2023-09-02 + - xls # failure in job https://hydra.nixos.org/build/233201430 at 2023-09-02 + - xlsior # failure in job https://hydra.nixos.org/build/233199562 at 2023-09-02 + - xlsx-tabular # failure in job https://hydra.nixos.org/build/233199137 at 2023-09-02 + - xlsx-templater # failure in job https://hydra.nixos.org/build/233245940 at 2023-09-02 + - xml2json # failure in job https://hydra.nixos.org/build/233254605 at 2023-09-02 + - xml-conduit-decode # failure in job https://hydra.nixos.org/build/233191276 at 2023-09-02 + - xml-conduit-parse # failure in job https://hydra.nixos.org/build/233200360 at 2023-09-02 + - xml-conduit-selectors # failure in job https://hydra.nixos.org/build/233223331 at 2023-09-02 + - xml-conduit-stylist # failure in job https://hydra.nixos.org/build/233226507 at 2023-09-02 + - xml-html-conduit-lens # failure in job https://hydra.nixos.org/build/233238471 at 2023-09-02 + - XmlHtmlWriter # failure in job https://hydra.nixos.org/build/233213597 at 2023-09-02 + - xml-parsec # failure in job https://hydra.nixos.org/build/233208461 at 2023-09-02 + - xml-prettify # failure in job https://hydra.nixos.org/build/233225974 at 2023-09-02 + - xml-prettify-text # failure in job https://hydra.nixos.org/build/233202586 at 2023-09-02 + - xml-query # failure in job https://hydra.nixos.org/build/233194795 at 2023-09-02 + - xml-syntax # failure in job https://hydra.nixos.org/build/233245678 at 2023-09-02 + - xml-to-json # failure in job https://hydra.nixos.org/build/233197489 at 2023-09-02 + - xml-tydom-core # failure in job https://hydra.nixos.org/build/233206253 at 2023-09-02 + - xml-verify # failure in job https://hydra.nixos.org/build/233237302 at 2023-09-02 + - XMMS # failure in job https://hydra.nixos.org/build/233196853 at 2023-09-02 + - xmonad-bluetilebranch # failure in job https://hydra.nixos.org/build/233221580 at 2023-09-02 + - xmonad-contrib-gpl # failure in job https://hydra.nixos.org/build/233251722 at 2023-09-02 + - xmonad-entryhelper # failure in job https://hydra.nixos.org/build/233249530 at 2023-09-02 + - xmonad-eval # failure in job https://hydra.nixos.org/build/233248519 at 2023-09-02 + - xmonad-screenshot # failure in job https://hydra.nixos.org/build/233233742 at 2023-09-02 + - xmonad-vanessa # failure in job https://hydra.nixos.org/build/233214303 at 2023-09-02 + - xmonad-wallpaper # failure in job https://hydra.nixos.org/build/233217165 at 2023-09-02 + - xmonad-windownames # failure in job https://hydra.nixos.org/build/233258043 at 2023-09-02 + - Xorshift128Plus # failure in job https://hydra.nixos.org/build/233225679 at 2023-09-02 + - xorshift-plus # failure in job https://hydra.nixos.org/build/233255176 at 2023-09-02 + - xsact # failure in job https://hydra.nixos.org/build/233221821 at 2023-09-02 + - xsd # failure in job https://hydra.nixos.org/build/233209021 at 2023-09-02 + - xsha1 # failure in job https://hydra.nixos.org/build/233257136 at 2023-09-02 + - xslt # failure in job https://hydra.nixos.org/build/233225636 at 2023-09-02 + - xxhash # failure in job https://hydra.nixos.org/build/233240335 at 2023-09-02 + - y0l0bot # failure in job https://hydra.nixos.org/build/233212722 at 2023-09-02 + - yabi-muno # failure in job https://hydra.nixos.org/build/233246871 at 2023-09-02 + - yackage # failure in job https://hydra.nixos.org/build/233213393 at 2023-09-02 + - YACPong # failure in job https://hydra.nixos.org/build/233203317 at 2023-09-02 + - yahoo-finance-api # failure in job https://hydra.nixos.org/build/233248439 at 2023-09-02 + - yahoo-finance-conduit # failure in job https://hydra.nixos.org/build/233235625 at 2023-09-02 + - yahoo-prices # failure in job https://hydra.nixos.org/build/233211650 at 2023-09-02 + - yahoo-web-search # failure in job https://hydra.nixos.org/build/233201427 at 2023-09-02 + - yajl # failure in job https://hydra.nixos.org/build/233242185 at 2023-09-02 + - yak # failure in job https://hydra.nixos.org/build/233207129 at 2023-09-02 + - yall # failure in job https://hydra.nixos.org/build/233254805 at 2023-09-02 + - yam-app # failure in job https://hydra.nixos.org/build/233250535 at 2023-09-02 + - yam-config # failure in job https://hydra.nixos.org/build/233194454 at 2023-09-02 + - yaml-combinators # failure in job https://hydra.nixos.org/build/233225265 at 2023-09-02 + - yaml-config # failure in job https://hydra.nixos.org/build/233242910 at 2023-09-02 + - yamlkeysdiff # failure in job https://hydra.nixos.org/build/233234710 at 2023-09-02 + - yaml-light-lens # failure in job https://hydra.nixos.org/build/233251688 at 2023-09-02 + - yaml-pretty-extras # failure in job https://hydra.nixos.org/build/233219040 at 2023-09-02 + - YamlReference # failure in job https://hydra.nixos.org/build/233222700 at 2023-09-02 + - yaml-rpc # failure in job https://hydra.nixos.org/build/233192097 at 2023-09-02 + - yaml-union # failure in job https://hydra.nixos.org/build/233253896 at 2023-09-02 + - yampa-glfw # failure in job https://hydra.nixos.org/build/233215695 at 2023-09-02 + - yampa-sdl2 # failure in job https://hydra.nixos.org/build/233246927 at 2023-09-02 + - YampaSynth # failure in job https://hydra.nixos.org/build/233226486 at 2023-09-02 + - yandex-translate # failure in job https://hydra.nixos.org/build/233225152 at 2023-09-02 + - yaop # failure in job https://hydra.nixos.org/build/233215867 at 2023-09-02 + - yapb # failure in job https://hydra.nixos.org/build/233246177 at 2023-09-02 + - yarn2nix # failure in job https://hydra.nixos.org/build/233216079 at 2023-09-02 + - yarr # failure in job https://hydra.nixos.org/build/233209487 at 2023-09-02 + - yate # failure in job https://hydra.nixos.org/build/233231754 at 2023-09-02 + - yaya-test # failure in job https://hydra.nixos.org/build/233254306 at 2023-09-02 + - yaya-unsafe-test # failure in job https://hydra.nixos.org/build/233194827 at 2023-09-02 + - yeller # failure in job https://hydra.nixos.org/build/233240270 at 2023-09-02 + - yeshql-hdbc # failure in job https://hydra.nixos.org/build/233245733 at 2023-09-02 + - yeshql-postgresql-simple # failure in job https://hydra.nixos.org/build/233238128 at 2023-09-02 + - yesod-angular # failure in job https://hydra.nixos.org/build/233237689 at 2023-09-02 + - yesod-angular-ui # failure in job https://hydra.nixos.org/build/233233873 at 2023-09-02 + - yesod-auth-account # failure in job https://hydra.nixos.org/build/233252535 at 2023-09-02 + - yesod-auth-account-fork # failure in job https://hydra.nixos.org/build/233251662 at 2023-09-02 + - yesod-auth-bcryptdb # failure in job https://hydra.nixos.org/build/233209630 at 2023-09-02 + - yesod-auth-bcrypt # failure in job https://hydra.nixos.org/build/233210341 at 2023-09-02 + - yesod-auth-deskcom # failure in job https://hydra.nixos.org/build/233230640 at 2023-09-02 + - yesod-auth-fb # failure in job https://hydra.nixos.org/build/233224172 at 2023-09-02 + - yesod-auth-hmac-keccak # failure in job https://hydra.nixos.org/build/233224778 at 2023-09-02 + - yesod-auth-kerberos # failure in job https://hydra.nixos.org/build/233245920 at 2023-09-02 + - yesod-auth-ldap-mediocre # failure in job https://hydra.nixos.org/build/233195322 at 2023-09-02 + - yesod-auth-ldap-native # failure in job https://hydra.nixos.org/build/233218681 at 2023-09-02 + - yesod-auth-nopassword # failure in job https://hydra.nixos.org/build/233197722 at 2023-09-02 + - yesod-auth-pam # failure in job https://hydra.nixos.org/build/233207688 at 2023-09-02 + - yesod-auth-smbclient # failure in job https://hydra.nixos.org/build/233234879 at 2023-09-02 + - yesod-auth-zendesk # failure in job https://hydra.nixos.org/build/233212653 at 2023-09-02 + - yesod-bootstrap # failure in job https://hydra.nixos.org/build/233205201 at 2023-09-02 + - yesod-comments # failure in job https://hydra.nixos.org/build/233252703 at 2023-09-02 + - yesod-content-pdf # failure in job https://hydra.nixos.org/build/233210723 at 2023-09-02 + - yesod-crud # failure in job https://hydra.nixos.org/build/233218383 at 2023-09-02 + - yesod-crud-persist # failure in job https://hydra.nixos.org/build/233245131 at 2023-09-02 + - yesod-csp # failure in job https://hydra.nixos.org/build/233207134 at 2023-09-02 + - yesod-datatables # failure in job https://hydra.nixos.org/build/233197763 at 2023-09-02 + - yesod-dsl # failure in job https://hydra.nixos.org/build/233210879 at 2023-09-02 + - yesod-fast-devel # failure in job https://hydra.nixos.org/build/233209381 at 2023-09-02 + - yesod-filter # failure in job https://hydra.nixos.org/build/233252569 at 2023-09-02 + - yesod-form-json # failure in job https://hydra.nixos.org/build/233210866 at 2023-09-02 + - yesod-form-richtext # failure in job https://hydra.nixos.org/build/233201156 at 2023-09-02 + - yesod-gitrev # failure in job https://hydra.nixos.org/build/233197294 at 2023-09-02 + - yesod-goodies # failure in job https://hydra.nixos.org/build/233223782 at 2023-09-02 + - yesod-ip # failure in job https://hydra.nixos.org/build/233254277 at 2023-09-02 + - yesod-job-queue # failure in job https://hydra.nixos.org/build/233259258 at 2023-09-02 + - yesod-katip # failure in job https://hydra.nixos.org/build/233236143 at 2023-09-02 + - yesod-links # failure in job https://hydra.nixos.org/build/233257763 at 2023-09-02 + - yesod-lucid # failure in job https://hydra.nixos.org/build/233231687 at 2023-09-02 + - yesod-paginate # failure in job https://hydra.nixos.org/build/233218563 at 2023-09-02 + - yesod-pagination # failure in job https://hydra.nixos.org/build/233204022 at 2023-09-02 + - yesod-pnotify # failure in job https://hydra.nixos.org/build/233258047 at 2023-09-02 + - yesod-pure # failure in job https://hydra.nixos.org/build/233192121 at 2023-09-02 + - yesod-raml # failure in job https://hydra.nixos.org/build/233230699 at 2023-09-02 + - yesod-recaptcha # failure in job https://hydra.nixos.org/build/233235972 at 2023-09-02 + - yesod-routes # failure in job https://hydra.nixos.org/build/233233323 at 2023-09-02 + - yesod-rst # failure in job https://hydra.nixos.org/build/233201863 at 2023-09-02 + - yesod-s3 # failure in job https://hydra.nixos.org/build/233224000 at 2023-09-02 + - yesod-sass # failure in job https://hydra.nixos.org/build/233240621 at 2023-09-02 + - yesod-static-angular # failure in job https://hydra.nixos.org/build/233249261 at 2023-09-02 + - yesod-static-remote # failure in job https://hydra.nixos.org/build/233218340 at 2023-09-02 + - yesod-static-streamly # failure in job https://hydra.nixos.org/build/233224664 at 2023-09-02 + - yesod-test-json # failure in job https://hydra.nixos.org/build/233227876 at 2023-09-02 + - yesod-text-markdown # failure in job https://hydra.nixos.org/build/233192278 at 2023-09-02 + - yesod-tls # failure in job https://hydra.nixos.org/build/233251484 at 2023-09-02 + - yesod-transloadit # failure in job https://hydra.nixos.org/build/233202132 at 2023-09-02 + - yesod-vend # failure in job https://hydra.nixos.org/build/233227545 at 2023-09-02 + - YFrob # failure in job https://hydra.nixos.org/build/233197612 at 2023-09-02 + - yggdrasil # failure in job https://hydra.nixos.org/build/233229923 at 2023-09-02 + - yhccore # failure in job https://hydra.nixos.org/build/233199669 at 2023-09-02 + - yhseq # failure in job https://hydra.nixos.org/build/233191724 at 2023-09-02 + - yices # failure in job https://hydra.nixos.org/build/233242137 at 2023-09-02 + - yi-language # failure in job https://hydra.nixos.org/build/233217570 at 2023-09-02 + - yoctoparsec # failure in job https://hydra.nixos.org/build/233192019 at 2023-09-02 + - yoda # failure in job https://hydra.nixos.org/build/233200530 at 2023-09-02 + - Yogurt # failure in job https://hydra.nixos.org/build/233212103 at 2023-09-02 + - yu-core # failure in job https://hydra.nixos.org/build/233202551 at 2023-09-02 + - yuiGrid # failure in job https://hydra.nixos.org/build/233223402 at 2023-09-02 + - yu-tool # failure in job https://hydra.nixos.org/build/233216535 at 2023-09-02 + - yxdb-utils # failure in job https://hydra.nixos.org/build/233210232 at 2023-09-02 + - z3-encoding # failure in job https://hydra.nixos.org/build/233254155 at 2023-09-02 + - z85 # failure in job https://hydra.nixos.org/build/233235083 at 2023-09-02 + - zabt # failure in job https://hydra.nixos.org/build/233249170 at 2023-09-02 + - zampolit # failure in job https://hydra.nixos.org/build/233223270 at 2023-09-02 + - zbar # failure in job https://hydra.nixos.org/build/233598222 at 2023-09-02 + - Z-Data # failure in job https://hydra.nixos.org/build/233256080 at 2023-09-02 + - ZEBEDDE # failure in job https://hydra.nixos.org/build/233217131 at 2023-09-02 + - zendesk-api # failure in job https://hydra.nixos.org/build/233257269 at 2023-09-02 + - zeno # failure in job https://hydra.nixos.org/build/233218338 at 2023-09-02 + - zeolite-lang # failure in job https://hydra.nixos.org/build/233217146 at 2023-09-02 + - zero # failure in job https://hydra.nixos.org/build/233209286 at 2023-09-02 + - zeromq3-haskell # failure in job https://hydra.nixos.org/build/233215557 at 2023-09-02 + - zeromq4-conduit # failure in job https://hydra.nixos.org/build/233198244 at 2023-09-02 + - zeromq-haskell # failure in job https://hydra.nixos.org/build/233196050 at 2023-09-02 + - zettelkast # failure in job https://hydra.nixos.org/build/233211485 at 2023-09-02 + - ZFS # failure in job https://hydra.nixos.org/build/233257824 at 2023-09-02 + - zifter # failure in job https://hydra.nixos.org/build/233196342 at 2023-09-02 + - zigbee-znet25 # failure in job https://hydra.nixos.org/build/233235729 at 2023-09-02 + - zip-conduit # failure in job https://hydra.nixos.org/build/233259721 at 2023-09-02 + - zipedit # failure in job https://hydra.nixos.org/build/233218886 at 2023-09-02 + - zipkin # failure in job https://hydra.nixos.org/build/233249243 at 2023-09-02 + - ziptastic-core # failure in job https://hydra.nixos.org/build/233220608 at 2023-09-02 + - zlib-bytes # failure in job https://hydra.nixos.org/build/233210142 at 2023-09-02 + - zlib-lens # failure in job https://hydra.nixos.org/build/233197265 at 2023-09-02 + - ZMachine # failure in job https://hydra.nixos.org/build/233244623 at 2023-09-02 + - zmidi-score # failure in job https://hydra.nixos.org/build/233208041 at 2023-09-02 + - zmqat # failure in job https://hydra.nixos.org/build/233236300 at 2023-09-02 + - zoneinfo # failure in job https://hydra.nixos.org/build/233203677 at 2023-09-02 + - zoom # failure in job https://hydra.nixos.org/build/233210779 at 2023-09-02 + - zoom-refs # failure in job https://hydra.nixos.org/build/233247488 at 2023-09-02 + - zsdd # failure in job https://hydra.nixos.org/build/233236944 at 2023-09-02 + - zsh-battery # failure in job https://hydra.nixos.org/build/233206733 at 2023-09-02 + - zsyntax # failure in job https://hydra.nixos.org/build/233233753 at 2023-09-02 + - ztail # failure in job https://hydra.nixos.org/build/233228534 at 2023-09-02 + - zuul # failure in job https://hydra.nixos.org/build/233204205 at 2023-09-02 + - Zwaluw # failure in job https://hydra.nixos.org/build/233216701 at 2023-09-02 + - zxcvbn-dvorak # failure in job https://hydra.nixos.org/build/233194326 at 2023-09-02 + - zydiskell # failure in job https://hydra.nixos.org/build/233259592 at 2023-09-02 + - zyre2 # failure in job https://hydra.nixos.org/build/233215215 at 2023-09-02 diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml index d67efdc6dd1b..e65913cc27a3 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml @@ -2,4 +2,4333 @@ # maintainers/scripts/haskell/regenerate-transitive-broken-packages.sh # It is supposed to list all haskellPackages that cannot evaluate because they # depend on a dependency marked as broken. -dont-distribute-packages: [] +dont-distribute-packages: + + - 4Blocks + - AC-Vector-Fancy + - ADPfusion + - ADPfusionForest + - ADPfusionSet + - AERN-Net + - AERN-Real + - AERN-Real-Double + - AERN-Real-Interval + - AERN-RnToRm + - AERN-RnToRm-Plot + - ASN1 + - AbortT-monadstf + - AbortT-mtl + - Advgame + - Advise-me + - AlgoRhythm + - AlignmentAlgorithms + - Allure + - AndroidViewHierarchyImporter + - Annotations + - ApplePush + - AttoJson + - AutoForms + - AvlTree + - BASIC + - BPS + - Barracuda + - BerlekampAlgorithm + - BioHMM + - Biobase + - BiobaseBlast + - BiobaseDotP + - BiobaseENA + - BiobaseEnsembl + - BiobaseFR3D + - BiobaseFasta + - BiobaseHTTP + - BiobaseHTTPTools + - BiobaseInfernal + - BiobaseMAF + - BiobaseTrainingData + - BiobaseTurner + - BiobaseTypes + - BiobaseVienna + - BiobaseXNA + - BirdPP + - Bitly + - BlastHTTP + - Blobs + - BlogLiterately-diagrams + - Bookshelf + - CBOR + - CC-delcont-alt + - CMCompare + - CPBrainfuck + - CSPM-FiringRules + - CSPM-Interpreter + - CSPM-ToProlog + - CSPM-cspm + - CarneadesIntoDung + - Chart-fltkhs + - ClustalParser + - Coadjute + - Combinatorrent + - ComonadSheet + - Condor + - Configger + - Control-Monad-MultiPass + - CoreFoundation + - DMuCheck + - DOM + - DP + - DRBG + - DSA + - DSH + - DSTM + - Dangerous + - DarcsHelpers + - DeepArrow + - DefendTheKing + - DifferenceLogic + - DisTract + - DnaProteinAlignment + - DocTest + - DrHylo + - Dust + - Dust-crypto + - Dust-tools + - Dust-tools-pcap + - DysFRP-Cairo + - DysFRP-Craftwerk + - EditTimeReport + - EntrezHTTP + - EsounD + - EtaMOO + - Etage-Graph + - Eternal10Seconds + - Etherbunny + - EventSocket + - FComp + - FM-SBLEX + - FTPLine + - FailureT + - FermatsLastMargin + - FieldTrip + - Fin + - Finance-Treasury + - FiniteCategories + - FiniteMap + - FirstOrderTheory + - Flippi + - ForSyDe + - Forestry + - FormalGrammars + - Foster + - Frames + - Frames-beam + - Frames-dsv + - Frames-map-reduce + - Frames-streamly + - Frank + - GLFW-OGL + - GLFW-task + - GPX + - GPipe-Collada + - GPipe-Examples + - GPipe-GLFW + - GPipe-GLFW4 + - GPipe-TextureLoad + - GeBoP + - GenI + - GenSmsPdu + - Genbank + - Gene-CluEDO + - GenussFold + - GlomeView + - GoogleDirections + - GoogleSB + - GoogleTranslate + - GrammarProducts + - GraphHammer + - GraphHammer-examples + - Grow + - GrowlNotify + - Gtk2hsGenerics + - GtkGLTV + - GtkTV + - GuiHaskell + - GuiTV + - H + - HAppS-Data + - HAppS-IxSet + - HAppS-Server + - HAppS-State + - HGamer3D-API + - HGamer3D-Audio + - HGamer3D-Bullet-Binding + - HGamer3D-CAudio-Binding + - HGamer3D-CEGUI-Binding + - HGamer3D-Common + - HGamer3D-Enet-Binding + - HGamer3D-GUI + - HGamer3D-Graphics3D + - HGamer3D-InputSystem + - HGamer3D-Network + - HGamer3D-OIS-Binding + - HGamer3D-Ogre-Binding + - HGamer3D-SDL2-Binding + - HGamer3D-SFML-Binding + - HGamer3D-WinEvent + - HGamer3D-Wire + - HJScript + - HLearn-algebra + - HLearn-approximation + - HLearn-classification + - HLearn-datastructures + - HLearn-distributions + - HNM + - HPhone + - HPlot + - HPong + - HQu + - HROOT + - HROOT-graf + - HROOT-hist + - HROOT-io + - HROOT-math + - HROOT-net + - HROOT-tree + - HRay + - HSGEP + - HSHHelpers + - HSoundFile + - HStringTemplateHelpers + - HTab + - HXMPP + - HaMinitel + - HaRe + - HaTeX-meta + - HaTeX-qq + - HaVSA + - HaXPath + - Hach + - HarmTrace + - HasGP + - Haschoo + - Hashell + - HaskRel + - Hate + - Hawk + - Hayoo + - Hedi + - Hieroglyph + - HiggsSet + - Hipmunk-Utils + - HipmunkPlayground + - Hoed + - Holumbus-Distribution + - Holumbus-MapReduce + - Holumbus-Storage + - HongoDB + - Hs2lib + - HsParrot + - HsWebots + - Hsed + - Hungarian-Munkres + - Hydrogen + - INblobs + - IORefCAS + - IndexedList + - InfixApplicative + - InternedData + - JSON-Combinator + - JSON-Combinator-Examples + - Javasf + - JsContracts + - JsonGrammar + - JuPyTer-notebook + - JuicyPixels-repa + - JunkDB-driver-gdbm + - JunkDB-driver-hashtables + - KiCS + - KiCS-debugger + - KiCS-prophecy + - LDAPv3 + - LPPaver + - LambdaHack + - LambdaINet + - LambdaPrettyQuote + - LambdaShell + - Lattices + - LinearSplit + - LinkChecker + - ListT + - LogicGrowsOnTrees + - LogicGrowsOnTrees-MPI + - LogicGrowsOnTrees-network + - LogicGrowsOnTrees-processes + - LslPlus + - Lucu + - Lykah + - MC-Fold-DP + - MFlow + - MIP-glpk + - MSQueue + - MailchimpSimple + - Map + - MetaObject + - Metrics + - Mhailist + - Michelangelo + - MicrosoftTranslator + - MissingPy + - MonadCatchIO-mtl-foreign + - MonadLab + - Monaris + - Monatron-IO + - Mondrian + - Monocle + - MuCheck-HUnit + - MuCheck-Hspec + - MuCheck-QuickCheck + - MuCheck-SmallCheck + - Munkres-simple + - MutationOrder + - NGLess + - NTRU + - NXT + - NaperianNetCDF + - NaturalLanguageAlphabets + - NearContextAlgebra + - Ninjas + - NoSlow + - Nomyx + - Nomyx-Core + - Nomyx-Language + - Nomyx-Rules + - Nomyx-Web + - NonEmptyList + - Nussinov78 + - OnRmt + - OpenAFP-Utils + - OpenGLCheck + - OpenSCAD + - OpenVG + - PCLT-DB + - PageIO + - Paillier + - Paraiso + - Parallel-Arrows-BaseSpec + - Parallel-Arrows-Eden + - Parallel-Arrows-Multicore + - Parallel-Arrows-ParMonad + - PermuteEffects + - Plot-ho-matic + - PlslTools + - Printf-TH + - ProbabilityMonads + - Pugs + - Pup-Events + - Pup-Events-Demo + - Quelea + - QuickPlot + - RESTng + - RJson + - RMP + - RNAFold + - RNAFoldProgs + - RNAdesign + - RNAdraw + - RNAlien + - RNAwolf + - Raincat + - Ranka + - Rlang-QQ + - RollingDirectory + - S3 + - SBench + - SCRIPTWriter + - SCalendar + - SFML-control + - SFont + - SGdemo + - STLinkUSB + - STM32-Zombie + - SVG2Q + - SciFlow + - SciFlow-drmaa + - Scurry + - SelectSequencesFromMSA + - Set + - Shellac-compatline + - Shellac-editline + - Shellac-haskeline + - Shellac-readline + - ShortestPathProblems + - Shpadoinkle + - Shpadoinkle-backend-pardiff + - Shpadoinkle-backend-snabbdom + - Shpadoinkle-backend-static + - Shpadoinkle-developer-tools + - Shpadoinkle-disembodied + - Shpadoinkle-examples + - Shpadoinkle-html + - Shpadoinkle-lens + - Shpadoinkle-router + - Shpadoinkle-streaming + - Shpadoinkle-template + - Shpadoinkle-widgets + - SimpleGL + - SimpleLog + - SimpleServer + - Smooth + - Snusmumrik + - SoccerFun + - SoccerFunGL + - SourceGraph + - SpacePrivateers + - SpinCounter + - StockholmAlignment + - Strafunski-Sdf2Haskell + - SybWidget + - SyntaxMacros + - TV + - TastyTLT + - Taxonomy + - TaxonomyTools + - TeaHS + - TreeCounter + - Treiber + - TrieMap + - TypeClass + - TypeIlluminator + - UMM + - URLT + - UTFTConverter + - UrlDisp + - ViennaRNA-extras + - WEditorBrick + - WEditorHyphen + - WL500gPControl + - WURFL + - WXDiffCtrl + - WashNGo + - WaveFront + - WebBits-Html + - WebBits-multiplate + - WebCont + - Wired + - WordAlignment + - WxGeneric + - XML + - XMPP + - XSaiga + - Yablog + - Yogurt-Standalone + - Z-Botan + - Z-IO + - Z-MessagePack + - Z-YAML + - ZipFold + - a50 + - abcBridge + - abstract-par-accelerate + - ac-machine-conduit + - accelerate-arithmetic + - accelerate-fftw + - accelerate-fourier + - accelerate-io + - accelerate-io-JuicyPixels + - accelerate-io-array + - accelerate-io-bmp + - accelerate-io-bytestring + - accelerate-io-cereal + - accelerate-io-repa + - accelerate-io-serialise + - accelerate-io-vector + - accelerate-llvm + - accelerate-llvm-native + - accelerate-random + - accelerate-typelits + - accelerate-utility + - access-token-provider + - acme-php + - acme-safe + - activehs + - actor + - acts + - adhoc-network + - adict + - adp-multi-monadiccp + - aeson-native + - affine + - afv + - agda-server + - agda-snippets-hakyll + - agentx + - aip + - aivika-distributed + - alg + - algebra-checkers + - algebra-driven-design + - algebra-sql + - algebraic + - algolia + - algorithmic-composition-additional + - algorithmic-composition-basic + - algorithmic-composition-complex + - algorithmic-composition-frequency-shift + - algorithmic-composition-overtones + - alms + - alpha + - alsa-gui + - alsa-pcm-tests + - alsa-seq-tests + - alto + - amazon-emailer-client-snap + - amazonka-contrib-rds-utils + - amazonka-s3-encryption + - amazonka-s3-streaming + - amby + - ampersand + - amqp-streamly + - amqp-utils_0_6_4_0 + - amqp_0_22_2 + - analyze-client + - anatomy + - animate-example + - animate-frames + - animate-preview + - animate-sdl2 + - annah + - anonymous-sums-tests + - antagonist + - anticiv + - antiope-athena + - antiope-contract + - antiope-core + - antiope-dynamodb + - antiope-es + - antiope-messages + - antiope-optparse-applicative + - antiope-s3 + - antiope-shell + - antiope-sns + - antiope-sqs + - antlrc + - apecs-gloss + - apecs-physics-gloss + - apelsin + - api-rpc-accumulate + - api-rpc-pegnet + - api-yoti + - apiary + - apiary-authenticate + - apiary-clientsession + - apiary-cookie + - apiary-eventsource + - apiary-helics + - apiary-http-client + - apiary-logger + - apiary-memcached + - apiary-mongoDB + - apiary-persistent + - apiary-purescript + - apiary-redis + - apiary-session + - apiary-websockets + - apis + - apotiki + - approx-rand-test + - arbor-monad-metric-datadog + - archive-tar-bytestring + - archlinux-web + - arduino-copilot + - arff + - arghwxhaskell + - argon + - ariadne + - arith-encode + - arithmetic-circuits + - array-forth + - arraylist + - ascii-cows + - ascii-table + - asic + - assert4hs + - assert4hs-core + - assert4hs-hspec + - assert4hs-tasty + - assimp + - ast-monad-json + - astview + - aterm-utils + - atlassian-connect-core + - atmos-dimensional-tf + - atom-msp430 + - atomic-primops-foreign + - atp + - attoparsec-enumerator + - attoparsec-iteratee + - attoparsec-text-enumerator + - atuin + - audiovisual + - aura + - authoring + - autodocodec-openapi3 + - automata + - autonix-deps-kf5 + - avers + - avers-api + - avers-api-docs + - avers-server + - aviation-cessna172-diagrams + - aviation-cessna172-weight-balance + - aviation-navigation + - aviation-weight-balance + - awesomium + - awesomium-glut + - aws-configuration-tools + - aws-dynamodb-conduit + - aws-dynamodb-streams + - aws-easy + - aws-elastic-transcoder + - aws-kinesis + - aws-kinesis-client + - aws-kinesis-reshard + - aws-lambda + - aws-mfa-credentials + - aws-sdk + - aws-sdk-xml-unordered + - aws-ses-easy + - aws-sign4 + - aws-simple + - aws-sns + - axel + - axiom + - azimuth-hs + - azure-functions-worker + - azure-service-api + - azure-servicebus + - b-tree + - b9 + - babylon + - backblaze-b2-hs + - backdropper + - ballast + - bamboo + - bamboo-launcher + - bamboo-plugin-highlight + - bamboo-plugin-photo + - bamboo-theme-blueprint + - bamboo-theme-mini-html5 + - bamse + - bamstats + - barley + - base32-bytestring + - baserock-schema + - basic + - batchd + - batchd-core + - batchd-docker + - batchd-libvirt + - batching + - battlenet-yesod + - battleplace-api + - battleships + - bayes-stack + - bbi + - bcp47 + - bcp47-orphans + - bdcs + - bdcs-api + - beam-automigrate + - beam-th + - beautifHOL + - bech32-th + - beeminder-api + - bein + - belka + - bff + - bglib + - bifunctor + - billboard-parser + - billeksah-forms + - billeksah-main + - billeksah-pane + - binary-file + - binary-protocol-zmq + - binary-streams + - binding-gtk + - binding-wx + - bindings-apr-util + - bindings-linux-videodev2 + - bindings-ppdev + - bindynamic + - binembed-example + - bioace + - bioalign + - biofasta + - biofastq + - bioinformatics-toolkit + - biophd + - biopsl + - biosff + - biostockholm + - bip32 + - birch-beer + - bird + - bisc + - biscuit-servant + - bishbosh + - bit-array + - bitcoin-address + - bitcoin-api + - bitcoin-api-extra + - bitcoin-block + - bitcoin-tx + - bitcoin-types + - bitcoind-regtest + - bitly-cli + - bitmaps + - bittorrent + - bla + - blakesum-demo + - blastxml + - blatex + - blaze-builder-enumerator + - blaze-colonnade + - ble + - blink1 + - blip + - blogination + - bloodhound-amazonka-auth + - bloxorz + - blubber + - bluetile + - blunt + - bno055-haskell + - bogre-banana + - bond + - bond-haskell + - bond-haskell-compiler + - bookkeeper + - bookkeeper-permissions + - bookkeeping-jp + - boomslang + - boots-app + - boots-cloud + - boots-web + - borel + - both + - breakout + - bricks + - bricks-internal-test + - bricks-parsec + - bricks-rendering + - bricks-syntax + - broadcast-chan-conduit + - broadcast-chan-pipes + - bronyradiogermany-streaming + - btc-lsp + - btree + - buchhaltung + - buildbox-tools + - buildwrapper + - bulletproofs + - bulmex + - burnt-explorer + - bus-pirate + - buster-gtk + - buster-network + - butterflies + - bytable + - bytehash + - bytelog + - bytepatch + - bytestring-builder-varword + - bytestring-read + - ca + - cabal-bounds + - cabal-cache + - cabal-cargs + - cabal-flatpak + - cabal-helper + - cabal-plan-bounds + - cabal-query + - cabal-test + - cabal2arch + - cabalmdvrpm + - cabalrpmdeps + - caffegraph + - cake + - cakyrespa + - cal3d-examples + - cal3d-opengl + - calamity + - calc + - calculator + - caldims + - call + - camfort + - campfire + - canadian-income-tax + - canteven-http + - cao + - cap + - capnp + - caps + - captcha-2captcha + - captcha-capmonster + - captcha-core + - car-pool + - carboncopy + - cartel + - cas-hashable-s3 + - cas-store + - casadi-bindings + - casadi-bindings-control + - casadi-bindings-core + - casadi-bindings-ipopt-interface + - casadi-bindings-snopt-interface + - cash + - casr-logbook-html + - casr-logbook-meta + - casr-logbook-meta-html + - casr-logbook-reports + - casr-logbook-reports-html + - casr-logbook-reports-meta + - casr-logbook-reports-meta-html + - cassandra-thrift + - cassy + - casui + - categorical-algebra + - category + - category-extras + - cattrap + - cctools-workqueue + - cef3-simple + - ceilometer-common + - celtchar + - cerberus + - cereal-enumerator + - cereal-io-streams + - cereal-streams + - certificate + - cfipu + - cflp + - cfopu + - chainweb-mining-client + - chakra + - chapelure + - charade + - chart-cli + - chart-svg + - chart-svg-various + - chart-unit + - cheapskate-highlight + - cheapskate-lucid + - cheapskate-terminal + - check-pvp + - chevalier-common + - chiasma + - chiasma-test + - chitauri + - choose-exe + - chorale-geo + - chp-mtl + - chp-plus + - chp-spec + - chp-transformers + - chr-lang + - chromatin + - chu2 + - chuchu + - chunks + - circle + - citation-resolve + - citeproc-hs-pandoc-filter + - clac + - clafer + - claferIG + - claferwiki + - clash + - clash-ghc + - clash-lib + - clash-lib-hedgehog + - clash-multisignal + - clash-prelude-hedgehog + - clash-prelude-quickcheck + - clash-shake + - clash-systemverilog + - clash-verilog + - clash-vhdl + - clashilator + - classify-frog + - classy-miso + - clckwrks + - clckwrks-cli + - clckwrks-dot-com + - clckwrks-plugin-bugs + - clckwrks-plugin-ircbot + - clckwrks-plugin-mailinglist + - clckwrks-plugin-media + - clckwrks-plugin-page + - clckwrks-plugin-redirect + - clckwrks-theme-bootstrap + - clckwrks-theme-clckwrks + - clckwrks-theme-geo-bootstrap + - cleff-plugin + - cless + - cleveland + - cli-git + - cli-nix + - click-clack + - clickhouse-haskell + - clifford + - climb + - clippings + - cloud-haskell + - cloud-seeder + - cloudyfs + - clr-bindings + - clr-inline + - clua + - clustering + - clustertools + - clutterhs + - cmathml3 + - cmptype + - cmv + - cnc-spec-compiler + - co-feldspar + - co-log + - co-log-polysemy-formatting + - cobot-io + - codec + - codec-libevent + - codec-rpm + - codemonitor + - coformat + - cognimeta-utils + - coinbase-exchange + - coincident-root-loci + - colada + - collapse-duplication + - collection-json + - collections-base-instances + - color-counter + - colorless-http-client + - colorless-scotty + - colour-accelerate + - colour-space + - columbia + - columnar + - comark + - combinat-diagrams + - commsec + - commsec-keyexchange + - comonad-random + - compaREST + - compact-mutable + - compact-mutable-vector + - compact-socket + - complexity + - comprehensions-ghc + - computational-algebra + - concraft + - concraft-hr + - concraft-pl + - concrete-haskell + - concrete-haskell-autogen + - concurrency-benchmarks + - condor + - conductive-hsc3 + - conductive-song + - conduit-throttle + - conduit-vfs-zip + - confcrypt + - conferer-provider-dhall + - conferer-provider-yaml + - conferer-source-dhall + - conferer-source-yaml + - conffmt + - confide + - config-select + - configifier + - configurator-ng + - conic-graphs + - constrained-category + - constrained-platform-instances + - constraint + - constraint-manip + - constraint-reflection + - constructible + - consumers + - container + - containers-accelerate + - content-store + - continuum + - continuum-client + - control + - control-monad-attempt + - conversions + - convert + - convert-annotation + - convertible-ascii + - convertible-text + - coordinate + - copilot + - copilot-cbmc + - copilot-frp-sketch + - copilot-language + - copilot-libraries + - copilot-sbv + - copilot-theorem + - corenlp-parser + - coroutine-enumerator + - coroutine-iteratee + - couch-simple + - couchdb-enumerator + - country + - country_0_2_4_0 + - cpkg + - cprng-aes-effect + - cql-io-tinylog + - cqrs-example + - cqrs-memory + - cqrs-postgresql + - cqrs-sqlite3 + - cqrs-test + - cqrs-testkit + - crackNum + - craft + - craftwerk-cairo + - craftwerk-gtk + - craze + - credentials + - credentials-cli + - crf-chain1 + - crf-chain1-constrained + - crf-chain2-generic + - crf-chain2-tiers + - criu-rpc + - criu-rpc-types + - cron-compat + - crypto-classical + - crypto-conduit + - crypto-pubkey + - cryptocipher + - cryptoids + - cryptoids-class + - cryptol + - cryptonite-cd + - crystalfontz + - csg + - csound-catalog + - csound-controllers + - csound-expression + - csound-expression-opcodes + - csound-expression-typed + - csound-sampler + - cspmchecker + - csv-enumerator + - ctpl + - cube + - curryer-rpc + - cv-combinators + - cypher + - daino + - dapi + - darcs-benchmark + - darcs-beta + - darcs-fastconvert + - darcsden + - darcswatch + - darkplaces-demo + - darkplaces-rcon-util + - dash-haskell + - data-basic + - data-cycle + - data-default-extra + - data-layer + - data-lens-ixset + - data-object-json + - data-object-yaml + - data-result + - data-rtuple + - data-structure-inferrer + - database-id-groundhog + - datadog-tracing + - datafix + - dataflow + - datasets + - date-conversions + - dbjava + - dbmigrations-mysql + - dbmigrations-postgresql + - dbmigrations-sqlite + - dbus-client + - ddate + - ddc-build + - ddc-core + - ddc-core-babel + - ddc-core-eval + - ddc-core-flow + - ddc-core-llvm + - ddc-core-salt + - ddc-core-simpl + - ddc-core-tetra + - ddc-driver + - ddc-interface + - ddc-source-tetra + - ddc-tools + - ddc-war + - ddci-core + - debug + - decidable + - decimal-arithmetic + - dedukti + - deeplearning-hs + - deepzoom + - defargs + - definitive-filesystem + - definitive-graphics + - definitive-parser + - definitive-reactive + - definitive-sound + - deka-tests + - delaunay + - delicious + - delimited-text + - delimiter-separated + - delta + - delta-h + - dep-t-advice + - dep-t-dynamic + - dep-t-value + - dependent-literals + - dependent-literals-plugin + - dependent-state + - depends + - dephd + - deptrack-devops + - deptrack-dot + - dequeue + - derive-IG + - deriving-openapi3 + - descript-lang + - detour-via-uom + - devtools + - dewdrop + - dfinity-radix-tree + - dhall-secret + - dia-functions + - diagrams-reflex + - diagrams-wx + - dialog + - diff + - difference-monoid + - differential + - digestive-foundation-lucid + - digestive-functors-heist + - digestive-functors-hsp + - dimensional-tf + - dimensions + - dingo-core + - dingo-example + - dingo-widgets + - diplomacy-server + - direct-rocksdb + - directory-contents + - dirfiles + - discogs-haskell + - discord-gateway + - discord-hs + - discord-register + - discord-rest + - distributed-fork + - distributed-fork-aws-lambda + - distributed-process + - distributed-process-async + - distributed-process-azure + - distributed-process-client-server + - distributed-process-ekg + - distributed-process-execution + - distributed-process-extras + - distributed-process-fsm + - distributed-process-lifted + - distributed-process-monad-control + - distributed-process-p2p + - distributed-process-platform + - distributed-process-registry + - distributed-process-simplelocalnet + - distributed-process-supervisor + - distributed-process-systest + - distributed-process-task + - distributed-process-tests + - distributed-static + - distribution-plot + - dixi + - dl-fedora + - dmenu-pkill + - dmenu-pmount + - dmenu-search + - dnf-repo + - dobutokO-poetry + - dobutokO-poetry-general + - dobutokO-poetry-general-languages + - dobutokO2 + - dobutokO3 + - dobutokO4 + - doc-review + - doi + - domaindriven + - dormouse-client + - dotparse + - dovetail + - dovetail-aeson + - dow + - download-media-content + - dph-examples + - dph-lifted-base + - dph-lifted-copy + - dph-lifted-vseg + - dph-prim-interface + - dph-prim-par + - dph-prim-seq + - dropbox-sdk + - dropsolve + - dsh-sql + - dsmc + - dsmc-tools + - dtd + - dvda + - dynamic-cabal + - dynamic-pipeline + - dynamic-plot + - dynamic-pp + - dynamodb-simple + - dynobud + - easytensor + - easytensor-vulkan + - ec2-unikernel + - ecdsa + - edenskel + - edentv + - edge + - edges + - editable + - edits + - effect-monad + - effective-aspects-mzv + - eflint + - egison + - egison-pattern-src-haskell-mode + - egison-pattern-src-th-mode + - egison-quote + - egison-tutorial + - ekg + - ekg-carbon + - ekg-cloudwatch + - ekg-wai + - elasticsearch-interchange + - electrs-client + - elerea-examples + - elliptic-curve + - elsa + - ema-extra + - emacs-keys + - email + - emailparse + - emanote + - embroidery + - emd + - engine-io-growler + - engine-io-snap + - engine-io-wai + - engine-io-yesod + - entangle + - enum-text-rio + - enumerate + - enumerate-function + - enumeration + - enumerator-fd + - enumerator-tf + - enumfun + - ephemeral + - erf-native + - eros-client + - eros-http + - error-message + - errors-ext + - ersatz-toysat + - esotericbot + - esqueleto-streaming + - essence-of-live-coding-PortMidi + - essence-of-live-coding-gloss + - essence-of-live-coding-gloss-example + - essence-of-live-coding-pulse + - essence-of-live-coding-pulse-example + - essence-of-live-coding-quickcheck + - essence-of-live-coding-vivid + - essence-of-live-coding-warp + - estimators + - estreps + - eternity + - eternity-timestamped + - ether + - ethereum-analyzer + - ethereum-analyzer-cli + - ethereum-analyzer-webui + - ethereum-client-haskell + - ethereum-merkle-patricia-db + - eths-rlp + - euphoria + - evdev-streamly + - event-monad + - eventful-core + - eventful-dynamodb + - eventful-memory + - eventful-postgresql + - eventful-sql-common + - eventful-sqlite + - eventful-test-helpers + - eventloop + - eventsource-geteventstore-store + - eventsource-store-specs + - eventsource-stub-store + - eventuo11y + - eventuo11y-batteries + - eventuo11y-json + - eventuo11y-otel + - eventuo11y-prometheus + - every-bit-counts + - exference + - exist + - exist-instances + - expand + - expat-enumerator + - expiring-containers + - explicit-iomodes-bytestring + - explicit-iomodes-text + - explicit-sharing + - explore + - expressions-z3 + - extemp + - extended-containers-lens + - extensible-skeleton + - extract-dependencies + - factual-api + - fadno + - fair + - falling-turnip + - fallingblocks + - family-tree + - fast-arithmetic + - fast-bech32 + - fastcdc + - fastirc + - fault-tree + - fay-base + - fay-builder + - fay-dom + - fay-geoposition + - fay-hsx + - fay-jquery + - fay-ref + - fay-simplejson + - fay-text + - fay-uri + - fay-websockets + - fbrnch + - fcd + - feature-flipper-postgres + - fedora-composes + - fedora-img-dl + - fedora-repoquery + - feed-gipeda + - feed-translator + - feed2lj + - feed2twitter + - feedback + - fei-base + - fei-cocoapi + - fei-dataiter + - fei-datasets + - fei-examples + - fei-modelzoo + - fei-nn + - feldspar-compiler + - feldspar-language + - festung + - fficxx + - ffmpeg-tutorials + - ficketed + - filepath-crypto + - filepath-io-access + - filesystem-abstractions + - filesystem-enumerator + - fin-int + - find-clumpiness + - findhttp + - finitary + - finitary-derive + - finitary-optics + - finite-table + - firestore + - firstify + - fishfood + - fix-parser-simple + - fixed-point-vector + - fixed-point-vector-space + - fixhs + - flashblast + - flatbuffers + - flexiwrap + - flexiwrap-smallcheck + - flink-statefulfun + - flite + - flower + - flowsim + - fltkhs-demos + - fltkhs-fluid-demos + - fltkhs-fluid-examples + - fltkhs-hello-world + - fltkhs-themes + - fluent-logger + - fluent-logger-conduit + - fmt-for-rio + - fn-extra + - foldable1 + - foldl-transduce-attoparsec + - follower + - foo + - formal + - format + - format-status + - forml + - formlets + - formlets-hsp + - forms-data-format + - forsyde-deep + - forth-hll + - foscam-directory + - foscam-sort + - fpco-api + - fplll + - fpnla-examples + - frame-markdown + - freckle-app + - free-functors + - free-game + - free-theorems-seq-webui + - freekick2 + - freelude + - freer-converse + - freer-simple-catching + - freer-simple-http + - freer-simple-profiling + - freer-simple-random + - freer-simple-time + - fresnel-fused-effects + - friday-devil + - friday-juicypixels + - friday-scale-dct + - front + - frpnow-gloss + - frpnow-gtk + - frpnow-gtk3 + - frpnow-vty + - ftdi + - ftp-client-conduit + - ftree + - ftshell + - funbot + - funbot-git-hook + - funcons-lambda-cbv-mp + - funcons-simple + - funcons-tools + - function-combine + - functional-arrow + - functor + - functor-combo + - funflow + - funflow-nix + - funion + - funnyprint + - funsat + - fused-effects-squeal + - fwgl-glfw + - fwgl-javascript + - fxpak + - g2 + - g2q + - gact + - galois-fft + - galois-field + - gamma + - gargoyle-postgresql + - gargoyle-postgresql-connect + - gargoyle-postgresql-nix + - gbu + - gdax + - gdiff-ig + - gearhash + - gedcom + - geek + - geek-server + - gegl + - gelatin-freetype2 + - gelatin-fruity + - gelatin-gl + - gelatin-sdl2 + - gelatin-shaders + - gemini-textboard + - gencheck + - generic-accessors + - generic-override-aeson + - generic-xml + - generics-mrsop-gdiff + - genesis + - genesis-test + - geni-gui + - geni-util + - geniconvert + - geniserver + - genvalidity-network-uri + - geodetic + - geolite-csv + - getemx + - ghc-dump-util + - ghc-imported-from + - ghc-instances + - ghc-mod + - ghc-plugs-out + - ghc-session + - ghci-pretty + - ghcide-bench + - ghcjs-dom-hello + - ghcjs-dom-webkit + - ghcjs-hplay + - ghcup + - ght + - gi-cairo-again + - gi-ges + - gi-gsk + - gi-gstpbutils + - gi-gtk-declarative-app-simple + - gi-gtk_4_0_8 + - git-config + - git-fmt + - git-gpush + - git-object + - git-remote-ipfs + - git-sanity + - gitdo + - github-data + - github-webhook-handler-snap + - gitlib-cross + - gitlib-s3 + - gitson + - givegif + - gladexml-accessor + - glazier + - glazier-pipes + - glazier-react + - glazier-react-examples + - glazier-react-widget + - glirc + - global + - global-config + - glome-hs + - gloss-accelerate + - gloss-devil + - gloss-examples + - gloss-raster + - gloss-raster-accelerate + - gloss-sodium + - gltf-loader + - gmap + - gmndl + - gnome-desktop + - gnomevfs + - gnss-converters + - goal-geometry + - goal-graphical + - goal-probability + - goal-simulation + - goat + - goatee-gtk + - gogol + - gogol-abusiveexperiencereport + - gogol-acceleratedmobilepageurl + - gogol-accessapproval + - gogol-accesscontextmanager + - gogol-adexchange-buyer + - gogol-adexchange-seller + - gogol-adexchangebuyer2 + - gogol-adexperiencereport + - gogol-admin-datatransfer + - gogol-admin-directory + - gogol-admin-emailmigration + - gogol-admin-reports + - gogol-adsense + - gogol-adsense-host + - gogol-affiliates + - gogol-alertcenter + - gogol-analytics + - gogol-analyticsreporting + - gogol-android-enterprise + - gogol-android-publisher + - gogol-androiddeviceprovisioning + - gogol-androidmanagement + - gogol-appengine + - gogol-apps-activity + - gogol-apps-calendar + - gogol-apps-licensing + - gogol-apps-reseller + - gogol-apps-tasks + - gogol-appstate + - gogol-autoscaler + - gogol-bigquery + - gogol-bigquerydatatransfer + - gogol-bigtableadmin + - gogol-billing + - gogol-binaryauthorization + - gogol-blogger + - gogol-books + - gogol-chat + - gogol-civicinfo + - gogol-classroom + - gogol-cloudasset + - gogol-clouderrorreporting + - gogol-cloudfunctions + - gogol-cloudidentity + - gogol-cloudiot + - gogol-cloudkms + - gogol-cloudmonitoring + - gogol-cloudprivatecatalog + - gogol-cloudprivatecatalogproducer + - gogol-cloudprofiler + - gogol-cloudscheduler + - gogol-cloudsearch + - gogol-cloudshell + - gogol-cloudtasks + - gogol-cloudtrace + - gogol-commentanalyzer + - gogol-composer + - gogol-compute + - gogol-consumersurveys + - gogol-container + - gogol-containeranalysis + - gogol-containerbuilder + - gogol-customsearch + - gogol-dataflow + - gogol-datafusion + - gogol-dataproc + - gogol-datastore + - gogol-debugger + - gogol-deploymentmanager + - gogol-dfareporting + - gogol-dialogflow + - gogol-digitalassetlinks + - gogol-discovery + - gogol-dlp + - gogol-dns + - gogol-docs + - gogol-doubleclick-bids + - gogol-doubleclick-search + - gogol-drive + - gogol-driveactivity + - gogol-factchecktools + - gogol-file + - gogol-firebase-dynamiclinks + - gogol-firebase-rules + - gogol-firebasehosting + - gogol-firebaseremoteconfig + - gogol-firestore + - gogol-fitness + - gogol-fonts + - gogol-freebasesearch + - gogol-fusiontables + - gogol-games + - gogol-games-configuration + - gogol-games-management + - gogol-genomics + - gogol-gmail + - gogol-groups-migration + - gogol-groups-settings + - gogol-healthcare + - gogol-iam + - gogol-iamcredentials + - gogol-iap + - gogol-identity-toolkit + - gogol-indexing + - gogol-jobs + - gogol-kgsearch + - gogol-language + - gogol-latencytest + - gogol-libraryagent + - gogol-logging + - gogol-manufacturers + - gogol-maps-coordinate + - gogol-maps-engine + - gogol-mirror + - gogol-ml + - gogol-monitoring + - gogol-oauth2 + - gogol-oslogin + - gogol-pagespeed + - gogol-partners + - gogol-people + - gogol-photoslibrary + - gogol-play-moviespartner + - gogol-playcustomapp + - gogol-plus + - gogol-plus-domains + - gogol-poly + - gogol-prediction + - gogol-proximitybeacon + - gogol-pubsub + - gogol-qpxexpress + - gogol-redis + - gogol-remotebuildexecution + - gogol-replicapool + - gogol-replicapool-updater + - gogol-resourcemanager + - gogol-resourceviews + - gogol-run + - gogol-runtimeconfig + - gogol-safebrowsing + - gogol-script + - gogol-searchconsole + - gogol-securitycenter + - gogol-servicebroker + - gogol-serviceconsumermanagement + - gogol-servicecontrol + - gogol-servicemanagement + - gogol-servicenetworking + - gogol-serviceusage + - gogol-serviceuser + - gogol-sheets + - gogol-shopping-content + - gogol-siteverification + - gogol-slides + - gogol-sourcerepo + - gogol-spanner + - gogol-spectrum + - gogol-speech + - gogol-sqladmin + - gogol-storage + - gogol-storage-transfer + - gogol-streetviewpublish + - gogol-surveys + - gogol-tagmanager + - gogol-taskqueue + - gogol-testing + - gogol-texttospeech + - gogol-toolresults + - gogol-tpu + - gogol-tracing + - gogol-translate + - gogol-urlshortener + - gogol-useraccounts + - gogol-vault + - gogol-videointelligence + - gogol-vision + - gogol-webmaster-tools + - gogol-websecurityscanner + - gogol-youtube + - gogol-youtube-analytics + - gogol-youtube-reporting + - google-drive + - google-mail-filters + - google-maps-geocoding + - google-static-maps + - googleplus + - gore-and-ash-actor + - gore-and-ash-async + - gore-and-ash-demo + - gore-and-ash-glfw + - gore-and-ash-lambdacube + - gore-and-ash-logging + - gore-and-ash-network + - gore-and-ash-sdl + - gore-and-ash-sync + - gps + - gps2htmlReport + - graflog + - grammar-combinators + - grapefruit-examples + - grapefruit-frp + - grapefruit-records + - grapefruit-ui + - grapefruit-ui-gtk + - graph-rewriting-cl + - graph-rewriting-gl + - graph-rewriting-lambdascope + - graph-rewriting-layout + - graph-rewriting-ski + - graph-rewriting-strategies + - graph-rewriting-trs + - graph-rewriting-ww + - graph-visit + - graphicsFormats + - graphicstools + - graphtype + - greencard-lib + - grenade + - greskell + - greskell-websocket + - grid-proto + - gridbounds + - gridland + - grisette + - grisette-monad-coroutine + - groot + - gross + - groundhog-converters + - groundhog-inspector + - groundhog-mysql + - groundhog-postgresql + - groundhog-sqlite + - groundhog-th + - grpc-etcd-client + - grpc-haskell + - grpc-haskell-core + - gruff + - gruff-examples + - gsc-weighting + - gscholar-rss + - gsl-random-fu + - gsmenu + - gstorable + - gtfs + - gtfs-realtime + - gtk-serialized-event + - gtk2hs-cast-glade + - gtk2hs-cast-gnomevfs + - gtk2hs-cast-gtk + - gtk2hs-cast-gtkglext + - gtk2hs-cast-gtksourceview2 + - gtkimageview + - gtkrsync + - guarded-rewriting + - guess-combinator + - hArduino + - hOff-display + - hPDB + - hPDB-examples + - habit + - hablo + - hablog + - hack-contrib + - hack-contrib-press + - hack-handler-epoll + - hack-handler-evhttp + - hack-handler-fastcgi + - hack-handler-hyena + - hack-handler-simpleserver + - hack-middleware-cleanpath + - hack-middleware-clientsession + - hack-middleware-jsonp + - hack2-contrib-extra + - hack2-handler-happstack-server + - hack2-handler-mongrel2-http + - hack2-handler-snap-server + - hackage-cli + - hackage2twitter + - hackmanager + - haddock + - haddock_2_23_1 + - haddocset + - hadoop-tools + - haggis + - hailgun-send + - hailgun-simple + - hails-bin + - hakyll-elm + - hakyll-ogmarkup + - hakyll-shortcut-links + - halberd + - halide-JuicyPixels + - halide-arrayfire + - hall-symbols + - halma-gui + - halma-telegram-bot + - ham + - hamilton + - hamusic + - hans-pcap + - happlets-lib-gtk + - happs-hsp + - happs-hsp-template + - happs-tutorial + - happstack-auth + - happstack-authenticate + - happstack-contrib + - happstack-data + - happstack-dlg + - happstack-facebook + - happstack-fay + - happstack-fay-ajax + - happstack-foundation + - happstack-heist + - happstack-helpers + - happstack-ixset + - happstack-plugins + - happstack-state + - happstack-static-routing + - happybara-webkit + - haquil + - hardware-edsl + - hark + - harmony + - haroonga-httpd + - has-th + - hascat + - hascat-lib + - hascat-setup + - hascat-system + - hashable-accelerate + - hasherize + - hashflare + - hask-home + - haskanoid + - haskdeep + - haskeem + - haskell-abci + - haskell-admin + - haskell-admin-health + - haskell-admin-managed-functions + - haskell-aliyun + - haskell-bitmex-client + - haskell-docs + - haskell-eigen-util + - haskell-ftp + - haskell-lsp + - haskell-lsp-client + - haskell-pdf-presenter + - haskell-platform-test + - haskell-reflect + - haskell-snake + - haskell-src-exts-observe + - haskell-token-utils + - haskell-tools-ast + - haskell-tools-ast-fromghc + - haskell-tools-ast-gen + - haskell-tools-ast-trf + - haskell-tools-backend-ghc + - haskell-tools-builtin-refactorings + - haskell-tools-cli + - haskell-tools-daemon + - haskell-tools-debug + - haskell-tools-demo + - haskell-tools-experimental-refactorings + - haskell-tools-prettyprint + - haskell-tools-refactor + - haskell-tools-rewrite + - haskell-tor + - haskell-xmpp + - haskelldb-connect-hdbc + - haskelldb-connect-hdbc-catchio-mtl + - haskelldb-connect-hdbc-catchio-tf + - haskelldb-connect-hdbc-catchio-transformers + - haskelldb-connect-hdbc-lifted + - haskelldb-dynamic + - haskelldb-flat + - haskelldb-hdbc + - haskelldb-hdbc-mysql + - haskelldb-hdbc-odbc + - haskelldb-hdbc-postgresql + - haskelldb-hdbc-sqlite3 + - haskelldb-hsql + - haskelldb-hsql-mysql + - haskelldb-hsql-odbc + - haskelldb-hsql-postgresql + - haskelldb-hsql-sqlite3 + - haskelldb-th + - haskelm + - haskey + - haskey-mtl + - haskgame + - hasklepias + - haskoin-bitcoind + - haskoin-crypto + - haskoin-protocol + - haskoin-script + - haskoin-store + - haskoon + - haskoon-httpspec + - haskoon-salvia + - haskore-realtime + - haskore-supercollider + - haskore-synthesizer + - hasktorch + - hasktorch-ffi-thc + - hasktorch-indef + - hasktorch-signatures + - hasktorch-zoo + - haskus-binary + - haskus-system-build + - haskus-utils + - haskus-utils-compat + - haskus-web + - haslo + - hasloGUI + - hasql-cursor-query + - hasql-postgres + - hasql-postgres-options + - hasql-streams-conduit + - hasql-streams-core + - hasql-streams-example + - hasql-streams-pipes + - hasql-streams-streaming + - hasql-streams-streamly + - hasqlator-mysql + - hasqly-mysql + - hastache-aeson + - haste-app + - haste-gapi + - haste-lib + - haste-markup + - haste-perch + - hatexmpp3 + - hawitter + - haxl-amazonka + - haxl-facebook + - haxy + - hback + - hbayes + - hbb + - hbf + - hbro + - hbro-contrib + - hcg-minus-cairo + - hcheat + - hcheckers + - hcount + - hcube + - hdbi + - hdbi-conduit + - hdbi-postgresql + - hdbi-sqlite + - hdbi-tests + - hdiff + - hdirect + - hdocs + - hdph + - heart-app + - heatitup + - heavy-log-shortcuts + - heavy-logger + - heavy-logger-amazon + - heavy-logger-instances + - hecc + - hedgehog-checkers-lens + - hedgehog-gen + - hedgehog-gen-json + - hedis-pile + - heist-aeson + - heist-async + - heist-extra + - helic + - helics + - helics-wai + - helium + - hell + - hellage + - hellnet + - hemokit + - hen + - henet + - hepevt + - hermit + - hermit-syb + - herringbone + - herringbone-embed + - herringbone-wai + - hesh + - hesql + - heterolist + - hetzner + - hevolisa + - hevolisa-dph + - hexpat-conduit + - hexpat-iteratee + - hfd + - hfiar + - hfractal + - hgalib + - hgen + - hgeometry + - hgeometry-combinatorial + - hgeometry-ipe + - hgeometry-svg + - hgithub + - hi + - hiccup + - hie-core + - hierarchical-clustering-diagrams + - hierarchical-env + - hierarchical-spectral-clustering + - highjson-swagger + - highjson-th + - himpy + - hinduce-classifier + - hinduce-classifier-decisiontree + - hinduce-examples + - hinvaders + - hinze-streams + - hip + - hipbot + - hipe + - hipsql-client + - hipsql-server + - hipsql-tx-simple + - hirt + - hist-pl + - hist-pl-dawg + - hist-pl-fusion + - hist-pl-lexicon + - hist-pl-lmf + - hit + - hit-graph + - hjsonschema + - hjugement-cli + - hlcm + - hledger-api + - hls + - hls-exactprint-utils + - hmark + - hmatrix-repa + - hmatrix-sundials + - hmeap + - hmeap-utils + - hmep + - hmt-diagrams + - hnetcdf + - hnormalise + - hoauth2-demo + - hoauth2-providers-tutorial + - hob + - hogre + - hogre-examples + - holy-project + - hommage + - homotuple + - hood + - hoodie + - hoodle + - hoodle-builder + - hoodle-core + - hoodle-extra + - hoodle-parser + - hoodle-publish + - hoodle-render + - hoovie + - hoppy-docs + - hoppy-runtime + - hoppy-std + - hotswap + - hp2any-graph + - hp2any-manager + - hpaco + - hpaco-lib + - hpage + - hpaste + - hpath-directory + - hpath-io + - hpc-tracer + - hplayground + - hpqtypes-effectful + - hpqtypes-extras + - hprotoc + - hprotoc-fork + - hps + - hps-cairo + - hpython + - hq + - hquantlib + - hranker + - hreq-client + - hreq-conduit + - hriemann + - hs + - hs-blake2 + - hs-ffmpeg + - hs-gen-iface + - hs-pkpass + - hs-sdl-term-emulator + - hs2dot + - hsautogui + - hsbackup + - hsbencher-codespeed + - hsbencher-fusion + - hsc3-auditor + - hsc3-data + - hsc3-forth + - hsc3-graphs + - hsc3-lisp + - hsc3-plot + - hsc3-server + - hsc3-sf-hsndfile + - hsc3-utils + - hscassandra + - hscope + - hsdev + - hsendxmpp + - hsfacter + - hsinspect-lsp + - hslogstash + - hsparql + - hspec-expectations-pretty + - hspec-pg-transact + - hspec-setup + - hspec-shouldbe + - hspec-snap + - hspecVariant + - hsprocess + - hsql-mysql + - hsql-odbc + - hsql-postgresql + - hsql-sqlite3 + - hsreadability + - hssqlppp-th + - hstar + - hstox + - hstradeking + - hstzaar + - hsubconvert + - hswip + - hsx-xhtml + - hsyslog-tcp + - html-kure + - html-parse-util + - htoml-parse + - htsn-import + - http-client-auth + - http-client-restricted_0_1_0 + - http-client-rustls + - http-client-tls_0_3_6_3 + - http-enumerator + - http-io-streams + - http-response-decoder + - http2-client-exe + - http2-client-grpc + - http2-grpc-proto-lens + - http2-grpc-proto3-wire + - http3 + - https-everywhere-rules + - https-everywhere-rules-raw + - httpspec + - hubris + - hugs2yc + - hulk + - hunit-gui + - hunt-searchengine + - hunt-server + - hurdle + - hurl-xml + - huzzy + - hw-all + - hw-aws-sqs-conduit + - hw-json + - hw-json-demo + - hw-json-lens + - hw-json-simple-cursor + - hw-json-standard-cursor + - hw-uri + - hworker-ses + - hwormhole + - hws + - hwsl2-bytevector + - hwsl2-reducers + - hxournal + - hxt-binary + - hxt-filter + - hxthelper + - hxweb + - hybrid + - hydra-print + - hydrogen-cli + - hydrogen-cli-args + - hydrogen-data + - hydrogen-parsing + - hydrogen-prelude + - hydrogen-prelude-parsec + - hydrogen-syntax + - hydrogen-util + - hyena + - hylotab + - hyloutils + - hyperpublic + - i + - iException + - ice40-prim + - ide-backend + - ide-backend-server + - ideas-math + - ideas-math-types + - ideas-statistics + - identicon-style-squares + - idris + - ige-mac-integration + - igrf + - ihaskell-inline-r + - ihaskell-rlangqq + - ihttp + - imap + - imbib + - imgurder + - imj-animation + - imj-base + - imj-game-hamazed + - imj-measure-stdout + - imm + - imparse + - imperative-edsl + - imperative-edsl-vhdl + - importify + - imprevu-happstack + - improve + - inch + - incremental-computing + - incremental-maps + - increments + - indentation + - indentation-parsec + - indentation-trifecta + - indexation + - indieweb-algorithms + - indigo + - inferno-core + - inferno-lsp + - inferno-vc + - infinity + - inline-java + - inliterate + - inspector-wrecker + - instant-aeson + - instant-bytes + - instant-deepseq + - instant-hashable + - instant-zipper + - instrument-cloudwatch + - integreat + - intel-aes + - interpolatedstring-qq + - interpolatedstring-qq-mwotton + - intro-prelude + - introduction-test + - intset + - invertible-hlist + - ion + - ipatch + - ipc + - ipld-cid + - ipprint + - iptadmin + - irc-fun-bot + - irc-fun-client + - irc-fun-color + - irc-fun-messages + - ironforge + - isevaluated + - ismtp + - isobmff-builder + - isohunt + - iter-stats + - iteratee-compress + - iteratee-mtl + - iteratee-parsec + - iteratee-stm + - iterio-server + - iterm-show-JuicyPixels + - iterm-show-diagrams + - ival + - ivor + - ivory-avr-atmega328p-registers + - ivory-backend-c + - ivory-bitdata + - ivory-eval + - ivory-examples + - ivory-hw + - ivory-opts + - ivory-quickcheck + - ivory-serialize + - ivory-stdlib + - ivy-web + - ix + - ixset + - iyql + - j + - j2hs + - java-bridge-extras + - java-character + - java-reflect + - javaclass + - javasf + - jespresso + - jmacro-rpc-happstack + - jmacro-rpc-snap + - jobs-ui + - join + - jordan-openapi + - jordan-servant + - jordan-servant-client + - jordan-servant-openapi + - jordan-servant-server + - jot + - jsaddle-hello + - jsc + - jsmw + - json-ast-json-encoder + - json-autotype + - json-b + - json-enumerator + - json-incremental-decoder + - json-pointer-aeson + - json-pointer-hasql + - json-query + - json-rpc-client + - json-schema + - json-spec + - json-spec-openapi + - json-togo + - json-tokens + - json2-hdbc + - json2sg + - jsons-to-schema + - jspath + - jvm + - jvm-batching + - jvm-streaming + - kafka-device + - kafka-device-glut + - kafka-device-joystick + - kafka-device-leap + - kafka-device-spacenav + - kafka-device-vrpn + - kaleidoscope + - kansas-lava + - kansas-lava-cores + - kansas-lava-papilio + - kansas-lava-shake + - karakuri + - katip-rollbar + - keelung + - keera-hails-mvc-environment-gtk + - keera-hails-mvc-model-lightmodel + - keera-hails-mvc-model-protectedmodel + - keera-hails-mvc-solutions-gtk + - keera-hails-mvc-view-gtk + - keera-hails-reactive-cbmvar + - keera-hails-reactive-fs + - keera-hails-reactive-gtk + - keera-hails-reactive-htmldom + - keera-hails-reactive-network + - keera-hails-reactive-polling + - keera-hails-reactive-wx + - keera-hails-reactive-yampa + - keera-hails-reactivelenses + - keera-posture + - keid-resource-gltf + - keid-ui-dearimgui + - kerry + - kevin + - key-vault + - keyring + - keysafe + - keyvaluehash + - keyword-args + - kicad-data + - kif-parser + - kind-rational + - kit + - kmeans-par + - kmeans-vector + - knead + - knead-arithmetic + - knit-haskell + - koji-install + - koji-tool + - korfu + - ks-test + - kubernetes-client + - kure-your-boilerplate + - kurita + - kvitable + - laborantin-hs + - labsat + - labyrinth + - labyrinth-server + - lagrangian + - laika + - lambda-devs + - lambda-options + - lambdaFeed + - lambdaLit + - lambdabot-zulip + - lambdacat + - lambdacms-media + - lambdacube + - lambdacube-bullet + - lambdacube-compiler + - lambdacube-edsl + - lambdacube-examples + - lambdacube-gl + - lambdacube-samples + - lambdaya-bus + - lambdiff + - lame-tester + - landlock + - lang + - language-Modula2 + - language-boogie + - language-eiffel + - language-kort + - language-ninja + - language-oberon + - language-puppet + - language-python-colour + - language-qux + - language-spelling + - large-anon + - large-records + - lat + - latex-formulae-hakyll + - latex-formulae-pandoc + - latex-svg-hakyll + - latex-svg-pandoc + - launchdarkly-server-sdk-redis-hedis + - layered-state + - layers-game + - layouting + - lazy-hash-cache + - lda + - ldap-scim-bridge + - ldapply + - leaky + - lean + - learning-hmm + - legion + - legion-discovery + - legion-discovery-client + - legion-extra + - leksah + - leksah-server + - lens-accelerate + - lens-utils + - levmar-chart + - lex-applicative + - lgtk + - lha + - lhae + - lhe + - libconfig + - libcspm + - libgraph + - liblastfm + - liblawless + - liblinear-enumerator + - libmolude + - libraft + - librato + - libxml-enumerator + - lifted-base-tf + - lightning-haskell + - lightstep-haskell + - lighttpd-conf + - lighttpd-conf-qq + - linear-accelerate + - linear-code + - linearEqSolver + - linearscan-hoopl + - linkchk + - linkcore + - linnet + - linnet-aeson + - linnet-conduit + - linux-ptrace + - lio-eci11 + - lion + - liquid-base + - liquid-bytestring + - liquid-containers + - liquid-ghc-prim + - liquid-parallel + - liquid-platform + - liquid-prelude + - liquid-vector + - liquidhaskell + - liquidhaskell-cabal-demo + - list-t-attoparsec + - list-t-html-parser + - list-tuple + - list-witnesses + - listenbrainz-client + - liszt + - lit + - live-sequencer + - llvm + - llvm-analysis + - llvm-base-types + - llvm-base-util + - llvm-data-interop + - llvm-dsl + - llvm-extension + - llvm-extra + - llvm-general + - llvm-general-quote + - llvm-hs-pretty + - llvm-pretty-bc-parser + - llvm-tools + - lmonad-yesod + - lnd-client + - lnurl-authenticator + - local-search + - localize + - locked-poll + - log + - log-effect-syslog + - log-postgres + - log-utils + - log4hs + - logging-effect-extra + - logic-classes + - lojban + - lojysamban + - lol + - lol-apps + - lol-benches + - lol-cpp + - lol-repa + - lol-tests + - lol-typing + - loli + - longshot + - loop-effin + - lorentz + - lostcities + - loup + - lrucaching-haxl + - ls-usb + - lsystem + - ltext + - luachunk + - lucid-colonnade + - lucienne + - lui + - luminance-samples + - lvish + - lz4-conduit + - lzma-enumerator + - mDNSResponder-client + - macbeth-lib + - machines-amazonka + - machines-directory + - machines-process + - mackerel-client + - macosx-make-standalone + - magic-wormhole + - magicbane + - mahoro + - maid + - mailgun + - majordomo + - majority + - make-package + - manatee + - manatee-all + - manatee-anything + - manatee-browser + - manatee-core + - manatee-curl + - manatee-editor + - manatee-filemanager + - manatee-imageviewer + - manatee-ircclient + - manatee-mplayer + - manatee-pdfviewer + - manatee-processmanager + - manatee-reader + - manatee-template + - manatee-terminal + - manatee-welcome + - mangopay + - mangrove + - manifold-random + - marionetta + - markdown-pap + - markdown2svg + - markov-processes + - markup + - marmalade-upload + - marquise + - marvin + - masakazu-bot + - massiv-persist + - matchers + - math-programming-glpk + - math-programming-tests + - mathblog + - mathlink + - matsuri + - maxent + - maxent-learner-hw-gui + - maxsharing + - mcmc-samplers + - medea + - mediabus-fdk-aac + - mediabus-rtp + - mellon-gpio + - mellon-web + - memcache-conduit + - memory-cd + - memory-hexstring + - merkle-patricia-db + - meta-par-accelerate + - metaplug + - metar + - metar-http + - metronome + - micro-gateway + - microformats2-types + - midimory + - mighttpd + - minecraft-data + - minesweeper + - mini-egison + - minilight + - minilight-lua + - minimung + - minioperational + - minirotate + - mismi-kernel + - mismi-s3-core + - miss + - miss-porcelain + - missing-py2 + - mixed-strategies + - mkbndl + - mlist + - mmsyn6ukr + - mmsyn7h + - mmsyn7l + - mmsyn7s + - mmsyn7ukr + - mmsyn7ukr-array + - mmtl-base + - moan + - modify-fasta + - modsplit + - modular-prelude-classy + - modularity + - modulo + - mole + - monad-exception + - monad-http + - monad-metrics-extensible + - monad-state + - monad-stlike-stm + - monadiccp-gecode + - monarch + - monetdb-mapi + - mongrel2-handler + - monky + - monomer-flatpak-example + - monte-carlo + - moo + - moo-nad + - moonshine + - morley + - morley-client + - morley-prelude + - morley-upgradeable + - morloc + - morphisms-functors-inventory + - motor-diagrams + - mp + - mp3decoder + - mpdmate + - mprelude + - mpretty + - mprover + - mps + - mptcp + - mptcp-pm + - mptcpanalyzer + - msgpack-aeson + - msgpack-arbitrary + - msgpack-binary + - msgpack-idl + - msgpack-persist + - msgpack-rpc + - msgpack-rpc-conduit + - msgpack-testsuite + - msi-kb-backlit + - mtgoxapi + - mu-avro + - mu-graphql + - mu-grpc-client + - mu-grpc-common + - mu-grpc-server + - mu-kafka + - mu-lens + - mu-optics + - mu-persistent + - mu-prometheus + - mu-protobuf + - mu-rpc + - mu-servant-server + - mu-tracing + - multi-cabal + - multibase + - multifocal + - multihash-serialise + - multilinear-io + - multiplicity + - multipool-persistent + - multipool-persistent-postgresql + - multipool-postgresql-simple + - multirec-alt-deriver + - multirec-binary + - multisetrewrite + - murder + - murmurhash3 + - mushu + - music-graphics + - music-parts + - music-pitch + - music-preludes + - music-score + - music-sibelius + - music-suite + - musicbrainz-email + - musicxml2 + - mutable-iter + - mute-unmute + - mvc-updates + - mvclient + - mwc-random-accelerate + - mxnet-dataiter + - mxnet-examples + - mxnet-nn + - myTestlll + - mysnapsession + - mysnapsession-example + - mysql-haskell-nem + - mysql-haskell-openssl + - mysql-simple-typed + - mywatch + - mywork + - n2o-web + - nakadi-client + - named-servant-client + - named-servant-server + - nanq + - nats-queue + - natural-number + - nemesis-titan + - nerf + - nero-wai + - nero-warp + - nested-routes + - net-mqtt_0_8_5_0 + - net-spider + - net-spider-cli + - net-spider-pangraph + - net-spider-rpl + - net-spider-rpl-cli + - netcore + - netlines + - netstring-enumerator + - nettle-frp + - nettle-netkit + - nettle-openflow + - network-anonymous-i2p + - network-anonymous-tor + - network-conduit-tls_1_4_0 + - network-connection + - network-enumerator + - network-hans + - network-interfacerequest + - network-minihttp + - network-netpacket + - network-pgi + - network-rpca + - network-stream + - network-topic-models + - network-unexceptional + - network-uri-json + - network-websocket + - neural + - neuron + - newsletter-mailgun + - newsynth + - ngx-export-tools-extra + - nikepub + - nirum + - nix-thunk + - nkjp + - nlp-scores-scripts + - nom + - nomyx-api + - nomyx-core + - nomyx-language + - nomyx-library + - nomyx-server + - nonlinear-optimization-ad + - nonlinear-optimization-backprop + - notmuch-web + - now-haskell + - nri-env-parser + - nri-http + - nri-kafka + - nri-observability + - nri-postgresql + - nri-prelude + - nri-redis + - nri-test-encoding + - numerals-base + - numeric-kinds + - numeric-ode + - numerical + - numhask-hedgehog + - numhask-histogram + - numhask-range + - numhask-test + - nyan + - nymphaea + - nyx-game + - oath + - oauth2-jwt-bearer + - obd + - obdd + - oberon0 + - obj + - objectid + - objective + - ochan + - ochintin-daicho + - octane + - octohat + - octopus + - oculus + - odd-jobs + - off-simple + - ogma-cli + - ogma-core + - ogma-language-fret-cs + - ogma-language-fret-reqs + - ois-input-manager + - olwrapper + - om-kubernetes + - om-legion + - online-csv + - opc-xml-da-client + - open-adt-tutorial + - open-typerep + - opencv + - opencv-extra + - openpgp-Crypto + - openpgp-crypto-api + - openssh-github-keys + - opentelemetry-lightstep + - opentok + - opentracing-http-client + - opentracing-jaeger + - opentracing-wai + - opentracing-zipkin-common + - opentracing-zipkin-v1 + - opentracing-zipkin-v2 + - optima-for-hasql + - optimal-blocks + - optimusprime + - optparse-enum + - orchid + - orchid-demo + - order-maintenance + - orgstat + - osm-download + - otp-authenticator + - outsort + - overeasy + - overload + - package-o-tron + - padKONTROL + - pagerduty + - pairing + - panda + - pandoc-highlighting-extensions + - pandoc-japanese-filters + - pandora-io + - panfiguration + - papa + - papa-base + - papa-base-implement + - papa-export + - papa-implement + - papa-lens + - papa-semigroupoids + - paprika + - par-dual + - parallel-tree-search + - parco-attoparsec + - parco-parsec + - parconc-examples + - parquet-hs + - parse-help + - parsestar + - parsley + - parsley-garnish + - partage + - passman-cli + - patch-image + - path-text-utf8_0_0_2_0 + - pathfindingcore + - patterns + - paypal-rest-client + - pcap-enumerator + - pcapng + - pcf + - pdf-slave + - pdfname + - pdfsplit + - peakachu + - pec + - pell + - penny + - penny-bin + - penny-lib + - penrose + - peparser + - perceptual-hash + - perdure + - perf + - perf-analysis + - perfecthash + - periodic-client + - periodic-client-exe + - periodic-server + - perm + - permutations + - persistable-record + - persistable-types-HDBC-pg + - persistent-audit + - persistent-event-source + - persistent-eventsource + - persistent-hssqlppp + - persistent-map + - persistent-mtl + - persistent-mysql-haskell + - persistent-mysql-pure + - persistent-protobuf + - persistent-relational-record + - persona-idp + - peyotls + - peyotls-codec + - pg-entity + - phonetic-languages-common + - phonetic-languages-constraints + - phonetic-languages-examples + - phonetic-languages-general + - phonetic-languages-permutations + - phonetic-languages-properties + - phonetic-languages-simplified-common + - phonetic-languages-simplified-examples-array + - phonetic-languages-simplified-examples-common + - phonetic-languages-simplified-lists-examples + - phonetic-languages-simplified-properties-lists + - phonetic-languages-simplified-properties-lists-double + - phonetic-languages-ukrainian + - phooey + - phybin + - pianola + - pier + - pine + - ping + - pinpon + - pipe-enumerator + - pipes-attoparsec-streaming + - pipes-cacophony + - pipes-cereal-plus + - pipes-conduit + - pipes-courier + - pipes-extra + - pipes-files + - pipes-fluid + - pipes-illumina + - pipes-key-value-csv + - pipes-misc + - pipes-p2p + - pipes-p2p-examples + - pisigma + - pitchtrack + - piyo + - pkgtreediff + - planet-mitchell + - playlists-http + - plocketed + - plugins-auto + - png-file + - pngload + - point-octree + - pointless-lenses + - pointless-rewrite + - poke + - poker + - polh-lexicon + - polydata + - polysemy-RandomFu + - polysemy-account + - polysemy-account-api + - polysemy-db + - polysemy-extra + - polysemy-fskvstore + - polysemy-hasql + - polysemy-hasql-test + - polysemy-http + - polysemy-kvstore-jsonfile + - polysemy-log-co + - polysemy-methodology + - polysemy-methodology-co-log + - polysemy-methodology-composite + - polysemy-path + - polysemy-scoped-fs + - polysemy-uncontrolled + - polysemy-video + - polysemy-vinyl + - polytypeable-utils + - pomodoro + - pontarius-mediaserver + - popenhs + - porcupine-core + - porcupine-http + - porcupine-s3 + - ports + - poseidon + - poseidon-postgis + - postgresql-common-persistent + - postgresql-pure + - postgresql-simple-ltree + - postgresql-simple-queue + - postgresql-simple-typed + - postgresql-tx-query + - postgresql-tx-squeal + - postgresql-tx-squeal-compat-simple + - postgrest + - postmark + - potoki + - potoki-cereal + - potoki-conduit + - potoki-hasql + - potoki-zlib + - powerqueue-sqs + - pqueue-mtl + - practice-room + - pred-set + - pred-trie + - prednote-test + - prelate + - presto-hdbc + - pretty-diff + - prettychart + - preview + - primal-memory + - primitive-containers + - primula-board + - primula-bot + - proc + - process-iterio + - process-progress + - process-qq + - process-streaming + - procrastinating-structure + - producer + - product + - prof2dot + - progressbar + - project-m36 + - prolog-graph + - prolog-graph-lib + - prologue + - prolude + - propane + - proplang + - prosidyc + - proto-lens-combinators + - proto-lens-descriptors + - proto-lens-protobuf-types + - proto-lens-protoc + - proto-lens-setup + - proto3-suite + - protobuf-native + - protocol-buffers-descriptor + - protocol-buffers-descriptor-fork + - proton + - psc-ide + - psql + - ptera + - ptera-core + - ptera-th + - puffytools + - pugs-compat + - pugs-hsregex + - punkt + - puppetresources + - pure-cdb + - pure-priority-queue-tests + - purenix + - purescript + - purescript-iso + - purescript-tsd-gen + - pursuit-client + - push-notify + - push-notify-apn + - push-notify-ccs + - push-notify-general + - puzzle-draw-cmdline + - pvd + - qd-vec + - qhs + - qhull + - qnap-decrypt + - qr-repa + - qtah-cpp-qt5 + - qtah-examples + - qtah-generator + - qtah-qt5 + - quantfin + - quantum-random + - queryparser + - queryparser-demo + - queryparser-hive + - queryparser-presto + - queryparser-vertica + - queuelike + - quickbench + - quickcheck-lockstep + - quickcheck-poly + - quickcheck-regex + - quickcheck-relaxng + - quickcheck-state-machine + - quickcheck-state-machine-distributed + - quicktest + - quipper + - quipper-algorithms + - quipper-all + - quipper-cabal + - quipper-demos + - quipper-language + - quipper-libraries + - quipper-rendering + - quipper-tools + - quipper-utils + - quiver-binary + - quiver-bytestring + - quiver-cell + - quiver-csv + - quiver-enumerator + - quiver-groups + - quiver-http + - quiver-instances + - quiver-interleave + - quiver-sort + - qux + - rabocsv2qif + - rail-compiler-editor + - rails-session + - rainbow-tests + - raketka + - rallod + - randfile + - random-access-file + - random-class + - random-effin + - random-extras + - random-hypergeometric + - range-space + - rasa + - rasa-example-config + - rasa-ext-bufs + - rasa-ext-cmd + - rasa-ext-cursors + - rasa-ext-files + - rasa-ext-logger + - rasa-ext-slate + - rasa-ext-status-bar + - rasa-ext-style + - rasa-ext-views + - rasa-ext-vim + - rascal + - raw-feldspar + - rawr + - razom-text-util + - rbr + - rc + - rdioh + - react-flux-servant + - reactive + - reactive-banana-sdl + - reactive-banana-wx + - reactive-fieldtrip + - reactive-glut + - reactor + - readline-in-other-words + - readpyc + - reanimate + - record-aeson + - record-gl + - record-preprocessor + - record-syntax + - records-th + - recursion-schemes-ix + - redHandlers + - reddit + - redis-io + - redis-resp + - rediscaching-haxl + - reduce-equations + - refh + - reflex-animation + - reflex-backend-wai + - reflex-dom-colonnade + - reflex-dynamic-containers + - reflex-gadt-api + - reflex-ghci + - reflex-gloss-scene + - reflex-libtelnet + - reflex-localize + - reflex-localize-dom + - reflex-monad-auth + - reflex-potatoes + - reflex-process + - refractor + - refurb + - reg-alloc-graph-color + - regex-deriv + - regex-genex + - regex-pcre-text + - regex-pderiv + - regex-xmlschema + - regexchar + - regexp-tries + - regional-pointers + - regions-monadsfd + - regions-monadstf + - regions-mtl + - registry-aeson + - registry-hedgehog + - registry-hedgehog-aeson + - registry-messagepack + - registry-options + - regular-extras + - regular-web + - regular-xmlpickler + - reheat + - relational-postgresql8 + - relational-query + - relational-query-HDBC + - relational-query-postgresql-pure + - relational-record + - relational-record-examples + - relational-schemas + - relative-date + - remote-json + - remote-json-client + - remote-json-server + - remotion + - repa-algorithms + - repa-array + - repa-bytestring + - repa-convert + - repa-devil + - repa-examples + - repa-fftw + - repa-flow + - repa-io + - repa-linear-algebra + - repa-plugin + - repa-sndfile + - repa-stream + - repa-v4l2 + - replicant + - repo-based-blog + - repr + - representable-tries + - req_3_13_1 + - reserve + - resin + - resource-simple + - respond + - rest-client + - rest-core + - rest-example + - rest-gen + - rest-happstack + - rest-snap + - rest-stringmap + - rest-types + - rest-wai + - restful-snap + - restricted-workers + - rethinkdb-model + - rethinkdb-wereHamster + - retroclash-lib + - retroclash-sim + - rewrite + - rewriting + - rezoom + - rfc-env + - rfc-http-client + - rfc-psql + - rfc-redis + - rfc-servant + - rhine-bayes + - rhine-gloss + - rhine-terminal + - rhythm-game-tutorial + - rib + - ribosome + - ribosome-app + - ribosome-host + - ribosome-host-test + - ribosome-root + - ribosome-test + - ridley + - ridley-extras + - rio-process-pool + - riot + - ripple + - ripple-federation + - risc-v + - rivet + - rlwe-challenges + - rmonad + - rncryptor + - rob + - robot + - roc-cluster-demo + - rock + - roguestar-engine + - roguestar-gl + - roguestar-glut + - rollbar-cli + - rollbar-wai + - rollbar-yesod + - ron-rdt + - ron-schema + - ron-storage + - rose-trie + - roshask + - rosmsg-bin + - rounded + - rounded-hw + - roundtrip-xml + - route-generator + - route-planning + - row + - rpc + - rpf + - rsagl + - rsagl-frp + - rsagl-math + - rtcm + - ruler + - ruler-core + - runtime-arbitrary + - rv + - s-expression + - safe-coloured-text-layout-gen + - safe-coupling + - safe-plugins + - safer-file-handles + - safer-file-handles-bytestring + - safer-file-handles-text + - sai-shape-syb + - sak + - salak-toml + - salak-yaml + - saltine-quickcheck + - salvia + - salvia-demo + - salvia-extras + - salvia-sessions + - salvia-websocket + - samtools + - samtools-conduit + - samtools-enumerator + - samtools-iteratee + - sarsi + - sasha + - sasl + - sat-micro-hs + - satchmo-examples + - satchmo-funsat + - satchmo-toysat + - sauron + - sbv-program + - sbvPlugin + - sc2-lowlevel + - sc2-proto + - sc2-support + - sc2hs + - sc3-rdu + - scalable-server + - scalp-webhooks + - scalpel-search + - scan-metadata + - scan-vector-machine + - scheduling + - schematic + - scholdoc + - scholdoc-citeproc + - scholdoc-texmath + - scion + - scion-browser + - scope + - scope-cairo + - scotty-fay + - scotty-form + - scotty-hastache + - scotty-haxl + - scotty-params-parser + - scp-streams + - scrabble-bot + - scrapbook + - scroll + - sdl2-sprite + - sdp-binary + - sdp-deepseq + - sdp-hashable + - sdp-io + - sdp-quickcheck + - sdp4bytestring + - sdp4text + - sdp4unordered + - sdp4vector + - seakale-postgresql + - seakale-tests + - secrm + - sednaDBXML + - seitz-symbol + - selda-json + - selda-postgresql + - selda-sqlite + - selenium-server + - semantic-source + - semi-iso + - semialign-extras + - semiring + - semiring-num + - sensenet + - sentence-jp + - sentiwordnet-parser + - seqaid + - seqloc + - seqloc-datafiles + - sequor + - serpentine + - serv + - serv-wai + - servant-auth-hmac + - servant-auth-token + - servant-auth-token-acid + - servant-auth-token-api + - servant-auth-token-leveldb + - servant-auth-token-persistent + - servant-auth-token-rocksdb + - servant-client-namedargs + - servant-csharp + - servant-db-postgresql + - servant-ede + - servant-ekg + - servant-examples + - servant-haxl-client + - servant-http2-client + - servant-matrix-param + - servant-mock + - servant-oauth2 + - servant-oauth2-examples + - servant-openapi3 + - servant-postgresql + - servant-proto-lens + - servant-pushbullet-client + - servant-queryparam-openapi3 + - servant-rate-limit + - servant-reason + - servant-serialization + - servant-server-namedargs + - servant-snap + - servant-streaming-client + - servant-streaming-docs + - servant-streaming-server + - servant-swagger-tags + - servant-to-elm + - servant-util + - servant-util-beam-pg + - servant-waargonaut + - servant-zeppelin-client + - servant-zeppelin-server + - servant-zeppelin-swagger + - serversession-frontend-snap + - ses-html-snaplet + - sessiontypes-distributed + - sgf + - sgrep + - shady-gen + - shady-graphics + - shake-bindist + - shake-minify-css + - shakebook + - shaker + - shapefile + - shapely-data + - sheets + - shelduck + - shellmate-extras + - shine-varying + - short-vec + - short-vec-lens + - showdown + - shpider + - shuffle + - si-clock + - sibe + - sigma-ij + - signable + - signable-haskell-protoc + - signals + - signature + - silvi + - simgi + - simple-c-value + - simple-firewire + - simple-log-syslog + - simple-logging + - simple-nix + - simple-pascal + - simple-postgresql-orm + - simpleirc-lens + - simseq + - siphon + - siren-json + - sirkel + - sitemap + - skeleton + - skeletons + - sketch-frp-copilot + - skylark-client + - slate + - slip32 + - smallcheck-laws + - smallcheck-lens + - smallstring + - smartword + - smash-aeson + - smash-lens + - smash-microlens + - smash-optics + - smcdel + - smith-cli + - smith-client + - smt + - smtlib2-debug + - smtlib2-pipe + - smtlib2-quickcheck + - smtlib2-timing + - smtp2mta + - snap + - snap-auth-cli + - snap-elm + - snap-error-collector + - snap-extras + - snap-routes + - snap-testing + - snap-utils + - snap-web-routes + - snaplet-acid-state + - snaplet-actionlog + - snaplet-amqp + - snaplet-auth-acid + - snaplet-coffee + - snaplet-css-min + - snaplet-customauth + - snaplet-environments + - snaplet-fay + - snaplet-ghcjs + - snaplet-hasql + - snaplet-haxl + - snaplet-hdbc + - snaplet-hslogger + - snaplet-i18n + - snaplet-influxdb + - snaplet-lss + - snaplet-mandrill + - snaplet-mongoDB + - snaplet-mongodb-minimalistic + - snaplet-mysql-simple + - snaplet-oauth + - snaplet-persistent + - snaplet-postgresql-simple + - snaplet-postmark + - snaplet-purescript + - snaplet-recaptcha + - snaplet-redis + - snaplet-redson + - snaplet-rest + - snaplet-riak + - snaplet-sass + - snaplet-scoped-session + - snaplet-sedna + - snaplet-ses-html + - snaplet-sqlite-simple + - snaplet-sqlite-simple-jwt-auth + - snaplet-stripe + - snaplet-tasks + - snaplet-typed-sessions + - snaplet-wordpress + - snappy-iteratee + - sndfile-enumerators + - sneakyterm + - sneathlane-haste + - snm + - snmp + - snow-white + - snowflake-core + - snowflake-server + - snumber + - sock2stream + - socket-io + - sockets + - socketson + - solga-swagger + - solr + - souffle-dsl + - source-code-server + - spade + - sparkle + - sparrow + - sparsebit + - spartacon + - spata + - spatial-math_0_5_0_1 + - specialize-th + - spectral-clustering + - speculation-transformers + - speechmatics + - spelling-suggest + - sphero + - sphinx-cli + - spice + - spike + - spline3 + - splines + - sprinkles + - sproxy + - sproxy-web + - sproxy2 + - sql-simple-mysql + - sql-simple-pool + - sql-simple-postgresql + - sql-simple-sqlite + - sqlite-simple-typed + - sqsd-local + - squeal-postgresql + - squeal-postgresql-ltree + - squeal-postgresql-uuid-ossp + - squeeze + - sr-extra + - srt-dhall + - srt-formatting + - sscgi + - sshd-lint + - sssp + - sstable + - stable-tree + - stack-hpc-coveralls + - stack-network + - stack-run-auto + - stackage + - stackage-build-plan + - stackage-cabal + - stackage-curator + - stackage-query + - stackage-sandbox + - stackage-setup + - stackage-upload + - stackage2nix + - stackctl + - starrover2 + - stateful-mtl + - static-closure + - statistics-dirichlet + - statsd-client + - statsdi + - steeloverseer + - stern-brocot + - stmcontrol + - storablevector-streamfusion + - stratum-tool + - stratux + - stratux-demo + - stratux-http + - stratux-websockets + - streaming-base64 + - streaming-concurrency + - streaming-fft + - streaming-process + - streaming-sort + - strelka + - strelka-wai + - strict-containers-lens + - strict-containers-serialise + - strict-data + - string-typelits + - stripe-haskell + - stripe-http-client + - stripe-http-streams + - stripe-tests + - strongswan-sql + - structural-induction + - structured-mongoDB + - stunts + - stutter + - subhask + - substring-parser + - sugar-data + - sugar-json + - sugar-scheme + - summoner-tui + - sump + - sunroof-examples + - sunroof-server + - supercollider-ht + - supercollider-midi + - superconstraints + - supernova + - sv + - sv-cassava + - sv-svfactor + - svg2q + - svgone + - swapper + - sweet-egison + - switch + - syb-with-class-instances-text + - sydtest-amqp + - sydtest-webdriver-screenshot + - sydtest-webdriver-yesod + - sydtest-yesod + - sylvia + - symantic-atom + - symantic-http-demo + - symantic-http-test + - symantic-lib + - symbiote + - symmetry-operations-symbols + - syncthing-hs + - syntax + - syntax-attoparsec + - syntax-example + - syntax-example-json + - syntax-pretty + - syntax-printer + - syntaxnet-haskell + - synthesizer-llvm + - sys-process + - systemd-api + - systemstats + - t3-client + - ta + - tag-stream + - tagged-list + - tagged-th + - tagsoup-navigate + - tagstew + - tahoe-chk + - tahoe-great-black-swamp + - tahoe-ssk + - tak-ai + - takahashi + - tal + - talash + - tamarin-prover + - tamarin-prover-term + - tamarin-prover-theory + - tar-bytestring + - target + - task + - task-distribution + - tasty-bdd + - tasty-groundhog-converters + - tasty-hspec_1_2_0_4 + - tasty-integrate + - tasty-jenkins-xml + - tasty-laws + - tasty-lens + - tasty-sugar + - tateti-tateti + - tbox + - tccli + - tcod-haskell + - tdd-util + - techlab + - telegram-bot + - telegram-raw-api + - temporal-csound + - ten-lens + - ten-unordered-containers + - tensorflow-opgen + - tensorflow-proto + - terminal-text + - terrahs + - test-sandbox-compose + - test-simple + - testbench + - text-json-qq + - text-locale-encoding + - text-plus + - text-xml-generic + - textmatetags + - th-alpha + - th-context + - th-instances + - th-typegraph + - theoremquest-client + - thimk + - threaded + - thumbnail-polish + - tic-tac-toe + - tickle + - tidal-serial + - tighttp + - timberc + - time-exts + - time-http + - time-io-access + - time-warp + - timeprint + - timezone-unix + - tinkoff-invest-sdk + - tintin + - tinyMesh + - tinytools + - tinytools-vty + - tip-haskell-frontend + - tip-lib + - titan + - tlex + - tlex-core + - tlex-debug + - tlex-encoding + - tlex-th + - tls-extra + - tmpl + - tn + - to-string-instances + - toboggan + - todos + - tokstyle + - toktok + - tomlcheck + - tonatona + - tonatona-google-server-api + - tonatona-logger + - tonatona-persistent-postgresql + - tonatona-persistent-sqlite + - tonatona-servant + - too-many-cells + - top + - topaz + - total-map + - toxcore + - toxcore-c + - toysolver + - tpar + - tpb + - trajectory + - trans-fx-data + - trans-fx-io + - transfer-db + - transformations + - transformers-convert + - transient-universe + - transient-universe-tls + - translate-cli + - trasa + - trasa-client + - trasa-extra + - trasa-form + - trasa-reflex + - trasa-server + - trasa-th + - traversal-template + - treemap-html-tools + - treersec + - trek-app + - trek-db + - triangulation + - trigger + - trimpolya + - trurl + - tsession-happstack + - tsweb + - tuntap-simple + - tup-functor + - tuple-gen + - tuple-hlist + - tuple-morph + - tuple-ops + - turingMachine + - twee + - tweet-hs + - twentefp-eventloop-graphics + - twentefp-eventloop-trees + - twentefp-graphs + - twentefp-rosetree + - twentefp-trees + - twentyseven + - twfy-api-client + - twidge + - twilight-stm + - twill + - twirl + - twitter-enumerator + - txt + - type-assertions + - type-cache + - type-cereal + - type-combinators-quote + - type-combinators-singletons + - type-digits + - type-ord + - type-ord-spine-cereal + - type-sets + - type-structure + - type-sub-th + - typed-admin + - typed-encoding-encoding + - typed-streams + - typedflow + - typelevel + - typesafe-precure + - typescript-docs + - typson-beam + - typson-esqueleto + - typson-selda + - u2f + - uber + - ucam-webauth + - ucd + - udbus-model + - uhc-light + - uhc-util + - ukrainian-phonetics-basic + - unagi-bloomfilter + - unbound + - uni-events + - uni-graphs + - uni-htk + - uni-posixutil + - uni-reactor + - uni-uDrawGraph + - unicode-normalization + - unicoder + - uniform-io + - uniform-watch + - uniqueness-periods + - uniqueness-periods-vector-examples + - uniqueness-periods-vector-filters + - uniqueness-periods-vector-general + - uniqueness-periods-vector-properties + - unitym-servant + - unitym-yesod + - universal + - universe + - universe-dependent-sum + - universe-th + - unix-fcntl + - unpacked-these + - unpacked-validation + - unparse-attoparsec + - unscramble + - up + - urbit-airlock + - urbit-api + - ureader + - urembed + - uri-enumerator + - uri-enumerator-file + - urlpath + - usb + - usb-enumerator + - usb-hid + - usb-id-database + - usb-iteratee + - usb-safe + - users-mysql-haskell + - utf + - util-exception + - util-primitive-control + - util-universe + - uu-cco-examples + - uu-cco-hut-parsing + - uu-cco-uu-parsinglib + - uu-options + - uuid-crypto + - uvector-algorithms + - v4l2 + - v4l2-examples + - vabal + - vacuum-cairo + - vacuum-graphviz + - vacuum-opengl + - vacuum-ubigraph + - valid + - variable-media-field-dhall + - variable-media-field-optics + - variable-precision + - vault-tool-server + - vault-trans + - vaultaire-common + - vcache-trie + - vcard + - vcsgui + - vect-floating-accelerate + - vector-instances-collections + - vector-text + - vectortiles + - venzone + - verdict-json + - verifiable-expressions + - verismith + - versioning-servant + - vessel + - vflow-types + - vformat-aeson + - vformat-time + - vfr-waypoints + - vigilance + - vimeta + - vinyl-generics + - vinyl-operational + - vision + - visual-graphrewrite + - vocoder + - vocoder-audio + - vocoder-conduit + - vocoder-dunai + - voicebase + - vorbiscomment + - vpq + - vty-ui-extras + - waargonaut + - wahsp + - wai-devel + - wai-dispatch + - wai-handler-hal + - wai-handler-snap + - wai-hastache + - wai-middleware-brotli + - wai-middleware-cache + - wai-middleware-cache-redis + - wai-middleware-consul + - wai-middleware-content-type + - wai-middleware-rollbar + - wai-middleware-route + - wai-middleware-validation + - wai-middleware-verbs + - wai-predicates + - wai-route + - wai-routing + - wai-session-alt + - wai-session-tokyocabinet + - wai-thrift + - wai-transformers + - waldo + - warp-grpc + - warp-quic + - warped + - wavesurfer + - wavy + - weatherhs + - web-fpco + - web-mongrel2 + - web-routes-regular + - web-routing + - web3 + - web3-bignum + - web3-crypto + - web3-ethereum + - web3-polkadot + - web3-provider + - web3-solidity + - webcrank-wai + - webdriver-w3c + - webgear-openapi + - webgear-server + - webify + - webserver + - websockets-rpc + - websockets-simple + - websockets-simple-extra + - weekdaze + - weierstrass-functions + - weighted + - werewolf-slack + - wgpu-hs + - what4 + - wheb-mongo + - wheb-redis + - wheb-strapped + - whitespace + - wholepixels + - wikipedia4epub + - wild-bind-indicator + - wild-bind-task-x11 + - wild-bind-x11 + - windowslive + - winery + - winio + - wire-streams + - wl-pprint-ansiterm + - wl-pprint-terminfo + - wlc-hs + - wobsurv + - wolf + - word + - workflow-extra + - workflow-pure + - workflow-types + - wraxml + - wrecker + - wrecker-ui + - wright + - writer-cps-full + - wsjtx-udp + - wtk-gtk + - wu-wei + - wumpus-basic + - wumpus-drawing + - wumpus-microprint + - wumpus-tree + - wuss_2_0_1_4 + - wx + - wxAsteroids + - wxFruit + - wxSimpleCanvas + - wxc + - wxcore + - wxhnotepad + - wxturtle + - wyvern + - xdcc + - xhb-atom-cache + - xhb-ewmh + - xml-catalog + - xml-enumerator + - xml-enumerator-combinators + - xml-isogen + - xml-monad + - xml-pipe + - xml-push + - xml-query-xml-conduit + - xml-query-xml-types + - xml-tydom-conduit + - xml2x + - xmltv + - xmms2-client + - xmms2-client-glib + - xmonad-contrib-bluetilebranch + - xmpipe + - xournal-builder + - xournal-convert + - xournal-parser + - xournal-render + - xournal-types + - xrefcheck + - xtc + - yajl-enumerator + - yam + - yam-datasource + - yam-job + - yam-logger + - yam-redis + - yam-servant + - yam-transaction + - yam-transaction-odbc + - yam-transaction-postgresql + - yam-web + - yaml-rpc-scotty + - yaml-rpc-snap + - yaml-streamly + - yarr-image-io + - yavie + - ycextra + - yeamer + - yeshql + - yesod-alerts + - yesod-articles + - yesod-auth-ldap + - yesod-colonnade + - yesod-continuations + - yesod-examples + - yesod-fay + - yesod-mangopay + - yesod-paypal-rest + - yesod-platform + - yesod-purescript + - yesod-raml-bin + - yesod-raml-docs + - yesod-raml-mock + - yesod-routes-typescript + - yesod-session-redis + - yesod-worker + - yi + - yi-contrib + - yi-core + - yi-dynamic-configuration + - yi-emacs-colours + - yi-frontend-pango + - yi-frontend-vty + - yi-fuzzy-open + - yi-ireader + - yi-keymap-cua + - yi-keymap-emacs + - yi-keymap-vim + - yi-misc-modes + - yi-mode-haskell + - yi-mode-javascript + - yi-monokai + - yi-snippet + - yi-solarized + - yi-spolsky + - yjftp + - yjftp-libs + - yoko + - york-lava + - yql + - yu-launch + - yuuko + - zasni-gerna + - zephyr + - zephyr-copilot + - zerobin + - zeromq3-conduit + - zeroth + - zifter-cabal + - zifter-git + - zifter-google-java-format + - zifter-hindent + - zifter-hlint + - zifter-stack + - zipper + - zippo + - ziptastic-client + - zlib-enum + - zm + - zmcat + - zoom-cache + - zoom-cache-pcm + - zoom-cache-sndfile + - zuramaru diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 9f938591c9a0..9b563907ebb5 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -20,6 +20,8 @@ self: { ]; description = "Haskell package for easy integration with the 2captcha API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "3d-graphics-examples" = callPackage @@ -46,6 +48,8 @@ self: { ]; description = "3D model parsers"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "4Blocks" = callPackage @@ -61,6 +65,7 @@ self: { ]; description = "A tetris-like game (works with GHC 6.8.3 and Gtk2hs 0.9.13)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "4Blocks"; }) {}; @@ -73,6 +78,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Abstract Application Interface"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ABList" = callPackage @@ -123,6 +130,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Detect which OS you're running on"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "AC-Colour" = callPackage @@ -145,6 +154,8 @@ self: { libraryHaskellDepends = [ array base gtk ]; description = "GTK+ pixel plotting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "AC-HalfInteger" = callPackage @@ -158,6 +169,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Efficient half-integer type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "AC-MiniTest" = callPackage @@ -171,6 +184,8 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "A simple test framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "AC-PPM" = callPackage @@ -206,6 +221,8 @@ self: { libraryHaskellDepends = [ ansi-terminal base ]; description = "Trivial wrapper over ansi-terminal"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "AC-VanillaArray" = callPackage @@ -217,6 +234,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Immutable arrays with plain integer indicies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "AC-Vector" = callPackage @@ -230,6 +249,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Efficient geometric vectors and transformations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "AC-Vector-Fancy" = callPackage @@ -241,6 +262,7 @@ self: { libraryHaskellDepends = [ AC-Angle AC-Vector base ]; description = "Fancy type-system stuff for AC-Vector"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ACME" = callPackage @@ -258,6 +280,8 @@ self: { ]; description = "Essential features"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ADPfusion" = callPackage @@ -285,6 +309,7 @@ self: { ]; description = "Efficient, high-level dynamic programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ADPfusionForest" = callPackage @@ -311,6 +336,7 @@ self: { benchmarkHaskellDepends = [ base criterion ForestStructures ]; description = "Dynamic programming on tree and forest structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ADPfusionSet" = callPackage @@ -335,6 +361,7 @@ self: { ]; description = "Dynamic programming for Set data structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "AERN-Basics" = callPackage @@ -354,7 +381,9 @@ self: { executableHaskellDepends = [ base containers directory ]; description = "foundational type classes for approximating exact real numbers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "toolAERN-bench-csv-to-gnuplot"; + broken = true; }) {}; "AERN-Net" = callPackage @@ -370,6 +399,7 @@ self: { ]; description = "Compositional lazy dataflow networks for exact real number computation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "AERN-Real" = callPackage @@ -386,6 +416,7 @@ self: { ]; description = "arbitrary precision real interval arithmetic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "AERN-Real-Double" = callPackage @@ -409,6 +440,7 @@ self: { ]; description = "arbitrary precision real interval arithmetic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "AERN-Real-Interval" = callPackage @@ -425,6 +457,7 @@ self: { ]; description = "arbitrary precision real interval arithmetic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "AERN-RnToRm" = callPackage @@ -441,6 +474,7 @@ self: { ]; description = "polynomial function enclosures (PFEs) approximating exact real functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "AERN-RnToRm-Plot" = callPackage @@ -458,6 +492,7 @@ self: { ]; description = "GL plotting of polynomial function enclosures (PFEs)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "AES" = callPackage @@ -499,6 +534,8 @@ self: { ]; description = "A library for writing AGI scripts for Asterisk"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ALUT" = callPackage @@ -530,6 +567,8 @@ self: { ]; description = "Low-level bindings for Asterisk Manager Interface (AMI)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ANum" = callPackage @@ -557,6 +596,7 @@ self: { ]; description = "ASN.1 support for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "AVar" = callPackage @@ -591,6 +631,7 @@ self: { libraryHaskellDepends = [ AbortT-transformers base monads-tf ]; description = "Monads-tf instances for the AbortT monad transformer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "AbortT-mtl" = callPackage @@ -602,6 +643,7 @@ self: { libraryHaskellDepends = [ AbortT-transformers base mtl ]; description = "mtl instances for the AbortT monad transformer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "AbortT-transformers" = callPackage @@ -619,6 +661,8 @@ self: { ]; description = "A monad and monadic transformer providing \"abort\" functionality"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ActionKid" = callPackage @@ -658,7 +702,9 @@ self: { libraryHaskellDepends = [ base ]; description = "Library for incremental computing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "spreadsheet"; + broken = true; }) {}; "Adaptive-Blaisorblade" = callPackage @@ -673,7 +719,9 @@ self: { libraryHaskellDepends = [ base ]; description = "Library for incremental computing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "spreadsheet"; + broken = true; }) {}; "Advgame" = callPackage @@ -687,6 +735,7 @@ self: { executableHaskellDepends = [ base haskell98 mtl ]; description = "Lisperati's adventure game in Lisp translated to Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "advgame"; }) {}; @@ -717,6 +766,7 @@ self: { ]; description = "Assessment services for the Advise-Me project"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "AesonBson" = callPackage @@ -752,6 +802,8 @@ self: { ]; description = "Generator-generator for QuickCheck"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Agda" = callPackage @@ -805,7 +857,9 @@ self: { executableHaskellDepends = [ Agda base ]; description = "Command-line program for type-checking and compiling Agda programs"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "agda"; + broken = true; }) {}; "AhoCorasick" = callPackage @@ -820,6 +874,8 @@ self: { ]; description = "Aho-Corasick string matching algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "AlanDeniseEricLauren" = callPackage @@ -841,6 +897,8 @@ self: { benchmarkHaskellDepends = [ base containers criterion ]; description = "Find the minimal subset/submap satisfying some property"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "AlgoRhythm" = callPackage @@ -869,6 +927,7 @@ self: { ]; description = "Algorithmic music composition"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "music-exe"; }) {}; @@ -883,7 +942,9 @@ self: { executableHaskellDepends = [ base containers mtl pretty ]; description = "Example implementation of Algorithm W for Hindley-Milner type inference"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "AlgorithmW"; + broken = true; }) {}; "AlignmentAlgorithms" = callPackage @@ -900,6 +961,7 @@ self: { ]; description = "Collection of alignment algorithms"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "Allure" = callPackage @@ -928,6 +990,7 @@ self: { description = "Near-future Sci-Fi roguelike and tactical squad combat game"; license = lib.licenses.agpl3Plus; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; mainProgram = "Allure"; }) {}; @@ -948,6 +1011,7 @@ self: { ]; description = "Android view hierarchy importer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "AndroidViewHierarchyImporter"; }) {}; @@ -960,6 +1024,8 @@ self: { libraryHaskellDepends = [ base random ]; description = "Updated version of Yampa: a library for programming hybrid systems"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Annotations" = callPackage @@ -972,6 +1038,7 @@ self: { testHaskellDepends = [ base mtl multirec parsec ]; description = "Constructing, analyzing and destructing annotated trees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Ansi2Html" = callPackage @@ -1000,6 +1067,8 @@ self: { ]; description = "A simple music library with the capability of generating .ly and .mid files."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ApplePush" = callPackage @@ -1018,6 +1087,7 @@ self: { executableHaskellDepends = [ base ]; description = "Library for Apple Push Notification Service"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "applepushtest"; }) {}; @@ -1030,6 +1100,8 @@ self: { doHaddock = false; description = "Call AppleScript from Haskell, and then call back into Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ApproxFun-hs" = callPackage @@ -1041,6 +1113,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Function approximation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ArrayRef" = callPackage @@ -1052,6 +1126,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Unboxed references, dynamic arrays and more"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ArrowVHDL" = callPackage @@ -1063,6 +1139,8 @@ self: { libraryHaskellDepends = [ base process ]; description = "A library to generate Netlist code from Arrow descriptions"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "AspectAG" = callPackage @@ -1081,6 +1159,8 @@ self: { ]; description = "Strongly typed Attribute Grammars implemented using type-level programming"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "AttoBencode" = callPackage @@ -1101,6 +1181,8 @@ self: { ]; description = "Fast Bencode encoding and parsing library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "AttoJson" = callPackage @@ -1117,6 +1199,7 @@ self: { ]; description = "Simple lightweight JSON parser, generator & manipulator based on ByteString"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Attrac" = callPackage @@ -1146,7 +1229,9 @@ self: { executableHaskellDepends = [ base containers parsec pretty ]; description = "Yet another parser generator for C/C++"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Aurochs"; + broken = true; }) {}; "AutoForms" = callPackage @@ -1162,6 +1247,7 @@ self: { ]; description = "GUI library based upon generic programming (SYB3)"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "AvlTree" = callPackage @@ -1173,6 +1259,7 @@ self: { libraryHaskellDepends = [ base COrdering ]; description = "Balanced binary trees using the AVL algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "BASIC" = callPackage @@ -1184,6 +1271,7 @@ self: { libraryHaskellDepends = [ base containers llvm random timeit ]; description = "Embedded BASIC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "BCMtools" = callPackage @@ -1210,7 +1298,9 @@ self: { ]; description = "Big Contact Map Tools"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "bcmtools"; + broken = true; }) {}; "BNFC" = callPackage @@ -1282,6 +1372,7 @@ self: { ]; description = "Translations of classic Truth Maintenance Systems"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "Baggins" = callPackage @@ -1295,6 +1386,8 @@ self: { libraryHaskellDepends = [ base cairo containers mtl ]; description = "Tools for self-assembly"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Bang" = callPackage @@ -1310,6 +1403,8 @@ self: { ]; description = "A Drum Machine DSL for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Barracuda" = callPackage @@ -1338,6 +1433,7 @@ self: { ]; description = "An ad-hoc P2P chat program"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "Barracuda"; }) {}; @@ -1352,7 +1448,9 @@ self: { executableHaskellDepends = [ array base mtl random ]; description = "An interpreter for the Befunge-93 Programming Language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Befunge93"; + broken = true; }) {}; "BenchmarkHistory" = callPackage @@ -1370,6 +1468,8 @@ self: { ]; description = "Benchmark functions with history"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "BerkeleyDB" = callPackage @@ -1396,6 +1496,8 @@ self: { librarySystemDepends = [ db dbxml xercesc xqilla ]; description = "Berkeley DB XML binding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) db; inherit (pkgs) dbxml; inherit (pkgs) xercesc; inherit (pkgs) xqilla;}; @@ -1408,6 +1510,7 @@ self: { libraryHaskellDepends = [ base besout ]; description = "Factorization of polynomials over finite field"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "BiGUL" = callPackage @@ -1422,6 +1525,8 @@ self: { ]; description = "The Bidirectional Generic Update Language"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "BigPixel" = callPackage @@ -1454,6 +1559,8 @@ self: { ]; description = "Source-to-source plugin for enhancing EDSLs with static annotations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Binpack" = callPackage @@ -1482,6 +1589,7 @@ self: { ]; description = "Libary for Hidden Markov Models in HMMER3 format"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "Biobase" = callPackage @@ -1503,6 +1611,7 @@ self: { ]; description = "Base library for bioinformatics"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "BiobaseBlast" = callPackage @@ -1529,6 +1638,7 @@ self: { ]; description = "BLAST-related tools"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "BiobaseDotP" = callPackage @@ -1540,6 +1650,7 @@ self: { libraryHaskellDepends = [ base bytestring iteratee ]; description = "Vienna / DotBracket / ExtSS parsers"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "BiobaseENA" = callPackage @@ -1562,6 +1673,7 @@ self: { ]; description = "European Nucleotide Archive data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "BiobaseEnsembl" = callPackage @@ -1579,6 +1691,7 @@ self: { ]; description = "Ensembl related datastructures and functions"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "BiobaseFR3D" = callPackage @@ -1594,6 +1707,7 @@ self: { ]; description = "Importer for FR3D resources"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "BiobaseFasta" = callPackage @@ -1624,6 +1738,7 @@ self: { ]; description = "streaming FASTA parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "fastaextract"; }) {}; @@ -1642,6 +1757,7 @@ self: { ]; description = "Libary to interface with the Bioinformatics HTTP services - Entrez Ensembl"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "BiobaseHTTPTools" = callPackage @@ -1662,6 +1778,7 @@ self: { ]; description = "Tools to query Bioinformatics HTTP services e.g. Entrez, Ensembl."; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "BiobaseInfernal" = callPackage @@ -1700,6 +1817,7 @@ self: { ]; description = "Infernal data structures and tools"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "cmsearchFilter"; }) {}; @@ -1712,6 +1830,7 @@ self: { libraryHaskellDepends = [ base bytestring containers iteratee ]; description = "Multiple Alignment Format"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "BiobaseNewick" = callPackage @@ -1761,6 +1880,7 @@ self: { executableHaskellDepends = [ cmdargs ]; description = "RNA folding training data"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "MkTrainingData"; }) {}; @@ -1779,6 +1899,7 @@ self: { ]; description = "Import Turner RNA parameters"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "BiobaseTypes" = callPackage @@ -1812,6 +1933,7 @@ self: { ]; description = "Collection of types for bioinformatics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "BiobaseVienna" = callPackage @@ -1827,6 +1949,7 @@ self: { ]; description = "Import Vienna energy parameters"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "BiobaseXNA" = callPackage @@ -1868,6 +1991,7 @@ self: { ]; description = "Efficient RNA/DNA/Protein Primary/Secondary Structure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "SubOptDistance"; }) {}; @@ -1882,6 +2006,7 @@ self: { executableHaskellDepends = [ base haskell98 ]; description = "A preprocessor for Bird-style Literate Haskell comments with Haddock markup"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "BirdPP"; }) {}; @@ -1902,6 +2027,8 @@ self: { transformers vector ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "BitSyntax" = callPackage @@ -1915,6 +2042,8 @@ self: { ]; description = "A module to aid in the (de)serialisation of binary data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Bitly" = callPackage @@ -1926,6 +2055,7 @@ self: { libraryHaskellDepends = [ base HTTP json2 ]; description = "A library to access bit.ly URL shortener."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Blammo" = callPackage @@ -1967,6 +2097,7 @@ self: { ]; description = "Libary to interface with the NCBI blast REST interface"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "Blobs" = callPackage @@ -1988,6 +2119,7 @@ self: { ]; description = "Diagram editor"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "blobs"; }) {}; @@ -2015,7 +2147,9 @@ self: { executableHaskellDepends = [ base cmdargs ]; description = "A tool for posting Haskelly articles to blogs"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "BlogLiterately"; + broken = true; }) {}; "BlogLiterately-diagrams" = callPackage @@ -2037,6 +2171,7 @@ self: { executableHaskellDepends = [ base BlogLiterately ]; description = "Include images in blog posts with inline diagrams code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "BlogLiteratelyD"; }) {}; @@ -2066,7 +2201,9 @@ self: { ]; description = "A markdown-like markup language designed for blog posts"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "Blogdown"; + broken = true; }) {}; "BluePrintCSS" = callPackage @@ -2089,6 +2226,8 @@ self: { doHaddock = false; description = "Preview of a new build system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Bookshelf" = callPackage @@ -2109,6 +2248,7 @@ self: { testHaskellDepends = [ base process ]; description = "A simple document organizer with some wiki functionality"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "bookshelf"; }) {}; @@ -2150,6 +2290,8 @@ self: { ]; description = "Static text template generation library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "BufferedSocket" = callPackage @@ -2161,6 +2303,8 @@ self: { libraryHaskellDepends = [ base bytestring network text ]; description = "A socker wrapper that makes the IO of sockets much cleaner"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Buster" = callPackage @@ -2185,7 +2329,9 @@ self: { ]; description = "Hits a set of urls periodically to bust caches"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "buster"; + broken = true; }) {}; "C-structs" = callPackage @@ -2204,6 +2350,8 @@ self: { ]; description = "C-Structs implementation for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "CBOR" = callPackage @@ -2224,6 +2372,7 @@ self: { ]; description = "Encode/Decode values to/from CBOR"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "CC-delcont" = callPackage @@ -2252,6 +2401,7 @@ self: { doHaddock = false; description = "Three new monad transformers for multi-prompt delimited control"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "CC-delcont-cxe" = callPackage @@ -2263,6 +2413,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "CC-delcont-exc" = callPackage @@ -2274,6 +2426,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "CC-delcont-ref" = callPackage @@ -2285,6 +2439,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control using refercence cells"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "CC-delcont-ref-tf" = callPackage @@ -2296,6 +2452,8 @@ self: { libraryHaskellDepends = [ base ref-tf transformers ]; description = "A monad transformers for multi-prompt delimited control using refercence cells"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "CCA" = callPackage @@ -2313,7 +2471,9 @@ self: { executableToolDepends = [ happy ]; description = "preprocessor and library for Causal Commutative Arrows (CCA)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ccap"; + broken = true; }) {}; "CHXHtml" = callPackage @@ -2343,6 +2503,8 @@ self: { ]; description = "Cursor Library for A Structured Editor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "CLI" = callPackage @@ -2355,6 +2517,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "CLI tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "CMCompare" = callPackage @@ -2373,6 +2537,7 @@ self: { executableHaskellDepends = [ cmdargs ]; description = "Infernal covariance model comparison"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "CMCompare"; }) {}; @@ -2390,6 +2555,8 @@ self: { ]; description = "cwmwl udp message queue"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "COrdering" = callPackage @@ -2401,6 +2568,8 @@ self: { libraryHaskellDepends = [ base ]; description = "An algebraic data type similar to Prelude Ordering"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "CPBrainfuck" = callPackage @@ -2415,6 +2584,7 @@ self: { executableHaskellDepends = [ base haskell98 ]; description = "A simple Brainfuck interpretter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bf"; }) {}; @@ -2459,6 +2629,7 @@ self: { ]; description = "Firing rules semantic of CSPM"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "CSPM-Frontend" = callPackage @@ -2476,6 +2647,8 @@ self: { libraryToolDepends = [ alex ]; description = "A CSP-M parser compatible with FDR-2.91"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "CSPM-Interpreter" = callPackage @@ -2492,6 +2665,7 @@ self: { ]; description = "An interpreter for CSPM"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "CSPM-ToProlog" = callPackage @@ -2505,6 +2679,7 @@ self: { ]; description = "some modules specific for the ProB tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "CSPM-cspm" = callPackage @@ -2530,6 +2705,7 @@ self: { ]; description = "cspm command line tool for analyzing CSPM specifications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cspm"; }) {}; @@ -2575,6 +2751,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "OpenCV based machine vision library"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {opencv_calib3d = null; opencv_contrib = null; opencv_core = null; opencv_features2d = null; opencv_flann = null; opencv_gpu = null; opencv_highgui = null; opencv_imgproc = null; @@ -2674,6 +2852,8 @@ self: { ]; description = "A framework for packaging Haskell software"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Cabal-syntax_3_6_0_0" = callPackage @@ -2742,7 +2922,9 @@ self: { ]; description = "Search cabal packages by name"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabalsearch"; + broken = true; }) {}; "Capabilities" = callPackage @@ -2754,6 +2936,8 @@ self: { libraryHaskellDepends = [ base compdata directory free unix ]; description = "Separate and contain effects of IO monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Cardinality" = callPackage @@ -2776,6 +2960,8 @@ self: { libraryHaskellDepends = [ base containers fgl parsec ]; description = "An implementation and DSL for the Carneades argumentation model"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "CarneadesIntoDung" = callPackage @@ -2792,6 +2978,7 @@ self: { ]; description = "A translation from the Carneades argumentation model into Dung's AFs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "caell"; }) {}; @@ -2804,6 +2991,8 @@ self: { libraryHaskellDepends = [ base lens linear template-haskell ]; description = "Coordinate systems"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Cascade" = callPackage @@ -2815,6 +3004,8 @@ self: { libraryHaskellDepends = [ base comonad ghc-prim mtl void ]; description = "Playing with reified categorical composition"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Cassava" = callPackage @@ -2841,6 +3032,8 @@ self: { ]; description = "A CSV parsing and encoding library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Catana" = callPackage @@ -2852,6 +3045,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad for complex manipulation of a stream"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ChannelT" = callPackage @@ -2942,6 +3137,7 @@ self: { ]; description = "A backend for the Chart library for FLTKHS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Chart-gtk" = callPackage @@ -2990,6 +3186,8 @@ self: { ]; description = "A wrapper for the chart library to assist with basic plots (Deprecated - use the Easy module instead)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Chart-tests" = callPackage @@ -3063,6 +3261,8 @@ self: { libraryHaskellDepends = [ base text ]; description = "Inbuilt checking for ultra reliable computing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Chitra" = callPackage @@ -3076,7 +3276,9 @@ self: { executableHaskellDepends = [ base binary bytestring mtl network ]; description = "A platform independent mechanism to render graphics using vnc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Chitra"; + broken = true; }) {}; "ChristmasTree" = callPackage @@ -3092,6 +3294,8 @@ self: { ]; description = "Alternative approach of 'read' that composes grammars instead of parsers"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "CirruParser" = callPackage @@ -3125,6 +3329,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "spam"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ClassLaws" = callPackage @@ -3136,6 +3342,8 @@ self: { libraryHaskellDepends = [ base ChasingBottoms mtl QuickCheck ]; description = "Stating and checking laws for type class methods"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ClassyPrelude" = callPackage @@ -3147,6 +3355,8 @@ self: { libraryHaskellDepends = [ base strict ]; description = "Prelude replacement using classes instead of concrete types where reasonable"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Clean" = callPackage @@ -3158,6 +3368,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A light, clean and powerful utility library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Clipboard" = callPackage @@ -3189,6 +3401,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Libary for parsing Clustal tools output"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "ClustalParserTest"; }) {}; @@ -3207,6 +3420,7 @@ self: { ]; description = "A generic build tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Codec-Compression-LZF" = callPackage @@ -3276,6 +3490,7 @@ self: { ]; description = "A concurrent bittorrent client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Combinatorrent"; }) {}; @@ -3288,6 +3503,8 @@ self: { libraryHaskellDepends = [ base directory process ]; description = "A replacement for System.Exit and System.Process"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Commando" = callPackage @@ -3310,7 +3527,9 @@ self: { ]; description = "Watch some files; Rerun a command"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "commando"; + broken = true; }) {}; "ComonadSheet" = callPackage @@ -3328,6 +3547,7 @@ self: { ]; description = "A library for expressing spreadsheet-like computations as the fixed-points of comonads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Compactable" = callPackage @@ -3339,6 +3559,8 @@ self: { libraryHaskellDepends = [ base containers transformers vector ]; description = "A generalization for containers that can be stripped of Nothing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ConClusion" = callPackage @@ -3361,7 +3583,9 @@ self: { ]; description = "Cluster algorithms, PCA, and chemical conformere analysis"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "conclusion"; + broken = true; }) {}; "Concurrent-Cache" = callPackage @@ -3373,6 +3597,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A Cached variable for IO functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Concurrential" = callPackage @@ -3384,6 +3610,8 @@ self: { libraryHaskellDepends = [ async base ]; description = "Mix concurrent and sequential computation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Condor" = callPackage @@ -3405,6 +3633,7 @@ self: { ]; description = "Information retrieval library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "condor"; }) {}; @@ -3434,6 +3663,8 @@ self: { ]; description = "Template haskell for reading ConfigFiles"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Configger" = callPackage @@ -3445,6 +3676,7 @@ self: { libraryHaskellDepends = [ base Dangerous MissingH mtl parsec ]; description = "Parse config files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "Configurable" = callPackage @@ -3456,6 +3688,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Declare types as Configurable then specialize them all in one place"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ConsStream" = callPackage @@ -3480,7 +3714,9 @@ self: { executableHaskellDepends = [ base process ]; description = "Restart a command on STDIN activity"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "conscript"; + broken = true; }) {}; "ConstraintKinds" = callPackage @@ -3492,6 +3728,8 @@ self: { libraryHaskellDepends = [ base dlist ghc-prim vector ]; description = "Repackages standard type classes with the ConstraintKinds extension"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Consumer" = callPackage @@ -3503,6 +3741,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad and monad transformer for consuming streams"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ContArrow" = callPackage @@ -3514,6 +3754,8 @@ self: { libraryHaskellDepends = [ arrows base ]; description = "Control.Arrow.Transformer.Cont"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ContextAlgebra" = callPackage @@ -3531,7 +3773,9 @@ self: { ]; description = "Implementation of the context algebra"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ContextAlgebra"; + broken = true; }) {}; "Contract" = callPackage @@ -3543,6 +3787,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Practical typed lazy contracts"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Control-Engine" = callPackage @@ -3574,6 +3820,7 @@ self: { ]; description = "A Library for Writing Multi-Pass Algorithms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Control-Monad-ST2" = callPackage @@ -3591,6 +3838,8 @@ self: { ]; description = "A variation on the ST monad with two type parameters"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "CoreDump" = callPackage @@ -3602,6 +3851,8 @@ self: { libraryHaskellDepends = [ base ghc pretty pretty-show ]; description = "A GHC plugin for printing GHC's internal Core data structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "CoreErlang" = callPackage @@ -3613,6 +3864,8 @@ self: { libraryHaskellDepends = [ base parsec pretty ]; description = "Manipulating Core Erlang source code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "CoreFoundation" = callPackage @@ -3631,6 +3884,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "Bindings to Mac OSX's CoreFoundation framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Coroutine" = callPackage @@ -3642,6 +3896,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Type-safe coroutines using lightweight session types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "CouchDB" = callPackage @@ -3662,6 +3918,8 @@ self: { ]; description = "CouchDB interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Craft3e" = callPackage @@ -3678,6 +3936,8 @@ self: { doHaddock = false; description = "Code for Haskell: the Craft of Functional Programming, 3rd ed"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Crypto" = callPackage @@ -3727,6 +3987,8 @@ self: { ]; description = "CurryDB: In-memory Key/Value Database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "DAG-Tournament" = callPackage @@ -3744,7 +4006,9 @@ self: { ]; description = "Real-Time Game Tournament Evaluator"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "DAG-Tournament"; + broken = true; }) {}; "DAV" = callPackage @@ -3816,7 +4080,9 @@ self: { executableHaskellDepends = [ base containers parsec ]; description = "A command-line SQL interface for flat files (tdf,csv,etc.)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "DBlimited"; + broken = true; }) {}; "DBus" = callPackage @@ -3828,6 +4094,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "D-Bus bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "DCFL" = callPackage @@ -3852,6 +4120,7 @@ self: { executableHaskellDepends = [ base MuCheck ]; description = "Distributed Mutation Analysis framework for MuCheck"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "dummy"; }) {}; @@ -3878,6 +4147,8 @@ self: { ]; description = "Complete API bindings for DigitalOcean API V2"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "DOM" = callPackage @@ -3889,6 +4160,7 @@ self: { libraryHaskellDepends = [ base mtl WebBits ]; description = "DOM Level 2 bindings for the WebBits package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "DP" = callPackage @@ -3904,6 +4176,7 @@ self: { ]; description = "Pragmatic framework for dynamic programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "DPM" = callPackage @@ -3927,7 +4200,9 @@ self: { executableHaskellDepends = [ base ]; description = "Darcs Patch Manager"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "dpm"; + broken = true; }) {}; "DPutils" = callPackage @@ -3986,6 +4261,7 @@ self: { ]; description = "Deterministic random bit generator (aka RNG, PRNG) based HMACs, Hashes, and Ciphers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "DSA" = callPackage @@ -4009,6 +4285,7 @@ self: { ]; description = "Implementation of DSA, based on the description of FIPS 186-4"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "DSH" = callPackage @@ -4037,6 +4314,7 @@ self: { ]; description = "Database Supported Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "vldot"; }) {}; @@ -4059,6 +4337,7 @@ self: { ]; description = "A framework for using STM within distributed systems"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "DTC" = callPackage @@ -4070,6 +4349,8 @@ self: { libraryHaskellDepends = [ base haskell-src-exts ]; description = "Data To Class transformation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Dangerous" = callPackage @@ -4081,6 +4362,7 @@ self: { libraryHaskellDepends = [ base MaybeT mtl ]; description = "Monads for operations that can exit early and produce warnings"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "Dao" = callPackage @@ -4111,7 +4393,9 @@ self: { ]; description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "dao"; + broken = true; }) {}; "DarcsHelpers" = callPackage @@ -4123,6 +4407,7 @@ self: { libraryHaskellDepends = [ base HaXml mtl parsec safe xml-parsec ]; description = "Code used by Patch-Shack that seemed sensible to open for reusability"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "Data-Angle" = callPackage @@ -4160,6 +4445,8 @@ self: { libraryHaskellDepends = [ base bytestring unix ]; description = "Ropes, an alternative to (Byte)Strings"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "DataIndex" = callPackage @@ -4176,7 +4463,9 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "A package for adding index column to data files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "DataIndex"; + broken = true; }) {}; "DataTreeView" = callPackage @@ -4194,6 +4483,8 @@ self: { ]; description = "A GTK widget for displaying arbitrary Data.Data.Data instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "DataVersion" = callPackage @@ -4235,7 +4526,9 @@ self: { testHaskellDepends = [ base doctest filemanip QuickCheck ]; description = "Write clients for Meteor's DDP Protocol"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "deadpan"; + broken = true; }) {}; "DebugTraceHelpers" = callPackage @@ -4275,6 +4568,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A very simple implementation of decision trees for discrete attributes"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "DeepArrow" = callPackage @@ -4286,6 +4581,7 @@ self: { libraryHaskellDepends = [ base haskell-src mtl TypeCompose ]; description = "Arrows for \"deep application\""; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "DeepDarkFantasy" = callPackage @@ -4303,6 +4599,8 @@ self: { testHaskellDepends = [ base constraints mtl QuickCheck random ]; description = "A DSL for creating neural network"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "DefendTheKing" = callPackage @@ -4322,6 +4620,7 @@ self: { ]; description = "A simple RTS game"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "Delta-Lambda" = callPackage @@ -4344,7 +4643,9 @@ self: { ]; description = "A demonstration interpreter for type system delta-lambda (of N.G. De-bruijn)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "Delta-Lambda"; + broken = true; }) {}; "DescriptiveKeys" = callPackage @@ -4373,6 +4674,8 @@ self: { ]; description = "Processing Real-time event streams"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Diff_0_3_4" = callPackage @@ -4421,6 +4724,7 @@ self: { ]; description = "A theory solver for conjunctions of literals in difference logic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "DifferentialEvolution" = callPackage @@ -4436,6 +4740,8 @@ self: { ]; description = "Global optimization using Differential Evolution"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Digit" = callPackage @@ -4481,6 +4787,8 @@ self: { testHaskellDepends = [ base hspec lens mtl text ]; description = "A client library for the DigitalOcean API"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "DimensionalHash" = callPackage @@ -4492,6 +4800,8 @@ self: { libraryHaskellDepends = [ base ]; description = "An n-dimensional hash using Morton numbers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "DirectSound" = callPackage @@ -4525,6 +4835,7 @@ self: { ]; description = "Distributed Bug Tracking System"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "DiscussionSupportSystem" = callPackage @@ -4541,6 +4852,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "Discussion support system"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Dish" = callPackage @@ -4555,7 +4868,9 @@ self: { executableHaskellDepends = [ base bytestring ]; description = "Hash modules (currently Murmur3)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Dish"; + broken = true; }) {}; "Dist" = callPackage @@ -4568,6 +4883,8 @@ self: { testHaskellDepends = [ base containers MonadRandom ]; description = "A Haskell library for probability distributions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "DistanceTransform" = callPackage @@ -4621,6 +4938,7 @@ self: { ]; description = "Frameshift-aware alignment of protein sequences with DNA sequences"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "DnaProteinAlignment"; }) {}; @@ -4639,6 +4957,7 @@ self: { ]; description = "Test interactive Haskell examples"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "doctest"; }) {}; @@ -4669,6 +4988,7 @@ self: { executableHaskellDepends = [ array base containers pretty ]; description = "A tool for deriving hylomorphisms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "DrHylo"; }) {}; @@ -4687,6 +5007,8 @@ self: { ]; description = "Program to derive type class instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "DrIFT-cabalized" = callPackage @@ -4701,6 +5023,8 @@ self: { executableHaskellDepends = [ base old-time process random ]; description = "Program to derive type class instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Dung" = callPackage @@ -4714,7 +5038,9 @@ self: { libraryHaskellDepends = [ base cmdargs containers parsec ]; description = "An implementation of the Dung argumentation frameworks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dungell"; + broken = true; }) {}; "Dust" = callPackage @@ -4740,6 +5066,7 @@ self: { ]; description = "Polymorphic protocol engine"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "Dust-crypto" = callPackage @@ -4766,6 +5093,7 @@ self: { ]; description = "Cryptographic operations"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) openssl;}; "Dust-tools" = callPackage @@ -4790,6 +5118,7 @@ self: { ]; description = "Network filtering exploration tools"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "Dust-tools-pcap" = callPackage @@ -4811,6 +5140,7 @@ self: { ]; description = "Network filtering exploration tools that rely on pcap"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "DynamicTimeWarp" = callPackage @@ -4828,6 +5158,8 @@ self: { ]; description = "Dynamic time warping of sequences"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "DysFRP" = callPackage @@ -4841,6 +5173,8 @@ self: { ]; description = "dysFunctional Reactive Programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "DysFRP-Cairo" = callPackage @@ -4852,6 +5186,7 @@ self: { libraryHaskellDepends = [ base cairo DysFRP gtk mtl ]; description = "dysFunctional Reactive Programming on Cairo"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "DysFRP-Craftwerk" = callPackage @@ -4868,6 +5203,7 @@ self: { ]; description = "dysFunctional Reactive Programming on Craftwerk"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "EEConfig" = callPackage @@ -4984,6 +5320,7 @@ self: { ]; description = "Query language and report generator for edit logs"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "report"; }) {}; @@ -5007,6 +5344,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "spam"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "EitherT" = callPackage @@ -5024,6 +5363,8 @@ self: { ]; description = "EitherT monad transformer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Elm" = callPackage @@ -5079,7 +5420,9 @@ self: { ]; description = "derives heuristic rules from nominal data"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "emping"; + broken = true; }) {}; "Empty" = callPackage @@ -5091,6 +5434,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A type class for empty containers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Encode" = callPackage @@ -5121,6 +5466,7 @@ self: { ]; description = "Libary to interface with the NCBI Entrez REST service"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "Enum" = callPackage @@ -5144,6 +5490,8 @@ self: { libraryHaskellDepends = [ base containers deepseq ]; description = "Simple Enum-class-based int containers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "EnumMap" = callPackage @@ -5155,6 +5503,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "More general IntMap replacement"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Eq" = callPackage @@ -5173,7 +5523,9 @@ self: { ]; description = "Render math formula in ASCII, and perform some simplifications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "eq"; + broken = true; }) {}; "EqualitySolver" = callPackage @@ -5187,6 +5539,8 @@ self: { ]; description = "A theory solver for conjunctions of literals in the theory of uninterpreted functions with equality"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "EsounD" = callPackage @@ -5206,6 +5560,7 @@ self: { ]; description = "Type-safe bindings to EsounD (ESD; Enlightened Sound Daemon)"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "EstProgress" = callPackage @@ -5217,6 +5572,8 @@ self: { libraryHaskellDepends = [ ansi-terminal base mtl ]; description = "Methods for estimating the progress of functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "EtaMOO" = callPackage @@ -5242,6 +5599,7 @@ self: { executablePkgconfigDepends = [ pcre ]; description = "A new implementation of the LambdaMOO server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "etamoo"; }) {inherit (pkgs) libxcrypt; inherit (pkgs) pcre;}; @@ -5258,6 +5616,8 @@ self: { ]; description = "A general data-flow framework"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Etage-Graph" = callPackage @@ -5276,6 +5636,7 @@ self: { ]; description = "Data-flow based graph algorithms"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "etage-graph-test"; }) {}; @@ -5291,6 +5652,7 @@ self: { executableHaskellDepends = [ base haskell98 SDL SDL-mixer ]; description = "A 2-D shooting game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Eternal10Seconds"; }) {}; @@ -5313,6 +5675,7 @@ self: { executableSystemDepends = [ libpcap ]; description = "A network analysis toolkit for Haskell"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "etherbunny"; }) {inherit (pkgs) libpcap;}; @@ -5359,6 +5722,7 @@ self: { ]; description = "Interfaces with FreeSwitch Event Socket"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Extra" = callPackage @@ -5378,6 +5742,8 @@ self: { ]; description = "A grab bag of modules"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "FAI" = callPackage @@ -5415,6 +5781,7 @@ self: { ]; description = "Compose music"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "fcomp"; }) {}; @@ -5429,6 +5796,7 @@ self: { executableHaskellDepends = [ array base containers haskell98 ]; description = "A set of computational morphology tools for Swedish diachronic lexicons"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "FModExRaw" = callPackage @@ -5441,6 +5809,8 @@ self: { librarySystemDepends = [ fmodex64 ]; description = "The Haskell FModEx raw API"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {fmodex64 = null;}; "FPretty" = callPackage @@ -5454,6 +5824,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Efficient simple pretty printing combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "FSM" = callPackage @@ -5465,6 +5837,8 @@ self: { libraryHaskellDepends = [ base containers matrix vector ]; description = "Basic concepts of finite state machines"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "FTGL" = callPackage @@ -5494,6 +5868,8 @@ self: { librarySystemDepends = [ ftgl ]; description = "Portable TrueType font rendering for OpenGL using the Freetype2 library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) ftgl;}; "FTPLine" = callPackage @@ -5512,6 +5888,7 @@ self: { ]; description = "A command-line FTP client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "FTPLine"; }) {}; @@ -5537,6 +5914,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "spam"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Facts" = callPackage @@ -5552,6 +5931,8 @@ self: { ]; description = "A collection of facts about the real world"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "FailT" = callPackage @@ -5579,6 +5960,7 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols mmtl ]; description = "Failure Monad Transformer"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "FastPush" = callPackage @@ -5590,6 +5972,8 @@ self: { libraryHaskellDepends = [ base STMonadTrans vector ]; description = "A monad and monad transformer for pushing things onto a stack very fast"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "FastxPipe" = callPackage @@ -5606,6 +5990,8 @@ self: { ]; description = "Fasta and Fastq streaming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "FenwickTree" = callPackage @@ -5638,6 +6024,7 @@ self: { ]; description = "Annotate ps and pdf documents"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "flm"; }) {}; @@ -5655,6 +6042,8 @@ self: { ]; description = "Ferry Core Components"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Feval" = callPackage @@ -5668,7 +6057,9 @@ self: { executableHaskellDepends = [ base containers mtl parsec ]; description = "Evaluation using F-Algebras"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "Feval"; + broken = true; }) {}; "FieldTrip" = callPackage @@ -5685,6 +6076,7 @@ self: { ]; description = "Functional 3D"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "FileManip" = callPackage @@ -5700,6 +6092,8 @@ self: { ]; description = "Expressive file and directory manipulation for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "FileManipCompat" = callPackage @@ -5715,6 +6109,8 @@ self: { ]; description = "Expressive file and directory manipulation for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "FilePather" = callPackage @@ -5746,6 +6142,8 @@ self: { ]; description = "File system data structure and monad transformer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Files" = callPackage @@ -5762,7 +6160,9 @@ self: { testHaskellDepends = [ base hspec ]; description = "File content extraction/rearrangement"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "Files"; + broken = true; }) {}; "Fin" = callPackage @@ -5780,6 +6180,7 @@ self: { ]; description = "Finite totally-ordered sets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Finance-Quote-Yahoo" = callPackage @@ -5795,6 +6196,8 @@ self: { ]; description = "Obtain quote data from finance.yahoo.com"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Finance-Treasury" = callPackage @@ -5811,6 +6214,7 @@ self: { ]; description = "Obtain Treasury yield curve data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "FindBin" = callPackage @@ -5842,6 +6246,7 @@ self: { ]; description = "Finite categories and usual categorical constructions on them"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; }) {}; "FiniteMap" = callPackage @@ -5853,6 +6258,7 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "A finite map implementation, derived from the paper: Efficient sets: a balancing act, S. Adams, Journal of functional programming 3(4) Oct 1993, pp553-562"; license = lib.licenses.bsdOriginal; + hydraPlatforms = lib.platforms.none; }) {}; "FirstOrderTheory" = callPackage @@ -5864,6 +6270,7 @@ self: { libraryHaskellDepends = [ base containers Proper ]; description = "Grammar and typeclass for first order theories"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "FirstPrelude" = callPackage @@ -5875,6 +6282,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A version of Prelude suitable for teaching"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "FixedPoint-simple" = callPackage @@ -5904,6 +6313,7 @@ self: { ]; description = "Wiki"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "flippi"; }) {}; @@ -5978,6 +6388,7 @@ self: { ]; description = "ForSyDe's Haskell-embedded Domain Specific Language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ForestStructures" = callPackage @@ -6025,6 +6436,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Comparison of trees and forests"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ForkableT" = callPackage @@ -6036,6 +6448,8 @@ self: { libraryHaskellDepends = [ base monad-control mtl resourcet ]; description = "Forkable monad transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "FormalGrammars" = callPackage @@ -6060,6 +6474,7 @@ self: { ]; description = "(Context-free) grammars in formal language theory"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "Fortnite-Hack-Cheats-Free-V-Bucks-Generator" = callPackage @@ -6082,6 +6497,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "spam"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Foster" = callPackage @@ -6102,6 +6519,7 @@ self: { ]; description = "Utilities to generate and solve puzzles"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "foster"; }) {}; @@ -6150,7 +6568,9 @@ self: { base FTGL GLFW-b OpenGLRaw parallel random time ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "Fractaler"; + broken = true; }) {}; "Frames" = callPackage @@ -6182,6 +6602,7 @@ self: { benchmarkHaskellDepends = [ base criterion pipes transformers ]; description = "Data frames For working with tabular data files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Frames-beam" = callPackage @@ -6205,6 +6626,7 @@ self: { ]; description = "A library for accessing Postgres tables as in-memory data structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Frames-dsv" = callPackage @@ -6222,6 +6644,7 @@ self: { testHaskellDepends = [ base Frames hspec pipes ]; description = "Alternative CSV parser for the Frames package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Frames-map-reduce" = callPackage @@ -6242,6 +6665,7 @@ self: { ]; description = "Frames wrapper for map-reduce-folds and some extra folds helpers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Frames-streamly" = callPackage @@ -6281,6 +6705,7 @@ self: { ]; description = "A streamly layer for Frames I/O"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Demo"; }) {}; @@ -6295,6 +6720,7 @@ self: { executableHaskellDepends = [ base mtl newtype she void ]; description = "An experimental programming language with typed algebraic effects"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "frank"; }) {}; @@ -6310,6 +6736,8 @@ self: { libraryHaskellDepends = [ base freetype2 OpenGL ]; description = "Loadable texture fonts for OpenGL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "FunGEn" = callPackage @@ -6346,7 +6774,9 @@ self: { ]; description = "Funge-98 interpreter written in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "fungi"; + broken = true; }) {}; "GA" = callPackage @@ -6371,7 +6801,9 @@ self: { executableHaskellDepends = [ base bimap ]; description = "GGg cipher"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "GGg"; + broken = true; }) {}; "GHood" = callPackage @@ -6398,6 +6830,8 @@ self: { librarySystemDepends = [ libGL libX11 libXext libXfixes ]; description = "A Haskell binding for GLFW"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libGL; inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXext; inherit (pkgs.xorg) libXfixes;}; @@ -6412,6 +6846,7 @@ self: { librarySystemDepends = [ libX11 libXrandr ]; description = "A binding for GLFW (OGL)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXrandr;}; "GLFW-b" = callPackage @@ -6446,7 +6881,9 @@ self: { ]; description = "GLFW-b demo"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "GLFW-b-demo"; + broken = true; }) {}; "GLFW-task" = callPackage @@ -6460,6 +6897,7 @@ self: { ]; description = "GLFW utility functions to use together with monad-task"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "GLHUI" = callPackage @@ -6512,6 +6950,8 @@ self: { libraryHaskellDepends = [ base OpenGLRaw ]; description = "Utilities for working with OpenGL matrices"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "GLURaw" = callPackage @@ -6579,6 +7019,7 @@ self: { ]; description = "Parse GPX files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "GPipe" = callPackage @@ -6596,6 +7037,8 @@ self: { ]; description = "Typesafe functional GPU graphics programming"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "GPipe-Collada" = callPackage @@ -6609,6 +7052,7 @@ self: { ]; description = "Load GPipe meshes from Collada files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "GPipe-Core" = callPackage @@ -6630,6 +7074,8 @@ self: { benchmarkHaskellDepends = [ base criterion lens ]; description = "Typesafe functional GPU graphics programming"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "GPipe-Examples" = callPackage @@ -6647,6 +7093,7 @@ self: { ]; description = "Examples for the GPipes package"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "GPipe-GLFW" = callPackage @@ -6659,6 +7106,7 @@ self: { libraryHaskellDepends = [ async base containers GLFW-b GPipe stm ]; description = "GLFW OpenGL context creation for GPipe"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "GPipe-GLFW4" = callPackage @@ -6688,6 +7136,7 @@ self: { ]; description = "GLFW OpenGL context creation for GPipe"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "playground"; }) {}; @@ -6700,6 +7149,7 @@ self: { libraryHaskellDepends = [ base bitmap GPipe stb-image ]; description = "Load GPipe textures from filesystem"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "GTALib" = callPackage @@ -6718,6 +7168,8 @@ self: { ]; description = "A library for GTA programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Gamgine" = callPackage @@ -6739,6 +7191,8 @@ self: { libraryToolDepends = [ cpphs ]; description = "Some kind of game library or set of utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Ganymede" = callPackage @@ -6756,7 +7210,9 @@ self: { ]; description = "An Io interpreter in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ganymede"; + broken = true; }) {}; "GaussQuadIntegration" = callPackage @@ -6784,6 +7240,7 @@ self: { ]; description = "Several games"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "gebop"; }) {}; @@ -6818,6 +7275,7 @@ self: { ]; description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "geni"; }) {}; @@ -6832,6 +7290,7 @@ self: { executableHaskellDepends = [ base haskell98 QuickCheck random ]; description = "Automatic SMS message generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "gensmspdu"; }) {}; @@ -6851,6 +7310,7 @@ self: { executableHaskellDepends = [ base cmdargs ]; description = "Libary for processing the NCBI genbank format"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "GenbankTest"; }) {}; @@ -6877,6 +7337,7 @@ self: { ]; description = "Hox gene clustering"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "GeneCluEDO"; }) {}; @@ -6891,7 +7352,9 @@ self: { executableHaskellDepends = [ base ]; description = "A general TicTacToe game implementation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "GeneralTicTacToe"; + broken = true; }) {}; "GenericPretty" = callPackage @@ -6930,6 +7393,7 @@ self: { ]; description = "MCFGs for Genus-1 RNA Pseudoknots"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "GenussFold"; }) {}; @@ -6942,6 +7406,8 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-mmap syb ]; description = "Pure bindings for the MaxMind IP database"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "GeocoderOpenCage" = callPackage @@ -6954,6 +7420,8 @@ self: { libraryHaskellDepends = [ aeson base bytestring HTTP text ]; description = "Geocoder and Reverse Geocoding Service Wrapper"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Geodetic" = callPackage @@ -6987,6 +7455,8 @@ self: { libraryHaskellDepends = [ base GeomPredicates ]; description = "Geometric predicates (Intel SSE)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Get" = callPackage @@ -6999,6 +7469,8 @@ self: { testHaskellDepends = [ base constraints singletons ]; description = "get stuff out of stuff"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "GiST" = callPackage @@ -7010,6 +7482,8 @@ self: { libraryHaskellDepends = [ base text ]; description = "A Haskell implementation of a Generalized Search Tree (GiST)"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Gifcurry" = callPackage @@ -7035,6 +7509,8 @@ self: { ]; description = "GIF creation utility"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "GiveYouAHead" = callPackage @@ -7057,6 +7533,8 @@ self: { libraryHaskellDepends = [ base mtl split threepenny-gui ]; description = "HTML Canvas graphics, animations and simulations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Glob" = callPackage @@ -7092,6 +7570,8 @@ self: { libraryHaskellDepends = [ array base GlomeVec ]; description = "Ray Tracing Library"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "GlomeVec" = callPackage @@ -7121,6 +7601,7 @@ self: { ]; description = "SDL Frontend for Glome ray tracer"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "Glome"; }) {}; @@ -7148,6 +7629,8 @@ self: { ]; description = "A monad for flexible parsing of Google Code Jam input files with automatic parallelization"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "GoogleDirections" = callPackage @@ -7163,6 +7646,7 @@ self: { ]; description = "Haskell Interface to Google Directions API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "GoogleSB" = callPackage @@ -7178,6 +7662,7 @@ self: { ]; description = "Interface to Google Safe Browsing API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "GoogleSuggest" = callPackage @@ -7205,6 +7690,7 @@ self: { ]; description = "Interface to Google Translate API"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "GotoT-transformers" = callPackage @@ -7216,6 +7702,8 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "A monad and monadic transformer providing \"goto\" functionality"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Grafos" = callPackage @@ -7227,6 +7715,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Grafos Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "GrammarProducts" = callPackage @@ -7249,6 +7739,7 @@ self: { testHaskellDepends = [ base ]; description = "Grammar products and higher-dimensional grammars"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "Graph500" = callPackage @@ -7267,7 +7758,9 @@ self: { executableHaskellDepends = [ array base mtl ]; description = "Graph500 benchmark-related definitions and data set generator"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "graph500gen"; + broken = true; }) {}; "GraphHammer" = callPackage @@ -7282,6 +7775,7 @@ self: { ]; description = "GraphHammer Haskell graph analyses framework inspired by STINGER"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "GraphHammer-examples" = callPackage @@ -7299,6 +7793,7 @@ self: { ]; description = "Test harness for TriangleCount analysis"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "TriangleCountTest"; }) {}; @@ -7327,6 +7822,8 @@ self: { ]; description = "Graph-Theoretic Analysis library"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Grempa" = callPackage @@ -7342,6 +7839,8 @@ self: { ]; description = "Embedded grammar DSL and LALR parser generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "GroteTrap" = callPackage @@ -7359,6 +7858,8 @@ self: { ]; description = "Parser and selection library for expression languages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Grow" = callPackage @@ -7380,6 +7881,7 @@ self: { ]; description = "A declarative make-like interpreter"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "GrowlNotify" = callPackage @@ -7400,6 +7902,7 @@ self: { ]; description = "Notification utility for Growl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "growlnotify"; }) {}; @@ -7416,6 +7919,7 @@ self: { ]; description = "Convenience functions to extend Gtk2hs"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "GtkGLTV" = callPackage @@ -7431,6 +7935,7 @@ self: { ]; description = "OpenGL support for Gtk-based GUIs for Tangible Values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "GtkTV" = callPackage @@ -7444,6 +7949,7 @@ self: { ]; description = "Gtk-based GUIs for Tangible Values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "GuiHaskell" = callPackage @@ -7462,6 +7968,7 @@ self: { ]; description = "A graphical REPL and development environment for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "guihaskell"; }) {}; @@ -7474,6 +7981,7 @@ self: { libraryHaskellDepends = [ base DeepArrow phooey TV TypeCompose ]; description = "GUIs for Tangible Values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "H" = callPackage @@ -7492,6 +8000,7 @@ self: { ]; description = "The Haskell/R mixed programming environment"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "H"; }) {}; @@ -7517,7 +8026,9 @@ self: { ]; description = "Hierarchical adaptive Bayesian quantum tomography for quantum bits"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "HABQT-simulation"; + broken = true; }) {}; "HARM" = callPackage @@ -7532,6 +8043,8 @@ self: { executableHaskellDepends = [ array base ]; description = "A simple ARM emulator in haskell"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HAppS-Data" = callPackage @@ -7548,6 +8061,7 @@ self: { ]; description = "HAppS data manipulation libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HAppS-IxSet" = callPackage @@ -7563,6 +8077,7 @@ self: { syb-with-class template-haskell ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HAppS-Server" = callPackage @@ -7583,6 +8098,7 @@ self: { ]; description = "Web related tools and services"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HAppS-State" = callPackage @@ -7602,6 +8118,7 @@ self: { ]; description = "Event-based distributed state"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HAppS-Util" = callPackage @@ -7618,6 +8135,8 @@ self: { ]; description = "Web framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HAppSHelpers" = callPackage @@ -7664,6 +8183,8 @@ self: { ]; description = "A library for implementing a Deck of Cards"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HCodecs" = callPackage @@ -7715,6 +8236,8 @@ self: { librarySystemDepends = [ mysqlclient openssl zlib ]; description = "MySQL driver for HDBC"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {mysqlclient = null; inherit (pkgs) openssl; inherit (pkgs) zlib;}; @@ -7765,6 +8288,8 @@ self: { libraryHaskellDepends = [ attoparsec base containers HDBC text ]; description = "Manipulate data in PostgreSQL \"hstore\" columns"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HDBC-session" = callPackage @@ -7817,6 +8342,8 @@ self: { libraryHaskellDepends = [ base ]; librarySystemDepends = [ mpfr ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) mpfr;}; "HExcel" = callPackage @@ -7833,6 +8360,8 @@ self: { librarySystemDepends = [ xlsxwriter zlib ]; description = "Create Excel files with Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {xlsxwriter = null; inherit (pkgs) zlib;}; "HFitUI" = callPackage @@ -7854,7 +8383,9 @@ self: { testHaskellDepends = [ base ]; description = "The library for generating a graphical interface on the web"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "HFitUI-exe"; + broken = true; }) {}; "HFrequencyQueue" = callPackage @@ -7866,6 +8397,8 @@ self: { libraryHaskellDepends = [ base c-storable-deriving ]; description = "A Queue with a random (weighted) pick function"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HFuse" = callPackage @@ -7928,6 +8461,8 @@ self: { ]; description = "Toolset for the Haskell Game Programmer"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HGamer3D-API" = callPackage @@ -7944,6 +8479,7 @@ self: { ]; description = "Library to enable 3D game development for Haskell - API"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-Audio" = callPackage @@ -7959,6 +8495,7 @@ self: { ]; description = "Toolset for the Haskell Game Programmer - Audio Functionality"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-Bullet-Binding" = callPackage @@ -7970,6 +8507,7 @@ self: { libraryHaskellDepends = [ base HGamer3D-Data ]; description = "Windows Game Engine for the Haskell Programmer - Bullet Bindings"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-CAudio-Binding" = callPackage @@ -7983,6 +8521,7 @@ self: { librarySystemDepends = [ HGamer3DCAudio015 ]; description = "Library to enable 3D game development for Haskell - cAudio Bindings"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {HGamer3DCAudio015 = null;}; "HGamer3D-CEGUI-Binding" = callPackage @@ -7999,6 +8538,7 @@ self: { ]; description = "A Toolset for the Haskell Game Programmer - CEGUI Bindings"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {CEGUIBase = null; CEGUIOgreRenderer = null; hg3dcegui050 = null;}; @@ -8016,6 +8556,7 @@ self: { ]; description = "Toolset for the Haskell Game Programmer - Game Engine and Utilities"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-Data" = callPackage @@ -8031,6 +8572,8 @@ self: { ]; description = "Toolset for the Haskell Game Programmer - Data Definitions"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HGamer3D-Enet-Binding" = callPackage @@ -8043,6 +8586,7 @@ self: { librarySystemDepends = [ enet hg3denet050 ]; description = "Enet Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) enet; hg3denet050 = null;}; "HGamer3D-GUI" = callPackage @@ -8058,6 +8602,7 @@ self: { ]; description = "GUI Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-Graphics3D" = callPackage @@ -8077,6 +8622,7 @@ self: { ]; description = "Toolset for the Haskell Game Programmer - 3D Graphics Functionality"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-InputSystem" = callPackage @@ -8093,6 +8639,7 @@ self: { ]; description = "Joystick, Mouse and Keyboard Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-Network" = callPackage @@ -8108,6 +8655,7 @@ self: { ]; description = "Networking Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-OIS-Binding" = callPackage @@ -8124,6 +8672,7 @@ self: { librarySystemDepends = [ HGamer3DOIS015 ]; description = "Library to enable 3D game development for Haskell - OIS Bindings"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {HGamer3DOIS015 = null;}; "HGamer3D-Ogre-Binding" = callPackage @@ -8142,6 +8691,7 @@ self: { ]; description = "Ogre Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {OgreMain = null; OgrePaging = null; OgreProperty = null; OgreRTShaderSystem = null; OgreTerrain = null; hg3dogre050 = null;}; @@ -8160,6 +8710,7 @@ self: { librarySystemDepends = [ hg3dsdl2050 libX11 SDL2 ]; description = "SDL2 Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) SDL2; hg3dsdl2050 = null; inherit (pkgs.xorg) libX11;}; @@ -8177,6 +8728,7 @@ self: { ]; description = "SFML Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {hg3dsfml050 = null; sfml-audio = null; sfml-network = null; sfml-system = null; sfml-window = null;}; @@ -8192,6 +8744,7 @@ self: { ]; description = "Windowing and Event Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "HGamer3D-Wire" = callPackage @@ -8209,6 +8762,7 @@ self: { ]; description = "Wire Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "HGraphStorage" = callPackage @@ -8239,6 +8793,8 @@ self: { ]; description = "Graph database stored on disk"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HHDL" = callPackage @@ -8250,6 +8806,8 @@ self: { libraryHaskellDepends = [ base containers mtl template-haskell ]; description = "Hardware Description Language embedded in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HJScript" = callPackage @@ -8261,6 +8819,7 @@ self: { libraryHaskellDepends = [ base HJavaScript hsp mtl text ]; description = "HJScript is a Haskell EDSL for writing JavaScript programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HJVM" = callPackage @@ -8283,6 +8842,8 @@ self: { ]; description = "A library to create a Java Virtual Machine and manipulate Java objects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) jdk;}; "HJavaScript" = callPackage @@ -8296,6 +8857,8 @@ self: { libraryHaskellDepends = [ base pretty ]; description = "HJavaScript is an abstract syntax for a typed subset of JavaScript"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HLearn-algebra" = callPackage @@ -8315,6 +8878,7 @@ self: { ]; description = "Algebraic foundation for homomorphic learning"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HLearn-approximation" = callPackage @@ -8333,6 +8897,7 @@ self: { HLearn-datastructures HLearn-distributions list-extras vector ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HLearn-classification" = callPackage @@ -8355,6 +8920,7 @@ self: { QuickCheck statistics vector vector-th-unbox ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HLearn-datastructures" = callPackage @@ -8370,6 +8936,7 @@ self: { MonadRandom QuickCheck vector ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HLearn-distributions" = callPackage @@ -8393,6 +8960,7 @@ self: { ]; description = "Distributions for use with the HLearn library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HList" = callPackage @@ -8416,6 +8984,8 @@ self: { ]; description = "Heterogeneous lists"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HListPP" = callPackage @@ -8444,7 +9014,9 @@ self: { executableHaskellDepends = [ base old-locale time ]; description = "Simple, concurrent and easy-to-use logging library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "logger-0.0.1.0-test"; + broken = true; }) {}; "HMM" = callPackage @@ -8455,6 +9027,8 @@ self: { sha256 = "01y8l76c56gysynbilp32yq0wfc129hl24siw8s9fmpn98qa71s6"; description = "A hidden markov model library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HMap" = callPackage @@ -8538,6 +9112,7 @@ self: { ]; description = "Happy Network Manager"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "HNM"; }) {}; @@ -8569,6 +9144,8 @@ self: { librarySystemDepends = [ ode ]; description = "Binding to libODE"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) ode;}; "HOpenCV" = callPackage @@ -8585,7 +9162,9 @@ self: { executablePkgconfigDepends = [ opencv ]; description = "A binding for the OpenCV computer vision library"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "cannyVideo"; + broken = true; }) {inherit (pkgs) opencv;}; "HPDF" = callPackage @@ -8633,7 +9212,9 @@ self: { ]; description = "Extract Haskell declarations by name"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hpath"; + broken = true; }) {}; "HPhone" = callPackage @@ -8650,6 +9231,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "Phone number parser and validator - This is now DEPRECATED!"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "HPi" = callPackage @@ -8662,6 +9244,8 @@ self: { librarySystemDepends = [ bcm2835 ]; description = "GPIO, I2C and SPI functions for the Raspberry Pi"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {bcm2835 = null;}; "HPlot" = callPackage @@ -8679,6 +9263,7 @@ self: { executablePkgconfigDepends = [ plplotd-gnome2 ]; description = "A minimal monadic PLplot interface for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Example"; }) {plplotd-gnome2 = null;}; @@ -8698,6 +9283,7 @@ self: { ]; description = "A simple OpenGL Pong game based on GLFW"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hpong"; }) {}; @@ -8726,6 +9312,7 @@ self: { description = "quantitative finance library"; license = lib.licenses.mit; platforms = lib.platforms.x86; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gsl;}; "HROOT" = callPackage @@ -8743,6 +9330,7 @@ self: { ]; description = "Haskell binding to the ROOT data analysis framework"; license = lib.licenses.lgpl21Plus; + hydraPlatforms = lib.platforms.none; }) {}; "HROOT-core" = callPackage @@ -8759,6 +9347,8 @@ self: { ]; description = "Haskell binding to ROOT Core modules"; license = lib.licenses.lgpl21Plus; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HROOT-graf" = callPackage @@ -8775,6 +9365,7 @@ self: { ]; description = "Haskell binding to ROOT Graf modules"; license = lib.licenses.lgpl21Plus; + hydraPlatforms = lib.platforms.none; }) {}; "HROOT-hist" = callPackage @@ -8791,6 +9382,7 @@ self: { ]; description = "Haskell binding to ROOT Hist modules"; license = lib.licenses.lgpl21Plus; + hydraPlatforms = lib.platforms.none; }) {}; "HROOT-io" = callPackage @@ -8807,6 +9399,7 @@ self: { ]; description = "Haskell binding to ROOT IO modules"; license = lib.licenses.lgpl21Plus; + hydraPlatforms = lib.platforms.none; }) {}; "HROOT-math" = callPackage @@ -8823,6 +9416,7 @@ self: { ]; description = "Haskell binding to ROOT Math modules"; license = lib.licenses.lgpl21Plus; + hydraPlatforms = lib.platforms.none; }) {}; "HROOT-net" = callPackage @@ -8840,6 +9434,7 @@ self: { librarySystemDepends = [ RHTTP ]; description = "Haskell binding to ROOT Net modules"; license = lib.licenses.lgpl21Plus; + hydraPlatforms = lib.platforms.none; }) {RHTTP = null;}; "HROOT-tree" = callPackage @@ -8856,6 +9451,7 @@ self: { ]; description = "Haskell binding to ROOT Tree modules"; license = lib.licenses.lgpl21Plus; + hydraPlatforms = lib.platforms.none; }) {}; "HRay" = callPackage @@ -8870,6 +9466,7 @@ self: { executableHaskellDepends = [ array base directory haskell98 ]; description = "Haskell raytracer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "HRay"; }) {}; @@ -8891,6 +9488,8 @@ self: { ]; description = "Generate FFI import declarations from C include files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HSGEP" = callPackage @@ -8909,6 +9508,7 @@ self: { executableHaskellDepends = [ csv ]; description = "Gene Expression Programming evolutionary algorithm in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "HSGEP_Regression"; }) {}; @@ -8946,6 +9546,7 @@ self: { ]; description = "Convenience functions that use HSH, instances for HSH"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "HSet" = callPackage @@ -8957,6 +9558,8 @@ self: { libraryHaskellDepends = [ base containers hashable hashtables ]; description = "Faux heterogeneous sets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HSlippyMap" = callPackage @@ -9019,6 +9622,7 @@ self: { ]; description = "Audio file reading/writing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HStringTemplate" = callPackage @@ -9057,6 +9661,7 @@ self: { ]; description = "Convenience functions and instances for HStringTemplate"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "HSvm" = callPackage @@ -9157,6 +9762,7 @@ self: { ]; description = "Tableau based theorem prover for hybrid logics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "htab"; }) {}; @@ -9175,7 +9781,9 @@ self: { ]; description = "An SDL tic-tac-toe game"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "HTicTacToe"; + broken = true; }) {}; "HUnit" = callPackage @@ -9199,6 +9807,8 @@ self: { libraryHaskellDepends = [ ansi-terminal base Diff groom HUnit ]; description = "Assertions for HUnit with difference reporting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HUnit-Plus" = callPackage @@ -9220,6 +9830,8 @@ self: { ]; description = "A test framework building on HUnit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HUnit-approx" = callPackage @@ -9258,6 +9870,7 @@ self: { ]; description = "A (prototyped) easy to use XMPP library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hxmpp-0.0.1.0-test"; }) {}; @@ -9276,6 +9889,8 @@ self: { ]; description = "A Compiler from XQuery to Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HaGL" = callPackage @@ -9310,7 +9925,9 @@ self: { libraryHaskellDepends = [ base HUnit mtl QuickCheck ]; description = "HaLeX enables modelling, manipulation and visualization of regular languages"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "halex"; + broken = true; }) {}; "HaMinitel" = callPackage @@ -9322,6 +9939,7 @@ self: { libraryHaskellDepends = [ base bytestring serialport stm ]; description = "An Haskell library to drive the french Minitel through a serial port"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "HaPy" = callPackage @@ -9333,6 +9951,8 @@ self: { libraryHaskellDepends = [ base template-haskell th-lift ]; description = "Haskell bindings for Python"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HaRe" = callPackage @@ -9369,6 +9989,7 @@ self: { ]; description = "the Haskell Refactorer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ghc-hare"; }) {}; @@ -9408,6 +10029,7 @@ self: { ]; description = "This package is deprecated. From version 3, HaTeX does not need this anymore."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "metahatex"; }) {}; @@ -9424,6 +10046,7 @@ self: { ]; description = "Quasiquoters for HaTeX"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HaVSA" = callPackage @@ -9443,6 +10066,7 @@ self: { ]; description = "An implementation of the Version Space Algebra learning framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tests"; }) {}; @@ -9456,6 +10080,7 @@ self: { testHaskellDepends = [ base bytestring HUnit text ]; description = "An XPath-generating embedded domain specific language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HaXml" = callPackage @@ -9490,6 +10115,7 @@ self: { executableHaskellDepends = [ text time vty vty-ui ]; description = "Simple chat"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "HackMail" = callPackage @@ -9510,7 +10136,9 @@ self: { ]; description = "A Procmail Replacement as Haskell EDSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hackmail"; + broken = true; }) {}; "Haggressive" = callPackage @@ -9528,6 +10156,8 @@ self: { testHaskellDepends = [ base Cabal containers HUnit tuple vector ]; description = "Aggression analysis for Tweets on Twitter"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HandlerSocketClient" = callPackage @@ -9539,6 +10169,8 @@ self: { libraryHaskellDepends = [ base bytestring network ]; description = "Haskell implementation of a HandlerSocket client (API)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HandsomeSoup" = callPackage @@ -9573,7 +10205,9 @@ self: { testHaskellDepends = [ base hspec transformers ]; description = "The classic game of Hangman"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "Hangman"; + broken = true; }) {}; "HangmanAscii" = callPackage @@ -9591,7 +10225,9 @@ self: { ]; description = "Yet another Hangman game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hangman-ascii"; + broken = true; }) {}; "HappyTree" = callPackage @@ -9609,6 +10245,8 @@ self: { ]; description = "Type Safe and End to End Decision Tree"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HarmTrace" = callPackage @@ -9632,6 +10270,7 @@ self: { ]; description = "Harmony Analysis and Retrieval of Music"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "harmtrace"; }) {}; @@ -9654,6 +10293,8 @@ self: { ]; description = "Parsing and unambiguously representing musical chords"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HasBigDecimal" = callPackage @@ -9687,6 +10328,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Haskell bindings for CacBDD"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {CacBDD = null;}; "HasGP" = callPackage @@ -9703,6 +10346,7 @@ self: { ]; description = "A Haskell library for inference using Gaussian processes"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "Haschoo" = callPackage @@ -9721,6 +10365,7 @@ self: { ]; description = "Minimalist R5RS Scheme interpreter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haschoo"; }) {}; @@ -9740,6 +10385,7 @@ self: { ]; description = "Simple shell written in Haskell"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hashell"; }) {}; @@ -9757,6 +10403,7 @@ self: { ]; description = "HaskRel, Haskell as a DBMS with support for the relational algebra"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "HaskellAnalysisProgram" = callPackage @@ -9780,7 +10427,9 @@ self: { ]; description = "Haskell source code analysis program"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "HaskellAnalysisProgram"; + broken = true; }) {}; "HaskellForMaths" = callPackage @@ -9792,6 +10441,8 @@ self: { libraryHaskellDepends = [ array base containers random ]; description = "Combinatorics, group theory, commutative algebra, non-commutative algebra"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HaskellLM" = callPackage @@ -9803,6 +10454,8 @@ self: { libraryHaskellDepends = [ base hmatrix ]; description = "Pure Haskell implementation of the Levenberg-Marquardt algorithm"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HaskellNN" = callPackage @@ -9814,6 +10467,8 @@ self: { libraryHaskellDepends = [ base hmatrix random ]; description = "High Performance Neural Network in Haskell"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HaskellNet" = callPackage @@ -9872,7 +10527,9 @@ self: { ]; description = "A concurrent bittorrent client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "HaskellTorrent"; + broken = true; }) {}; "HaskellTutorials" = callPackage @@ -9886,7 +10543,9 @@ self: { executableHaskellDepends = [ base cmdargs text ]; description = "Haskell Tutorials by Evgeny Ukhanov"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "Haskell.Tutorials"; + broken = true; }) {}; "Haskelloids" = callPackage @@ -9904,7 +10563,9 @@ self: { ]; description = "A reproduction of the Atari 1979 classic \"Asteroids\""; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Haskelloids"; + broken = true; }) {}; "Hastodon" = callPackage @@ -9946,6 +10607,7 @@ self: { ]; description = "A small 2D game framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "Hawk" = callPackage @@ -9967,6 +10629,7 @@ self: { ]; description = "Haskell Web Application Kit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Hayoo" = callPackage @@ -9993,6 +10656,7 @@ self: { ]; description = "The Hayoo! search engine for Haskell API search on hackage"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "Hclip" = callPackage @@ -10025,6 +10689,7 @@ self: { ]; description = "Line oriented editor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hedi"; }) {}; @@ -10044,6 +10709,8 @@ self: { testHaskellDepends = [ base linear subhask ]; description = "automatically improve your code's numeric stability"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Hermes" = callPackage @@ -10062,6 +10729,8 @@ self: { ]; description = "Message-based middleware layer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Hieroglyph" = callPackage @@ -10079,6 +10748,7 @@ self: { ]; description = "Purely functional 2D graphics for visualization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HiggsSet" = callPackage @@ -10095,6 +10765,7 @@ self: { ]; description = "A multi-index set with advanced query capabilites"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Hipmunk" = callPackage @@ -10108,6 +10779,8 @@ self: { ]; description = "A Haskell binding for Chipmunk"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Hipmunk-Utils" = callPackage @@ -10120,6 +10793,7 @@ self: { testHaskellDepends = [ base ]; description = "Useful functions for Hipmunk"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HipmunkPlayground" = callPackage @@ -10137,6 +10811,7 @@ self: { ]; description = "A playground for testing Hipmunk"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "HipmunkPlayground"; }) {}; @@ -10157,7 +10832,9 @@ self: { base directory MissingH process regex-tdfa time ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hish"; + broken = true; }) {}; "Histogram" = callPackage @@ -10185,7 +10862,9 @@ self: { ]; description = "An MPD client designed for a Home Theatre PC"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hmpf"; + broken = true; }) {}; "Hoed" = callPackage @@ -10210,6 +10889,7 @@ self: { testHaskellDepends = [ base process QuickCheck ]; description = "Lightweight algorithmic debugging"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HoleyMonoid" = callPackage @@ -10240,6 +10920,7 @@ self: { ]; description = "intra- and inter-program communication"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "Holumbus-MapReduce" = callPackage @@ -10261,6 +10942,7 @@ self: { ]; description = "a distributed MapReduce framework"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "Holumbus-Searchengine" = callPackage @@ -10281,6 +10963,8 @@ self: { ]; description = "A search and indexing engine"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Holumbus-Storage" = callPackage @@ -10300,6 +10984,7 @@ self: { ]; description = "a distributed storage system"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "Homology" = callPackage @@ -10330,6 +11015,7 @@ self: { testHaskellDepends = [ base process random ]; description = "A Simple Key Value Store"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HostAndPort" = callPackage @@ -10356,7 +11042,9 @@ self: { executableHaskellDepends = [ base containers ]; description = "A Cricket scoring application"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hricket"; + broken = true; }) {}; "Hs2lib" = callPackage @@ -10384,6 +11072,7 @@ self: { testHaskellDepends = [ base directory filepath process ]; description = "A Library and Preprocessor that makes it easier to create shared libs from Haskell programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HsASA" = callPackage @@ -10426,6 +11115,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell binding to libharu (http://libharu.sourceforge.net/)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HsHyperEstraier" = callPackage @@ -10442,6 +11133,8 @@ self: { libraryPkgconfigDepends = [ hyperestraier qdbm ]; description = "HyperEstraier binding for Haskell"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {hyperestraier = null; qdbm = null;}; "HsJudy" = callPackage @@ -10455,6 +11148,8 @@ self: { librarySystemDepends = [ Judy ]; description = "Judy bindings, and some nice APIs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {Judy = null;}; "HsOpenSSL" = callPackage @@ -10494,6 +11189,7 @@ self: { ]; description = "Haskell integration with Parrot virtual machine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "HsPerl5" = callPackage @@ -10505,6 +11201,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell interface to embedded Perl 5 interpreter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HsSVN" = callPackage @@ -10516,6 +11214,8 @@ self: { libraryHaskellDepends = [ base bytestring mtl stm ]; description = "Partial Subversion (SVN) binding for Haskell"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HsSyck" = callPackage @@ -10541,6 +11241,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Haskell helper functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HsWebots" = callPackage @@ -10564,6 +11266,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Webots bindings for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {Controller = null; driver = null;}; "HsYAML" = callPackage @@ -10630,6 +11333,7 @@ self: { ]; description = "Stream Editor in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Hsed"; }) {}; @@ -10648,6 +11352,8 @@ self: { ]; description = "Haskell library for easy interaction with SMT-LIB 2 compliant solvers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HueAPI" = callPackage @@ -10663,6 +11369,8 @@ self: { ]; description = "API for controlling Philips Hue lights"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HulkImport" = callPackage @@ -10680,7 +11388,9 @@ self: { testHaskellDepends = [ base tasty tasty-golden ]; description = "Easily bulk import CSV data to SQL Server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "HulkImport-exe"; + broken = true; }) {}; "Hungarian-Munkres" = callPackage @@ -10698,6 +11408,7 @@ self: { benchmarkHaskellDepends = [ array base criterion Munkres random ]; description = "A Linear Sum Assignment Problem (LSAP) solver"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "Hydrogen" = callPackage @@ -10718,6 +11429,7 @@ self: { testHaskellDepends = [ base ]; description = "The library for generating a WebGL scene for the web"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Hydrogen-exe"; }) {}; @@ -10733,6 +11445,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; description = "Code for the Haskell course taught at the University of Seville"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "IDynamic" = callPackage @@ -10744,6 +11458,8 @@ self: { libraryHaskellDepends = [ base containers directory ]; description = "Indexable, serializable form of Data.Dynamic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "IFS" = callPackage @@ -10759,7 +11475,9 @@ self: { ]; description = "Iterated Function System generation for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "IFS"; + broken = true; }) {}; "INblobs" = callPackage @@ -10779,6 +11497,7 @@ self: { ]; description = "Editor and interpreter for Interaction Nets"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "INblobs"; }) {}; @@ -10792,6 +11511,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Region based resource management for the IO monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "IORefCAS" = callPackage @@ -10810,6 +11531,7 @@ self: { ]; description = "Atomic compare and swap for IORefs and STRefs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "IOSpec" = callPackage @@ -10867,7 +11589,9 @@ self: { ]; description = "A RESTful microService for IPv6-related data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ipv6db"; + broken = true; }) {}; "IcoGrid" = callPackage @@ -10879,6 +11603,8 @@ self: { libraryHaskellDepends = [ array base GlomeVec ]; description = "Library for generating grids of hexagons and pentagons mapped to a sphere"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "IfElse" = callPackage @@ -10912,6 +11638,8 @@ self: { libraryHaskellDepends = [ base mtl template-haskell ]; description = "A library for writing Imperative style haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "IndentParser" = callPackage @@ -10934,6 +11662,7 @@ self: { libraryHaskellDepends = [ base PeanoWitnesses ]; description = "Length- and element-indexed lists sitting somewhere between homogeneous and fully heterogeneous"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "InfixApplicative" = callPackage @@ -10945,6 +11674,7 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "liftA2 for infix operators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "IntFormats" = callPackage @@ -10957,6 +11687,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Convert integers in various bases to and from strings"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "IntGraph" = callPackage @@ -10995,6 +11727,7 @@ self: { ]; description = "Data interning (with compact regions where possible)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Interpolation" = callPackage @@ -11053,6 +11786,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "DSL for IRC bots"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "IrrHaskell" = callPackage @@ -11084,6 +11819,8 @@ self: { ]; description = "A typeclass to determine if a given value is null"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "JSON-Combinator" = callPackage @@ -11101,6 +11838,7 @@ self: { ]; description = "A combinator library on top of a generalised JSON type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "JSON-Combinator-Examples" = callPackage @@ -11114,6 +11852,7 @@ self: { ]; description = "Example uses of the JSON-Combinator library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "JSONParser" = callPackage @@ -11145,6 +11884,8 @@ self: { ]; description = "JSON parser that uses byte strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "JYU-Utils" = callPackage @@ -11164,6 +11905,8 @@ self: { ]; description = "Some utility functions for JYU projects"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "JackMiniMix" = callPackage @@ -11175,6 +11918,8 @@ self: { libraryHaskellDepends = [ base hosc ]; description = "control JackMiniMix"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Javasf" = callPackage @@ -11191,6 +11936,7 @@ self: { ]; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "javasf"; }) {}; @@ -11205,7 +11951,9 @@ self: { executableHaskellDepends = [ base ]; description = "A utility to print the target version of Java class files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "javav"; + broken = true; }) {}; "Jazzkell" = callPackage @@ -11229,6 +11977,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A Json implementation for Haskell, with JavaScript Values and Encoding/Decoding"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Jikka" = callPackage @@ -11259,7 +12009,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "A transpiler from Python to C++ for competitive programming"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "jikka"; + broken = true; }) {}; "JsContracts" = callPackage @@ -11282,6 +12034,7 @@ self: { ]; description = "Design-by-contract for JavaScript"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "jscc"; }) {}; @@ -11304,6 +12057,7 @@ self: { ]; description = "Combinators for bidirectional JSON parsing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "JuPyTer-notebook" = callPackage @@ -11320,6 +12074,7 @@ self: { ]; description = "JuPyTer notebook parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "jupyter-extract"; }) {}; @@ -11360,7 +12115,9 @@ self: { ]; description = "BLP format decoder/encoder over JuicyPixels library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "blp2any"; + broken = true; }) {}; "JuicyPixels-blurhash" = callPackage @@ -11390,7 +12147,9 @@ self: { testToolDepends = [ tasty-discover ]; description = "Blurhash is a very compact represenation of a placeholder for an image"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "JuicyPixels-blurhash-exe"; + broken = true; }) {}; "JuicyPixels-canvas" = callPackage @@ -11402,6 +12161,8 @@ self: { libraryHaskellDepends = [ base containers JuicyPixels ]; description = "Functions for drawing lines, squares and so on pixel by pixel"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "JuicyPixels-extra" = callPackage @@ -11432,6 +12193,7 @@ self: { ]; description = "Convenience functions to obtain array representations of images"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "JuicyPixels-scale-dct" = callPackage @@ -11478,6 +12240,8 @@ self: { libraryHaskellDepends = [ base JuicyPixels vector ]; description = "Convert JuicyPixel images into RGBA format, flip, trim and so on"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "JunkDB" = callPackage @@ -11493,6 +12257,8 @@ self: { filepath mtl network resourcet ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "JunkDB-driver-gdbm" = callPackage @@ -11507,6 +12273,7 @@ self: { base bytestring conduit directory filepath JunkDB mtl resourcet ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "JunkDB-driver-hashtables" = callPackage @@ -11521,6 +12288,7 @@ self: { base bytestring conduit hashable hashtables JunkDB mtl resourcet ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "JustParse" = callPackage @@ -11532,6 +12300,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A simple and comprehensive Haskell parsing library"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "KMP" = callPackage @@ -11555,6 +12325,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A library with the kerbal space program universe and demo code"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Kalman" = callPackage @@ -11566,6 +12338,8 @@ self: { libraryHaskellDepends = [ base hmatrix ]; description = "A slightly extended Kalman filter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Kawaii-Parser" = callPackage @@ -11577,6 +12351,8 @@ self: { libraryHaskellDepends = [ base containers mtl ]; description = "A simple parsing library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "KdTree" = callPackage @@ -11604,6 +12380,8 @@ self: { ]; description = "A super small web framework for those who don't like big and fancy codebases"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "KiCS" = callPackage @@ -11629,6 +12407,7 @@ self: { ]; description = "A compiler from Curry to Haskell"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) kics;}; "KiCS-debugger" = callPackage @@ -11650,6 +12429,7 @@ self: { ]; description = "debug features for kics"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "mkstrict"; }) {}; @@ -11666,6 +12446,7 @@ self: { executableHaskellDepends = [ base KiCS ]; description = "a transformation used by the kics debugger"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "prophecy"; }) {}; @@ -11689,6 +12470,8 @@ self: { libraryHaskellDepends = [ base containers parsec ]; description = "A configuration language and a parser"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Kriens" = callPackage @@ -11700,6 +12483,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Category for Continuation Passing Style"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Kulitta" = callPackage @@ -11730,6 +12515,8 @@ self: { librarySystemDepends = [ kyotocabinet ]; description = "Kyoto Cabinet DB bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) kyotocabinet;}; "L-seed" = callPackage @@ -11747,6 +12534,8 @@ self: { ]; description = "Plant growing programming game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "LATS" = callPackage @@ -11763,6 +12552,8 @@ self: { librarySystemDepends = [ openblasCompat ]; description = "Linear Algebra on Typed Spaces"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) openblasCompat;}; "LC3" = callPackage @@ -11778,7 +12569,9 @@ self: { ]; description = "LC-3 virtual machine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "LC3"; + broken = true; }) {}; "LDAP" = callPackage @@ -11818,6 +12611,7 @@ self: { ]; description = "Lightweight Directory Access Protocol (LDAP) version 3"; license = lib.licenses.gpl2Plus; + hydraPlatforms = lib.platforms.none; }) {}; "LPFP" = callPackage @@ -11870,6 +12664,7 @@ self: { ]; description = "An automated prover targeting problems that involve nonlinear real arithmetic"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "lppaver"; }) {}; @@ -11894,6 +12689,8 @@ self: { libraryHaskellDepends = [ base containers QuickCheck ]; description = "Implements an LRU data structure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "LTS" = callPackage @@ -11914,7 +12711,9 @@ self: { benchmarkHaskellDepends = [ base criterion time ]; description = "LTS: Labelled Transition System"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "LTS"; + broken = true; }) {}; "LTree" = callPackage @@ -11977,6 +12776,8 @@ self: { ]; description = "A type-safe EDSL for TouchDesigner written in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "LambdaHack" = callPackage @@ -12014,6 +12815,7 @@ self: { description = "A game engine library for tactical squad ASCII roguelike dungeon crawlers"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; mainProgram = "LambdaHack"; }) {}; @@ -12034,6 +12836,7 @@ self: { ]; description = "Graphical Interaction Net Evaluator for Optimal Evaluation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "LambdaINet"; }) {}; @@ -12050,6 +12853,8 @@ self: { ]; description = "A configurable and extensible neural network library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "LambdaPrettyQuote" = callPackage @@ -12074,6 +12879,7 @@ self: { ]; description = "Quasiquoter, and Arbitrary helpers for the lambda calculus"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "LambdaShell" = callPackage @@ -12091,6 +12897,7 @@ self: { ]; description = "Simple shell for evaluating lambda expressions"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "lambdaShell"; }) {}; @@ -12104,6 +12911,8 @@ self: { testHaskellDepends = [ base filepath hspec mtl process text ]; description = "A library to easily host Haskell based programming competitions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Lambdaya" = callPackage @@ -12120,6 +12929,8 @@ self: { ]; description = "Library for RedPitaya"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "LargeCardinalHierarchy" = callPackage @@ -12131,6 +12942,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A transfinite cardinal arithmetic library including all known large cardinals"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Lastik" = callPackage @@ -12147,6 +12960,8 @@ self: { ]; description = "A library for compiling programs in a variety of languages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Lattices" = callPackage @@ -12164,6 +12979,7 @@ self: { ]; description = "A library for lattices"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "Lazy-Pbkdf2" = callPackage @@ -12198,6 +13014,8 @@ self: { testHaskellDepends = [ base containers hmatrix vector ]; description = "The most frequently used machine learning tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "LetsBeRational" = callPackage @@ -12222,7 +13040,9 @@ self: { executableHaskellDepends = [ base directory random SDL SDL-ttf ]; description = "A Snake II clone written using SDL"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "Level0"; + broken = true; }) {}; "LibClang" = callPackage @@ -12243,6 +13063,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "Haskell bindings for libclang (a C++ parsing library)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (self.llvmPackages) clang; inherit (pkgs) ncurses;}; "LibZip" = callPackage @@ -12273,6 +13095,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Wrapper for data that can be unbounded"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "LinearSplit" = callPackage @@ -12287,6 +13111,7 @@ self: { ]; description = "Partition the sequence of items to the subsequences in the order given"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "LinguisticsTypes" = callPackage @@ -12331,6 +13156,7 @@ self: { ]; description = "Check a bunch of local html files for broken links"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "linkchecker"; }) {}; @@ -12344,6 +13170,8 @@ self: { testHaskellDepends = [ base binary bytestring HTF mtl ]; description = "Algorithmic Doom map generation"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "List" = callPackage @@ -12396,6 +13224,7 @@ self: { ]; description = "List transformer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ListTree" = callPackage @@ -12448,7 +13277,9 @@ self: { doHaddock = false; description = "Converter to convert from .lhs to .md and vice versa."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "lhsc"; + broken = true; }) {}; "Logic" = callPackage @@ -12460,6 +13291,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Logic"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "LogicGrowsOnTrees" = callPackage @@ -12496,6 +13329,7 @@ self: { benchmarkHaskellDepends = [ base cereal criterion deepseq ]; description = "a parallel implementation of logic programming using distributed tree exploration"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "LogicGrowsOnTrees-MPI" = callPackage @@ -12517,6 +13351,7 @@ self: { librarySystemDepends = [ openmpi ]; description = "an adapter for LogicGrowsOnTrees that uses MPI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) openmpi;}; "LogicGrowsOnTrees-network" = callPackage @@ -12542,6 +13377,7 @@ self: { ]; description = "an adapter for LogicGrowsOnTrees that uses multiple processes running in a network"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "LogicGrowsOnTrees-processes" = callPackage @@ -12568,6 +13404,7 @@ self: { benchmarkHaskellDepends = [ base criterion LogicGrowsOnTrees ]; description = "an adapter for LogicGrowsOnTrees that uses multiple processes for parallelism"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "LslPlus" = callPackage @@ -12588,6 +13425,7 @@ self: { ]; description = "An execution and testing framework for the Linden Scripting Language (LSL)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "LslPlus"; }) {}; @@ -12609,6 +13447,7 @@ self: { ]; description = "HTTP Daemonic Library"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "lucu-implant-file"; }) {}; @@ -12638,6 +13477,7 @@ self: { ]; description = "A static website and blog generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "lykah"; }) {}; @@ -12651,6 +13491,8 @@ self: { testHaskellDepends = [ base containers mtl ]; description = "Generate MASM code from haskell"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MBot" = callPackage @@ -12662,6 +13504,8 @@ self: { libraryHaskellDepends = [ base bytestring hidapi mtl ]; description = "Haskell interface for controlling the mBot educational robot"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MC-Fold-DP" = callPackage @@ -12680,6 +13524,7 @@ self: { executableHaskellDepends = [ cmdargs split ]; description = "Folding algorithm based on nucleotide cyclic motifs"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "MCFoldDP"; }) {}; @@ -12706,6 +13551,7 @@ self: { libraryToolDepends = [ cpphs ]; description = "stateful, RESTful web framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "MHask" = callPackage @@ -12717,6 +13563,8 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "The category of monads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MIP" = callPackage @@ -12744,6 +13592,8 @@ self: { ]; description = "Library for using Mixed Integer Programming (MIP)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MIP-glpk" = callPackage @@ -12768,6 +13618,7 @@ self: { ]; description = "A GLPK backend to the MIP library"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) glpk;}; "MSQueue" = callPackage @@ -12779,6 +13630,7 @@ self: { libraryHaskellDepends = [ base ghc-prim monad-loops ref-mtl stm ]; description = "Michael-Scott queue"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "MTGBuilder" = callPackage @@ -12792,7 +13644,9 @@ self: { executableHaskellDepends = [ base containers mtl parsec ]; description = "Builds decks out of a meta"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mtg-builder"; + broken = true; }) {}; "MagicHaskeller" = callPackage @@ -12822,6 +13676,8 @@ self: { ]; description = "Automatic inductive functional programmer by systematic search"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MailchimpSimple" = callPackage @@ -12840,6 +13696,7 @@ self: { ]; description = "Haskell library to interact with Mailchimp JSON API Version 3.0"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Map" = callPackage @@ -12856,6 +13713,7 @@ self: { testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; description = "Class of key-value maps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "MapWith" = callPackage @@ -12869,6 +13727,8 @@ self: { benchmarkHaskellDepends = [ base ]; description = "mapWith: like fmap, but with additional parameters (isFirst, isLast, etc)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Mapping" = callPackage @@ -12880,6 +13740,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Mapping"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MaybeT" = callPackage @@ -12893,6 +13755,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "MaybeT monad transformer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MaybeT-monads-tf" = callPackage @@ -12904,6 +13768,8 @@ self: { libraryHaskellDepends = [ base monads-tf transformers ]; description = "MaybeT monad transformer compatible with monads-tf (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MaybeT-transformers" = callPackage @@ -12915,6 +13781,8 @@ self: { libraryHaskellDepends = [ base monads-fd transformers ]; description = "MaybeT monad transformer using transformers instead of mtl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MazesOfMonad" = callPackage @@ -12934,7 +13802,9 @@ self: { ]; description = "Console-based Role Playing Game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mazesofmonad"; + broken = true; }) {}; "MeanShift" = callPackage @@ -12946,6 +13816,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Mean shift algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Measure" = callPackage @@ -12957,6 +13829,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A library for units of measurement"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Mecha" = callPackage @@ -12968,6 +13842,8 @@ self: { libraryHaskellDepends = [ base machines ]; description = "mecha are the most complex composite machines known to humanity, lets build them well!"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Mechs" = callPackage @@ -12979,6 +13855,8 @@ self: { libraryHaskellDepends = [ base machines ]; description = "mecha are the most complex composite machines known to humanity, lets build them well!"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MemoTrie" = callPackage @@ -13007,6 +13885,8 @@ self: { ]; description = "Statically checked database access"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MetaObject" = callPackage @@ -13018,6 +13898,7 @@ self: { libraryHaskellDepends = [ base containers stringtable-atom ]; description = "A meta-object system for Haskell based on Perl 6"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Metrics" = callPackage @@ -13029,6 +13910,7 @@ self: { libraryHaskellDepends = [ base hstats ]; description = "Evaluation metrics commonly used in supervised machine learning"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Mhailist" = callPackage @@ -13047,6 +13929,7 @@ self: { ]; description = "Haskell mailing list manager"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mhailist"; }) {}; @@ -13064,6 +13947,7 @@ self: { ]; description = "OpenGL for dummies"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "MicrosoftTranslator" = callPackage @@ -13080,6 +13964,7 @@ self: { ]; description = "Interface for Microsoft Translator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "MiniAgda" = callPackage @@ -13101,7 +13986,9 @@ self: { testToolDepends = [ goldplate ]; description = "A toy dependently typed programming language with type-based termination"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "miniagda"; + broken = true; }) {}; "MissingH" = callPackage @@ -13163,6 +14050,7 @@ self: { libraryHaskellDepends = [ anydbm base MissingH ]; description = "Haskell interface to Python"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "Mobile-Legends-Hack-Cheats" = callPackage @@ -13185,6 +14073,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "spam"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Modulo" = callPackage @@ -13226,6 +14116,8 @@ self: { ]; description = "Utilities working with MoeDict.tw JSON dataset"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MonadCatchIO-mtl" = callPackage @@ -13241,6 +14133,8 @@ self: { ]; description = "Monad-transformer version of the Control.Exception module"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MonadCatchIO-mtl-foreign" = callPackage @@ -13252,6 +14146,7 @@ self: { libraryHaskellDepends = [ base MonadCatchIO-mtl mtl primitive ]; description = "Polymorphic combinators for working with foreign functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "MonadCatchIO-transformers" = callPackage @@ -13282,6 +14177,8 @@ self: { ]; description = "Polymorphic combinators for working with foreign functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MonadCompose" = callPackage @@ -13293,6 +14190,8 @@ self: { libraryHaskellDepends = [ base free mmorph mtl transformers ]; description = "Methods for composing monads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MonadLab" = callPackage @@ -13309,6 +14208,7 @@ self: { executableHaskellDepends = [ base haskell98 process ]; description = "Automatically generate layered monads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mlab"; }) {}; @@ -13349,6 +14249,8 @@ self: { libraryHaskellDepends = [ base MonadRandom mtl random ]; description = "Lazy monad for psuedo random-number generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MonadStack" = callPackage @@ -13360,6 +14262,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Generalizing lift to monad stacks"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Monadius" = callPackage @@ -13410,6 +14314,7 @@ self: { ]; description = "A simple tetris clone"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Monaris"; }) {}; @@ -13422,6 +14327,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Monad transformer library with uniform liftings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Monatron-IO" = callPackage @@ -13433,6 +14340,7 @@ self: { libraryHaskellDepends = [ base Monatron transformers ]; description = "MonadIO instances for the Monatron transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Mondrian" = callPackage @@ -13457,6 +14365,7 @@ self: { testHaskellDepends = [ base ]; description = "Renders backgrounds & borders"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "Monocle" = callPackage @@ -13468,6 +14377,7 @@ self: { libraryHaskellDepends = [ base containers haskell98 mtl ]; description = "Symbolic computations in strict monoidal categories with LaTeX output"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "MorseCode" = callPackage @@ -13501,6 +14411,8 @@ self: { ]; description = "Automated Mutation Testing"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "MuCheck-HUnit" = callPackage @@ -13515,6 +14427,7 @@ self: { executableHaskellDepends = [ base HUnit MuCheck ]; description = "Automated Mutation Testing for HUnit tests"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "mucheck-hunit"; }) {}; @@ -13530,6 +14443,7 @@ self: { executableHaskellDepends = [ base hspec hspec-core MuCheck ]; description = "Automated Mutation Testing for Hspec tests"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "mucheck-hspec"; }) {}; @@ -13545,6 +14459,7 @@ self: { executableHaskellDepends = [ base MuCheck QuickCheck ]; description = "Automated Mutation Testing for QuickCheck tests"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "mucheck-quickcheck"; }) {}; @@ -13560,6 +14475,7 @@ self: { executableHaskellDepends = [ base MuCheck smallcheck ]; description = "Automated Mutation Testing for SmallCheck tests"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "mucheck-smallcheck"; }) {}; @@ -13584,6 +14500,8 @@ self: { libraryHaskellDepends = [ array base ]; description = "Munkres' assignment algorithm (hungarian method)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Munkres-simple" = callPackage @@ -13595,6 +14513,7 @@ self: { libraryHaskellDepends = [ array base bimap containers Munkres ]; description = "Simple and typesafe layer over the Munkres package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "MusicBrainz" = callPackage @@ -13661,6 +14580,7 @@ self: { ]; description = "Most likely order of mutation events in RNA"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "MutationOrder"; }) {}; @@ -13677,7 +14597,9 @@ self: { benchmarkHaskellDepends = [ base time ]; description = "Generate all primes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "PrimesList"; + broken = true; }) {}; "NGLess" = callPackage @@ -13758,6 +14680,7 @@ self: { ]; description = "NGLess implements ngless, a DSL for processing sequencing data"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "ngless"; }) {}; @@ -13772,7 +14695,9 @@ self: { executableHaskellDepends = [ base HCL HTTP network regex-compat ]; description = "Simple application for calculating n-grams using Google"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ngrams"; + broken = true; }) {}; "NMap" = callPackage @@ -13784,6 +14709,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A transparent nested Map structure"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "NTRU" = callPackage @@ -13800,6 +14727,7 @@ self: { ]; description = "NTRU Cryptography"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "NXT" = callPackage @@ -13824,6 +14752,7 @@ self: { ]; description = "A Haskell interface to Lego Mindstorms NXT"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {bluetooth = null;}; "NXTDSL" = callPackage @@ -13842,7 +14771,9 @@ self: { ]; description = "Generate NXC Code from DSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "legoDSL"; + broken = true; }) {}; "NaCl" = callPackage @@ -13899,7 +14830,9 @@ self: { ]; description = "NanoID generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "nanoid"; + broken = true; }) {}; "NanoProlog" = callPackage @@ -13914,7 +14847,9 @@ self: { executableHaskellDepends = [ base uu-parsinglib ]; description = "Very small interpreter for a Prolog-like language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "nano-prolog"; + broken = true; }) {}; "Naperian" = callPackage @@ -13928,6 +14863,8 @@ self: { libraryHaskellDepends = [ base containers ghc-prim vector ]; description = "Naperian Functors for APL-like programming"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "NaperianNetCDF" = callPackage @@ -13942,6 +14879,7 @@ self: { executableHaskellDepends = [ base hnetcdf Naperian split ]; description = "Instances of NcStore for hypercuboids"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Main"; }) {}; @@ -13972,6 +14910,7 @@ self: { ]; description = "Simple scoring schemes for word alignments"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "NaturalSort" = callPackage @@ -13985,6 +14924,8 @@ self: { libraryHaskellDepends = [ base bytestring strict ]; description = "Natural sorting for strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "NearContextAlgebra" = callPackage @@ -14002,6 +14943,7 @@ self: { ]; description = "Context Algebra of near"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "NearContextAlgebra"; }) {}; @@ -14025,6 +14967,8 @@ self: { ]; description = "Simple networked key/value store"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "NestedFunctor" = callPackage @@ -14036,6 +14980,8 @@ self: { libraryHaskellDepends = [ base comonad distributive ]; description = "Nested composition of functors with a type index tracking nesting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "NestedSampling" = callPackage @@ -14060,6 +15006,8 @@ self: { testHaskellDepends = [ base bytestring HUnit process ]; description = "Bindings for net-snmp's C API for clients"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) net-snmp;}; "Network-NineP" = callPackage @@ -14122,6 +15070,7 @@ self: { ]; description = "Ninja game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Ninjas"; }) {}; @@ -14153,6 +15102,7 @@ self: { ]; description = "Microbenchmarks for various array libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "NoTrace" = callPackage @@ -14165,6 +15115,8 @@ self: { testHaskellDepends = [ base ]; description = "Remove all the functions come from Debug.Trace after debugging"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Noise" = callPackage @@ -14195,6 +15147,7 @@ self: { ]; description = "A Nomic game in haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Nomyx"; }) {}; @@ -14222,6 +15175,7 @@ self: { ]; description = "A Nomic game in haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Nomyx-Language" = callPackage @@ -14241,6 +15195,7 @@ self: { ]; description = "Language to express rules for Nomic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Nomyx-Rules" = callPackage @@ -14258,6 +15213,7 @@ self: { ]; description = "Language to express rules for Nomic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Nomyx-Web" = callPackage @@ -14282,6 +15238,7 @@ self: { ]; description = "Web gui for Nomyx"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "NonEmpty" = callPackage @@ -14293,6 +15250,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Library providing a non-empty list datatype, and total functions operating on it"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "NonEmptyList" = callPackage @@ -14309,6 +15268,7 @@ self: { ]; description = "A list with a length of at least one"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "NumInstances" = callPackage @@ -14342,6 +15302,8 @@ self: { libraryHaskellDepends = [ array base ]; description = "Number Theoretic Sieves: primes, factorization, and Euler's Totient"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "NumberTheory" = callPackage @@ -14354,6 +15316,8 @@ self: { testHaskellDepends = [ base containers HUnit primes ]; description = "A library for number theoretic computations, written in Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Numbers" = callPackage @@ -14382,6 +15346,7 @@ self: { ]; description = "Nussinov78 using the ADPfusion library"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "Nussinov78"; }) {}; @@ -14394,6 +15359,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A little library to calculate nutrition values of food items"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "OGDF" = callPackage @@ -14410,6 +15377,8 @@ self: { librarySystemDepends = [ COIN OGDF ]; description = "Haskell binding to OGDF"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {COIN = null; OGDF = null;}; "OGL" = callPackage @@ -14421,6 +15390,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A context aware binding for the OpenGL graphics system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ONC-RPC" = callPackage @@ -14445,7 +15416,9 @@ self: { executableHaskellDepends = [ base filepath ]; description = "ONC RPC (aka Sun RPC) and XDR library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "hsrpcgen"; + broken = true; }) {}; "OSM" = callPackage @@ -14461,6 +15434,8 @@ self: { ]; description = "Parse OpenStreetMap files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "OTP" = callPackage @@ -14480,6 +15455,8 @@ self: { testHaskellDepends = [ base bytestring tasty tasty-hunit time ]; description = "HMAC-Based and Time-Based One-Time Passwords (HOTP & TOTP)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Object" = callPackage @@ -14491,6 +15468,8 @@ self: { libraryHaskellDepends = [ base containers ghc template-haskell ]; description = "Object oriented programming for haskell using multiparameter typeclasses"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ObjectIO" = callPackage @@ -14506,6 +15485,8 @@ self: { winspool ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {comctl32 = null; comdlg32 = null; gdi32 = null; kernel32 = null; ole32 = null; shell32 = null; user32 = null; winmm = null; winspool = null;}; @@ -14554,6 +15535,8 @@ self: { ]; description = "Simple unbalanced Octree for storing data about 3D points"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "OddWord" = callPackage @@ -14569,6 +15552,8 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Provides a wrapper for deriving word types with fewer bits"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Omega" = callPackage @@ -14581,6 +15566,8 @@ self: { testHaskellDepends = [ base containers HUnit ]; description = "Integer sets and relations using Presburger arithmetic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "OnRmt" = callPackage @@ -14617,6 +15604,7 @@ self: { ]; description = "Text UI library for performing parallel remote SSH operations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "OneTuple" = callPackage @@ -14662,6 +15650,8 @@ self: { ]; description = "IBM AFP document format parser and generator"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "OpenAFP-Utils" = callPackage @@ -14682,6 +15672,7 @@ self: { ]; description = "Assorted utilities to work with AFP data streams"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "OpenAL" = callPackage @@ -14716,6 +15707,8 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Haskell high-level wrapper for OpenCL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {OpenCL = null;}; "OpenCLRaw" = callPackage @@ -14727,6 +15720,8 @@ self: { libraryHaskellDepends = [ base bytestring mtl ]; description = "The OpenCL Standard for heterogenous data-parallel computing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "OpenCLWrappers" = callPackage @@ -14738,6 +15733,8 @@ self: { libraryHaskellDepends = [ base bytestring mtl ]; description = "The OpenCL Standard for heterogenous data-parallel computing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "OpenGL" = callPackage @@ -14769,6 +15766,7 @@ self: { ]; description = "Quickcheck instances for various data structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "OpenGLRaw" = callPackage @@ -14798,6 +15796,8 @@ self: { libraryHaskellDepends = [ OpenGLRaw ]; description = "The intersection of OpenGL 2.1 and OpenGL 3.1 Core"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "OpenSCAD" = callPackage @@ -14817,6 +15817,7 @@ self: { ]; description = "ADT wrapper and renderer for OpenSCAD models"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "OpenVG" = callPackage @@ -14828,6 +15829,7 @@ self: { libraryHaskellDepends = [ base GLUT OpenGL OpenGLRaw OpenVGRaw ]; description = "OpenVG (ShivaVG-0.2.1) binding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "OpenVGRaw" = callPackage @@ -14839,6 +15841,8 @@ self: { libraryHaskellDepends = [ base OpenGLRaw ]; description = "Raw binding to OpenVG (ShivaVG-0.2.1 implementation)."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Operads" = callPackage @@ -14850,6 +15854,8 @@ self: { libraryHaskellDepends = [ array base containers mtl ]; description = "Groebner basis computation for Operads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "OptDir" = callPackage @@ -14877,6 +15883,8 @@ self: { ]; description = "A quasiquoter for or-patterns"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "OrchestrateDB" = callPackage @@ -14896,6 +15904,8 @@ self: { ]; description = "Unofficial Haskell Client Library for the Orchestrate.io API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "OrderedBits" = callPackage @@ -14942,7 +15952,9 @@ self: { testHaskellDepends = [ base safe threepenny-gui ]; description = "A Programming Language in Construction"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Ordinary-exe"; + broken = true; }) {}; "Oslo-Vectize" = callPackage @@ -14958,7 +15970,9 @@ self: { executableHaskellDepends = [ base ]; description = "spam"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "test1"; + broken = true; }) {}; "PArrows" = callPackage @@ -14970,6 +15984,8 @@ self: { libraryHaskellDepends = [ base containers ghc-prim mtl ]; description = "Arrow parser combinators similar to Parsec"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "PBKDF2" = callPackage @@ -14983,6 +15999,8 @@ self: { libraryHaskellDepends = [ base binary bytestring Crypto random ]; description = "Make password-based security schemes more secure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "PCLT" = callPackage @@ -14996,6 +16014,8 @@ self: { ]; description = "Extension to Show: templating, catalogizing, languages, parameters, etc"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "PCLT-DB" = callPackage @@ -15012,6 +16032,7 @@ self: { ]; description = "An addon to PCLT package: enchance PCLT catalog with PostgreSQL powers"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "PDBtools" = callPackage @@ -15036,6 +16057,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A generic derivable Haskell pretty printer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "PSQueue" = callPackage @@ -15065,6 +16088,8 @@ self: { ]; description = "An implementation of Montague's PTQ"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "PUH-Project" = callPackage @@ -15084,6 +16109,8 @@ self: { ]; description = "This is a package which includes Assignments, Email, User and Reviews modules for Programming in Haskell course"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "PageIO" = callPackage @@ -15110,6 +16137,7 @@ self: { ]; description = "Page-oriented extraction and composition library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pio"; }) {}; @@ -15129,6 +16157,7 @@ self: { ]; description = "a simple Paillier cryptosystem"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "PandocAgda" = callPackage @@ -15149,7 +16178,9 @@ self: { executableHaskellDepends = [ base ]; description = "Pandoc support for literate Agda"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "agdapandoc"; + broken = true; }) {}; "Paraiso" = callPackage @@ -15174,6 +16205,7 @@ self: { ]; description = "a code generator for partial differential equations solvers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Parallel-Arrows-BaseSpec" = callPackage @@ -15192,6 +16224,7 @@ self: { ]; description = "BaseSpecs used for @Parallel-Arrows-Definition@ and Co"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "Parallel-Arrows-Definition" = callPackage @@ -15203,6 +16236,8 @@ self: { libraryHaskellDepends = [ base deepseq split ]; description = "Multithreaded evaluation using Arrows"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Parallel-Arrows-Eden" = callPackage @@ -15223,6 +16258,7 @@ self: { ]; description = "Eden based backend for @Parallel-Arrows-Definition@"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "Parallel-Arrows-Multicore" = callPackage @@ -15242,6 +16278,7 @@ self: { ]; description = "GpH based backend for @Parallel-Arrows-Definition@ in a multicore variant"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "Parallel-Arrows-ParMonad" = callPackage @@ -15261,6 +16298,7 @@ self: { ]; description = "Par Monad (@monad-par@) based backend for @Parallel-Arrows-Definition@"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "Parry" = callPackage @@ -15278,6 +16316,8 @@ self: { ]; description = "A proven synchronization server for high performance computing"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ParsecTools" = callPackage @@ -15322,6 +16362,8 @@ self: { libraryHaskellDepends = [ base QuickCheck ]; description = "Simple library for generating passwords"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "PastePipe" = callPackage @@ -15353,6 +16395,8 @@ self: { ]; description = "A tree used to merge and maintain paths"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Pathfinder" = callPackage @@ -15365,6 +16409,8 @@ self: { librarySystemDepends = [ libxml2 ]; description = "Relational optimiser and code generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libxml2;}; "Peano" = callPackage @@ -15387,6 +16433,8 @@ self: { libraryHaskellDepends = [ base ]; description = "GADT type witnesses for Peano-style natural numbers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "PerfectHash" = callPackage @@ -15403,6 +16451,8 @@ self: { librarySystemDepends = [ cmph ]; description = "A perfect hashing library for mapping bytestrings to values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {cmph = null;}; "PermuteEffects" = callPackage @@ -15414,6 +16464,7 @@ self: { libraryHaskellDepends = [ base ReplicateEffects ]; description = "Permutations of effectful computations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Persistence" = callPackage @@ -15432,6 +16483,8 @@ self: { ]; description = "A versatile library for topological data analysis"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Phsu" = callPackage @@ -15456,7 +16509,9 @@ self: { ]; description = "Personal Happstack Server Utils"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "Phsu"; + broken = true; }) {}; "Pipe" = callPackage @@ -15468,6 +16523,8 @@ self: { libraryHaskellDepends = [ base filepath process unix ]; description = "Process piping library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Piso" = callPackage @@ -15479,6 +16536,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Partial isomorphisms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "PlayHangmanGame" = callPackage @@ -15513,6 +16572,8 @@ self: { ]; description = "Playing cards api"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Plot-ho-matic" = callPackage @@ -15534,6 +16595,7 @@ self: { ]; description = "Real-time line plotter for generic data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "PlslTools" = callPackage @@ -15553,6 +16615,7 @@ self: { ]; description = "So far just a lint like program for PL/SQL. Diff and refactoring tools are planned"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "PlslLint"; }) {}; @@ -15592,7 +16655,9 @@ self: { executableHaskellDepends = [ base bytestring network splice ]; description = "high-performance distributed reverse / forward proxy & tunneling for TCP"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "PortFusion"; + broken = true; }) {}; "PortMidi" = callPackage @@ -15633,6 +16698,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Thin wrapper over the C postgresql library"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Prelude" = callPackage @@ -15646,6 +16713,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A Prelude module replacement"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "PrimitiveArray" = callPackage @@ -15681,6 +16750,8 @@ self: { ]; description = "Efficient multidimensional arrays"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "PrimitiveArray-Pretty" = callPackage @@ -15703,6 +16774,8 @@ self: { ]; description = "Pretty-printing for primitive arrays"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Printf-TH" = callPackage @@ -15713,6 +16786,7 @@ self: { sha256 = "0n1gva510p69vy25zvjkzwqqz2gilbns1wnrzz2p22rjkkbrinvx"; libraryHaskellDepends = [ base haskell98 pretty template-haskell ]; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "PriorityChansConverger" = callPackage @@ -15724,6 +16798,8 @@ self: { libraryHaskellDepends = [ base containers stm ]; description = "Read single output from an array of inputs - channels with priorities"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ProbabilityMonads" = callPackage @@ -15735,6 +16811,7 @@ self: { libraryHaskellDepends = [ base MaybeT MonadRandom mtl ]; description = "Probability distribution monads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Probnet" = callPackage @@ -15746,6 +16823,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Geometric Extrapolation of Integer Sequences with error prediction"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "PropLogic" = callPackage @@ -15792,6 +16871,8 @@ self: { ]; description = "Auto-active verification of floating-point programs"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Proper" = callPackage @@ -15806,6 +16887,8 @@ self: { executableHaskellDepends = [ base containers HUnit parsec syb ]; description = "An implementation of propositional logic in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ProxN" = callPackage @@ -15841,6 +16924,7 @@ self: { ]; description = "A Perl 6 Implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pugs"; }) {}; @@ -15861,6 +16945,7 @@ self: { doHaddock = false; description = "A networked event handling framework for hooking into other programs"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "pupevents-all"; }) {}; @@ -15895,6 +16980,7 @@ self: { ]; description = "A networked event handling framework for hooking into other programs"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "Pup-Events-PQueue" = callPackage @@ -15921,6 +17007,8 @@ self: { ]; description = "A networked event handling framework for hooking into other programs"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "PyF" = callPackage @@ -15952,6 +17040,8 @@ self: { libraryHaskellDepends = [ base containers mtl old-time random ]; description = "The Quantum IO Monad is a library for defining quantum computations in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "QLearn" = callPackage @@ -15963,6 +17053,8 @@ self: { libraryHaskellDepends = [ base random vector ]; description = "A library for fast, easy-to-use Q-learning"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "QuadEdge" = callPackage @@ -15974,6 +17066,8 @@ self: { libraryHaskellDepends = [ base random vector ]; description = "QuadEdge structure for representing triangulations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "QuadTree" = callPackage @@ -15986,6 +17080,8 @@ self: { testHaskellDepends = [ base composition lens QuickCheck ]; description = "QuadTree library for Haskell, with lens support"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "QuasiText" = callPackage @@ -16021,6 +17117,7 @@ self: { ]; description = "Programming with Eventual Consistency over Cassandra"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "QuickAnnotate" = callPackage @@ -16035,7 +17132,9 @@ self: { executableHaskellDepends = [ base haskell-src-exts ]; description = "Annotation Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "qapp"; + broken = true; }) {}; "QuickCheck" = callPackage @@ -16090,6 +17189,8 @@ self: { benchmarkHaskellDepends = [ base hspec QuickCheck ]; description = "Valid and Invalid generator"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "QuickPlot" = callPackage @@ -16113,6 +17214,7 @@ self: { ]; description = "Quick and easy data visualization with Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "Quickson" = callPackage @@ -16127,6 +17229,8 @@ self: { ]; description = "Quick JSON extractions with Aeson"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "R-pandoc" = callPackage @@ -16144,7 +17248,9 @@ self: { ]; executableHaskellDepends = [ base pandoc-types ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "R-pandoc"; + broken = true; }) {}; "RANSAC" = callPackage @@ -16188,6 +17294,7 @@ self: { ]; description = "A framework for writing RESTful applications"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "RFC1751" = callPackage @@ -16219,6 +17326,7 @@ self: { ]; description = "A reflective JSON serializer/parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "RLP" = callPackage @@ -16231,6 +17339,8 @@ self: { testHaskellDepends = [ base binary bytestring hspec ]; description = "RLP serialization as defined in Ethereum Yellow Paper"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "RMP" = callPackage @@ -16251,6 +17361,7 @@ self: { executableSystemDepends = [ canlib ftd2xx ]; description = "Binding to code that controls a Segway RMP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {canlib = null; ftd2xx = null;}; "RNAFold" = callPackage @@ -16273,6 +17384,7 @@ self: { ]; description = "RNA secondary structure prediction"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "RNAFoldProgs" = callPackage @@ -16292,6 +17404,7 @@ self: { ]; description = "RNA secondary structure folding"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "RNAdesign" = callPackage @@ -16317,6 +17430,7 @@ self: { executableHaskellDepends = [ bytestring cmdargs file-embed ]; description = "Multi-target RNA sequence design"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "RNAdesign"; }) {}; @@ -16337,6 +17451,7 @@ self: { executableHaskellDepends = [ cmdargs ]; description = "Draw RNA secondary structures"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "RNAdotplot"; }) {}; @@ -16370,6 +17485,7 @@ self: { ]; description = "Unsupervized construction of RNA family models"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "RNAwolf" = callPackage @@ -16390,6 +17506,7 @@ self: { executableHaskellDepends = [ cmdargs split ]; description = "RNA folding with non-canonical basepairs and base-triplets"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "RSA" = callPackage @@ -16445,6 +17562,8 @@ self: { ]; description = "AMQP 0-9-1 client library for RabbitMQ servers"; license = "BSD-3-Clause AND GPL-3.0-or-later"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Raincat" = callPackage @@ -16465,6 +17584,7 @@ self: { description = "A puzzle game written in Haskell with a cat in lead role"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; mainProgram = "raincat"; }) {}; @@ -16496,6 +17616,8 @@ self: { libraryHaskellDepends = [ base HTTP-Simple network ]; description = "Interface to random.org"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Randometer" = callPackage @@ -16509,7 +17631,9 @@ self: { executableHaskellDepends = [ base random-fu ]; description = "Randomness intuition trainer"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "randometer"; + broken = true; }) {}; "Range" = callPackage @@ -16521,6 +17645,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Data structure for managing ranges"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Ranged-sets" = callPackage @@ -16551,6 +17677,7 @@ self: { ]; description = "HTTP to XMPP omegle chats gate"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "Ranka"; }) {}; @@ -16646,6 +17773,8 @@ self: { ]; description = "Library to access Redmine's REST services"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Ref" = callPackage @@ -16657,6 +17786,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Generic Mutable Ref Abstraction Layer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "RefSerialize" = callPackage @@ -16692,7 +17823,9 @@ self: { ]; description = "A utility for computing distributions of material to review among reviewers"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "referees"; + broken = true; }) {}; "RepLib" = callPackage @@ -16708,6 +17841,8 @@ self: { ]; description = "Generic programming library with representation types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ReplaceUmlaut" = callPackage @@ -16738,7 +17873,9 @@ self: { ]; description = "converting text to properly encoded german umlauts"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "replaceUmlaut"; + broken = true; }) {}; "ReplicateEffects" = callPackage @@ -16750,6 +17887,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Composable replication schemes of applicative functors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ReviewBoard" = callPackage @@ -16768,6 +17907,8 @@ self: { ]; description = "Haskell bindings to ReviewBoard"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "RichConditional" = callPackage @@ -16779,6 +17920,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Tiny library to replace classic if/else"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Ritt-Wu" = callPackage @@ -16807,7 +17950,9 @@ self: { ]; description = "Parallel implementation of Ritt-Wu's algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Ritt-Wu-exe"; + broken = true; }) {}; "Rlang-QQ" = callPackage @@ -16831,6 +17976,7 @@ self: { testHaskellDepends = [ base directory doctest hspec lens vector ]; description = "quasiquoter for inline-R code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "RollingDirectory" = callPackage @@ -16855,6 +18001,7 @@ self: { ]; description = "Limits the size of a directory's contents"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "RollingDirectory"; }) {}; @@ -16885,6 +18032,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit vector ]; description = "Haskell wrapper for RtMidi, the lightweight, cross-platform MIDI I/O library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) alsa-lib;}; "RxHaskell" = callPackage @@ -16896,6 +18045,8 @@ self: { libraryHaskellDepends = [ base containers stm transformers ]; description = "Reactive Extensions for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "S3" = callPackage @@ -16916,6 +18067,7 @@ self: { ]; description = "Library for accessing S3 compatible storage services"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; }) {}; "SBench" = callPackage @@ -16933,6 +18085,7 @@ self: { ]; description = "A benchmark suite for runtime and heap measurements over a series of inputs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "SCRIPTWriter" = callPackage @@ -16952,6 +18105,7 @@ self: { executableHaskellDepends = [ base ]; description = "ESCRIPT: a human friendly language for programming Bitcoin scripts"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "SCRIPTWriter-exe"; }) {}; @@ -16969,6 +18123,7 @@ self: { ]; description = "This is a library for handling calendars and resource availability based on the \"top-nodes algorithm\" and set operations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "SDL" = callPackage @@ -17086,6 +18241,8 @@ self: { ]; description = "SFML bindings"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {csfml-audio = null; csfml-graphics = null; csfml-network = null; csfml-system = null; csfml-window = null; sfml-audio = null; sfml-graphics = null; sfml-network = null; @@ -17100,6 +18257,7 @@ self: { libraryHaskellDepends = [ base mtl SFML template-haskell ]; description = "Higher level library on top of SFML"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "SFont" = callPackage @@ -17111,6 +18269,7 @@ self: { libraryHaskellDepends = [ array base SDL Sprig ]; description = "SFont SDL Bitmap Fonts"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "SG" = callPackage @@ -17122,6 +18281,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Small geometry library for dealing with vectors and collision detection"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "SGdemo" = callPackage @@ -17135,6 +18296,7 @@ self: { executableHaskellDepends = [ base GLUT OpenGL SG ]; description = "An example of using the SG and OpenGL libraries"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "sgdemo"; }) {}; @@ -17147,6 +18309,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "(updated) Small geometry library for dealing with vectors and collision detection"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "SHA" = callPackage @@ -17202,7 +18366,9 @@ self: { benchmarkHaskellDepends = [ base directory filepath random time ]; description = "The Simple Javascript Wrench"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sjw"; + broken = true; }) {}; "SMTPClient" = callPackage @@ -17219,6 +18385,8 @@ self: { ]; description = "A simple SMTP client library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "SNet" = callPackage @@ -17235,6 +18403,8 @@ self: { libraryToolDepends = [ c2hsc ]; description = "Declarative coördination language for streaming networks"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "SQLDeps" = callPackage @@ -17265,7 +18435,9 @@ self: { testHaskellDepends = [ base containers ]; description = "STG Symbolic Execution"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "SSTG-exe"; + broken = true; }) {}; "STL" = callPackage @@ -17277,6 +18449,8 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring cereal text ]; description = "STL 3D geometry format parsing and pretty-printing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "STLinkUSB" = callPackage @@ -17292,6 +18466,7 @@ self: { ]; description = "STLink USB interface in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "STM32-Zombie" = callPackage @@ -17308,6 +18483,7 @@ self: { ]; description = "control a STM32F103 microcontroller"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "STM32F103xx-SVD" = callPackage @@ -17350,6 +18526,8 @@ self: { ]; description = "translate a SVD of a Microcontroller to Haskell tables"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "SVG2Q" = callPackage @@ -17367,6 +18545,7 @@ self: { ]; description = "Code generation tool for Quartz code from a SVG"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "svg2q"; }) {}; @@ -17434,7 +18613,9 @@ self: { ]; description = "Generate a parser (in Haskell) with the SableCC parser generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sable2hs"; + broken = true; }) {}; "Safe" = callPackage @@ -17472,6 +18653,8 @@ self: { librarySystemDepends = [ glib mono ]; description = "A .NET Bridge for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) glib; inherit (pkgs) mono;}; "Saturnin" = callPackage @@ -17495,7 +18678,9 @@ self: { testHaskellDepends = [ base data-default either hlint hspec mtl ]; description = "Saturnin CI / Job System"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "saturnin"; + broken = true; }) {}; "SciBaseTypes" = callPackage @@ -17546,6 +18731,7 @@ self: { ]; description = "Scientific workflow management system"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "SciFlow-drmaa" = callPackage @@ -17562,6 +18748,7 @@ self: { ]; description = "Scientific workflow management system"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ScratchFs" = callPackage @@ -17580,7 +18767,9 @@ self: { ]; description = "Size limited temp filesystem based on fuse"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "ScratchFs"; + broken = true; }) {}; "Scurry" = callPackage @@ -17599,6 +18788,7 @@ self: { ]; description = "A cross platform P2P VPN application built using Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "scurry"; }) {}; @@ -17613,6 +18803,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "simple static linked SHA3 using private symbols and the ref impl"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "SegmentTree" = callPackage @@ -17626,6 +18818,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Data structure for querying the set (or count) of intervals covering given point"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "SelectSequencesFromMSA" = callPackage @@ -17650,6 +18844,7 @@ self: { ]; description = "Selects a representative subset of sequences from multiple sequence alignment"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "SelectSequencesFromMSA"; }) {}; @@ -17669,7 +18864,9 @@ self: { ]; description = "Command-line tool for maintaining the Semantique database"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "semantique"; + broken = true; }) {}; "Semigroup" = callPackage @@ -17681,6 +18878,8 @@ self: { libraryHaskellDepends = [ base bytestring containers mtl ]; description = "A semigroup"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "SeqAlign" = callPackage @@ -17692,6 +18891,8 @@ self: { libraryHaskellDepends = [ base bytestring vector ]; description = "Sequence Alignment"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "SessionLogger" = callPackage @@ -17707,6 +18908,8 @@ self: { ]; description = "Easy Loggingframework"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Set" = callPackage @@ -17720,6 +18923,7 @@ self: { benchmarkHaskellDepends = [ base containers gauge util ]; description = "See README for more info"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "ShellCheck" = callPackage @@ -17764,6 +18968,8 @@ self: { libraryHaskellDepends = [ base directory mtl unix ]; description = "A framework for creating shell envinronments"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Shellac-compatline" = callPackage @@ -17777,6 +18983,7 @@ self: { libraryHaskellDepends = [ base Shellac Shellac-readline ]; description = "\"compatline\" backend module for Shellac"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Shellac-editline" = callPackage @@ -17790,6 +18997,7 @@ self: { libraryHaskellDepends = [ base editline Shellac ]; description = "Editline backend module for Shellac"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Shellac-haskeline" = callPackage @@ -17801,6 +19009,7 @@ self: { libraryHaskellDepends = [ base haskeline mtl Shellac ]; description = "Haskeline backend module for Shellac"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Shellac-readline" = callPackage @@ -17814,6 +19023,7 @@ self: { libraryHaskellDepends = [ base readline Shellac ]; description = "Readline backend module for Shellac"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ShortestPathProblems" = callPackage @@ -17834,6 +19044,7 @@ self: { ]; description = "grammars for TSP and SHP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ShowF" = callPackage @@ -17862,6 +19073,7 @@ self: { ]; description = "A programming model for declarative, high performance user interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-backend-pardiff" = callPackage @@ -17880,6 +19092,7 @@ self: { ]; description = "A Virtual Dom in pure Haskell, based on Html as an Alignable Functor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-backend-snabbdom" = callPackage @@ -17897,6 +19110,7 @@ self: { ]; description = "Use the high-performance Snabbdom virtual dom library written in JavaScript"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-backend-static" = callPackage @@ -17908,6 +19122,7 @@ self: { libraryHaskellDepends = [ base compactable Shpadoinkle text ]; description = "A backend for rendering Shpadoinkle as Text"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-console" = callPackage @@ -17919,6 +19134,8 @@ self: { libraryHaskellDepends = [ aeson base jsaddle lens text unliftio ]; description = "Support for the native browser console"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Shpadoinkle-debug" = callPackage @@ -17930,6 +19147,8 @@ self: { libraryHaskellDepends = [ aeson base jsaddle lens text unliftio ]; description = "Debugging tools for Shpadoinkle applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Shpadoinkle-developer-tools" = callPackage @@ -17953,6 +19172,7 @@ self: { ]; description = "Chrome extension to aide in development"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "devtools"; }) {}; @@ -17972,6 +19192,7 @@ self: { ]; description = "Shpadoinkle as a static site"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-examples" = callPackage @@ -18003,6 +19224,7 @@ self: { ]; description = "Example usages of Shpadoinkle"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-html" = callPackage @@ -18022,6 +19244,7 @@ self: { ]; description = "A typed, template generated Html DSL, and helpers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-isreal" = callPackage @@ -18045,7 +19268,9 @@ self: { ]; description = "Isreal Swan will make a snowman for you!"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "isreal"; + broken = true; }) {}; "Shpadoinkle-lens" = callPackage @@ -18057,6 +19282,7 @@ self: { libraryHaskellDepends = [ base lens Shpadoinkle text ]; description = "Lens combinators for Shpadoinkle applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-router" = callPackage @@ -18080,6 +19306,7 @@ self: { ]; description = "A single page application rounter for Shpadoinkle based on Servant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-streaming" = callPackage @@ -18091,6 +19318,7 @@ self: { libraryHaskellDepends = [ base lens Shpadoinkle streaming text ]; description = "Integration of the streaming library with Shpadoinkle continuations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-template" = callPackage @@ -18112,6 +19340,7 @@ self: { ]; description = "Read standard file formats into Shpadoinkle with Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Shpadoinkle-widgets" = callPackage @@ -18136,6 +19365,7 @@ self: { ]; description = "A collection of common reusable types and components"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Shrub" = callPackage @@ -18199,6 +19429,7 @@ self: { ]; description = "A Simple Graphics Library from the SimpleH framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "SimpleH" = callPackage @@ -18215,6 +19446,8 @@ self: { ]; description = "A light, clean and powerful Haskell utility library"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "SimpleLog" = callPackage @@ -18234,6 +19467,7 @@ self: { ]; description = "Simple, configurable logging"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "SimpleServer" = callPackage @@ -18254,6 +19488,7 @@ self: { ]; description = "A simple static file server, for when apache is overkill"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "simpleserver"; }) {}; @@ -18339,6 +19574,8 @@ self: { testHaskellDepends = [ base file-embed ]; description = "Generate slides from Haskell code"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "SmithNormalForm" = callPackage @@ -18350,6 +19587,8 @@ self: { libraryHaskellDepends = [ base matrix vector ]; description = "A lightweight Haskell implementation of Smith normal form over the integers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Smooth" = callPackage @@ -18365,6 +19604,7 @@ self: { ]; description = "A tiny, lazy SMT solver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "SmtLib" = callPackage @@ -18376,6 +19616,8 @@ self: { libraryHaskellDepends = [ base parsec transformers ]; description = "Library for parsing SMTLIB2"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Snusmumrik" = callPackage @@ -18398,6 +19640,7 @@ self: { executableToolDepends = [ cpphs ]; description = "E-library directory based on FUSE virtual file system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) zip;}; "SoOSiM" = callPackage @@ -18414,6 +19657,8 @@ self: { ]; description = "Abstract full system simulator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "SoccerFun" = callPackage @@ -18433,6 +19678,7 @@ self: { ]; description = "Football simulation framework for teaching functional programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sfRecord"; }) {}; @@ -18453,6 +19699,7 @@ self: { ]; description = "OpenGL UI for the SoccerFun framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Sonnex" = callPackage @@ -18465,6 +19712,8 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Sonnex is an alternative to Soundex for french language"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "SourceGraph" = callPackage @@ -18483,6 +19732,7 @@ self: { ]; description = "Static code analysis using graph-theoretic techniques"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "SourceGraph"; }) {}; @@ -18518,7 +19768,9 @@ self: { ]; description = "Video game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "spaceInvaders"; + broken = true; }) {}; "SpacePrivateers" = callPackage @@ -18540,6 +19792,7 @@ self: { ]; description = "Simple space pirate roguelike"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "SpacePrivateers"; }) {}; @@ -18552,6 +19805,7 @@ self: { libraryHaskellDepends = [ base monad-loops ref-mtl stm ]; description = "Lock free Spin Counter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Spintax" = callPackage @@ -18565,6 +19819,8 @@ self: { ]; description = "Random text generation based on spintax"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Spock" = callPackage @@ -18616,6 +19872,8 @@ self: { ]; description = "Another Haskell web framework for rapid development"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Spock-api-server" = callPackage @@ -18638,6 +19896,8 @@ self: { libraryHaskellDepends = [ base http-types Spock text time ]; description = "Provides authentification helpers for Spock"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Spock-core" = callPackage @@ -18734,6 +19994,8 @@ self: { libraryHaskellDepends = [ base SDL ]; description = "Binding to Sprig"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Stack" = callPackage @@ -18761,7 +20023,9 @@ self: { executableHaskellDepends = [ base ]; description = "A simple MVCC like library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Stasis"; + broken = true; }) {}; "StateVar" = callPackage @@ -18811,6 +20075,7 @@ self: { ]; description = "Libary for Stockholm aligmnent format"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "Stomp" = callPackage @@ -18826,6 +20091,8 @@ self: { ]; description = "Client library for Stomp brokers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Strafunski-ATermLib" = callPackage @@ -18837,6 +20104,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "An abstract data type designed for the exchange of tree-like data structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Strafunski-Sdf2Haskell" = callPackage @@ -18856,6 +20125,7 @@ self: { ]; description = "Converts SDF to Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Sdf2Haskell"; }) {}; @@ -18870,6 +20140,8 @@ self: { libraryHaskellDepends = [ base directory mtl syb transformers ]; description = "Library for strategic programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "StrappedTemplates" = callPackage @@ -18887,6 +20159,8 @@ self: { testHaskellDepends = [ base blaze-builder bytestring hspec text ]; description = "General purpose templates in haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "StrategyLib" = callPackage @@ -18897,6 +20171,8 @@ self: { sha256 = "1sskndywpm1gi4bs4i1gah73jk49inlscg4jzcqhq0phb8f886xk"; libraryHaskellDepends = [ base mtl ]; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Stream" = callPackage @@ -18920,6 +20196,8 @@ self: { libraryHaskellDepends = [ base benchpress parallel ]; description = "Benchmarking code through strict evaluation"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "StrictCheck" = callPackage @@ -18938,6 +20216,8 @@ self: { ]; description = "StrictCheck: Keep Your Laziness In Check"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "StringUtils" = callPackage @@ -18975,7 +20255,9 @@ self: { ]; description = "Suffix array construction"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mkesa"; + broken = true; }) {}; "SvgIcons" = callPackage @@ -19002,6 +20284,7 @@ self: { ]; description = "Library which aids constructing generic (SYB3-based) widgets"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "SyntaxMacros" = callPackage @@ -19018,6 +20301,7 @@ self: { ]; description = "Syntax Macros in the form of an EDSL"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "Sysmon" = callPackage @@ -19038,6 +20322,8 @@ self: { ]; description = "Sybase 15 sysmon reports processor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "TBC" = callPackage @@ -19058,7 +20344,9 @@ self: { ]; description = "Testing By Convention"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tbc"; + broken = true; }) {}; "TBit" = callPackage @@ -19075,6 +20363,8 @@ self: { ]; description = "Utilities for condensed matter physics tight binding calculations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "TCache" = callPackage @@ -19106,6 +20396,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "TH implementation of effects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "TLT" = callPackage @@ -19129,7 +20421,9 @@ self: { ]; description = "Testing in monads and transformers without explicit specs"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "TLT-exe"; + broken = true; }) {}; "TORCS" = callPackage @@ -19151,7 +20445,9 @@ self: { executableHaskellDepends = [ base bytestring Yampa ]; description = "Bindings to the TORCS vehicle simulator"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "Simple"; + broken = true; }) {}; "TTTAS" = callPackage @@ -19174,6 +20470,7 @@ self: { libraryHaskellDepends = [ base DeepArrow TypeCompose ]; description = "Tangible Values -- composable interfaces"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "TYB" = callPackage @@ -19189,6 +20486,8 @@ self: { ]; description = "Template Your Boilerplate - a Template Haskell version of SYB"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "TableAlgebra" = callPackage @@ -19217,7 +20516,9 @@ self: { executableHaskellDepends = [ base cookbook ]; description = "A client for Quill databases"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Tables"; + broken = true; }) {}; "Tablify" = callPackage @@ -19231,7 +20532,9 @@ self: { executableHaskellDepends = [ base parsec xhtml ]; description = "Tool to render CSV into tables of various formats"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tablify"; + broken = true; }) {}; "Tahin" = callPackage @@ -19276,6 +20579,8 @@ self: { libraryHaskellDepends = [ base mtl old-time time ]; description = "Database library with left-fold interface, for PostgreSQL, Oracle, SQLite, ODBC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Tape" = callPackage @@ -19287,6 +20592,8 @@ self: { libraryHaskellDepends = [ base comonad distributive Stream ]; description = "Bidirectionally infinite streams, akin to the tape of a Turing machine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "TaskMonad" = callPackage @@ -19305,6 +20612,8 @@ self: { ]; description = "A collection of tools which can be used to access taskwarrior from xmonad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "TastyTLT" = callPackage @@ -19331,6 +20640,7 @@ self: { ]; description = "Run TLT tests from Tasty"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "TLT-exe"; }) {}; @@ -19347,6 +20657,7 @@ self: { ]; description = "Libary for parsing, processing and vizualization of taxonomy data"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "TaxonomyTools" = callPackage @@ -19366,6 +20677,7 @@ self: { ]; description = "Tool for parsing, processing, comparing and visualizing taxonomy data"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "TeX-my-math" = callPackage @@ -19392,7 +20704,9 @@ self: { ]; description = "Render general Haskell math to LaTeX. Or: math typesetting with high signal-to-noise–ratio."; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "TeXmyMath-example"; + broken = true; }) {}; "TeaHS" = callPackage @@ -19408,6 +20722,7 @@ self: { ]; description = "TeaHS Game Creation Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Tensor" = callPackage @@ -19452,6 +20767,8 @@ self: { ]; description = "Generates testcases from program-snippets"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Theora" = callPackage @@ -19463,6 +20780,8 @@ self: { libraryHaskellDepends = [ base ]; librarySystemDepends = [ ogg theora ]; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {ogg = null; theora = null;}; "Thingie" = callPackage @@ -19474,6 +20793,8 @@ self: { libraryHaskellDepends = [ base cairo gtk mtl ]; description = "Purely functional 2D drawing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ThreadObjects" = callPackage @@ -19501,6 +20822,8 @@ self: { ]; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Tic-Tac-Toe" = callPackage @@ -19531,6 +20854,8 @@ self: { ]; description = "A sub-project (exercise) for a functional programming course"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "TigerHash" = callPackage @@ -19542,6 +20867,8 @@ self: { libraryHaskellDepends = [ base binary bytestring dataenc ]; description = "TigerHash with C implementation"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "TimePiece" = callPackage @@ -19565,7 +20892,9 @@ self: { ]; description = "A simple tile-based digital clock screen saver"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "TimePiece"; + broken = true; }) {}; "TinyLaunchbury" = callPackage @@ -19577,6 +20906,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Simple implementation of call-by-need using Launchbury's semantics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "TinyURL" = callPackage @@ -19588,6 +20919,8 @@ self: { libraryHaskellDepends = [ base HTTP network ]; description = "Use TinyURL to compress URLs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Titim" = callPackage @@ -19601,7 +20934,9 @@ self: { executableHaskellDepends = [ base containers matrix random ]; description = "Game for Lounge Marmelade"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "titim"; + broken = true; }) {}; "Top" = callPackage @@ -19616,7 +20951,9 @@ self: { executableHaskellDepends = [ base containers mtl parsec ]; description = "Constraint solving framework employed by the Helium Compiler"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "topsolver"; + broken = true; }) {}; "TotalMap" = callPackage @@ -19636,6 +20973,8 @@ self: { testToolDepends = [ markdown-unlit ]; description = "A total map datatype"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Tournament" = callPackage @@ -19653,6 +20992,8 @@ self: { ]; description = "Tournament related algorithms"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "TraceUtils" = callPackage @@ -19681,7 +21022,9 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "eDSL in R for Safe Variable Transformarion"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "TransformeR-exe"; + broken = true; }) {}; "TransformersStepByStep" = callPackage @@ -19695,7 +21038,9 @@ self: { executableHaskellDepends = [ base containers mtl ]; description = "Tutorial on monad transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "TransformersStepByStep"; + broken = true; }) {}; "Transhare" = callPackage @@ -19718,6 +21063,7 @@ self: { libraryHaskellDepends = [ base ref-mtl stm ]; description = "Wait-free Tree Counter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "TreeStructures" = callPackage @@ -19729,6 +21075,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A collection of heaps and search trees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "TreeT" = callPackage @@ -19751,6 +21099,7 @@ self: { libraryHaskellDepends = [ base ghc-prim monad-loops ref-mtl stm ]; description = "Lock free Treiber stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "TrendGraph" = callPackage @@ -19767,6 +21116,8 @@ self: { ]; description = "A simple trend Graph script"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "TrieMap" = callPackage @@ -19784,6 +21135,7 @@ self: { ]; description = "Automatic type inference of generalized tries with Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Twofish" = callPackage @@ -19822,6 +21174,7 @@ self: { ]; description = "Typing speed game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "TypeClass"; }) {}; @@ -19836,6 +21189,8 @@ self: { libraryHaskellDepends = [ base base-orphans ]; description = "Type composition classes & instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "TypeIlluminator" = callPackage @@ -19849,6 +21204,7 @@ self: { executableHaskellDepends = [ base haskell98 ]; description = "TypeIlluminator is a prototype tool exploring debugging of type errors/"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "typeilluminator"; }) {}; @@ -19907,6 +21263,7 @@ self: { ]; description = "A small command-line accounting tool"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "umm"; }) {}; @@ -19925,6 +21282,7 @@ self: { ]; description = "Library for maintaining correctness of URLs within an application"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "URLb" = callPackage @@ -19936,6 +21294,8 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring containers ]; description = "DEPRECATED A simple, liberal URL parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "UTFTConverter" = callPackage @@ -19959,6 +21319,7 @@ self: { ]; description = "Processing popular picture formats into .c or .raw format in RGB565"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "UTFTConverter"; }) {}; @@ -20026,6 +21387,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Monadic FRP library based on stm"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "UrlDisp" = callPackage @@ -20037,6 +21400,7 @@ self: { libraryHaskellDepends = [ base cgi MaybeT mtl ]; description = "Url dispatcher. Helps to retain friendly URLs in web applications."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Useful" = callPackage @@ -20089,7 +21453,9 @@ self: { ]; description = "Provides access to Vkontakte social network via public API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "vkq"; + broken = true; }) {}; "VRML" = callPackage @@ -20113,6 +21479,8 @@ self: { ]; description = "VRML parser and generator for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Validation" = callPackage @@ -20126,6 +21494,8 @@ self: { ]; description = "A data-type like Either but with an accumulating Applicative"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ValveValueKeyvalue" = callPackage @@ -20161,6 +21531,8 @@ self: { libraryHaskellDepends = [ base Boolean Vec ]; description = "Provides Boolean instances for the Vec package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Vec-OpenGLRaw" = callPackage @@ -20172,6 +21544,8 @@ self: { libraryHaskellDepends = [ base OpenGLRaw Vec ]; description = "Instances and functions to interoperate Vec and OpenGL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Vec-Transform" = callPackage @@ -20208,7 +21582,9 @@ self: { executableHaskellDepends = [ base containers matrix ]; description = "A solver for the WordBrain game"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "Verba"; + broken = true; }) {}; "ViennaRNA-bindings" = callPackage @@ -20251,6 +21627,7 @@ self: { ]; description = "ViennaRNA v2 extensions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ViennaRNAParser" = callPackage @@ -20297,7 +21674,9 @@ self: { ]; description = "Villefort is a task manager and time tracker"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Villefort"; + broken = true; }) {}; "Vulkan" = callPackage @@ -20358,6 +21737,8 @@ self: { doHaddock = false; description = "Generic text-editor logic for use with fixed-width fonts"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "WEditorBrick" = callPackage @@ -20372,6 +21753,7 @@ self: { executableHaskellDepends = [ base brick vty WEditor ]; description = "Text-editor widget with dynamic line-wrapping for use with Brick"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "brick-example"; }) {}; @@ -20385,6 +21767,7 @@ self: { testHaskellDepends = [ base directory hyphenation WEditor ]; description = "Language-specific hyphenation policies for WEditor"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "WL500gPControl" = callPackage @@ -20401,6 +21784,7 @@ self: { ]; description = "A simple command line tools to control the Asus WL500gP router"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "WL500gPLib" = callPackage @@ -20415,7 +21799,9 @@ self: { executableHaskellDepends = [ base ]; description = "A simple library to access to the WL 500gP router from the Haskell code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "test"; + broken = true; }) {}; "WMSigner" = callPackage @@ -20435,6 +21821,8 @@ self: { ]; description = "WebMoney authentication module"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "WURFL" = callPackage @@ -20446,6 +21834,7 @@ self: { libraryHaskellDepends = [ base haskell98 parsec ]; description = "Convert the WURFL file into a Parsec parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "WXDiffCtrl" = callPackage @@ -20458,6 +21847,7 @@ self: { libraryHaskellDepends = [ base containers wx wxcore ]; description = "WXDiffCtrl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "WashNGo" = callPackage @@ -20476,6 +21866,7 @@ self: { executableHaskellDepends = [ directory ghc-paths process ]; description = "WASH is a family of EDSLs for programming Web applications in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "WaveFront" = callPackage @@ -20492,6 +21883,7 @@ self: { ]; description = "Parsers and utilities for the OBJ WaveFront 3D model format"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "WeakSets" = callPackage @@ -20504,6 +21896,8 @@ self: { testHaskellDepends = [ base ]; description = "Simple set types. Useful to create sets of arbitrary types and nested sets."; license = lib.licenses.lgpl3Plus; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Weather" = callPackage @@ -20519,6 +21913,8 @@ self: { ]; description = "Library for interacting with the Weather Underground JSON API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "WebBits" = callPackage @@ -20530,6 +21926,8 @@ self: { libraryHaskellDepends = [ base containers mtl parsec pretty syb ]; description = "JavaScript analysis tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "WebBits-Html" = callPackage @@ -20545,6 +21943,7 @@ self: { ]; description = "JavaScript analysis tools"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "WebBits-multiplate" = callPackage @@ -20561,6 +21960,7 @@ self: { ]; description = "A Multiplate instance for JavaScript"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "WebCont" = callPackage @@ -20579,6 +21979,7 @@ self: { ]; description = "Continuation based web programming for Happstack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "WeberLogic" = callPackage @@ -20593,7 +21994,9 @@ self: { executableHaskellDepends = [ base parsec ]; description = "Logic interpreter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "WeberLogic"; + broken = true; }) {}; "Webrexp" = callPackage @@ -20620,7 +22023,9 @@ self: { ]; description = "Regexp-like engine to scrap web data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "webrexp"; + broken = true; }) {}; "Wheb" = callPackage @@ -20645,6 +22050,8 @@ self: { ]; description = "The frictionless WAI Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "WikimediaParser" = callPackage @@ -20656,6 +22063,8 @@ self: { libraryHaskellDepends = [ base parsec ]; description = "A parser for wikimedia style article markup"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Win32" = callPackage @@ -20821,6 +22230,7 @@ self: { ]; description = "Wire-aware hardware description"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "WordAlignment" = callPackage @@ -20860,6 +22270,7 @@ self: { ]; description = "Bigram word pair alignments"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "WordAlign"; }) {}; @@ -20874,6 +22285,8 @@ self: { libraryHaskellDepends = [ array base containers filepath ]; description = "Haskell interface to the WordNet database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "WordNet-ghc74" = callPackage @@ -20887,6 +22300,8 @@ self: { libraryHaskellDepends = [ array base containers filepath ]; description = "Haskell interface to the WordNet database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Wordlint" = callPackage @@ -20901,7 +22316,9 @@ self: { executableHaskellDepends = [ base boxes cmdargs ]; description = "Plaintext prose redundancy linter"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "wordlint"; + broken = true; }) {}; "Workflow" = callPackage @@ -20921,6 +22338,8 @@ self: { ]; description = "Workflow patterns over a monad for thread state logging & recovery"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "WxGeneric" = callPackage @@ -20935,6 +22354,7 @@ self: { ]; description = "Generic (SYB3) construction of wxHaskell widgets"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "X" = callPackage @@ -20950,6 +22370,8 @@ self: { ]; description = "A light-weight XML library"; license = "BSD-3-Clause AND GPL-3.0-or-later"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "X11" = callPackage @@ -20982,6 +22404,8 @@ self: { librarySystemDepends = [ libX11 ]; description = "Missing bindings to the X11 graphics library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs.xorg) libX11;}; "X11-rm" = callPackage @@ -20993,6 +22417,8 @@ self: { libraryHaskellDepends = [ base X11 ]; description = "A binding to the resource management functions missing from X11"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "X11-xdamage" = callPackage @@ -21005,6 +22431,8 @@ self: { librarySystemDepends = [ Xdamage ]; description = "A binding to the Xdamage X11 extension library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {Xdamage = null;}; "X11-xfixes" = callPackage @@ -21017,6 +22445,8 @@ self: { librarySystemDepends = [ Xfixes ]; description = "A binding to the Xfixes X11 extension library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {Xfixes = null;}; "X11-xft" = callPackage @@ -21083,6 +22513,7 @@ self: { testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; description = "Extensible Markup Language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "XMLParser" = callPackage @@ -21107,6 +22538,8 @@ self: { librarySystemDepends = [ xmmsclient xmmsclient-glib ]; description = "XMMS2 client library"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {xmmsclient = null; xmmsclient-glib = null;}; "XMPP" = callPackage @@ -21123,6 +22556,7 @@ self: { ]; description = "XMPP library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "XSaiga" = callPackage @@ -21149,6 +22583,7 @@ self: { ]; description = "An implementation of a polynomial-time top-down parser suitable for NLP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "solarman.cgi"; }) {}; @@ -21180,7 +22615,9 @@ self: { ]; description = "Gtk command launcher with identicon"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Xec"; + broken = true; }) {}; "XmlHtmlWriter" = callPackage @@ -21192,6 +22629,8 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "A library for writing XML and HTML"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Xorshift128Plus" = callPackage @@ -21203,6 +22642,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Pure haskell implementation of xorshift128plus random number generator"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "YACPong" = callPackage @@ -21223,7 +22664,9 @@ self: { ]; description = "Yet Another Pong Clone using SDL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "YACPong"; + broken = true; }) {}; "YFrob" = callPackage @@ -21235,6 +22678,8 @@ self: { libraryHaskellDepends = [ array base HGL Yampa ]; description = "Yampa-based library for programming robots"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Yablog" = callPackage @@ -21269,6 +22714,7 @@ self: { ]; description = "A simple blog engine powered by Yesod"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Yablog"; }) {}; @@ -21297,7 +22743,9 @@ self: { ]; description = "YAML reference implementation"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "yaml2yeast"; + broken = true; }) {}; "Yampa" = callPackage @@ -21347,7 +22795,9 @@ self: { ]; description = "Software synthesizer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "yampasynth-wav"; + broken = true; }) {}; "Yocto" = callPackage @@ -21375,6 +22825,8 @@ self: { ]; description = "A MUD client library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Yogurt-Standalone" = callPackage @@ -21394,6 +22846,7 @@ self: { executableSystemDepends = [ readline ]; description = "A functional MUD client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "yogurt"; }) {inherit (pkgs) readline;}; @@ -21417,6 +22870,7 @@ self: { ]; description = "Crypto for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Z-Data" = callPackage @@ -21443,6 +22897,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Array, vector and text"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "Z-IO" = callPackage @@ -21469,6 +22925,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Simple and high performance IO toolkit for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Z-MessagePack" = callPackage @@ -21493,6 +22950,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "MessagePack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "Z-YAML" = callPackage @@ -21510,6 +22968,7 @@ self: { testHaskellDepends = [ base hspec Z-Data ]; description = "YAML tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ZEBEDDE" = callPackage @@ -21523,6 +22982,8 @@ self: { libraryHaskellDepends = [ base vect ]; description = "Polymer growth simulation method"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ZFS" = callPackage @@ -21538,6 +22999,8 @@ self: { ]; description = "Oleg's Zipper FS"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ZMachine" = callPackage @@ -21552,7 +23015,9 @@ self: { executableHaskellDepends = [ array base gtk mtl random ]; description = "A Z-machine interpreter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "zmachine"; + broken = true; }) {}; "ZipFold" = callPackage @@ -21564,6 +23029,7 @@ self: { libraryHaskellDepends = [ base TypeCompose ]; description = "Zipping folds"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ZipperAG" = callPackage @@ -21603,6 +23069,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Combinators for bidirectional URL routing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "a50" = callPackage @@ -21621,6 +23089,7 @@ self: { ]; description = "Compare genome assemblies"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "a50"; }) {}; @@ -21638,6 +23107,8 @@ self: { ]; description = "Convert distfix precedence grammars to unambiguous context-free grammars"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "abacate" = callPackage @@ -21650,6 +23121,8 @@ self: { testHaskellDepends = [ base HUnit text ]; description = "Parser for a language similar to Cucumber's Gherkin"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "abc-puzzle" = callPackage @@ -21691,6 +23164,7 @@ self: { ]; description = "Bindings for ABC, A System for Sequential Synthesis and Verification"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {abc = null;}; "abcnotation" = callPackage @@ -21704,6 +23178,8 @@ self: { ]; description = "Haskell representation and parser for ABC notation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "abeson" = callPackage @@ -21723,6 +23199,8 @@ self: { ]; description = "interconversion between aeson and bson"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "abides" = callPackage @@ -21735,6 +23213,8 @@ self: { testHaskellDepends = [ base comonad tasty tasty-quickcheck ]; description = "Simple boolean tests to see if a value abides by certain properties"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "abnf" = callPackage @@ -21754,6 +23234,8 @@ self: { ]; description = "Parse ABNF and generate parsers for the specified document"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "abstract-deque" = callPackage @@ -21809,6 +23291,7 @@ self: { ]; description = "Provides the class ParAccelerate, nothing more"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "abt" = callPackage @@ -21824,6 +23307,8 @@ self: { ]; description = "Abstract binding trees for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ac-machine" = callPackage @@ -21837,6 +23322,8 @@ self: { ]; description = "Aho-Corasick string matching algorithm in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ac-machine-conduit" = callPackage @@ -21848,6 +23335,7 @@ self: { libraryHaskellDepends = [ ac-machine base conduit text ]; description = "Drive Aho-Corasick machines in Conduit pipelines"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "acc" = callPackage @@ -21892,6 +23380,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "An embedded language for accelerated array processing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "accelerate-arithmetic" = callPackage @@ -21910,6 +23400,7 @@ self: { ]; description = "Linear algebra and interpolation using the Accelerate framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -22123,6 +23614,7 @@ self: { ]; description = "Accelerate frontend to the FFTW library (Fourier transform)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -22149,6 +23641,7 @@ self: { ]; description = "Fast Fourier transform and convolution using the Accelerate framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -22181,6 +23674,7 @@ self: { libraryHaskellDepends = [ accelerate base ]; description = "Convert between Accelerate arrays and raw pointers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "accelerate-io-JuicyPixels" = callPackage @@ -22282,6 +23776,7 @@ self: { ]; description = "Binary serialisation of Accelerate arrays using serialise"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "accelerate-io-vector" = callPackage @@ -22346,6 +23841,7 @@ self: { ]; description = "Accelerate backend component generating LLVM IR"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "accelerate-llvm-native" = callPackage @@ -22370,6 +23866,7 @@ self: { testHaskellDepends = [ accelerate base ]; description = "Accelerate backend for multicore CPUs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "accelerate-llvm-ptx" = callPackage @@ -22403,6 +23900,7 @@ self: { libraryHaskellDepends = [ accelerate base mwc-random ]; description = "Generate Accelerate arrays filled with high quality pseudorandom numbers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "accelerate-typelits" = callPackage @@ -22425,6 +23923,7 @@ self: { ]; description = "a typesafe way encode accelerate matrices and vectors"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; }) {}; "accelerate-utility" = callPackage @@ -22436,6 +23935,7 @@ self: { libraryHaskellDepends = [ accelerate base utility-ht ]; description = "Utility functions for the Accelerate framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -22448,6 +23948,8 @@ self: { libraryHaskellDepends = [ base bytestring HTTP json network text ]; description = "A Haskell implementation of the Accentuate.us API."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "access-time" = callPackage @@ -22459,6 +23961,8 @@ self: { libraryHaskellDepends = [ base filepath old-time time unix ]; description = "Cross-platform support for retrieving file access times"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "access-token-provider" = callPackage @@ -22485,6 +23989,7 @@ self: { ]; description = "Provides Access Token for Services"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "accuerr" = callPackage @@ -22496,6 +24001,8 @@ self: { libraryHaskellDepends = [ base bifunctors lens semigroups ]; description = "Data type like Either but with accumulating error type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ace" = callPackage @@ -22514,6 +24021,8 @@ self: { ]; description = "Attempto Controlled English parser and printer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "achille" = callPackage @@ -22537,6 +24046,8 @@ self: { ]; description = "A library for building static site generators"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acid-state" = callPackage @@ -22594,6 +24105,8 @@ self: { ]; description = "A replication backend for acid-state"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acid-state-tls" = callPackage @@ -22609,6 +24122,8 @@ self: { ]; description = "Add TLS support for Data.Acid.Remote"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acl2" = callPackage @@ -22631,6 +24146,8 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "A monad which is powerful enough to interpret any action"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-box" = callPackage @@ -22709,6 +24226,8 @@ self: { libraryHaskellDepends = [ base comonad ]; description = "A more efficient dualization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-cuteboy" = callPackage @@ -22762,6 +24281,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "A \"don't\" construct"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-flipping-tables" = callPackage @@ -22773,6 +24294,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Stop execution with rage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-functors" = callPackage @@ -22806,6 +24329,8 @@ self: { libraryHaskellDepends = [ base ]; description = "An embedded DSL for the HQ9+ programming language"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-http" = callPackage @@ -22823,6 +24348,8 @@ self: { ]; description = "fastest Haskell PONG server in the world"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-inator" = callPackage @@ -22837,7 +24364,9 @@ self: { executableHaskellDepends = [ base ]; description = "Evil inventions in the Tri-State area"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "evilplan"; + broken = true; }) {}; "acme-io" = callPackage @@ -22849,6 +24378,8 @@ self: { libraryHaskellDepends = [ base ]; description = "The only true way to do IO in Haskell!"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-iot" = callPackage @@ -22871,6 +24402,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A place for dumping that does-not-feel-right code while you improve it"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-left-pad" = callPackage @@ -22882,6 +24415,8 @@ self: { libraryHaskellDepends = [ base text ]; description = "free your haskell from the tyranny of npm!"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-lolcat" = callPackage @@ -22915,6 +24450,8 @@ self: { libraryHaskellDepends = [ base MemoTrie random ]; description = "Memoized random number generation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-microwave" = callPackage @@ -22937,6 +24474,8 @@ self: { libraryHaskellDepends = [ base random ]; description = "Miscellaneous newtypes for orderings of discutable use"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-missiles" = callPackage @@ -22962,6 +24501,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A mutable package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-now" = callPackage @@ -22973,6 +24514,8 @@ self: { libraryHaskellDepends = [ base time ]; description = "An interface to the philosophical and metaphysical \"now\""; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-numbersystem" = callPackage @@ -22984,6 +24527,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Define the less than and add and subtract for nats"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-omitted" = callPackage @@ -23018,6 +24563,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Operators of base, all in one place!"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-php" = callPackage @@ -23029,6 +24576,7 @@ self: { libraryHaskellDepends = [ acme-left-pad base ]; description = "The flexibility of Haskell and the safety of PHP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "acme-pointful-numbers" = callPackage @@ -23062,6 +24610,7 @@ self: { libraryHaskellDepends = [ acme-dont base ]; description = "Safe versions of some infamous haskell functions such as fromJust"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "acme-schoenfinkel" = callPackage @@ -23079,6 +24628,8 @@ self: { ]; description = "Proper names for curry and uncurry"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-smuggler" = callPackage @@ -23102,6 +24653,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "A binding to the glibc strfry function"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-stringly-typed" = callPackage @@ -23115,6 +24668,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Stringly Typed Programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-strtok" = callPackage @@ -23139,6 +24694,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "import This"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-timemachine" = callPackage @@ -23176,6 +24733,8 @@ self: { libraryHaskellDepends = [ array base random ]; description = "A somewhat flexible Zalgo̐ te̳͜x̥̖̉̓͞t̍̌̔ ̀̃t̴̢̞̜͓̝r̶̬̆̂̒͟á̧̡͎͔̯̰̕n̹̾̓ͬͦ̍͘ṡ̢͓͉ͮ͆l̠̖̹̗̳̖̽̌ͤ͞a͚̭͙̹̲ͭͩt͈͐o̢̭͇͍̟͐ͬ̾ͪ͜r͇.̸̅ͭ̐̀̊ͨ͛"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acme-zero" = callPackage @@ -23187,6 +24746,8 @@ self: { doHaddock = false; description = "The absorbing element of package dependencies"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acousticbrainz-client" = callPackage @@ -23210,6 +24771,8 @@ self: { ]; description = "AcousticBrainz API client"; license = lib.licenses.cc0; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "acquire" = callPackage @@ -23276,6 +24839,7 @@ self: { ]; description = "Haskell code presentation tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "activehs"; }) {}; @@ -23290,6 +24854,8 @@ self: { libraryHaskellDepends = [ base QuickCheck ]; description = "Basic definitions for activehs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "activitypub" = callPackage @@ -23301,6 +24867,8 @@ self: { libraryHaskellDepends = [ aeson base network-uri text time ]; description = "ActivityPub Haskell Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "activitystreams-aeson" = callPackage @@ -23314,6 +24882,8 @@ self: { ]; description = "An interface to the ActivityStreams specification"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "actor" = callPackage @@ -23326,6 +24896,7 @@ self: { libraryHaskellDepends = [ base haskell98 stm time ]; description = "Actors with multi-headed receive clauses"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "acts" = callPackage @@ -23341,6 +24912,7 @@ self: { doHaddock = false; description = "Semigroup actions and torsors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ad" = callPackage @@ -23395,6 +24967,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Self optimizing container types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "adaptive-tuple" = callPackage @@ -23406,6 +24980,8 @@ self: { libraryHaskellDepends = [ base template-haskell type-level ]; description = "Self-optimizing tuple types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "adb" = callPackage @@ -23420,6 +24996,8 @@ self: { ]; description = "Android Debug Bridge (ADB) protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "adblock2privoxy" = callPackage @@ -23477,6 +25055,8 @@ self: { ]; description = "A full-featured library for parsing, validating, and rendering email addresses"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "adhoc-fixtures" = callPackage @@ -23529,6 +25109,7 @@ self: { ]; description = "Ad-hoc P2P network protocol"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "adict" = callPackage @@ -23550,6 +25131,7 @@ self: { ]; description = "Approximate dictionary searching"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "adjunction" = callPackage @@ -23565,6 +25147,8 @@ self: { benchmarkHaskellDepends = [ base gauge hs-functors ]; description = "See README for more info"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "adjunctions" = callPackage @@ -23621,6 +25205,8 @@ self: { ]; description = "parse Adobe Swatch Exchange files and (optionally) output .css files with the colors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "adp-multi" = callPackage @@ -23641,6 +25227,8 @@ self: { ]; description = "ADP for multiple context-free languages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "adp-multi-monadiccp" = callPackage @@ -23660,6 +25248,7 @@ self: { ]; description = "Subword construction in adp-multi using monadiccp"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "adtrees" = callPackage @@ -23671,6 +25260,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Modelling, rendering and quantitative analysis on attack defense trees"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "advent-of-code-api" = callPackage @@ -23927,6 +25518,8 @@ self: { libraryHaskellDepends = [ aeson base text unordered-containers ]; description = "make To/From JSOn instances from an applicative description"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-attoparsec" = callPackage @@ -23974,6 +25567,8 @@ self: { ]; description = "Mapping between Aeson's JSON and Bson objects"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-casing" = callPackage @@ -24037,6 +25632,8 @@ self: { testHaskellDepends = [ aeson aeson-qq base hspec text ]; description = "Parse Aeson data with commitment"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-compat" = callPackage @@ -24065,6 +25662,8 @@ self: { ]; description = "Compatibility layer for aeson"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-decode" = callPackage @@ -24086,6 +25685,8 @@ self: { ]; description = "Easy functions for converting from Aeson.Value"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-default" = callPackage @@ -24098,6 +25699,8 @@ self: { testHaskellDepends = [ aeson base containers ]; description = "Apply default value to FromJSON instacnes' Maybe fields"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-dependent-sum" = callPackage @@ -24119,6 +25722,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "JSON encoding/decoding for dependent-sum"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-deriving" = callPackage @@ -24137,6 +25742,8 @@ self: { ]; description = "data types for compositional, type-directed serialization"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-diff" = callPackage @@ -24184,6 +25791,8 @@ self: { ]; description = "Apply a json-patch to any haskell datatype"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-extra" = callPackage @@ -24251,6 +25860,8 @@ self: { ]; description = "Several newtypes and combinators for dealing with less-than-cleanly JSON input"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-flat" = callPackage @@ -24265,6 +25876,8 @@ self: { testHaskellDepends = [ base ]; description = "Tools for creating flat JSON serializations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-flatten" = callPackage @@ -24279,6 +25892,8 @@ self: { testHaskellDepends = [ aeson base bytestring hspec ]; description = "JSON flatten for Aeson"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-flowtyped" = callPackage @@ -24302,6 +25917,8 @@ self: { ]; description = "Create Flow or TypeScript type definitions from Haskell data types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-gadt-th" = callPackage @@ -24327,7 +25944,9 @@ self: { ]; description = "Derivation of Aeson instances for GADTs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "readme"; + broken = true; }) {}; "aeson-generic-compat" = callPackage @@ -24372,6 +25991,8 @@ self: { ]; description = "Injecting fields into aeson values"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-iproute" = callPackage @@ -24395,6 +26016,8 @@ self: { libraryHaskellDepends = [ aeson base json-ast ]; description = "Integration layer for \"json-ast\" and \"aeson\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-lens" = callPackage @@ -24411,6 +26034,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "Lens of Aeson"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-match-qq" = callPackage @@ -24445,6 +26070,8 @@ self: { testHaskellDepends = [ aeson base inspection-testing ]; description = "Provide a handy way for derving ToJSON proprely"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-native" = callPackage @@ -24465,6 +26092,7 @@ self: { ]; description = "Fast JSON parsing and encoding (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "aeson-optics" = callPackage @@ -24494,6 +26122,8 @@ self: { libraryHaskellDepends = [ aeson base ]; description = "Options to derive FromJSON/ToJSON instances"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-parsec-picky" = callPackage @@ -24509,6 +26139,8 @@ self: { ]; description = "Alternative JSON parser based on Parsec and Aeson"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-picker" = callPackage @@ -24537,6 +26169,8 @@ self: { testHaskellDepends = [ aeson base bytestring hspec mtl text ]; description = "Hiearchical prefixing for aeson"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-pretty" = callPackage @@ -24674,6 +26308,8 @@ self: { ]; description = "Haskell JSON schema validator and parser generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-schemas" = callPackage @@ -24727,6 +26363,8 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Conveniently wrap a single value in a record when encoding to and from JSON"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-smart" = callPackage @@ -24743,6 +26381,8 @@ self: { ]; description = "Smart derivation of Aeson instances"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-streams" = callPackage @@ -24758,6 +26398,8 @@ self: { ]; description = "An HTTP client library for JSON-based APIs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-t" = callPackage @@ -24777,6 +26419,8 @@ self: { ]; description = "Transform JSON"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-tiled" = callPackage @@ -24803,6 +26447,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "A generalization of Aeson over Failure"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-typescript" = callPackage @@ -24843,6 +26489,8 @@ self: { ]; description = "Utilities for working with Aeson"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-value-parser" = callPackage @@ -24912,6 +26560,8 @@ self: { ]; description = "withXField combinators for aeson"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aeson-yak" = callPackage @@ -24967,6 +26617,8 @@ self: { ]; description = "A simple Game Engine using SDL"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "affine" = callPackage @@ -24980,6 +26632,7 @@ self: { libraryHaskellDepends = [ alg base ]; description = "Affine spaces (generalized)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "affine-invariant-ensemble-mcmc" = callPackage @@ -24995,6 +26648,8 @@ self: { ]; description = "General-purpose sampling"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "affinely-extended" = callPackage @@ -25044,6 +26699,7 @@ self: { ]; description = "Infinite state model checking of iterative C programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "afv"; }) {}; @@ -25058,7 +26714,9 @@ self: { executableHaskellDepends = [ base containers uuagc uulib ]; description = "Attribute Grammar picture generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ag-pictgen"; + broken = true; }) {}; "agda-language-server" = callPackage @@ -25087,7 +26745,9 @@ self: { ]; description = "An implementation of language server protocal (LSP) for Agda 2"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "als"; + broken = true; }) {}; "agda-server" = callPackage @@ -25108,6 +26768,7 @@ self: { ]; description = "Http server for Agda (prototype)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "agda-server"; }) {}; @@ -25129,7 +26790,9 @@ self: { executableHaskellDepends = [ Agda base network-uri transformers ]; description = "Render just the Agda snippets of a literate Agda file to HTML"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "agda-snippets"; + broken = true; }) {}; "agda-snippets-hakyll" = callPackage @@ -25146,6 +26809,7 @@ self: { ]; description = "Literate Agda support using agda-snippets, for Hakyll pages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "agda-unused" = callPackage @@ -25168,7 +26832,9 @@ self: { testHaskellDepends = [ base containers filepath hspec text ]; description = "Check for unused code in an Agda project"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "agda-unused"; + broken = true; }) {}; "agda2hs" = callPackage @@ -25229,6 +26895,7 @@ self: { ]; description = "AgentX protocol for write SNMP subagents"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "agreeing" = callPackage @@ -25274,6 +26941,8 @@ self: { ]; description = "And-inverter graphs in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aip" = callPackage @@ -25302,6 +26971,7 @@ self: { ]; description = "Aeronautical Information Package (AIP)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "aip"; }) {}; @@ -25334,6 +27004,8 @@ self: { ]; description = "air-extra"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "air-spec" = callPackage @@ -25357,6 +27029,8 @@ self: { libraryHaskellDepends = [ air base template-haskell ]; description = "air"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "airbrake" = callPackage @@ -25376,6 +27050,8 @@ self: { ]; description = "An Airbrake notifier for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "airship" = callPackage @@ -25405,6 +27081,8 @@ self: { ]; description = "A Webmachine-inspired HTTP library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "airtable-api" = callPackage @@ -25422,6 +27100,8 @@ self: { testHaskellDepends = [ base ]; description = "Requesting and introspecting Tables within an Airtable project"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aivika" = callPackage @@ -25470,6 +27150,7 @@ self: { ]; description = "Parallel distributed discrete event simulation module for the Aivika library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "aivika-experiment" = callPackage @@ -25551,6 +27232,8 @@ self: { ]; description = "GPSS-like DSL for Aivika"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aivika-lattice" = callPackage @@ -25626,6 +27309,8 @@ self: { ]; description = "Haskell compiler that produce binary through C language"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "al" = callPackage @@ -25692,6 +27377,8 @@ self: { ]; description = "Bindings to the alerta REST API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "alerts" = callPackage @@ -25703,6 +27390,8 @@ self: { libraryHaskellDepends = [ base blaze-html text ]; description = "Alert messages for web applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "alex" = callPackage @@ -25769,6 +27458,8 @@ self: { libraryHaskellDepends = [ base time ]; description = "Collection of useful functions for writing console applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "alex-tools" = callPackage @@ -25803,6 +27494,8 @@ self: { ]; description = "utility library for Alfred version 2"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "alfred-margaret" = callPackage @@ -25828,7 +27521,9 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq text vector ]; description = "Fast Aho-Corasick string searching"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dump-automaton"; + broken = true; }) {}; "alg" = callPackage @@ -25842,6 +27537,7 @@ self: { libraryHaskellDepends = [ base dual util ]; description = "Algebraic structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "alga" = callPackage @@ -25874,7 +27570,9 @@ self: { ]; description = "Algorithmic automation for various DAWs"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "alga"; + broken = true; }) {}; "algebra" = callPackage @@ -25910,6 +27608,7 @@ self: { ]; description = "Model and test API surfaces algebraically"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "algebra-dag" = callPackage @@ -25925,6 +27624,8 @@ self: { ]; description = "Infrastructure for DAG-shaped relational algebra plans"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "algebra-driven-design" = callPackage @@ -25943,6 +27644,7 @@ self: { ]; description = "Companion library for the book Algebra-Driven Design by Sandy Maguire"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "algebra-sql" = callPackage @@ -25969,6 +27671,7 @@ self: { ]; description = "Relational Algebra and SQL Code Generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "algebraic" = callPackage @@ -25980,6 +27683,7 @@ self: { libraryHaskellDepends = [ accelerate base ]; description = "General linear algebra structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "algebraic-classes" = callPackage @@ -25993,6 +27697,8 @@ self: { libraryHaskellDepends = [ base syb template-haskell ]; description = "Conversions between algebraic classes and F-algebras"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "algebraic-graphs_0_6_1" = callPackage @@ -26075,6 +27781,8 @@ self: { ]; description = "Algebraically structured Prelude"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "algo-s" = callPackage @@ -26100,7 +27808,9 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "An implementation of Knuth's algorithm S"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "sample"; + broken = true; }) {}; "algolia" = callPackage @@ -26126,6 +27836,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "A client implementing the Algolia search API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "algorithmic-composition-additional" = callPackage @@ -26154,6 +27865,7 @@ self: { ]; description = "Helps to create experimental music from a file (or its part) and a Ukrainian text"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "acb"; }) {}; @@ -26173,6 +27885,7 @@ self: { ]; description = "Helps to create experimental music from a file (or its part) and a Ukrainian text"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "algorithmic-composition-complex" = callPackage @@ -26193,6 +27906,7 @@ self: { ]; description = "Helps to create more complex experimental music from a file (especially timbre)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "algorithmic-composition-frequency-shift" = callPackage @@ -26209,6 +27923,7 @@ self: { ]; description = "Helps to create experimental music. Uses SoX inside."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "algorithmic-composition-overtones" = callPackage @@ -26220,6 +27935,7 @@ self: { libraryHaskellDepends = [ algorithmic-composition-basic base ]; description = "Some variants of the overtones functions to generate a timbre"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "align" = callPackage @@ -26242,6 +27958,8 @@ self: { libraryHaskellDepends = [ base containers transformers vector ]; description = "Sequence alignment with an affine gap penalty model"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "align-audio" = callPackage @@ -26277,7 +27995,9 @@ self: { executableHaskellDepends = [ base optparse-applicative text ]; description = "A simple unix filter to align text on specified substrings"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "align"; + broken = true; }) {}; "aligned-foreignptr" = callPackage @@ -26366,6 +28086,8 @@ self: { ]; description = "Ally Invest integration library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "almost-fix" = callPackage @@ -26399,6 +28121,7 @@ self: { ]; description = "a practical affine language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "alms"; }) {}; @@ -26417,6 +28140,8 @@ self: { testHaskellDepends = [ base containers random tasty tasty-hunit ]; description = "Rollback/replay NetCode for realtime, deterministic, multiplayer games"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "alpha" = callPackage @@ -26437,6 +28162,7 @@ self: { ]; description = "A compiler for the Alpha language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "alpha"; }) {}; @@ -26478,6 +28204,8 @@ self: { ]; description = "Alpino data manipulation tools"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "alsa" = callPackage @@ -26494,6 +28222,8 @@ self: { librarySystemDepends = [ alsa-lib ]; description = "Binding to the ALSA Library API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) alsa-lib;}; "alsa-core" = callPackage @@ -26525,6 +28255,7 @@ self: { ]; description = "Some simple interactive programs for sending MIDI control messages via ALSA"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "alsa-midi" = callPackage @@ -26545,6 +28276,8 @@ self: { executableSystemDepends = [ alsa-lib ]; description = "Bindings for the ALSA sequencer API (MIDI stuff)"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) alsa-lib;}; "alsa-mixer" = callPackage @@ -26595,6 +28328,7 @@ self: { executableHaskellDepends = [ alsa base ]; description = "Tests for the ALSA audio signal library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "alsa-seq" = callPackage @@ -26632,6 +28366,7 @@ self: { executableHaskellDepends = [ alsa base ]; description = "Tests for the ALSA sequencer library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "altcomposition" = callPackage @@ -26643,6 +28378,8 @@ self: { libraryHaskellDepends = [ base composition ]; description = "Alternative combinators for unorthodox function composition"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "alternative-extra" = callPackage @@ -26654,6 +28391,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Extra utilities for alternatives"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "alternative-io" = callPackage @@ -26671,6 +28410,8 @@ self: { ]; description = "IO as Alternative instance (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "alternative-vector" = callPackage @@ -26708,6 +28449,8 @@ self: { libraryHaskellDepends = [ base ghc-prim integer-gmp ]; description = "Alternative floating point support for GHC"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "alto" = callPackage @@ -26732,6 +28475,7 @@ self: { executableHaskellDepends = [ base warp ]; description = "Implement a menu experience fit for web users"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "alto"; }) {}; @@ -26761,6 +28505,8 @@ self: { librarySystemDepends = [ alure ]; description = "A Haskell binding for ALURE"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) alure;}; "always" = callPackage @@ -26790,6 +28536,8 @@ self: { ]; description = "A queue daemon for Amazon's SES with a PostgreSQL table as a queue"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "amazon-emailer-client-snap" = callPackage @@ -26804,6 +28552,7 @@ self: { ]; description = "Client library for amazon-emailer daemon"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "amazon-products" = callPackage @@ -26829,7 +28578,9 @@ self: { ]; description = "Connector for Amazon Products API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "repl"; + broken = true; }) {}; "amazonka" = callPackage @@ -26850,6 +28601,8 @@ self: { ]; description = "Comprehensive Amazon Web Services SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "amazonka-accessanalyzer" = callPackage @@ -28238,6 +29991,7 @@ self: { ]; description = "A Haskell equivalent of \"aws rds generate-db-auth-token\""; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "generate-db-auth-token"; }) {}; @@ -29429,6 +31183,8 @@ self: { ]; description = "Amazon IAM Policy Document DSL and Combinators"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "amazonka-identitystore" = callPackage @@ -31812,6 +33568,7 @@ self: { ]; description = "Amazon Simple Storage Service SDK - Client-Side Encryption"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-s3-streaming" = callPackage @@ -31831,6 +33588,7 @@ self: { ]; description = "Provides conduits to upload data to S3 using the Multipart API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "amazonka-s3outposts" = callPackage @@ -33011,6 +34769,7 @@ self: { benchmarkHaskellDepends = [ base statistics ]; description = "Statistical data visualization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ampersand" = callPackage @@ -33041,6 +34800,7 @@ self: { ]; description = "Toolsuite for automated design of business processes"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "ampersand"; }) {}; @@ -33119,6 +34879,8 @@ self: { ]; description = "Conduit bindings for AMQP (see amqp package)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "amqp-streamly" = callPackage @@ -33135,6 +34897,7 @@ self: { ]; description = "A simple streamly wrapper for amqp"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "amqp-utils" = callPackage @@ -33267,6 +35030,8 @@ self: { ]; description = "making data science easy and safe with data frames"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "analyze-client" = callPackage @@ -33283,6 +35048,7 @@ self: { ]; description = "Client for analyze service"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "anansi" = callPackage @@ -33336,6 +35102,8 @@ self: { ]; description = "Looms which use Pandoc to parse and produce a variety of formats"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "anatomy" = callPackage @@ -33362,6 +35130,7 @@ self: { ]; description = "Anatomy: Atomo documentation system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "anatomy"; }) {}; @@ -33374,6 +35143,8 @@ self: { libraryHaskellDepends = [ base process ]; description = "Android methods exposed to Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "android-activity" = callPackage @@ -33385,6 +35156,8 @@ self: { libraryHaskellDepends = [ base data-default ]; description = "Turn regular Haskell programs into Android Activities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "android-lint-summary" = callPackage @@ -33411,7 +35184,9 @@ self: { ]; description = "A pretty printer for Android Lint errors"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "android-lint-summary"; + broken = true; }) {}; "angel" = callPackage @@ -33439,7 +35214,9 @@ self: { ]; description = "Process management and supervision daemon"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "angel"; + broken = true; }) {}; "angle" = callPackage @@ -33468,7 +35245,9 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "A small, general-purpose programming language"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "angle"; + broken = true; }) {}; "animalcase" = callPackage @@ -33480,6 +35259,8 @@ self: { libraryHaskellDepends = [ base bytestring text ]; description = "Convert camelCase to snake_case and vice versa"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "animascii" = callPackage @@ -33501,7 +35282,9 @@ self: { testHaskellDepends = [ ansi-terminal-game base hspec parsec ]; description = "text-file based ASCII animator"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "animascii"; + broken = true; }) {}; "animate" = callPackage @@ -33518,6 +35301,8 @@ self: { testHaskellDepends = [ aeson base containers hspec vector ]; description = "Animation for sprites"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "animate-example" = callPackage @@ -33536,6 +35321,7 @@ self: { ]; description = "Animation for sprites"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "animate-example"; }) {}; @@ -33558,6 +35344,7 @@ self: { testHaskellDepends = [ base tasty tasty-hspec ]; description = "Convert sprite frames to animate files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "animate-frames"; }) {}; @@ -33584,6 +35371,7 @@ self: { executableHaskellDepends = [ base ]; description = "Preview tool for sprite animation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "animate-preview"; }) {}; @@ -33596,6 +35384,7 @@ self: { libraryHaskellDepends = [ aeson animate base sdl2 sdl2-image ]; description = "sdl2 + animate auxiliary library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "anki-tools" = callPackage @@ -33616,7 +35405,9 @@ self: { executableHaskellDepends = [ base data-default ]; description = "Tools for interacting with Anki database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "anki-tools-test"; + broken = true; }) {}; "ann" = callPackage @@ -33653,6 +35444,7 @@ self: { ]; description = "Medium-level language that desugars to Morte"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "annah"; maintainers = [ lib.maintainers.Gabriella439 ]; }) {}; @@ -33696,6 +35488,8 @@ self: { libraryHaskellDepends = [ base recursion-schemes ]; description = "A fixpoint of a functor that can be annotated"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "annotated-wl-pprint" = callPackage @@ -33720,6 +35514,8 @@ self: { libraryHaskellDepends = [ base lens template-haskell ]; description = "Anonymous sum types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "anonymous-sums-tests" = callPackage @@ -33731,6 +35527,7 @@ self: { libraryHaskellDepends = [ anonymous-sums base QuickCheck ]; description = "QuickCheck functions to accompany the anonymous-sums package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ansi-escape-codes" = callPackage @@ -33762,6 +35559,8 @@ self: { ]; description = "AnsiPretty for ansi-wl-pprint"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ansi-terminal" = callPackage @@ -33876,6 +35675,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Terminal-based graphing via ANSI and Unicode"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "antagonist" = callPackage @@ -33901,6 +35702,7 @@ self: { ]; description = "A web interface to Antisplice dungeons"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "ironforge-yesod"; }) {}; @@ -33924,7 +35726,9 @@ self: { ]; description = "Referring expressions for definitions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "antfarm"; + broken = true; }) {}; "anticiv" = callPackage @@ -33950,6 +35754,7 @@ self: { ]; description = "This is an IRC bot for Mafia and Resistance"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "anticiv"; }) {}; @@ -33968,6 +35773,8 @@ self: { ]; description = "Interface for antigate.com captcha recognition API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "antimirov" = callPackage @@ -33982,7 +35789,9 @@ self: { executableHaskellDepends = [ base containers QuickCheck ]; description = "Define the language containment (=subtyping) relation on regulare expressions"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "test"; + broken = true; }) {}; "antiope-athena" = callPackage @@ -34004,6 +35813,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "antiope-contract" = callPackage @@ -34017,6 +35827,7 @@ self: { ]; description = "Please see the README on Github at "; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "antiope-core" = callPackage @@ -34043,6 +35854,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "antiope-dynamodb" = callPackage @@ -34065,6 +35877,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "antiope-es" = callPackage @@ -34084,6 +35897,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "antiope-messages" = callPackage @@ -34108,6 +35922,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "antiope-optparse-applicative" = callPackage @@ -34129,6 +35944,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "antiope-s3" = callPackage @@ -34157,6 +35973,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "antiope-shell" = callPackage @@ -34186,6 +36003,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "antiope-sns" = callPackage @@ -34209,6 +36027,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "antiope-sqs" = callPackage @@ -34235,6 +36054,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "antiope-swf" = callPackage @@ -34250,6 +36070,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Please see the README on Github at "; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "antiprimes" = callPackage @@ -34273,6 +36095,8 @@ self: { libraryHaskellDepends = [ base syb template-haskell ]; description = "Combinator library for quasi- and anti-quoting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "antisplice" = callPackage @@ -34289,6 +36113,8 @@ self: { ]; description = "An engine for text-based dungeons"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "antlr-haskell" = callPackage @@ -34313,6 +36139,8 @@ self: { ]; description = "A Haskell implementation of the ANTLR top-down parser generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "antlrc" = callPackage @@ -34333,6 +36161,7 @@ self: { ]; description = "Haskell binding to the ANTLR parser generator C runtime library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "antlrcmkenums"; }) {antlr3c = null;}; @@ -34366,6 +36195,8 @@ self: { libraryHaskellDepends = [ base containers MissingH mtl ]; description = "Interface for DBM-like database systems"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aop-prelude" = callPackage @@ -34418,6 +36249,8 @@ self: { ]; description = "Bindings to libaosd, a library for Cairo-based on-screen displays"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libaosd;}; "ap-normalize" = callPackage @@ -34467,6 +36300,8 @@ self: { benchmarkSystemDepends = [ openssl ]; description = "Apache specific MD5 digest algorighm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) openssl;}; "apart" = callPackage @@ -34490,7 +36325,9 @@ self: { ]; description = "Get all your structure and rip it apart"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "apecs" = callPackage @@ -34536,6 +36373,7 @@ self: { ]; description = "Simple gloss renderer for apecs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "apecs-physics" = callPackage @@ -34554,6 +36392,8 @@ self: { ]; description = "2D physics for apecs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "apecs-physics-gloss" = callPackage @@ -34565,6 +36405,7 @@ self: { libraryHaskellDepends = [ apecs apecs-physics base gloss ]; description = "Gloss rendering for apecs-physics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "apecs-stm" = callPackage @@ -34604,6 +36445,7 @@ self: { ]; description = "Server and community browser for the game Tremulous"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "apelsin"; }) {}; @@ -34626,6 +36468,8 @@ self: { ]; description = "Library for easily building REST API wrappers in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "api-field-json-th" = callPackage @@ -34730,6 +36574,7 @@ self: { testHaskellDepends = [ base bytestring ]; description = "JSON-RPC API client for Accumulate blockchain"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "acme-app"; }) {}; @@ -34756,7 +36601,9 @@ self: { testHaskellDepends = [ base bytestring ]; description = "RPC API client for Factom"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "factom-app"; + broken = true; }) {}; "api-rpc-pegnet" = callPackage @@ -34780,6 +36627,7 @@ self: { ]; description = "simple json-rpc client for PegNet"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "api-tools" = callPackage @@ -34835,6 +36683,7 @@ self: { testHaskellDepends = [ base bytestring text ]; description = "Api bindings for Yoti services"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "apiary" = callPackage @@ -34867,6 +36716,7 @@ self: { ]; description = "Simple and type safe web framework that generate web API documentation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "apiary-authenticate" = callPackage @@ -34886,6 +36736,7 @@ self: { ]; description = "authenticate support for apiary web framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "apiary-clientsession" = callPackage @@ -34903,6 +36754,7 @@ self: { ]; description = "clientsession support for apiary web framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "apiary-cookie" = callPackage @@ -34918,6 +36770,7 @@ self: { ]; description = "Cookie support for apiary web framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "apiary-eventsource" = callPackage @@ -34929,6 +36782,7 @@ self: { libraryHaskellDepends = [ apiary base blaze-builder wai-extra ]; description = "eventsource support for apiary web framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "apiary-helics" = callPackage @@ -34948,6 +36802,7 @@ self: { ]; description = "helics support for apiary web framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "apiary-http-client" = callPackage @@ -34964,6 +36819,7 @@ self: { ]; description = "A http client for Apiary"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "apiary-logger" = callPackage @@ -34981,6 +36837,7 @@ self: { ]; description = "fast-logger support for apiary web framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "apiary-memcached" = callPackage @@ -34999,6 +36856,7 @@ self: { ]; description = "memcached client for apiary web framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "apiary-mongoDB" = callPackage @@ -35016,6 +36874,7 @@ self: { ]; description = "mongoDB support for apiary web framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "apiary-persistent" = callPackage @@ -35033,6 +36892,7 @@ self: { ]; description = "persistent support for apiary web framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "apiary-purescript" = callPackage @@ -35052,6 +36912,7 @@ self: { ]; description = "purescript compiler for apiary web framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "apiary-redis" = callPackage @@ -35063,6 +36924,7 @@ self: { libraryHaskellDepends = [ apiary base hedis transformers ]; description = "redis support for apiary web framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "apiary-session" = callPackage @@ -35074,6 +36936,7 @@ self: { libraryHaskellDepends = [ apiary base wai ]; description = "session support for apiary web framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "apiary-websockets" = callPackage @@ -35085,6 +36948,7 @@ self: { libraryHaskellDepends = [ apiary base wai-websockets websockets ]; description = "websockets support for apiary web framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "apioiaf-client" = callPackage @@ -35117,6 +36981,7 @@ self: { ]; description = "A Template Haskell library for generating type safe API calls"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "apns-http2" = callPackage @@ -35145,7 +37010,9 @@ self: { ]; description = "Apple Push Notification service HTTP/2 integration"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "apns-http2-example"; + broken = true; }) {}; "apotiki" = callPackage @@ -35175,6 +37042,7 @@ self: { ]; description = "a faster debian repository"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "apotiki"; }) {}; @@ -35190,6 +37058,8 @@ self: { ]; description = "applicative (functional) bidirectional programming beyond composition chains"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "app-settings" = callPackage @@ -35244,7 +37114,9 @@ self: { ]; description = "app container types and tools"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "appc"; + broken = true; }) {}; "appendful" = callPackage @@ -35284,6 +37156,8 @@ self: { ]; testToolDepends = [ sydtest-discover ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "appendmap" = callPackage @@ -35336,6 +37210,8 @@ self: { ]; description = "Applicative functor and monad which collects all your fails"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "applicative-numbers" = callPackage @@ -35363,6 +37239,8 @@ self: { ]; description = "An applicative parser combinator library"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "applicative-quoters" = callPackage @@ -35376,6 +37254,8 @@ self: { libraryHaskellDepends = [ base haskell-src-meta template-haskell ]; description = "Quasiquoters for idiom brackets and an applicative do-notation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "applicative-splice" = callPackage @@ -35391,6 +37271,8 @@ self: { ]; description = "Write applicative programs in direct style (generalizes idiom brackets)"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "apply-refact_0_9_3_0" = callPackage @@ -35510,6 +37392,8 @@ self: { ]; description = "Apply a function to an argument specified by a type level Nat"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "apply-unordered-mono" = callPackage @@ -35566,6 +37450,8 @@ self: { ]; description = "ApproveAPI Haskell Client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "approx" = callPackage @@ -35592,7 +37478,9 @@ self: { ]; description = "Easy-to-use emulation of approximate, ranges and tolerances in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "approx-exe"; + broken = true; }) {}; "approx-rand-test" = callPackage @@ -35623,6 +37511,7 @@ self: { ]; description = "Approximate randomization test"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "approximate" = callPackage @@ -35691,7 +37580,9 @@ self: { ]; description = "Pure Haskell arbitrary length FFT library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "profile-256"; + broken = true; }) {}; "arbb-vm" = callPackage @@ -35708,6 +37599,8 @@ self: { librarySystemDepends = [ arbb_dev ]; description = "FFI binding to the Intel Array Building Blocks (ArBB) virtual machine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {arbb_dev = null;}; "arbor-datadog" = callPackage @@ -35749,6 +37642,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "LRU cache based on STM"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "arbor-monad-counter" = callPackage @@ -35770,6 +37665,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Counter library for submitting metrics to a backend such as datadog"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "arbor-monad-logger" = callPackage @@ -35793,7 +37690,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Simple logging library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "arbor-monad-logger-example"; + broken = true; }) {}; "arbor-monad-metric" = callPackage @@ -35817,6 +37716,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Core metric library for publishing metrics"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "arbor-monad-metric-datadog" = callPackage @@ -35842,6 +37743,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Metric library backend for datadog"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "arbor-postgres" = callPackage @@ -35860,6 +37762,8 @@ self: { ]; description = "Convenience types and functions for postgresql-simple"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "arbtt" = callPackage @@ -35956,6 +37860,8 @@ self: { ]; description = "Distribute hackage packages to archlinux"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "arch-web" = callPackage @@ -36066,6 +37972,7 @@ self: { libraryToolDepends = [ cpphs ]; description = "Common interface using the tar-bytestring package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "archiver" = callPackage @@ -36084,7 +37991,9 @@ self: { ]; description = "Archive supplied URLs in WebCite & Internet Archive"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "archiver"; + broken = true; }) {}; "archlinux" = callPackage @@ -36100,6 +38009,8 @@ self: { ]; description = "Support for working with Arch Linux packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "archlinux-web" = callPackage @@ -36125,6 +38036,7 @@ self: { ]; description = "Website maintenance for Arch Linux packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "archnews" = callPackage @@ -36140,7 +38052,9 @@ self: { ]; description = "Convert Arch Linux package updates in RSS to pretty markdown"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "archnews"; + broken = true; }) {}; "arduino-copilot" = callPackage @@ -36159,6 +38073,7 @@ self: { testHaskellDepends = [ base directory process temporary ]; description = "Arduino programming in haskell using the Copilot stream DSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "arena" = callPackage @@ -36184,6 +38099,8 @@ self: { ]; description = "A journaled data store"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "arff" = callPackage @@ -36200,6 +38117,7 @@ self: { ]; description = "Generate Attribute-Relation File Format (ARFF) files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "arghwxhaskell" = callPackage @@ -36213,6 +38131,7 @@ self: { executableHaskellDepends = [ base directory wx ]; description = "An interpreter for the Argh! programming language in wxHaskell"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "argh"; }) {}; @@ -36245,7 +38164,9 @@ self: { ]; description = "Parse and render JSON"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "argo"; + broken = true; }) {}; "argon" = callPackage @@ -36272,6 +38193,7 @@ self: { ]; description = "Measure your code's complexity"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; mainProgram = "argon"; }) {}; @@ -36291,6 +38213,8 @@ self: { ]; description = "Memory-hard password hash and proof-of-work function"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "argparser" = callPackage @@ -36303,6 +38227,8 @@ self: { testHaskellDepends = [ base containers HTF HUnit ]; description = "Command line parsing framework for console applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "arguedit" = callPackage @@ -36320,7 +38246,9 @@ self: { ]; description = "A computer assisted argumentation transcription and editing software"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "ArguEdit.bin"; + broken = true; }) {}; "ariadne" = callPackage @@ -36348,6 +38276,7 @@ self: { ]; description = "Go-to-definition for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "ariadne-server"; }) {}; @@ -36372,7 +38301,9 @@ self: { ]; description = "Watcher and runner for Hspec"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "arion"; + broken = true; }) {}; "arion-compose" = callPackage @@ -36425,6 +38356,7 @@ self: { ]; description = "A practical arithmetic encoding (aka Godel numbering) library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "arithmatic" = callPackage @@ -36500,6 +38432,7 @@ self: { ]; description = "Arithmetic circuits for zkSNARKs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "arithmoi" = callPackage @@ -36608,6 +38541,8 @@ self: { ]; description = "Prevent serialization backwards compatibility problems using golden tests"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "arpa" = callPackage @@ -36622,7 +38557,9 @@ self: { executableHaskellDepends = [ base ]; description = "Library for reading ARPA n-gram models"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "arpa"; + broken = true; }) {}; "arpack" = callPackage @@ -36646,6 +38583,8 @@ self: { ]; description = "Solve large scale eigenvalue problems"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) arpack;}; "array_0_5_6_0" = callPackage @@ -36720,6 +38659,7 @@ self: { ]; description = "A simple interpreter for arrayForth, the language used on GreenArrays chips"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "array-forth"; }) {}; @@ -36735,6 +38675,8 @@ self: { ]; description = "IsList instances of Array for OverloadedLists extension"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "array-memoize" = callPackage @@ -36763,6 +38705,8 @@ self: { benchmarkHaskellDepends = [ base criterion ghc-prim ]; description = "Extra foreign primops for primitive arrays"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "array-utils" = callPackage @@ -36797,6 +38741,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell bindings to the ArrayFire general-purpose GPU library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {af = null;}; "arraylist" = callPackage @@ -36814,6 +38760,7 @@ self: { ]; description = "Memory-efficient ArrayList implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "arrow-extras" = callPackage @@ -36839,6 +38786,8 @@ self: { ]; description = "Improved arrows"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "arrow-list" = callPackage @@ -36850,6 +38799,8 @@ self: { libraryHaskellDepends = [ base containers fail mtl ]; description = "List arrows for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "arrow-utils" = callPackage @@ -36877,6 +38828,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Utilities for working with ArrowApply instances more naturally"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "arrowp" = callPackage @@ -36890,7 +38843,9 @@ self: { executableHaskellDepends = [ array base containers haskell-src ]; description = "preprocessor translating arrow notation into Haskell 98"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "arrowp"; + broken = true; }) {}; "arrowp-qq" = callPackage @@ -36911,7 +38866,9 @@ self: { executableHaskellDepends = [ base haskell-src-exts NoHoed ]; description = "A preprocessor and quasiquoter for translating arrow notation"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "arrowp"; + broken = true; }) {}; "arrows" = callPackage @@ -36936,6 +38893,8 @@ self: { ]; description = "A simple, arrow-based reactive programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "artifact" = callPackage @@ -36949,6 +38908,8 @@ self: { libraryHaskellDepends = [ aeson base bytestring containers text ]; description = "Basic types and instances for Valve's Artifact Card-set API"; license = lib.licenses.agpl3Plus; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "arx" = callPackage @@ -37019,6 +38980,8 @@ self: { testHaskellDepends = [ base hedgehog jwt mtl text time ]; description = "Atlassian Service Authentication Protocol"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ascetic" = callPackage @@ -37116,6 +39079,7 @@ self: { libraryHaskellDepends = [ base random-extras random-fu text ]; description = "A collection of ASCII cows. Moo."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ascii-flatten" = callPackage @@ -37130,7 +39094,9 @@ self: { executableHaskellDepends = [ base text ]; description = "Flattens European non-ASCII characaters into ASCII"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "ascii-flatten"; + broken = true; }) {}; "ascii-group" = callPackage @@ -37232,6 +39198,8 @@ self: { ]; description = "Compact representation of ASCII strings"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ascii-superset" = callPackage @@ -37266,6 +39234,7 @@ self: { ]; description = "ASCII table"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ascii-th" = callPackage @@ -37308,7 +39277,9 @@ self: { ]; description = "Process Ascii Vectors for Advantest 93k"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "SelectSigs"; + broken = true; }) {}; "ascii85-conduit" = callPackage @@ -37321,6 +39292,8 @@ self: { testHaskellDepends = [ base bytestring conduit hspec ]; description = "Conduit for encoding ByteString into Ascii85"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "asciichart" = callPackage @@ -37360,7 +39333,9 @@ self: { ]; description = "Pretty rendering of Ascii diagram into svg or png"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "asciidiagram"; + broken = true; }) {}; "asic" = callPackage @@ -37374,6 +39349,7 @@ self: { executableHaskellDepends = [ asil base bytestring utf8-string ]; description = "Action Script Instrumentation Compiler"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "asic"; }) {}; @@ -37417,7 +39393,9 @@ self: { testToolDepends = [ doctest-discover hspec-discover ]; description = "Library for creating and querying segmented feeds"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "asif"; + broken = true; }) {}; "asil" = callPackage @@ -37436,6 +39414,8 @@ self: { ]; description = "Action Script Instrumentation Library"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "asn" = callPackage @@ -37473,6 +39453,8 @@ self: { ]; description = "ASN.1 BER Encode and Decode"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "asn1-codec" = callPackage @@ -37497,6 +39479,8 @@ self: { ]; description = "Encode and decode ASN.1"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "asn1-data" = callPackage @@ -37513,6 +39497,8 @@ self: { libraryHaskellDepends = [ base bytestring cereal mtl text ]; description = "ASN1 data reader and writer in RAW, BER and DER forms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "asn1-encoding" = callPackage @@ -37617,6 +39603,8 @@ self: { ]; description = "Helpers for Control.Exception.assert"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "assert-failure" = callPackage @@ -37641,6 +39629,7 @@ self: { testHaskellDepends = [ base data-default pretty-diff tasty text ]; description = "A set of assertion for writing more readable tests cases"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "assert4hs-core" = callPackage @@ -37658,6 +39647,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "A set of assertion for writing more readable tests cases"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "assert4hs-hspec" = callPackage @@ -37670,6 +39660,7 @@ self: { testHaskellDepends = [ assert4hs-core base hspec HUnit ]; description = "integration point of assert4hs and hspec"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "assert4hs-tasty" = callPackage @@ -37682,6 +39673,7 @@ self: { testHaskellDepends = [ assert4hs-core base tasty ]; description = "Provider for tasty runner to run assert4hs tests"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "assertions" = callPackage @@ -37697,6 +39689,8 @@ self: { testHaskellDepends = [ base interpolate process ]; description = "A simple testing framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "asset-bundle" = callPackage @@ -37725,6 +39719,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Asset map support for the JavaScript broccoli-asset-rev library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "assimp" = callPackage @@ -37738,6 +39734,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "The Assimp asset import library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) assimp;}; "assoc" = callPackage @@ -37763,6 +39760,8 @@ self: { testHaskellDepends = [ base contravariant hedgehog ]; description = "Association lists (lists of tuples)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "assoc-listlike" = callPackage @@ -37777,6 +39776,8 @@ self: { testHaskellDepends = [ base contravariant hedgehog ListLike ]; description = "Association lists (list-like collections of tuples)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "assumpta" = callPackage @@ -37798,6 +39799,8 @@ self: { ]; description = "An SMTP client library"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "assumpta-core" = callPackage @@ -37830,6 +39833,8 @@ self: { testHaskellDepends = [ base ]; description = "A library for constructing AST by using do-notation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ast-monad-json" = callPackage @@ -37844,6 +39849,7 @@ self: { testHaskellDepends = [ ast-monad base hspec text ]; description = "A library for writing JSON"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ast-path" = callPackage @@ -37899,7 +39905,9 @@ self: { ]; description = "an incomplete 2d space game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "astrds"; + broken = true; }) {}; "astro" = callPackage @@ -37917,6 +39925,8 @@ self: { ]; description = "Amateur astronomical computations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "astview" = callPackage @@ -37937,6 +39947,7 @@ self: { ]; description = "A GTK-based abstract syntax tree viewer for custom languages and parsers"; license = lib.licenses.bsdOriginal; + hydraPlatforms = lib.platforms.none; mainProgram = "astview"; }) {}; @@ -38001,6 +40012,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "Async combinators"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "async-dejafu" = callPackage @@ -38017,6 +40030,8 @@ self: { ]; description = "Run MonadConc operations asynchronously and wait for their results"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "async-extra" = callPackage @@ -38069,7 +40084,9 @@ self: { executableHaskellDepends = [ async base stm unordered-containers ]; description = "A thread manager for async"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "thread-clean-up-test"; + broken = true; }) {}; "async-pool" = callPackage @@ -38152,6 +40169,8 @@ self: { ]; description = "Provides API for timer based execution of IO actions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "asynchronous-exceptions" = callPackage @@ -38163,6 +40182,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Distinguish between synchronous and asynchronous exceptions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aterm" = callPackage @@ -38176,6 +40197,8 @@ self: { libraryHaskellDepends = [ array base containers ghc-prim ]; description = "serialisation for Haskell values with sharing support"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aterm-utils" = callPackage @@ -38190,6 +40213,7 @@ self: { executableHaskellDepends = [ aterm base transformers wl-pprint ]; description = "Utility functions for working with aterms as generated by Minitermite"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ppaterm"; }) {}; @@ -38245,6 +40269,7 @@ self: { ]; description = "Atlassian Connect snaplet for the Snap Framework and helper code"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "atlassian-connect-descriptor" = callPackage @@ -38266,6 +40291,8 @@ self: { ]; description = "Code that helps you create a valid Atlassian Connect Descriptor"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "atmos" = callPackage @@ -38304,6 +40331,7 @@ self: { libraryHaskellDepends = [ atmos base dimensional-tf ]; description = "dimensional-tf wrapper on atmos package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "atndapi" = callPackage @@ -38328,6 +40356,8 @@ self: { ]; description = "An interface of ATND API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "atom" = callPackage @@ -38341,6 +40371,8 @@ self: { libraryHaskellDepends = [ base bimap containers mtl process syb ]; description = "An EDSL for embedded hard realtime applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "atom-basic" = callPackage @@ -38394,6 +40426,7 @@ self: { libraryHaskellDepends = [ atom base mtl ]; description = "Convenience functions for using Atom with the MSP430 microcontroller family"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "atomic-counter" = callPackage @@ -38438,6 +40471,8 @@ self: { libraryHaskellDepends = [ base stm ]; description = "A typeclass for mutable references that have an atomic modify operation"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "atomic-modify-general" = callPackage @@ -38479,6 +40514,7 @@ self: { ]; description = "An atomic counter implemented using the FFI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "atomic-primops-vector" = callPackage @@ -38491,6 +40527,8 @@ self: { testHaskellDepends = [ base vector ]; description = "Atomic operations on Data.Vector types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "atomic-write" = callPackage @@ -38534,7 +40572,9 @@ self: { ]; description = "A highly dynamic, extremely simple, very fun programming language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "atomo"; + broken = true; }) {}; "atp" = callPackage @@ -38553,6 +40593,7 @@ self: { ]; description = "Interface to automated theorem provers"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "atp-haskell" = callPackage @@ -38570,6 +40611,8 @@ self: { testHaskellDepends = [ base containers HUnit time ]; description = "Translation from Ocaml to Haskell of John Harrison's ATP code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "atrans" = callPackage @@ -38622,7 +40665,9 @@ self: { ]; description = "A source-code formatter for ATS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "atsfmt"; + broken = true; }) {}; "ats-pkg" = callPackage @@ -38657,7 +40702,9 @@ self: { doHaddock = false; description = "A build tool for ATS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "atspkg"; + broken = true; }) {}; "ats-setup" = callPackage @@ -38676,6 +40723,8 @@ self: { ]; description = "ATS scripts for Cabal builds"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ats-storable" = callPackage @@ -38693,6 +40742,8 @@ self: { testSystemDepends = [ storable ]; description = "Marshal ATS types into Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {storable = null;}; "attempt" = callPackage @@ -38704,6 +40755,8 @@ self: { libraryHaskellDepends = [ base failure ]; description = "Concrete data type for handling extensible exceptions as failures. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "attenuation" = callPackage @@ -38751,7 +40804,9 @@ self: { testHaskellDepends = [ base doctest ]; description = "A script I use to run \"attic\" for my backups"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "attic-schedule"; + broken = true; }) {}; "atto-lisp" = callPackage @@ -38775,6 +40830,8 @@ self: { ]; description = "Efficient parsing and serialisation of S-Expressions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "attomail" = callPackage @@ -38797,7 +40854,9 @@ self: { testHaskellDepends = [ base doctest Glob QuickCheck ]; description = "Minimal mail delivery agent (MDA) for local mail with maildir support"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "attomail"; + broken = true; }) {}; "attoparsec_0_13_2_5" = callPackage @@ -38945,6 +41004,8 @@ self: { libraryHaskellDepends = [ attoparsec base text ]; description = "A parser for CSV files that uses Attoparsec"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "attoparsec-data" = callPackage @@ -38974,6 +41035,7 @@ self: { ]; description = "Pass input from an enumerator to an Attoparsec parser"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "attoparsec-expr" = callPackage @@ -39060,6 +41122,7 @@ self: { ]; description = "An adapter to convert attoparsec Parsers into blazing-fast Iteratees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "attoparsec-parsec" = callPackage @@ -39118,6 +41181,8 @@ self: { libraryHaskellDepends = [ array attoparsec base containers text ]; description = "(deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "attoparsec-text-enumerator" = callPackage @@ -39129,6 +41194,7 @@ self: { libraryHaskellDepends = [ attoparsec-text base enumerator text ]; description = "(deprecated)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "attoparsec-time" = callPackage @@ -39151,6 +41217,8 @@ self: { libraryHaskellDepends = [ attoparsec base transformers ]; description = "Interleaved effects for attoparsec parsers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "attoparsec-uri" = callPackage @@ -39189,6 +41257,8 @@ self: { ]; description = "Variable-length integer decoding for Attoparsec"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "attosplit" = callPackage @@ -39200,6 +41270,8 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring ]; description = "Split a lazy bytestring at boundaries defined by an attoparsec parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "atuin" = callPackage @@ -39216,6 +41288,7 @@ self: { ]; description = "Embedded Turtle language compiler in Haskell, with Epic output"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "atuin"; }) {}; @@ -39261,6 +41334,7 @@ self: { ]; description = "A battery-included audiovisual framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "augeas" = callPackage @@ -39280,7 +41354,9 @@ self: { executablePkgconfigDepends = [ augeas ]; description = "A Haskell FFI wrapper for the Augeas API"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "test-haskell-augeas"; + broken = true; }) {inherit (pkgs) augeas;}; "augur" = callPackage @@ -39299,7 +41375,9 @@ self: { ]; description = "Renaming media collections in a breeze"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "augur"; + broken = true; }) {}; "aur" = callPackage @@ -39320,6 +41398,8 @@ self: { ]; description = "Access metadata from the Arch Linux User Repository"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aur-api" = callPackage @@ -39336,6 +41416,8 @@ self: { ]; description = "ArchLinux AUR json v5 API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aura" = callPackage @@ -39372,6 +41454,7 @@ self: { ]; description = "A secure package manager for Arch Linux and the AUR"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "aura"; }) {}; @@ -39414,6 +41497,8 @@ self: { libraryHaskellDepends = [ base LDAP text transformers ]; description = "LDAP authentication for Haskell web applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "authenticate-oauth" = callPackage @@ -39445,6 +41530,8 @@ self: { libraryHaskellDepends = [ attoparsec base network text ]; description = "Password querying for .authinfo"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "authoring" = callPackage @@ -39463,6 +41550,7 @@ self: { ]; description = "A library for writing papers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "auto" = callPackage @@ -39480,6 +41568,8 @@ self: { ]; description = "Denotative, locally stateful programming DSL & platform"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "auto-lift-classes" = callPackage @@ -39557,6 +41647,7 @@ self: { ]; description = "Autodocodec interpreters for openapi3"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "autodocodec-schema" = callPackage @@ -39680,6 +41771,7 @@ self: { ]; description = "automata"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "automitive-cse" = callPackage @@ -39738,6 +41830,8 @@ self: { ]; description = "Library for Nix expression dependency generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "autonix-deps-kf5" = callPackage @@ -39761,6 +41855,7 @@ self: { ]; description = "Generate dependencies for KDE 5 Nix expressions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "kf5-deps"; }) {}; @@ -39773,6 +41868,8 @@ self: { libraryHaskellDepends = [ base Cabal dir-traverse filepath ]; description = "Custom Setup to automate package modules discovery"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "autoproc" = callPackage @@ -39816,7 +41913,9 @@ self: { executableHaskellDepends = [ base JuicyPixels random ]; description = "A simple random avatar icon generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "avatar-generator"; + broken = true; }) {}; "average" = callPackage @@ -39863,6 +41962,7 @@ self: { ]; description = "Server-side implementation of the Avers storage model"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "avers-api" = callPackage @@ -39879,6 +41979,7 @@ self: { ]; description = "Types describing the core and extended Avers APIs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "avers-api-docs" = callPackage @@ -39897,6 +41998,7 @@ self: { ]; description = "Swagger documentation for the Avers API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "avers-server" = callPackage @@ -39917,6 +42019,7 @@ self: { ]; description = "Server implementation of the Avers API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "aviation-cessna172-diagrams" = callPackage @@ -39936,6 +42039,7 @@ self: { ]; description = "Diagrams for the Cessna 172 aircraft in aviation"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "aviation-cessna172-weight-balance" = callPackage @@ -39951,6 +42055,7 @@ self: { ]; description = "Weight and Balance for the Cessna 172 aircraft in aviation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "aviation-navigation" = callPackage @@ -39969,6 +42074,7 @@ self: { ]; description = "Aviation Navigation functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "wind-correction"; }) {}; @@ -39981,6 +42087,8 @@ self: { libraryHaskellDepends = [ base lens ]; description = "Units of measurements used in aviation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aviation-weight-balance" = callPackage @@ -39992,6 +42100,7 @@ self: { libraryHaskellDepends = [ aviation-units base lens ]; description = "Weight and Balance structures used in aviation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "avif" = callPackage @@ -40025,6 +42134,8 @@ self: { ]; description = "A compile-time balanced AVL tree"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "avr-shake" = callPackage @@ -40036,6 +42147,8 @@ self: { libraryHaskellDepends = [ base dependent-sum mtl process shake ]; description = "AVR Crosspack actions for shake build systems"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "avro" = callPackage @@ -40108,7 +42221,9 @@ self: { ]; description = "Tool for decoding avro"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "avro-decode"; + broken = true; }) {}; "avwx" = callPackage @@ -40128,7 +42243,9 @@ self: { testHaskellDepends = [ attoparsec base lens pretty-show text ]; description = "Parse aviation weather reports"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "metar"; + broken = true; }) {}; "awesome-prelude" = callPackage @@ -40140,6 +42257,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A prelude which I can be happy with. Based on base-prelude."; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "awesomium" = callPackage @@ -40155,6 +42274,7 @@ self: { ]; description = "High-level Awesomium bindings"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "awesomium-glut" = callPackage @@ -40166,6 +42286,7 @@ self: { libraryHaskellDepends = [ awesomium awesomium-raw base GLUT ]; description = "Utilities for using Awesomium with GLUT"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "awesomium-raw" = callPackage @@ -40179,6 +42300,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "Low-level Awesomium bindings"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {awesomium = null;}; "aws" = callPackage @@ -40277,6 +42400,8 @@ self: { ]; description = "For signing AWS CloudFront HTTP URL requests"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aws-configuration-tools" = callPackage @@ -40296,6 +42421,7 @@ self: { ]; description = "Configuration types, parsers & renderers for AWS services"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "aws-dynamodb-conduit" = callPackage @@ -40313,6 +42439,7 @@ self: { ]; description = "Conduit-based interface for AWS DynamoDB"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "aws-dynamodb-streams" = callPackage @@ -40335,6 +42462,7 @@ self: { ]; description = "Haskell bindings for Amazon DynamoDB Streams"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "aws-easy" = callPackage @@ -40358,6 +42486,7 @@ self: { ]; description = "Helper function and types for working with amazonka"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "aws-easy-demo"; }) {}; @@ -40388,6 +42517,8 @@ self: { ]; description = "AWS EC2/VPC, ELB and CloudWatch client library for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aws-ec2-knownhosts" = callPackage @@ -40410,6 +42541,8 @@ self: { ]; description = "Capture and manage AWS EC2 known_host pubkeys"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aws-elastic-transcoder" = callPackage @@ -40432,6 +42565,7 @@ self: { ]; description = "Haskell suite for the Elastic Transcoder service"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "aws-general" = callPackage @@ -40457,6 +42591,8 @@ self: { ]; description = "Bindings for Amazon Web Services (AWS) General Reference"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aws-kinesis" = callPackage @@ -40482,6 +42618,7 @@ self: { ]; description = "Bindings for Amazon Kinesis"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "aws-kinesis-client" = callPackage @@ -40516,6 +42653,7 @@ self: { ]; description = "A producer & consumer client library for AWS Kinesis"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "kinesis-cli"; }) {}; @@ -40545,6 +42683,7 @@ self: { ]; description = "Reshard AWS Kinesis streams in response to Cloud Watch metrics"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "kinesis-reshard"; }) {}; @@ -40565,6 +42704,7 @@ self: { ]; description = "Haskell bindings for AWS Lambda"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "aws-lambda-haskell-runtime" = callPackage @@ -40632,7 +42772,9 @@ self: { executableHaskellDepends = [ aeson base lens lens-aeson text ]; description = "Haskell on AWS Lambda Runtime API"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "example-lambda"; + broken = true; }) {}; "aws-larpi" = callPackage @@ -40648,6 +42790,8 @@ self: { ]; description = "Package Haskell functions for easy use on AWS Lambda"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aws-mfa-credentials" = callPackage @@ -40669,6 +42813,7 @@ self: { ]; description = "Keep your AWS credentials file up to date with MFA-carrying credentials"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "aws-mfa-credentials"; }) {}; @@ -40695,7 +42840,9 @@ self: { ]; description = "Performance Tests for the Haskell bindings for Amazon Web Services (AWS)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "dynamodb-performance"; + broken = true; }) {}; "aws-route53" = callPackage @@ -40713,6 +42860,8 @@ self: { ]; description = "Amazon Route53 DNS service plugin for the aws package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aws-sdk" = callPackage @@ -40741,6 +42890,7 @@ self: { ]; description = "AWS SDK for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "aws-sdk-text-converter" = callPackage @@ -40762,6 +42912,8 @@ self: { ]; description = "The text converter for aws-sdk"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "aws-sdk-xml-unordered" = callPackage @@ -40782,6 +42934,7 @@ self: { ]; description = "The xml parser for aws-sdk package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "aws-secrets" = callPackage @@ -40823,6 +42976,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Wrapper over Amazonka's SES"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "aws-sign4" = callPackage @@ -40846,6 +43000,7 @@ self: { ]; description = "Amazon Web Services (AWS) Signature v4 HTTP request signer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "aws-simple" = callPackage @@ -40863,6 +43018,7 @@ self: { ]; description = "Dead simple bindings to commonly used AWS Services"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "aws-sns" = callPackage @@ -40886,6 +43042,7 @@ self: { ]; description = "Bindings for AWS SNS Version 2013-03-31"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "aws-sns-verify" = callPackage @@ -41061,6 +43218,7 @@ self: { testToolDepends = [ hpack tasty-discover ]; description = "The Axel programming language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "axel"; }) {}; @@ -41078,6 +43236,7 @@ self: { ]; description = "Web EDSL for running in browsers and server nodes using transient"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "axiomatic-classes" = callPackage @@ -41117,6 +43276,7 @@ self: { testHaskellDepends = [ base hspec shelly text urbit-hob ]; description = "Interact with Azimuth from Haskell"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "azubi" = callPackage @@ -41135,6 +43295,8 @@ self: { ]; description = "A simple DevOps tool which will never \"reach\" enterprice level"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "azure-acs" = callPackage @@ -41152,6 +43314,8 @@ self: { ]; description = "Windows Azure ACS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "azure-email" = callPackage @@ -41170,6 +43334,8 @@ self: { ]; description = "send email with microsoft azure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "azure-functions-worker" = callPackage @@ -41197,6 +43363,7 @@ self: { testHaskellDepends = [ base ]; description = "Azure Functions Worker"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "azure-service-api" = callPackage @@ -41215,6 +43382,7 @@ self: { ]; description = "Haskell bindings for the Microsoft Azure Service Management API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "azure-servicebus" = callPackage @@ -41232,6 +43400,7 @@ self: { ]; description = "Haskell wrapper over Microsoft Azure ServiceBus REST API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "azurify" = callPackage @@ -41261,7 +43430,9 @@ self: { ]; description = "A simple library for accessing Azure blob storage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "azurify"; + broken = true; }) {}; "b-tree" = callPackage @@ -41287,6 +43458,7 @@ self: { benchmarkHaskellDepends = [ base criterion pipes ]; description = "Immutable disk-based B* trees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "b9" = callPackage @@ -41328,6 +43500,7 @@ self: { ]; description = "A tool and library for building virtual machine images"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "b9c"; }) {}; @@ -41342,6 +43515,8 @@ self: { libraryPkgconfigDepends = [ babl ]; description = "Haskell bindings to BABL library"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) babl;}; "babylon" = callPackage @@ -41358,6 +43533,7 @@ self: { ]; description = "An implementation of a simple 2-player board game"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "babylon"; }) {}; @@ -41391,6 +43567,7 @@ self: { ]; description = "A client library to access Backblaze B2 cloud storage in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "backblaze-b2-hs"; }) {}; @@ -41409,6 +43586,7 @@ self: { ]; description = "Rotates backdrops for X11 displays using Imagemagic"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "backdropper_consol"; }) {}; @@ -41454,7 +43632,9 @@ self: { ]; description = "Backstop a target directory by source directories"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "backstop"; + broken = true; }) {}; "backtracking" = callPackage @@ -41486,6 +43666,8 @@ self: { ]; description = "A monad transformer for backtracking exceptions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "backward-state" = callPackage @@ -41497,6 +43679,8 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "A state monad that runs the state in reverse through the computation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bacteria" = callPackage @@ -41522,6 +43706,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A simple stable bag"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bake" = callPackage @@ -41555,7 +43741,9 @@ self: { ]; description = "Continuous integration system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bake-test"; + broken = true; }) {}; "balkon" = callPackage @@ -41603,6 +43791,7 @@ self: { ]; description = "Shipwire API client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bamboo" = callPackage @@ -41623,6 +43812,7 @@ self: { ]; description = "A blog engine on Hack"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "bamboo-launcher" = callPackage @@ -41643,6 +43833,7 @@ self: { ]; description = "bamboo-launcher"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "bamboo"; }) {}; @@ -41661,6 +43852,7 @@ self: { ]; description = "A highlight middleware"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "bamboo-plugin-photo" = callPackage @@ -41679,6 +43871,7 @@ self: { ]; description = "A photo album middleware"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bamboo-theme-blueprint" = callPackage @@ -41697,6 +43890,7 @@ self: { ]; description = "bamboo blueprint theme"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bamboo-theme-mini-html5" = callPackage @@ -41719,6 +43913,7 @@ self: { ]; description = "bamboo mini html5 theme"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "bamse" = callPackage @@ -41736,6 +43931,7 @@ self: { ]; description = "A Windows Installer (MSI) generator framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hsDotnetGen"; }) {}; @@ -41750,6 +43946,7 @@ self: { executableHaskellDepends = [ base cmdargs samtools ]; description = "A program to extract various information from BAM alignmnet files"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "bam"; }) {}; @@ -41808,6 +44005,8 @@ self: { ]; description = "Generalized word blacklister"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "barbies" = callPackage @@ -41851,6 +44050,8 @@ self: { testHaskellDepends = [ barbies base ]; description = "Create strippable HKD via TH"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "barbly" = callPackage @@ -41887,7 +44088,9 @@ self: { executableHaskellDepends = [ base cmdargs csv diagrams filepath ]; description = "Creating Bar Charts in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "barchart"; + broken = true; }) {}; "barcodes-code128" = callPackage @@ -41899,6 +44102,8 @@ self: { libraryHaskellDepends = [ base bytestring HPDF ]; description = "Generate Code 128 barcodes as PDFs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "barecheck" = callPackage @@ -41910,6 +44115,8 @@ self: { libraryHaskellDepends = [ base containers QuickCheck text time ]; description = "QuickCheck implementations for common types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "barley" = callPackage @@ -41930,6 +44137,7 @@ self: { ]; description = "A web based environment for learning and tinkering with Haskell"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "barley"; }) {}; @@ -41942,6 +44150,8 @@ self: { libraryHaskellDepends = [ base containers filepath glib gtk ]; description = "Declarative Gtk GUI library"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "barrier" = callPackage @@ -41966,6 +44176,8 @@ self: { ]; description = "Shields.io style badge generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "barrier-monad" = callPackage @@ -41977,6 +44189,8 @@ self: { libraryHaskellDepends = [ base comonad mtl transformers ]; description = "Implementation of barrier monad, can use custom front/back type"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "base_4_18_0_0" = callPackage @@ -42059,6 +44273,8 @@ self: { doHaddock = false; description = "Helps migrating projects to base-compat(-batteries)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "base-encoding" = callPackage @@ -42075,6 +44291,8 @@ self: { ]; description = "RFC4648 Binary-to-text encodings (e.g. base64)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "base-feature-macros" = callPackage @@ -42087,6 +44305,8 @@ self: { doHaddock = false; description = "Semantic CPP feature macros for base"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "base-generics" = callPackage @@ -42098,6 +44318,8 @@ self: { libraryHaskellDepends = [ base ]; description = "This library provides some instances for extra GHC.Generic typeclass such as Int8, Word16 and some unboxed types as well."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "base-io-access" = callPackage @@ -42109,6 +44331,8 @@ self: { libraryHaskellDepends = [ base ]; description = "The IO functions included in base delimited into small, composable classes"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "base-noprelude" = callPackage @@ -42256,6 +44480,8 @@ self: { ]; description = "Optics for the Base16 library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "base32" = callPackage @@ -42294,6 +44520,7 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion ]; description = "Fast base32 and base32hex codec for ByteStrings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "base32-lens" = callPackage @@ -42308,6 +44535,8 @@ self: { ]; description = "Optics for the Base32 library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "base32-z-bytestring" = callPackage @@ -42380,6 +44609,8 @@ self: { ]; description = "Parsing and serialization for Base58 addresses (Bitcoin and Ripple)"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "base58string" = callPackage @@ -42414,6 +44645,8 @@ self: { ]; description = "Base62 encoding and decoding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "base64" = callPackage @@ -42529,6 +44762,8 @@ self: { ]; description = "Base64-encode and decode streams of bytes. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "base64-lens" = callPackage @@ -42545,6 +44780,8 @@ self: { ]; description = "Optics for the Base64 library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "base64-string" = callPackage @@ -42589,6 +44826,8 @@ self: { libraryHaskellDepends = [ base ]; description = "alternative prelude"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "basement_0_0_14" = callPackage @@ -42627,6 +44866,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Foundation scrap box of array & string"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "basen" = callPackage @@ -42644,6 +44885,8 @@ self: { ]; testToolDepends = [ tasty-discover ]; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "basen-bytestring" = callPackage @@ -42682,6 +44925,7 @@ self: { ]; description = "Baserock Definitions Schema"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "baserock"; }) {}; @@ -42694,6 +44938,8 @@ self: { libraryHaskellDepends = [ base network pureMD5 utf8-string ]; description = "A BaseX client for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bash" = callPackage @@ -42725,6 +44971,7 @@ self: { ]; description = "Lifting values from base types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "basic-cpuid" = callPackage @@ -42776,6 +45023,8 @@ self: { ]; description = "Basic examples and functions for generics-sop"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "baskell" = callPackage @@ -42792,7 +45041,9 @@ self: { ]; description = "An interpreter for a small functional language"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "baskell"; + broken = true; }) {}; "batch" = callPackage @@ -42862,6 +45113,7 @@ self: { ]; description = "Batch processing toolset for Linux / Unix"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "batchd-core" = callPackage @@ -42883,6 +45135,7 @@ self: { ]; description = "Core modules of batchd, to use in batchd extensions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "batchd-docker" = callPackage @@ -42898,6 +45151,7 @@ self: { ]; description = "docker containers host controller for batchd"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "batchd-libvirt" = callPackage @@ -42914,6 +45168,7 @@ self: { ]; description = "host controller for batchd, which controls virtual machines via libvirt library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "batching" = callPackage @@ -42933,6 +45188,7 @@ self: { ]; description = "An Applicative Functor deferring actions to run in a batch later"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "battlenet" = callPackage @@ -42946,6 +45202,8 @@ self: { ]; description = "API client for Battle.Net"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "battlenet-yesod" = callPackage @@ -42959,6 +45217,7 @@ self: { ]; description = "Yesod integration for the battlenet package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "battleplace" = callPackage @@ -42976,6 +45235,8 @@ self: { ]; description = "Core definitions for BattlePlace.io service"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "battleplace-api" = callPackage @@ -42989,6 +45250,7 @@ self: { ]; description = "Public API definitions of BattlePlace.io service"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "battleship-combinatorics" = callPackage @@ -43046,6 +45308,7 @@ self: { ]; description = "A web-based implementation of battleships including an AI opponent"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bayes-stack" = callPackage @@ -43065,6 +45328,7 @@ self: { ]; description = "Framework for inferring generative probabilistic models with Gibbs sampling"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bazel-coverage-report-renderer" = callPackage @@ -43082,7 +45346,9 @@ self: { ]; description = "HTML Coverage Reports for Rules_Haskell"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "bazel-coverage-report-renderer"; + broken = true; }) {}; "bazel-runfiles" = callPackage @@ -43130,6 +45396,7 @@ self: { ]; description = "Tools for reading Big Binary Indexed files, e.g., bigBed, bigWig"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bcp47" = callPackage @@ -43149,6 +45416,7 @@ self: { ]; description = "Language tags as specified by BCP 47"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "bcp47-orphans" = callPackage @@ -43170,6 +45438,7 @@ self: { ]; description = "BCP47 orphan instances"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "bcrypt" = callPackage @@ -43228,6 +45497,7 @@ self: { ]; description = "Tools for managing a content store of software packages"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) ostree;}; "bdcs-api" = callPackage @@ -43265,6 +45535,7 @@ self: { description = "BDCS API Server"; license = lib.licenses.gpl3Only; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; mainProgram = "bdcs-api-server"; }) {inherit (pkgs) libgit2-glib;}; @@ -43283,6 +45554,8 @@ self: { ]; description = "Behavior-Driven Development DSL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bdelta" = callPackage @@ -43294,6 +45567,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Simple, fast binary diff/patch"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bdo" = callPackage @@ -43309,7 +45584,9 @@ self: { executableHaskellDepends = [ aeson base network text url ]; description = "Update CSS in the browser without reloading the page"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bdo"; + broken = true; }) {}; "beam" = callPackage @@ -43329,6 +45606,8 @@ self: { ]; description = "A type-safe SQL mapper for Haskell that doesn't use Template Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "beam-automigrate" = callPackage @@ -43369,6 +45648,7 @@ self: { doHaddock = false; description = "DB migration library for beam, targeting Postgres"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "beam-core" = callPackage @@ -43427,6 +45707,8 @@ self: { ]; description = "Connection layer between beam and MySQL/MariaDB"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "beam-newtype-field" = callPackage @@ -43442,6 +45724,8 @@ self: { ]; description = "A newtype for wrapping newtypes into beam schemas"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "beam-postgres" = callPackage @@ -43514,6 +45798,7 @@ self: { ]; description = "Template Haskell utilities for beam"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "beamable" = callPackage @@ -43538,6 +45823,8 @@ self: { ]; description = "Generic serializer/deserializer with compact representation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bearriver" = callPackage @@ -43566,6 +45853,7 @@ self: { executableHaskellDepends = [ array base haskell98 mtl ]; description = "A pretty-printer for higher-order logic"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "beautifHOL"; }) {}; @@ -43594,7 +45882,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Implementation of the Bech32 cryptocurrency address format (BIP 0173)"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "bech32"; + broken = true; }) {}; "bech32_1_1_4" = callPackage @@ -43625,6 +45915,7 @@ self: { license = lib.licenses.asl20; hydraPlatforms = lib.platforms.none; mainProgram = "bech32"; + broken = true; }) {}; "bech32-th" = callPackage @@ -43640,6 +45931,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Template Haskell extensions to the Bech32 library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "bed-and-breakfast" = callPackage @@ -43656,6 +45948,8 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Efficient Matrix and Vector operations in 100% Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "beeminder-api" = callPackage @@ -43679,6 +45973,7 @@ self: { ]; description = "Bindings to the beeminder.com JSON API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bein" = callPackage @@ -43702,6 +45997,7 @@ self: { ]; description = "Bein is a provenance and workflow management system for bioinformatics"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "belgian-structured-communication" = callPackage @@ -43748,6 +46044,7 @@ self: { ]; description = "HTTP client DSL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "bench" = callPackage @@ -43785,6 +46082,8 @@ self: { testHaskellDepends = [ base split text ]; description = "Plot and compare benchmarks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bench-show" = callPackage @@ -43808,7 +46107,9 @@ self: { testHaskellDepends = [ base split text ]; description = "Show, plot and compare benchmark results"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bench-show"; + broken = true; }) {}; "benchmark-function" = callPackage @@ -43877,6 +46178,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Bencodex reader/writer for Haskell"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bencoding" = callPackage @@ -43918,6 +46221,8 @@ self: { ]; description = "Lenses for bencoded data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "benri-hspec" = callPackage @@ -43952,6 +46257,8 @@ self: { librarySystemDepends = [ db ]; description = "Pretty BerkeleyDB v4 binding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) db;}; "berp" = callPackage @@ -43977,7 +46284,9 @@ self: { ]; description = "An implementation of Python 3"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "berp"; + broken = true; }) {}; "bert" = callPackage @@ -44000,6 +46309,8 @@ self: { ]; description = "BERT implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "besout" = callPackage @@ -44011,6 +46322,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Extended GCD of polynomials over F_p[x]"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bet" = callPackage @@ -44037,6 +46350,8 @@ self: { ]; description = "Betfair API bindings. Bet on sports on betting exchanges."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "betacode" = callPackage @@ -44053,6 +46368,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck smallcheck ]; description = "A codec for beta code (http://en.wikipedia.org/wiki/Beta_Code)."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "betris" = callPackage @@ -44075,7 +46392,9 @@ self: { ]; description = "A horizontal version of tetris for braille users"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "betris"; + broken = true; }) {}; "between" = callPackage @@ -44115,6 +46434,7 @@ self: { ]; description = "Bidirectionalization for Free! (POPL'09)"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "bff-mono" = callPackage @@ -44147,6 +46467,7 @@ self: { ]; description = "Implementation of the BGAPI serial protocol"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "bglibtest"; }) {}; @@ -44159,6 +46480,8 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring time ]; description = "Parse BgMax-files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bgzf" = callPackage @@ -44174,6 +46497,8 @@ self: { ]; description = "Blocked GZip"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bhoogle" = callPackage @@ -44216,7 +46541,9 @@ self: { executableToolDepends = [ alex happy ]; description = "A database based bibliography manager for BibTeX"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "bibdb"; + broken = true; }) {}; "bibtex" = callPackage @@ -44253,6 +46580,8 @@ self: { ]; description = "The unicode bidirectional algorithm via ICU"; license = "(BSD-2-Clause OR Apache-2.0)"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) icu;}; "bidirectional" = callPackage @@ -44265,6 +46594,8 @@ self: { testHaskellDepends = [ base hedgehog mtl ]; description = "Simple bidirectional serialization and deserialization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bidirectional-instances" = callPackage @@ -44277,6 +46608,8 @@ self: { testHaskellDepends = [ base mtl transformers ]; description = "Make instance constraints bidirectional"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bidirectionalization-combined" = callPackage @@ -44298,6 +46631,8 @@ self: { ]; description = "Prototype Implementation of Combining Syntactic and Semantic Bidirectionalization (ICFP'10)"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bidispec" = callPackage @@ -44309,6 +46644,8 @@ self: { libraryHaskellDepends = [ base bytestring mtl ]; description = "Specification of generators and parsers"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bidispec-extras" = callPackage @@ -44320,6 +46657,8 @@ self: { libraryHaskellDepends = [ base bytestring dataenc mtl ]; description = "Extra helper functions for bidirectional specifications"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bifunctor" = callPackage @@ -44333,6 +46672,7 @@ self: { libraryHaskellDepends = [ base category ]; description = "Bifunctors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bifunctor-classes-compat" = callPackage @@ -44426,6 +46766,7 @@ self: { ]; description = "A parser for the Billboard chord dataset"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "billboard-parser"; }) {}; @@ -44444,6 +46785,7 @@ self: { ]; description = "Leksah library"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "billeksah-main" = callPackage @@ -44462,6 +46804,7 @@ self: { ]; description = "Leksah plugin base"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "billeksah-main"; }) {}; @@ -44504,6 +46847,7 @@ self: { ]; description = "Leksah library"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "billeksah-services" = callPackage @@ -44519,6 +46863,8 @@ self: { ]; description = "Leksah library"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bimap" = callPackage @@ -44664,6 +47010,8 @@ self: { ]; description = "Bit parsing/writing on top of binary"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "binary-communicator" = callPackage @@ -44675,6 +47023,8 @@ self: { libraryHaskellDepends = [ base binary bytestring mtl ]; description = "Flexible way to ease transmission of binary data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "binary-conduit" = callPackage @@ -44705,6 +47055,8 @@ self: { libraryHaskellDepends = [ base binary ghc-prim ]; description = "Automatic deriving of Binary using GHC.Generics"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "binary-enum" = callPackage @@ -44741,6 +47093,8 @@ self: { ]; description = "An alternate with strong-typed errors for `Data.Binary.Get` monad from `binary` package."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "binary-file" = callPackage @@ -44756,6 +47110,7 @@ self: { ]; description = "read/write binary file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "binary-generic" = callPackage @@ -44809,6 +47164,8 @@ self: { libraryHaskellDepends = [ array base ]; description = "Binary Indexed Trees (a.k.a. Fenwick Trees)."; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "binary-instances" = callPackage @@ -44951,6 +47308,8 @@ self: { ]; description = "Extends binary with parsec/attoparsec style parsing combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "binary-protocol" = callPackage @@ -44962,6 +47321,8 @@ self: { libraryHaskellDepends = [ base binary bytestring mtl ]; description = "Monad to ease implementing a binary network protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "binary-protocol-zmq" = callPackage @@ -44977,6 +47338,7 @@ self: { ]; description = "Monad to ease implementing a binary network protocol over ZeroMQ"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "binary-search" = callPackage @@ -45065,6 +47427,7 @@ self: { ]; description = "data serialization/deserialization io-streams library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "binary-strict" = callPackage @@ -45077,6 +47440,8 @@ self: { testHaskellDepends = [ base bytestring ]; description = "Binary deserialisation using strict ByteStrings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "binary-tagged" = callPackage @@ -45125,6 +47490,8 @@ self: { ]; benchmarkHaskellDepends = [ base criterion random ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "binary-typed" = callPackage @@ -45146,6 +47513,8 @@ self: { ]; description = "Type-safe binary serialization"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "binary-varint" = callPackage @@ -45198,6 +47567,8 @@ self: { ]; description = "Data marshaling library that uses type level equations to optimize buffering"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "binding-core" = callPackage @@ -45212,6 +47583,8 @@ self: { testHaskellDepends = [ base HTF HUnit QuickCheck random ]; description = "Data Binding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "binding-gtk" = callPackage @@ -45226,6 +47599,7 @@ self: { testHaskellDepends = [ base binding-core directory gtk ]; description = "Data Binding in Gtk2Hs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "binding-wx" = callPackage @@ -45240,6 +47614,7 @@ self: { testHaskellDepends = [ base binding-core directory wx ]; description = "Data Binding in WxHaskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bindings" = callPackage @@ -45274,6 +47649,8 @@ self: { libraryPkgconfigDepends = [ esound ]; description = "Low level bindings to EsounD (ESD; Enlightened Sound Daemon)"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {esound = null;}; "bindings-GLFW" = callPackage @@ -45312,6 +47689,8 @@ self: { librarySystemDepends = [ K8055D ]; description = "Bindings to Velleman K8055 dll"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {K8055D = null;}; "bindings-apr" = callPackage @@ -45324,6 +47703,8 @@ self: { libraryPkgconfigDepends = [ apr ]; description = "Low level bindings to Apache Portable Runtime (APR)"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) apr;}; "bindings-apr-util" = callPackage @@ -45336,6 +47717,7 @@ self: { libraryPkgconfigDepends = [ apr-util ]; description = "Low level bindings to Apache Portable Runtime Utility (APR Utility)"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {apr-util = null;}; "bindings-audiofile" = callPackage @@ -45363,6 +47745,8 @@ self: { libraryToolDepends = [ alex happy ]; description = "Bindings for libbfd, a library of the GNU `binutils'"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {bfd = null; opcodes = null;}; "bindings-cctools" = callPackage @@ -45375,6 +47759,8 @@ self: { librarySystemDepends = [ dttools ]; description = "Bindings to the CCTools WorkQueue C library"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {dttools = null;}; "bindings-codec2" = callPackage @@ -45406,6 +47792,8 @@ self: { libraryHaskellDepends = [ base ]; description = "This package is obsolete. Look for bindings-DSL instead."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bindings-dc1394" = callPackage @@ -45419,6 +47807,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "Library for using firewire (iidc-1394) cameras"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {dc1394 = null;}; "bindings-directfb" = callPackage @@ -45445,6 +47835,8 @@ self: { libraryPkgconfigDepends = [ eskit ]; description = "Bindings to ESKit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {eskit = null;}; "bindings-fann" = callPackage @@ -45457,6 +47849,8 @@ self: { libraryPkgconfigDepends = [ fann ]; description = "Low level bindings to FANN neural network library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {fann = null;}; "bindings-fluidsynth" = callPackage @@ -45469,6 +47863,8 @@ self: { libraryPkgconfigDepends = [ fluidsynth ]; description = "Haskell FFI bindings for fluidsynth software synthesizer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) fluidsynth;}; "bindings-friso" = callPackage @@ -45481,6 +47877,8 @@ self: { librarySystemDepends = [ friso ]; description = "Low level bindings for friso"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {friso = null;}; "bindings-glib" = callPackage @@ -45529,6 +47927,8 @@ self: { libraryPkgconfigDepends = [ gsl ]; description = "Low level bindings to GNU GSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) gsl;}; "bindings-gts" = callPackage @@ -45558,7 +47958,9 @@ self: { executableHaskellDepends = [ base ]; description = "Hamlib bindings for Haskell"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hamlib-hs-demo"; + broken = true; }) {inherit (pkgs) hamlib;}; "bindings-hdf5" = callPackage @@ -45570,6 +47972,8 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "Project bindings-* raw interface to HDF5 library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bindings-levmar" = callPackage @@ -45618,6 +48022,8 @@ self: { libraryPkgconfigDepends = [ libftdi libusb ]; description = "Low level bindings to libftdi"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libftdi; libusb = null;}; "bindings-libg15" = callPackage @@ -45630,6 +48036,8 @@ self: { librarySystemDepends = [ g15 ]; description = "Bindings to libg15"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {g15 = null;}; "bindings-libpci" = callPackage @@ -45641,6 +48049,8 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "Low level bindings to libpci"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bindings-librrd" = callPackage @@ -45653,6 +48063,8 @@ self: { libraryPkgconfigDepends = [ librrd ]; description = "Low level bindings to RRDtool"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {librrd = null;}; "bindings-libstemmer" = callPackage @@ -45669,6 +48081,8 @@ self: { librarySystemDepends = [ stemmer ]; description = "Binding for libstemmer with low level binding"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {stemmer = null;}; "bindings-libusb" = callPackage @@ -45681,6 +48095,8 @@ self: { libraryPkgconfigDepends = [ libusb ]; description = "Low level bindings to libusb"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {libusb = null;}; "bindings-libv4l2" = callPackage @@ -45693,6 +48109,8 @@ self: { librarySystemDepends = [ v4l2 ]; description = "bindings to libv4l2 for Linux"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {v4l2 = null;}; "bindings-libzip" = callPackage @@ -45716,6 +48134,7 @@ self: { libraryHaskellDepends = [ base bindings-DSL ioctl ]; description = "bindings to Video For Linux Two (v4l2) kernel interfaces"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bindings-lxc" = callPackage @@ -45752,6 +48171,8 @@ self: { libraryPkgconfigDepends = [ monetdb-mapi ]; description = "Low-level bindings for the MonetDB API (mapi)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {monetdb-mapi = null;}; "bindings-mpdecimal" = callPackage @@ -45763,6 +48184,8 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "bindings to mpdecimal library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bindings-nettle" = callPackage @@ -45838,6 +48261,7 @@ self: { libraryHaskellDepends = [ base bindings-DSL ioctl ]; description = "PPDev bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bindings-saga-cmd" = callPackage @@ -45884,6 +48308,8 @@ self: { librarySystemDepends = [ scsynth ]; description = "Low-level bindings to the SuperCollider synthesis engine library"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {scsynth = null;}; "bindings-sipc" = callPackage @@ -45899,6 +48325,8 @@ self: { executableHaskellDepends = [ base ]; description = "Low level bindings to SIPC"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {sipc = null;}; "bindings-sophia" = callPackage @@ -45957,6 +48385,8 @@ self: { testHaskellDepends = [ base ]; description = "Bindings against the wlc library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) wlc;}; "bindings-yices" = callPackage @@ -45983,6 +48413,7 @@ self: { libraryHaskellDepends = [ base binary bytestring rank1dynamic ]; description = "A variation of Data.Dynamic.Dynamic with a Binary instance"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "binembed" = callPackage @@ -46001,7 +48432,9 @@ self: { ]; description = "Embed data into object files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "binembed"; + broken = true; }) {}; "binembed-example" = callPackage @@ -46018,6 +48451,7 @@ self: { ]; description = "Example project using binembed to embed data in object files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "binembed-example"; }) {}; @@ -46058,7 +48492,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Encode precise binary representations directly in types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.raehik ]; + broken = true; }) {}; "bins" = callPackage @@ -46094,7 +48530,9 @@ self: { ]; description = "binary files splitter and merger"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "binsm"; + broken = true; }) {}; "bio" = callPackage @@ -46115,6 +48553,8 @@ self: { executableHaskellDepends = [ base bytestring random ]; description = "A bioinformatics library"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bio-sequence" = callPackage @@ -46131,6 +48571,8 @@ self: { testHaskellDepends = [ base bytestring hspec QuickCheck ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bioace" = callPackage @@ -46144,6 +48586,7 @@ self: { ]; description = "Library for reading ace assembly files"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "bioalign" = callPackage @@ -46155,6 +48598,7 @@ self: { libraryHaskellDepends = [ base biocore bytestring ]; description = "Data structures and helper functions for calculating alignments"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "biocore" = callPackage @@ -46168,6 +48612,8 @@ self: { libraryHaskellDepends = [ base bytestring stringable ]; description = "A bioinformatics library"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "biofasta" = callPackage @@ -46179,6 +48625,7 @@ self: { libraryHaskellDepends = [ base biocore bytestring ]; description = "Library for reading fasta sequence files"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "biofastq" = callPackage @@ -46190,6 +48637,7 @@ self: { libraryHaskellDepends = [ base biocore bytestring ]; description = "A library for reading FASTQ files"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "biohazard" = callPackage @@ -46212,6 +48660,8 @@ self: { ]; description = "bioinformatics support library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bioinformatics-toolkit" = callPackage @@ -46248,6 +48698,7 @@ self: { ]; description = "A collection of bioinformatics tools"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "biophd" = callPackage @@ -46263,6 +48714,7 @@ self: { ]; description = "Library for reading phd sequence files"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "biopsl" = callPackage @@ -46279,6 +48731,7 @@ self: { executableHaskellDepends = [ cmdargs unordered-containers ]; description = "Library and executables for working with PSL files"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "biosff" = callPackage @@ -46295,6 +48748,7 @@ self: { executableHaskellDepends = [ array base cmdargs mtl ]; description = "Library and executables for working with SFF files"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; }) {}; "biostockholm" = callPackage @@ -46317,6 +48771,7 @@ self: { ]; description = "Parsing and rendering of Stockholm files (used by Pfam, Rfam and Infernal)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bip32" = callPackage @@ -46339,6 +48794,7 @@ self: { ]; description = "BIP-0032: Hierarchical Deterministic Wallets for Bitcoin and other cryptocurrencies"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "birch-beer" = callPackage @@ -46373,6 +48829,7 @@ self: { ]; description = "Plot a colorful tree"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "birch-beer"; }) {}; @@ -46394,6 +48851,7 @@ self: { ]; description = "A simple, sinatra-inspired web framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bird"; }) {}; @@ -46427,6 +48885,7 @@ self: { ]; description = "A small tool that clears cookies (and more)"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "bisc"; }) {}; @@ -46455,6 +48914,8 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Library support for the Biscuit security token"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "biscuit-servant" = callPackage @@ -46475,6 +48936,7 @@ self: { ]; description = "Servant support for the Biscuit security token"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bisect-binary" = callPackage @@ -46495,7 +48957,9 @@ self: { ]; description = "Determine relevant parts of binary data"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "bisect-binary"; + broken = true; }) {}; "bishbosh" = callPackage @@ -46525,6 +48989,7 @@ self: { ]; description = "Plays chess"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; }) {}; "bit-array" = callPackage @@ -46537,6 +49002,7 @@ self: { testHaskellDepends = [ base directory doctest filepath ]; description = "A bit array (aka bitset, bitmap, bit vector) API for numeric types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "bit-protocol" = callPackage @@ -46576,6 +49042,8 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Lazy, infinite, compact stream of Bool with O(1) indexing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bit-vector" = callPackage @@ -46626,6 +49094,7 @@ self: { ]; description = "Bitcoin address generation and rendering. Parsing coming soon."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "bitcoin-api" = callPackage @@ -46650,6 +49119,7 @@ self: { ]; description = "Provides access to the RPC API of Bitcoin Core"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "bitcoin-api-extra" = callPackage @@ -46672,6 +49142,7 @@ self: { ]; description = "Higher level constructs on top of the bitcoin-api package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "bitcoin-block" = callPackage @@ -46692,6 +49163,7 @@ self: { ]; description = "Utility functions for manipulating bitcoin blocks"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "bitcoin-compact-filters" = callPackage @@ -46749,6 +49221,8 @@ self: { ]; description = "Partial implementation of the Bitcoin protocol (as of 2013)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bitcoin-keys" = callPackage @@ -46766,6 +49240,8 @@ self: { ]; description = "Bitcoin keys"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bitcoin-payment-channel" = callPackage @@ -46831,6 +49307,8 @@ self: { ]; description = "Library to communicate with the Satoshi Bitcoin daemon"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bitcoin-script" = callPackage @@ -46848,6 +49326,8 @@ self: { testHaskellDepends = [ base bytestring hspec ]; description = "Compilation, manipulation and decompilation of Bitcoin scripts"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bitcoin-scripting" = callPackage @@ -46889,6 +49369,7 @@ self: { ]; description = "Utility functions for manipulating bitcoin transactions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "bitcoin-types" = callPackage @@ -46908,6 +49389,7 @@ self: { ]; description = "Provides consistent low-level types used commonly among Bitcoin implementations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "bitcoind-regtest" = callPackage @@ -46937,6 +49419,7 @@ self: { ]; description = "A library for working with bitcoin-core regtest networks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bitcoind-rpc-explorer"; }) {}; @@ -46959,6 +49442,8 @@ self: { ]; description = "A streamlined interface to bitcoin core using Haskoin types and Servant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bitfield" = callPackage @@ -46976,6 +49461,8 @@ self: { testToolDepends = [ sydtest-discover ]; description = "Generic and easy to use haskell bitfields"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bitly-cli" = callPackage @@ -46991,6 +49478,7 @@ self: { ]; description = "A command line tool to access bit.ly URL shortener."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bitly"; }) {}; @@ -47030,6 +49518,7 @@ self: { ]; description = "Bitmap library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bits" = callPackage @@ -47056,6 +49545,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Atomic bit operations on memory locations for low-level synchronization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bits-bytestring" = callPackage @@ -47105,6 +49596,8 @@ self: { ]; description = "Bitstream support for Conduit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bits-extra" = callPackage @@ -47141,6 +49634,8 @@ self: { librarySystemDepends = [ gcc_s ]; description = "Efficient high-level bit operations not found in Data.Bits"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {gcc_s = null;}; "bits-show" = callPackage @@ -47175,6 +49670,8 @@ self: { benchmarkSystemDepends = [ gmp ]; description = "A space-efficient set data structure"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) gmp;}; "bitset-word8" = callPackage @@ -47217,7 +49714,9 @@ self: { executablePkgconfigDepends = [ gtk2 pango ]; description = "Proof-of-concept tool for writing using binary choices"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "bitspeak"; + broken = true; }) {inherit (pkgs) gtk2; inherit (pkgs) pango;}; "bitstream" = callPackage @@ -47236,6 +49735,8 @@ self: { ]; description = "Fast, packed, strict and lazy bit streams with stream fusion"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bitstring" = callPackage @@ -47279,6 +49780,7 @@ self: { ]; description = "Bittorrent protocol implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bittrex" = callPackage @@ -47408,6 +49910,8 @@ self: { ]; description = "A Haskell library for working with the BitX bitcoin exchange"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bizzlelude" = callPackage @@ -47423,6 +49927,8 @@ self: { ]; description = "A lousy Prelude replacement by a lousy dude"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bizzlelude-js" = callPackage @@ -47434,6 +49940,8 @@ self: { libraryHaskellDepends = [ base containers text ]; description = "A lousy Prelude replacement by a lousy dude"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bk-tree" = callPackage @@ -47468,7 +49976,9 @@ self: { ]; description = "Backup utility for backing up to cloud storage services (S3 only right now)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bkr"; + broken = true; }) {}; "bktrees" = callPackage @@ -47494,6 +50004,7 @@ self: { executableHaskellDepends = [ base haskell98 unix ]; description = "a stupid cron"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bla"; }) {}; @@ -47562,7 +50073,9 @@ self: { ]; description = "Shake frontend for Agda blogging"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "blagda"; + broken = true; }) {}; "blake2" = callPackage @@ -47626,6 +50139,8 @@ self: { libraryHaskellDepends = [ base bytestring text vector ]; description = "The BLAKE SHA-3 candidate hashes, in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "blakesum-demo" = callPackage @@ -47643,6 +50158,7 @@ self: { ]; description = "The BLAKE SHA-3 candidate hashes, in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "blakesum"; }) {}; @@ -47698,6 +50214,8 @@ self: { libraryHaskellDepends = [ base ieee QuickCheck storable-complex ]; description = "Bindings to the BLAS library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "blas-carray" = callPackage @@ -47775,6 +50293,7 @@ self: { ]; description = "Library for reading Blast XML output"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "blatex" = callPackage @@ -47792,6 +50311,7 @@ self: { ]; description = "Blog in LaTeX"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "blatex"; }) {}; @@ -47865,6 +50385,7 @@ self: { ]; description = "Enumeratees for the incremental conversion of builders to bytestrings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "blaze-colonnade" = callPackage @@ -47883,6 +50404,7 @@ self: { testHaskellDepends = [ base colonnade doctest ]; description = "blaze-html backend for colonnade"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "blaze-from-html" = callPackage @@ -47937,6 +50459,8 @@ self: { ]; description = "Some contributions to add handy things to blaze html"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "blaze-html-hexpat" = callPackage @@ -47948,6 +50472,8 @@ self: { libraryHaskellDepends = [ base blaze-html bytestring hexpat text ]; description = "A hexpat backend for blaze-html"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "blaze-html-truncate" = callPackage @@ -47963,6 +50489,8 @@ self: { ]; description = "A truncator for blaze-html"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "blaze-htmx" = callPackage @@ -47996,6 +50524,8 @@ self: { ]; description = "tiny library for encoding json"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "blaze-markup" = callPackage @@ -48028,6 +50558,8 @@ self: { ]; description = "create svg by Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "blaze-svg" = callPackage @@ -48076,6 +50608,8 @@ self: { ]; description = "Fast rendering of common datatypes (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "blazeMarker" = callPackage @@ -48104,6 +50638,8 @@ self: { ]; description = "A true monad (transformer) version of the blaze-markup and blaze-html libraries"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ble" = callPackage @@ -48135,6 +50671,7 @@ self: { ]; description = "Bluetooth Low Energy (BLE) peripherals"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "blindpass" = callPackage @@ -48150,7 +50687,9 @@ self: { testHaskellDepends = [ base hspec ]; description = "Password entry tool"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "blindpass"; + broken = true; }) {}; "blink1" = callPackage @@ -48169,6 +50708,7 @@ self: { ]; description = "Control library for blink(1) LED from ThingM"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "blink1"; }) {}; @@ -48188,6 +50728,7 @@ self: { ]; description = "Python to bytecode compiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "blip"; }) {}; @@ -48204,6 +50745,8 @@ self: { ]; description = "Support code for Blip"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "blizzard-html" = callPackage @@ -48238,6 +50781,8 @@ self: { ]; description = "Generic blockchain implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "blockfrost-api" = callPackage @@ -48346,7 +50891,9 @@ self: { testHaskellDepends = [ base ]; description = "Blockhash perceptual image hash algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "blockhash"; + broken = true; }) {}; "blocking-transactions" = callPackage @@ -48379,6 +50926,7 @@ self: { executableHaskellDepends = [ base ConfigFile haskell98 old-time ]; description = "Very simple static blog software"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "blogination"; }) {}; @@ -48430,6 +50978,7 @@ self: { ]; description = "Adds convenient Amazon ElasticSearch Service authentication to Bloodhound"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bloomfilter" = callPackage @@ -48468,6 +51017,8 @@ self: { benchmarkHaskellDepends = [ base criterion random ]; description = "Distributed bloom filters on Redis (using the Hedis client)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "blosum" = callPackage @@ -48489,7 +51040,9 @@ self: { ]; description = "BLOSUM generator"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "blosum"; + broken = true; }) {}; "bloxorz" = callPackage @@ -48504,6 +51057,7 @@ self: { executableHaskellDepends = [ base GLFW OpenGL ]; description = "OpenGL Logic Game"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "bloxorz"; }) {}; @@ -48522,6 +51076,7 @@ self: { ]; description = "The blubber client; connects to the blubber server"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "blubber"; }) {}; @@ -48544,7 +51099,9 @@ self: { ]; description = "The blubber server, serves blubber clients"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "blubber-server"; + broken = true; }) {}; "blucontrol" = callPackage @@ -48598,7 +51155,9 @@ self: { ]; description = "Configurable blue light filter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bludigon"; + broken = true; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXrandr;}; "bluemix-sdk" = callPackage @@ -48636,6 +51195,7 @@ self: { executablePkgconfigDepends = [ gtk2 ]; description = "full-featured tiling for the GNOME desktop environment"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gtk2;}; "bluetileutils" = callPackage @@ -48649,7 +51209,9 @@ self: { executableHaskellDepends = [ base gtk ]; description = "Utilities for Bluetile"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bluetilemockwin-obsolete"; + broken = true; }) {}; "blunk-hask-tests" = callPackage @@ -48665,7 +51227,9 @@ self: { executableHaskellDepends = [ base ]; description = "spam"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "test1"; + broken = true; }) {}; "blunt" = callPackage @@ -48687,6 +51251,7 @@ self: { executableHaskellDepends = [ base ]; description = "Convert between pointfree and pointful expressions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "blunt"; }) {}; @@ -48766,6 +51331,7 @@ self: { ]; description = "Library for communication with the Bosch BNO055 orientation sensor"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "board-games" = callPackage @@ -48849,7 +51415,9 @@ self: { ]; description = "Copy a directory tree, making zero-size sparse copies of big files"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "bogocopy"; + broken = true; }) {}; "bogre-banana" = callPackage @@ -48867,6 +51435,7 @@ self: { ]; executableHaskellDepends = [ base hogre hois random ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bogre-banana-snake"; }) {}; @@ -48896,7 +51465,9 @@ self: { testToolDepends = [ tasty-discover ]; description = "Generate Haskell boilerplate"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "boilerplate"; + broken = true; }) {}; "bolt" = callPackage @@ -48920,6 +51491,8 @@ self: { ]; description = "Bolt driver for Neo4j"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "boltzmann-brain" = callPackage @@ -48945,7 +51518,9 @@ self: { ]; description = "Analytic sampler compiler for combinatorial systems"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bb"; + broken = true; }) {}; "boltzmann-samplers" = callPackage @@ -48996,6 +51571,7 @@ self: { ]; description = "Bond schema compiler and code generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "gbc"; }) {}; @@ -49025,6 +51601,7 @@ self: { ]; description = "Runtime support for BOND serialization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bond-haskell-compiler" = callPackage @@ -49046,6 +51623,7 @@ self: { testHaskellDepends = [ base ]; description = "Bond code generator for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hbc"; }) {}; @@ -49075,6 +51653,8 @@ self: { libraryHaskellDepends = [ base bookhound containers text time ]; description = "Parsers for usual data formats"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bookkeeper" = callPackage @@ -49102,6 +51682,7 @@ self: { ]; description = "Anonymous records and overloaded labels"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "readme"; }) {}; @@ -49114,6 +51695,7 @@ self: { libraryHaskellDepends = [ base bookkeeper type-level-sets ]; description = "Permissions for bookkeeper records"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bookkeeping" = callPackage @@ -49130,6 +51712,8 @@ self: { testHaskellDepends = [ base doctest Glob ]; description = "A module for bookkeeping by double entry"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bookkeeping-jp" = callPackage @@ -49146,6 +51730,7 @@ self: { testHaskellDepends = [ base doctest Glob ]; description = "Helper functions for Japanese bookkeeping"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "bool-extras" = callPackage @@ -49183,6 +51768,8 @@ self: { ]; description = "Logical combinatory operations dealing with datatypes representing booleans by their constructors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "boolean-list" = callPackage @@ -49210,6 +51797,8 @@ self: { ]; description = "Boolean normal form: NNF, DNF & CNF"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "boolector" = callPackage @@ -49299,6 +51888,8 @@ self: { ]; description = "Chronokinetic stream sources and incremental consumers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "boomerang" = callPackage @@ -49333,6 +51924,7 @@ self: { ]; description = "Boomshine clone"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "boomslang"; }) {}; @@ -49425,6 +52017,7 @@ self: { executableHaskellDepends = [ base time ]; description = "Factory for quickly building an application"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "demo-app"; }) {}; @@ -49443,6 +52036,7 @@ self: { ]; description = "Factory for quickly building a microservice"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "boots-web" = callPackage @@ -49462,6 +52056,7 @@ self: { ]; description = "Factory for quickly building a web application"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "bootstrap-types" = callPackage @@ -49516,6 +52111,7 @@ self: { ]; description = "Metering System for OpenStack metrics provided by Vaultaire"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "boring" = callPackage @@ -49557,7 +52153,9 @@ self: { executableHaskellDepends = [ base ]; description = "A boring window switcher"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "boring-window-switcher"; + broken = true; }) {}; "borsh" = callPackage @@ -49593,6 +52191,8 @@ self: { libraryHaskellDepends = [ arrows base Stream ]; description = "bots for functional reactive programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "both" = callPackage @@ -49604,6 +52204,7 @@ self: { libraryHaskellDepends = [ base semigroups zero ]; description = "Like Maybe, but with a different Monoid instance"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "botpp" = callPackage @@ -49617,7 +52218,9 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Build tool for Lambdabot"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "BotPP"; + broken = true; }) {}; "bottom" = callPackage @@ -49642,7 +52245,9 @@ self: { ]; description = "Encoding and decoding for the Bottom spec"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "bottom"; + broken = true; }) {}; "bound" = callPackage @@ -49710,6 +52315,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "A lightweight implementation of 'bound'"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bounded-array" = callPackage @@ -49723,6 +52330,8 @@ self: { libraryHaskellDepends = [ array base ]; description = "Arrays with a value for every index"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bounded-queue" = callPackage @@ -49844,6 +52453,8 @@ self: { libraryHaskellDepends = [ attoparsec base box text time ]; description = "CSV parsing in a box"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "box-socket" = callPackage @@ -49875,6 +52486,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "A hack to use GHC.Prim primitives in GHCi"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "boxes" = callPackage @@ -49915,6 +52528,8 @@ self: { testHaskellDepends = [ base ]; description = "A minimal typed unix path library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "braid" = callPackage @@ -49937,7 +52552,9 @@ self: { ]; description = "Types and functions to work with braids and Khovanov homology"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "KappaView"; + broken = true; }) {}; "brain-bleep" = callPackage @@ -49951,7 +52568,9 @@ self: { executableHaskellDepends = [ array base containers parsec ]; description = "primitive imperative language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "brain-bleep"; + broken = true; }) {}; "brainfuck" = callPackage @@ -50042,7 +52661,9 @@ self: { benchmarkHaskellDepends = [ base criterion file-embed text ]; description = "Featureful sound change applier"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "brassica"; + broken = true; }) {}; "break" = callPackage @@ -50070,6 +52691,7 @@ self: { executableHaskellDepends = [ base haskgame mtl SDL ]; description = "A simple Breakout game implementation"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "breakout"; }) {}; @@ -50126,7 +52748,9 @@ self: { executableHaskellDepends = [ array base parallel random SDL ]; description = "A Haskell implementation of the Brian's Brain cellular automaton"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "brians-brain"; + broken = true; }) {}; "brick_0_70_1" = callPackage @@ -50196,6 +52820,8 @@ self: { ]; description = "A drop-down menu widget for brick"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "brick-filetree" = callPackage @@ -50215,6 +52841,8 @@ self: { free vector vty ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "brick-list-search" = callPackage @@ -50228,6 +52856,8 @@ self: { libraryHaskellDepends = [ base brick containers microlens vector ]; description = "Search forward or backward for certain kinds of items in brick list"; license = lib.licenses.bsd0; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "brick-list-skip" = callPackage @@ -50261,7 +52891,9 @@ self: { testHaskellDepends = [ base ]; description = "Panes library for Brick providing composition and isolation for TUI apps"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; mainProgram = "mywork-example"; + broken = true; }) {}; "brick-skylighting_0_3" = callPackage @@ -50337,6 +52969,7 @@ self: { ]; description = "Bricks is a lazy functional language based on Nix"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "bricks-internal" = callPackage @@ -50355,6 +52988,8 @@ self: { ]; description = "..."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bricks-internal-test" = callPackage @@ -50370,6 +53005,7 @@ self: { ]; description = "..."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "bricks-parsec" = callPackage @@ -50390,6 +53026,7 @@ self: { ]; description = "..."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "bricks-rendering" = callPackage @@ -50410,6 +53047,7 @@ self: { ]; description = "..."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "bricks-syntax" = callPackage @@ -50430,6 +53068,7 @@ self: { ]; description = "..."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "brillig" = callPackage @@ -50450,7 +53089,9 @@ self: { ]; description = "Simple part of speech tagger"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "brillig"; + broken = true; }) {}; "brittany_0_13_1_2" = callPackage @@ -50485,6 +53126,7 @@ self: { license = lib.licenses.agpl3Only; hydraPlatforms = lib.platforms.none; mainProgram = "brittany"; + broken = true; }) {}; "brittany" = callPackage @@ -50520,7 +53162,9 @@ self: { ]; description = "Haskell source code formatter"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "brittany"; + broken = true; }) {}; "broadcast-chan" = callPackage @@ -50557,6 +53201,7 @@ self: { ]; description = "Conduit-based parallel streaming code for broadcast-chan"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "broadcast-chan-pipes" = callPackage @@ -50575,6 +53220,7 @@ self: { ]; description = "Pipes-based parallel streaming code for broadcast-chan"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "broadcast-chan-tests" = callPackage @@ -50599,6 +53245,8 @@ self: { ]; description = "Helpers for generating tests for broadcast-chan"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "broccoli" = callPackage @@ -50610,6 +53258,8 @@ self: { libraryHaskellDepends = [ base containers stm time ]; description = "Small library for interactive functional programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "brok" = callPackage @@ -50637,7 +53287,9 @@ self: { testToolDepends = [ tasty-discover ]; description = "Finds broken links in text files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "brok"; + broken = true; }) {}; "broker-haskell" = callPackage @@ -50651,6 +53303,8 @@ self: { testHaskellDepends = [ base bytestring hspec ]; description = "Haskell bindings to Broker, Bro's messaging library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {broker = null;}; "bronyradiogermany-common" = callPackage @@ -50668,6 +53322,8 @@ self: { ]; description = "Common types and URIs for the BronyRadioGermany API bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bronyradiogermany-streaming" = callPackage @@ -50688,6 +53344,7 @@ self: { ]; description = "Streaming interface for the BronyRadioGermany API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "brotli" = callPackage @@ -50727,6 +53384,8 @@ self: { ]; description = "Conduit interface for Brotli (RFC7932) compression"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "brotli-streams" = callPackage @@ -50763,6 +53422,8 @@ self: { ]; description = "A reader and interface for the Browser Capabilities Project data files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bsb-http-chunked" = callPackage @@ -50797,6 +53458,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Access to the BSD sysctl(3) interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bson" = callPackage @@ -50829,6 +53492,8 @@ self: { libraryHaskellDepends = [ base bson ghc-prim text ]; description = "Generic functionality for BSON"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bson-generics" = callPackage @@ -50840,6 +53505,8 @@ self: { libraryHaskellDepends = [ base bson ghc-prim ]; description = "Generics functionality for BSON"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bson-lens" = callPackage @@ -50864,6 +53531,8 @@ self: { ]; description = "Mapping between BSON and algebraic data types"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bspack" = callPackage @@ -50896,6 +53565,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "A simple unassuming parser for bytestring"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "btc-lsp" = callPackage @@ -50946,6 +53617,7 @@ self: { ]; description = "Lightning service provider"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "btree" = callPackage @@ -50965,6 +53637,7 @@ self: { benchmarkHaskellDepends = [ base clock ghc-prim hashable ]; description = "B-Tree on Unmanaged Heap"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "btree-concurrent" = callPackage @@ -50987,6 +53660,8 @@ self: { ]; description = "A backend agnostic, concurrent BTree"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "btrfs" = callPackage @@ -51001,6 +53676,8 @@ self: { description = "Bindings to the btrfs API"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "buchhaltung" = callPackage @@ -51039,6 +53716,7 @@ self: { ]; description = "Automates most of your plain text accounting data entry in ledger format"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "buchhaltung"; }) {}; @@ -51061,6 +53739,8 @@ self: { benchmarkHaskellDepends = [ bug criterion rerebase ]; description = "Simple mutable low-level buffer for IO"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "buffer-builder" = callPackage @@ -51111,6 +53791,8 @@ self: { ]; description = "Serialize Aeson values with Data.BufferBuilder"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "buffer-pipe" = callPackage @@ -51155,7 +53837,9 @@ self: { doHaddock = false; description = "Assembles many Dockerfiles in one"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "buffet"; + broken = true; }) {}; "buffon" = callPackage @@ -51172,6 +53856,8 @@ self: { ]; description = "An implementation of Buffon machines"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "buffon-machines" = callPackage @@ -51185,6 +53871,8 @@ self: { ]; description = "Perfect simulation of discrete random variables"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bug" = callPackage @@ -51317,6 +54005,8 @@ self: { ]; description = "A Haskell interface to the Bugzilla native REST API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bugzilla-redhat" = callPackage @@ -51357,6 +54047,8 @@ self: { testHaskellDepends = [ base containers extra mtl transformers ]; description = "Build systems a la carte"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "build-env" = callPackage @@ -51392,6 +54084,8 @@ self: { libraryHaskellDepends = [ base bytestring containers dlist text ]; description = "Typeclass for builders of linear data structures"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "buildbox" = callPackage @@ -51408,6 +54102,8 @@ self: { ]; description = "Rehackable components for writing buildbots and test harnesses"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "buildbox-tools" = callPackage @@ -51421,6 +54117,7 @@ self: { executableHaskellDepends = [ base buildbox parseargs ]; description = "Tools for working with buildbox benchmark result files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "buildbox-results"; }) {}; @@ -51436,6 +54133,8 @@ self: { ]; description = "bounded ByteArray builder type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "buildwrapper" = callPackage @@ -51473,6 +54172,7 @@ self: { ]; description = "A library and an executable that provide an easy API for a Haskell IDE"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "buildwrapper"; }) {}; @@ -51524,6 +54224,7 @@ self: { ]; description = "Bulletproofs are short zero-knowledge proofs without a trusted setup"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "bulletproofs-example"; }) {}; @@ -51549,6 +54250,7 @@ self: { ]; description = "Reflex infused with bulma (css)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "bumper" = callPackage @@ -51568,7 +54270,9 @@ self: { ]; description = "Automatically bump package versions, also transitively"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bumper"; + broken = true; }) {}; "bunz" = callPackage @@ -51584,7 +54288,9 @@ self: { testHaskellDepends = [ base doctest hspec ]; description = "CLI tool to beautify JSON string"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "bunz"; + broken = true; }) {}; "burnt-explorer" = callPackage @@ -51602,6 +54308,7 @@ self: { ]; description = "List OP_RETURN cryptocurrency transaction outputs"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "burnt-explorer"; }) {}; @@ -51636,6 +54343,8 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Burst detection algorithms"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bus-pirate" = callPackage @@ -51652,6 +54361,7 @@ self: { ]; description = "Haskell interface to the Bus Pirate binary interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "buster" = callPackage @@ -51668,6 +54378,8 @@ self: { ]; description = "Almost but not quite entirely unlike FRP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "buster-gtk" = callPackage @@ -51684,6 +54396,7 @@ self: { ]; description = "Almost but not quite entirely unlike FRP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "buster-network" = callPackage @@ -51700,6 +54413,7 @@ self: { ]; description = "Almost but not quite entirely unlike FRP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bustle" = callPackage @@ -51779,6 +54493,8 @@ self: { ]; description = "Monad Transformer for Asyncronous Message Passing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "butterflies" = callPackage @@ -51800,6 +54516,7 @@ self: { ]; description = "butterfly tilings"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "butterflies-flat"; }) {}; @@ -51831,7 +54548,9 @@ self: { ]; description = "Client library for buttplug.io"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "buttplug-example"; + broken = true; }) {}; "bv" = callPackage @@ -51885,6 +54604,8 @@ self: { doHaddock = false; description = "Efficient little-endian bit vector library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bv-sized" = callPackage @@ -51917,6 +54638,8 @@ self: { libraryHaskellDepends = [ base bv-sized lens parameterized-utils ]; description = "Well-typed lenses for bv-sized bitvectors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "by-other-names" = callPackage @@ -51956,6 +54679,8 @@ self: { ]; description = "Library for creating command-line interfaces (colors, menus, etc.)"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bytable" = callPackage @@ -51967,6 +54692,7 @@ self: { libraryHaskellDepends = [ base bytestring word24 ]; description = "data from/to ByteString"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "byte-count-reader" = callPackage @@ -52021,6 +54747,8 @@ self: { libraryHaskellDepends = [ base bytestring primitive text ]; description = "Parsing of bytearray-based data"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bytebuild" = callPackage @@ -52093,6 +54821,7 @@ self: { ]; description = "Universal hashing of bytes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "bytehash_0_1_1_0" = callPackage @@ -52136,6 +54865,7 @@ self: { description = "Fast logging"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; }) {}; "byteorder" = callPackage @@ -52181,6 +54911,7 @@ self: { description = "Patch byte-representable data in a bytestream"; license = lib.licenses.mit; platforms = lib.platforms.x86; + hydraPlatforms = lib.platforms.none; mainProgram = "bytepatch"; maintainers = [ lib.maintainers.raehik ]; }) {}; @@ -52313,6 +55044,8 @@ self: { ]; description = "Arbitrary instances for ByteStrings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bytestring-builder" = callPackage @@ -52341,6 +55074,7 @@ self: { ]; description = "Variable-length integer encoding"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "bytestring-class" = callPackage @@ -52354,6 +55088,8 @@ self: { libraryHaskellDepends = [ base bytestring utf8-string ]; description = "Classes for automatic conversion to and from strict and lazy bytestrings. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bytestring-conversion" = callPackage @@ -52376,6 +55112,8 @@ self: { ]; description = "Type-classes to convert values to and from ByteString"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bytestring-csv" = callPackage @@ -52387,6 +55125,8 @@ self: { libraryHaskellDepends = [ array base bytestring dlist ]; description = "Parse CSV formatted data efficiently"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bytestring-delta" = callPackage @@ -52398,6 +55138,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Simple, fast binary diff/patch"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bytestring-encoding" = callPackage @@ -52466,6 +55208,8 @@ self: { ]; description = "ByteString-backed Handles"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bytestring-lexing" = callPackage @@ -52521,6 +55265,8 @@ self: { ]; description = "Plain byte strings ('ForeignPtr'-less 'ByteString's)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bytestring-progress" = callPackage @@ -52560,6 +55306,7 @@ self: { ]; description = "fast ByteString to number converting library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "bytestring-rematch" = callPackage @@ -52573,6 +55320,8 @@ self: { doHaddock = false; description = "Rematch support for ByteString"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bytestring-short" = callPackage @@ -52602,6 +55351,8 @@ self: { ]; description = "Efficient conversion of values into readable byte strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bytestring-strict-builder" = callPackage @@ -52632,6 +55383,8 @@ self: { libraryHaskellDepends = [ base bytestring pipes primitive ]; description = "break bytestrings up into substrings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bytestring-time" = callPackage @@ -52648,6 +55401,8 @@ self: { ]; description = "Library for Time parsing from ByteString"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bytestring-to-vector" = callPackage @@ -52722,6 +55477,8 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion QuickCheck ]; description = "Bytestrings with typenat lengths"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bytestringparser" = callPackage @@ -52733,6 +55490,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Combinator parsing with Data.ByteString.Lazy"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bytestringparser-temporary" = callPackage @@ -52744,6 +55503,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Combinator parsing with Data.ByteString.Lazy"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "bytestringreadp" = callPackage @@ -52755,6 +55516,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "A ReadP style parser library for ByteString"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "byteunits" = callPackage @@ -52871,6 +55634,8 @@ self: { ]; description = "Streaming compression/decompression via conduits"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) bzip2;}; "c-dsl" = callPackage @@ -52882,6 +55647,8 @@ self: { libraryHaskellDepends = [ base language-c ]; description = "A higher level DSL on top of language-c"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "c-enum" = callPackage @@ -52905,6 +55672,8 @@ self: { libraryHaskellDepends = [ base ]; description = "C IO"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "c-mosquitto" = callPackage @@ -52925,7 +55694,9 @@ self: { testHaskellDepends = [ base ]; description = "Simpe mosquito MQTT binding able to work with the Amazons IoT"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "c-mosquitto"; + broken = true; }) {inherit (pkgs) mosquitto;}; "c-storable" = callPackage @@ -52997,6 +55768,8 @@ self: { libraryHaskellDepends = [ base network unix ]; description = "C10k server library using prefork"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "c14n" = callPackage @@ -53032,7 +55805,9 @@ self: { ]; description = "Translate C code into ATS"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "c2ats"; + broken = true; }) {}; "c2hs" = callPackage @@ -53111,6 +55886,7 @@ self: { libraryHaskellDepends = [ alg base ]; description = "Cellular Automata"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ca-patterns" = callPackage @@ -53125,6 +55901,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Manipulate patterns in cellular automata, create and parse RLE files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ca-province-codes" = callPackage @@ -53207,7 +55985,9 @@ self: { ]; description = "Check how up-to-date your .cabal dependencies are."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-audit"; + broken = true; }) {}; "cabal-auto-expose" = callPackage @@ -53219,6 +55999,8 @@ self: { libraryHaskellDepends = [ base Cabal directory extra filepath ]; description = "Build time library that autodetects exposed modules"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cabal-bounds" = callPackage @@ -53243,6 +56025,7 @@ self: { ]; description = "A command line program for managing the dependency versions in a cabal file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-bounds"; }) {}; @@ -53271,6 +56054,8 @@ self: { ]; description = "Bundling C/C++ projects in Cabal package made easy"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cabal-cache" = callPackage @@ -53311,6 +56096,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "CI Assistant for Haskell projects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-cache"; }) {}; @@ -53334,6 +56120,7 @@ self: { testHaskellDepends = [ base filepath tasty tasty-golden ]; description = "A command line program for extracting compiler arguments from a cabal file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-cargs"; }) {}; @@ -53369,7 +56156,9 @@ self: { executableHaskellDepends = [ base Cabal optparse-applicative ]; description = "Repeatable builds for cabalized Haskell projects"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-constraints"; + broken = true; }) {}; "cabal-db" = callPackage @@ -53391,7 +56180,9 @@ self: { ]; description = "query tools for the local cabal database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-db"; + broken = true; }) {}; "cabal-debian" = callPackage @@ -53416,7 +56207,9 @@ self: { executableHaskellDepends = [ base Cabal debian lens mtl pretty ]; description = "Create a Debianization for a Cabal package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-debian"; + broken = true; }) {}; "cabal-dependency-licenses" = callPackage @@ -53432,7 +56225,9 @@ self: { ]; description = "Compose a list of a project's transitive dependencies with their licenses"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-dependency-licenses"; + broken = true; }) {}; "cabal-detailed-quickcheck" = callPackage @@ -53466,6 +56261,8 @@ self: { executableToolDepends = [ cabal-install ]; description = "Manage sandboxed Haskell build environments"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cabal-dir" = callPackage @@ -53479,7 +56276,9 @@ self: { executableHaskellDepends = [ base Cabal directory filepath ]; description = "show dist dir of 'cabal copy/install'"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-dir"; + broken = true; }) {}; "cabal-doctest" = callPackage @@ -53514,7 +56313,9 @@ self: { ]; description = "Cabal utility"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-edit"; + broken = true; }) {}; "cabal-file" = callPackage @@ -53554,6 +56355,8 @@ self: { testHaskellDepends = [ base Cabal ]; description = "Template Haskell expressions for reading fields from a project's cabal file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cabal-flatpak" = callPackage @@ -53578,6 +56381,7 @@ self: { ]; description = "Generate a FlatPak manifest from a Cabal package description"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-flatpak"; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -53622,6 +56426,8 @@ self: { libraryHaskellDepends = [ base Cabal ghc transformers ]; description = "Conveniently configure GHC's dynamic flags for use with Cabal projects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cabal-ghci" = callPackage @@ -53638,7 +56444,9 @@ self: { ]; description = "Set up ghci with options taken from a .cabal file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-ghci"; + broken = true; }) {}; "cabal-graphdeps" = callPackage @@ -53656,7 +56464,9 @@ self: { ]; description = "Generate graphs of install-time Cabal dependencies"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-graphdeps"; + broken = true; }) {}; "cabal-helper" = callPackage @@ -53687,6 +56497,7 @@ self: { doCheck = false; description = "Give Haskell development tools access to Cabal project environment"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "cabal-hoogle" = callPackage @@ -53712,7 +56523,9 @@ self: { testToolDepends = [ hoogle tasty-discover ]; description = "generate hoogle database for cabal project and dependencies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-hoogle"; + broken = true; }) {}; "cabal-info" = callPackage @@ -53735,7 +56548,9 @@ self: { ]; description = "Read information from cabal files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-info"; + broken = true; }) {}; "cabal-install" = callPackage @@ -53806,7 +56621,9 @@ self: { executableSystemDepends = [ zlib ]; description = "The (bundled) command-line interface for Cabal and Hackage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal"; + broken = true; }) {inherit (pkgs) zlib;}; "cabal-install-ghc72" = callPackage @@ -53826,7 +56643,9 @@ self: { ]; description = "Temporary version of cabal-install for ghc-7.2"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal"; + broken = true; }) {}; "cabal-install-ghc74" = callPackage @@ -53846,7 +56665,9 @@ self: { ]; description = "Temporary version of cabal-install for ghc-7.4"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal"; + broken = true; }) {}; "cabal-install-parsers" = callPackage @@ -53937,6 +56758,8 @@ self: { ]; description = "Lenses and traversals for the Cabal library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cabal-macosx" = callPackage @@ -53985,7 +56808,9 @@ self: { ]; description = "build multiple packages at once"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-meta"; + broken = true; }) {}; "cabal-mon" = callPackage @@ -54003,7 +56828,9 @@ self: { ]; description = "A monitor for cabal builds"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-mon"; + broken = true; }) {}; "cabal-nirvana" = callPackage @@ -54021,7 +56848,9 @@ self: { ]; description = "Avoid Cabal dependency hell by constraining to known good versions. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-nirvana"; + broken = true; }) {}; "cabal-pkg-config-version-hook" = callPackage @@ -54063,7 +56892,9 @@ self: { ]; description = "Library and utility for processing cabal's plan.json file"; license = lib.licenses.gpl2Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-plan"; + broken = true; }) {}; "cabal-plan-bounds" = callPackage @@ -54082,6 +56913,7 @@ self: { ]; description = "Derives cabal bounds from build plans"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-plan-bounds"; }) {}; @@ -54096,7 +56928,9 @@ self: { executableHaskellDepends = [ base Cabal directory filepath ]; description = "Show dependencies of program being built in current directory"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-progdeps"; + broken = true; }) {}; "cabal-query" = callPackage @@ -54113,6 +56947,7 @@ self: { ]; description = "Helpers for quering .cabal files or hackageDB's 00-index.tar"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cabal-rpm" = callPackage @@ -54161,7 +56996,9 @@ self: { executableHaskellDepends = [ base Cabal ]; description = "The user interface for building and installing Cabal packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-setup"; + broken = true; }) {}; "cabal-sign" = callPackage @@ -54199,6 +57036,8 @@ self: { ]; description = "Topologically sort cabal packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cabal-src" = callPackage @@ -54220,6 +57059,8 @@ self: { ]; description = "Alternative install procedure to avoid the diamond dependency issue"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cabal-test" = callPackage @@ -54235,6 +57076,7 @@ self: { ]; description = "Automated test tool for cabal projects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-test"; }) {}; @@ -54278,6 +57120,8 @@ self: { libraryHaskellDepends = [ base Cabal QuickCheck ]; description = "QuickCheck for Cabal"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cabal-toolkit" = callPackage @@ -54293,6 +57137,8 @@ self: { ]; description = "Helper functions for writing custom Setup.hs scripts."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cabal-uninstall" = callPackage @@ -54320,7 +57166,9 @@ self: { executableHaskellDepends = [ base filepath HTTP network ]; description = "Command-line tool for uploading packages to Hackage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal-upload"; + broken = true; }) {}; "cabal2arch" = callPackage @@ -54340,6 +57188,7 @@ self: { ]; description = "Create Arch Linux packages from Cabal packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal2arch"; }) {}; @@ -54356,7 +57205,9 @@ self: { ]; description = "Cabal to Description-of-a-Project (DOAP)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal2doap"; + broken = true; }) {}; "cabal2ebuild" = callPackage @@ -54371,6 +57222,8 @@ self: { executableHaskellDepends = [ base curl directory ]; description = "make gentoo's .ebuild file from .cabal file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cabal2ghci" = callPackage @@ -54389,7 +57242,9 @@ self: { ]; description = "A tool to generate .ghci file from .cabal"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal2ghci"; + broken = true; }) {}; "cabal2json" = callPackage @@ -54418,7 +57273,9 @@ self: { testToolDepends = [ sydtest-discover ]; description = "Turn a .cabal file into a .json file"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal2json"; + broken = true; }) {}; "cabal2nix" = callPackage @@ -54495,7 +57352,9 @@ self: { ]; description = "A simple tool to query cabal files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabalQuery"; + broken = true; }) {}; "cabalg" = callPackage @@ -54531,7 +57390,9 @@ self: { ]; description = "Generate pretty graphs of module trees from cabal files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabalgraph"; + broken = true; }) {}; "cabalish" = callPackage @@ -54550,7 +57411,9 @@ self: { ]; description = "Provides access to the cabal file data for shell scripts"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabalish"; + broken = true; }) {}; "cabalmdvrpm" = callPackage @@ -54565,6 +57428,7 @@ self: { executableHaskellDepends = [ base Cabal cabalrpmdeps haskell98 ]; description = "Create mandriva rpm from cabal package"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "cabalmdvspec"; }) {}; @@ -54580,6 +57444,7 @@ self: { executableHaskellDepends = [ base Cabal filepath haskell98 ]; description = "Autogenerate rpm dependencies from cabal files"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "cabalvchk" = callPackage @@ -54593,7 +57458,9 @@ self: { executableHaskellDepends = [ base Cabal ]; description = "Verify installed package version against user-specified constraints"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabalvchk"; + broken = true; }) {}; "cabin" = callPackage @@ -54612,7 +57479,9 @@ self: { ]; description = "Cabal binary sandboxes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabin"; + broken = true; }) {}; "cabocha" = callPackage @@ -54625,6 +57494,8 @@ self: { librarySystemDepends = [ cabocha ]; testHaskellDepends = [ base text-format ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {cabocha = null;}; "cache" = callPackage @@ -54659,6 +57530,8 @@ self: { ]; description = "cached hashmaps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cached" = callPackage @@ -54676,6 +57549,8 @@ self: { ]; description = "Cache values to disk"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cached-io" = callPackage @@ -54742,6 +57617,8 @@ self: { ]; description = "Cache combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "caching-vault" = callPackage @@ -54925,6 +57802,8 @@ self: { ]; description = "A library implementing the Noise protocol"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "caerbannog" = callPackage @@ -54963,6 +57842,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Prelude subsets—take only what you want!"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "caffegraph" = callPackage @@ -54981,6 +57862,7 @@ self: { protocol-buffers-descriptor template-haskell temporary text ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cairo" = callPackage @@ -55047,6 +57929,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "Cairo Haskell binding (partial)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) cairo;}; "cake" = callPackage @@ -55069,6 +57953,7 @@ self: { ]; description = "A build-system library and driver"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "cake"; }) {}; @@ -55099,6 +57984,8 @@ self: { ]; description = "Third cake the Makefile EDSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cakyrespa" = callPackage @@ -55116,6 +58003,7 @@ self: { ]; description = "run turtle like LOGO with lojban"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cakyrespa"; }) {}; @@ -55131,7 +58019,9 @@ self: { executableHaskellDepends = [ base ]; description = "Calendar Layout Algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bookings-test"; + broken = true; }) {}; "cal3d" = callPackage @@ -55144,6 +58034,8 @@ self: { librarySystemDepends = [ cal3d ]; description = "Haskell binding to the Cal3D animation library"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {cal3d = null;}; "cal3d-examples" = callPackage @@ -55158,6 +58050,7 @@ self: { executableHaskellDepends = [ base cal3d cal3d-opengl OpenGL SDL ]; description = "Examples for the Cal3d animation library"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "cal3d-opengl" = callPackage @@ -55169,6 +58062,7 @@ self: { libraryHaskellDepends = [ base cal3d OpenGL ]; description = "OpenGL rendering for the Cal3D animation library"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "calamity" = callPackage @@ -55199,6 +58093,7 @@ self: { ]; description = "A library for writing discord bots in haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "calamity-commands" = callPackage @@ -55228,6 +58123,7 @@ self: { executableHaskellDepends = [ array base harpy haskell98 mtl ]; description = "A small compiler for arithmetic expressions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "calc"; }) {}; @@ -55250,6 +58146,7 @@ self: { ]; description = "A calculator repl, with variables, functions & Mathematica like dynamic plots"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "calculator"; }) {}; @@ -55271,6 +58168,7 @@ self: { ]; description = "Calculation tool and library supporting units"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "caldims"; }) {}; @@ -55289,7 +58187,9 @@ self: { ]; description = "a logic programming language based on the calculus of constructions"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "caledon"; + broken = true; }) {}; "calendar-recycling" = callPackage @@ -55322,7 +58222,9 @@ self: { ]; description = "Commandline tool to get week of the year"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "kw"; + broken = true; }) {}; "call" = callPackage @@ -55348,6 +58250,7 @@ self: { ]; description = "The call game engine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "call-alloy" = callPackage @@ -55372,6 +58275,8 @@ self: { ]; description = "A simple library to call Alloy given a specification"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "call-haskell-from-anything" = callPackage @@ -55390,7 +58295,9 @@ self: { executableHaskellDepends = [ base bytestring data-msgpack mtl ]; description = "Call Haskell functions from other languages via serialization and dynamic libraries"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "call-haskell-from-anything.so"; + broken = true; }) {}; "call-plantuml" = callPackage @@ -55409,6 +58316,8 @@ self: { ]; description = "A simple library to call PlantUML given a diagram specification"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "call-stack" = callPackage @@ -55484,6 +58393,7 @@ self: { description = "CamFort - Cambridge Fortran infrastructure"; license = lib.licenses.asl20; badPlatforms = [ "aarch64-linux" ]; + hydraPlatforms = lib.platforms.none; mainProgram = "camfort"; }) {inherit (pkgs) flint;}; @@ -55518,6 +58428,7 @@ self: { ]; description = "Haskell implementation of the Campfire API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "can-i-haz" = callPackage @@ -55554,6 +58465,7 @@ self: { ]; description = "Canadian income tax calculation"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "complete-canadian-taxes"; }) {}; @@ -55602,6 +58514,8 @@ self: { libraryHaskellDepends = [ arithmoi array base containers random ]; description = "Arithmetic for Psychedelically Large Numbers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "canonical-filepath" = callPackage @@ -55613,6 +58527,8 @@ self: { libraryHaskellDepends = [ base deepseq directory filepath ]; description = "Abstract data type for canonical file paths"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "canonical-json" = callPackage @@ -55664,6 +58580,7 @@ self: { ]; description = "Utilities for HTTP programming"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "canteven-listen-http" = callPackage @@ -55675,6 +58592,8 @@ self: { libraryHaskellDepends = [ aeson base ]; description = "data types to describe HTTP services"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "canteven-log" = callPackage @@ -55692,6 +58611,8 @@ self: { ]; description = "A canteven way of setting up logging for your program"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "canteven-parsedate" = callPackage @@ -55707,6 +58628,8 @@ self: { ]; description = "Date / time parsing utilities that try to guess the date / time format"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "canteven-template" = callPackage @@ -55745,7 +58668,9 @@ self: { ]; description = "Application for analysis of java source code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cantor"; + broken = true; }) {}; "cantor-pairing" = callPackage @@ -55784,6 +58709,7 @@ self: { executableToolDepends = [ alex happy ]; description = "CAO Compiler"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "cao"; }) {}; @@ -55799,6 +58725,7 @@ self: { executableHaskellDepends = [ array base containers haskell98 ]; description = "Interprets and debug the cap language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cap"; }) {}; @@ -55846,6 +58773,8 @@ self: { ]; description = "OTP-like supervision trees in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "capnp" = callPackage @@ -55891,6 +58820,7 @@ self: { ]; description = "Cap'n Proto for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "capnpc-haskell"; }) {}; @@ -55903,6 +58833,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A list-like type for lazy sequences, with a user-defined termination value"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "capri" = callPackage @@ -55918,7 +58850,9 @@ self: { ]; description = "A simple wrapper over cabal-install to operate in project-private mode"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "capri"; + broken = true; }) {}; "caps" = callPackage @@ -55935,6 +58869,7 @@ self: { testHaskellDepends = [ base mtl tasty tasty-hunit ]; description = "Monadic capabilities with late binding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "captcha-2captcha" = callPackage @@ -55961,6 +58896,7 @@ self: { ]; description = "A package for integrating a variety of captcha solving services"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "captcha-capmonster" = callPackage @@ -55987,6 +58923,7 @@ self: { ]; description = "A package for integrating a variety of captcha solving services"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "captcha-core" = callPackage @@ -56006,6 +58943,7 @@ self: { ]; description = "A package for integrating a variety of captcha solving services"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "car-pool" = callPackage @@ -56028,6 +58966,7 @@ self: { ]; description = "Simple web-server for organizing car-pooling for an event"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "car-pool"; }) {}; @@ -56053,6 +58992,8 @@ self: { ]; description = "High-level OpenGL bindings"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "carbonara" = callPackage @@ -56067,6 +59008,8 @@ self: { ]; description = "some spaghetti code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "carboncopy" = callPackage @@ -56084,6 +59027,7 @@ self: { ]; description = "Drop emails from threads being watched into special CC folder"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "carboncopy"; }) {}; @@ -56163,6 +59107,8 @@ self: { ]; description = "A presentation tool written with Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "carray" = callPackage @@ -56201,7 +59147,9 @@ self: { ]; description = "Carte: A commandline pastebin server"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "carte"; + broken = true; }) {}; "cartel" = callPackage @@ -56230,6 +59178,7 @@ self: { ]; description = "Specify Cabal files in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cartel-init"; }) {}; @@ -56250,6 +59199,8 @@ self: { ]; description = "A hashing class for content-addressed storage"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cas-hashable-s3" = callPackage @@ -56266,6 +59217,7 @@ self: { ]; description = "ContentHashable instances for S3 objects"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "cas-store" = callPackage @@ -56290,6 +59242,7 @@ self: { ]; description = "A content-addressed storage"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "casa-abbreviations-and-acronyms" = callPackage @@ -56313,6 +59266,8 @@ self: { ]; description = "CASA Abbreviations and Acronyms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "casa-client" = callPackage @@ -56396,6 +59351,7 @@ self: { ]; description = "mid-level bindings to CasADi"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {casadi = null;}; "casadi-bindings-control" = callPackage @@ -56412,6 +59368,7 @@ self: { libraryPkgconfigDepends = [ casadi_control ]; description = "low level bindings to casadi-control"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {casadi_control = null;}; "casadi-bindings-core" = callPackage @@ -56428,6 +59385,7 @@ self: { librarySystemDepends = [ casadi ]; description = "autogenerated low level bindings to casadi"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {casadi = null;}; "casadi-bindings-internal" = callPackage @@ -56440,6 +59398,8 @@ self: { librarySystemDepends = [ casadi ]; description = "low level bindings to CasADi"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {casadi = null;}; "casadi-bindings-ipopt-interface" = callPackage @@ -56456,6 +59416,7 @@ self: { libraryPkgconfigDepends = [ casadi_ipopt_interface ]; description = "low level bindings to casadi-ipopt_interface"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {casadi_ipopt_interface = null;}; "casadi-bindings-snopt-interface" = callPackage @@ -56472,6 +59433,7 @@ self: { libraryPkgconfigDepends = [ casadi_snopt_interface ]; description = "low level bindings to casadi-snopt_interface"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {casadi_snopt_interface = null;}; "cascading" = callPackage @@ -56488,6 +59450,8 @@ self: { ]; description = "DSL for HTML CSS (Cascading Style Sheets)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "case-conversion" = callPackage @@ -56542,7 +59506,9 @@ self: { ]; description = "A simplified, faster way to do case-insensitive matching"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "readme-example"; + broken = true; }) {}; "cased" = callPackage @@ -56566,6 +59532,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Combinators for casing on constructors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cases" = callPackage @@ -56597,6 +59565,7 @@ self: { ]; description = "the Computer Algebra SHell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "casing" = callPackage @@ -56625,6 +59594,8 @@ self: { ]; description = "CASR 61.345 Pilot Personal Logbook"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "casr-logbook-html" = callPackage @@ -56644,6 +59615,7 @@ self: { ]; description = "CASR 61.345 Pilot Personal Logbook HTML output"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "casr-logbook-meta" = callPackage @@ -56660,6 +59632,7 @@ self: { ]; description = "Meta-information about entries in a CASR 61.345 logbook (casr-logbook)"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "casr-logbook-meta-html" = callPackage @@ -56680,6 +59653,7 @@ self: { ]; description = "Meta-information about entries in a CASR 61.345 logbook (casr-logbook) HTML output"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "casr-logbook-reports" = callPackage @@ -56698,6 +59672,7 @@ self: { ]; description = "CASR 61.345 logbook (casr-logbook) reports."; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "casr-logbook-reports-html" = callPackage @@ -56718,6 +59693,7 @@ self: { ]; description = "CASR 61.345 logbook reports HTML output"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "casr-logbook-reports-meta" = callPackage @@ -56736,6 +59712,7 @@ self: { ]; description = "Reports on meta-information about entries in a CASR 61.345 logbook (casr-logbook)"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "casr-logbook-reports-meta-html" = callPackage @@ -56758,6 +59735,7 @@ self: { ]; description = "HTML output for reports on meta-information about entries in a CASR 61.345 logbook"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "casr-logbook-types" = callPackage @@ -56776,6 +59754,8 @@ self: { ]; description = "CASR 61.345 Pilot Personal Logbook"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cassandra-cql" = callPackage @@ -56794,6 +59774,8 @@ self: { ]; description = "Haskell client for Cassandra's CQL protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cassandra-thrift" = callPackage @@ -56805,6 +59787,7 @@ self: { libraryHaskellDepends = [ base bytestring containers Thrift ]; description = "thrift bindings to the cassandra database"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "cassava" = callPackage @@ -56852,6 +59835,8 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Conduit interface for cassava package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cassava-embed" = callPackage @@ -56928,6 +59913,8 @@ self: { ]; description = "Auto-generation of records data type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cassava-streams" = callPackage @@ -56949,6 +59936,8 @@ self: { ]; description = "io-streams interface for the cassava CSV library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cassette" = callPackage @@ -56960,6 +59949,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A combinator library for simultaneously defining parsers and pretty printers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cassy" = callPackage @@ -56987,6 +59978,7 @@ self: { ]; description = "A high level driver for the Cassandra datastore"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cast" = callPackage @@ -57016,6 +60008,8 @@ self: { testHaskellDepends = [ base bytestring primitive text ]; description = "Portable CRC-32C"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "caster" = callPackage @@ -57056,7 +60050,9 @@ self: { ]; description = "A tool to manage shared cabal-install sandboxes"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "castle"; + broken = true; }) {}; "casui" = callPackage @@ -57071,6 +60067,7 @@ self: { executableHaskellDepends = [ base gtk haskell98 mtl parsec ]; description = "Equation Manipulator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "casui"; }) {}; @@ -57095,6 +60092,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Exposes a Template Haskell function for generating catamorphisms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "catch-fd" = callPackage @@ -57106,6 +60105,8 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "MonadThrow and MonadCatch, using functional dependencies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "categorical-algebra" = callPackage @@ -57117,6 +60118,7 @@ self: { libraryHaskellDepends = [ base newtype pointless-haskell void ]; description = "Categorical Monoids and Semirings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "categories" = callPackage @@ -57141,6 +60143,7 @@ self: { libraryHaskellDepends = [ alg base dual transformers ]; description = "Categorical types and classes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "category-extras" = callPackage @@ -57168,6 +60171,7 @@ self: { doHaddock = false; description = "A meta-package documenting various packages inspired by category theory"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "category-printf" = callPackage @@ -57179,6 +60183,8 @@ self: { libraryHaskellDepends = [ base bytestring comonad text ]; description = "Highbrow approach to type-safe printf format specifications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "category-traced" = callPackage @@ -57192,6 +60198,8 @@ self: { libraryHaskellDepends = [ base categories ]; description = "Traced monoidal categories"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "catnplus" = callPackage @@ -57211,7 +60219,9 @@ self: { ]; description = "Simple tool to display text files with line numbers and paging"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "catnplus"; + broken = true; }) {}; "cattrap" = callPackage @@ -57238,6 +60248,7 @@ self: { ]; description = "Lays out boxes according to the CSS Box Model"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "cattrap"; }) {}; @@ -57268,6 +60279,8 @@ self: { ]; description = "Ways to write a file cautiously, to reduce the chances of problems such as data loss due to crashes or power failures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cautious-gen" = callPackage @@ -57284,6 +60297,8 @@ self: { hspec QuickCheck ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cayene-lpp" = callPackage @@ -57300,6 +60315,8 @@ self: { testHaskellDepends = [ base base16-bytestring hspec ]; description = "Cayenne Low Power Payload"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cayenne-lpp" = callPackage @@ -57337,6 +60354,8 @@ self: { testHaskellDepends = [ aeson base hspec unordered-containers ]; description = "A Haskell client for the Cayley graph database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cayley-dickson" = callPackage @@ -57371,7 +60390,9 @@ self: { ]; description = "Tool to maintain a database of CABAL packages and their dependencies"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "cblrepo"; + broken = true; }) {}; "cbor-tool" = callPackage @@ -57393,7 +60414,9 @@ self: { ]; description = "A tool for manipulating CBOR"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cbor-tool"; + broken = true; }) {}; "cborg" = callPackage @@ -57452,6 +60475,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "typesafe c-style casts; useful for FFI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cci" = callPackage @@ -57474,6 +60499,8 @@ self: { ]; description = "Bindings for the CCI networking library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {cci = null;}; "ccnx" = callPackage @@ -57485,6 +60512,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "A Haskell implementation of the CCNx network protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cctools-workqueue" = callPackage @@ -57501,6 +60530,7 @@ self: { librarySystemDepends = [ dttools ]; description = "High-level interface to CCTools' WorkQueue library"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {dttools = null;}; "cdar-mBound" = callPackage @@ -57577,6 +60607,8 @@ self: { ]; description = "A library for the Chrome Devtools Protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cedict" = callPackage @@ -57594,7 +60626,9 @@ self: { ]; description = "Convenient Chinese phrase & character lookup"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "zi4pu3"; + broken = true; }) {}; "cef" = callPackage @@ -57609,6 +60643,8 @@ self: { testHaskellDepends = [ base directory doctest filepath ]; description = "CEF log format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cef3-raw" = callPackage @@ -57622,6 +60658,8 @@ self: { libraryPkgconfigDepends = [ gtk2 ]; description = "Raw CEF3 bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {cef = null; inherit (pkgs) gtk2;}; "cef3-simple" = callPackage @@ -57633,6 +60671,7 @@ self: { libraryHaskellDepends = [ base cef3-raw ]; description = "Simple wrapper around cef3-raw"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ceilometer-common" = callPackage @@ -57656,6 +60695,7 @@ self: { ]; description = "Common Haskell types and encoding for OpenStack Ceilometer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cellrenderer-cairo" = callPackage @@ -57669,6 +60709,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "Cairo-based CellRenderer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) gtk2;}; "celtchar" = callPackage @@ -57693,6 +60735,7 @@ self: { testHaskellDepends = [ base hspec raw-strings-qq ]; description = "A tool to build a novel"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "celtchar"; }) {}; @@ -57721,6 +60764,7 @@ self: { testHaskellDepends = [ base ]; description = "Protect and control API access with cerberus"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cerberus"; }) {}; @@ -57783,6 +60827,8 @@ self: { libraryHaskellDepends = [ base cereal ghc-prim ]; description = "Automatic deriving of Serialize using GHC.Generics"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cereal-enumerator" = callPackage @@ -57794,6 +60840,7 @@ self: { libraryHaskellDepends = [ base bytestring cereal enumerator ]; description = "Deserialize things with cereal and enumerator"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "cereal-ieee754" = callPackage @@ -57805,6 +60852,8 @@ self: { libraryHaskellDepends = [ array base cereal ]; description = "Floating point support for the 'cereal' serialization library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cereal-io-streams" = callPackage @@ -57827,6 +60876,7 @@ self: { ]; description = "io-streams support for the cereal binary serialization library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cereal-plus" = callPackage @@ -57850,6 +60900,8 @@ self: { ]; description = "An extended serialization library on top of \"cereal\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cereal-streams" = callPackage @@ -57872,6 +60924,7 @@ self: { ]; description = "Use cereal to encode/decode io-streams"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cereal-text" = callPackage @@ -57952,6 +61005,7 @@ self: { ]; description = "Certificates and Key Reader/Writer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cf" = callPackage @@ -57969,6 +61023,8 @@ self: { ]; description = "Exact real arithmetic using continued fractions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cfenv" = callPackage @@ -57985,6 +61041,8 @@ self: { ]; description = "A library getting the environment when running on Cloud Foundry"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cfg" = callPackage @@ -58009,6 +61067,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Type directed application configuration parsing and accessors"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cfipu" = callPackage @@ -58026,6 +61086,7 @@ self: { ]; description = "cfipu processor for toy brainfuck-like language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cfipu"; }) {}; @@ -58045,6 +61106,7 @@ self: { ]; description = "Constraint Functional-Logic Programming in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cfn-flip" = callPackage @@ -58065,6 +61127,8 @@ self: { ]; description = "Haskell implementation of aws/cfn-flip"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cfopu" = callPackage @@ -58082,6 +61146,7 @@ self: { ]; description = "cfopu processor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cfopu"; }) {}; @@ -58103,7 +61168,9 @@ self: { ]; description = "Parser for categorial grammars"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "CG"; + broken = true; }) {}; "cgen" = callPackage @@ -58123,6 +61190,8 @@ self: { doHaddock = false; description = "generates Haskell bindings and C wrappers for C++ libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cgi" = callPackage @@ -58167,6 +61236,8 @@ self: { libraryHaskellDepends = [ base cgi containers mtl random ]; description = "Simple modular utilities for CGI/FastCGI (sessions, etc.)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cgrep" = callPackage @@ -58213,6 +61284,8 @@ self: { ]; description = "A container-/cgroup-aware substitute for the GHC RTS `-N` flag"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "chain-codes" = callPackage @@ -58258,6 +61331,7 @@ self: { ]; description = "Mining Client for Kadena Chainweb"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "chainweb-mining-client"; }) {}; @@ -58299,6 +61373,7 @@ self: { ]; description = "A REST Web Api server template for building (micro)services"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "chakra-exe"; }) {}; @@ -58353,6 +61428,8 @@ self: { libraryHaskellDepends = [ array base process random ]; description = "Hardware description EDSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "chan" = callPackage @@ -58422,7 +61499,9 @@ self: { ]; description = "Changelog manager for Git projects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "changelogged"; + broken = true; }) {}; "chapelure" = callPackage @@ -58443,6 +61522,7 @@ self: { ]; description = "A diagnostics library for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "char-decode" = callPackage @@ -58487,6 +61567,8 @@ self: { ]; description = "Exposes subspecies types of Char. And naming cases."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "charade" = callPackage @@ -58510,6 +61592,7 @@ self: { ]; description = "Rapid prototyping websites with Snap and Heist"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "charade"; }) {}; @@ -58568,6 +61651,7 @@ self: { ]; description = "Command-line utility to draw charts from input data easily"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "chart"; }) {}; @@ -58580,6 +61664,8 @@ self: { libraryHaskellDepends = [ base Chart ]; description = "Easily render histograms with Chart"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "chart-svg" = callPackage @@ -58602,6 +61688,7 @@ self: { ]; description = "Charting library targetting SVGs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "chart-svg-various" = callPackage @@ -58625,6 +61712,7 @@ self: { testHaskellDepends = [ base doctest numhask ]; description = "See readme.md"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "chart-svg-various"; }) {}; @@ -58650,6 +61738,7 @@ self: { ]; description = "Native haskell charts"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "charter" = callPackage @@ -58677,7 +61766,9 @@ self: { process scientific text wai warp ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "charter-exe"; + broken = true; }) {}; "chaselev-deque" = callPackage @@ -58700,6 +61791,8 @@ self: { ]; description = "Chase & Lev work-stealing lock-free double-ended queues (deques)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "chassis" = callPackage @@ -58782,6 +61875,8 @@ self: { libraryHaskellDepends = [ base chatty transformers ]; description = "Provides some classes and types for dealing with text, using the fundaments of Chatty"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "chatty-utils" = callPackage @@ -58821,7 +61916,9 @@ self: { ]; description = "The ChatWork API in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sample-exe"; + broken = true; }) {}; "cheapskate" = callPackage @@ -58843,7 +61940,9 @@ self: { executableHaskellDepends = [ base blaze-html bytestring text ]; description = "Experimental markdown processor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cheapskate"; + broken = true; }) {}; "cheapskate-highlight" = callPackage @@ -58861,6 +61960,7 @@ self: { ]; description = "Code highlighting for cheapskate"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cheapskate-lucid" = callPackage @@ -58874,6 +61974,7 @@ self: { libraryHaskellDepends = [ base blaze-html cheapskate lucid ]; description = "Use cheapskate with Lucid"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cheapskate-terminal" = callPackage @@ -58900,6 +62001,7 @@ self: { ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cheapskate-terminal"; }) {}; @@ -58913,6 +62015,8 @@ self: { testHaskellDepends = [ base doctest QuickCheck ]; description = "Checks context free grammar for ambiguity using brute force up to given limit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "check-email" = callPackage @@ -58944,6 +62048,7 @@ self: { ]; description = "Check whether module and package imports conform to the PVP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; }) {}; @@ -58958,6 +62063,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Bounds-checking integer types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "checkers" = callPackage @@ -59003,7 +62110,9 @@ self: { ]; description = "Generate checklists relevant to a given patch"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "checkmate"; + broken = true; }) {}; "checksum" = callPackage @@ -59166,6 +62275,7 @@ self: { ]; description = "Query interface for Chevalier"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "chez-grater" = callPackage @@ -59196,7 +62306,9 @@ self: { ]; description = "Parse and scrape recipe blogs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "chez-grater"; + broken = true; }) {}; "chiasma" = callPackage @@ -59220,6 +62332,7 @@ self: { ]; description = "A tmux client for Polysemy"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; }) {}; "chiasma-test" = callPackage @@ -59245,6 +62358,7 @@ self: { ]; description = "A tmux client for Polysemy"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; }) {}; "chimera" = callPackage @@ -59284,6 +62398,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "Haskell bindings for Chipmunk2D physics engine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "chitauri" = callPackage @@ -59303,6 +62419,7 @@ self: { testHaskellDepends = [ base ]; description = "Helper for the Major System"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "chitauri"; }) {}; @@ -59338,6 +62455,8 @@ self: { libraryHaskellDepends = [ base MonadRandom ]; description = "Choose random elements from a stream"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "choose-exe" = callPackage @@ -59354,6 +62473,7 @@ self: { ]; description = "Command-line program to choose random element from a stream"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "choose"; }) {}; @@ -59372,6 +62492,8 @@ self: { ]; description = "A module containing basic functions that the prelude does not offer"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "chorale-geo" = callPackage @@ -59389,6 +62511,7 @@ self: { ]; description = "A module containing basic geo functions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "chp" = callPackage @@ -59404,6 +62527,8 @@ self: { ]; description = "An implementation of concurrency ideas from Communicating Sequential Processes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "chp-mtl" = callPackage @@ -59415,6 +62540,7 @@ self: { libraryHaskellDepends = [ base chp chp-plus mtl ]; description = "MTL class instances for the CHP library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "chp-plus" = callPackage @@ -59431,6 +62557,7 @@ self: { ]; description = "A set of high-level concurrency utilities built on Communicating Haskell Processes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "chp-spec" = callPackage @@ -59446,6 +62573,7 @@ self: { ]; description = "A mirror implementation of chp that generates a specification of the program"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "chp-transformers" = callPackage @@ -59457,6 +62585,7 @@ self: { libraryHaskellDepends = [ base chp chp-plus transformers ]; description = "Transformers instances for the CHP library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "chr-core" = callPackage @@ -59510,6 +62639,7 @@ self: { executableHaskellDepends = [ base chr-data ]; description = "AST + surface language around chr"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "chr-term"; }) {}; @@ -59524,6 +62654,8 @@ self: { libraryHaskellDepends = [ base containers uulib ]; description = "Parsing for chr library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "chr-pretty" = callPackage @@ -59572,6 +62704,7 @@ self: { ]; description = "neovim package manager"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "chromatin"; }) {}; @@ -59586,6 +62719,8 @@ self: { ]; description = "measure timings of data evaluation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "chronologique" = callPackage @@ -59701,6 +62836,7 @@ self: { ]; description = "FFI for Chu2 Agda Web Server Interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "chuchu" = callPackage @@ -59718,6 +62854,7 @@ self: { testHaskellDepends = [ base HUnit text transformers unix ]; description = "Behaviour Driven Development like Cucumber for Haskell"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "chunked-data" = callPackage @@ -59744,6 +62881,7 @@ self: { libraryHaskellDepends = [ base haskell98 parsec template-haskell ]; description = "Simple template library with static safety"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "chunky" = callPackage @@ -59759,7 +62897,9 @@ self: { testHaskellDepends = [ base binary bytestring HUnit text ]; description = "Human-readable storage of text/binary objects"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "chunky-test"; + broken = true; }) {}; "church" = callPackage @@ -59771,6 +62911,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Automatically convert Generic instances to and from church representations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "church-list" = callPackage @@ -59794,6 +62936,8 @@ self: { libraryHaskellDepends = [ base deepseq semigroupoids semigroups ]; description = "Church encoded Maybe"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "church-pair" = callPackage @@ -59825,6 +62969,8 @@ self: { ]; description = "Channel/Arrow based streaming computation library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cicero-api" = callPackage @@ -59849,7 +62995,9 @@ self: { ]; description = "API bindings to IOHK's Cicero job scheduler"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "cicero-cli"; + broken = true; }) {}; "cielo" = callPackage @@ -59872,6 +63020,8 @@ self: { ]; description = "Cielo API v3 Bindings for Haskell"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cil" = callPackage @@ -59883,6 +63033,8 @@ self: { libraryHaskellDepends = [ base bytestring language-c ]; description = "An interface to CIL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cimple" = callPackage @@ -59910,6 +63062,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Simple C-like programming language"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cinvoke" = callPackage @@ -59922,6 +63076,8 @@ self: { librarySystemDepends = [ cinvoke ]; description = "A binding to cinvoke"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {cinvoke = null;}; "cio" = callPackage @@ -59933,6 +63089,8 @@ self: { libraryHaskellDepends = [ base monad-stm mtl parallel-io stm ]; description = "A monad for concurrent IO on a thread pool"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cipher-aes" = callPackage @@ -59979,6 +63137,8 @@ self: { ]; description = "AES and common modes using AES-NI when available"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cipher-blowfish" = callPackage @@ -60004,6 +63164,8 @@ self: { ]; description = "Blowfish cipher"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cipher-camellia" = callPackage @@ -60054,6 +63216,8 @@ self: { ]; description = "DES and 3DES primitives"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cipher-rc4" = callPackage @@ -60140,6 +63304,7 @@ self: { ]; description = "Circle API client for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "circle-packing" = callPackage @@ -60170,6 +63335,8 @@ self: { ]; description = "The CircleCI REST API for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "circuit-breaker" = callPackage @@ -60307,6 +63474,7 @@ self: { ]; description = "convert document IDs such as DOI, ISBN, arXiv ID to bibliographic reference"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "citeproc" = callPackage @@ -60353,6 +63521,8 @@ self: { ]; description = "A Citation Style Language implementation in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "citeproc-hs-pandoc-filter" = callPackage @@ -60372,6 +63542,7 @@ self: { ]; description = "A Pandoc filter for processing bibliographic references with citeproc-hs"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "citeproc-hs"; }) {}; @@ -60412,7 +63583,9 @@ self: { ]; description = "A new Haskeleton package"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; mainProgram = "cj-token"; + broken = true; }) {}; "cjk" = callPackage @@ -60430,6 +63603,8 @@ self: { testHaskellDepends = [ base ]; description = "Data about Chinese, Japanese and Korean characters and languages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cl3" = callPackage @@ -60458,6 +63633,8 @@ self: { libraryHaskellDepends = [ base cl3 hmatrix ]; description = "Interface to/from Cl3 and HMatrix"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cl3-linear-interface" = callPackage @@ -60469,6 +63646,8 @@ self: { libraryHaskellDepends = [ base cl3 linear ]; description = "Interface to/from Cl3 and Linear"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "clac" = callPackage @@ -60487,6 +63666,7 @@ self: { ]; description = "Simple CLI RPN calculator"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "clac"; }) {}; @@ -60522,6 +63702,7 @@ self: { ]; description = "Compiles Clafer models to other formats: Alloy, JavaScript, JSON, HTML, Dot"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "clafer"; }) {}; @@ -60555,6 +63736,7 @@ self: { ]; description = "claferIG is an interactive tool that generates instances of Clafer models"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "claferIG"; }) {}; @@ -60575,6 +63757,7 @@ self: { ]; description = "A wiki-based IDE for literate modeling with Clafer"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "clang-compilation-database" = callPackage @@ -60587,6 +63770,8 @@ self: { testHaskellDepends = [ aeson base bytestring ]; description = "JSON Compilation Database Format encoding and decoding"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "clang-pure" = callPackage @@ -60609,6 +63794,8 @@ self: { testHaskellDepends = [ base bytestring lens ]; description = "Pure C++ code analysis with libclang"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (self.llvmPackages) clang;}; "clanki" = callPackage @@ -60624,7 +63811,9 @@ self: { ]; description = "Command-line spaced-repetition software"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "clanki"; + broken = true; }) {}; "clarifai" = callPackage @@ -60642,6 +63831,8 @@ self: { ]; description = "API Client for the Clarifai API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "clash" = callPackage @@ -60661,6 +63852,7 @@ self: { ]; description = "CAES Language for Synchronous Hardware (CLaSH)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "clash-ghc" = callPackage @@ -60691,6 +63883,7 @@ self: { executableHaskellDepends = [ base ]; description = "Clash: a functional hardware description language - GHC frontend"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "clash-lib" = callPackage @@ -60737,6 +63930,7 @@ self: { ]; description = "Clash: a functional hardware description language - As a library"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "v16-upgrade-primitives"; }) {}; @@ -60758,6 +63952,7 @@ self: { ]; description = "Hedgehog Generators for clash-lib"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "clash-multisignal" = callPackage @@ -60772,6 +63967,7 @@ self: { base clash-prelude deepseq ghc-typelits-knownnat QuickCheck ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "clash-prelude" = callPackage @@ -60810,6 +64006,8 @@ self: { ]; description = "Clash: a functional hardware description language - Prelude library"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "clash-prelude-hedgehog" = callPackage @@ -60826,6 +64024,7 @@ self: { ]; description = "Hedgehog Generators for clash-prelude"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "clash-prelude-quickcheck" = callPackage @@ -60838,6 +64037,7 @@ self: { libraryHaskellDepends = [ base clash-prelude QuickCheck ]; description = "QuickCheck instances for various types in the CλaSH Prelude"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "clash-shake" = callPackage @@ -60855,6 +64055,7 @@ self: { ]; description = "Shake rules for building Clash programs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "clash-systemverilog" = callPackage @@ -60872,6 +64073,7 @@ self: { ]; description = "CAES Language for Synchronous Hardware - SystemVerilog backend"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "clash-verilog" = callPackage @@ -60889,6 +64091,7 @@ self: { ]; description = "CAES Language for Synchronous Hardware - Verilog backend"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "clash-vhdl" = callPackage @@ -60906,6 +64109,7 @@ self: { ]; description = "CAES Language for Synchronous Hardware - VHDL backend"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "clashilator" = callPackage @@ -60929,6 +64133,7 @@ self: { ]; description = "Automated Clash to Verilator bridge"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "clashilator"; }) {}; @@ -60972,6 +64177,7 @@ self: { ]; description = "Classify sounds produced by Xenopus laevis"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "classify-frog"; }) {}; @@ -60989,6 +64195,8 @@ self: { ]; description = "Super simple InfluxDB package in Classy-MTL style"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "classy-miso" = callPackage @@ -61009,6 +64217,7 @@ self: { testHaskellDepends = [ base miso rfc ]; description = "Typeclass based support for Miso, the Tasty Web Framework for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "classy-miso-demo"; }) {}; @@ -61025,6 +64234,8 @@ self: { ]; description = "Fork of the monad-parallel package using monad-control"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "classy-prelude" = callPackage @@ -61102,6 +64313,8 @@ self: { benchmarkHaskellDepends = [ base criterion parallel uniplate ]; description = "Fuseable type-class based generics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "clay" = callPackage @@ -61152,6 +64365,7 @@ self: { libraryToolDepends = [ hsx2hs ]; description = "A secure, reliable content management system (CMS) and blogging platform"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) openssl;}; "clckwrks-cli" = callPackage @@ -61174,6 +64388,7 @@ self: { ]; description = "a command-line interface for adminstrating some aspects of clckwrks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "clckwrks-cli"; }) {}; @@ -61196,6 +64411,7 @@ self: { executableToolDepends = [ hsx2hs ]; description = "clckwrks.com"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "clckwrks-dot-com-server"; }) {}; @@ -61222,6 +64438,7 @@ self: { libraryToolDepends = [ hsx2hs ]; description = "bug tracking plugin for clckwrks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "clckwrks-plugin-ircbot" = callPackage @@ -61245,6 +64462,7 @@ self: { libraryToolDepends = [ hsx2hs ]; description = "ircbot plugin for clckwrks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "clckwrks-plugin-mailinglist" = callPackage @@ -61269,6 +64487,7 @@ self: { ]; description = "mailing list plugin for clckwrks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "clckwrks-plugin-media" = callPackage @@ -61291,6 +64510,7 @@ self: { ]; description = "media plugin for clckwrks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "clckwrks-plugin-page" = callPackage @@ -61316,6 +64536,7 @@ self: { libraryToolDepends = [ hsx2hs ]; description = "support for CMS/Blogging in clckwrks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "clckwrks-plugin-redirect" = callPackage @@ -61340,6 +64561,7 @@ self: { ]; description = "support redirects for CMS/Blogging in clckwrks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "clckwrks-theme-bootstrap" = callPackage @@ -61357,6 +64579,7 @@ self: { ]; description = "simple bootstrap based template for clckwrks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "clckwrks-theme-clckwrks" = callPackage @@ -61374,6 +64597,7 @@ self: { ]; description = "simple bootstrap based template for clckwrks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "clckwrks-theme-geo-bootstrap" = callPackage @@ -61386,6 +64610,7 @@ self: { libraryHaskellDepends = [ base clckwrks hsp text ]; description = "geo bootstrap based template for clckwrks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cld2" = callPackage @@ -61397,6 +64622,8 @@ self: { libraryHaskellDepends = [ base bytestring hashable text ]; description = "Haskell bindings to Google's Compact Language Detector 2"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "clean-home" = callPackage @@ -61426,6 +64653,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Open unions without need for Typeable"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cleff" = callPackage @@ -61451,6 +64680,8 @@ self: { ]; description = "Fast and concise extensible effects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cleff-plugin" = callPackage @@ -61468,6 +64699,7 @@ self: { ]; description = "Automatic disambiguation for extensible effects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "clerk" = callPackage @@ -61507,6 +64739,7 @@ self: { ]; description = "Colorized LESS"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "cless"; }) {}; @@ -61544,6 +64777,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Testing framework for Morley"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "clevercss" = callPackage @@ -61558,7 +64792,9 @@ self: { executableHaskellDepends = [ parsec ]; description = "A CSS preprocessor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "clevercss"; + broken = true; }) {}; "clexer" = callPackage @@ -61570,6 +64806,8 @@ self: { libraryHaskellDepends = [ base containers mtl parsec ]; description = "Lexes C++ code into simple tokens"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cli" = callPackage @@ -61625,6 +64863,8 @@ self: { testHaskellDepends = [ base doctest filemanip hspec QuickCheck ]; description = "Simple project template from stack"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cli-extras" = callPackage @@ -61644,6 +64884,8 @@ self: { ]; description = "Miscellaneous utilities for building and working with command line interfaces"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cli-git" = callPackage @@ -61660,6 +64902,7 @@ self: { ]; description = "Bindings to the git command-line interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cli-nix" = callPackage @@ -61676,6 +64919,7 @@ self: { ]; description = "Bindings to the nix command-line interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cli-setup" = callPackage @@ -61705,6 +64949,7 @@ self: { ]; description = "Toy game (tetris on billiard board). Hipmunk in action."; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "click-clack"; }) {}; @@ -61742,6 +64987,7 @@ self: { ]; description = "A Haskell library as database client for Clickhouse"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "clientsession" = callPackage @@ -61786,6 +65032,8 @@ self: { benchmarkHaskellDepends = [ base time ]; description = "A Clifford algebra number type for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "clifford" = callPackage @@ -61818,6 +65066,7 @@ self: { ]; description = "A Clifford algebra library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pendulum"; }) {}; @@ -61838,7 +65087,9 @@ self: { ]; description = "Command Line Interface File Manager"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "clifm"; + broken = true; }) {}; "climb" = callPackage @@ -61861,6 +65112,7 @@ self: { ]; description = "Building blocks for a GHCi-like REPL with colon-commands"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "climb-demo"; }) {}; @@ -61881,6 +65133,8 @@ self: { librarySystemDepends = [ clingo ]; description = "Haskell bindings to the Clingo ASP solver"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) clingo;}; "clippard" = callPackage @@ -61892,6 +65146,8 @@ self: { libraryHaskellDepends = [ base process ]; description = "A simple Haskell library for copying text to the clipboard in a cross-platform way"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "clipper" = callPackage @@ -61903,6 +65159,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell API to clipper (2d polygon union/intersection/xor/clipping API)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "clippings" = callPackage @@ -61928,6 +65186,7 @@ self: { ]; description = "A parser/generator for Kindle-format clipping files (`My Clippings.txt`),"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "clippings2tsv"; }) {}; @@ -61941,6 +65200,8 @@ self: { testHaskellDepends = [ base ]; description = "Tiny library to pretty print sparklines onto the CLI"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "clist" = callPackage @@ -61974,7 +65235,9 @@ self: { executableHaskellDepends = [ base ]; description = "Post tweets from stdin"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tweet"; + broken = true; }) {}; "cloben" = callPackage @@ -61992,7 +65255,9 @@ self: { ]; description = "Clone and benchmark Haskell cabal projects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cloben"; + broken = true; }) {}; "clock" = callPackage @@ -62018,6 +65283,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "A couple functions that probably should be in the 'clock' package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "clocked" = callPackage @@ -62034,6 +65301,8 @@ self: { libraryPkgconfigDepends = [ QtCore ]; description = "timer functionality to clock IO commands"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {QtCore = null;}; "clogparse" = callPackage @@ -62050,6 +65319,8 @@ self: { ]; description = "Parse IRC logs such as the #haskell logs on tunes.org"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "clone-all" = callPackage @@ -62069,7 +65340,9 @@ self: { ]; description = "Clone all github repositories from a given user"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "clone-all"; + broken = true; }) {}; "closed" = callPackage @@ -62100,6 +65373,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Closed type class declarations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "closed-intervals" = callPackage @@ -62117,6 +65392,8 @@ self: { ]; description = "Closed intervals of totally ordered types"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "closure" = callPackage @@ -62128,6 +65405,8 @@ self: { libraryHaskellDepends = [ base hashable unordered-containers ]; description = "Depth- and breadth-first set closures"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cloud-haskell" = callPackage @@ -62151,6 +65430,7 @@ self: { doHaddock = false; description = "The Cloud Haskell Application Platform"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cloud-seeder" = callPackage @@ -62179,6 +65459,7 @@ self: { ]; description = "A tool for interacting with AWS CloudFormation"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; }) {}; "cloudfront-signer" = callPackage @@ -62195,6 +65476,8 @@ self: { ]; description = "CloudFront URL signer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cloudi" = callPackage @@ -62229,6 +65512,7 @@ self: { ]; description = "A cloud in the file system"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "cloudyfs"; }) {}; @@ -62248,6 +65532,8 @@ self: { ]; description = "Create Core Lightning Plugins"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "clr-bindings" = callPackage @@ -62264,6 +65550,7 @@ self: { testHaskellDepends = [ base ]; description = "Glue between clr-host and clr-typed"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "clr-host" = callPackage @@ -62284,6 +65571,8 @@ self: { testHaskellDepends = [ base ]; description = "Hosting the Common Language Runtime"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) glib; inherit (pkgs) mono;}; "clr-inline" = callPackage @@ -62313,6 +65602,7 @@ self: { ]; description = "Quasiquoters for inline C# and F#"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "clr-marshal" = callPackage @@ -62336,6 +65626,8 @@ self: { testHaskellDepends = [ base clr-marshal hspec text ]; description = "A strongly typed Haskell interface to the CLR type system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "clr-win-linker" = callPackage @@ -62383,6 +65675,7 @@ self: { ]; description = "C to Lua data wrapper generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "clua"; }) {}; @@ -62406,6 +65699,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "simple alternative to type classes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "clustering" = callPackage @@ -62431,6 +65726,7 @@ self: { ]; description = "High performance clustering algorithms"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "clustertools" = callPackage @@ -62449,6 +65745,7 @@ self: { ]; description = "Tools for manipulating sequence clusters"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "clutterhs" = callPackage @@ -62466,6 +65763,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "Bindings to the Clutter animation library"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) clutter; inherit (pkgs) pango;}; "cmaes" = callPackage @@ -62545,6 +65843,8 @@ self: { ]; description = "Code highlighting for cmark"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cmark-lucid" = callPackage @@ -62569,6 +65869,8 @@ self: { libraryHaskellDepends = [ base cmark ]; description = "Pattern synonyms for cmark"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cmark-sections" = callPackage @@ -62587,6 +65889,8 @@ self: { ]; description = "Represent cmark-parsed Markdown as a tree of sections"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cmath" = callPackage @@ -62598,6 +65902,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A binding to the standard C math library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cmathml3" = callPackage @@ -62617,6 +65923,7 @@ self: { executableHaskellDepends = [ base Cabal filepath ]; description = "Data model, parser, serialiser and transformations for Content MathML 3"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mathtest"; }) {}; @@ -62634,6 +65941,8 @@ self: { ]; description = "Library to compose and reuse command line fragments"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cmdargs" = callPackage @@ -62687,6 +65996,8 @@ self: { libraryHaskellDepends = [ base mtl split syb transformers ]; description = "a library for command line parsing & online help"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cmdtheline" = callPackage @@ -62708,6 +66019,8 @@ self: { ]; description = "Declarative command-line option parsing and documentation library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cmf" = callPackage @@ -62720,6 +66033,8 @@ self: { testHaskellDepends = [ base containers hedgehog ]; description = "(C)oncurrent (M)onoidal (F)olds"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cml" = callPackage @@ -62742,6 +66057,8 @@ self: { libraryHaskellDepends = [ array base ]; description = "A library for C-like programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cmph" = callPackage @@ -62760,6 +66077,8 @@ self: { testSystemDepends = [ cmph ]; description = "low level interface to CMPH"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {cmph = null;}; "cmptype" = callPackage @@ -62774,6 +66093,7 @@ self: { ]; description = "Compare types of any kinds"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cmt" = callPackage @@ -62800,7 +66120,9 @@ self: { testToolDepends = [ tasty-discover ]; description = "Write consistent git commit messages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cmt"; + broken = true; }) {}; "cmu" = callPackage @@ -62844,6 +66166,7 @@ self: { ]; description = "Detailed visualization of CMs, HMMs and their comparisions"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "cnc-spec-compiler" = callPackage @@ -62865,6 +66188,7 @@ self: { ]; description = "Compiler/Translator for CnC Specification Files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cnc"; }) {}; @@ -62898,6 +66222,7 @@ self: { ]; description = "Hardware software co-design Feldspar"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "co-log" = callPackage @@ -62924,6 +66249,7 @@ self: { testHaskellDepends = [ base co-log-core doctest Glob hedgehog ]; description = "Composable Contravariant Comonadic Logging Library"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "co-log-concurrent" = callPackage @@ -63006,6 +66332,7 @@ self: { ]; description = "A Polysemy logging effect for high quality (unstructured) logs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -63027,6 +66354,8 @@ self: { ]; description = "Syslog implementation on top of 'co-log-core'"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "coalpit" = callPackage @@ -63045,6 +66374,8 @@ self: { ]; description = "Command-line options and DSV parsing and printing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cobot" = callPackage @@ -63097,6 +66428,7 @@ self: { ]; description = "Biological data file formats and IO"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cobot-tools" = callPackage @@ -63120,6 +66452,8 @@ self: { ]; description = "Biological data file formats and IO"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {RNA = null;}; "code-builder" = callPackage @@ -63131,6 +66465,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Simple system for generating code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "code-conjure" = callPackage @@ -63181,6 +66517,7 @@ self: { ]; description = "Simple bidirectional serialization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "codec-beam" = callPackage @@ -63195,6 +66532,8 @@ self: { testHaskellDepends = [ base bytestring filepath process text ]; description = "Erlang VM byte code assembler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "codec-libevent" = callPackage @@ -63217,6 +66556,7 @@ self: { ]; description = "Cross-platform structure serialisation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "codec-libevent-generate"; }) {}; @@ -63252,6 +66592,7 @@ self: { ]; description = "A library for manipulating RPM files"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; }) {}; "codecov-haskell" = callPackage @@ -63275,6 +66616,8 @@ self: { testHaskellDepends = [ base HUnit ]; description = "Codecov.io support for Haskell."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "codeforces-cli" = callPackage @@ -63303,7 +66646,9 @@ self: { ]; description = "Command line interface to interact with Codeforces"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "cf"; + broken = true; }) {}; "codemonitor" = callPackage @@ -63322,6 +66667,7 @@ self: { ]; description = "Tool that automatically runs arbitrary commands when files change on disk"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "codemonitor"; }) {}; @@ -63336,6 +66682,8 @@ self: { libraryHaskellDepends = [ base curl mtl network tagsoup ]; description = "Submit and retrieve paste output from CodePad.org."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "codeworld-api" = callPackage @@ -63388,7 +66736,9 @@ self: { ]; description = "A ctags file generator for cabal project dependencies"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "codex"; + broken = true; }) {}; "codo-notation" = callPackage @@ -63404,6 +66754,8 @@ self: { ]; description = "A notation for comonads, analogous to the do-notation for monads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "coerce-role" = callPackage @@ -63453,6 +66805,8 @@ self: { benchmarkHaskellDepends = [ base gauge ]; description = "Utility functions for Coercible types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "coercion-extras" = callPackage @@ -63503,6 +66857,7 @@ self: { ]; description = "Generate clang-format config based on some existing code base"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "coformat-exe"; }) {}; @@ -63541,6 +66896,7 @@ self: { ]; description = "Utilities for Cognimeta products (such as perdure). API may change often."; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "cognimeta-utils"; }) {}; @@ -63565,7 +66921,9 @@ self: { ]; description = "Simple account manager"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "coin"; + broken = true; }) {}; "coinbase-exchange" = callPackage @@ -63604,6 +66962,7 @@ self: { ]; description = "Connector library for the coinbase exchange"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sandbox"; }) {}; @@ -63648,6 +67007,8 @@ self: { ]; description = "Client for Coinbase Pro"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "coincident-root-loci" = callPackage @@ -63667,6 +67028,7 @@ self: { ]; description = "Equivariant CSM classes of coincident root loci"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "coinor-clp" = callPackage @@ -63736,6 +67098,7 @@ self: { ]; description = "Colada implements incremental word class class induction using online LDA"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "colada"; }) {}; @@ -63754,6 +67117,8 @@ self: { ]; description = "Rudimentary JSON-RPC 2.0 client over raw TCP."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cold-widow" = callPackage @@ -63786,7 +67151,9 @@ self: { ]; description = "Generate animated 3d objects in COLLADA"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Examples"; + broken = true; }) {}; "collada-types" = callPackage @@ -63820,6 +67187,7 @@ self: { ]; description = "Collapse the duplication output into clones and return their frequencies"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "collapse-duplication"; }) {}; @@ -63834,7 +67202,9 @@ self: { executableHaskellDepends = [ base ]; description = "utility for collapsing adjacent writes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "collapse"; + broken = true; }) {}; "collate" = callPackage @@ -63856,6 +67226,8 @@ self: { ]; description = "An Applicative Functor for extracting parts of a stream of values"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "collect-errors" = callPackage @@ -63889,6 +67261,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Collection+JSON—Hypermedia Type Tools"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "collections" = callPackage @@ -63902,6 +67275,8 @@ self: { ]; description = "Useful standard collections types and related functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "collections-api" = callPackage @@ -63915,6 +67290,8 @@ self: { libraryHaskellDepends = [ array base QuickCheck ]; description = "API for collection data structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "collections-base-instances" = callPackage @@ -63930,6 +67307,7 @@ self: { ]; description = "Useful standard collections types and related functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "colock" = callPackage @@ -63962,6 +67340,8 @@ self: { ]; description = "Generic types and functions for columnar encoding and decoding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "color-counter" = callPackage @@ -63986,6 +67366,7 @@ self: { ]; description = "Count colors in images"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "color-counter"; }) {}; @@ -64036,6 +67417,8 @@ self: { ]; description = "Colorless | The Programmatic IDL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "colorless-http-client" = callPackage @@ -64052,6 +67435,7 @@ self: { ]; description = "Http Client addon for Colorless"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "colorless-scotty" = callPackage @@ -64065,6 +67449,7 @@ self: { ]; description = "Scotty server add-on for Colorless"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "colors" = callPackage @@ -64106,6 +67491,7 @@ self: { libraryHaskellDepends = [ accelerate base ]; description = "Working with colours in Accelerate"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "colour-space" = callPackage @@ -64129,6 +67515,7 @@ self: { ]; description = "Instances of the manifold-classes for colour types"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "colour-text" = callPackage @@ -64177,6 +67564,8 @@ self: { ]; description = "A jazzy, minimal web framework for Haskell, inspired by Sinatra"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "columbia" = callPackage @@ -64197,6 +67586,7 @@ self: { doHaddock = false; description = "Enhanced serialization using seeking"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "columnar" = callPackage @@ -64214,6 +67604,7 @@ self: { ]; description = "A CSV toolkit based on cassava and enum-text"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "com" = callPackage @@ -64225,6 +67616,8 @@ self: { doHaddock = false; description = "Haskell COM support library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "comark" = callPackage @@ -64243,6 +67636,7 @@ self: { executableHaskellDepends = [ base text ]; description = "Commonmark processing in pure haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "comark-hs"; }) {}; @@ -64303,6 +67697,8 @@ self: { libraryHaskellDepends = [ base containers deepseq ]; description = "Definitions of AST that represents a Commonmark (markdown) document"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "combinat" = callPackage @@ -64324,6 +67720,8 @@ self: { ]; description = "Generate and manipulate various combinatorial objects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "combinat-compat" = callPackage @@ -64343,6 +67741,8 @@ self: { ]; description = "Generate and manipulate various combinatorial objects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "combinat-diagrams" = callPackage @@ -64359,6 +67759,7 @@ self: { ]; description = "Graphical representations for various combinatorial objects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "combinator-interactive" = callPackage @@ -64380,7 +67781,9 @@ self: { ]; description = "SKI Combinator interpreter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lazyi"; + broken = true; }) {}; "combinatorial" = callPackage @@ -64416,6 +67819,8 @@ self: { ]; description = "A number of data structures to represent and allow the manipulation of standard combinatorial problems, used as test problems in computer science"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "combinatorics" = callPackage @@ -64442,6 +67847,8 @@ self: { ]; description = "Various buffer implementations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "comfort-array" = callPackage @@ -64651,7 +68058,9 @@ self: { testHaskellDepends = [ base ]; description = "pattern matching against string based commands"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example1"; + broken = true; }) {}; "commander-cli" = callPackage @@ -64709,6 +68118,8 @@ self: { ]; description = "Library for working with commoditized amounts and price histories"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "commonmark" = callPackage @@ -64860,6 +68271,7 @@ self: { ]; description = "Provide communications security using symmetric ephemeral keys"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "commsec-keyexchange" = callPackage @@ -64878,6 +68290,7 @@ self: { ]; description = "Key agreement for commsec"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "commutative" = callPackage @@ -64951,6 +68364,7 @@ self: { libraryHaskellDepends = [ base category-extras random ]; description = "Comonadic interface for random values"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "comonad-transformers" = callPackage @@ -65011,6 +68425,7 @@ self: { ]; description = "Compatibility checker for OpenAPI"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "compact" = callPackage @@ -65026,6 +68441,8 @@ self: { testHaskellDepends = [ base directory ]; description = "Non-GC'd, contiguous storage for immutable data structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compact-list" = callPackage @@ -65038,6 +68455,8 @@ self: { testHaskellDepends = [ base ]; description = "An append only list in a compact region"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compact-map" = callPackage @@ -65051,6 +68470,8 @@ self: { ]; description = "Compact Data.Map implementation using Data.Binary"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compact-mutable" = callPackage @@ -65070,6 +68491,7 @@ self: { ]; description = "Mutable arrays living on the compact heap"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "compact-mutable-vector" = callPackage @@ -65083,6 +68505,7 @@ self: { testHaskellDepends = [ base compact hspec ]; description = "Mutable vector with different GC characteristics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "compact-sequences" = callPackage @@ -65097,6 +68520,8 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; description = "Stacks, queues, and deques with compact representations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compact-socket" = callPackage @@ -65113,6 +68538,7 @@ self: { ]; description = "Socket functions for compact normal form"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "compact-string" = callPackage @@ -65126,6 +68552,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Fast, packed and strict strings with Unicode support, based on bytestrings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compact-string-fix" = callPackage @@ -65139,6 +68567,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Same as compact-string except with a small fix so it builds on ghc-6.12"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compact-word-vectors" = callPackage @@ -65183,6 +68613,8 @@ self: { ]; description = "A typeclass for structures which can be catMaybed, filtered, and partitioned"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compactmap" = callPackage @@ -65233,6 +68665,8 @@ self: { ]; description = "A highly generic parser combinators library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compdata" = callPackage @@ -65296,6 +68730,8 @@ self: { ]; description = "Compositional Data Types on DAGs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compdata-fixplate" = callPackage @@ -65331,6 +68767,8 @@ self: { ]; description = "Parametric Compositional Data Types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compdoc" = callPackage @@ -65384,6 +68822,8 @@ self: { ]; description = "Client for the Compendium schema server"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compensated" = callPackage @@ -65415,6 +68855,8 @@ self: { libraryHaskellDepends = [ base filepath parsec ]; description = "Helpers and runners for code competitions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compilation" = callPackage @@ -65426,6 +68868,8 @@ self: { libraryHaskellDepends = [ base MissingH ]; description = "Haskell functionality for quickly assembling simple compilers"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compiler-warnings" = callPackage @@ -65455,6 +68899,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "complex numbers with non-mandatory RealFloat"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "complex-integrate" = callPackage @@ -65482,6 +68928,7 @@ self: { ]; description = "Empirical algorithmic complexity"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "componentm" = callPackage @@ -65546,6 +68993,8 @@ self: { ]; description = "Aeson ToJSON/FromJSON implementation for the types of composable-associations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compose-ltr" = callPackage @@ -65569,6 +69018,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Composable monad transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "composite-aeson" = callPackage @@ -65622,6 +69073,8 @@ self: { libraryHaskellDepends = [ base composite-aeson path ]; description = "Formatting data for the path library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "composite-aeson-refined" = callPackage @@ -65637,6 +69090,8 @@ self: { ]; description = "composite-aeson support for Refined from the refined package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "composite-aeson-throw" = callPackage @@ -65721,6 +69176,8 @@ self: { ]; description = "Csv parsing functionality for composite"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "composite-dhall" = callPackage @@ -65751,6 +69208,8 @@ self: { ]; description = "EKG Metrics for Vinyl records"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "composite-hashable" = callPackage @@ -65813,6 +69272,8 @@ self: { ]; description = "Opaleye SQL for Vinyl records"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "composite-swagger" = callPackage @@ -65834,6 +69295,8 @@ self: { ]; description = "Swagger for Vinyl records"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "composite-tuple" = callPackage @@ -65921,6 +69384,8 @@ self: { testHaskellDepends = [ base doctest QuickCheck ]; description = "Composition trees for arbitrary monoids"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compositional-data" = callPackage @@ -65968,6 +69433,7 @@ self: { testHaskellDepends = [ base ]; description = "Plugin to generalize comprehensions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "compressed" = callPackage @@ -65987,6 +69453,8 @@ self: { ]; description = "Compressed containers and reducers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compression" = callPackage @@ -65998,6 +69466,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Common compression algorithms"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "compstrat" = callPackage @@ -66013,6 +69483,8 @@ self: { ]; description = "Strategy combinators for compositional data types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "comptrans" = callPackage @@ -66030,6 +69502,8 @@ self: { ]; description = "Automatically converting ASTs into compositional data types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "computational-algebra" = callPackage @@ -66081,6 +69555,7 @@ self: { ]; description = "Well-kinded computational algebra library, currently supporting Groebner basis"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "computational-geometry" = callPackage @@ -66097,6 +69572,8 @@ self: { ]; description = "Collection of algorithms in Computational Geometry"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "computations" = callPackage @@ -66108,6 +69585,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Advanced notions of computation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "conala-dataset" = callPackage @@ -66200,6 +69679,7 @@ self: { ]; description = "Morphological disambiguation based on constrained CRFs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "concraft-hr" = callPackage @@ -66221,6 +69701,7 @@ self: { executableHaskellDepends = [ cmdargs ]; description = "Part-of-speech tagger for Croatian"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "concraft-hr"; }) {}; @@ -66250,6 +69731,7 @@ self: { ]; description = "Morphological tagger for Polish"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "concraft-pl"; }) {}; @@ -66294,6 +69776,7 @@ self: { ]; description = "Library for the Concrete data format"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "concrete-haskell-autogen" = callPackage @@ -66310,6 +69793,7 @@ self: { ]; description = "Automatically generated Thrift definitions for the Concrete data format"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "concrete-relaxng-parser" = callPackage @@ -66329,7 +69813,9 @@ self: { ]; description = "A parser driven by a standard RELAX NG schema with concrete syntax extensions"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "parse-concrete"; + broken = true; }) {}; "concrete-typerep" = callPackage @@ -66349,6 +69835,8 @@ self: { ]; description = "Binary and Hashable instances for TypeRep"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "concur-core" = callPackage @@ -66402,6 +69890,7 @@ self: { ]; description = "Benchmarks to compare concurrency APIs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "makecharts"; }) {}; @@ -66444,6 +69933,8 @@ self: { benchmarkHaskellDepends = [ bug criterion rerebase ]; description = "Concurrent expanding buffer"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "concurrent-dns-cache" = callPackage @@ -66606,6 +70097,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Concurrent Haskell in ST"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "concurrent-state" = callPackage @@ -66619,6 +70112,8 @@ self: { libraryHaskellDepends = [ base exceptions mtl stm transformers ]; description = "MTL-like library using TVars"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "concurrent-supply" = callPackage @@ -66646,6 +70141,8 @@ self: { libraryHaskellDepends = [ base ]; description = "More utilities and broad-used datastructures for concurrency"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "concurrentoutput" = callPackage @@ -66683,7 +70180,9 @@ self: { testHaskellDepends = [ base cmdargs hourglass hspec QuickCheck ]; description = "Parser and interpreter of OpenStreetMap conditional restriction values"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "conditional-restriction-parser-exe"; + broken = true; }) {}; "condor" = callPackage @@ -66705,6 +70204,7 @@ self: { ]; description = "Information retrieval library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "condor"; }) {}; @@ -66717,6 +70217,8 @@ self: { libraryHaskellDepends = [ array base ]; description = "Library for Condorcet voting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "conductive-base" = callPackage @@ -66728,6 +70230,8 @@ self: { libraryHaskellDepends = [ array base containers random stm time ]; description = "a library for live coding and real-time musical applications"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "conductive-clock" = callPackage @@ -66755,6 +70259,7 @@ self: { ]; description = "a library with examples of using Conductive with hsc3"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "conductive-song" = callPackage @@ -66766,6 +70271,7 @@ self: { libraryHaskellDepends = [ base conductive-base random ]; description = "a library of functions which are useful for composing music"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "conduino" = callPackage @@ -66895,6 +70401,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "conduit-audio interface to the LAME MP3 library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {mp3lame = null;}; "conduit-audio-samplerate" = callPackage @@ -66914,6 +70422,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "conduit-audio interface to the libsamplerate resampling library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {samplerate = null;}; "conduit-audio-sndfile" = callPackage @@ -66978,6 +70488,8 @@ self: { ]; description = "Conduit source and sink for Network.Connection."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "conduit-extra" = callPackage @@ -67041,7 +70553,9 @@ self: { ]; description = "A file-finding conduit that allows user control over traversals"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "find-hs"; + broken = true; }) {}; "conduit-iconv" = callPackage @@ -67062,6 +70576,8 @@ self: { ]; description = "Conduit for character encoding conversion"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "conduit-merge" = callPackage @@ -67088,6 +70604,8 @@ self: { ]; description = "A base layer for network protocols using Conduits"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "conduit-parse" = callPackage @@ -67126,6 +70644,8 @@ self: { ]; description = "Allows conduit to resume sinks to feed multiple sources into it"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "conduit-throttle" = callPackage @@ -67149,6 +70669,7 @@ self: { ]; description = "Throttle Conduit Producers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "conduit-tokenize-attoparsec" = callPackage @@ -67168,7 +70689,9 @@ self: { testHaskellDepends = [ attoparsec base conduit hspec resourcet ]; description = "Conduits for tokenizing streams"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "conduit-tokenize-attoparsec-example"; + broken = true; }) {}; "conduit-vfs" = callPackage @@ -67193,6 +70716,8 @@ self: { ]; description = "Virtual file system for Conduit; disk, pure, and in-memory impls"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "conduit-vfs-zip" = callPackage @@ -67219,6 +70744,7 @@ self: { ]; description = "Zip archive interface for the Conduit Virtual File System"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "conduit-zstd" = callPackage @@ -67253,6 +70779,8 @@ self: { ]; description = "Parser for Haskell-based configuration files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "conf-json" = callPackage @@ -67304,6 +70832,7 @@ self: { text transformers ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "confcrypt"; }) {}; @@ -67370,6 +70899,8 @@ self: { ]; description = "Configuration for reading dhall files"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "conferer-hedis" = callPackage @@ -67398,6 +70929,8 @@ self: { testHaskellDepends = [ base conferer hspec hspec-core text ]; description = "conferer's FromConfig instances for hspec Config"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "conferer-provider-dhall" = callPackage @@ -67418,6 +70951,7 @@ self: { ]; description = "Configuration for reading dhall files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "conferer-provider-json" = callPackage @@ -67438,6 +70972,8 @@ self: { ]; description = "conferer's provider for reading json files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "conferer-provider-yaml" = callPackage @@ -67456,6 +70992,7 @@ self: { ]; description = "Configuration for reading yaml files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "conferer-snap" = callPackage @@ -67476,6 +71013,8 @@ self: { ]; description = "conferer's FromConfig instances for snap Config"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "conferer-source-dhall" = callPackage @@ -67496,6 +71035,7 @@ self: { ]; description = "Configuration for reading dhall files"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "conferer-source-json" = callPackage @@ -67516,6 +71056,8 @@ self: { ]; description = "conferer's source for reading json files"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "conferer-source-yaml" = callPackage @@ -67533,6 +71075,7 @@ self: { ]; description = "Configuration for reading yaml files"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "conferer-warp" = callPackage @@ -67601,6 +71144,7 @@ self: { ]; description = "A .conf file formatter"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "conffmt"; }) {}; @@ -67616,6 +71160,7 @@ self: { testHaskellDepends = [ base deiko-config tasty tasty-hunit text ]; description = "derive typeclass instances for decoding types from HOCON conf"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "config-ini" = callPackage @@ -67667,6 +71212,8 @@ self: { testHaskellDepends = [ base extra hspec lens parsec text ]; description = "Parse config files using parsec and generate parse errors on unhandled keys"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "config-schema" = callPackage @@ -67702,6 +71249,7 @@ self: { ]; description = "A small program for swapping out dot files"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "config-select"; }) {}; @@ -67733,6 +71281,8 @@ self: { libraryHaskellDepends = [ base config-value text ]; description = "Interface between config-value and System.GetOpt"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "configifier" = callPackage @@ -67761,6 +71311,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "parser for config files, shell variables, command line args"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "configuration" = callPackage @@ -67772,6 +71323,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Simple data type for application configuration"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "configuration-tools" = callPackage @@ -67902,6 +71455,7 @@ self: { ]; description = "The next generation of configuration management"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "configurator-pg" = callPackage @@ -67922,6 +71476,8 @@ self: { ]; description = "Reduced parser for configurator-ng config files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "confsolve" = callPackage @@ -67940,7 +71496,9 @@ self: { ]; description = "A command line tool for resolving conflicts of file synchronizers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "confsolve"; + broken = true; }) {}; "congruence-relation" = callPackage @@ -67952,6 +71510,8 @@ self: { libraryHaskellDepends = [ array base containers ]; description = "Decidable congruence relations for Haskell: up to you whether this is a joke"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "conic-graphs" = callPackage @@ -67967,6 +71527,7 @@ self: { ]; description = "Vinyl-style extensible graphs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "conjugateGradient" = callPackage @@ -67998,7 +71559,9 @@ self: { ]; description = "A BitTorrent client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "conjure"; + broken = true; }) {}; "conkin" = callPackage @@ -68016,6 +71579,8 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Tools for functors from Hask^k to Hask"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "conlogger" = callPackage @@ -68030,7 +71595,9 @@ self: { executableHaskellDepends = [ base text ]; description = "A logger for a concurrent program"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "connection" = callPackage @@ -68067,6 +71634,8 @@ self: { ]; description = "Connection pool built on top of resource-pool and streaming-commons"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "connection-string" = callPackage @@ -68083,6 +71652,8 @@ self: { testHaskellDepends = [ base doctest text ]; description = "A library for parsing connection strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "connections" = callPackage @@ -68100,7 +71671,9 @@ self: { testHaskellDepends = [ base hedgehog time ]; description = "Orders, Galois connections, and lattices"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "doctest"; + broken = true; }) {}; "consistent" = callPackage @@ -68118,6 +71691,8 @@ self: { testHaskellDepends = [ base lifted-async transformers ]; description = "Eventually consistent STM transactions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "console-program" = callPackage @@ -68135,6 +71710,8 @@ self: { ]; description = "Interpret the command line and a config file as commands and options"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "console-prompt" = callPackage @@ -68168,6 +71745,8 @@ self: { libraryHaskellDepends = [ base bytestring primitive ptrdiff ]; description = "Read-only mutable primitives"; license = "(BSD-2-Clause OR Apache-2.0)"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "const-math-ghc-plugin" = callPackage @@ -68180,6 +71759,8 @@ self: { testHaskellDepends = [ base directory process ]; description = "Compiler plugin for constant math elimination"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "constable" = callPackage @@ -68192,6 +71773,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "A safe interface for Const summarization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "constaparser" = callPackage @@ -68214,6 +71797,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Equality by only Constructor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "constrained" = callPackage @@ -68225,6 +71810,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Generalization of standard Functor, Foldable, and Traversable classes"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "constrained-categories" = callPackage @@ -68259,6 +71846,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Constrained Categories"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "constrained-dynamic" = callPackage @@ -68271,6 +71859,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Dynamic typing with retained constraints"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "constrained-monads" = callPackage @@ -68294,6 +71884,8 @@ self: { ]; description = "Typeclasses and instances for monads with constraints"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "constrained-normal" = callPackage @@ -68320,6 +71912,7 @@ self: { ]; description = "Instances of standard platform types for 'constrained' package"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "constraint" = callPackage @@ -68333,6 +71926,7 @@ self: { libraryHaskellDepends = [ base category unconstrained ]; description = "Reified constraints"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "constraint-classes" = callPackage @@ -68355,6 +71949,7 @@ self: { libraryHaskellDepends = [ base indextype ]; description = "Some conviencience type functions for manipulating constraints"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "constraint-reflection" = callPackage @@ -68366,6 +71961,7 @@ self: { libraryHaskellDepends = [ base category constraint reflection ]; description = "Constraint reflection"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "constraint-tuples" = callPackage @@ -68417,6 +72013,8 @@ self: { ]; description = "Manipulating constraints and deriving class instances programmatically"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "constraints-emerge" = callPackage @@ -68433,6 +72031,8 @@ self: { testHaskellDepends = [ base constraints hspec transformers ]; description = "Defer instance lookups until runtime"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "constraints-extras" = callPackage @@ -68487,6 +72087,8 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Haskell version of the Construct library for easy specification of file formats"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "constructible" = callPackage @@ -68502,6 +72104,7 @@ self: { ]; description = "Exact computation with constructible real numbers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "constructive-algebra" = callPackage @@ -68513,6 +72116,8 @@ self: { libraryHaskellDepends = [ base QuickCheck type-level ]; description = "A library of constructive algebra"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "consul-haskell" = callPackage @@ -68537,6 +72142,8 @@ self: { ]; description = "A consul client for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "consumers" = callPackage @@ -68563,6 +72170,7 @@ self: { ]; description = "Concurrent PostgreSQL data consumers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "container" = callPackage @@ -68576,6 +72184,7 @@ self: { ]; description = "Containers abstraction and utilities"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "container-builder" = callPackage @@ -68646,7 +72255,9 @@ self: { ]; description = "Extensive benchmark suite for containers package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "benchmark"; + broken = true; }) {}; "containers-deepseq" = callPackage @@ -68681,6 +72292,8 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols containers ]; description = "Unicode alternatives for common functions and operators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "containers-verified" = callPackage @@ -68692,6 +72305,8 @@ self: { libraryHaskellDepends = [ containers ]; description = "Formally verified drop-in replacement of containers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "content-store" = callPackage @@ -68716,6 +72331,7 @@ self: { ]; description = "Store and retrieve data from an on-disk store"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; }) {}; "context" = callPackage @@ -68825,6 +72441,8 @@ self: { ]; description = "An abstraction of a stack and stack-based monadic context"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "context-wai-middleware" = callPackage @@ -68903,6 +72521,8 @@ self: { libraryHaskellDepends = [ base contiguous primitive ]; description = "contiguous with bounds checks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "contiguous-fft" = callPackage @@ -68914,6 +72534,8 @@ self: { libraryHaskellDepends = [ base contiguous primitive semirings ]; description = "dft of contiguous memory structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "continue" = callPackage @@ -68930,6 +72552,8 @@ self: { ]; description = "Monads with suspension and arbitrary-spot reentry"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "continued-fraction" = callPackage @@ -68960,6 +72584,8 @@ self: { ]; description = "Continued fractions"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "continuum" = callPackage @@ -68976,6 +72602,7 @@ self: { base bytestring cereal containers mtl nanomsg-haskell time ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "continuum-client" = callPackage @@ -68990,6 +72617,7 @@ self: { base bytestring cereal containers mtl nanomsg-haskell time ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "contra-tracer" = callPackage @@ -69012,6 +72640,8 @@ self: { libraryHaskellDepends = [ aeson base contra-tracer ]; description = "A logging library built on top of contra-tracer to make configuring and declaring multiple tracers easy (via generics)"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "contracheck-applicative" = callPackage @@ -69027,6 +72657,8 @@ self: { ]; description = "Validation types/typeclass based on the contravariance"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "contravariant" = callPackage @@ -69069,6 +72701,7 @@ self: { ]; description = "Class of monad transformers which control operations can be lifted thru"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "control-block" = callPackage @@ -69120,6 +72753,8 @@ self: { ]; description = "An alternative to monads in do-notation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "control-event" = callPackage @@ -69147,6 +72782,8 @@ self: { ]; description = "A typeclass for type isomorphisms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "control-monad-attempt" = callPackage @@ -69158,6 +72795,7 @@ self: { libraryHaskellDepends = [ attempt base transformers ]; description = "Monad transformer for attempt. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "control-monad-exception" = callPackage @@ -69227,6 +72865,8 @@ self: { libraryHaskellDepends = [ base failure transformers ]; description = "A class for monads which can fail with an error. (deprecated)"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "control-monad-failure-mtl" = callPackage @@ -69238,6 +72878,8 @@ self: { libraryHaskellDepends = [ base failure mtl ]; description = "A class for monads which can fail with an error for mtl 1 (deprecated)"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "control-monad-free" = callPackage @@ -69315,6 +72957,8 @@ self: { libraryHaskellDepends = [ base contstuff monads-tf ]; description = "ContStuff instances for monads-tf transformers (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "contstuff-transformers" = callPackage @@ -69326,6 +72970,8 @@ self: { libraryHaskellDepends = [ base contstuff transformers ]; description = "Deprecated interface between contstuff 0.7.0 and the transformers package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "converge" = callPackage @@ -69408,6 +73054,7 @@ self: { ]; description = "Injective explicit total and partial conversions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "convert" = callPackage @@ -69425,6 +73072,7 @@ self: { ]; description = "Safe and unsafe data conversion utilities with strong type-level operation. checking."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "convert-annotation" = callPackage @@ -69448,6 +73096,7 @@ self: { ]; description = "Convert the annotation of a gene to another in a delimited file using a variety of different databases"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "convert-annotation"; }) {}; @@ -69481,6 +73130,7 @@ self: { ]; description = "convertible instances for ascii"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "convertible-text" = callPackage @@ -69501,6 +73151,7 @@ self: { ]; description = "Typeclasses and instances for converting between types (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cookbook" = callPackage @@ -69575,6 +73226,7 @@ self: { testHaskellDepends = [ base HUnit lens ]; description = "A representation of latitude and longitude"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "copilot" = callPackage @@ -69595,6 +73247,7 @@ self: { ]; description = "A stream DSL for writing embedded C programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "copilot-c99" = callPackage @@ -69617,6 +73270,8 @@ self: { ]; description = "A compiler for Copilot targeting C99"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "copilot-cbmc" = callPackage @@ -69633,6 +73288,7 @@ self: { ]; description = "Copilot interface to a C model-checker"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "copilot-core" = callPackage @@ -69667,6 +73323,7 @@ self: { ]; description = "FRP sketch programming with Copilot"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "copilot-interpreter" = callPackage @@ -69706,6 +73363,7 @@ self: { ]; description = "A Haskell-embedded DSL for monitoring hard real-time distributed systems"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "copilot-libraries" = callPackage @@ -69719,6 +73377,7 @@ self: { ]; description = "Libraries for the Copilot language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "copilot-prettyprinter" = callPackage @@ -69745,6 +73404,7 @@ self: { ]; description = "A compiler for CoPilot targeting SBV"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "copilot-theorem" = callPackage @@ -69764,6 +73424,7 @@ self: { ]; description = "k-induction for Copilot"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "copr" = callPackage @@ -69783,6 +73444,8 @@ self: { testHaskellDepends = [ base hlint ]; description = "Haskell interface to the Fedora Copr system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "copr-api" = callPackage @@ -69825,7 +73488,9 @@ self: { ]; description = "Yet another shell monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "readme"; + broken = true; }) {}; "core" = callPackage @@ -69837,6 +73502,8 @@ self: { libraryHaskellDepends = [ base bytestring parsec pretty ]; description = "External core parser and pretty printer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "core-compiler" = callPackage @@ -69856,7 +73523,9 @@ self: { executableToolDepends = [ alex happy ]; description = "compile your own mini functional language with Core"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "core-compiler-exe"; + broken = true; }) {}; "core-data" = callPackage @@ -69904,7 +73573,9 @@ self: { ]; description = "A subset of Haskell using in UCC for teaching purpose"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "core-haskell"; + broken = true; }) {}; "core-program" = callPackage @@ -69977,6 +73648,8 @@ self: { testHaskellDepends = [ base ]; description = "\"Provide warnings for unexpected Core generation\""; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "core-webserver-servant" = callPackage @@ -70038,7 +73711,9 @@ self: { ]; description = "A bliki written using yesod. Uses pandoc to process files stored in git."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "corebot-bliki"; + broken = true; }) {}; "corecursive-main" = callPackage @@ -70077,6 +73752,7 @@ self: { librarySystemDepends = [ rocksdb ]; description = "Launches CoreNLP and parses the JSON output"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) rocksdb;}; "cornea" = callPackage @@ -70109,6 +73785,7 @@ self: { libraryHaskellDepends = [ base enumerator monad-coroutine ]; description = "Bridge between the monad-coroutine and enumerator packages"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "coroutine-iteratee" = callPackage @@ -70120,6 +73797,7 @@ self: { libraryHaskellDepends = [ base iteratee monad-coroutine ]; description = "Bridge between the monad-coroutine and iteratee packages"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "coroutine-object" = callPackage @@ -70131,6 +73809,8 @@ self: { libraryHaskellDepends = [ base either free mtl transformers ]; description = "Object-oriented programming realization using coroutine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "couch-hs" = callPackage @@ -70149,7 +73829,9 @@ self: { ]; description = "A CouchDB view server for Haskell"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "couch-hs"; + broken = true; }) {}; "couch-simple" = callPackage @@ -70176,6 +73858,7 @@ self: { testToolDepends = [ couchdb ]; description = "A modern, lightweight, complete client for CouchDB"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {couchdb = null;}; "couchdb-conduit" = callPackage @@ -70205,6 +73888,8 @@ self: { ]; description = "Couch DB client library using http-conduit and aeson"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "couchdb-enumerator" = callPackage @@ -70232,6 +73917,7 @@ self: { ]; description = "Couch DB client library using http-enumerator and aeson"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "count" = callPackage @@ -70286,6 +73972,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "An object frequency counter"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "country" = callPackage @@ -70315,6 +74003,7 @@ self: { ]; description = "Country data type and functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "country_0_2_4_0" = callPackage @@ -70359,6 +74048,8 @@ self: { testHaskellDepends = [ aeson base HTF HUnit ]; description = "ISO 3166 country codes and i18n names"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "courier" = callPackage @@ -70383,6 +74074,8 @@ self: { ]; description = "A message-passing library for simplifying network applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "court" = callPackage @@ -70402,6 +74095,8 @@ self: { ]; description = "Simple and flexible CI system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "covariance" = callPackage @@ -70429,6 +74124,8 @@ self: { testHaskellDepends = [ base hspec HUnit QuickCheck ]; description = "Exhaustivity Checking Library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "coya" = callPackage @@ -70458,6 +74155,8 @@ self: { ]; description = "A simple C++ parser with preprocessor features. C++ refactorings included."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cpio-conduit" = callPackage @@ -70477,6 +74176,8 @@ self: { ]; description = "Conduit-based CPIO"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cpkg" = callPackage @@ -70507,6 +74208,7 @@ self: { testHaskellDepends = [ base hspec hspec-megaparsec megaparsec ]; description = "Build tool for C"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cpkg"; }) {}; @@ -70542,6 +74244,8 @@ self: { testHaskellDepends = [ base process QuickCheck ]; description = "C++ Foreign Import Generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cppfilt" = callPackage @@ -70611,6 +74315,7 @@ self: { ]; description = "Run random effect using cprng-aes, a crypto pseudo number generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "cps-except" = callPackage @@ -70688,7 +74393,9 @@ self: { executableHaskellDepends = [ base mtl process ]; description = "Modify the cpu frequency on OpenBSD systems"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cpuperf"; + broken = true; }) {}; "cpython" = callPackage @@ -70704,6 +74411,8 @@ self: { testPkgconfigDepends = [ python3 ]; description = "Bindings for libpython"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) python3;}; "cql" = callPackage @@ -70752,6 +74461,8 @@ self: { doHaddock = false; description = "Cassandra CQL client"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cql-io-tinylog" = callPackage @@ -70763,6 +74474,7 @@ self: { libraryHaskellDepends = [ base bytestring cql-io tinylog ]; description = "Tinylog integration for cql-io"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "cqrs" = callPackage @@ -70791,6 +74503,8 @@ self: { ]; description = "Command-Query Responsibility Segregation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cqrs-example" = callPackage @@ -70812,6 +74526,7 @@ self: { ]; description = "Example for cqrs package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "cqrs-example"; }) {}; @@ -70829,6 +74544,7 @@ self: { testHaskellDepends = [ base cqrs-core cqrs-testkit hspec random ]; description = "Memory backend for the cqrs package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "cqrs-postgresql" = callPackage @@ -70852,6 +74568,7 @@ self: { ]; description = "PostgreSQL backend for the cqrs package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "cqrs-sqlite3" = callPackage @@ -70872,6 +74589,7 @@ self: { ]; description = "SQLite3 backend for the cqrs package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "cqrs-test" = callPackage @@ -70888,6 +74606,7 @@ self: { ]; description = "Command-Query Responsibility Segregation Test Support"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "cqrs-testkit" = callPackage @@ -70905,6 +74624,7 @@ self: { ]; description = "Command-Query Responsibility Segregation Test Support"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "cqrs-types" = callPackage @@ -70935,7 +74655,9 @@ self: { ]; description = "Code review tool"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "cr"; + broken = true; }) {}; "crack" = callPackage @@ -70948,6 +74670,8 @@ self: { librarySystemDepends = [ crack ]; description = "A haskell binding to cracklib"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {crack = null;}; "crackNum_2_4" = callPackage @@ -70981,6 +74705,7 @@ self: { ]; description = "Crack various integer and floating-point data formats"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "crackNum"; }) {}; @@ -71013,6 +74738,7 @@ self: { ]; description = "A UNIX configuration management library in Haskell"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "craftwerk" = callPackage @@ -71026,6 +74752,8 @@ self: { libraryHaskellDepends = [ base colour mtl vector-space ]; description = "2D graphics library with integrated TikZ output"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "craftwerk-cairo" = callPackage @@ -71037,6 +74765,7 @@ self: { libraryHaskellDepends = [ base cairo craftwerk mtl ]; description = "Cairo backend for Craftwerk"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "craftwerk-gtk" = callPackage @@ -71054,6 +74783,7 @@ self: { ]; description = "Gtk UI for Craftwerk"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "crawlchain" = callPackage @@ -71074,6 +74804,8 @@ self: { ]; description = "Simulation user crawl paths"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "craze" = callPackage @@ -71106,6 +74838,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "HTTP Racing Library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "craze-example"; }) {}; @@ -71135,6 +74868,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Calculate the crc16-ccitt"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "crc16-table" = callPackage @@ -71164,6 +74899,8 @@ self: { description = "Haskell bindings for crc32c"; license = lib.licenses.bsd3; platforms = lib.platforms.x86; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "crdt" = callPackage @@ -71180,6 +74917,8 @@ self: { ]; description = "Conflict-free replicated data types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "crdt-event-fold" = callPackage @@ -71205,6 +74944,8 @@ self: { ]; description = "Garbage collected event folding CRDT"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "creatur" = callPackage @@ -71230,6 +74971,8 @@ self: { ]; description = "Framework for artificial life experiments"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "credential-store" = callPackage @@ -71249,7 +74992,9 @@ self: { testHaskellDepends = [ base bytestring tasty tasty-hunit ]; description = "Library to access secure credential storage providers"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "credential-store-exe"; + broken = true; }) {}; "credentials" = callPackage @@ -71272,6 +75017,7 @@ self: { testHaskellDepends = [ base ]; description = "Secure Credentials Storage and Distribution"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "credentials-cli" = callPackage @@ -71296,6 +75042,7 @@ self: { ]; description = "Secure Credentials Administration"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "credentials"; }) {}; @@ -71318,6 +75065,8 @@ self: { doHaddock = false; description = "Compositional representable executable machines"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "crf-chain1" = callPackage @@ -71335,6 +75084,7 @@ self: { ]; description = "First-order, linear-chain conditional random fields"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "crf-chain1-constrained" = callPackage @@ -71354,6 +75104,7 @@ self: { ]; description = "First-order, constrained, linear-chain conditional random fields"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "crf-chain2-generic" = callPackage @@ -71371,6 +75122,7 @@ self: { ]; description = "Second-order, generic, constrained, linear conditional random fields"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "crf-chain2-tiers" = callPackage @@ -71389,6 +75141,7 @@ self: { ]; description = "Second-order, tiered, constrained, linear conditional random fields"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "critbit" = callPackage @@ -71417,6 +75170,8 @@ self: { ]; description = "Crit-bit maps and sets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "criterion" = callPackage @@ -71510,7 +75265,9 @@ self: { ]; description = "A simple tool for comparing in Criterion benchmark results"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "criterion-cmp"; + broken = true; }) {}; "criterion-compare" = callPackage @@ -71532,7 +75289,9 @@ self: { ]; description = "A simple tool for visualising differences in Criterion benchmark results"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "criterion-compare"; + broken = true; }) {}; "criterion-measurement" = callPackage @@ -71575,6 +75334,8 @@ self: { ]; description = "Enhancement of the \"criterion\" benchmarking library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "criterion-to-html" = callPackage @@ -71593,7 +75354,9 @@ self: { ]; description = "Convert criterion output to HTML reports"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "criterion-to-html"; + broken = true; }) {}; "criu-rpc" = callPackage @@ -71610,6 +75373,7 @@ self: { ]; description = "CRIU RPC client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "criu-rpc-types" = callPackage @@ -71623,6 +75387,7 @@ self: { libraryPkgconfigDepends = [ protobuf ]; description = "Criu RPC protocol buffer types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) protobuf;}; "crjdt-haskell" = callPackage @@ -71638,6 +75403,8 @@ self: { testHaskellDepends = [ base containers hedgehog hspec mtl ]; description = "A Conflict-Free Replicated JSON Datatype for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "crockford" = callPackage @@ -71649,6 +75416,8 @@ self: { libraryHaskellDepends = [ base digits QuickCheck safe ]; description = "An implementation of Douglas Crockford's base32 encoding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "crocodile" = callPackage @@ -71667,7 +75436,9 @@ self: { ]; description = "An offline renderer supporting ray tracing and photon mapping"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "crocodile"; + broken = true; }) {}; "cron" = callPackage @@ -71713,6 +75484,7 @@ self: { ]; description = "Cron datatypes and Attoparsec parser"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "cronus" = callPackage @@ -71730,6 +75502,8 @@ self: { ]; description = "Another bloated standard library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cropty" = callPackage @@ -71756,6 +75530,8 @@ self: { testHaskellDepends = [ base hlint ]; description = "Request and Response types for Eval.so's API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "crunghc" = callPackage @@ -71774,7 +75550,9 @@ self: { ]; description = "A runghc replacement with transparent caching"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "crunghc"; + broken = true; }) {}; "crypt-sha512" = callPackage @@ -71850,6 +75628,8 @@ self: { ]; description = "Generic cryptography cipher benchmarks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "crypto-cipher-tests" = callPackage @@ -71901,6 +75681,7 @@ self: { testHaskellDepends = [ base bytestring QuickCheck ]; description = "An educational tool for studying classical cryptography schemes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "crypto-conduit" = callPackage @@ -71922,6 +75703,7 @@ self: { ]; description = "Conduit interface for cryptographic operations (from crypto-api)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "crypto-enigma" = callPackage @@ -71957,6 +75739,8 @@ self: { ]; description = "Like crypto-pubkey-openssh but not dependent on any specific crypto library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "crypto-multihash" = callPackage @@ -71977,7 +75761,9 @@ self: { testHaskellDepends = [ base bytestring hspec QuickCheck ]; description = "Multihash library on top of cryptonite crypto library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mh"; + broken = true; }) {}; "crypto-numbers" = callPackage @@ -72001,6 +75787,8 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion mtl ]; description = "Cryptographic numbers: functions and algorithms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "crypto-pubkey" = callPackage @@ -72027,6 +75815,7 @@ self: { ]; description = "Public Key cryptography"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "crypto-pubkey-openssh" = callPackage @@ -72050,6 +75839,8 @@ self: { ]; description = "OpenSSH keys decoder/encoder"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "crypto-pubkey-types" = callPackage @@ -72103,6 +75894,8 @@ self: { ]; description = "A random effect using crypto-random"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "crypto-rng" = callPackage @@ -72153,6 +75946,8 @@ self: { ]; description = "A simple high level encryption interface based on cryptonite"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "crypto-sodium" = callPackage @@ -72218,6 +76013,7 @@ self: { ]; description = "Symmetrical block and stream ciphers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cryptocompare" = callPackage @@ -72236,6 +76032,8 @@ self: { testHaskellDepends = [ base hspec hspec-expectations MissingH ]; description = "Haskell wrapper for the cryptocompare API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cryptoconditions" = callPackage @@ -72259,6 +76057,8 @@ self: { ]; description = "Interledger Crypto-Conditions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cryptohash" = callPackage @@ -72414,6 +76214,7 @@ self: { ]; description = "Reversable and secure encoding of object ids as a bytestring"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cryptoids-class" = callPackage @@ -72427,6 +76228,7 @@ self: { libraryHaskellDepends = [ base cryptoids-types exceptions ]; description = "Typeclass-based interface to cryptoids"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cryptoids-types" = callPackage @@ -72444,6 +76246,8 @@ self: { ]; description = "Shared types for encrypting internal object identifiers before exposure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cryptol" = callPackage @@ -72485,6 +76289,7 @@ self: { ]; description = "Cryptol: The Language of Cryptography"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "crypton" = callPackage @@ -72569,6 +76374,8 @@ self: { ]; description = "Simple and easy network connections API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "crypton-x509" = callPackage @@ -72699,6 +76506,7 @@ self: { ]; description = "Cryptography Primitives sink"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cryptonite-conduit" = callPackage @@ -72784,6 +76592,8 @@ self: { ]; description = "Bindings for Cryptsy cryptocurrency exchange API"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "crystalfontz" = callPackage @@ -72795,6 +76605,7 @@ self: { libraryHaskellDepends = [ base crc16-table MaybeT serialport ]; description = "Control Crystalfontz LCD displays"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "csa" = callPackage @@ -72811,6 +76622,8 @@ self: { ]; description = "Connection-set algebra (CSA) library"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cse-ghc-plugin" = callPackage @@ -72822,6 +76635,8 @@ self: { libraryHaskellDepends = [ base ghc ]; description = "Compiler plugin for common subexpression elimination"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "csg" = callPackage @@ -72853,6 +76668,7 @@ self: { ]; description = "Analytical CSG (Constructive Solid Geometry) library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "csg-raycaster"; }) {}; @@ -72871,6 +76687,7 @@ self: { ]; description = "a gallery of Csound instruments"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "csound-controllers" = callPackage @@ -72882,6 +76699,7 @@ self: { libraryHaskellDepends = [ base csound-expression ]; testHaskellDepends = [ base csound-expression ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "csound-expression" = callPackage @@ -72903,6 +76721,7 @@ self: { ]; description = "library to make electronic music"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "csound-expression-dynamic" = callPackage @@ -72922,6 +76741,8 @@ self: { ]; description = "dynamic core for csound-expression library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "csound-expression-opcodes" = callPackage @@ -72939,6 +76760,7 @@ self: { ]; description = "opcodes for the library csound-expression"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "csound-expression-typed" = callPackage @@ -72961,6 +76783,7 @@ self: { ]; description = "typed core for the library csound-expression"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "csound-sampler" = callPackage @@ -72974,6 +76797,7 @@ self: { libraryHaskellDepends = [ base csound-expression transformers ]; description = "A musical sampler based on Csound"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "csp" = callPackage @@ -73004,6 +76828,7 @@ self: { ]; description = "A command line type checker for CSPM files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cspretty" = callPackage @@ -73015,6 +76840,8 @@ self: { libraryHaskellDepends = [ base containers pretty ]; description = "AST and pretty printer for CSPm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "css" = callPackage @@ -73026,6 +76853,8 @@ self: { libraryHaskellDepends = [ base mtl text ]; description = "Minimal monadic CSS DSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "css-easings" = callPackage @@ -73042,6 +76871,8 @@ self: { ]; description = "Defining and manipulating css easing strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "css-selectors" = callPackage @@ -73066,6 +76897,8 @@ self: { ]; description = "Parsing, rendering and manipulating css selectors in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "css-simple" = callPackage @@ -73079,6 +76912,8 @@ self: { benchmarkHaskellDepends = [ base criterion mtl text text-builder ]; description = "eDSL for CSS"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "css-syntax" = callPackage @@ -73167,6 +77002,7 @@ self: { ]; description = "A flexible, fast, enumerator-based CSV parser library for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "csv-nptools" = callPackage @@ -73184,6 +77020,8 @@ self: { ]; description = "A collection of CSV tools"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "csv-sip" = callPackage @@ -73202,6 +77040,8 @@ self: { ]; description = "extracts data from a CSV file"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "csv-table" = callPackage @@ -73247,6 +77087,8 @@ self: { librarySystemDepends = [ ctemplate ]; description = "Binding to the Google ctemplate library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {ctemplate = null;}; "ctkl" = callPackage @@ -73258,6 +77100,8 @@ self: { libraryHaskellDepends = [ array base ]; description = "packaging of Manuel Chakravarty's CTK Light for Hackage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ctpl" = callPackage @@ -73274,6 +77118,7 @@ self: { executableHaskellDepends = [ array base chatty-text chatty-utils ]; description = "A programming language for text modification"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "ctrie" = callPackage @@ -73314,6 +77159,7 @@ self: { ]; description = "Cubic DSL for 3D printing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "cubical" = callPackage @@ -73416,6 +77262,8 @@ self: { doHaddock = false; description = "Haskell Implementation of Cuckoo Filters"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cuckoo-filter" = callPackage @@ -73442,7 +77290,9 @@ self: { ]; description = "Pure and impure Cuckoo Filter"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "benchmarks"; + broken = true; }) {}; "cuda" = callPackage @@ -73546,6 +77396,8 @@ self: { libraryHaskellDepends = [ aeson base bytestring curl text ]; description = "Communicate with web services using JSON"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "curl-cookiejar" = callPackage @@ -73592,7 +77444,9 @@ self: { ]; description = "A framework for declaratively writing curl based API tests"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "curl-runnings"; + broken = true; }) {}; "curlhs" = callPackage @@ -73619,6 +77473,8 @@ self: { testHaskellDepends = [ base parsec text ]; description = "Curly braces (brackets) expanding"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "currencies" = callPackage @@ -73631,6 +77487,8 @@ self: { testHaskellDepends = [ base hspec text ]; description = "Currencies representation, pretty printing and conversion"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "currency" = callPackage @@ -73676,6 +77534,8 @@ self: { ]; description = "Typesafe currency conversion"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "current-locale" = callPackage @@ -73717,6 +77577,8 @@ self: { testHaskellDepends = [ base Cabal filepath mtl ]; description = "Functions for manipulating Curry programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "curry-frontend" = callPackage @@ -73744,7 +77606,9 @@ self: { ]; description = "Compile the functional logic language Curry to several intermediate formats"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "curry-frontend"; + broken = true; }) {}; "currycarbon" = callPackage @@ -73813,6 +77677,7 @@ self: { ]; description = "Fast, Haskell RPC"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "curryrs" = callPackage @@ -73826,6 +77691,8 @@ self: { benchmarkHaskellDepends = [ base ]; description = "Easy to use FFI Bridge for using Rust in Haskell"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cursedcsv" = callPackage @@ -73845,7 +77712,9 @@ self: { ]; description = "Terminal tool for viewing tabular data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cursedcsv"; + broken = true; }) {}; "cursor" = callPackage @@ -73972,6 +77841,8 @@ self: { ]; description = "Library for drawing curve based images"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cusolver" = callPackage @@ -74034,6 +77905,8 @@ self: { libraryHaskellDepends = [ base basic-prelude monad-loops ]; description = "An enhanced prelude, serving as a foundation for my projects"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "cut-the-crap" = callPackage @@ -74072,7 +77945,9 @@ self: { description = "Cuts out uninteresting parts of videos by detecting silences"; license = lib.licenses.mit; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; mainProgram = "cut-the-crap"; + broken = true; }) {pocketsphinx = null; sphinxbase = null;}; "cutter" = callPackage @@ -74113,6 +77988,7 @@ self: { ]; description = "Functional Combinators for Computer Vision"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "test-cv-combinators"; }) {}; @@ -74192,6 +78068,7 @@ self: { ]; description = "Haskell bindings for the neo4j \"cypher\" query language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "czipwith" = callPackage @@ -74236,6 +78113,8 @@ self: { ]; description = "Permissively licensed D-Bus client library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "d10" = callPackage @@ -74283,6 +78162,8 @@ self: { libraryHaskellDepends = [ base mtl random text ]; description = "Declarative visualization on a web browser with DSL approach"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "daemonize-doublefork" = callPackage @@ -74339,6 +78220,8 @@ self: { ]; description = "Compile-time, type-safe directed acyclic graphs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dahdit" = callPackage @@ -74360,6 +78243,8 @@ self: { ]; description = "Binary parsing and serialization with integrated size"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "daino" = callPackage @@ -74391,6 +78276,7 @@ self: { ]; description = "daino is a static site generator (SSG) using shake and pandoc"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "daino"; }) {}; @@ -74410,6 +78296,8 @@ self: { testHaskellDepends = [ base bytestring hspec HUnit QuickCheck ]; description = "Parsing dAmn messages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "danibot" = callPackage @@ -74432,7 +78320,9 @@ self: { executableHaskellDepends = [ base optparse-applicative ]; description = "Basic Slack bot framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "danibot"; + broken = true; }) {}; "dao" = callPackage @@ -74463,7 +78353,9 @@ self: { ]; description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "dao"; + broken = true; }) {}; "dapi" = callPackage @@ -74482,6 +78374,7 @@ self: { ]; description = "Prints a series of dates"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dapi"; }) {}; @@ -74555,6 +78448,7 @@ self: { ]; description = "Comparative benchmark suite for darcs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "darcs-benchmark"; }) {}; @@ -74587,6 +78481,7 @@ self: { executableSystemDepends = [ curl ]; description = "a distributed, interactive, smart revision control system"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "darcs"; }) {inherit (pkgs) curl;}; @@ -74606,6 +78501,8 @@ self: { ]; description = "Tools to help manage Debian packages with Darcs"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "darcs-cabalized" = callPackage @@ -74627,7 +78524,9 @@ self: { executableSystemDepends = [ curl ncurses zlib ]; description = "David's Advanced Version Control System"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "darcs"; + broken = true; }) {inherit (pkgs) curl; inherit (pkgs) ncurses; inherit (pkgs) zlib;}; @@ -74648,6 +78547,7 @@ self: { ]; description = "Import/export git fast-import streams to/from darcs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "darcs-fastconvert"; }) {}; @@ -74667,7 +78567,9 @@ self: { ]; description = "Generate graphs of darcs repository activity"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "darcs-graph"; + broken = true; }) {}; "darcs-monitor" = callPackage @@ -74685,7 +78587,9 @@ self: { ]; description = "Darcs repository monitor (sends email)"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "darcs-monitor"; + broken = true; }) {}; "darcs-scripts" = callPackage @@ -74716,7 +78620,9 @@ self: { ]; description = "Outputs dependencies of darcs patches in dot format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "darcs2dot"; + broken = true; }) {}; "darcsden" = callPackage @@ -74744,6 +78650,7 @@ self: { ]; description = "Darcs repository UI and hosting/collaboration app (hub.darcs.net branch)."; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "darcswatch" = callPackage @@ -74766,6 +78673,7 @@ self: { ]; description = "Track application of Darcs patches"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "darkplaces-demo" = callPackage @@ -74793,6 +78701,7 @@ self: { ]; description = "Utility and parser for DarkPlaces demo files"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "demoinfo"; }) {}; @@ -74810,6 +78719,8 @@ self: { testHaskellDepends = [ base bytestring hspec hspec-core ]; description = "Darkplaces rcon client library"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "darkplaces-rcon-util" = callPackage @@ -74839,6 +78750,7 @@ self: { ]; description = "Darplaces rcon utility"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "drcon"; }) {}; @@ -74857,6 +78769,8 @@ self: { testHaskellDepends = [ base bytestring hspec QuickCheck ]; description = "Parser for darkplaces colorful text"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dash-haskell" = callPackage @@ -74877,6 +78791,7 @@ self: { ]; description = "Convert package Haddock to Dash docsets (IDE docs)"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "dash-haskell"; }) {}; @@ -74901,6 +78816,8 @@ self: { libraryHaskellDepends = [ base data-accessor monadLib ]; description = "Accessor functions for monadLib's monads"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-accessor-monads-fd" = callPackage @@ -74914,6 +78831,8 @@ self: { ]; description = "Use Accessor to access state in monads-fd State monad class"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-accessor-monads-tf" = callPackage @@ -74927,6 +78846,8 @@ self: { ]; description = "Use Accessor to access state in monads-tf State monad type family"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-accessor-mtl" = callPackage @@ -74955,7 +78876,9 @@ self: { ]; description = "Utilities for accessing and manipulating fields of records"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.thielema ]; + broken = true; }) {}; "data-accessor-transformers" = callPackage @@ -75015,6 +78938,8 @@ self: { ]; description = "Type-safe, bytestring-based ASCII values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-aviary" = callPackage @@ -75026,6 +78951,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Combinator birds"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-base" = callPackage @@ -75037,6 +78964,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Utilities for accessing and comparing types based on so called bases - representations with limited polymorphism"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-basic" = callPackage @@ -75060,6 +78989,7 @@ self: { ]; description = "A database library with a focus on ease of use, type safety and useful error messages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "data-binary-ieee754" = callPackage @@ -75130,6 +79060,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Library for checking and normalization of data (e.g. from web forms)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-checked" = callPackage @@ -75164,6 +79096,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Generate a special combinator from any data type"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-compat" = callPackage @@ -75186,6 +79120,8 @@ self: { libraryHaskellDepends = [ base stm ]; description = "A Library for directional queues"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-construction" = callPackage @@ -75197,6 +79133,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Data construction abstractions including Constructor, Destructor, Maker, Destroyer, Producer and Consumer"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-constructors" = callPackage @@ -75212,6 +79150,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq QuickCheck ]; description = "Generically compare data by their constructors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-cycle" = callPackage @@ -75226,6 +79166,7 @@ self: { ]; description = "a cyclic doubly linked list"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "data-default" = callPackage @@ -75280,6 +79221,7 @@ self: { ]; description = "A class for types with a default value"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "data-default-generics" = callPackage @@ -75371,6 +79313,8 @@ self: { libraryHaskellDepends = [ base data-default-class ]; description = "Default instances for types in newer versions of base package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-default-instances-old-locale" = callPackage @@ -75395,6 +79339,8 @@ self: { libraryHaskellDepends = [ base data-default-class text ]; description = "Default instances for (lazy and strict) Text and Text Builder"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-default-instances-unordered-containers" = callPackage @@ -75444,6 +79390,8 @@ self: { ]; description = "Space-efficient and privacy-preserving data dispersal algorithms"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-diverse" = callPackage @@ -75477,6 +79425,8 @@ self: { testHaskellDepends = [ base data-diverse hspec lens tagged ]; description = "Isos & Lens for Data.Diverse.Many and Prisms for Data.Diverse.Which"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-dword" = callPackage @@ -75511,6 +79461,8 @@ self: { ]; description = "Consistent set of utility functions for Maybe, Either, List and Monoids"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-elevator" = callPackage @@ -75560,7 +79512,9 @@ self: { ]; description = "Embed files and other binary blobs inside executables without Template Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "embedtool"; + broken = true; }) {}; "data-emoticons" = callPackage @@ -75572,6 +79526,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Combinator emoticons: data-aviary in the flavor of emoticons"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-endian" = callPackage @@ -75623,6 +79579,8 @@ self: { ]; description = "A type safe file path data structure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-files-gen" = callPackage @@ -75654,6 +79612,8 @@ self: { libraryHaskellDepends = [ base data-default ]; description = "Utilities for filtering"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-fin" = callPackage @@ -75670,6 +79630,8 @@ self: { ]; description = "Finite totally ordered sets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-fin-simple" = callPackage @@ -75682,6 +79644,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "Simple integral finite set"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-fix" = callPackage @@ -75728,6 +79692,8 @@ self: { libraryHaskellDepends = [ base ]; description = "An efficient data type for sets of flags"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-foldapp" = callPackage @@ -75751,6 +79717,8 @@ self: { testHaskellDepends = [ base containers HUnit ]; description = "Specify that lifted values were forced to WHNF or NF"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-forest" = callPackage @@ -75849,6 +79817,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "Extending the concept of indices for lists and other containers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-interval" = callPackage @@ -75895,6 +79865,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Write-once variables with concurrency support"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-json-token" = callPackage @@ -75926,6 +79898,8 @@ self: { ]; description = "Sculpt mutable recursive data with reference equality; bake it using a data kiln into an immutable lazy structure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-layer" = callPackage @@ -75937,6 +79911,7 @@ self: { libraryHaskellDepends = [ base convert data-construction lens ]; description = "Data layering utilities. Layer is a data-type which wrapps other one, but keeping additional information. If you want to access content of simple newtype object, use Lens.Wrapper instead."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "data-layout" = callPackage @@ -75976,6 +79951,8 @@ self: { ]; description = "Lenses"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-lens-ixset" = callPackage @@ -75988,6 +79965,7 @@ self: { testHaskellDepends = [ QuickCheck ]; description = "A Lens for IxSet"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "data-lens-light" = callPackage @@ -76011,6 +79989,8 @@ self: { libraryHaskellDepends = [ base data-lens template-haskell ]; description = "Utilities for Data.Lens"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-list-sequences" = callPackage @@ -76044,6 +80024,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Data.Map with multiple, unique keys"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-memocombinators" = callPackage @@ -76110,6 +80092,8 @@ self: { libraryHaskellDepends = [ attoparsec base binary containers text ]; description = "Data types for named entities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-nat" = callPackage @@ -76121,6 +80105,8 @@ self: { libraryHaskellDepends = [ base semigroups ]; description = "data Nat = Zero | Succ Nat"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-object" = callPackage @@ -76132,6 +80118,8 @@ self: { libraryHaskellDepends = [ base bytestring failure text time ]; description = "Represent hierachichal structures, called objects in JSON. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-object-json" = callPackage @@ -76148,6 +80136,7 @@ self: { ]; description = "Serialize JSON data to/from Haskell using the data-object library. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "data-object-yaml" = callPackage @@ -76166,6 +80155,7 @@ self: { ]; description = "Serialize data to and from Yaml files (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "data-or" = callPackage @@ -76219,7 +80209,9 @@ self: { ]; description = "Read PDF form fields"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "pdfreader"; + broken = true; }) {}; "data-pprint" = callPackage @@ -76231,6 +80223,8 @@ self: { libraryHaskellDepends = [ base deepseq mtl parallel pretty time ]; description = "Prettyprint and compare Data values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-quotientref" = callPackage @@ -76242,6 +80236,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Reference cells that need two independent indices to be accessed"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-r-tree" = callPackage @@ -76260,6 +80256,8 @@ self: { ]; description = "R-Tree is a spatial data structure similar to Quadtrees or B-Trees"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-ref" = callPackage @@ -76304,6 +80302,8 @@ self: { libraryHaskellDepends = [ base containers data-reify ]; description = "Common Sub-Expression Elimination for graphs generated by Data.Reify."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-repr" = callPackage @@ -76315,6 +80315,8 @@ self: { libraryHaskellDepends = [ base generic-deriving lens ]; description = "Alternative to Show data printing utility"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-result" = callPackage @@ -76326,6 +80328,7 @@ self: { libraryHaskellDepends = [ base poly-control prologue ]; description = "Data types for returning results distinguishable by types"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "data-rev" = callPackage @@ -76337,6 +80340,8 @@ self: { libraryHaskellDepends = [ base bytestring containers text vector ]; description = "A typeclass for reversing order of contents"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-rope" = callPackage @@ -76348,6 +80353,8 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-mmap unix ]; description = "Ropes, an alternative to (Byte)Strings"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-rtuple" = callPackage @@ -76359,6 +80366,7 @@ self: { libraryHaskellDepends = [ base lens typelevel ]; description = "Recursive tuple data structure. It is very usefull when implementing some lo-level operations, allowing to traverse different elements using Haskell's type classes."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "data-serializer" = callPackage @@ -76390,6 +80398,8 @@ self: { ]; description = "Profiling of data structures"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-sketches" = callPackage @@ -76444,6 +80454,8 @@ self: { libraryHaskellDepends = [ base vector-space ]; description = "Deprecated. Now called \"spacepart\". Space partitioning data structures."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-standards" = callPackage @@ -76455,6 +80467,8 @@ self: { libraryHaskellDepends = [ base hashable unordered-containers ]; description = "A collection of standards representable by simple data types"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-stm32" = callPackage @@ -76508,6 +80522,8 @@ self: { ]; description = "Type safe, in-memory dictionary with multidimensional keys"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-stringmap" = callPackage @@ -76526,6 +80542,8 @@ self: { ]; description = "An efficient implementation of maps from strings to arbitrary values"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-structure-inferrer" = callPackage @@ -76546,6 +80564,7 @@ self: { executableToolDepends = [ alex happy ]; description = "Program that infers the fastest data structure available for your program"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "dsinf"; }) {}; @@ -76655,6 +80674,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Basic type wrangling types and classes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-util" = callPackage @@ -76666,6 +80687,8 @@ self: { libraryHaskellDepends = [ base ]; description = "utilities for handle data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-validation" = callPackage @@ -76682,6 +80705,8 @@ self: { ]; description = "A library for creating type safe validations"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-variant" = callPackage @@ -76693,6 +80718,8 @@ self: { libraryHaskellDepends = [ base safe ]; description = "A variant data type, useful for modeling dynamically-typed programming languages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "data-vector-growable" = callPackage @@ -76709,6 +80736,8 @@ self: { testHaskellDepends = [ async base vector ]; description = "Dynamic growable resizable mutable generic vector"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "database-id-class" = callPackage @@ -76735,6 +80764,7 @@ self: { ]; description = "HasId/Groundhog interop"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "database-migrate" = callPackage @@ -76752,6 +80782,8 @@ self: { ]; description = "Database versioning and migration (experimental)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "database-study" = callPackage @@ -76763,6 +80795,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Demonstrate how a database can be implemented the functional way"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "datadog" = callPackage @@ -76790,6 +80824,8 @@ self: { ]; description = "Datadog client for Haskell. Supports both the HTTP API and StatsD."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "datadog-tracing" = callPackage @@ -76825,6 +80861,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Datadog tracing client and mock agent"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "datadog-agent"; }) {}; @@ -76871,6 +80908,7 @@ self: { ]; description = "Fixing data-flow problems"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; mainProgram = "firstfollow-example"; }) {}; @@ -76895,6 +80933,7 @@ self: { ]; description = "Generate Graphviz documents from a Haskell representation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dataflow"; }) {}; @@ -76940,7 +80979,9 @@ self: { ]; description = "An implementation of datalog in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "datalog-repl"; + broken = true; }) {}; "datapacker" = callPackage @@ -76958,7 +80999,9 @@ self: { ]; description = "Tool to help pack files into the minimum number of CDs/DVDs/etc"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "datapacker"; + broken = true; }) {}; "datarobot" = callPackage @@ -76980,6 +81023,8 @@ self: { ]; description = "Client for DataRobot API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "datasets" = callPackage @@ -77010,6 +81055,7 @@ self: { ]; description = "Classical data sets for statistics and machine learning"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "dataurl" = callPackage @@ -77051,6 +81097,7 @@ self: { testHaskellDepends = [ base dates hspec QuickCheck time ]; description = "Date conversions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "dates" = callPackage @@ -77067,6 +81114,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Small library for parsing different dates formats"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "datetime" = callPackage @@ -77085,6 +81134,8 @@ self: { ]; description = "Utilities to make Data.Time.* easier to use"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "datetime-sb" = callPackage @@ -77103,6 +81154,8 @@ self: { ]; description = "Utilities to make Data.Time.* easier to use."; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dawdle" = callPackage @@ -77117,7 +81170,9 @@ self: { executableHaskellDepends = [ base filepath parsec pretty text ]; description = "Generates DDL suggestions based on a CSV file"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "dawdle"; + broken = true; }) {}; "dawg" = callPackage @@ -77133,6 +81188,8 @@ self: { ]; description = "Directed acyclic word graphs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dawg-ord" = callPackage @@ -77153,6 +81210,8 @@ self: { ]; description = "Directed acyclic word graphs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "daytripper" = callPackage @@ -77173,6 +81232,8 @@ self: { ]; description = "Helpers for round-trip tests"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dbcleaner" = callPackage @@ -77185,6 +81246,8 @@ self: { testHaskellDepends = [ base hspec postgresql-simple text ]; description = "Clean database tables automatically around hspec tests"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dbf" = callPackage @@ -77198,6 +81261,8 @@ self: { ]; description = "Read and write XBase \".dbf\" files"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dbjava" = callPackage @@ -77218,6 +81283,7 @@ self: { ]; description = "Decompiler Bytecode Java"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dbjava"; }) {}; @@ -77237,7 +81303,9 @@ self: { ]; description = "A *simple* database migration tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dbm"; + broken = true; }) {}; "dbmigrations" = callPackage @@ -77266,7 +81334,9 @@ self: { ]; description = "An implementation of relational database \"migrations\""; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "moo"; + broken = true; }) {}; "dbmigrations-mysql" = callPackage @@ -77288,6 +81358,7 @@ self: { ]; description = "The dbmigrations tool built for MySQL databases"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "moo-mysql"; }) {}; @@ -77307,6 +81378,7 @@ self: { ]; description = "The dbmigrations tool built for PostgreSQL databases"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "moo-postgresql"; }) {}; @@ -77322,6 +81394,7 @@ self: { testHaskellDepends = [ base dbmigrations HDBC HDBC-sqlite3 HUnit ]; description = "The dbmigrations tool built for SQLite databases"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "moo-sqlite"; }) {}; @@ -77396,6 +81469,7 @@ self: { ]; description = "Monadic and object-oriented interfaces to DBus"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "dbus-core" = callPackage @@ -77413,6 +81487,8 @@ self: { ]; description = "Low-level D-Bus protocol implementation"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dbus-hslogger" = callPackage @@ -77446,6 +81522,8 @@ self: { testHaskellDepends = [ base containers dbus QuickCheck ]; description = "Quasi-quoter for DBus functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dbus-th" = callPackage @@ -77504,6 +81582,8 @@ self: { ]; description = "This packge is deprecated. See the the \"LIO.DCLabel\" in the \"lio\" package."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dclabel-eci11" = callPackage @@ -77515,6 +81595,8 @@ self: { libraryHaskellDepends = [ base pretty QuickCheck ]; description = "The Disjunction Category Label Format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dcpu16" = callPackage @@ -77534,7 +81616,9 @@ self: { testHaskellDepends = [ base ]; description = "DCPU-16 Emulator & Assembler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dcpu16-exe"; + broken = true; }) {}; "ddate" = callPackage @@ -77546,6 +81630,7 @@ self: { libraryHaskellDepends = [ base dates time ]; description = "Discordian Date Types for Haskell"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "ddc-base" = callPackage @@ -77561,6 +81646,8 @@ self: { ]; description = "Disciplined Disciple Compiler common utilities"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ddc-build" = callPackage @@ -77580,6 +81667,7 @@ self: { ]; description = "Disciplined Disciple Compiler build framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ddc-code" = callPackage @@ -77592,6 +81680,8 @@ self: { libraryHaskellDepends = [ base filepath ]; description = "Disciplined Disciple Compiler base libraries"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ddc-core" = callPackage @@ -77608,6 +81698,7 @@ self: { ]; description = "Disciplined Disciple Compiler core language and type checker"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ddc-core-babel" = callPackage @@ -77621,6 +81712,7 @@ self: { ]; description = "Disciplined Disciple Compiler PHP code generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ddc-core-eval" = callPackage @@ -77636,6 +81728,7 @@ self: { ]; description = "Disciplined Disciple Compiler semantic evaluator for the core language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ddc-core-flow" = callPackage @@ -77653,6 +81746,7 @@ self: { ]; description = "Disciplined Disciple Compiler data flow compiler"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ddc-core-llvm" = callPackage @@ -77669,6 +81763,7 @@ self: { ]; description = "Disciplined Disciple Compiler LLVM code generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ddc-core-salt" = callPackage @@ -77684,6 +81779,7 @@ self: { ]; description = "Disciplined Disciple Compiler C code generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ddc-core-simpl" = callPackage @@ -77699,6 +81795,7 @@ self: { ]; description = "Disciplined Disciple Compiler code transformations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ddc-core-tetra" = callPackage @@ -77715,6 +81812,7 @@ self: { ]; description = "Disciplined Disciple Compiler intermediate language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ddc-driver" = callPackage @@ -77734,6 +81832,7 @@ self: { ]; description = "Disciplined Disciple Compiler top-level driver"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ddc-interface" = callPackage @@ -77745,6 +81844,7 @@ self: { libraryHaskellDepends = [ base containers ddc-base directory ]; description = "Disciplined Disciple Compiler user interface support"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ddc-source-tetra" = callPackage @@ -77761,6 +81861,7 @@ self: { ]; description = "Disciplined Disciple Compiler source language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ddc-tools" = callPackage @@ -77783,6 +81884,7 @@ self: { ]; description = "Disciplined Disciple Compiler command line tools"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ddc-war" = callPackage @@ -77800,6 +81902,7 @@ self: { ]; description = "Disciplined Disciple Compiler test driver and buildbot"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "ddc-war"; }) {}; @@ -77819,6 +81922,7 @@ self: { ]; description = "Disciple Core language interactive interpreter"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "ddci-core"; }) {}; @@ -77871,7 +81975,9 @@ self: { ]; description = "detect dead code in haskell projects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dead-code-detection"; + broken = true; }) {}; "dead-simple-json" = callPackage @@ -77887,6 +81993,8 @@ self: { ]; description = "Dead simple JSON parser, with some Template Haskell sugar"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dear-imgui" = callPackage @@ -77913,6 +82021,8 @@ self: { doHaddock = false; description = "Haskell bindings for Dear ImGui"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) SDL2; inherit (pkgs) glew;}; "debian" = callPackage @@ -78002,6 +82112,7 @@ self: { ]; description = "Simple trace-based debugger"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "debug-pp"; }) {}; @@ -78053,7 +82164,9 @@ self: { ]; description = "secure remote debugging"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "debug-me"; + broken = true; }) {}; "debug-pp" = callPackage @@ -78097,6 +82210,8 @@ self: { testHaskellDepends = [ base directory tasty tasty-golden ]; description = "Like Debug.Trace but writing to files."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "debug-trace-var" = callPackage @@ -78122,7 +82237,9 @@ self: { executableHaskellDepends = [ base ]; description = "More useful trace functions for investigating bugs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "test"; + broken = true; }) {}; "debugger-hs" = callPackage @@ -78136,6 +82253,8 @@ self: { testHaskellDepends = [ base hspec mtl neat-interpolation text ]; description = "Write your GDB scripts in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "deburr" = callPackage @@ -78172,6 +82291,8 @@ self: { libraryHaskellDepends = [ base comonad-transformers ]; description = "The categorical dual of transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "decidable" = callPackage @@ -78187,6 +82308,7 @@ self: { ]; description = "Combinators for manipulating dependently-typed predicates"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "decimal-arithmetic" = callPackage @@ -78201,6 +82323,7 @@ self: { testHaskellDepends = [ base binary doctest hspec QuickCheck ]; description = "An implementation of the General Decimal Arithmetic Specification"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "decimal-literals" = callPackage @@ -78241,6 +82364,8 @@ self: { ]; description = "Binary Decision Diagrams (BDD) and Zero-suppressed Binary Decision Diagrams (ZDD)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "declarative" = callPackage @@ -78288,6 +82413,8 @@ self: { libraryHaskellDepends = [ base binary bytestring conduit ]; description = "Conduit for decoding ByteStrings using Data.Binary.Get"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dedukti" = callPackage @@ -78310,6 +82437,7 @@ self: { ]; description = "A type-checker for the λΠ-modulo calculus"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "dedukti"; }) {}; @@ -78361,6 +82489,8 @@ self: { ]; description = "A library that provides deep-level programming style and(or) notation on Applicative and Monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "deepl" = callPackage @@ -78384,7 +82514,9 @@ self: { ]; description = "Call DeepL to translate you files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "deepl"; + broken = true; }) {}; "deeplearning-hs" = callPackage @@ -78412,6 +82544,7 @@ self: { ]; description = "Deep Learning in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "deeplearning_demonstration"; }) {}; @@ -78449,6 +82582,8 @@ self: { ]; description = "Bounded deepseq, including support for generic deriving"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "deepseq-generics" = callPackage @@ -78478,6 +82613,8 @@ self: { libraryHaskellDepends = [ array base deepseq stm ]; description = "Candidate NFData Instances for Types in base"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "deepseq-magic" = callPackage @@ -78489,6 +82626,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Deep evaluation of data structures without NFData"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "deepseq-th" = callPackage @@ -78501,6 +82640,8 @@ self: { testHaskellDepends = [ base deepseq template-haskell ]; description = "Template Haskell based deriver for optimised NFData instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "deepzoom" = callPackage @@ -78512,6 +82653,7 @@ self: { libraryHaskellDepends = [ base directory filepath hsmagick ]; description = "A DeepZoom image slicer. Only known to work on 32bit Linux"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "defargs" = callPackage @@ -78523,6 +82665,7 @@ self: { libraryHaskellDepends = [ base cluss ]; description = "default arguments in haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "defaultable-map" = callPackage @@ -78574,6 +82717,8 @@ self: { ]; description = "The base modules of the Definitive framework"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "definitive-filesystem" = callPackage @@ -78594,6 +82739,7 @@ self: { ]; description = "A library that enable you to interact with the filesystem in a definitive way"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "definitive-graphics" = callPackage @@ -78616,6 +82762,7 @@ self: { ]; description = "A definitive package allowing you to open windows, read image files and render text to be displayed or saved"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "definitive-parser" = callPackage @@ -78633,6 +82780,7 @@ self: { ]; description = "A parser combinator library for the Definitive framework"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "definitive-reactive" = callPackage @@ -78651,6 +82799,7 @@ self: { ]; description = "A simple Reactive library"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "definitive-sound" = callPackage @@ -78670,6 +82819,7 @@ self: { ]; description = "A definitive package to handle sound and play it back"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "deiko-config" = callPackage @@ -78685,6 +82835,8 @@ self: { ]; description = "Small and typesafe configuration library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dejafu" = callPackage @@ -78713,6 +82865,8 @@ self: { librarySystemDepends = [ mpdec ]; description = "Decimal floating point arithmetic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {mpdec = null;}; "deka-tests" = callPackage @@ -78733,6 +82887,7 @@ self: { testHaskellDepends = [ base bytestring deka QuickCheck quickpull ]; description = "Tests for deka, decimal floating point arithmetic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "deka-dectest"; }) {}; @@ -78750,6 +82905,7 @@ self: { testHaskellDepends = [ AC-Vector base HUnit QuickCheck ]; description = "Build a Delaunay triangulation of a set of points"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "delay" = callPackage @@ -78780,6 +82936,7 @@ self: { ]; description = "Accessing the del.icio.us APIs from Haskell (v2)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "delimited-text" = callPackage @@ -78795,6 +82952,7 @@ self: { ]; description = "Parse character delimited textual data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "delimiter-separated" = callPackage @@ -78807,6 +82965,7 @@ self: { libraryHaskellDepends = [ base uhc-util uulib ]; description = "Library for dealing with tab and/or comma (or other) separated files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "delta" = callPackage @@ -78830,6 +82989,7 @@ self: { testHaskellDepends = [ base directory filepath hspec ]; description = "A library for detecting file changes"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "delta-h" = callPackage @@ -78851,6 +83011,7 @@ self: { ]; description = "Online entropy-based model of lexical category acquisition"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "delta-h"; }) {}; @@ -78863,6 +83024,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Generalized the Prelude more functionally"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "demarcate" = callPackage @@ -78875,6 +83038,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Demarcating transformed monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "denominate" = callPackage @@ -78889,7 +83054,9 @@ self: { executableHaskellDepends = [ base directory filepath ]; description = "Functions supporting bulk file and directory name normalization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "denominate"; + broken = true; }) {}; "dense" = callPackage @@ -78914,6 +83081,8 @@ self: { ]; description = "Mutable and immutable dense multidimensional arrays"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dense-int-set" = callPackage @@ -78935,6 +83104,8 @@ self: { ]; description = "Dense int-set"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dense-linear-algebra" = callPackage @@ -78972,6 +83143,8 @@ self: { ]; description = "Dependency injection for records-of-functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dep-t-advice" = callPackage @@ -78997,6 +83170,7 @@ self: { ]; description = "Giving good advice to functions in records-of-functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dep-t-dynamic" = callPackage @@ -79021,6 +83195,7 @@ self: { ]; description = "A dynamic environment for dependency injection"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dep-t-value" = callPackage @@ -79042,6 +83217,7 @@ self: { ]; description = "Pair resources files with types within your program"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dependency" = callPackage @@ -79080,6 +83256,8 @@ self: { ]; description = "Dependent hash maps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dependent-literals" = callPackage @@ -79097,6 +83275,7 @@ self: { ]; description = "Library for dependent-literals-plugin"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "dependent-literals-plugin" = callPackage @@ -79116,6 +83295,7 @@ self: { ]; description = "Dependent integer literals"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "dependent-map_0_2_4_0" = callPackage @@ -79163,6 +83343,8 @@ self: { ]; description = "Dependent map that uses semigroup mappend"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dependent-state" = callPackage @@ -79174,6 +83356,7 @@ self: { libraryHaskellDepends = [ base lens mtl prologue ]; description = "Control structure similar to Control.Monad.State, allowing multiple nested states, distinguishable by provided phantom types."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "dependent-sum_0_4" = callPackage @@ -79273,6 +83456,7 @@ self: { ]; description = "A simple configuration management tool for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "depends"; }) {}; @@ -79292,6 +83476,7 @@ self: { ]; description = "Analyze quality of nucleotide sequences"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "depq" = callPackage @@ -79319,6 +83504,8 @@ self: { libraryHaskellDepends = [ base containers dlist mtl parsec ]; description = "DepTrack Core types and model"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "deptrack-devops" = callPackage @@ -79337,6 +83524,7 @@ self: { ]; description = "DepTrack applied to DevOps"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "deptrack-dot" = callPackage @@ -79349,6 +83537,7 @@ self: { testHaskellDepends = [ base containers deptrack-core dotgen ]; description = "Facilitate Graphviz representations of DepTrack dependencies"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "deque" = callPackage @@ -79381,6 +83570,7 @@ self: { testHaskellDepends = [ base Cabal cabal-test-quickcheck ]; description = "A typeclass and an implementation for double-ended queues"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "derangement" = callPackage @@ -79392,6 +83582,8 @@ self: { libraryHaskellDepends = [ base fgl ]; description = "Find derangements of lists"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "derivation-trees" = callPackage @@ -79405,6 +83597,8 @@ self: { ]; description = "Typeset Derivation Trees via MetaPost"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "derive" = callPackage @@ -79425,7 +83619,9 @@ self: { executableHaskellDepends = [ base ]; description = "A program and library to derive instances for data types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "derive"; + broken = true; }) {}; "derive-IG" = callPackage @@ -79437,6 +83633,7 @@ self: { libraryHaskellDepends = [ base instant-generics template-haskell ]; description = "Macro to derive instances for Instant-Generics using Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "derive-enumerable" = callPackage @@ -79448,6 +83645,8 @@ self: { libraryHaskellDepends = [ base data-default ]; description = "Generic instances for enumerating complex data types"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "derive-gadt" = callPackage @@ -79469,6 +83668,8 @@ self: { ]; description = "Instance deriving for (a subset of) GADTs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "derive-lifted-instances" = callPackage @@ -79482,6 +83683,8 @@ self: { ]; description = "Derive class instances though various kinds of lifting"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "derive-monoid" = callPackage @@ -79497,7 +83700,9 @@ self: { testHaskellDepends = [ base semigroups ]; description = "derive Semigroup/Monoid/IsList"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "example-derive-monoid"; + broken = true; }) {}; "derive-storable" = callPackage @@ -79556,6 +83761,8 @@ self: { libraryHaskellDepends = [ array base containers template-haskell ]; description = "Automatic derivation of Trie implementations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "deriveJsonNoPrefix" = callPackage @@ -79572,6 +83779,8 @@ self: { ]; description = "Derive ToJSON/FromJSON instances in a more prefix-friendly manner"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "deriving-aeson" = callPackage @@ -79625,6 +83834,7 @@ self: { ]; description = "DerivingVia for OpenAPI 3"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "deriving-show-simple" = callPackage @@ -79706,6 +83916,8 @@ self: { libraryHaskellDepends = [ base derp ]; description = "combinators based on parsing with derivatives (derp) package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "derulo" = callPackage @@ -79743,6 +83955,8 @@ self: { ]; description = "Combinators for describing binary data structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "descrilo" = callPackage @@ -79788,6 +84002,7 @@ self: { ]; description = "Library, interpreter, and CLI for Descript programming language"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "descript-cli"; }) {}; @@ -79851,6 +84066,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Desktop Portal"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "despair" = callPackage @@ -79874,6 +84091,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Simple deterministic game engine"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "detour-via-sci" = callPackage @@ -79917,6 +84136,7 @@ self: { ]; description = "JSON and CSV encoding for quantities"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "detrospector" = callPackage @@ -79935,7 +84155,9 @@ self: { ]; description = "Markov chain text generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "detrospector"; + broken = true; }) {}; "deunicode" = callPackage @@ -79949,7 +84171,9 @@ self: { executableHaskellDepends = [ base bytestring utf8-string ]; description = "Get rid of unicode (utf-8) symbols in Haskell sources"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "deunicode"; + broken = true; }) {}; "devil" = callPackage @@ -79968,7 +84192,9 @@ self: { ]; description = "A small tool to make it easier to update program managed by Angel"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "devil"; + broken = true; }) {}; "devtools" = callPackage @@ -79990,6 +84216,7 @@ self: { ]; description = "Haskell development tool agregate"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dewdrop" = callPackage @@ -80003,6 +84230,7 @@ self: { ]; description = "Find gadgets for return-oriented programming on x86"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "df1" = callPackage @@ -80042,6 +84270,8 @@ self: { ]; description = "Render and parse df1 logs as HTML"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dfinity-radix-tree" = callPackage @@ -80077,6 +84307,7 @@ self: { ]; description = "A generic data integrity layer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dfinity-radix-tree-example"; }) {inherit (pkgs) leveldb;}; @@ -80108,7 +84339,9 @@ self: { ]; description = "Build Debian From Scratch CD/DVD images"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "dfsbuild"; + broken = true; }) {}; "dgim" = callPackage @@ -80121,6 +84354,8 @@ self: { testHaskellDepends = [ base Cabal QuickCheck ]; description = "Implementation of DGIM algorithm"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dgs" = callPackage @@ -80132,6 +84367,8 @@ self: { libraryHaskellDepends = [ base HTTP mtl network split ]; description = "Haskell front-end for DGS' bot interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dhall_1_29_0" = callPackage @@ -80485,7 +84722,9 @@ self: { ]; description = "Check all dhall files in a project"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dhall-check"; + broken = true; }) {}; "dhall-csv" = callPackage @@ -80516,6 +84755,8 @@ self: { ]; description = "Convert bidirectionally between Dhall and CSV files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dhall-docs" = callPackage @@ -80580,7 +84821,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Translate concourse config from Dhall to YAML"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dhall-fly"; + broken = true; }) {}; "dhall-json" = callPackage @@ -80694,8 +84937,10 @@ self: { ]; description = "Language Server Protocol (LSP) server for Dhall"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "dhall-lsp-server"; maintainers = [ lib.maintainers.Gabriella439 ]; + broken = true; }) {}; "dhall-nix" = callPackage @@ -80841,6 +85086,8 @@ self: { ]; description = "Convert recursive ADTs from and to Dhall"; license = lib.licenses.cc0; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dhall-secret" = callPackage @@ -80869,6 +85116,7 @@ self: { ]; description = "Encrypt Decrypt Dhall expressions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dhall-secret"; }) {}; @@ -80887,8 +85135,10 @@ self: { ]; description = "Template text using Dhall"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dhall-to-text"; maintainers = [ lib.maintainers.Gabriella439 ]; + broken = true; }) {}; "dhall-text-shell" = callPackage @@ -80938,6 +85188,8 @@ self: { ]; description = "Compile Dhall expressions to Cabal files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dhall-toml" = callPackage @@ -81011,6 +85263,8 @@ self: { ]; description = "Parse a DHCP lease file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dhrun" = callPackage @@ -81044,7 +85298,9 @@ self: { doHaddock = false; description = "Dhall/YAML configurable concurrent integration test executor"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "dhrun"; + broken = true; }) {}; "di" = callPackage @@ -81152,6 +85408,8 @@ self: { libraryHaskellDepends = [ base deepseq ]; description = "An EDSL for teaching Haskell with diagrams - data types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dia-functions" = callPackage @@ -81169,6 +85427,7 @@ self: { ]; description = "An EDSL for teaching Haskell with diagrams - functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "diagnose" = callPackage @@ -81190,6 +85449,8 @@ self: { ]; description = "Beautiful error reporting done easily"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "diagrams" = callPackage @@ -81220,6 +85481,8 @@ self: { libraryHaskellDepends = [ base cubicbezier diagrams-lib ]; description = "deprecated, part of diagrams-contrib since 1.4"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "diagrams-braille" = callPackage @@ -81577,6 +85840,8 @@ self: { ]; description = "PDF backend for diagrams drawing EDSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "diagrams-pgf" = callPackage @@ -81630,6 +85895,8 @@ self: { ]; description = "Draw QR codes to SVG, PNG, PDF or PS files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "diagrams-rasterific" = callPackage @@ -81667,6 +85934,7 @@ self: { ]; description = "reflex backend for diagrams drawing EDSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "diagrams-rubiks-cube" = callPackage @@ -81682,6 +85950,8 @@ self: { ]; description = "Library for drawing the Rubik's Cube"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "diagrams-solve" = callPackage @@ -81734,6 +86004,8 @@ self: { ]; description = "TikZ backend for diagrams drawing EDSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "diagrams-wx" = callPackage @@ -81751,6 +86023,7 @@ self: { ]; description = "Backend for rendering diagrams in wxWidgets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dialog" = callPackage @@ -81789,6 +86062,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "A Dialogflow Fulfillment library for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dialogue" = callPackage @@ -81803,7 +86078,9 @@ self: { executableHaskellDepends = [ base ]; description = "I/O in Haskell Report 1.2"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "examples"; + broken = true; }) {}; "dib" = callPackage @@ -81827,7 +86104,9 @@ self: { ]; description = "A simple, forward build system"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "dib"; + broken = true; }) {}; "dice" = callPackage @@ -81877,7 +86156,9 @@ self: { executableHaskellDepends = [ base ]; description = "Convert a Diceware wordlist into a printer-ready LaTeX file"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "dice2tex"; + broken = true; }) {}; "dicom" = callPackage @@ -81891,6 +86172,8 @@ self: { ]; description = "A library for reading and writing DICOM files in the Explicit VR Little Endian transfer syntax"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dictionaries" = callPackage @@ -81919,7 +86202,9 @@ self: { ]; description = "Tools to handle StarDict dictionaries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bench"; + broken = true; }) {}; "dictionary-sharing" = callPackage @@ -81948,7 +86233,9 @@ self: { testHaskellDepends = [ base hspec parsec ]; description = "Parsec parsers for the DICT format produced by dictfmt -t"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dictparser"; + broken = true; }) {}; "diet" = callPackage @@ -81966,6 +86253,8 @@ self: { ]; description = "Discrete Interval Encoding Trees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "diff" = callPackage @@ -81977,6 +86266,7 @@ self: { libraryHaskellDepends = [ base Enum util ]; description = "Diff and patch"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "diff-gestalt" = callPackage @@ -81991,6 +86281,8 @@ self: { testHaskellDepends = [ base Diff ]; description = "A diff algorithm based on recursive longest common substrings"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "diff-loc" = callPackage @@ -82061,7 +86353,9 @@ self: { ]; description = "Diff two .cabal files syntactically"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "diffcabal"; + broken = true; }) {}; "diffdump" = callPackage @@ -82100,6 +86394,7 @@ self: { groups hedgehog hedgehog-checkers QuickCheck semigroupoids ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "differential" = callPackage @@ -82125,6 +86420,7 @@ self: { ]; description = "Finds out whether an entity comes from different distributions (statuses)"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "differential"; }) {}; @@ -82139,6 +86435,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "diff on maps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "difftodo" = callPackage @@ -82164,6 +86462,8 @@ self: { ]; description = "Generate todo lists from source code"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "digamma" = callPackage @@ -82199,6 +86499,8 @@ self: { testHaskellDepends = [ array base bytestring digest QuickCheck ]; description = "Pure hash functions for bytestrings"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "digest-sig" = callPackage @@ -82229,6 +86531,8 @@ self: { ]; description = "Speed up form designing using digestive functors and bootstrap"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "digestive-foundation-lucid" = callPackage @@ -82245,6 +86549,7 @@ self: { ]; description = "Speed up form designing using digestive functors and foundation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "digestive-functors" = callPackage @@ -82287,6 +86592,8 @@ self: { ]; description = "Run digestive-functors forms against JSON"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "digestive-functors-blaze" = callPackage @@ -82317,6 +86624,8 @@ self: { ]; description = "Happstack backend for the digestive-functors library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "digestive-functors-heist" = callPackage @@ -82333,6 +86642,7 @@ self: { ]; description = "Heist frontend for the digestive-functors library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "digestive-functors-hsp" = callPackage @@ -82345,6 +86655,7 @@ self: { libraryToolDepends = [ trhsx ]; description = "HSP support for digestive-functors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "digestive-functors-lucid" = callPackage @@ -82356,6 +86667,8 @@ self: { libraryHaskellDepends = [ base digestive-functors lucid text ]; description = "Lucid frontend for the digestive-functors library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "digestive-functors-scotty" = callPackage @@ -82390,6 +86703,8 @@ self: { ]; description = "Snap backend for the digestive-functors library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "digit" = callPackage @@ -82428,6 +86743,8 @@ self: { testHaskellDepends = [ base doctest hspec ]; description = "digitalocean api for haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "digits" = callPackage @@ -82488,6 +86805,8 @@ self: { testHaskellDepends = [ base containers fingertree hspec ]; description = "A simpler Dijkstra shortest paths implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dimensional" = callPackage @@ -82531,6 +86850,7 @@ self: { libraryHaskellDepends = [ base numtype-tf time ]; description = "Statically checked physical dimensions, implemented using type families"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dimensions" = callPackage @@ -82546,6 +86866,7 @@ self: { ]; description = "Safe type-level dimensionality for multidimensional data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dingo-core" = callPackage @@ -82569,6 +86890,7 @@ self: { ]; description = "Dingo is a Rich Internet Application platform based on the Warp web server"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "dingo-example" = callPackage @@ -82588,6 +86910,7 @@ self: { ]; description = "Dingo Example"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "dingo-example"; }) {}; @@ -82607,6 +86930,7 @@ self: { ]; description = "Dingo Widgets"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "dino" = callPackage @@ -82667,6 +86991,8 @@ self: { libraryToolDepends = [ happy ]; description = "A quadratic diophantine equation solving library"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "diplomacy" = callPackage @@ -82682,6 +87008,8 @@ self: { ]; description = "Diplomacy board game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "diplomacy-server" = callPackage @@ -82705,6 +87033,7 @@ self: { ]; description = "Play Diplomacy over HTTP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "diplomacy-server"; }) {}; @@ -82733,6 +87062,8 @@ self: { libraryHaskellDepends = [ base bytestring mtl ]; description = "Serialization and deserialization monads for streams and ByteStrings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "direct-daemonize" = callPackage @@ -82759,6 +87090,8 @@ self: { ]; description = "Native implementation of the FastCGI protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "direct-http" = callPackage @@ -82777,6 +87110,8 @@ self: { ]; description = "Native webserver that acts as a library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "direct-murmur-hash" = callPackage @@ -82799,6 +87134,8 @@ self: { libraryHaskellDepends = [ base ghc ghc-paths ]; description = "Lightweight replacement for Plugins, specific to GHC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "direct-rocksdb" = callPackage @@ -82818,6 +87155,7 @@ self: { ]; description = "Bindings to RocksDB"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "direct-sqlite" = callPackage @@ -82850,6 +87188,8 @@ self: { ]; description = "Finite directed cubical complexes and associated algorithms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "directory_1_3_7_1" = callPackage @@ -82899,6 +87239,7 @@ self: { ]; description = "Recursively build, navigate, and operate on a tree of directory contents"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "readme"; }) {}; @@ -82954,6 +87295,8 @@ self: { ]; description = "Stream directory entries in constant memory in vanilla IO"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "directory-tree" = callPackage @@ -82979,7 +87322,9 @@ self: { executableHaskellDepends = [ base directory ]; description = "Deletes a directory and retains its contents in the parent directory"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "direm"; + broken = true; }) {}; "dirfiles" = callPackage @@ -82995,6 +87340,7 @@ self: { unordered-containers ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dirforest" = callPackage @@ -83115,7 +87461,9 @@ self: { ]; description = "Functional programming language for teaching discrete math"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "disco"; + broken = true; }) {}; "discogs-haskell" = callPackage @@ -83139,6 +87487,7 @@ self: { ]; description = "Client for Discogs REST API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "discokitty" = callPackage @@ -83167,6 +87516,7 @@ self: { ]; description = "An API wrapper for Discord in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "discord-haskell" = callPackage @@ -83237,6 +87587,7 @@ self: { ]; description = "An API wrapper for Discord in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "discord-register" = callPackage @@ -83266,6 +87617,7 @@ self: { ]; description = "Discord verification bot"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "discord-register-exe"; }) {}; @@ -83286,6 +87638,7 @@ self: { ]; description = "An API wrapper for Discord in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "discord-types" = callPackage @@ -83304,6 +87657,8 @@ self: { ]; description = "Type information for discord-hs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "discordian-calendar" = callPackage @@ -83315,6 +87670,8 @@ self: { libraryHaskellDepends = [ base time ]; description = "library for handling Discordian calendar dates"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "discount" = callPackage @@ -83355,6 +87712,8 @@ self: { libraryHaskellDepends = [ base ]; description = "replacement for enum"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "discrete-intervals" = callPackage @@ -83431,6 +87790,8 @@ self: { ]; description = "Disjoint containers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "disjoint-set" = callPackage @@ -83447,6 +87808,8 @@ self: { ]; description = "Persistent disjoint-sets, a.k.a union-find."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "disjoint-set-stateful" = callPackage @@ -83459,6 +87822,8 @@ self: { testHaskellDepends = [ base hspec primitive ref-tf vector ]; description = "Monadic disjoint set"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "disjoint-sets-st" = callPackage @@ -83517,6 +87882,8 @@ self: { ]; description = "Disk-based hash table"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "display" = callPackage @@ -83564,7 +87931,9 @@ self: { doHaddock = false; description = "Generate/Upload cabal package to Hackage"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "dist-upload"; + broken = true; }) {}; "distance" = callPackage @@ -83578,6 +87947,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Useful distance datatype and functions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "distance-of-time" = callPackage @@ -83609,7 +87980,9 @@ self: { testHaskellDepends = [ base binary hspec QuickCheck ]; description = "Serializable closures for distributed programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example-client-server"; + broken = true; }) {}; "distributed-fork" = callPackage @@ -83628,6 +88001,7 @@ self: { testHaskellDepends = [ base tasty tasty-hunit unix ]; description = "Like 'forkIO', but uses remote machines instead of local threads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-fork-aws-lambda" = callPackage @@ -83654,6 +88028,7 @@ self: { ]; description = "AWS Lambda backend for distributed-fork"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process" = callPackage @@ -83678,6 +88053,7 @@ self: { ]; description = "Cloud Haskell: Erlang-style concurrency in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-async" = callPackage @@ -83705,6 +88081,7 @@ self: { ]; description = "Cloud Haskell Async API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-azure" = callPackage @@ -83727,6 +88104,7 @@ self: { ]; description = "Microsoft Azure backend for Cloud Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-client-server" = callPackage @@ -83756,6 +88134,7 @@ self: { ]; description = "The Cloud Haskell Application Platform"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-ekg" = callPackage @@ -83771,6 +88150,7 @@ self: { ]; description = "Collect node stats for EKG"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-execution" = callPackage @@ -83806,6 +88186,7 @@ self: { ]; description = "Execution Framework for The Cloud Haskell Application Platform"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-extras" = callPackage @@ -83836,6 +88217,7 @@ self: { ]; description = "Cloud Haskell Extras"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-fsm" = callPackage @@ -83868,6 +88250,7 @@ self: { ]; description = "The Cloud Haskell implementation of Erlang/OTP gen_statem"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-lifted" = callPackage @@ -83893,6 +88276,7 @@ self: { ]; description = "monad-control style typeclass and transformer instances for Process monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-monad-control" = callPackage @@ -83909,6 +88293,7 @@ self: { ]; description = "Orphan instances for MonadBase and MonadBaseControl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-p2p" = callPackage @@ -83929,6 +88314,7 @@ self: { executableHaskellDepends = [ base distributed-process mtl ]; description = "Peer-to-peer node discovery for Cloud Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "jollycloud"; }) {}; @@ -83960,6 +88346,7 @@ self: { ]; description = "The Cloud Haskell Application Platform"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-registry" = callPackage @@ -83992,6 +88379,7 @@ self: { ]; description = "Cloud Haskell Extended Process Registry"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-simplelocalnet" = callPackage @@ -84014,6 +88402,7 @@ self: { ]; description = "Simple zero-configuration backend for Cloud Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-supervisor" = callPackage @@ -84045,6 +88434,7 @@ self: { ]; description = "Supervisors for The Cloud Haskell Application Platform"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-systest" = callPackage @@ -84064,6 +88454,7 @@ self: { ]; description = "Cloud Haskell Test Support"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-task" = callPackage @@ -84100,6 +88491,7 @@ self: { ]; description = "Task Framework for The Cloud Haskell Application Platform"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-tests" = callPackage @@ -84123,6 +88515,7 @@ self: { ]; description = "Tests and test support tools for distributed-process"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distributed-process-zookeeper" = callPackage @@ -84169,6 +88562,7 @@ self: { ]; description = "Compositional, type-safe, polymorphic static values and closures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "distribution" = callPackage @@ -84182,6 +88576,8 @@ self: { ]; description = "Finite discrete probability distributions"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "distribution-nixpkgs" = callPackage @@ -84241,6 +88637,7 @@ self: { ]; description = "Easily plot distributions from the distribution package.."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "distributive" = callPackage @@ -84280,6 +88677,8 @@ self: { libraryHaskellDepends = [ base ditto lucid path-pieces text ]; description = "Add support for using lucid with Ditto"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "diversity" = callPackage @@ -84340,6 +88739,7 @@ self: { ]; description = "A wiki implemented with a firm theoretical foundation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dixi"; }) {}; @@ -84356,6 +88756,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Hit drums with haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "djinn" = callPackage @@ -84387,6 +88789,8 @@ self: { ]; description = "Generate Haskell code from a type. Bridge from Djinn to GHC API."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "djinn-lib" = callPackage @@ -84411,6 +88815,8 @@ self: { ]; description = "Generate executable Haskell code from a type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dl-fedora" = callPackage @@ -84433,6 +88839,7 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "Fedora image download tool"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "dl-fedora"; }) {}; @@ -84519,7 +88926,9 @@ self: { ]; description = "AVAYA DMCC API bindings and WebSockets server for AVAYA"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dmcc-ws"; + broken = true; }) {}; "dmenu" = callPackage @@ -84535,6 +88944,8 @@ self: { ]; description = "Complete bindings to the dmenu and dmenu2 command line tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dmenu-pkill" = callPackage @@ -84552,6 +88963,7 @@ self: { ]; description = "dmenu script for killing applications. Sortable by process id or CPU/MEM usage."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dmenu-pkill"; }) {}; @@ -84570,6 +88982,7 @@ self: { ]; description = "Mounting and unmounting linux devices as user with dmenu and pmount"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dmenu-pmount"; }) {}; @@ -84588,6 +89001,7 @@ self: { ]; description = "dmenu script for searching the web with customizable search engines"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dmenu-search"; }) {}; @@ -84609,6 +89023,7 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "DNF wrapper tool to control repos"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dnf-repo"; }) {}; @@ -84684,6 +89099,8 @@ self: { ]; description = "DNS name parsing and pattern matching utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dnscache" = callPackage @@ -84702,7 +89119,9 @@ self: { executableHaskellDepends = [ base ]; description = "Caching DNS resolver library and mass DNS resolver utility"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "massdns"; + broken = true; }) {}; "dnsrbl" = callPackage @@ -84715,6 +89134,8 @@ self: { libraryHaskellDepends = [ base containers hsdns HUnit network ]; description = "Asynchronous DNS RBL lookup"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dnssd" = callPackage @@ -84727,6 +89148,8 @@ self: { librarySystemDepends = [ dns_sd ]; description = "DNS service discovery bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {dns_sd = null;}; "do-list" = callPackage @@ -84768,6 +89191,8 @@ self: { ]; description = "An alternative to monads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "do-spaces" = callPackage @@ -84796,6 +89221,8 @@ self: { ]; description = "DigitalOcean Spaces API bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dobutok" = callPackage @@ -84807,6 +89234,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Creates the time intervals for CLI changing messages on the screen"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dobutokO" = callPackage @@ -84818,6 +89247,8 @@ self: { libraryHaskellDepends = [ base ]; description = "The library is intended to print updated messages on the terminal screen"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dobutokO-effects" = callPackage @@ -84862,6 +89293,7 @@ self: { ]; description = "Helps to order the 7 or less Ukrainian words to obtain somewhat suitable for poetry or music text"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "dobutokO-poetry"; }) {}; @@ -84874,6 +89306,7 @@ self: { libraryHaskellDepends = [ base mmsyn3 mmsyn6ukr mmsyn7s vector ]; description = "Helps to order the 7 or less words (first of all the Ukrainian ones) to obtain somewhat suitable for poetry or music text"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "dobutokO-poetry-general-languages" = callPackage @@ -84890,6 +89323,7 @@ self: { ]; description = "Helps to order the 7 or less words to obtain somewhat suitable for poetry or music text"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "dobutokO2" = callPackage @@ -84913,6 +89347,7 @@ self: { ]; description = "Helps to create experimental music from a file (or its part) and a Ukrainian text"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "dobutokO2"; }) {}; @@ -84930,6 +89365,7 @@ self: { ]; description = "Helps to create more complex experimental music from a file (especially timbre)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "dobutokO4" = callPackage @@ -84946,6 +89382,7 @@ self: { ]; description = "Helps to create experimental music. Uses SoX inside."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "doc-review" = callPackage @@ -84971,6 +89408,7 @@ self: { ]; description = "Document review Web application, like http://book.realworldhaskell.org/"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "doc-review"; }) {}; @@ -84990,7 +89428,9 @@ self: { ]; description = "Checks Haddock comments for pitfalls and version changes"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "doccheck"; + broken = true; }) {}; "docidx" = callPackage @@ -85009,7 +89449,9 @@ self: { ]; description = "Generate an HTML index of installed Haskell packages and their documentation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "docidx"; + broken = true; }) {}; "docker" = callPackage @@ -85043,6 +89485,8 @@ self: { ]; description = "An API client for docker written in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "docker-build-cacher" = callPackage @@ -85065,7 +89509,9 @@ self: { ]; description = "Builds a docker image and caches all of its intermediate stages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "docker-build-cacher"; + broken = true; }) {}; "dockercook" = callPackage @@ -85099,7 +89545,9 @@ self: { testHaskellDepends = [ base HTF text vector ]; description = "A build tool for multiple docker image layers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "dockercook"; + broken = true; }) {}; "dockerfile" = callPackage @@ -85133,6 +89581,8 @@ self: { th-lift th-lift-instances time ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "doclayout" = callPackage @@ -85174,6 +89624,8 @@ self: { ]; description = "A command-line interface parser that will make you smile"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "docrecords" = callPackage @@ -85196,6 +89648,8 @@ self: { ]; description = "Vinyl-based records with hierarchical field names, default values and documentation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "docstrings" = callPackage @@ -85376,7 +89830,9 @@ self: { doHaddock = false; description = "Easy way to run doctests via cabal (no aeson dependency, uses configurator instead)"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "doctest-discover"; + broken = true; }) {}; "doctest-driver-gen" = callPackage @@ -85483,6 +89939,8 @@ self: { testHaskellDepends = [ base doctest HUnit QuickCheck ]; description = "Allow QuickCheck-style property testing within doctest"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "docusign-base" = callPackage @@ -85552,7 +90010,9 @@ self: { ]; description = "DocuSign examples"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "docusign-example"; + broken = true; }) {}; "docvim" = callPackage @@ -85579,7 +90039,9 @@ self: { ]; description = "Documentation generator for Vim plug-ins"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "docvim"; + broken = true; }) {}; "doi" = callPackage @@ -85608,6 +90070,7 @@ self: { ]; description = "Automatic Bibtex and fulltext of scientific articles"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "doi"; }) {}; @@ -85652,6 +90115,8 @@ self: { testHaskellDepends = [ base ]; description = "DOM Events expressed as Haskell types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dom-lt" = callPackage @@ -85687,6 +90152,8 @@ self: { ]; description = "Simple monadic DOM parser"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dom-selector" = callPackage @@ -85707,6 +90174,8 @@ self: { ]; description = "DOM traversal by CSS selectors for xml-conduit package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "domain" = callPackage @@ -85824,6 +90293,8 @@ self: { testHaskellDepends = [ domain optics rerebase ]; description = "Integration of domain with optics"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "domaindriven" = callPackage @@ -85853,6 +90324,7 @@ self: { ]; description = "Batteries included event sourcing and CQRS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "domaindriven-core" = callPackage @@ -85877,6 +90349,8 @@ self: { ]; description = "Batteries included event sourcing and CQRS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dominion" = callPackage @@ -85909,6 +90383,8 @@ self: { ]; description = "A simple templating library using HTML5 as its template language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dormouse-client" = callPackage @@ -85938,6 +90414,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Simple, type-safe and testable HTTP client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dormouse-uri" = callPackage @@ -85962,6 +90439,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Library for type-safe representations of Uri/Urls"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dot" = callPackage @@ -86001,7 +90480,9 @@ self: { ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dot-linker"; + broken = true; }) {}; "dot2graphml" = callPackage @@ -86088,7 +90569,9 @@ self: { doHaddock = false; description = "Filesystem to manage and parse dotfiles"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dotfs"; + broken = true; }) {}; "dotgen" = callPackage @@ -86131,6 +90614,7 @@ self: { ]; description = "dot language parsing and printing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "double-conversion" = callPackage @@ -86191,6 +90675,8 @@ self: { libraryHaskellDepends = [ base foldable-ix ]; description = "Some special functions to work with lists (with zip)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "doublify-toolkit" = callPackage @@ -86202,6 +90688,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Doublify API toolkit for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dove" = callPackage @@ -86237,6 +90725,7 @@ self: { ]; description = "A PureScript interpreter with a Haskell FFI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dovetail-aeson" = callPackage @@ -86253,6 +90742,7 @@ self: { ]; description = "Use Aeson from your Dovetail programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dovin" = callPackage @@ -86299,6 +90789,7 @@ self: { ]; description = "Dungeons of Wor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dow"; }) {}; @@ -86362,6 +90853,7 @@ self: { ]; description = "Simple tool to download images from RSS feeds (e.g. Flickr, Picasa)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "download-media-content"; }) {}; @@ -86379,6 +90871,8 @@ self: { ]; description = "A small, low-dependency library that provides turn-key file download over HTTP and HTTPS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dozenal" = callPackage @@ -86390,6 +90884,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A Haskell library for using Dozenal (Duodecimal - Base 12) numbers"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dozens" = callPackage @@ -86409,6 +90905,8 @@ self: { ]; description = "dozens api library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dph-base" = callPackage @@ -86422,6 +90920,8 @@ self: { ]; description = "Data Parallel Haskell common config and debugging functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dph-examples" = callPackage @@ -86440,6 +90940,7 @@ self: { ]; description = "Data Parallel Haskell example programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dph-lifted-base" = callPackage @@ -86456,6 +90957,7 @@ self: { ]; description = "Data Parallel Haskell common definitions used by other dph-lifted packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dph-lifted-copy" = callPackage @@ -86471,6 +90973,7 @@ self: { ]; description = "Data Parallel Haskell lifted array combinators. (deprecated version)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dph-lifted-vseg" = callPackage @@ -86487,6 +90990,7 @@ self: { ]; description = "Data Parallel Haskell lifted array combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dph-par" = callPackage @@ -86509,6 +91013,7 @@ self: { libraryHaskellDepends = [ base dph-base random vector ]; description = "Data Parallel Haskell segmented arrays. (abstract interface)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dph-prim-par" = callPackage @@ -86525,6 +91030,7 @@ self: { ]; description = "Data Parallel Haskell segmented arrays. (production version)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dph-prim-seq" = callPackage @@ -86540,6 +91046,7 @@ self: { ]; description = "Data Parallel Haskell segmented arrays. (sequential implementation)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dph-seq" = callPackage @@ -86571,6 +91078,8 @@ self: { testPkgconfigDepends = [ libdpkg ]; description = "libdpkg bindings"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) dpkg; libdpkg = null;}; "dpor" = callPackage @@ -86584,6 +91093,8 @@ self: { ]; description = "A generic implementation of dynamic partial-order reduction (DPOR) for testing arbitrary models of concurrency"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dprox" = callPackage @@ -86630,7 +91141,9 @@ self: { executableHaskellDepends = [ base relude ]; description = "See README for more info"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "dr-cabal"; + broken = true; }) {}; "drClickOn" = callPackage @@ -86642,6 +91155,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Monadic FRP"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dragen" = callPackage @@ -86662,6 +91177,8 @@ self: { ]; description = "Automatic derivation of optimized QuickCheck random generators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "drama" = callPackage @@ -86711,6 +91228,8 @@ self: { testHaskellDepends = [ base containers hspec QuickCheck ]; description = "A port of asciimoo's drawille to haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dresdner-verkehrsbetriebe" = callPackage @@ -86733,7 +91252,9 @@ self: { ]; description = "Library and program for querying DVB (Dresdner Verkehrsbetriebe AG)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "dresdner-verkehrsbetriebe"; + broken = true; }) {}; "drifter" = callPackage @@ -86770,6 +91291,8 @@ self: { ]; description = "PostgreSQL support for the drifter schema migration tool"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "drifter-sqlite" = callPackage @@ -86825,6 +91348,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "A Haskell bindings to the DRMAA C library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {drmaa = null;}; "drone" = callPackage @@ -86843,6 +91368,8 @@ self: { microlens req servant-server text warp ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dropbox" = callPackage @@ -86871,7 +91398,9 @@ self: { ]; description = "Dropbox API client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "exe"; + broken = true; }) {}; "dropbox-sdk" = callPackage @@ -86893,6 +91422,7 @@ self: { ]; description = "A library to access the Dropbox HTTP API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "dropsolve" = callPackage @@ -86911,6 +91441,7 @@ self: { ]; description = "A command line tool for resolving dropbox conflicts. Deprecated! Please use confsolve."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dropsolve"; }) {}; @@ -86941,6 +91472,8 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; description = "A subset of the miniKanren language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dsc" = callPackage @@ -86960,6 +91493,8 @@ self: { ]; description = "Helper functions for setting up Double Submit Cookie defense for forms"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dsh-sql" = callPackage @@ -86987,6 +91522,7 @@ self: { ]; description = "SQL backend for Database Supported Haskell (DSH)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sqltests"; }) {}; @@ -87005,6 +91541,7 @@ self: { ]; description = "DSMC library for rarefied gas dynamics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dsmc-tools" = callPackage @@ -87024,6 +91561,7 @@ self: { ]; description = "DSMC toolkit for rarefied gas dynamics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dson" = callPackage @@ -87035,6 +91573,8 @@ self: { libraryHaskellDepends = [ base parsec ]; description = "Haskell Doge Serialized Object Notation Parser"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dson-parsec" = callPackage @@ -87046,6 +91586,8 @@ self: { libraryHaskellDepends = [ base parsec ]; description = "DSON parser"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dsp" = callPackage @@ -87072,6 +91614,8 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols dlist ]; description = "Difference strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dsv" = callPackage @@ -87095,6 +91639,8 @@ self: { ]; description = "DSV (delimiter-separated values)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dtab" = callPackage @@ -87135,6 +91681,7 @@ self: { ]; description = "Parse and render DTD files (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dtd-text" = callPackage @@ -87150,6 +91697,8 @@ self: { ]; description = "Parse and render XML DTDs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dtd-types" = callPackage @@ -87191,6 +91740,8 @@ self: { ]; description = "(Fast) Dynamic Time Warping"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dual" = callPackage @@ -87258,6 +91809,8 @@ self: { ]; description = "Automatically generate dual constructions"; license = "AGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dublincore-xml-conduit" = callPackage @@ -87313,6 +91866,8 @@ self: { ]; description = "A Haskell library for parsing text into structured data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "duet" = callPackage @@ -87340,7 +91895,9 @@ self: { ]; description = "A tiny language, a subset of Haskell (with type classes) aimed at aiding teachers to teach Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "duet"; + broken = true; }) {}; "dumb-cas" = callPackage @@ -87395,6 +91952,8 @@ self: { ]; description = "A plug-in for rendering GHC core"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dunai" = callPackage @@ -87426,6 +91985,8 @@ self: { ]; description = "Generalised reactive framework supporting classic, arrowized and monadic FRP. (Core library fork.)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dunai-test" = callPackage @@ -87475,7 +92036,9 @@ self: { ]; description = "Frontend development build tool"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "duplo"; + broken = true; }) {}; "dura" = callPackage @@ -87489,6 +92052,8 @@ self: { libraryHaskellDepends = [ base bytestring directory filepath ]; description = "durable/atomic file system writes (from rio package)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "duration" = callPackage @@ -87505,6 +92070,8 @@ self: { ]; description = "A tiny compile-time time utility library inspired by zeit/ms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dustme" = callPackage @@ -87546,7 +92113,9 @@ self: { ]; description = "Dead simple password manager"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "dvault"; + broken = true; }) {}; "dvda" = callPackage @@ -87569,6 +92138,7 @@ self: { ]; description = "Efficient automatic differentiation and code generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dvdread" = callPackage @@ -87582,6 +92152,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "A monadic interface to libdvdread"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {dvdread = null;}; "dvi-processing" = callPackage @@ -87593,6 +92165,8 @@ self: { libraryHaskellDepends = [ base bytestring filepath transformers ]; description = "Read/write DVI and TFM file"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dvorak" = callPackage @@ -87617,6 +92191,8 @@ self: { libraryHaskellDepends = [ base binary bytestring containers ]; description = "Parser for DWARF debug format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dwarf-el" = callPackage @@ -87655,6 +92231,8 @@ self: { executableHaskellDepends = [ base containers dwarf-el ]; description = "High-level wrapper around the dwarf library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dwergaz" = callPackage @@ -87721,6 +92299,8 @@ self: { testHaskellDepends = [ ansi-terminal base hspec text ]; description = "A library for working with binary Dyck words"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dyepack" = callPackage @@ -87775,6 +92355,8 @@ self: { testHaskellDepends = [ base ]; description = "FRP for brick Terminal user interface library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dyna-gloss" = callPackage @@ -87850,6 +92432,7 @@ self: { ]; description = "Access the functions from the Cabal library without depending on it"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dynamic-graph" = callPackage @@ -87893,6 +92476,8 @@ self: { benchmarkHaskellDepends = [ base criterion primitive ]; description = "Dynamic graph algorithms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dynamic-linker-template" = callPackage @@ -87931,6 +92516,8 @@ self: { libraryHaskellDepends = [ base primitive vector ]; description = "A wrapper around MVector that enables pushing, popping and extending"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dynamic-object" = callPackage @@ -87949,6 +92536,8 @@ self: { ]; description = "Object-oriented programming with duck typing and singleton classes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dynamic-pipeline" = callPackage @@ -87975,6 +92564,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Library Type Safe implementation of Dynamic Pipeline Paradigm (DPP)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "examples"; }) {}; @@ -88000,6 +92590,7 @@ self: { ]; description = "Interactive diagram windows"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "dynamic-pp" = callPackage @@ -88020,6 +92611,7 @@ self: { ]; description = "A pretty-print library that employs a dynamic programming algorithm for optimal rendering"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dynamic-state" = callPackage @@ -88062,6 +92654,7 @@ self: { ]; description = "Typesafe library for working with DynamoDB database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "dynloader" = callPackage @@ -88074,6 +92667,8 @@ self: { testHaskellDepends = [ base ghc ghc-paths hspec ]; description = "Dynamically runtime loading packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dynobud" = callPackage @@ -88105,6 +92700,7 @@ self: { ]; description = "your dynamic optimization buddy"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "dyre" = callPackage @@ -88133,6 +92729,8 @@ self: { libraryHaskellDepends = [ base bytestring transformers ]; description = "Bindings to the dywapitchtrack pitch tracking library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dzen-dhall" = callPackage @@ -88168,7 +92766,9 @@ self: { ]; description = "Configure dzen2 bars in Dhall language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dzen-dhall"; + broken = true; }) {}; "dzen-utils" = callPackage @@ -88180,6 +92780,8 @@ self: { libraryHaskellDepends = [ base colour process ]; description = "Utilities for creating inputs for dzen"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "each" = callPackage @@ -88193,6 +92795,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Template Haskell library for writing monadic expressions more easily"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eager-sockets" = callPackage @@ -88206,6 +92810,8 @@ self: { libraryHaskellDepends = [ base bytestring network ]; description = "Socket operations with timeouts"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eap" = callPackage @@ -88238,7 +92844,9 @@ self: { testHaskellDepends = [ base filepath hspec ]; description = "Ear Clipping Triangulation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "earclipper"; + broken = true; }) {}; "earcut" = callPackage @@ -88250,6 +92858,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Binding to C++ earcut library"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "early" = callPackage @@ -88271,7 +92881,9 @@ self: { testHaskellDepends = [ base ]; description = "Early return syntax in do-notation (GHC plugin)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "early"; + broken = true; }) {}; "ease" = callPackage @@ -88298,6 +92910,8 @@ self: { ]; description = "Utility code for building HTTP API bindings more quickly"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "easy-args" = callPackage @@ -88310,6 +92924,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Parses command line arguments"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "easy-bitcoin" = callPackage @@ -88327,6 +92943,8 @@ self: { ]; description = "types and functions for bitcoin applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "easy-file" = callPackage @@ -88378,6 +92996,8 @@ self: { ]; description = "Haskell JSON library with an emphasis on simplicity, minimal dependencies, and ease of use"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "easyplot" = callPackage @@ -88389,6 +93009,8 @@ self: { libraryHaskellDepends = [ base process ]; description = "A tiny plotting library, utilizes gnuplot for plotting"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "easyrender" = callPackage @@ -88421,6 +93043,7 @@ self: { ]; description = "Pure, type-indexed haskell vector, matrix, and tensor library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "easytensor-vulkan" = callPackage @@ -88432,6 +93055,7 @@ self: { libraryHaskellDepends = [ base dimensions easytensor vulkan-api ]; description = "Use easytensor with vulkan-api"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "easytest" = callPackage @@ -88451,6 +93075,8 @@ self: { ]; description = "Simple, expressive testing library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ebeats" = callPackage @@ -88462,6 +93088,8 @@ self: { libraryHaskellDepends = [ base time ]; description = "Time in ebeats"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ebird-api" = callPackage @@ -88552,7 +93180,9 @@ self: { ]; description = "Parser combinators & EBNF, BFFs!"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "ebnf-parse"; + broken = true; }) {}; "ec2-signature" = callPackage @@ -88591,6 +93221,7 @@ self: { ]; description = "A handy tool for uploading unikernels to Amazon's EC2"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ec2-unikernel"; }) {}; @@ -88621,6 +93252,8 @@ self: { libraryHaskellDepends = [ base bytestring eccrypto ]; description = "provides \"ed25519\" API using \"eccrypto\""; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ecdsa" = callPackage @@ -88636,6 +93269,7 @@ self: { ]; description = "Basic ECDSA signing implementation"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "echo" = callPackage @@ -88667,7 +93301,9 @@ self: { executableHaskellDepends = [ base ]; description = "A ECMA-262 interpreter library"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "ecma262"; + broken = true; }) {}; "ecstasy" = callPackage @@ -88731,6 +93367,8 @@ self: { libraryHaskellDepends = [ base containers ecta ghc text ]; description = "Hole-Fit Synthesis using ECTAs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ecu" = callPackage @@ -88749,6 +93387,8 @@ self: { executableSystemDepends = [ canlib ]; description = "Tools for automotive ECU development"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {canlib = null;}; "ed25519" = callPackage @@ -88796,7 +93436,9 @@ self: { ]; description = "Command line file filtering with haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "eddie"; + broken = true; }) {}; "ede" = callPackage @@ -88828,7 +93470,9 @@ self: { ]; description = "Templating language with similar syntax and features to Liquid or Jinja2"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "ede"; + broken = true; }) {}; "edenmodules" = callPackage @@ -88840,6 +93484,8 @@ self: { libraryHaskellDepends = [ base containers deepseq parallel ]; description = "Semi-explicit parallel programming library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "edenskel" = callPackage @@ -88851,6 +93497,7 @@ self: { libraryHaskellDepends = [ base edenmodules parallel ]; description = "Semi-explicit parallel programming skeleton library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "edentv" = callPackage @@ -88871,6 +93518,7 @@ self: { ]; description = "A Tool to Visualize Parallel Functional Program Executions"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "edentv"; }) {}; @@ -88883,6 +93531,8 @@ self: { libraryHaskellDepends = [ base binary bytestring text ]; description = "EDF parsing library"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "edge" = callPackage @@ -88901,6 +93551,7 @@ self: { ]; description = "Top view space combat arcade game"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "edge"; }) {}; @@ -88929,6 +93580,7 @@ self: { ]; description = "Tools for efficient immutable graphs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "edis" = callPackage @@ -88940,6 +93592,8 @@ self: { libraryHaskellDepends = [ base bytestring cereal hedis ]; description = "Statically typechecked client for Redis"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "edit" = callPackage @@ -88960,6 +93614,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "A monad for rewriting things"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "edit-distance" = callPackage @@ -89031,6 +93687,8 @@ self: { ]; description = "Symmetric, stateful edit lenses"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "edit-lenses-demo" = callPackage @@ -89056,6 +93714,7 @@ self: { libraryHaskellDepends = [ base text vty vty-ui ]; description = "Interactive editors for Generics"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "editline" = callPackage @@ -89067,6 +93726,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Bindings to the editline library (libedit)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "editor-open" = callPackage @@ -89128,6 +93789,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "show the differences between 2 pieces of Text using the Levenshtein distance"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "effect-handlers" = callPackage @@ -89146,6 +93808,8 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "A library for writing extensible algebraic effects and handlers. Similar to extensible-effects but with deep handlers."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "effect-monad" = callPackage @@ -89157,6 +93821,7 @@ self: { libraryHaskellDepends = [ base type-level-sets ]; description = "Embeds effect systems and program logics into Haskell using graded monads and parameterised monads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "effect-stack" = callPackage @@ -89168,6 +93833,8 @@ self: { libraryHaskellDepends = [ base constraints mtl transformers ]; description = "Reducing the pain of transformer stacks with duplicated effects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "effectful" = callPackage @@ -89231,6 +93898,8 @@ self: { libraryHaskellDepends = [ base effectful-core primitive ]; description = "`ST`-style mutation for `effectful`"; license = lib.licenses.cc0; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "effectful-th" = callPackage @@ -89270,6 +93939,8 @@ self: { ]; description = "A monadic embedding of aspect oriented programming"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "effective-aspects-mzv" = callPackage @@ -89290,6 +93961,7 @@ self: { ]; description = "A monadic embedding of aspect oriented programming, using \"Monads, Zippers and Views\" instead of mtl"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "effects" = callPackage @@ -89332,6 +94004,8 @@ self: { ]; description = "An Effect System based on Type Classes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "effin" = callPackage @@ -89343,6 +94017,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A Typeable-free implementation of extensible effects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eflint" = callPackage @@ -89367,6 +94043,7 @@ self: { ]; description = "Simulation interpreter for FLINT policy descriptions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "egison" = callPackage @@ -89401,6 +94078,7 @@ self: { benchmarkHaskellDepends = [ base criterion transformers ]; description = "Programming language with non-linear pattern-matching against non-free data"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "egison-pattern-src" = callPackage @@ -89422,6 +94100,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "Manipulating Egison patterns: abstract syntax, parser, and pretty-printer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "egison-pattern-src-haskell-mode" = callPackage @@ -89441,6 +94121,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Parser and pretty printer for Egison pattern expressions in Haskell source code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "egison-pattern-src-th-mode" = callPackage @@ -89463,6 +94144,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Parser and pretty printer for Egison pattern expressions to use with TH"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "egison-quote" = callPackage @@ -89476,6 +94158,7 @@ self: { ]; description = "A quasi quotes for using Egison expression in Haskell code"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "egison-tutorial" = callPackage @@ -89494,6 +94177,7 @@ self: { ]; description = "A tutorial program for the Egison programming language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "egison-tutorial"; }) {}; @@ -89524,7 +94208,9 @@ self: { ]; description = "like eruby, ehaskell is embedded haskell"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "ehs"; + broken = true; }) {}; "ehlo" = callPackage @@ -89561,6 +94247,8 @@ self: { ]; description = "Embedded haskell template using quasiquotes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eibd-client-simple" = callPackage @@ -89579,6 +94267,8 @@ self: { librarySystemDepends = [ eibclient ]; description = "EIBd Client"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {eibclient = null;}; "eigen" = callPackage @@ -89598,6 +94288,8 @@ self: { ]; description = "Eigen C++ library (linear algebra: matrices, sparse matrices, vectors, numerical solvers)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eio" = callPackage @@ -89613,7 +94305,9 @@ self: { executableToolDepends = [ markdown-unlit ]; description = "IO with Exceptions tracked on the type-level"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "readme"; + broken = true; }) {}; "either" = callPackage @@ -89686,6 +94380,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Functions for probing and unwrapping values inside of Either"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eithers" = callPackage @@ -89717,6 +94413,8 @@ self: { ]; description = "Binding to EJDB2 C library, an embedded JSON noSQL database"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {ejdb2 = null; libejdb2 = null;}; "ekg" = callPackage @@ -89737,6 +94435,7 @@ self: { ]; description = "Remote monitoring of processes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ekg-bosun" = callPackage @@ -89754,6 +94453,8 @@ self: { ]; description = "Send ekg metrics to a Bosun instance"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ekg-carbon" = callPackage @@ -89770,6 +94471,7 @@ self: { ]; description = "An EKG backend to send statistics to Carbon (part of Graphite monitoring tools)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ekg-cloudwatch" = callPackage @@ -89787,6 +94489,7 @@ self: { ]; description = "An ekg backend for Amazon Cloudwatch"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ekg-core" = callPackage @@ -89821,6 +94524,8 @@ self: { ]; description = "Push metrics to elastic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ekg-elasticsearch" = callPackage @@ -89838,6 +94543,8 @@ self: { ]; description = "Push metrics to elasticsearch"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ekg-influxdb" = callPackage @@ -89870,6 +94577,8 @@ self: { ]; description = "JSON encoding of ekg metrics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ekg-log" = callPackage @@ -89886,6 +94595,8 @@ self: { ]; description = "Push metrics to a log file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ekg-prometheus-adapter" = callPackage @@ -89905,6 +94616,8 @@ self: { testHaskellDepends = [ base ]; description = "Easily expose your EKG metrics to Prometheus"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ekg-push" = callPackage @@ -89922,6 +94635,8 @@ self: { ]; description = "Small framework to push metric deltas to a broadcast channel using the ekg-core library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ekg-rrd" = callPackage @@ -89942,6 +94657,8 @@ self: { ]; description = "Passes ekg statistics to rrdtool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ekg-statsd" = callPackage @@ -89957,6 +94674,8 @@ self: { ]; description = "Push metrics to statsd"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ekg-wai" = callPackage @@ -89975,6 +94694,7 @@ self: { ]; description = "Remote monitoring of processes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "elasticsearch-interchange" = callPackage @@ -89997,6 +94717,7 @@ self: { ]; description = "Serialization of Elasticsearch requests and responses"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "elbow" = callPackage @@ -90028,6 +94749,7 @@ self: { testHaskellDepends = [ base hspec network-bitcoin ]; description = "Electrs client library for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "electrum-mnemonic" = callPackage @@ -90079,6 +94801,7 @@ self: { executableHaskellDepends = [ base elerea GLFW OpenGL ]; description = "Example applications for Elerea"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "elerea-sdl" = callPackage @@ -90101,6 +94824,8 @@ self: { libraryHaskellDepends = [ base extensible transformers ]; description = "Immediately lifts to a desired level"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "elf" = callPackage @@ -90166,7 +94891,9 @@ self: { executableHaskellDepends = [ base ]; description = "Arrows with holes"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "elliptic-curve" = callPackage @@ -90192,6 +94919,7 @@ self: { ]; description = "Elliptic curve library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "elliptic-integrals" = callPackage @@ -90326,7 +95054,9 @@ self: { ]; description = "elm-export persistent entities"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.jb55 ]; + broken = true; }) {}; "elm-get" = callPackage @@ -90582,6 +95312,8 @@ self: { ]; description = "Generate ELM code from a Wai websocket application"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "elm-yesod" = callPackage @@ -90675,7 +95407,9 @@ self: { ]; description = "Generate easy-to-remember, hard-to-guess passwords"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "elocrypt"; + broken = true; }) {}; "elsa" = callPackage @@ -90697,6 +95431,7 @@ self: { testHaskellDepends = [ base directory filepath tasty tasty-hunit ]; description = "A tiny language for understanding the lambda-calculus"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "elsa"; }) {}; @@ -90886,6 +95621,7 @@ self: { ]; description = "Useful route types for Ema"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "ema-generics" = callPackage @@ -90906,6 +95642,8 @@ self: { ]; description = "Generic deriving for Ema routes"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "emacs-keys" = callPackage @@ -90924,6 +95662,7 @@ self: { ]; description = "library to parse emacs style keybinding into the modifiers and the chars"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; }) {}; "emacs-module" = callPackage @@ -90980,6 +95719,7 @@ self: { ]; description = "Sending eMail in Haskell made easy"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "email-header" = callPackage @@ -91001,6 +95741,8 @@ self: { ]; description = "Parsing and rendering of email and MIME headers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "email-postmark" = callPackage @@ -91016,6 +95758,8 @@ self: { ]; description = "A simple wrapper to send emails via the api of the service postmark (http://postmarkapp.com/)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "email-validate" = callPackage @@ -91087,6 +95831,8 @@ self: { testHaskellDepends = [ base doctest Glob ]; description = "Wrapper around email-validate library adding instances for common type classes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "emailparse" = callPackage @@ -91109,6 +95855,7 @@ self: { ]; description = "An email parser that will parse everything"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "emanote" = callPackage @@ -91178,6 +95925,7 @@ self: { description = "Emanate a structured view of your plain-text notes"; license = lib.licenses.agpl3Only; badPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = lib.platforms.none; mainProgram = "emanote"; maintainers = [ lib.maintainers.maralorn ]; }) {}; @@ -91196,6 +95944,8 @@ self: { testHaskellDepends = [ aeson base hspec ]; description = "Reasonable conventions for embedding YAML configuration with Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "embeddock" = callPackage @@ -91235,6 +95985,8 @@ self: { libraryHaskellDepends = [ base chronos ]; description = "execute actions periodically while avoiding drift"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "embroidery" = callPackage @@ -91253,6 +96005,7 @@ self: { executableHaskellDepends = [ base ]; description = "support for embroidery formats in haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -91284,6 +96037,7 @@ self: { ]; description = "Empirical Mode Decomposition and Hilbert-Huang Transform"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "emgm" = callPackage @@ -91296,6 +96050,8 @@ self: { testHaskellDepends = [ base HUnit QuickCheck syb ]; description = "Extensible and Modular Generics for the Masses"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "emoji" = callPackage @@ -91349,6 +96105,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A container that always has no values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "enchant" = callPackage @@ -91365,6 +96123,8 @@ self: { testHaskellDepends = [ base ]; description = "Binding to the Enchant library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) enchant;}; "enclosed-exceptions" = callPackage @@ -91401,6 +96161,8 @@ self: { ]; description = "Safe string conversion and encoding"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "encoding" = callPackage @@ -91422,6 +96184,8 @@ self: { testHaskellDepends = [ base bytestring HUnit QuickCheck ]; description = "A library for various character encodings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "encoding-io" = callPackage @@ -91435,6 +96199,8 @@ self: { ]; description = "Encoding-aware file I/O"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "encryptable" = callPackage @@ -91458,6 +96224,8 @@ self: { ]; description = "Typed encryption with persistent support"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "endo" = callPackage @@ -91475,6 +96243,8 @@ self: { ]; description = "Endomorphism utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eng-stemmer" = callPackage @@ -91513,6 +96283,8 @@ self: { ]; description = "A Haskell implementation of Engine.IO"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "engine-io-growler" = callPackage @@ -91531,6 +96303,7 @@ self: { unordered-containers wai wai-websockets websockets ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "engine-io-snap" = callPackage @@ -91547,6 +96320,7 @@ self: { snap-core unordered-containers websockets websockets-snap ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "engine-io-wai" = callPackage @@ -91565,6 +96339,7 @@ self: { ]; description = "An @engine-io@ @ServerAPI@ that is compatible with @Wai@"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "engine-io-yesod" = callPackage @@ -91581,6 +96356,7 @@ self: { unordered-containers wai wai-websockets websockets yesod-core ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "engineering-units" = callPackage @@ -91608,6 +96384,7 @@ self: { executableHaskellDepends = [ base matrix quipper-core ]; description = "An application (and library) to convert quipper circuits into Qpmc models"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "entangle"; }) {}; @@ -91654,6 +96431,8 @@ self: { ]; description = "entwine - Concurrency tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "enum-subset-generate" = callPackage @@ -91691,6 +96470,8 @@ self: { ]; description = "A text rendering and parsing toolkit for enumerated types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "enum-text-rio" = callPackage @@ -91707,6 +96488,7 @@ self: { ]; description = "Making fmt available with rio"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "demo-enum-text-rio"; }) {}; @@ -91735,6 +96517,8 @@ self: { ]; description = "An experimental Utf8 parsing toolkit for enumerated types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "enumerable" = callPackage @@ -91765,6 +96549,7 @@ self: { executableHaskellDepends = [ base ]; description = "enumerate all the values in a finite type (automatically)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "example-enumerate"; }) {}; @@ -91786,6 +96571,7 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "simple package for inverting functions and testing totality, via brute enumeration of the domain"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example-enumerate-function"; }) {}; @@ -91803,6 +96589,7 @@ self: { testHaskellDepends = [ arith-encode base binary HUnit-Plus ]; description = "A practical API for building recursive enumeration procedures and enumerating datatypes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "enumerator" = callPackage @@ -91819,6 +96606,8 @@ self: { ]; description = "Reliable, high-performance processing with left-fold enumerators"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "enumerator-fd" = callPackage @@ -91830,6 +96619,7 @@ self: { libraryHaskellDepends = [ base enumerator mtl ]; description = "Enumerator instances for monads-fd classes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "enumerator-tf" = callPackage @@ -91841,6 +96631,7 @@ self: { libraryHaskellDepends = [ base enumerator monads-tf ]; description = "Enumerator instances for monads-tf classes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "enumfun" = callPackage @@ -91852,6 +96643,7 @@ self: { libraryHaskellDepends = [ base enummapset-th ]; description = "Finitely represented /total/ EnumMaps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "enummapmap" = callPackage @@ -91876,6 +96668,8 @@ self: { ]; description = "Map of maps using Enum types as keys"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "enummaps" = callPackage @@ -91887,6 +96681,8 @@ self: { libraryHaskellDepends = [ base containers deepseq ]; description = "Enum wrappers for IntMap and IntSet"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "enummapset" = callPackage @@ -91920,6 +96716,8 @@ self: { ]; description = "TH-generated EnumSet/EnumMap wrappers around IntSet/IntMap"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "enumset" = callPackage @@ -91996,6 +96794,8 @@ self: { ]; description = "Pull configuration information from the ENV"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "envelope" = callPackage @@ -92010,6 +96810,8 @@ self: { testHaskellDepends = [ base doctest Glob ]; description = "Defines generic 'Envelope' type to wrap reponses from a JSON API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "envparse" = callPackage @@ -92043,7 +96845,9 @@ self: { ]; description = "Display efficiently the state of the local environment"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "envstatus"; + broken = true; }) {}; "envy" = callPackage @@ -92081,6 +96885,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Provides FromEnv in envy instance for Record of extensible"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "epanet-haskell" = callPackage @@ -92092,6 +96898,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell binding for EPANET"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "epass" = callPackage @@ -92103,6 +96911,8 @@ self: { libraryHaskellDepends = [ base stm time ]; description = "Baisc, Erlang-like message passing supporting sockets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ephemeral" = callPackage @@ -92125,6 +96935,7 @@ self: { testHaskellDepends = [ base doctest numhask ]; description = "See readme.md"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "epi-sim" = callPackage @@ -92143,6 +96954,8 @@ self: { ]; description = "A library for simulating epidemics as birth-death processes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "epic" = callPackage @@ -92160,7 +96973,9 @@ self: { ]; description = "Compiler for a simple functional language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "epic"; + broken = true; }) {}; "epoll" = callPackage @@ -92174,6 +96989,8 @@ self: { libraryHaskellDepends = [ base unix ]; description = "epoll bindings"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eprocess" = callPackage @@ -92266,7 +97083,9 @@ self: { ]; description = "Rename epub ebook files based on meta information"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "epubname"; + broken = true; }) {}; "eq" = callPackage @@ -92332,6 +97151,8 @@ self: { ]; description = "Proof assistant for Haskell using DataKinds & PolyKinds"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "equeue" = callPackage @@ -92353,6 +97174,8 @@ self: { ]; description = "Application level triggered, and edge triggered event multiqueues"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "equivalence" = callPackage @@ -92395,7 +97218,9 @@ self: { ]; description = "An entity-relationship diagram generator from a plain text description"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "erd"; + broken = true; }) {}; "erf" = callPackage @@ -92418,6 +97243,7 @@ self: { libraryHaskellDepends = [ base polynomial ]; description = "Native Haskell implementation of the interface from the erf package"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "erlang" = callPackage @@ -92433,6 +97259,8 @@ self: { ]; description = "FFI interface to Erlang"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "erlang-ffi" = callPackage @@ -92452,6 +97280,8 @@ self: { ]; description = "Send messages to an Erlang node using Haskell"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eros" = callPackage @@ -92464,6 +97294,8 @@ self: { libraryHaskellDepends = [ aeson base bytestring containers text ]; description = "A text censorship library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eros-client" = callPackage @@ -92482,6 +97314,7 @@ self: { ]; description = "DEPRECATED in favor of eros-http"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "erosc"; }) {}; @@ -92502,6 +97335,7 @@ self: { ]; description = "JSON HTTP interface to Eros"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "eros-http"; }) {}; @@ -92591,6 +97425,8 @@ self: { ]; description = "Provides API for enriching errors with contexts"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "error-continuations" = callPackage @@ -92602,6 +97438,8 @@ self: { libraryHaskellDepends = [ base either mtl transformers ]; description = "Error Continuations"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "error-list" = callPackage @@ -92613,6 +97451,8 @@ self: { libraryHaskellDepends = [ base mtl text text-render ]; description = "A useful type for collecting error messages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "error-loc" = callPackage @@ -92624,6 +97464,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "An error replacement with call-site metadata"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "error-location" = callPackage @@ -92650,6 +97492,7 @@ self: { ]; description = "Composable error messages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "error-or" = callPackage @@ -92683,6 +97526,8 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Set of utils and operators for error handling"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "errorcall-eq-instance" = callPackage @@ -92732,6 +97577,7 @@ self: { ]; description = "`bracket`-like functions for `ExceptT` over `IO` monad"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "ersaconcat" = callPackage @@ -92755,7 +97601,9 @@ self: { ]; description = "A script to concatenate AIP ERSA"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ersaconcat"; + broken = true; }) {}; "ersatz" = callPackage @@ -92783,6 +97631,8 @@ self: { testHaskellDepends = [ array base ]; description = "A monad for expressing SAT or QSAT problems using observable sharing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ersatz-toysat" = callPackage @@ -92802,6 +97652,7 @@ self: { ]; description = "toysat driver as backend for ersatz"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ert" = callPackage @@ -92824,7 +97675,9 @@ self: { ]; description = "Easy Runtime Templates"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "ert"; + broken = true; }) {}; "escape-artist" = callPackage @@ -92841,6 +97694,8 @@ self: { ]; description = "ANSI Escape Sequence Text Decoration Made Easy"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "escaped" = callPackage @@ -92889,7 +97744,9 @@ self: { doHaddock = false; description = "Terminal fuzzy selector"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "escoger"; + broken = true; }) {}; "esotericbot" = callPackage @@ -92913,6 +97770,7 @@ self: { doHaddock = false; description = "Esotericbot is a sophisticated, lightweight IRC bot"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "esotericbot"; }) {}; @@ -93027,6 +97885,8 @@ self: { ]; description = "Esqueleto support for the pgcrypto PostgreSQL module"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "esqueleto-streaming" = callPackage @@ -93043,6 +97903,7 @@ self: { ]; description = "Memory-constant streaming of Esqueleto results from PostgreSQL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "esqueleto-textsearch" = callPackage @@ -93066,6 +97927,8 @@ self: { ]; description = "PostgreSQL full text search for Esqueleto"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ess" = callPackage @@ -93077,6 +97940,8 @@ self: { libraryHaskellDepends = [ base ]; description = "The type-level S combinator in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "essence-of-live-coding" = callPackage @@ -93101,7 +97966,9 @@ self: { ]; description = "General purpose live coding framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.turion ]; + broken = true; }) {}; "essence-of-live-coding-PortMidi" = callPackage @@ -93118,6 +97985,7 @@ self: { description = "General purpose live coding framework - PortMidi backend"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; }) {}; "essence-of-live-coding-gloss" = callPackage @@ -93133,6 +98001,7 @@ self: { ]; description = "General purpose live coding framework - Gloss backend"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.turion ]; }) {}; @@ -93152,6 +98021,7 @@ self: { ]; description = "General purpose live coding framework - Gloss example"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "essence-of-live-coding-gloss-example"; }) {}; @@ -93168,6 +98038,7 @@ self: { ]; description = "General purpose live coding framework - pulse backend"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.turion ]; }) {}; @@ -93187,6 +98058,7 @@ self: { ]; description = "General purpose live coding framework - pulse backend example"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "essence-of-live-coding-pulse-example"; }) {}; @@ -93204,6 +98076,7 @@ self: { ]; description = "General purpose live coding framework - QuickCheck integration"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.turion ]; }) {}; @@ -93216,6 +98089,7 @@ self: { libraryHaskellDepends = [ base essence-of-live-coding vivid ]; description = "General purpose live coding framework - vivid backend"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "essence-of-live-coding-warp" = callPackage @@ -93234,6 +98108,7 @@ self: { ]; description = "General purpose live coding framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.turion ]; }) {}; @@ -93265,6 +98140,7 @@ self: { ]; description = "Tool for managing probability estimation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "estreps" = callPackage @@ -93281,6 +98157,7 @@ self: { ]; description = "Repeats from ESTs"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "etc" = callPackage @@ -93298,6 +98175,8 @@ self: { testHaskellDepends = [ aeson base rio tasty tasty-hunit ]; description = "Declarative configuration spec for Haskell projects"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "etcd" = callPackage @@ -93316,6 +98195,8 @@ self: { testHaskellDepends = [ async base hspec MonadRandom mtl text ]; description = "Client for etcd, a highly-available key value store"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eternal" = callPackage @@ -93352,6 +98233,7 @@ self: { ]; description = "Native event-sourcing database"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "eternity-timestamped" = callPackage @@ -93369,6 +98251,7 @@ self: { ]; description = "Automatic timestamping for Eternity"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ether" = callPackage @@ -93397,6 +98280,7 @@ self: { ]; description = "Monad transformers and classes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ethereum-analyzer" = callPackage @@ -93420,6 +98304,7 @@ self: { ]; description = "A Ethereum contract analyzer"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "ethereum-analyzer-cli" = callPackage @@ -93447,6 +98332,7 @@ self: { ]; description = "A CLI frontend for ethereum-analyzer"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "ethereum-analyzer-deps" = callPackage @@ -93492,6 +98378,7 @@ self: { ]; description = "A web frontend for ethereum-analyzer"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "ethereum-analyzer-webui"; }) {}; @@ -93521,6 +98408,7 @@ self: { ]; description = "A Haskell version of an Ethereum client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ethereum-merkle-patricia-db" = callPackage @@ -93545,6 +98433,7 @@ self: { ]; description = "A modified Merkle Patricia DB"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ethereum-rlp" = callPackage @@ -93563,6 +98452,8 @@ self: { ]; description = "Ethereum Recursive Length Prefix Encoding"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eths-rlp" = callPackage @@ -93579,6 +98470,7 @@ self: { ]; description = "Ethereum Recursive Length Prefix Encoding"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ety" = callPackage @@ -93660,6 +98552,7 @@ self: { ]; description = "Dynamic network FRP with events and continuous values"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "eurofxref" = callPackage @@ -93677,6 +98570,8 @@ self: { ]; description = "Free foreign exchange/currency feed from the European Central Bank"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "evdev" = callPackage @@ -93721,6 +98616,7 @@ self: { description = "Bridge for working with evdev and streamly"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; + hydraPlatforms = lib.platforms.none; }) {}; "eve" = callPackage @@ -93755,7 +98651,9 @@ self: { ]; testHaskellDepends = [ base bytestring eve lens mtl text vty ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "eve-cli-exe"; + broken = true; }) {}; "eved" = callPackage @@ -93773,6 +98671,8 @@ self: { ]; description = "A value level web framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eveff" = callPackage @@ -93797,6 +98697,8 @@ self: { ]; description = "Monoidal, monadic and first-class events"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "event-driven" = callPackage @@ -93808,6 +98710,8 @@ self: { libraryHaskellDepends = [ base monads-tf yjtools ]; description = "library for event driven programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "event-handlers" = callPackage @@ -93857,6 +98761,7 @@ self: { ]; description = "Event-graph simulation monad transformer"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "event-transformer" = callPackage @@ -93895,6 +98800,7 @@ self: { ]; description = "Core module for eventful"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "eventful-dynamodb" = callPackage @@ -93918,6 +98824,7 @@ self: { ]; description = "Library for eventful DynamoDB event stores"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "eventful-memory" = callPackage @@ -93937,6 +98844,7 @@ self: { ]; description = "In-memory implementations for eventful"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "eventful-postgresql" = callPackage @@ -93959,6 +98867,7 @@ self: { ]; description = "Postgres implementations for eventful"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "eventful-sql-common" = callPackage @@ -93977,6 +98886,7 @@ self: { ]; description = "Common library for SQL event stores"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "eventful-sqlite" = callPackage @@ -93999,6 +98909,7 @@ self: { ]; description = "SQLite implementations for eventful"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "eventful-test-helpers" = callPackage @@ -94014,6 +98925,7 @@ self: { ]; description = "Common module used for eventful tests"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "eventlog-socket" = callPackage @@ -94069,6 +98981,7 @@ self: { ]; description = "A different take on an IO system. Based on Amanda's IO loop, this eventloop takes a function that maps input events to output events. It can easily be extended by modules that represent IO devices or join multiple modules together."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "eventsource-api" = callPackage @@ -94088,6 +99001,8 @@ self: { ]; description = "Provides an eventsourcing high level API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eventsource-geteventstore-store" = callPackage @@ -94112,6 +99027,7 @@ self: { ]; description = "GetEventStore store implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "eventsource-store-specs" = callPackage @@ -94128,6 +99044,7 @@ self: { ]; description = "Provides common test specification for Store implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "eventsource-stub-store" = callPackage @@ -94149,6 +99066,7 @@ self: { ]; description = "An in-memory stub store implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "eventsourced" = callPackage @@ -94170,7 +99088,9 @@ self: { ]; description = "Server-Sent Events the UNIX way"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "eventsourced"; + broken = true; }) {}; "eventsourcing" = callPackage @@ -94243,6 +99163,8 @@ self: { description = "EventStore TCP Client"; license = lib.licenses.bsd3; platforms = lib.platforms.x86_64; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eventstore_1_4_3" = callPackage @@ -94279,6 +99201,7 @@ self: { license = lib.licenses.bsd3; platforms = lib.platforms.x86_64; hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "eventuo11y" = callPackage @@ -94296,6 +99219,7 @@ self: { ]; description = "An event-oriented observability library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "eventuo11y-batteries" = callPackage @@ -94319,6 +99243,7 @@ self: { ]; description = "Grab bag of eventuo11y-enriched functionality"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "eventuo11y-dsl" = callPackage @@ -94346,6 +99271,7 @@ self: { ]; description = "aeson-based rendering for eventuo11y"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "eventuo11y-otel" = callPackage @@ -94359,6 +99285,7 @@ self: { ]; description = "OpenTelemetry-based rendering for eventuo11y"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "eventuo11y-prometheus" = callPackage @@ -94370,6 +99297,7 @@ self: { libraryHaskellDepends = [ base containers eventuo11y prometheus ]; description = "Prometheus backend for eventuo11y"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "every" = callPackage @@ -94392,6 +99320,7 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "A functional pearl on encoding and decoding using question-and-answer strategies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "evm-opcodes" = callPackage @@ -94433,6 +99362,8 @@ self: { ]; description = "A GHC plugin to derive instances"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ewe" = callPackage @@ -94452,7 +99383,9 @@ self: { executableToolDepends = [ alex happy uuagc ]; description = "An interpreter for EWE programming language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ewe"; + broken = true; }) {}; "ex-pool" = callPackage @@ -94493,6 +99426,8 @@ self: { testHaskellDepends = [ base containers tasty tasty-hunit ]; description = "Efficient exact cover solver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "exact-pi" = callPackage @@ -94541,6 +99476,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Framework for Exact Real Arithmetic in the Positional Number System"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "example-haskell-project" = callPackage @@ -94569,6 +99506,8 @@ self: { libraryHaskellDepends = [ base exceptions transformers ]; description = "Safely deal with exceptions in ExceptT"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "exception-hierarchy" = callPackage @@ -94606,6 +99545,8 @@ self: { ]; description = "Exception monad transformer instances for monads-fd classes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "exception-monads-tf" = callPackage @@ -94664,6 +99605,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "DerivingVia for your hierarchical exceptions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "exceptional" = callPackage @@ -94675,6 +99618,8 @@ self: { libraryHaskellDepends = [ base exceptions ]; description = "Essentially the Maybe type with error messages"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "exceptionfree-readfile" = callPackage @@ -94690,6 +99635,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "An exception-free readFile for use with '+RTS -xc -RTS' projects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "exceptions_0_10_7" = callPackage @@ -94760,6 +99707,8 @@ self: { ]; description = "A Haskell client for https://exchangeratesapi.io/"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "execs" = callPackage @@ -94774,7 +99723,9 @@ self: { executableHaskellDepends = [ base directory process text ]; description = "Tool to run stack exec prj-exe more easy"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "execs"; + broken = true; }) {}; "executable-hash" = callPackage @@ -94823,6 +99774,8 @@ self: { testHaskellDepends = [ async base doctest hspec process ]; description = "Shell helpers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "exference" = callPackage @@ -94853,6 +99806,7 @@ self: { ]; description = "Tool to search/generate (haskell) expressions with a given type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "exference"; }) {}; @@ -94879,6 +99833,8 @@ self: { ]; description = "A library for crawling exhentai"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "exhaustive" = callPackage @@ -94893,6 +99849,8 @@ self: { ]; description = "Compile time checks that a computation considers producing data through all possible constructors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "exherbo-cabal" = callPackage @@ -94917,7 +99875,9 @@ self: { testHaskellDepends = [ base doctest ]; description = "Exheres generator for cabal packages"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "exherbo-cabal"; + broken = true; }) {}; "exif" = callPackage @@ -94930,6 +99890,8 @@ self: { librarySystemDepends = [ exif ]; description = "A Haskell binding to a subset of libexif"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) exif;}; "exiftool" = callPackage @@ -94971,6 +99933,8 @@ self: { ]; description = "database schema for exigo marking/assessment tools"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "exinst" = callPackage @@ -95077,6 +100041,8 @@ self: { libraryHaskellDepends = [ base constraints deepseq exinst ]; description = "Derive instances for the `deepseq` library for your existential types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "exinst-hashable" = callPackage @@ -95090,6 +100056,8 @@ self: { ]; description = "Derive instances for the `hashable` library for your existential types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "exinst-serialise" = callPackage @@ -95120,6 +100088,7 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols util ]; description = "Dependent sum type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "exist-instances" = callPackage @@ -95135,6 +100104,7 @@ self: { ]; description = "Instances for \"exist\" package (requires more language extensions and dependencies)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "existential" = callPackage @@ -95168,6 +100138,8 @@ self: { libraryHaskellDepends = [ base contravariant ]; description = "Existential datatypes holding evidence of constraints"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "exit-codes" = callPackage @@ -95200,6 +100172,8 @@ self: { ]; description = "Monad transformer for exit codes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "exomizer" = callPackage @@ -95271,7 +100245,9 @@ self: { base HUnit QuickCheck random tasty tasty-hunit tasty-quickcheck ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "exp-cache-benchmarks"; + broken = true; }) {}; "exp-extended" = callPackage @@ -95285,6 +100261,8 @@ self: { libraryHaskellDepends = [ base ]; description = "floating point with extended exponent range"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "exp-pairs" = callPackage @@ -95322,6 +100300,7 @@ self: { ]; description = "Extensible Pandoc"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "expat-enumerator" = callPackage @@ -95337,6 +100316,7 @@ self: { ]; description = "Enumerator-based API for Expat"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "experimenter" = callPackage @@ -95412,6 +100392,7 @@ self: { ]; description = "Expiring containers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "expiring-mvar" = callPackage @@ -95438,7 +100419,9 @@ self: { ]; description = "Show how expressions are parsed"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "explain"; + broken = true; }) {}; "explainable-predicates" = callPackage @@ -95475,6 +100458,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Fully-flexible polymorphic lenses, without any bizarre profunctors"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "explicit-determinant" = callPackage @@ -95486,6 +100471,8 @@ self: { libraryHaskellDepends = [ base ]; description = "explicit computation of determinant of small matrices"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "explicit-exception" = callPackage @@ -95513,6 +100500,8 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols tagged ]; description = "File handles with explicit IOModes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "explicit-iomodes-bytestring" = callPackage @@ -95524,6 +100513,7 @@ self: { libraryHaskellDepends = [ base bytestring explicit-iomodes ]; description = "Extends explicit-iomodes with ByteString operations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "explicit-iomodes-text" = callPackage @@ -95535,6 +100525,7 @@ self: { libraryHaskellDepends = [ base explicit-iomodes text ]; description = "Extends explicit-iomodes with Text operations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "explicit-sharing" = callPackage @@ -95548,6 +100539,7 @@ self: { ]; description = "Explicit Sharing of Monadic Effects"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "explore" = callPackage @@ -95561,6 +100553,7 @@ self: { executableHaskellDepends = [ array base directory pngload ]; description = "Experimental Plot data Reconstructor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "explore"; }) {}; @@ -95579,6 +100572,8 @@ self: { ]; description = "A generic exploring interpreter for exploratory programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "exposed-containers" = callPackage @@ -95599,6 +100594,8 @@ self: { ]; description = "A distribution of the 'containers' package, with all modules exposed"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "express" = callPackage @@ -95623,6 +100620,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Generalization of parsec's expression parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "expressions" = callPackage @@ -95640,6 +100639,8 @@ self: { testHaskellDepends = [ base singletons text ]; description = "Expressions and Formulae a la carte"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "expressions-z3" = callPackage @@ -95658,6 +100659,7 @@ self: { ]; description = "Encode and Decode expressions from Z3 ASTs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "expresso" = callPackage @@ -95686,7 +100688,9 @@ self: { ]; description = "A simple expressions language based on row types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "expresso"; + broken = true; }) {}; "extcore" = callPackage @@ -95704,6 +100708,8 @@ self: { ]; description = "Libraries for processing GHC Core"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "extemp" = callPackage @@ -95726,6 +100732,7 @@ self: { ]; description = "automated printing for extemp speakers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "extemp"; }) {}; @@ -95750,6 +100757,8 @@ self: { libraryHaskellDepends = [ base constraints ghc-prim tagged ]; description = "Extended Categories"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "extended-containers" = callPackage @@ -95762,6 +100771,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Heap and Vector container types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "extended-containers-lens" = callPackage @@ -95773,6 +100784,7 @@ self: { libraryHaskellDepends = [ base extended-containers lens ]; description = "lens instances for extended-containers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "extended-reals" = callPackage @@ -95831,6 +100843,8 @@ self: { ]; description = "Sums/products/lists/trees which can be extended in other modules"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "extensible-effects" = callPackage @@ -95890,6 +100904,8 @@ self: { ]; description = "Message passing concurrency as extensible-effect"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "extensible-exceptions" = callPackage @@ -95919,6 +100935,7 @@ self: { testHaskellDepends = [ base extensible ]; description = "Operational-based extensible effect library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "extensible-sp" = callPackage @@ -95947,7 +100964,9 @@ self: { ]; description = "Inspect extensions in cabal and hpack files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "extensioneer"; + broken = true; }) {}; "extensions" = callPackage @@ -95989,6 +101008,8 @@ self: { ]; description = "Sort large arrays on your hard drive. Kind of like the unix util sort."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "extism" = callPackage @@ -96004,6 +101025,8 @@ self: { testHaskellDepends = [ base bytestring HUnit ]; description = "Extism bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {extism = null;}; "extism-manifest" = callPackage @@ -96053,6 +101076,7 @@ self: { ]; description = "Given a hackage package outputs the list of its dependencies"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "extract-dependencies"; }) {}; @@ -96083,7 +101107,9 @@ self: { ]; description = "Extract an ELF's metadata and sections into files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "extractelf"; + broken = true; }) {}; "extralife" = callPackage @@ -96099,6 +101125,8 @@ self: { ]; description = "API Client for ExtraLife team and user data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "extrapolate" = callPackage @@ -96138,6 +101166,8 @@ self: { ]; description = "A high level static library for working with CouchDB"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ez3" = callPackage @@ -96151,6 +101181,8 @@ self: { libraryHaskellDepends = [ base transformers z3 ]; description = "Z3 bonds with pure interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "f-algebra-gen" = callPackage @@ -96162,6 +101194,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Generate a special f-algebra combinator from any data type"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "f-ree-hack-cheats-free-v-bucks-generator" = callPackage @@ -96177,7 +101211,9 @@ self: { executableHaskellDepends = [ base ]; description = "Spam"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "test1"; + broken = true; }) {}; "faceted" = callPackage @@ -96189,6 +101225,8 @@ self: { libraryHaskellDepends = [ base free ]; description = "Faceted computation for dynamic information flow security"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "factor" = callPackage @@ -96238,7 +101276,9 @@ self: { ]; description = "Rational arithmetic in an irrational world"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "factory"; + broken = true; }) {}; "facts" = callPackage @@ -96252,6 +101292,8 @@ self: { libraryHaskellDepends = [ base exceptions mtl template-haskell ]; description = "Refined types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "factual-api" = callPackage @@ -96269,6 +101311,7 @@ self: { ]; description = "A driver for the Factual API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fad" = callPackage @@ -96300,6 +101343,7 @@ self: { ]; description = "Minimal library for music generation and notation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fadno-braids" = callPackage @@ -96316,6 +101360,8 @@ self: { ]; description = "Braid representations in Haskell"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fadno-xml" = callPackage @@ -96330,6 +101376,8 @@ self: { ]; description = "XML/XSD combinators/schemas/codegen"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fail" = callPackage @@ -96363,6 +101411,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A list-like type for lazy streams, which might terminate with an error"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "failure" = callPackage @@ -96390,6 +101440,8 @@ self: { ]; description = "Failure Detectors implimented in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fair" = callPackage @@ -96407,6 +101459,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Lists with fair choice"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fair-predicates" = callPackage @@ -96435,6 +101488,8 @@ self: { testHaskellDepends = [ base hspec lens random text time ]; description = "Randomly generated fake data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fake-type" = callPackage @@ -96447,6 +101502,8 @@ self: { librarySystemDepends = [ libXtst ]; description = "A crossplatform library to simulate keyboard input"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs.xorg) libXtst;}; "fakedata" = callPackage @@ -96575,6 +101632,8 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Faktory Worker for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "faktory_1_1_2_5" = callPackage @@ -96603,6 +101662,7 @@ self: { description = "Faktory Worker for Haskell"; license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fallible" = callPackage @@ -96633,6 +101693,7 @@ self: { ]; description = "Falling sand game/cellular automata simulation using regular parallel arrays"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "falling-turnip"; }) {}; @@ -96652,6 +101713,7 @@ self: { ]; description = "A fun falling blocks game"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "fallingblocks"; }) {}; @@ -96702,6 +101764,7 @@ self: { ]; description = "A family tree library for the Haskell programming language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "farmhash" = callPackage @@ -96733,6 +101796,7 @@ self: { doHaddock = false; description = "Fast functions on integers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fast-bech32" = callPackage @@ -96755,6 +101819,7 @@ self: { ]; description = "Fast implementation of the Bech32 encoding format"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "fast-builder" = callPackage @@ -96792,6 +101857,8 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Fast combinatorics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fast-digits" = callPackage @@ -96890,6 +101957,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Natural Numbers with no overhead"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fast-tags" = callPackage @@ -96943,6 +102012,8 @@ self: { libraryHaskellDepends = [ base bytestring tagsoup text ]; description = "Fast parser for tagsoup package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fasta" = callPackage @@ -96971,6 +102042,8 @@ self: { libraryHaskellDepends = [ base hmatrix vector ]; description = "Bayesian modeling algorithms accelerated for particular model structures"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fastcdc" = callPackage @@ -96989,6 +102062,7 @@ self: { ]; description = "An implementation of FastCDC, a content-defined chunking algorithm based on the Gear hash rolling hash algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "fastcdc"; }) {}; @@ -97023,6 +102097,8 @@ self: { ]; description = "find nearest neighbours by edit-distance"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "faster-megaparsec" = callPackage @@ -97060,6 +102136,7 @@ self: { ]; description = "Fast Internet Relay Chat (IRC) library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fastly" = callPackage @@ -97079,6 +102156,8 @@ self: { testHaskellDepends = [ base hspec text ]; description = "A highly experimental Fastly API client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fastmemo" = callPackage @@ -97134,6 +102213,8 @@ self: { ]; description = "Haskell bindings to the fastpbkdf2 C library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) openssl;}; "fastsum" = callPackage @@ -97167,6 +102248,8 @@ self: { ]; description = "Utilities for working with DuckDuckHack's FatHead Instant Answers"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fault-tree" = callPackage @@ -97178,6 +102261,7 @@ self: { libraryHaskellDepends = [ base yices ]; description = "A fault tree analysis library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fay" = callPackage @@ -97208,7 +102292,9 @@ self: { executableHaskellDepends = [ base mtl optparse-applicative split ]; description = "A compiler for Fay, a Haskell subset that compiles to JavaScript"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "fay"; + broken = true; }) {}; "fay-base" = callPackage @@ -97221,6 +102307,7 @@ self: { libraryHaskellDepends = [ base fay ]; description = "The base package for Fay"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fay-builder" = callPackage @@ -97238,6 +102325,7 @@ self: { ]; description = "Compile Fay code on cabal install, and ad-hoc recompile during development"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fay-dom" = callPackage @@ -97252,6 +102340,7 @@ self: { libraryHaskellDepends = [ fay-base ]; description = "DOM FFI wrapper library for Fay"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fay-geoposition" = callPackage @@ -97264,6 +102353,7 @@ self: { libraryHaskellDepends = [ fay-base fay-text ]; description = "W3C compliant implementation of GeoPosition API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fay-hsx" = callPackage @@ -97276,6 +102366,7 @@ self: { libraryHaskellDepends = [ fay-base fay-jquery ]; description = "Clientside HTML generation for fay"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fay-jquery" = callPackage @@ -97288,6 +102379,7 @@ self: { libraryHaskellDepends = [ fay-base fay-text ]; description = "jQuery bindings for Fay"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fay-ref" = callPackage @@ -97300,6 +102392,7 @@ self: { libraryHaskellDepends = [ fay-base ]; description = "Like IORef but for Fay"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fay-simplejson" = callPackage @@ -97312,6 +102405,7 @@ self: { libraryHaskellDepends = [ fay-base ]; description = "SimpleJSON library for Fay"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fay-text" = callPackage @@ -97326,6 +102420,7 @@ self: { libraryHaskellDepends = [ fay fay-base text ]; description = "Fay Text type represented as JavaScript strings"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "fay-uri" = callPackage @@ -97338,6 +102433,7 @@ self: { libraryHaskellDepends = [ fay-base ]; description = "Persistent FFI bindings for using jsUri in Fay"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fay-websockets" = callPackage @@ -97350,6 +102446,7 @@ self: { libraryHaskellDepends = [ fay-base ]; description = "Websockets FFI library for Fay"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fb" = callPackage @@ -97387,6 +102484,8 @@ self: { libraryHaskellDepends = [ base cereal fb persistent text time ]; description = "Provides Persistent instances to Facebook types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fbmessenger-api" = callPackage @@ -97415,7 +102514,9 @@ self: { testHaskellDepends = [ aeson base bytestring filepath hspec text ]; description = "High-level bindings to Facebook Messenger Platform API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "fbrnch" = callPackage @@ -97443,6 +102544,7 @@ self: { ]; description = "Fedora packager tool to build package branches"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "fbrnch"; }) {}; @@ -97460,6 +102562,8 @@ self: { ]; description = "Algo for Formal Concept Analysis"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fcache" = callPackage @@ -97476,6 +102580,8 @@ self: { testHaskellDepends = [ base hspec mtl ]; description = "Cache a function (a -> b)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fcd" = callPackage @@ -97495,6 +102601,7 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "A faster way to navigate directories using the command line"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "fcd"; }) {}; @@ -97529,6 +102636,8 @@ self: { ]; description = "Type-level computation for composite using first-class-families"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fcf-containers" = callPackage @@ -97584,6 +102693,8 @@ self: { ]; description = "Type-level version of algebraic-graphs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fcf-vinyl" = callPackage @@ -97609,7 +102720,9 @@ self: { isExecutable = true; description = "TBA"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "fcg"; + broken = true; }) {}; "fckeditor" = callPackage @@ -97621,6 +102734,8 @@ self: { libraryHaskellDepends = [ base cgi HaXml xhtml ]; description = "Server-Side Integration for FCKeditor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fclabels" = callPackage @@ -97653,6 +102768,8 @@ self: { libraryHaskellDepends = [ base fclabels monadLib ]; description = "MonadLib monadic interface for the \"fclabels\" package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fcm-client" = callPackage @@ -97684,7 +102801,9 @@ self: { ]; description = "Admin API for Firebase Cloud Messaging"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "fcm-client"; + broken = true; }) {}; "fdo-notify" = callPackage @@ -97716,7 +102835,9 @@ self: { ]; description = "Utilities related to freedesktop Trash standard"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "fdo-trash"; + broken = true; }) {}; "feather" = callPackage @@ -97728,6 +102849,8 @@ self: { libraryHaskellDepends = [ base containers microlens-platform mtl ]; testHaskellDepends = [ base containers microlens-platform mtl ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "feature-flags" = callPackage @@ -97757,6 +102880,8 @@ self: { ]; description = "A minimally obtrusive feature flag library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "feature-flipper-postgres" = callPackage @@ -97778,6 +102903,7 @@ self: { ]; description = "A minimally obtrusive feature flag library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "fec" = callPackage @@ -97808,6 +102934,7 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "Query Fedora composes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "fedora-composes"; }) {}; @@ -97861,6 +102988,7 @@ self: { ]; description = "Fedora image download tool"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "fedora-img-dl"; }) {}; @@ -97884,6 +103012,8 @@ self: { ]; description = "Haskell interface to the Fedora Packages webapp API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fedora-repoquery" = callPackage @@ -97906,6 +103036,7 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "Fedora repoquery tool"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "fdrq"; }) {}; @@ -97967,7 +103098,9 @@ self: { ]; description = "A simple command line interface for creating and updating feeds like RSS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "feed-cli"; + broken = true; }) {}; "feed-collect" = callPackage @@ -97985,6 +103118,8 @@ self: { ]; description = "Watch RSS/Atom feeds (and do with them whatever you like)"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "feed-crawl" = callPackage @@ -98001,6 +103136,8 @@ self: { ]; description = "Utility for fetching feeds with redirect info and HTML link detection"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "feed-gipeda" = callPackage @@ -98039,6 +103176,7 @@ self: { ]; description = "CI service around gipeda"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "feed-gipeda"; }) {}; @@ -98061,6 +103199,7 @@ self: { ]; description = "Translate syndication feeds"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "feed-translator"; }) {}; @@ -98080,6 +103219,7 @@ self: { ]; description = "(unsupported)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "feed2lj"; }) {}; @@ -98097,6 +103237,7 @@ self: { ]; description = "Send posts from a feed to Twitter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "feed2twitter"; }) {}; @@ -98123,6 +103264,7 @@ self: { executableHaskellDepends = [ base ]; description = "Declarative feedback loop manager"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "fei-base" = callPackage @@ -98150,6 +103292,7 @@ self: { executableToolDepends = [ c2hs ]; description = "FFI to MXNet"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mxnet-op-gen"; }) {inherit (pkgs) mxnet;}; @@ -98178,6 +103321,7 @@ self: { ]; description = "Cocodataset with cocoapi"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "imageutils"; }) {}; @@ -98205,6 +103349,7 @@ self: { testHaskellDepends = [ base fei-base hspec streaming ]; description = "mxnet dataiters"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mxnet-dataiter-gen"; }) {inherit (pkgs) mxnet;}; @@ -98235,6 +103380,7 @@ self: { ]; description = "Some datasets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fei-examples" = callPackage @@ -98255,6 +103401,7 @@ self: { ]; description = "fei examples"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fei-modelzoo" = callPackage @@ -98271,6 +103418,7 @@ self: { ]; description = "A collection of standard models"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fei-nn" = callPackage @@ -98292,6 +103440,7 @@ self: { ]; description = "Train a neural network with MXNet in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "feldspar-compiler" = callPackage @@ -98320,6 +103469,7 @@ self: { ]; description = "Compiler for the Feldspar language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {gcc_s = null;}; "feldspar-language" = callPackage @@ -98343,6 +103493,7 @@ self: { ]; description = "A functional embedded language for DSP and parallelism"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "feldspar-signal" = callPackage @@ -98416,6 +103567,8 @@ self: { executableSystemDepends = [ raptor ]; description = "Graph-based notetaking system"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {raptor = null;}; "fernet" = callPackage @@ -98441,7 +103594,9 @@ self: { ]; description = "Generate and verify HMAC-based authentication tokens"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "fernet"; + broken = true; }) {}; "festival" = callPackage @@ -98459,6 +103614,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "C bindings plus conveniences for the festival tts system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {Festival = null; inherit (pkgs) alsa-lib; estbase = null; estools = null; eststring = null; inherit (pkgs) gomp; inherit (pkgs) ncurses;}; @@ -98491,6 +103648,7 @@ self: { ]; description = "Remote multi-db SQLCipher server"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "festung"; }) {}; @@ -98503,6 +103661,8 @@ self: { libraryHaskellDepends = [ base containers regex-compat ]; description = "Simple functions for loading config files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ffeed" = callPackage @@ -98517,6 +103677,8 @@ self: { executableHaskellDepends = [ base pretty ]; description = "Haskell binding to the FriendFeed API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fficxx" = callPackage @@ -98538,6 +103700,7 @@ self: { ]; description = "Automatic C++ binding generation"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "fficxx-runtime" = callPackage @@ -98571,6 +103734,8 @@ self: { ]; description = "Minimal bindings to the FFmpeg library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) ffmpeg; libavcodec = null; libavdevice = null; libavformat = null; libswresample = null; libswscale = null;}; @@ -98588,6 +103753,7 @@ self: { ]; description = "Tutorials on ffmpeg usage to play video/audio"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fft" = callPackage @@ -98654,6 +103820,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "FFunctor typeclass"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fgl" = callPackage @@ -98714,6 +103882,8 @@ self: { libraryHaskellDepends = [ base containers fgl ]; description = "Graph decomposition algorithms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fgl-visualize" = callPackage @@ -98736,6 +103906,8 @@ self: { libraryHaskellDepends = [ base-noprelude integer-gmp semirings ]; description = "fibonacci algebra"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fibon" = callPackage @@ -98757,6 +103929,8 @@ self: { ]; description = "Tools for running and analyzing Haskell benchmarks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fibonacci" = callPackage @@ -98788,6 +103962,7 @@ self: { ]; description = "update statically hosted file in a push stule through socketed"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "ficketed"; }) {}; @@ -98804,6 +103979,8 @@ self: { ]; description = "First-class record field combinators with infix record field syntax"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fields-json" = callPackage @@ -98831,6 +104008,8 @@ self: { testHaskellDepends = [ base template-haskell ]; description = "Provides Fieldwise typeclass for operations of fields of records treated as independent components"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fig" = callPackage @@ -98842,6 +104021,8 @@ self: { libraryHaskellDepends = [ base containers parsec pretty ]; description = "Manipulation of FIG files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "file-collection" = callPackage @@ -98855,6 +104036,8 @@ self: { ]; description = "Provide a uniform interface over file archives and directories"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "file-command-qq" = callPackage @@ -98870,6 +104053,8 @@ self: { ]; description = "Quasiquoter for system commands involving filepaths"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "file-embed" = callPackage @@ -98923,6 +104108,8 @@ self: { ]; description = "Use Template Haskell to embed file contents directly"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "file-io" = callPackage @@ -98936,6 +104123,8 @@ self: { libraryHaskellDepends = [ base bytestring filepath unix ]; description = "Basic file IO operations via 'OsPath'"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "file-location" = callPackage @@ -98953,6 +104142,8 @@ self: { testHaskellDepends = [ base lifted-base process ]; description = "common functions that show file location information"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "file-modules" = callPackage @@ -99011,7 +104202,9 @@ self: { ]; description = "Use templates for files and directories"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "new"; + broken = true; }) {}; "filecache" = callPackage @@ -99031,6 +104224,8 @@ self: { ]; description = "A cache system associating values to files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "filediff" = callPackage @@ -99052,6 +104247,8 @@ self: { ]; description = "Diffing and patching module"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "filelock" = callPackage @@ -99092,6 +104289,8 @@ self: { libraryHaskellDepends = [ base hinotify stm ]; description = "Block thread until a file stops being modified"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "filepath_1_4_100_4" = callPackage @@ -99146,6 +104345,7 @@ self: { ]; description = "Reversable and secure encoding of object ids as filepaths"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "filepath-io-access" = callPackage @@ -99157,6 +104357,7 @@ self: { libraryHaskellDepends = [ base base-io-access filepath ]; description = "IO Access for filepath"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "filepather" = callPackage @@ -99241,6 +104442,7 @@ self: { ]; description = "A shared set of abstractions and types for representing filessytem data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "filesystem-conduit" = callPackage @@ -99262,6 +104464,8 @@ self: { ]; description = "Use system-filepath data types with conduits. (deprecated)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "filesystem-enumerator" = callPackage @@ -99277,6 +104481,7 @@ self: { ]; description = "Enumerator-based API for manipulating the filesystem"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "filesystem-trees" = callPackage @@ -99293,6 +104498,8 @@ self: { ]; description = "Recursively manipulate and traverse filesystems as lazy rose trees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fillit" = callPackage @@ -99309,6 +104516,8 @@ self: { testHaskellDepends = [ base doctest hspec unordered-containers ]; description = "Flexible string substitution"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "filter-logger" = callPackage @@ -99391,6 +104600,7 @@ self: { ]; description = "Finite sets of static size"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "final" = callPackage @@ -99417,6 +104627,8 @@ self: { ]; description = "Extensible pretty printing with semantic annotations and proportional fonts"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "find-clumpiness" = callPackage @@ -99442,6 +104654,7 @@ self: { ]; description = "Find the clumpiness of labels in a tree"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "find-clumpiness"; }) {}; @@ -99477,7 +104690,9 @@ self: { ]; description = "A file-finding conduit that allows user control over traversals"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "find-hs"; + broken = true; }) {}; "find-source-files" = callPackage @@ -99489,6 +104704,8 @@ self: { libraryHaskellDepends = [ base Cabal directory filepath mtl ]; description = "Initial project template from stack"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "findhttp" = callPackage @@ -99507,6 +104724,7 @@ self: { ]; description = "List http/html files"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "findhttp"; }) {}; @@ -99536,6 +104754,8 @@ self: { libraryHaskellDepends = [ base fingertree ]; description = "Implementation of priority search queues as finger trees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fingertree-tf" = callPackage @@ -99547,6 +104767,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Generic finger-tree structure using type families"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "finitary" = callPackage @@ -99571,6 +104793,7 @@ self: { ]; description = "A better, more type-safe Enum"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; }) {}; "finitary-derive" = callPackage @@ -99594,6 +104817,7 @@ self: { ]; description = "Flexible and easy deriving of type classes for finitary types"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; }) {}; "finitary-optics" = callPackage @@ -99614,6 +104838,7 @@ self: { ]; description = "Prisms and Isos between finitary types"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; }) {}; "finite" = callPackage @@ -99630,6 +104855,8 @@ self: { testHaskellDepends = [ base Cabal hashable QuickCheck ]; description = "Finite ranges via types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "finite-field" = callPackage @@ -99667,6 +104894,8 @@ self: { ]; description = "Arithmetic in finite fields"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "finite-table" = callPackage @@ -99694,6 +104923,7 @@ self: { ]; description = "Types isomorphic to Fin, and Tables indexed by them"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "finite-typelits" = callPackage @@ -99788,7 +105018,9 @@ self: { ]; description = "A simple example using Firefly"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "firefly-example-exe"; + broken = true; }) {}; "firestore" = callPackage @@ -99813,6 +105045,7 @@ self: { ]; description = "Wrapper for Google Firestore/Datastore API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "first-and-last" = callPackage @@ -99825,6 +105058,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "First and Last generalized to return up to n values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "first-class-families" = callPackage @@ -99856,6 +105091,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "First class typeclass instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "first-class-patterns" = callPackage @@ -99884,6 +105121,7 @@ self: { ]; description = "Defunctionalisation for Yhc Core"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "firstify"; }) {}; @@ -99908,6 +105146,7 @@ self: { ]; description = "Calculates file-size frequency-distribution"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "fishfood"; }) {}; @@ -99928,6 +105167,8 @@ self: { ]; description = "FIT file decoder"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fits-parse" = callPackage @@ -99951,7 +105192,9 @@ self: { ]; description = "Parse FITS files"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "omnibus"; + broken = true; }) {}; "fitsio" = callPackage @@ -99964,6 +105207,8 @@ self: { librarySystemDepends = [ cfitsio ]; description = "A library for reading and writing data files in the FITS data format"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) cfitsio;}; "fitspec" = callPackage @@ -100005,7 +105250,9 @@ self: { ]; description = "Program to manage the imports of a haskell module"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "fix-imports"; + broken = true; }) {}; "fix-parser-simple" = callPackage @@ -100019,6 +105266,7 @@ self: { libraryHaskellDepends = [ base mmtl ]; description = "Simple fix-expression parser"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "fix-symbols-gitit" = callPackage @@ -100030,6 +105278,8 @@ self: { libraryHaskellDepends = [ base containers gitit ]; description = "Gitit plugin: Turn some Haskell symbols into pretty math symbols"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fix-whitespace" = callPackage @@ -100122,6 +105372,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Binary fixed-point arithmetic"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fixed-point-vector" = callPackage @@ -100133,6 +105385,7 @@ self: { libraryHaskellDepends = [ base fixed-point vector ]; description = "Unbox instances for the fixed-point package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "fixed-point-vector-space" = callPackage @@ -100144,6 +105397,7 @@ self: { libraryHaskellDepends = [ base fixed-point vector-space ]; description = "vector-space instances for the fixed-point package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "fixed-precision" = callPackage @@ -100159,6 +105413,8 @@ self: { ]; description = "Fixed Precision Arithmetic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fixed-storable-array" = callPackage @@ -100170,6 +105426,8 @@ self: { libraryHaskellDepends = [ array base tagged ]; description = "Fixed-size wrapper for StorableArray, providing a Storable instance. Deprecated - use storable-static-array instead."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fixed-timestep" = callPackage @@ -100181,6 +105439,8 @@ self: { libraryHaskellDepends = [ async base clock time ]; description = "Pure Haskell library to repeat an action at a specific frequency"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fixed-vector" = callPackage @@ -100253,6 +105513,8 @@ self: { testHaskellDepends = [ base doctest fixed-vector ]; description = "Library for working with product types generically"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fixed-width" = callPackage @@ -100264,6 +105526,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Fixed width subsets of an Int64/Word64"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fixedprec" = callPackage @@ -100275,6 +105539,8 @@ self: { libraryHaskellDepends = [ base random ]; description = "A fixed-precision real number type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fixedwidth-hs" = callPackage @@ -100320,6 +105586,8 @@ self: { ]; description = "A Haskell client for http://fixer.io/"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fixfile" = callPackage @@ -100341,6 +105609,8 @@ self: { ]; description = "File-backed recursive data structures"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fixhs" = callPackage @@ -100365,6 +105635,7 @@ self: { ]; description = "FIX (co)parser"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; mainProgram = "fix-generator"; }) {}; @@ -100387,6 +105658,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Opininated testing framework for mtl style (spies, stubs, and mocks)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fixplate" = callPackage @@ -100447,6 +105720,8 @@ self: { libraryHaskellDepends = [ base ]; description = "test"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fizzbuzz-as-a-service" = callPackage @@ -100464,7 +105739,9 @@ self: { ]; description = "FizzBuzz as a service"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "fizzbuzz-server"; + broken = true; }) {}; "flac" = callPackage @@ -100528,7 +105805,9 @@ self: { ]; description = "Verify FLAC files ripped form CD using AccurateRip™"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "flaccuraterip"; + broken = true; }) {}; "flag" = callPackage @@ -100578,6 +105857,8 @@ self: { libraryHaskellDepends = [ base template-haskell text ]; description = "A template engine for HTML"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "flamingra" = callPackage @@ -100594,7 +105875,9 @@ self: { ]; description = "FlameGraphs of profiling"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "flamingra"; + broken = true; }) {}; "flashblast" = callPackage @@ -100639,6 +105922,7 @@ self: { ]; description = "Generate language learning flashcards from video"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "flashblast"; }) {}; @@ -100678,6 +105962,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Strict Maybe without space and indirection overhead"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "flat-mcmc" = callPackage @@ -100696,6 +105982,8 @@ self: { testHaskellDepends = [ base vector ]; description = "Painless general-purpose sampling"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "flat-tex" = callPackage @@ -100745,6 +106033,7 @@ self: { ]; description = "Haskell implementation of the FlatBuffers protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "flatparse" = callPackage @@ -100810,6 +106099,8 @@ self: { testHaskellDepends = [ base tasty tasty-quickcheck transformers ]; description = "Work generically on your datatype without knowing its shape nor its contents"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "flexible-defaults" = callPackage @@ -100853,6 +106144,8 @@ self: { libraryHaskellDepends = [ base bytestring unix-time ]; description = "simple extension of Data.UnixTime."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "flexible-unlit" = callPackage @@ -100879,6 +106172,7 @@ self: { libraryHaskellDepends = [ base data-type mtl QuickCheck ]; description = "Flexible wrappers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "flexiwrap-smallcheck" = callPackage @@ -100892,6 +106186,7 @@ self: { ]; description = "SmallCheck (Serial) instances for flexiwrap"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "flick-duration" = callPackage @@ -100922,6 +106217,8 @@ self: { executableHaskellDepends = [ xhtml ]; description = "Haskell binding to the Flickr API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "flight-igc" = callPackage @@ -100978,6 +106275,7 @@ self: { libraryToolDepends = [ proto-lens-protoc ]; description = "Flink stateful functions SDK"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "flip-cmd" = callPackage @@ -101021,6 +106319,7 @@ self: { ]; description = "f-lite compiler, interpreter and libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "flite"; }) {}; @@ -101059,6 +106358,8 @@ self: { ]; description = "C99 printf \"%a\" style formatting and parsing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "float128" = callPackage @@ -101085,6 +106386,8 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Conversions between floating and integral values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "floatshow" = callPackage @@ -101113,6 +106416,8 @@ self: { ]; description = "Wrapper for flock(2)"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "floskell" = callPackage @@ -101173,6 +106478,8 @@ self: { testHaskellDepends = [ base doctest flow QuickCheck ]; description = "More directional operators"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "flow2dot" = callPackage @@ -101211,6 +106518,8 @@ self: { ]; description = "Flowdock client library for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "flowdock-api" = callPackage @@ -101247,7 +106556,9 @@ self: { ]; description = "API integration with Flowdock"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "flowdock"; + broken = true; }) {}; "flowdock-rest" = callPackage @@ -101275,6 +106586,8 @@ self: { ]; description = "Flowdock REST API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "flower" = callPackage @@ -101292,6 +106605,7 @@ self: { ]; description = "Analyze 454 flowgrams (.SFF files)"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "flowlocks-framework" = callPackage @@ -101304,6 +106618,8 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Generalized Flow Locks Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "flowsim" = callPackage @@ -101322,6 +106638,7 @@ self: { ]; description = "Simulate 454 pyrosequencing"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "flp" = callPackage @@ -101354,6 +106671,8 @@ self: { testToolDepends = [ alex happy ]; description = "A layout spec language for memory managers implemented in Rust"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fltkhs" = callPackage @@ -101378,6 +106697,8 @@ self: { ]; description = "FLTK bindings"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) fltk14; inherit (pkgs) libGL; inherit (pkgs) libGLU; inherit (pkgs) pkg-config;}; @@ -101395,6 +106716,7 @@ self: { ]; description = "FLTKHS demos. Please scroll to the bottom for more information."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "fltkhs-fluid-demos" = callPackage @@ -101408,6 +106730,7 @@ self: { executableHaskellDepends = [ base bytestring fltkhs ]; description = "Fltkhs Fluid Demos"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "fltkhs-fluid-examples" = callPackage @@ -101421,6 +106744,7 @@ self: { executableHaskellDepends = [ base bytestring fltkhs ]; description = "Fltkhs Fluid Examples"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "fltkhs-hello-world" = callPackage @@ -101434,6 +106758,7 @@ self: { executableHaskellDepends = [ base fltkhs ]; description = "Fltkhs template project"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "fltkhs-hello-world"; }) {}; @@ -101453,6 +106778,7 @@ self: { librarySystemDepends = [ fontconfig ]; description = "A set of themed widgets that provides drop in replacements to the ones in FLTKHS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) fontconfig;}; "fluent-logger" = callPackage @@ -101477,6 +106803,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "A structured logger for Fluentd (Haskell)"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "fluent-logger-conduit" = callPackage @@ -101492,6 +106819,7 @@ self: { ]; description = "Conduit interface for fluent-logger"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "fluffy" = callPackage @@ -101528,6 +106856,8 @@ self: { ]; description = "The parser for fluffy to parsec the question bank in .docx type"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fluid-idl" = callPackage @@ -101550,6 +106880,8 @@ self: { ]; description = "Code-generated, Auto-versioned, & Smart Web APIs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fluid-idl-http-client" = callPackage @@ -101593,6 +106925,8 @@ self: { librarySystemDepends = [ fluidsynth ]; description = "Haskell bindings to FluidSynth"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) fluidsynth;}; "flush-queue" = callPackage @@ -101619,6 +106953,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A monoid for tracking changes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fmark" = callPackage @@ -101636,7 +106972,9 @@ self: { ]; description = "A Friendly Markup language without syntax"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "fmark"; + broken = true; }) {}; "fmlist" = callPackage @@ -101697,6 +107035,7 @@ self: { libraryHaskellDepends = [ base enum-text-rio ]; description = "Adaptor for getting fmt to work with rio"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fmt-terminal-colors" = callPackage @@ -101749,6 +107088,7 @@ self: { ]; description = "Extras for Fn, a functional web framework"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; }) {}; "focus" = callPackage @@ -101824,6 +107164,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Regulate input traffic from conduit Source with Control.FoldDebounce"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "foldable-ix" = callPackage @@ -101848,6 +107190,7 @@ self: { libraryHaskellDepends = [ base transformers util ]; description = "Foldable types with at least 1 element"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "foldable1-classes-compat" = callPackage @@ -101928,6 +107271,8 @@ self: { benchmarkHaskellDepends = [ base containers criterion foldl ]; description = "incremental folds"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "foldl-statistics" = callPackage @@ -101952,6 +107297,8 @@ self: { ]; description = "Statistical functions from the statistics package implemented as Folds"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "foldl-transduce" = callPackage @@ -101978,6 +107325,8 @@ self: { ]; description = "Transducers for foldl folds"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "foldl-transduce-attoparsec" = callPackage @@ -101999,6 +107348,7 @@ self: { ]; description = "Attoparsec and foldl-transduce integration"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "folds" = callPackage @@ -102034,6 +107384,8 @@ self: { testHaskellDepends = [ base containers tasty tasty-quickcheck ]; description = "A playground of common folds for folds"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "folgerhs" = callPackage @@ -102081,7 +107433,9 @@ self: { ]; description = "Haskell library to follow content published on any subject"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "follow_pocket_auth"; + broken = true; }) {}; "follow-file" = callPackage @@ -102126,6 +107480,7 @@ self: { ]; description = "Follow Tweets anonymously"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "follower"; }) {}; @@ -102164,7 +107519,9 @@ self: { executableHaskellDepends = [ base GLFW-b OpenGL ]; description = "Basic4x6 font for OpenGL"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "show-font-basic4x6"; + broken = true; }) {}; "fontconfig-pure" = callPackage @@ -102187,7 +107544,9 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Pure-functional language bindings to FontConfig"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "fontconfig-pure"; + broken = true; }) {inherit (pkgs) fontconfig;}; "foo" = callPackage @@ -102203,6 +107562,7 @@ self: { ]; description = "Paper soccer, an OpenGL game"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "foo"; }) {}; @@ -102236,6 +107596,8 @@ self: { ]; description = "Functor, Monad, MonadPlus, etc for free"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "forbidden-fruit" = callPackage @@ -102256,6 +107618,8 @@ self: { ]; description = "A library accelerates imperative style programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "force-layout" = callPackage @@ -102285,7 +107649,9 @@ self: { executableHaskellDepends = [ base process transformers ]; description = "Run a command on files with magic substituion support (sequencing and regexp)"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "fordo"; + broken = true; }) {}; "forecast-io" = callPackage @@ -102297,6 +107663,8 @@ self: { libraryHaskellDepends = [ aeson base text ]; description = "A Haskell library for working with forecast.io data."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "foreign" = callPackage @@ -102316,6 +107684,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "A collection of helpers for ffi"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "foreign-storable-asymmetric" = callPackage @@ -102351,6 +107721,8 @@ self: { libraryHaskellDepends = [ base stm transformers ]; description = "Encapsulating mutatable state in external libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "forest" = callPackage @@ -102366,6 +107738,8 @@ self: { ]; description = "Tree and Forest types"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "forest-fire" = callPackage @@ -102387,7 +107761,9 @@ self: { ]; description = "Recursively delete CloudFormation stacks and their dependants"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "forest-fire"; + broken = true; }) {}; "forex2ledger" = callPackage @@ -102415,7 +107791,9 @@ self: { ]; description = "Print Forex quotes in Ledger format"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "forex2ledger"; + broken = true; }) {}; "forger" = callPackage @@ -102430,7 +107808,9 @@ self: { executableHaskellDepends = [ base ]; description = "Library for generating fake placeholder data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "forger"; + broken = true; }) {}; "forkable-monad" = callPackage @@ -102456,6 +107836,8 @@ self: { testHaskellDepends = [ aeson base containers hspec mtl text ]; description = "Parse and validate forms in JSON format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "formal" = callPackage @@ -102478,6 +107860,7 @@ self: { ]; description = "A statically typed, functional programming language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "formal"; }) {}; @@ -102491,6 +107874,7 @@ self: { testHaskellDepends = [ haskell2010 parsec QuickCheck ]; description = "Rendering from and scanning to format strings"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "format-numbers" = callPackage @@ -102520,6 +107904,7 @@ self: { ]; description = "A utility for writing the date to dzen2"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "format-status"; }) {}; @@ -102552,6 +107937,8 @@ self: { ]; description = "Business-quality formatting of numbers, dates, and other things"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "formatting" = callPackage @@ -102594,6 +107981,7 @@ self: { ]; description = "A statically typed, functional programming language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "forml"; }) {}; @@ -102611,6 +107999,7 @@ self: { ]; description = "Formlets implemented in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "formlets-hsp" = callPackage @@ -102627,6 +108016,7 @@ self: { libraryToolDepends = [ trhsx ]; description = "HSP support for Formlets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "forms-data-format" = callPackage @@ -102643,6 +108033,7 @@ self: { ]; description = "Parse and serialize FDF, the Forms Data Format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "formura" = callPackage @@ -102664,6 +108055,8 @@ self: { ]; description = "Formura is a simple language to describe stencil computation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "forsyde-deep" = callPackage @@ -102691,6 +108084,7 @@ self: { ]; description = "ForSyDe's Haskell-embedded Domain Specific Language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "forsyde-shallow" = callPackage @@ -102718,6 +108112,7 @@ self: { libraryHaskellDepends = [ array-forth base free mtl ]; description = "A simple eDSL for generating arrayForth code"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "fortran-src" = callPackage @@ -102812,7 +108207,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Fortran memory model and other static analysis tools"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "fortran-vars"; + broken = true; }) {}; "fortytwo" = callPackage @@ -102827,6 +108224,8 @@ self: { testHaskellDepends = [ base doctest hspec ]; description = "Interactive terminal prompt"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "forward-chan" = callPackage @@ -102857,6 +108256,7 @@ self: { ]; description = "Foscam File format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "foscam-filename" = callPackage @@ -102876,6 +108276,8 @@ self: { ]; description = "Foscam File format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "foscam-sort" = callPackage @@ -102902,6 +108304,7 @@ self: { ]; description = "Foscam File format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "foscam-sort"; }) {}; @@ -103150,6 +108553,7 @@ self: { ]; description = "Simple interface to the FP Complete IDE API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "fpco-api"; }) {}; @@ -103196,6 +108600,7 @@ self: { testHaskellDepends = [ base ]; description = "Haskell bindings to "; license = lib.licenses.lgpl21Plus; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) fplll;}; "fpnla" = callPackage @@ -103231,6 +108636,7 @@ self: { ]; description = "Example implementations for FPNLA library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fptest" = callPackage @@ -103256,6 +108662,8 @@ self: { ]; description = "IEEE754r floating point conformance tests"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fquery" = callPackage @@ -103273,7 +108681,9 @@ self: { ]; description = "Installed package query tool for Gentoo Linux"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "fquery"; + broken = true; }) {}; "fractal" = callPackage @@ -103300,6 +108710,8 @@ self: { testHaskellDepends = [ base integer-gmp QuickCheck ]; description = "A collection of useful fractal curve encoders"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fraction" = callPackage @@ -103311,6 +108723,8 @@ self: { libraryHaskellDepends = [ base semigroups ]; description = "Fractions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fractionizer" = callPackage @@ -103374,6 +108788,7 @@ self: { libraryHaskellDepends = [ base frame pandoc ]; description = "A markdown to Frame GUI writer for Pandoc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "franchise" = callPackage @@ -103385,6 +108800,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A package for configuring and building Haskell software"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "franz" = callPackage @@ -103431,6 +108848,8 @@ self: { benchmarkHaskellDepends = [ base time ]; description = "Cached and parallel data fetching"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "frecently" = callPackage @@ -103496,6 +108915,7 @@ self: { ]; description = "Haskell application toolkit used at Freckle"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "freddy" = callPackage @@ -103515,6 +108935,8 @@ self: { ]; description = "RabbitMQ Messaging API supporting request-response"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "free" = callPackage @@ -103627,6 +109049,8 @@ self: { libraryHaskellDepends = [ base type-aligned ]; description = "Free monads suitable for concurrent computation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "free-er" = callPackage @@ -103659,6 +109083,7 @@ self: { ]; description = "Free functors, adjoint to functors that forget class constraints"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "free-game" = callPackage @@ -103682,6 +109107,7 @@ self: { ]; description = "Create games for free"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "free-http" = callPackage @@ -103698,6 +109124,8 @@ self: { ]; description = "An HTTP Client based on Free Monads"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "free-operational" = callPackage @@ -103713,6 +109141,8 @@ self: { ]; description = "Operational Applicative, Alternative, Monad and MonadPlus from free types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "free-theorems" = callPackage @@ -103744,7 +109174,9 @@ self: { executableHaskellDepends = [ cgi free-theorems utf8-string xhtml ]; description = "Automatically Generating Counterexamples to Naive Free Theorems"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "counterexamples.cgi"; + broken = true; }) {}; "free-theorems-seq" = callPackage @@ -103762,6 +109194,8 @@ self: { ]; description = "Taming Selective Strictness"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "free-theorems-seq-webui" = callPackage @@ -103780,6 +109214,7 @@ self: { ]; description = "Taming Selective Strictness"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "free-theorems-seq-webui.cgi"; }) {}; @@ -103800,6 +109235,8 @@ self: { ]; description = "CGI-based web interface for the free-theorems package"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "free-v-bucks-generator-no-survey" = callPackage @@ -103815,7 +109252,9 @@ self: { executableHaskellDepends = [ base ]; description = "Spam"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "test1"; + broken = true; }) {}; "free-v-bucks-generator-ps4-no-survey" = callPackage @@ -103831,7 +109270,9 @@ self: { executableHaskellDepends = [ base ]; description = "Spam"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "test1"; + broken = true; }) {}; "free-vector-spaces" = callPackage @@ -103887,6 +109328,7 @@ self: { ]; description = "A soccer game"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "freelude" = callPackage @@ -103906,6 +109348,7 @@ self: { ]; description = "A generalisation of the Category->Functor->Applicative->Monad hierarchy and more"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "freenect" = callPackage @@ -103921,6 +109364,8 @@ self: { description = "Interface to the Kinect device"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) freenect; freenect_sync = null; libfreenect = null;}; @@ -103959,6 +109404,7 @@ self: { ]; description = "Handle effects conversely using monadic conversation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "freer-effects" = callPackage @@ -103979,7 +109425,9 @@ self: { benchmarkHaskellDepends = [ base criterion free mtl ]; description = "Implementation of effect system for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "freer-examples"; + broken = true; }) {}; "freer-indexed" = callPackage @@ -104016,7 +109464,9 @@ self: { ]; description = "A friendly effect system for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "freer-simple-examples"; + broken = true; }) {}; "freer-simple-catching" = callPackage @@ -104029,6 +109479,7 @@ self: { testHaskellDepends = [ base freer-simple hspec ]; description = "Checked runtime exceptions with freer-simple"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "freer-simple-http" = callPackage @@ -104049,6 +109500,7 @@ self: { ]; description = "Make HTTP requests with freer-simple!"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "freer-simple-profiling" = callPackage @@ -104061,6 +109513,7 @@ self: { testHaskellDepends = [ base containers freer-simple hspec time ]; description = "Automatic profling of freer-simple programs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "freer-simple-random" = callPackage @@ -104073,6 +109526,7 @@ self: { testHaskellDepends = [ base containers freer-simple hspec random ]; description = "Random number generators using freer-simple"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "freer-simple-time" = callPackage @@ -104085,6 +109539,7 @@ self: { testHaskellDepends = [ base freer-simple hspec time ]; description = "freer-simple interface to IO based time functions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "freesect" = callPackage @@ -104102,7 +109557,9 @@ self: { ]; description = "A Haskell syntax extension for generalised sections"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "freesect"; + broken = true; }) {}; "freesound" = callPackage @@ -104124,6 +109581,8 @@ self: { ]; description = "Access the Freesound Project database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "freetype-simple" = callPackage @@ -104138,6 +109597,8 @@ self: { ]; description = "Single line text rendering for OpenGL ES"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "freetype2" = callPackage @@ -104196,6 +109657,8 @@ self: { benchmarkHaskellDepends = [ base bytestring containers gauge ]; description = "Are you ready to get freaky?"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fresco-binding" = callPackage @@ -104222,6 +109685,8 @@ self: { libraryHaskellDepends = [ base containers haskell-src-exts syb ]; description = "Introduce fresh variables into Haskell source code"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fresnel" = callPackage @@ -104243,6 +109708,8 @@ self: { ]; description = "high-powered optics in a small package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fresnel-fused-effects" = callPackage @@ -104254,6 +109721,7 @@ self: { libraryHaskellDepends = [ base fresnel fused-effects ]; description = "fresnel/fused-effects integration"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "friday" = callPackage @@ -104274,6 +109742,8 @@ self: { ]; description = "A functional image processing library for Haskell"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "friday-devil" = callPackage @@ -104290,6 +109760,7 @@ self: { librarySystemDepends = [ libdevil ]; description = "Uses the DevIL C library to read and write images from and to files and memory buffers"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libdevil;}; "friday-juicypixels" = callPackage @@ -104306,6 +109777,7 @@ self: { ]; description = "Converts between the Friday and JuicyPixels image types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "friday-scale-dct" = callPackage @@ -104321,6 +109793,7 @@ self: { ]; description = "Scale Friday images with DCT"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "friendly" = callPackage @@ -104338,7 +109811,9 @@ self: { ]; description = "Attempt to pretty-print any input"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "friendly"; + broken = true; }) {}; "friendly-time" = callPackage @@ -104379,6 +109854,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Provides a generic way to construct values from environment variables"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "from-sum" = callPackage @@ -104425,6 +109902,7 @@ self: { ]; description = "A reactive frontend web framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "frontmatter" = callPackage @@ -104469,7 +109947,9 @@ self: { executableHaskellDepends = [ base directory ]; description = "LALR(k) parser generator"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "frown"; + broken = true; }) {}; "frp-arduino" = callPackage @@ -104481,6 +109961,8 @@ self: { libraryHaskellDepends = [ base containers mtl ]; description = "Arduino programming without the hassle of C"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "frpnow" = callPackage @@ -104495,6 +109977,8 @@ self: { libraryHaskellDepends = [ base containers mtl transformers ]; description = "Principled practical FRP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "frpnow-gloss" = callPackage @@ -104510,6 +109994,7 @@ self: { ]; description = "Program awesome stuff with Gloss and frpnow!"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "frpnow-gtk" = callPackage @@ -104526,6 +110011,7 @@ self: { ]; description = "Program GUIs with GTK and frpnow!"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "frpnow-gtk3" = callPackage @@ -104539,6 +110025,7 @@ self: { ]; description = "Program GUIs with GTK3 and frpnow!"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "frpnow-vty" = callPackage @@ -104553,6 +110040,7 @@ self: { executableHaskellDepends = [ base containers frpnow vty ]; description = "Program terminal applications with vty and frpnow!"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "frpnow-vty-demo"; }) {}; @@ -104580,6 +110068,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A haskell binding to the FSEvents API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fsh-csv" = callPackage @@ -104591,6 +110081,8 @@ self: { libraryHaskellDepends = [ base hint ]; description = "csv parser for fsh"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fsharp" = callPackage @@ -104617,6 +110109,8 @@ self: { ]; description = "Finite state machines and FSM actions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fsnotify" = callPackage @@ -104658,6 +110152,8 @@ self: { ]; description = "Get filesystem notifications as a stream of events"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fst" = callPackage @@ -104677,7 +110173,9 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Finite state transducers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "fststudio"; + broken = true; }) {}; "fsutils" = callPackage @@ -104689,6 +110187,8 @@ self: { libraryHaskellDepends = [ base directory filepath ]; description = "File system utilities for Haskell that are missing from built in libraries"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fswait" = callPackage @@ -104708,7 +110208,9 @@ self: { ]; description = "Wait and observe events on the filesystem for a path, with a timeout"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "fswait"; + broken = true; }) {}; "fswatch" = callPackage @@ -104729,7 +110231,9 @@ self: { ]; description = "File System watching tool with cli and slave functionalities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hfswatch"; + broken = true; }) {}; "fswatcher" = callPackage @@ -104748,7 +110252,9 @@ self: { ]; description = "Watch a file/directory and run a command when it's modified"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "fswatcher"; + broken = true; }) {}; "ft-generator" = callPackage @@ -104762,7 +110268,9 @@ self: { executableHaskellDepends = [ base mtl parsec ]; description = "implementation accompanying a WFLP'19 paper"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "ft-generator"; + broken = true; }) {}; "ftdi" = callPackage @@ -104784,6 +110292,7 @@ self: { ]; description = "A thin layer over USB to communicate with FTDI chips"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ftp-client" = callPackage @@ -104803,6 +110312,8 @@ self: { testHaskellDepends = [ base bytestring tasty tasty-hspec ]; description = "Transfer files with FTP and FTPS"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ftp-client-conduit" = callPackage @@ -104819,6 +110330,7 @@ self: { testHaskellDepends = [ base ]; description = "Transfer file with FTP and FTPS with Conduit"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "ftp-conduit" = callPackage @@ -104835,6 +110347,8 @@ self: { ]; description = "FTP client package with conduit interface based off http-conduit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ftphs" = callPackage @@ -104852,6 +110366,8 @@ self: { ]; description = "FTP Client and Server Library"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ftree" = callPackage @@ -104863,6 +110379,7 @@ self: { libraryHaskellDepends = [ base ShowF type-unary ]; description = "Depth-typed functor-based trees, both top-down and bottom-up"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ftshell" = callPackage @@ -104881,6 +110398,7 @@ self: { ]; description = "Shell interface to the FreeTheorems library"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "ftshell"; }) {}; @@ -104924,6 +110442,8 @@ self: { libraryHaskellDepends = [ base ghc network ]; description = "a monad for protocol-typed network programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "full-text-search" = callPackage @@ -104990,6 +110510,7 @@ self: { ]; description = "IRC bot for fun, learning, creativity and collaboration"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "funbot"; }) {}; @@ -105009,6 +110530,8 @@ self: { ]; description = "Report events to FunBot over a JSON/HTTP API"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "funbot-ext-events" = callPackage @@ -105039,6 +110562,7 @@ self: { ]; description = "Git hook which sends events to FunBot"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "funbot-client-post-receive"; }) {}; @@ -105092,6 +110616,7 @@ self: { ]; description = "call-by-value lambda-calculus with meta-programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lambda-cbv"; }) {}; @@ -105108,6 +110633,7 @@ self: { executableHaskellDepends = [ base funcons-tools funcons-values ]; description = "A modular interpreter for executing SIMPLE funcons"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "runfct-SIMPLE"; }) {}; @@ -105134,6 +110660,7 @@ self: { ]; description = "A modular interpreter for executing funcons"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "funcons-values" = callPackage @@ -105149,6 +110676,8 @@ self: { ]; description = "Library providing values and operations on values in a fixed universe"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "function-builder" = callPackage @@ -105172,6 +110701,7 @@ self: { libraryHaskellDepends = [ base data-type ]; description = "Combining functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "function-instances-algebra" = callPackage @@ -105183,6 +110713,8 @@ self: { libraryHaskellDepends = [ base numeric-prelude ]; description = "Instances of the Algebra.* classes for functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "functional-arrow" = callPackage @@ -105194,6 +110726,7 @@ self: { libraryHaskellDepends = [ base HList ]; description = "Combinators that allow for a more functional/monadic style of Arrow programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "functional-kmp" = callPackage @@ -105218,6 +110751,7 @@ self: { libraryHaskellDepends = [ base category ]; description = "Functors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "functor-apply" = callPackage @@ -105286,6 +110820,7 @@ self: { ]; description = "Functor combinators with tries & zippers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "functor-friends" = callPackage @@ -105297,6 +110832,8 @@ self: { libraryHaskellDepends = [ base recursion-schemes ]; description = "Friendly helpers for your recursion schemes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "functor-infix" = callPackage @@ -105310,6 +110847,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Infix operators for mapping over compositions of functors. Lots of them."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "functor-monadic" = callPackage @@ -105336,6 +110875,8 @@ self: { ]; description = "General functor products for various Foldable instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "functor-utils" = callPackage @@ -105347,6 +110888,8 @@ self: { libraryHaskellDepends = [ base ghc-prim lens ]; description = "Collection of functor utilities, providing handy operators, like generalization of (.)."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "functorm" = callPackage @@ -105358,6 +110901,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Data.FunctorM (compatibility package)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "functors" = callPackage @@ -105408,6 +110953,7 @@ self: { ]; description = "Workflows with arrows"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "ffexecutord"; }) {}; @@ -105430,6 +110976,7 @@ self: { ]; description = "Utility functions for using funflow with nix"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fungll-combinators" = callPackage @@ -105462,6 +111009,7 @@ self: { ]; description = "A unioning file-system using HFuse"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "funion"; }) {}; @@ -105478,6 +111026,7 @@ self: { benchmarkHaskellDepends = [ base criterion hscolour ipprint ]; description = "funnyPrint function to colorize GHCi output"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "funpat" = callPackage @@ -105489,6 +111038,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A generalization of pattern matching"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "funsat" = callPackage @@ -105510,6 +111061,7 @@ self: { ]; description = "A modern DPLL-style SAT solver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "funsat"; }) {}; @@ -105522,6 +111074,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Type-level function utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fused-effects" = callPackage @@ -105559,6 +111113,8 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Handle exceptions thrown in IO with fused-effects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fused-effects-lens" = callPackage @@ -105591,6 +111147,8 @@ self: { benchmarkHaskellDepends = [ base fused-effects-random gauge ]; description = "High-quality random number generation as an effect"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fused-effects-optics" = callPackage @@ -105645,6 +111203,8 @@ self: { ]; description = "Resumable exceptions for the fused-effects ecosystem"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fused-effects-squeal" = callPackage @@ -105661,6 +111221,7 @@ self: { ]; description = "A fused-effects adapter for squeal-postgresql"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fused-effects-th" = callPackage @@ -105679,6 +111240,8 @@ self: { ]; description = "Template Haskell helpers for fused-effects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fusion" = callPackage @@ -105693,6 +111256,8 @@ self: { testHaskellDepends = [ base directory doctest filepath ]; description = "Effectful streaming library based on shortcut fusion techniques"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fusion-plugin" = callPackage @@ -105832,7 +111397,9 @@ self: { executableHaskellDepends = [ base directory raw-strings-qq split ]; description = "Generate Haskell wrappers for Futhark libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "futhask"; + broken = true; }) {}; "futun" = callPackage @@ -105846,7 +111413,9 @@ self: { executableHaskellDepends = [ base bytestring network unix ]; description = "Simple IP-over-UDP tunnel using TUNTAP"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "futun"; + broken = true; }) {}; "future" = callPackage @@ -105858,6 +111427,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Supposed to mimics and enhance proposed C++ \"future\" features"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "future-resource" = callPackage @@ -105880,6 +111451,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Simple and fast implementation of Future"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fuzzcheck" = callPackage @@ -105999,6 +111572,8 @@ self: { ]; 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 = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fuzzyfind" = callPackage @@ -106016,7 +111591,9 @@ self: { testHaskellDepends = [ base containers hspec QuickCheck ]; description = "Fuzzy text matching"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "bench"; + broken = true; }) {}; "fuzzyset" = callPackage @@ -106036,6 +111613,8 @@ self: { ]; description = "Fuzzy set for approximate string matching"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fuzzytime" = callPackage @@ -106085,6 +111664,8 @@ self: { ]; description = "Game engine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fwgl-glfw" = callPackage @@ -106101,6 +111682,7 @@ self: { ]; description = "FWGL GLFW backend"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fwgl-javascript" = callPackage @@ -106116,6 +111698,7 @@ self: { ]; description = "FWGL GHCJS backend"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "fx" = callPackage @@ -106138,6 +111721,7 @@ self: { libraryHaskellDepends = [ base bytestring serialport ]; description = "Interface to the FXPak/FXPak Pro USB interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "g-npm" = callPackage @@ -106151,7 +111735,9 @@ self: { executableHaskellDepends = [ base HTTP json ]; description = "Generate Gentoo ebuilds from NodeJS/npm packages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "g-npm"; + broken = true; }) {}; "g2" = callPackage @@ -106184,6 +111770,7 @@ self: { ]; description = "Haskell symbolic execution engine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "g2q" = callPackage @@ -106195,6 +111782,7 @@ self: { libraryHaskellDepends = [ base g2 ]; description = "G2Q allows constraint programming, via writing Haskell predicates"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "g4ip" = callPackage @@ -106207,6 +111795,8 @@ self: { testHaskellDepends = [ base ]; description = "A theorem prover for propositional logic that uses G4ip"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "g4ip-prover" = callPackage @@ -106242,6 +111832,7 @@ self: { ]; description = "General Alignment Clustering Tool"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "gact"; }) {}; @@ -106269,6 +111860,7 @@ self: { ]; description = "FFTs over finite fields"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "galois-field" = callPackage @@ -106296,6 +111888,7 @@ self: { ]; description = "Galois field library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "gambler" = callPackage @@ -106336,6 +111929,8 @@ self: { libraryHaskellDepends = [ base containers probability random ]; description = "Simple probability library for dice rolls, card games and similar"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "game-tree" = callPackage @@ -106360,7 +111955,9 @@ self: { executableHaskellDepends = [ base cairo containers glib gtk time ]; description = "Game clock that shows two analog clock faces"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "gameclock"; + broken = true; }) {}; "gamgee" = callPackage @@ -106391,7 +111988,9 @@ self: { ]; description = "Tool for generating TOTP MFA tokens"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "gamgee"; + broken = true; }) {}; "gamma" = callPackage @@ -106412,6 +112011,7 @@ self: { ]; description = "Gamma function and related functions"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "gang-of-threads" = callPackage @@ -106437,6 +112037,8 @@ self: { executableHaskellDepends = [ base haskeline transformers ]; description = "reverse prefix notation calculator and calculation library"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "garfield" = callPackage @@ -106463,6 +112065,8 @@ self: { ]; description = "Automatically spin up and spin down local daemons"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gargoyle-postgresql" = callPackage @@ -106484,6 +112088,7 @@ self: { ]; description = "Manage PostgreSQL servers with gargoyle"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gargoyle-postgresql-connect" = callPackage @@ -106501,6 +112106,7 @@ self: { ]; description = "Connect to gargoyle-managed postgresql instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gargoyle-postgresql-nix" = callPackage @@ -106521,6 +112127,7 @@ self: { ]; description = "Manage PostgreSQL servers with gargoyle and nix"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "garlic-bread" = callPackage @@ -106555,6 +112162,8 @@ self: { libraryHaskellDepends = [ base free transformers ]; description = "Limit how many steps a program may take"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gasp" = callPackage @@ -106577,6 +112186,8 @@ self: { libraryHaskellDepends = [ base ]; description = "An applicative for parsing unordered things, heterogenous sorting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gauge" = callPackage @@ -106611,6 +112222,7 @@ self: { ]; description = "planar graph embedding into a plane"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gc" = callPackage @@ -106640,6 +112252,8 @@ self: { ]; description = "a wai application to show GHC.GCStats"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gcodehs" = callPackage @@ -106687,6 +112301,8 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the GNOME configuration database system"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs.gnome2) GConf;}; "gd" = callPackage @@ -106740,6 +112356,7 @@ self: { ]; description = "API Wrapping for Coinbase's GDAX exchange"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sandbox"; }) {}; @@ -106781,6 +112398,7 @@ self: { ]; description = "Generic diff for the instant-generics library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gdiff-th" = callPackage @@ -106799,6 +112417,8 @@ self: { ]; description = "Generate gdiff GADTs and Instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gdo" = callPackage @@ -106871,6 +112491,7 @@ self: { ]; description = "An implementation of Gear hash, a fast rolling hash algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gedcom" = callPackage @@ -106888,6 +112509,7 @@ self: { testHaskellDepends = [ base hspec megaparsec text-all ]; description = "Parser for the GEDCOM genealogy file format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "geek" = callPackage @@ -106908,6 +112530,7 @@ self: { ]; description = "Geek blog engine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "geek-server" = callPackage @@ -106931,6 +112554,7 @@ self: { ]; description = "Geek blog engine server"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "geek"; }) {}; @@ -106952,6 +112576,7 @@ self: { libraryPkgconfigDepends = [ gegl ]; description = "Haskell bindings to GEGL library"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gegl;}; "gelatin" = callPackage @@ -106970,7 +112595,9 @@ self: { executableHaskellDepends = [ base linear mtl vector ]; description = "A graphics description language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "gelatin-freetype2" = callPackage @@ -106988,6 +112615,7 @@ self: { testHaskellDepends = [ base ]; description = "FreeType2 based text rendering for the gelatin realtime rendering system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gelatin-fruity" = callPackage @@ -106999,6 +112627,7 @@ self: { libraryHaskellDepends = [ base FontyFruity gelatin linear vector ]; description = "Gelatin's support for rendering TTF outlines, using FontyFruity"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gelatin-gl" = callPackage @@ -107020,6 +112649,7 @@ self: { executableHaskellDepends = [ base gelatin lens linear mtl vector ]; description = "OpenGL rendering routines for the gelatin-picture graphics EDSL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "gelatin-gl-example"; }) {}; @@ -107038,6 +112668,7 @@ self: { executableHaskellDepends = [ base either filepath sdl2 ]; description = "An SDL2 backend for the gelatin renderer"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "gelatin-sdl2-example"; }) {}; @@ -107051,6 +112682,7 @@ self: { libraryHaskellDepends = [ base bytestring filepath gelatin ]; description = "Gelatin's OpenGL shaders"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gemcap" = callPackage @@ -107071,6 +112703,8 @@ self: { ]; description = "a simple Gemini capsule (server)"; license = lib.licenses.agpl3Plus; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gemini-exports" = callPackage @@ -107152,6 +112786,7 @@ self: { ]; description = "A barebones textboard for the Gemini protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "gemini-textboard"; }) {}; @@ -107170,6 +112805,8 @@ self: { ]; description = "A simple library of helpers for SDL+GL games"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gen-imports" = callPackage @@ -107185,6 +112822,8 @@ self: { ]; description = "Code to generate instances for the package \"ghc-instances\""; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gen-passwd" = callPackage @@ -107202,7 +112841,9 @@ self: { ]; description = "Create wordlist-based passwords easily"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "gen-passwd"; + broken = true; }) {}; "gencheck" = callPackage @@ -107221,6 +112862,7 @@ self: { ]; description = "A testing framework inspired by QuickCheck and SmallCheck"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gender" = callPackage @@ -107236,7 +112878,9 @@ self: { executableHaskellDepends = [ attoparsec base text ]; description = "Identify a persons gender by their first name"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; mainProgram = "gender"; + broken = true; }) {}; "genders" = callPackage @@ -107252,6 +112896,8 @@ self: { testHaskellDepends = [ base bytestring hspec network vector ]; description = "Bindings to libgenders"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {genders = null;}; "gendocs" = callPackage @@ -107283,6 +112929,8 @@ self: { ]; description = "Exception-safe resource management in more monads"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "general-games" = callPackage @@ -107313,6 +112961,8 @@ self: { ]; description = "Prelude replacement using generalized type classes where possible"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generator" = callPackage @@ -107324,6 +112974,8 @@ self: { libraryHaskellDepends = [ base List transformers ]; description = "Python-generators notation for creation of monadic lists"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generators" = callPackage @@ -107335,6 +112987,8 @@ self: { libraryHaskellDepends = [ base mtl random ]; description = "Actually useful monadic random value generators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-accessors" = callPackage @@ -107354,6 +113008,7 @@ self: { ]; description = "stringly-named getters for generic data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "generic-aeson" = callPackage @@ -107370,6 +113025,8 @@ self: { ]; description = "Derivation of Aeson instances using GHC generics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-arbitrary" = callPackage @@ -107399,6 +113056,8 @@ self: { libraryHaskellDepends = [ base binary bytestring ghc-prim ]; description = "Generic Data.Binary derivation using GHC generics."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-church" = callPackage @@ -107414,6 +113073,8 @@ self: { ]; description = "Automatically convert Generic instances to and from church representations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-constraints" = callPackage @@ -107517,6 +113178,8 @@ self: { testHaskellDepends = [ array base bytestring hspec ]; description = "An Enum class that fixes some deficiences with Prelude's Enum"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-enumeration" = callPackage @@ -107528,6 +113191,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Generically derived enumerations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-env" = callPackage @@ -107566,6 +113231,8 @@ self: { testHaskellDepends = [ base Cabal inspection-testing ]; description = "Generically extract and replace collections of record fields"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-lens" = callPackage @@ -107608,6 +113275,8 @@ self: { libraryHaskellDepends = [ base generic-lens ]; description = "GHC.OverloadedLabels.IsLabel instance for lenses from ghc-generics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-lens-lite" = callPackage @@ -107645,6 +113314,8 @@ self: { libraryHaskellDepends = [ base lucid text ]; description = "General-purpose web page scaffold for Lucid"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-match" = callPackage @@ -107656,6 +113327,8 @@ self: { libraryHaskellDepends = [ base generics-sop ]; description = "First class pattern matching"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-maybe" = callPackage @@ -107677,6 +113350,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "A generic version of Data.Maybe"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-monoid" = callPackage @@ -107737,6 +113412,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Provides functionality for overriding instances for generic derivation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-override-aeson" = callPackage @@ -107749,6 +113426,7 @@ self: { testHaskellDepends = [ aeson base generic-override hspec text ]; description = "Provides orphan instances necessary for integrating generic-override and aeson"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "generic-persistence" = callPackage @@ -107769,6 +113447,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Database persistence using generics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-pretty" = callPackage @@ -107787,6 +113467,8 @@ self: { ]; description = "Pretty printing for Generic value"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-pretty-instances" = callPackage @@ -107811,6 +113493,8 @@ self: { ]; description = "GenericPretty canonical instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-random" = callPackage @@ -107834,6 +113518,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Magic record operations using generics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-server" = callPackage @@ -107845,6 +113531,8 @@ self: { libraryHaskellDepends = [ base bytestring network ]; description = "Simple generic TCP/IP server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-storable" = callPackage @@ -107857,6 +113545,8 @@ self: { testHaskellDepends = [ base ghc-prim hspec QuickCheck ]; description = "Generic implementation of Storable"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-tree" = callPackage @@ -107868,6 +113558,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Generic Tree data type"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generic-trie" = callPackage @@ -107897,6 +113589,7 @@ self: { ]; description = "Marshalling Haskell values to/from XML"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "generic-xmlpickler" = callPackage @@ -107911,6 +113604,8 @@ self: { testHaskellDepends = [ base hxt tasty tasty-hunit tasty-th ]; description = "Generic generation of HXT XmlPickler instances using GHC Generics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generically" = callPackage @@ -107956,6 +113651,8 @@ self: { ]; description = "Generic Programming with Mutually Recursive Sums of Products"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "generics-mrsop-gdiff" = callPackage @@ -107967,6 +113664,7 @@ self: { libraryHaskellDepends = [ base generics-mrsop ]; description = "Reimplementation of the gdiff algorithm for generics-mrsop"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "generics-sop" = callPackage @@ -108011,6 +113709,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Serialization library using Data.Generics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "genesis" = callPackage @@ -108038,6 +113738,7 @@ self: { ]; description = "Opinionated bootstrapping for Haskell web services"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; }) {}; "genesis-test" = callPackage @@ -108061,6 +113762,7 @@ self: { ]; description = "Opinionated bootstrapping for Haskell web services"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; }) {}; "genetics" = callPackage @@ -108074,7 +113776,9 @@ self: { executableHaskellDepends = [ base random-fu ]; description = "A Genetic Algorithm library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hellogenetics"; + broken = true; }) {}; "geni-gui" = callPackage @@ -108098,6 +113802,7 @@ self: { executableHaskellDepends = [ base GenI ]; description = "GenI graphical user interface"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "geni-gui"; }) {}; @@ -108122,6 +113827,7 @@ self: { ]; description = "Companion tools for use with the GenI surface realiser"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "geni-util"; }) {}; @@ -108142,6 +113848,7 @@ self: { ]; description = "Conversion utility for the GenI generator"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "geniconvert"; }) {}; @@ -108155,6 +113862,8 @@ self: { testHaskellDepends = [ base containers mtl template-haskell ]; description = "Generate generalized fmap, foldMap and traverse"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "geniplate" = callPackage @@ -108166,6 +113875,8 @@ self: { libraryHaskellDepends = [ base mtl template-haskell ]; description = "Use Template Haskell to generate Uniplate-like functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "geniplate-mirror" = callPackage @@ -108198,6 +113909,7 @@ self: { ]; description = "Simple HTTP server for GenI results"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "geniserver"; }) {}; @@ -108210,6 +113922,8 @@ self: { libraryHaskellDepends = [ base MonadRandom syb syz ]; description = "Genetic programming library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gentlemark" = callPackage @@ -108222,6 +113936,8 @@ self: { testHaskellDepends = [ base HUnit parsec transformers ]; description = "Gentle markup language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "genvalidity" = callPackage @@ -108626,6 +114342,7 @@ self: { ]; description = "GenValidity support for URI"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "genvalidity-path" = callPackage @@ -108957,6 +114674,8 @@ self: { ]; description = "Performs geo location lookups and parses the results"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "geo-uk" = callPackage @@ -108973,6 +114692,8 @@ self: { ]; description = "High precision conversion between GPS and UK Grid"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "geocalc" = callPackage @@ -108999,6 +114720,8 @@ self: { ]; description = "Geocoding using the Google Web API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "geodetic" = callPackage @@ -109015,6 +114738,7 @@ self: { ]; description = "Geodetic calculations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "geodetic-types" = callPackage @@ -109026,6 +114750,8 @@ self: { libraryHaskellDepends = [ base dimensional lens semigroups ]; description = "Types for geodetic operations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "geodetics" = callPackage @@ -109104,6 +114830,8 @@ self: { libraryHaskellDepends = [ aeson base bson bytestring lens text ]; description = "GeoJSON data types including JSON/BSON conversion"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "geolite-csv" = callPackage @@ -109122,6 +114850,7 @@ self: { ]; description = "Geolite CSV Parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "geom2d" = callPackage @@ -109134,6 +114863,8 @@ self: { testHaskellDepends = [ base ieee754 linear QuickCheck ]; description = "package for geometry in euklidean 2d space"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "geomancy" = callPackage @@ -109177,6 +114908,8 @@ self: { testSystemDepends = [ geos ]; description = "Bindings for GEOS"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) geos;}; "gerrit" = callPackage @@ -109197,6 +114930,8 @@ self: { ]; description = "A gerrit client library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "getemx" = callPackage @@ -109215,6 +114950,7 @@ self: { ]; description = "Fetch from emusic using .emx files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "getemx"; }) {}; @@ -109227,6 +114963,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Command-line parser"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "getopt-generics" = callPackage @@ -109285,6 +115023,8 @@ self: { testHaskellDepends = [ base HUnit ]; description = "The family of Extreme Value Distributions"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gf" = callPackage @@ -109319,7 +115059,9 @@ self: { preBuild = ''export LD_LIBRARY_PATH=`pwd`/dist/build''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH''; description = "Grammatical Framework"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "gf"; + broken = true; }) {}; "ggtsTC" = callPackage @@ -109334,7 +115076,9 @@ self: { executableHaskellDepends = [ base containers parsec ]; description = "A type checker and runtime system of rCOS/g (impl. of ggts-FCS)."; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "TC"; + broken = true; }) {}; "gh-labeler" = callPackage @@ -109352,7 +115096,9 @@ self: { ]; description = "Github Standard Labeler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "gh-labeler"; + broken = true; }) {}; "gh-pocket-knife" = callPackage @@ -109410,6 +115156,7 @@ self: { description = "GHC-API compatibility helpers"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-api-compat_8_10_7" = callPackage @@ -109423,6 +115170,7 @@ self: { description = "GHC-API compatibility helpers"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-api-compat" = callPackage @@ -109434,6 +115182,8 @@ self: { libraryHaskellDepends = [ base containers ghc ]; description = "GHC-API compatibility helpers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-bignum_1_3" = callPackage @@ -109548,6 +115298,8 @@ self: { ]; description = "Override GHC error messages to the user's liking"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-compact_0_1_0_0" = callPackage @@ -109611,6 +115363,8 @@ self: { testHaskellDepends = [ base ghc ghc-paths ]; description = "A small-step semantics for Core"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-corroborate" = callPackage @@ -109622,6 +115376,8 @@ self: { libraryHaskellDepends = [ base ghc-tcplugins-extra ]; description = "An flatter API for GHC typechecker plugins"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-datasize" = callPackage @@ -109633,6 +115389,8 @@ self: { libraryHaskellDepends = [ base deepseq ghc-heap ghc-prim ]; description = "Determine the size of data structures in GHC's memory"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-debug-brick" = callPackage @@ -109733,6 +115491,8 @@ self: { libraryHaskellDepends = [ base constraints ghc template-haskell ]; description = "Automatically generate GHC API counterparts to Haskell declarations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-dump-core" = callPackage @@ -109748,6 +115508,8 @@ self: { ]; description = "An AST and compiler plugin for dumping GHC's Core representation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-dump-tree" = callPackage @@ -109772,7 +115534,9 @@ self: { ]; description = "Dump GHC's parsed, renamed, and type checked ASTs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ghc-dump-tree"; + broken = true; }) {}; "ghc-dump-util" = callPackage @@ -109797,6 +115561,7 @@ self: { ]; description = "Handy tools for working with ghc-dump dumps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ghc-dump"; }) {}; @@ -109809,6 +115574,8 @@ self: { libraryHaskellDepends = [ base ghc ]; description = "Explicitly prevent sharing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-events" = callPackage @@ -109852,7 +115619,9 @@ self: { ]; description = "Analyze and visualize event logs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ghc-events-analyze"; + broken = true; }) {}; "ghc-events-parallel" = callPackage @@ -109876,7 +115645,9 @@ self: { ]; description = "Library and tool for parsing .eventlog files from parallel GHC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ghc-events"; + broken = true; }) {}; "ghc-exactprint_0_6_4" = callPackage @@ -109990,6 +115761,8 @@ self: { description = "GHC garbage collection hook"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-gc-tune" = callPackage @@ -110015,6 +115788,8 @@ self: { libraryHaskellDepends = [ base ghc ]; description = "Derived instances of GHC.Generic of the GHC AST"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-heap_9_6_1" = callPackage @@ -110057,6 +115832,8 @@ self: { libraryHaskellDepends = [ base concurrent-extra deepseq ghci ]; description = "Library for hot-swapping shared objects in GHC"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-hs-meta" = callPackage @@ -110111,6 +115888,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Find the Haddock documentation for a symbol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ghc-instances" = callPackage @@ -110132,6 +115910,7 @@ self: { ]; description = "Easily import all instances contained in GHC distributed libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ghc-justdoit" = callPackage @@ -110144,6 +115923,8 @@ self: { testHaskellDepends = [ base inspection-testing ]; description = "A magic typeclass that just does it"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-lib_8_10_7_20220219" = callPackage @@ -110420,7 +116201,9 @@ self: { executableHaskellDepends = [ base parsec process ]; description = "Generate a bash completion from the GHC manpage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ghc-man-completion"; + broken = true; }) {}; "ghc-mod" = callPackage @@ -110467,6 +116250,7 @@ self: { ]; description = "Happy Haskell Hacking"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "ghc-mtl" = callPackage @@ -110481,6 +116265,8 @@ self: { ]; description = "An mtl compatible version of the Ghc-Api monads and monad-transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-options" = callPackage @@ -110531,7 +116317,9 @@ self: { ]; description = "A parallel wrapper for 'ghc --make'"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ghc-parmake"; + broken = true; }) {}; "ghc-parser" = callPackage @@ -110574,7 +116362,9 @@ self: { ]; description = "Simple utility to fix BROKEN package dependencies for cabal-install"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ghc-pkg-autofix"; + broken = true; }) {}; "ghc-pkg-lib" = callPackage @@ -110589,6 +116379,8 @@ self: { ]; description = "Provide library support for ghc-pkg information"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-plugin-non-empty" = callPackage @@ -110601,6 +116393,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "GHC Plugin for non-empty lists"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-plugs-out" = callPackage @@ -110616,6 +116410,7 @@ self: { doHaddock = false; description = "Type checker plugins without the type checking"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "ghc-prim_0_10_0" = callPackage @@ -110712,6 +116507,8 @@ self: { testHaskellDepends = [ base transformers ]; description = "GHC plugin to prove program equations by simplification"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-server" = callPackage @@ -110742,6 +116539,7 @@ self: { executableHaskellDepends = [ base transformers ]; description = "Simplified GHC API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "ghc-test"; }) {}; @@ -110758,6 +116556,8 @@ self: { ]; description = "Simplified interface to the GHC API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-source-gen" = callPackage @@ -110774,6 +116574,8 @@ self: { ]; description = "Constructs Haskell syntax trees for the GHC API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-srcspan-plugin" = callPackage @@ -110785,6 +116587,8 @@ self: { libraryHaskellDepends = [ array base containers ghc hpc ]; description = "Generic GHC Plugin for annotating Haskell code with source location data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-stdin" = callPackage @@ -110811,6 +116615,8 @@ self: { libraryHaskellDepends = [ base ghc ]; description = "Data and Typeable instances for the GHC API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-syb-utils" = callPackage @@ -110822,6 +116628,8 @@ self: { libraryHaskellDepends = [ base bytestring ghc syb ]; description = "Scrap Your Boilerplate utilities for the GHC API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-symbol" = callPackage @@ -110989,6 +116797,8 @@ self: { ]; description = "A compiler plugin which generates tags file from GHC parsed syntax tree"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-tcplugin-api" = callPackage @@ -111030,6 +116840,8 @@ self: { ]; description = "Library for parsing GHC time and allocation profiling reports"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghc-timers" = callPackage @@ -111152,7 +116964,9 @@ self: { executableHaskellDepends = [ base ghc-paths unix ]; description = "Print minimal export lists"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ghc-usage"; + broken = true; }) {}; "ghc-vis" = callPackage @@ -111240,6 +117054,8 @@ self: { libraryHaskellDepends = [ base cairo colour diagrams gtk ]; description = "Display simple diagrams from ghci"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghci-haskeline" = callPackage @@ -111258,7 +117074,9 @@ self: { ]; description = "An implementation of ghci using the Haskeline line-input library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ghci-haskeline"; + broken = true; }) {}; "ghci-hexcalc" = callPackage @@ -111283,6 +117101,8 @@ self: { testHaskellDepends = [ base doctest hspec parsec ]; description = "parse output of ghci \":history\" command"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghci-lib" = callPackage @@ -111294,6 +117114,8 @@ self: { libraryHaskellDepends = [ base ghc MissingH ]; description = "A library for interactively evaluating Haskell code"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghci-ng" = callPackage @@ -111315,7 +117137,9 @@ self: { ]; description = "Next generation GHCi"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ghci-ng"; + broken = true; }) {}; "ghci-pretty" = callPackage @@ -111327,6 +117151,7 @@ self: { libraryHaskellDepends = [ base hscolour ipprint ]; description = "colored pretty-printing within ghci"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ghci-websockets" = callPackage @@ -111460,6 +117285,7 @@ self: { testToolDepends = [ ghcide implicit-hie ]; description = "An LSP client for running performance experiments on HLS"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "ghcide-bench"; }) {}; @@ -111478,6 +117304,8 @@ self: { ]; description = "Test utils for ghcide"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghcjs-ajax" = callPackage @@ -111566,6 +117394,7 @@ self: { description = "GHCJS DOM Hello World, an example package"; license = lib.licenses.mit; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; }) {}; "ghcjs-dom-jsaddle" = callPackage @@ -111588,6 +117417,8 @@ self: { sha256 = "1pmxrhpdh4630q0z8a8pqg5m7323a1w1z8ny2fvb1acr12x6l1f0"; description = "DOM library using JSFFI and GHCJS"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghcjs-dom-webkit" = callPackage @@ -111636,6 +117467,7 @@ self: { ]; description = "Client-side web EDSL for transient nodes running in the web browser"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ghcjs-perch" = callPackage @@ -111658,6 +117490,8 @@ self: { libraryHaskellDepends = [ base ghcjs-base protolude ]; description = "Bidirectional bidings to javascript's promise"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghcjs-vdom" = callPackage @@ -111706,6 +117540,8 @@ self: { libraryHaskellDepends = [ base ghcjs-base text ]; description = "XmlHttpRequest (\"AJAX\") bindings for GHCJS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ghclive" = callPackage @@ -111732,7 +117568,9 @@ self: { ]; description = "Interactive Haskell interpreter in a browser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ghclive"; + broken = true; }) {}; "ghcprofview" = callPackage @@ -111803,6 +117641,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "ghc toolchain installer"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "ghcup"; }) {}; @@ -111853,6 +117692,7 @@ self: { ]; description = "Trivial routines for inspecting git repositories"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "ght"; }) {}; @@ -111936,6 +117776,7 @@ self: { ]; description = "Bridge between packages gi-* and cairo-core"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gi-cairo-connector" = callPackage @@ -111992,6 +117833,8 @@ self: { libraryPkgconfigDepends = [ clutter ]; description = "clutter GObject bindings"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) clutter;}; "gi-cogl" = callPackage @@ -112034,6 +117877,8 @@ self: { libraryPkgconfigDepends = [ cogl-pango ]; description = "Cogl Pango GObject bindings"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {cogl-pango = null;}; "gi-dbusmenu" = callPackage @@ -112237,6 +118082,7 @@ self: { libraryPkgconfigDepends = [ gst-editing-services ]; description = "libges bindings"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; }) {gst-editing-services = null;}; "gi-ggit" = callPackage @@ -112293,6 +118139,8 @@ self: { ]; description = "Haskell implementation of GListModel interface from gi-gio"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gi-girepository" = callPackage @@ -112388,6 +118236,8 @@ self: { libraryPkgconfigDepends = [ graphene-gobject ]; description = "Graphene bindings"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {graphene-gobject = null;}; "gi-gsk" = callPackage @@ -112412,6 +118262,7 @@ self: { libraryPkgconfigDepends = [ gtk4 ]; description = "Gsk bindings"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gtk4;}; "gi-gst" = callPackage @@ -112497,6 +118348,7 @@ self: { libraryPkgconfigDepends = [ gstreamer-pbutils ]; description = "GStreamer Plugins Base Utils bindings"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; }) {gstreamer-pbutils = null;}; "gi-gsttag" = callPackage @@ -112518,6 +118370,8 @@ self: { libraryPkgconfigDepends = [ gstreamer-tag ]; description = "GStreamer Tag bindings"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {gstreamer-tag = null;}; "gi-gstvideo" = callPackage @@ -112612,6 +118466,8 @@ self: { ]; description = "Declarative GTK+ programming in Haskell"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gi-gtk-declarative-app-simple" = callPackage @@ -112633,6 +118489,7 @@ self: { ]; description = "Declarative GTK+ programming in Haskell in the style of Pux"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "gi-gtk-hs" = callPackage @@ -112715,6 +118572,8 @@ self: { libraryPkgconfigDepends = [ gtksheet ]; description = "GtkSheet bindings"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {gtksheet = null;}; "gi-gtksource" = callPackage @@ -112739,6 +118598,8 @@ self: { libraryPkgconfigDepends = [ gtksourceview ]; description = "GtkSource bindings"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) gtksourceview;}; "gi-handy" = callPackage @@ -112806,6 +118667,8 @@ self: { description = "IBus bindings"; license = lib.licenses.lgpl21Only; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) ibus;}; "gi-javascriptcore" = callPackage @@ -113215,6 +119078,8 @@ self: { libraryPkgconfigDepends = [ webkitgtk-web-process-extension ]; description = "WebKitWebProcessExtension bindings"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {webkitgtk-web-process-extension = null;}; "gi-wnck" = callPackage @@ -113278,7 +119143,9 @@ self: { ]; description = "Fuzzy finder for cabal executables"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "giak"; + broken = true; }) {}; "gibbon" = callPackage @@ -113358,6 +119225,8 @@ self: { ]; description = "Consistent and safe JSON APIs with snap-core and (by default) postgresql-simple"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ginsu" = callPackage @@ -113381,7 +119250,9 @@ self: { executableSystemDepends = [ openssl ]; description = "Ginsu Gale Client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "ginsu"; + broken = true; }) {inherit (pkgs) openssl;}; "gio" = callPackage @@ -113422,7 +119293,9 @@ self: { ]; description = "Git Performance Dashboard"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "gipeda"; + broken = true; }) {}; "giphy-api" = callPackage @@ -113448,6 +119321,8 @@ self: { ]; description = "Giphy HTTP API wrapper and CLI search tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gist" = callPackage @@ -113465,7 +119340,9 @@ self: { ]; description = "A reliable command-line client for gist.github.com"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "gist"; + broken = true; }) {}; "git" = callPackage @@ -113490,6 +119367,8 @@ self: { doCheck = false; description = "Git operations in haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "git-all" = callPackage @@ -113508,7 +119387,9 @@ self: { ]; description = "Determine which Git repositories need actions to be taken"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "git-all"; + broken = true; }) {}; "git-annex" = callPackage @@ -113608,7 +119489,9 @@ self: { ]; description = "git checkout command-line tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "git-brunch"; + broken = true; }) {}; "git-checklist" = callPackage @@ -113627,7 +119510,9 @@ self: { ]; description = "Maintain per-branch checklists in Git"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "git-checklist"; + broken = true; }) {}; "git-config" = callPackage @@ -113649,6 +119534,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "A simple parser for Git configuration files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "git-cuk" = callPackage @@ -113668,7 +119554,9 @@ self: { executableHaskellDepends = [ base relude ]; description = "Haskell Git Helper Tool"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "cuk"; + broken = true; }) {}; "git-date" = callPackage @@ -113689,6 +119577,8 @@ self: { ]; description = "Bindings to the date parsing from Git"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "git-embed" = callPackage @@ -113726,6 +119616,7 @@ self: { ]; description = "Custom git command for formatting code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "git-fmt"; }) {}; @@ -113770,6 +119661,7 @@ self: { ]; description = "More intelligent push-to-GitHub utility"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "git-gpush"; }) {}; @@ -113784,7 +119676,9 @@ self: { executableHaskellDepends = [ base base-compat process ]; description = "Move a git branch"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "git-jump"; + broken = true; }) {}; "git-lfs" = callPackage @@ -113861,6 +119755,7 @@ self: { ]; description = "Git object and its parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "git-remote-ipfs" = callPackage @@ -113892,6 +119787,7 @@ self: { ]; description = "Git remote helper to store git objects on IPFS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "git-remote-ipfs"; }) {}; @@ -113921,7 +119817,9 @@ self: { ]; description = "repairs a damaged git repository"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "git-repair"; + broken = true; }) {}; "git-sanity" = callPackage @@ -113941,6 +119839,7 @@ self: { executableHaskellDepends = [ base Cabal ]; description = "A sanity checker for your git history"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "git-sanity"; }) {}; @@ -113971,6 +119870,8 @@ self: { testToolDepends = [ git ]; description = "A framework for pre-commit checks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gitHUD" = callPackage @@ -113990,7 +119891,9 @@ self: { ]; description = "More efficient replacement to the great git-radar"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "gitHUD"; + broken = true; }) {}; "gitcache" = callPackage @@ -114028,6 +119931,7 @@ self: { ]; description = "Create Github issues out of TODO comments in code"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "gitdo"; }) {}; @@ -114139,6 +120043,8 @@ self: { executableToolDepends = [ git ]; description = "backs up everything github knows about a repository, to the repository"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) git;}; "github-data" = callPackage @@ -114164,6 +120070,7 @@ self: { ]; description = "Access to the GitHub API, v3"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "github-post-receive" = callPackage @@ -114180,6 +120087,8 @@ self: { ]; description = "GitHub webhooks library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "github-release" = callPackage @@ -114247,6 +120156,8 @@ self: { ]; description = "Various Github helper utilities"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "github-types" = callPackage @@ -114276,6 +120187,8 @@ self: { libraryHaskellDepends = [ base basic-prelude github text ]; description = "Useful functions that use the GitHub API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "github-webhook-handler" = callPackage @@ -114294,6 +120207,8 @@ self: { ]; description = "GitHub WebHook Handler"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "github-webhook-handler-snap" = callPackage @@ -114312,6 +120227,7 @@ self: { ]; description = "GitHub WebHook Handler implementation for Snap"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "github-webhooks" = callPackage @@ -114355,6 +120271,8 @@ self: { ]; description = "Heads up, and you see your GIT context"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gitignore" = callPackage @@ -114373,7 +120291,9 @@ self: { ]; description = "Apply GitHub .gitignore templates to already existing repositories."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "gitignore"; + broken = true; }) {}; "gitit" = callPackage @@ -114427,6 +120347,8 @@ self: { testHaskellDepends = [ base hspec rio ]; description = "Gitlab Web API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gitlab-haskell" = callPackage @@ -114450,6 +120372,8 @@ self: { ]; description = "A Haskell library for the GitLab web API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gitlib" = callPackage @@ -114497,6 +120421,8 @@ self: { ]; description = "Gitlib repository backend that uses the git command-line tool"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gitlib-cross" = callPackage @@ -114514,6 +120440,7 @@ self: { ]; description = "Run tests between repositories"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "gitlib-libgit2" = callPackage @@ -114569,6 +120496,7 @@ self: { ]; description = "Gitlib repository backend for storing Git objects in Amazon S3"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "gitlib-sample" = callPackage @@ -114618,6 +120546,8 @@ self: { ]; description = "Generic utility functions for working with Git repositories"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gitrev" = callPackage @@ -114660,6 +120590,7 @@ self: { ]; description = "A document store library for Git + JSON"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "gitter" = callPackage @@ -114675,6 +120606,8 @@ self: { ]; description = "Gitter.im API client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "givegif" = callPackage @@ -114702,6 +120635,7 @@ self: { ]; description = "CLI Giphy search tool with previews in iTerm 2"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "givegif"; }) {}; @@ -114818,6 +120752,8 @@ self: { libraryPkgconfigDepends = [ libglade ]; description = "Binding to the glade library"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs.gnome2) libglade;}; "gladexml-accessor" = callPackage @@ -114829,6 +120765,7 @@ self: { libraryHaskellDepends = [ base glade HaXml template-haskell ]; description = "Automagically declares getters for widget handles in specified interface file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "glambda" = callPackage @@ -114870,7 +120807,9 @@ self: { ]; description = "An OpenGL micro framework"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "glasso" = callPackage @@ -114896,6 +120835,8 @@ self: { libraryHaskellDepends = [ base lens ]; description = "Framework for rendering things with metadata/headers and values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "glazier" = callPackage @@ -114917,6 +120858,7 @@ self: { ]; description = "Extensible effects using ContT, State and variants"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "glazier-pipes" = callPackage @@ -114932,6 +120874,7 @@ self: { ]; description = "A threaded rendering framework using glaizer and pipes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "glazier-react" = callPackage @@ -114951,6 +120894,7 @@ self: { ]; description = "ReactJS binding using Glazier.Command."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "glazier-react-examples" = callPackage @@ -114975,6 +120919,7 @@ self: { ]; description = "Examples of using glazier-react"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "glazier-react-todo"; }) {}; @@ -114995,6 +120940,7 @@ self: { ]; description = "Generic widget library using glazier-react"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gli" = callPackage @@ -115019,7 +120965,9 @@ self: { testHaskellDepends = [ base ]; description = "Tiny cli to fetch PR info from gitlab"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "gli"; + broken = true; }) {}; "glib" = callPackage @@ -115053,6 +121001,8 @@ self: { testHaskellDepends = [ base data-default hspec ]; description = "Glicko-2 implementation in Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "glider-nlp" = callPackage @@ -115065,6 +121015,8 @@ self: { testHaskellDepends = [ base Cabal containers hspec text ]; description = "Natural Language Processing library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "glintcollider" = callPackage @@ -115109,6 +121061,7 @@ self: { testHaskellDepends = [ base HUnit ]; description = "Console IRC client"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; mainProgram = "glirc"; maintainers = [ lib.maintainers.kiwi ]; }) {}; @@ -115144,6 +121097,8 @@ self: { benchmarkHaskellDepends = [ base criterion Glob MissingH ]; description = "Haskell bindings for POSIX glob library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "global" = callPackage @@ -115161,6 +121116,7 @@ self: { ]; description = "Library enabling unique top-level declarations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "global-config" = callPackage @@ -115181,6 +121137,7 @@ self: { ]; description = "Global mutable configuration"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "global-lock" = callPackage @@ -115203,6 +121160,8 @@ self: { libraryHaskellDepends = [ base containers stm ]; description = "Namespaced, global, and top-level mutable variables without unsafePerformIO"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "glome-hs" = callPackage @@ -115226,6 +121185,7 @@ self: { doHaddock = false; description = "ray tracer"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "Glome"; }) {}; @@ -115257,6 +121217,7 @@ self: { ]; description = "Extras to interface Gloss and Accelerate"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gloss-algorithms" = callPackage @@ -115292,6 +121253,7 @@ self: { libraryHaskellDepends = [ base bytestring gloss repa repa-devil ]; description = "Display images in Gloss using libdevil for decoding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gloss-examples" = callPackage @@ -115311,6 +121273,7 @@ self: { ]; description = "Examples using the gloss library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "gloss-export" = callPackage @@ -115379,6 +121342,7 @@ self: { ]; description = "Parallel rendering of raster images"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "gloss-raster-accelerate" = callPackage @@ -115436,6 +121400,7 @@ self: { libraryHaskellDepends = [ base gloss sodium ]; description = "A Sodium interface to the Gloss drawing package"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "glpk-headers" = callPackage @@ -115494,7 +121459,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Parser and optimizer for a small subset of GLSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "optshader"; + broken = true; }) {}; "gltf-codec" = callPackage @@ -115515,6 +121482,8 @@ self: { testHaskellDepends = [ base bytestring directory filepath shower ]; description = "glTF scene loader"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gltf-loader" = callPackage @@ -115543,6 +121512,7 @@ self: { ]; description = "High level GlTF loader"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "gltf-loader"; }) {}; @@ -115601,7 +121571,9 @@ self: { ]; description = "Make better services"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "glue-example"; + broken = true; }) {}; "glue-common" = callPackage @@ -115741,6 +121713,7 @@ self: { ]; description = "Composable maps and generic tries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gmndl" = callPackage @@ -115759,6 +121732,7 @@ self: { ]; description = "Mandelbrot Set explorer using GTK"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "gmndl"; }) {}; @@ -115787,6 +121761,7 @@ self: { ]; description = "Randomly set a picture as the GNOME desktop background"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "gnome-desktop"; }) {}; @@ -115823,6 +121798,7 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the GNOME Virtual File System library"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {gnome-vfs = null; gnome-vfs_module = null;}; "gnss-converters" = callPackage @@ -115850,6 +121826,7 @@ self: { ]; description = "GNSS Converters"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gnuidn" = callPackage @@ -115924,6 +121901,8 @@ self: { libraryHaskellDepends = [ base directory filepath process ]; description = "GHCi bindings to lambdabot"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "goal-core" = callPackage @@ -115948,6 +121927,8 @@ self: { ]; description = "Common, non-geometric tools for use with Goal"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "goal-geometry" = callPackage @@ -115964,6 +121945,7 @@ self: { ]; description = "The basic geometric type system of Goal"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "goal-graphical" = callPackage @@ -115987,6 +121969,7 @@ self: { ]; description = "Optimization of latent variable and dynamical models with Goal"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "goal-probability" = callPackage @@ -116009,6 +121992,7 @@ self: { ]; description = "Optimization on manifolds of probability distributions with Goal"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "goal-simulation" = callPackage @@ -116032,6 +122016,7 @@ self: { ]; description = "Mealy based simulation tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "goat" = callPackage @@ -116048,6 +122033,7 @@ self: { testHaskellDepends = [ base bytestring cereal QuickCheck safe ]; description = "Time Series Compression"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "goatee" = callPackage @@ -116065,6 +122051,8 @@ self: { testHaskellDepends = [ base containers HUnit mtl parsec ]; description = "A monadic take on a 2,500-year-old board game - library"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "goatee-gtk" = callPackage @@ -116085,6 +122073,7 @@ self: { testHaskellDepends = [ base HUnit ]; description = "A monadic take on a 2,500-year-old board game - GTK+ UI"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "goatee-gtk"; }) {}; @@ -116107,6 +122096,8 @@ self: { testHaskellDepends = [ base hspec hspec-core ]; description = "Go-style channels"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "godot-haskell" = callPackage @@ -116129,6 +122120,8 @@ self: { doHaddock = false; description = "Haskell bindings for the Godot game engine API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "godot-megaparsec" = callPackage @@ -116147,7 +122140,9 @@ self: { executableHaskellDepends = [ base criterion megaparsec text ]; description = "Megaparsec parser for Godot `tscn` and `gdextension` files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "bench"; + broken = true; }) {}; "gofer-prelude" = callPackage @@ -116159,6 +122154,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "The Gofer 2.30 standard prelude"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "goggles" = callPackage @@ -116220,6 +122217,7 @@ self: { ]; description = "Comprehensive Google Services SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-abusiveexperiencereport" = callPackage @@ -116231,6 +122229,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Abusive Experience Report SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-acceleratedmobilepageurl" = callPackage @@ -116242,6 +122241,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Accelerated Mobile Pages (AMP) URL SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-accessapproval" = callPackage @@ -116253,6 +122253,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Access Approval SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-accesscontextmanager" = callPackage @@ -116264,6 +122265,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Access Context Manager SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-adexchange-buyer" = callPackage @@ -116275,6 +122277,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Ad Exchange Buyer SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-adexchange-seller" = callPackage @@ -116286,6 +122289,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Ad Exchange Seller SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-adexchangebuyer2" = callPackage @@ -116297,6 +122301,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Ad Exchange Buyer API II SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-adexperiencereport" = callPackage @@ -116308,6 +122313,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Ad Experience Report SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-admin-datatransfer" = callPackage @@ -116319,6 +122325,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Admin Data Transfer SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-admin-directory" = callPackage @@ -116330,6 +122337,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Admin Directory SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-admin-emailmigration" = callPackage @@ -116341,6 +122349,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Email Migration API v2 SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-admin-reports" = callPackage @@ -116352,6 +122361,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Admin Reports SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-adsense" = callPackage @@ -116363,6 +122373,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google AdSense Management SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-adsense-host" = callPackage @@ -116374,6 +122385,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google AdSense Host SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-affiliates" = callPackage @@ -116385,6 +122397,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Affiliate Network SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-alertcenter" = callPackage @@ -116396,6 +122409,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google G Suite Alert Center SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-analytics" = callPackage @@ -116407,6 +122421,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Analytics SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-analyticsreporting" = callPackage @@ -116418,6 +122433,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Analytics Reporting SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-android-enterprise" = callPackage @@ -116429,6 +122445,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Play EMM SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-android-publisher" = callPackage @@ -116440,6 +122457,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Play Developer SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-androiddeviceprovisioning" = callPackage @@ -116451,6 +122469,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Android Device Provisioning Partner SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-androidmanagement" = callPackage @@ -116462,6 +122481,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Android Management SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-appengine" = callPackage @@ -116473,6 +122493,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google App Engine Admin SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-apps-activity" = callPackage @@ -116484,6 +122505,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Drive Activity SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-apps-calendar" = callPackage @@ -116495,6 +122517,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Calendar SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-apps-licensing" = callPackage @@ -116506,6 +122529,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Enterprise License Manager SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-apps-reseller" = callPackage @@ -116517,6 +122541,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Enterprise Apps Reseller SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-apps-tasks" = callPackage @@ -116528,6 +122553,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Tasks SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-appstate" = callPackage @@ -116539,6 +122565,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google App State SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-autoscaler" = callPackage @@ -116550,6 +122577,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Compute Engine Autoscaler SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-bigquery" = callPackage @@ -116561,6 +122589,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google BigQuery SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-bigquerydatatransfer" = callPackage @@ -116572,6 +122601,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google BigQuery Data Transfer SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-bigtableadmin" = callPackage @@ -116583,6 +122613,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Bigtable Admin SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-billing" = callPackage @@ -116594,6 +122625,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Billing SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-binaryauthorization" = callPackage @@ -116605,6 +122637,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Binary Authorization SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-blogger" = callPackage @@ -116616,6 +122649,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Blogger SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-books" = callPackage @@ -116627,6 +122661,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Books SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-chat" = callPackage @@ -116638,6 +122673,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Hangouts Chat SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-civicinfo" = callPackage @@ -116649,6 +122685,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Civic Information SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-classroom" = callPackage @@ -116660,6 +122697,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Classroom SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudasset" = callPackage @@ -116671,6 +122709,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Asset SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-clouderrorreporting" = callPackage @@ -116682,6 +122721,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Stackdriver Error Reporting SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudfunctions" = callPackage @@ -116693,6 +122733,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Functions SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudidentity" = callPackage @@ -116704,6 +122745,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Identity SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudiot" = callPackage @@ -116715,6 +122757,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud IoT SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudkms" = callPackage @@ -116726,6 +122769,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Key Management Service (KMS) SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudmonitoring" = callPackage @@ -116737,6 +122781,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Monitoring SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudprivatecatalog" = callPackage @@ -116748,6 +122793,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Private Catalog SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudprivatecatalogproducer" = callPackage @@ -116759,6 +122805,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Private Catalog Producer SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudprofiler" = callPackage @@ -116770,6 +122817,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Stackdriver Profiler SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudscheduler" = callPackage @@ -116781,6 +122829,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Scheduler SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudsearch" = callPackage @@ -116792,6 +122841,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Search SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudshell" = callPackage @@ -116803,6 +122853,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Shell SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudtasks" = callPackage @@ -116814,6 +122865,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Tasks SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-cloudtrace" = callPackage @@ -116825,6 +122877,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Stackdriver Trace SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-commentanalyzer" = callPackage @@ -116836,6 +122889,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Perspective Comment Analyzer SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-composer" = callPackage @@ -116847,6 +122901,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Composer SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-compute" = callPackage @@ -116858,6 +122913,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Compute Engine SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-consumersurveys" = callPackage @@ -116869,6 +122925,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Consumer Surveys SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-container" = callPackage @@ -116880,6 +122937,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Kubernetes Engine SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-containeranalysis" = callPackage @@ -116891,6 +122949,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Container Analysis SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-containerbuilder" = callPackage @@ -116902,6 +122961,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Build SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-core" = callPackage @@ -116926,6 +122986,8 @@ self: { testHaskellDepends = [ base tasty ]; description = "Core data types and functionality for Gogol libraries"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gogol-customsearch" = callPackage @@ -116937,6 +122999,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google CustomSearch SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-dataflow" = callPackage @@ -116948,6 +123011,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Dataflow SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-datafusion" = callPackage @@ -116959,6 +123023,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Data Fusion SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-dataproc" = callPackage @@ -116970,6 +123035,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Dataproc SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-datastore" = callPackage @@ -116981,6 +123047,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Datastore SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-debugger" = callPackage @@ -116992,6 +123059,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Stackdriver Debugger SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-deploymentmanager" = callPackage @@ -117003,6 +123071,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Deployment Manager SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-dfareporting" = callPackage @@ -117014,6 +123083,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google DCM/DFA Reporting And Trafficking SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-dialogflow" = callPackage @@ -117025,6 +123095,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Dialogflow SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-digitalassetlinks" = callPackage @@ -117036,6 +123107,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Digital Asset Links SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-discovery" = callPackage @@ -117047,6 +123119,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google API Discovery Service SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-dlp" = callPackage @@ -117058,6 +123131,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Data Loss Prevention (DLP) SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-dns" = callPackage @@ -117069,6 +123143,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud DNS SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-docs" = callPackage @@ -117080,6 +123155,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Docs SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-doubleclick-bids" = callPackage @@ -117091,6 +123167,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google DoubleClick Bid Manager SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-doubleclick-search" = callPackage @@ -117102,6 +123179,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google DoubleClick Search SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-drive" = callPackage @@ -117113,6 +123191,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Drive SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-driveactivity" = callPackage @@ -117124,6 +123203,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Drive Activity SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-factchecktools" = callPackage @@ -117135,6 +123215,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Fact Check Tools SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-file" = callPackage @@ -117146,6 +123227,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Filestore SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-firebase-dynamiclinks" = callPackage @@ -117157,6 +123239,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Firebase Dynamic Links SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-firebase-rules" = callPackage @@ -117168,6 +123251,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Firebase Rules SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-firebasehosting" = callPackage @@ -117179,6 +123263,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Firebase Hosting SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-firebaseremoteconfig" = callPackage @@ -117190,6 +123275,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Firebase Remote Config SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-firestore" = callPackage @@ -117201,6 +123287,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Firestore SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-fitness" = callPackage @@ -117212,6 +123299,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Fitness SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-fonts" = callPackage @@ -117223,6 +123311,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Fonts Developer SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-freebasesearch" = callPackage @@ -117234,6 +123323,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Freebase Search SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-fusiontables" = callPackage @@ -117245,6 +123335,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Fusion Tables SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-games" = callPackage @@ -117256,6 +123347,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Play Game Services SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-games-configuration" = callPackage @@ -117267,6 +123359,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Play Game Services Publishing SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-games-management" = callPackage @@ -117278,6 +123371,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Play Game Services Management SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-genomics" = callPackage @@ -117289,6 +123383,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Genomics SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-gmail" = callPackage @@ -117300,6 +123395,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Gmail SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-groups-migration" = callPackage @@ -117311,6 +123407,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Groups Migration SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-groups-settings" = callPackage @@ -117322,6 +123419,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Groups Settings SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-healthcare" = callPackage @@ -117333,6 +123431,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Healthcare SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-iam" = callPackage @@ -117344,6 +123443,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Identity and Access Management (IAM) SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-iamcredentials" = callPackage @@ -117355,6 +123455,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google IAM Service Account Credentials SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-iap" = callPackage @@ -117366,6 +123467,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Identity-Aware Proxy SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-identity-toolkit" = callPackage @@ -117377,6 +123479,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Identity Toolkit SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-indexing" = callPackage @@ -117388,6 +123491,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Indexing SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-jobs" = callPackage @@ -117399,6 +123503,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Talent Solution SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-kgsearch" = callPackage @@ -117410,6 +123515,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Knowledge Graph Search SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-language" = callPackage @@ -117421,6 +123527,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Natural Language SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-latencytest" = callPackage @@ -117432,6 +123539,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Network Performance Monitoring SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-libraryagent" = callPackage @@ -117443,6 +123551,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Library Agent SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-logging" = callPackage @@ -117454,6 +123563,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Stackdriver Logging SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-manufacturers" = callPackage @@ -117465,6 +123575,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Manufacturer Center SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-maps-coordinate" = callPackage @@ -117476,6 +123587,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Maps Coordinate SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-maps-engine" = callPackage @@ -117487,6 +123599,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Maps Engine SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-mirror" = callPackage @@ -117498,6 +123611,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Mirror SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-ml" = callPackage @@ -117509,6 +123623,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Machine Learning Engine SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-monitoring" = callPackage @@ -117520,6 +123635,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Stackdriver Monitoring SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-oauth2" = callPackage @@ -117531,6 +123647,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google OAuth2 SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-oslogin" = callPackage @@ -117542,6 +123659,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud OS Login SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-pagespeed" = callPackage @@ -117553,6 +123671,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google PageSpeed Insights SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-partners" = callPackage @@ -117564,6 +123683,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Partners SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-people" = callPackage @@ -117575,6 +123695,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google People SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-photoslibrary" = callPackage @@ -117586,6 +123707,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Photos Library SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-play-moviespartner" = callPackage @@ -117597,6 +123719,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Play Movies Partner SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-playcustomapp" = callPackage @@ -117608,6 +123731,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Play Custom App Publishing SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-plus" = callPackage @@ -117619,6 +123743,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google + SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-plus-domains" = callPackage @@ -117630,6 +123755,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google + Domains SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-poly" = callPackage @@ -117641,6 +123767,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Poly SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-prediction" = callPackage @@ -117652,6 +123779,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Prediction SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-proximitybeacon" = callPackage @@ -117663,6 +123791,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Proximity Beacon SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-pubsub" = callPackage @@ -117674,6 +123803,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Pub/Sub SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-qpxexpress" = callPackage @@ -117685,6 +123815,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google QPX Express SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-redis" = callPackage @@ -117696,6 +123827,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Memorystore for Redis SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-remotebuildexecution" = callPackage @@ -117707,6 +123839,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Remote Build Execution SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-replicapool" = callPackage @@ -117718,6 +123851,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Replica Pool SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-replicapool-updater" = callPackage @@ -117729,6 +123863,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Compute Engine Instance Group Updater SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-resourcemanager" = callPackage @@ -117740,6 +123875,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Resource Manager SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-resourceviews" = callPackage @@ -117751,6 +123887,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Compute Engine Instance Groups SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-run" = callPackage @@ -117762,6 +123899,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Run SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-runtimeconfig" = callPackage @@ -117773,6 +123911,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Runtime Configuration SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-safebrowsing" = callPackage @@ -117784,6 +123923,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Safe Browsing SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-script" = callPackage @@ -117795,6 +123935,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Apps Script SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-searchconsole" = callPackage @@ -117806,6 +123947,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Search Console URL Testing Tools SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-securitycenter" = callPackage @@ -117817,6 +123959,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Security Command Center SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-servicebroker" = callPackage @@ -117828,6 +123971,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Service Broker SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-serviceconsumermanagement" = callPackage @@ -117839,6 +123983,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Service Consumer Management SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-servicecontrol" = callPackage @@ -117850,6 +123995,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Service Control SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-servicemanagement" = callPackage @@ -117861,6 +124007,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Service Management SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-servicenetworking" = callPackage @@ -117872,6 +124019,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Service Networking SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-serviceusage" = callPackage @@ -117883,6 +124031,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Service Usage SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-serviceuser" = callPackage @@ -117894,6 +124043,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Service User SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-sheets" = callPackage @@ -117905,6 +124055,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Sheets SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-shopping-content" = callPackage @@ -117916,6 +124067,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Content API for Shopping SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-siteverification" = callPackage @@ -117927,6 +124079,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Site Verification SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-slides" = callPackage @@ -117938,6 +124091,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Slides SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-sourcerepo" = callPackage @@ -117949,6 +124103,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Source Repositories SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-spanner" = callPackage @@ -117960,6 +124115,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Spanner SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-spectrum" = callPackage @@ -117971,6 +124127,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Spectrum Database SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-speech" = callPackage @@ -117982,6 +124139,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Speech-to-Text SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-sqladmin" = callPackage @@ -117993,6 +124151,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud SQL Admin SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-storage" = callPackage @@ -118004,6 +124163,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Storage JSON SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-storage-transfer" = callPackage @@ -118015,6 +124175,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Storage Transfer SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-streetviewpublish" = callPackage @@ -118026,6 +124187,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Street View Publish SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-surveys" = callPackage @@ -118037,6 +124199,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Surveys SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-tagmanager" = callPackage @@ -118048,6 +124211,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Tag Manager SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-taskqueue" = callPackage @@ -118059,6 +124223,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google TaskQueue SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-testing" = callPackage @@ -118070,6 +124235,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Testing SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-texttospeech" = callPackage @@ -118081,6 +124247,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Text-to-Speech SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-toolresults" = callPackage @@ -118092,6 +124259,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Tool Results SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-tpu" = callPackage @@ -118103,6 +124271,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud TPU SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-tracing" = callPackage @@ -118114,6 +124283,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Tracing SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-translate" = callPackage @@ -118125,6 +124295,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Translation SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-urlshortener" = callPackage @@ -118136,6 +124307,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google URL Shortener SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-useraccounts" = callPackage @@ -118147,6 +124319,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud User Accounts SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-vault" = callPackage @@ -118158,6 +124331,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google G Suite Vault SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-videointelligence" = callPackage @@ -118169,6 +124343,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Video Intelligence SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-vision" = callPackage @@ -118180,6 +124355,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Cloud Vision SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-webmaster-tools" = callPackage @@ -118191,6 +124367,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Search Console SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-websecurityscanner" = callPackage @@ -118202,6 +124379,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google Web Security Scanner SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-youtube" = callPackage @@ -118213,6 +124391,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google YouTube Data SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-youtube-analytics" = callPackage @@ -118224,6 +124403,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google YouTube Analytics SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gogol-youtube-reporting" = callPackage @@ -118235,6 +124415,7 @@ self: { libraryHaskellDepends = [ base gogol-core ]; description = "Google YouTube Reporting SDK"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "goldplate" = callPackage @@ -118270,6 +124451,8 @@ self: { libraryHaskellDepends = [ base renderable transformers varying ]; description = "Graphical user interfaces that are renderable, change over time and eventually produce a value"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "google-cloud" = callPackage @@ -118289,6 +124472,8 @@ self: { ]; description = "Client for the Google Cloud APIs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "google-dictionary" = callPackage @@ -118325,6 +124510,7 @@ self: { ]; description = "Google Drive API access"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "google-html5-slide" = callPackage @@ -118343,7 +124529,9 @@ self: { ]; description = "Google HTML5 Slide generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "google-html5-slide"; + broken = true; }) {}; "google-isbn" = callPackage @@ -118374,6 +124562,7 @@ self: { testHaskellDepends = [ base google-search text time xml-conduit ]; description = "Write GMail filters and output to importable XML"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "google-maps-geocoding" = callPackage @@ -118390,6 +124579,7 @@ self: { ]; description = "Bindings to the Google Geocoding API (formerly Maps Geocoding API)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "google-oauth2" = callPackage @@ -118410,6 +124600,8 @@ self: { ]; description = "Google OAuth2 token negotiation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "google-oauth2-easy" = callPackage @@ -118429,6 +124621,8 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Opininated use of Google Authentication for ease"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "google-oauth2-for-cli" = callPackage @@ -118461,6 +124655,8 @@ self: { ]; description = "Get a signed JWT for Google Service Accounts"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "google-search" = callPackage @@ -118472,6 +124668,8 @@ self: { libraryHaskellDepends = [ base free nats text time ]; description = "EDSL for Google and GMail search expressions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "google-server-api" = callPackage @@ -118495,6 +124693,8 @@ self: { ]; description = "Google APIs for server to server applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "google-static-maps" = callPackage @@ -118514,6 +124714,7 @@ self: { ]; description = "Bindings to the Google Maps Static API (formerly Static Maps API)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "google-translate" = callPackage @@ -118530,6 +124731,8 @@ self: { ]; description = "Google Translate API bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "googleplus" = callPackage @@ -118547,6 +124750,7 @@ self: { ]; description = "Haskell implementation of the Google+ API v1"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "googlepolyline" = callPackage @@ -118565,6 +124769,8 @@ self: { ]; description = "Google Polyline Encoder/Decoder"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gopher-proxy" = callPackage @@ -118604,7 +124810,9 @@ self: { ]; description = "Spidering robot to download files from Gopherspace"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "gopherbot"; + broken = true; }) {}; "gopro-plus" = callPackage @@ -118635,6 +124843,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "GoPro Plus Client API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gore-and-ash" = callPackage @@ -118653,6 +124863,8 @@ self: { ]; description = "Core of FRP game engine called Gore&Ash"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gore-and-ash-actor" = callPackage @@ -118670,6 +124882,7 @@ self: { ]; description = "Gore&Ash engine extension that implements actor style of programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gore-and-ash-async" = callPackage @@ -118692,6 +124905,7 @@ self: { ]; description = "Core module for Gore&Ash engine that embeds async IO actions into game loop"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gore-and-ash-demo" = callPackage @@ -118717,6 +124931,7 @@ self: { ]; description = "Demonstration game for Gore&Ash game engine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gore-and-ash-glfw" = callPackage @@ -118733,6 +124948,7 @@ self: { ]; description = "Core module for Gore&Ash engine for GLFW input events"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gore-and-ash-lambdacube" = callPackage @@ -118752,6 +124968,7 @@ self: { ]; description = "Core module for Gore&Ash engine that do something"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gore-and-ash-logging" = callPackage @@ -118770,6 +124987,7 @@ self: { ]; description = "Core module for gore-and-ash with logging utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gore-and-ash-network" = callPackage @@ -118791,6 +125009,7 @@ self: { ]; description = "Core module for Gore&Ash engine with low level network API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gore-and-ash-sdl" = callPackage @@ -118809,6 +125028,7 @@ self: { ]; description = "Gore&Ash core module for integration with SDL library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gore-and-ash-sync" = callPackage @@ -118828,6 +125048,7 @@ self: { ]; description = "Gore&Ash module for high level network synchronization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gothic" = callPackage @@ -118847,6 +125068,8 @@ self: { ]; description = "A Haskell Vault KVv2 secret engine client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gotta-go-fast" = callPackage @@ -118865,7 +125088,9 @@ self: { ]; description = "A command line utility for practicing typing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "gotta-go-fast"; + broken = true; }) {}; "gotyno-hs" = callPackage @@ -118890,7 +125115,9 @@ self: { ]; description = "A type definition compiler supporting multiple output languages"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "gotyno-hs"; + broken = true; }) {}; "gpah" = callPackage @@ -118911,7 +125138,9 @@ self: { ]; description = "Generic Programming Use in Hackage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "gpah"; + broken = true; }) {}; "gpcsets" = callPackage @@ -118974,7 +125203,9 @@ self: { tasty-quickcheck time transformers ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "gpmf"; + broken = true; }) {}; "gpolyline" = callPackage @@ -119006,6 +125237,7 @@ self: { ]; description = "For manipulating GPS coordinates and trails"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gps2htmlReport" = callPackage @@ -119026,6 +125258,7 @@ self: { ]; description = "GPS to HTML Summary Report"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "gps2htmlReport"; }) {}; @@ -119043,6 +125276,8 @@ self: { ]; description = "Read GPX files using conduits"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "grab" = callPackage @@ -119088,6 +125323,8 @@ self: { ]; description = "Library to write graceful shutdown / upgrade service"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "grafana" = callPackage @@ -119106,6 +125343,8 @@ self: { ]; description = "API for creating grafana dashboards represented as json"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "grafdhall" = callPackage @@ -119144,6 +125383,7 @@ self: { ]; description = "Monadic correlated log events"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "grakn" = callPackage @@ -119167,6 +125407,8 @@ self: { testToolDepends = [ markdown-unlit ]; description = "A Haskell client for Grakn"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "grammar-combinators" = callPackage @@ -119184,6 +125426,7 @@ self: { ]; description = "A parsing library of context-free grammar combinators"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "grammatical-parsers" = callPackage @@ -119218,6 +125461,8 @@ self: { ]; description = "parsers that combine into grammars"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "grapefruit-examples" = callPackage @@ -119234,6 +125479,7 @@ self: { ]; description = "Examples using the Grapefruit library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "grapefruit-frp" = callPackage @@ -119251,6 +125497,7 @@ self: { ]; description = "Functional Reactive Programming core"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "grapefruit-records" = callPackage @@ -119262,6 +125509,7 @@ self: { libraryHaskellDepends = [ arrows base grapefruit-frp ]; description = "A record system for Functional Reactive Programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "grapefruit-ui" = callPackage @@ -119280,6 +125528,7 @@ self: { ]; description = "Declarative user interface programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "grapefruit-ui-gtk" = callPackage @@ -119299,6 +125548,7 @@ self: { ]; description = "GTK+-based backend for declarative user interface programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "graph" = callPackage @@ -119369,6 +125619,8 @@ self: { libraryHaskellDepends = [ base containers fgl ]; description = "An implementation of algorithms for matchings in graphs"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "graph-rewriting" = callPackage @@ -119382,6 +125634,8 @@ self: { ]; description = "Monadic graph rewriting of hypergraphs with ports and multiedges"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "graph-rewriting-cl" = callPackage @@ -119401,6 +125655,7 @@ self: { ]; description = "Interactive graph rewriting system implementing various well-known combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cl"; }) {}; @@ -119418,6 +125673,7 @@ self: { ]; description = "OpenGL interface for interactive port graph rewriting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "graph-rewriting-lambdascope" = callPackage @@ -119439,6 +125695,7 @@ self: { ]; description = "Lambdascope, an optimal evaluator of the lambda calculus, as an interactive graph-rewriting system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lambdascope"; }) {}; @@ -119455,6 +125712,7 @@ self: { ]; description = "Force-directed node placement intended for incremental graph drawing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "graph-rewriting-ski" = callPackage @@ -119474,6 +125732,7 @@ self: { ]; description = "Two evalutors of the SKI combinator calculus as interactive graph rewrite systems"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "graph-rewriting-strategies" = callPackage @@ -119489,6 +125748,7 @@ self: { ]; description = "Evaluation strategies for port-graph rewriting systems"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "graph-rewriting-trs" = callPackage @@ -119510,6 +125770,7 @@ self: { ]; description = "Evaluate first-order applicative term rewrite systems interactively using graph reduction"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "trs"; }) {}; @@ -119531,6 +125792,7 @@ self: { ]; description = "Evaluator of the lambda-calculus in an interactive graph rewriting system with explicit sharing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ww"; }) {}; @@ -119543,6 +125805,8 @@ self: { libraryHaskellDepends = [ array base bytestring containers ]; description = "Serialization of data structures with references"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "graph-trace" = callPackage @@ -119614,6 +125878,8 @@ self: { ]; description = "A simple wrapper & quasi quoter for fgl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "graph-visit" = callPackage @@ -119629,6 +125895,7 @@ self: { ]; description = "Graph walk abstraction"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "graph-wrapper" = callPackage @@ -119662,6 +125929,8 @@ self: { ]; description = "A declarative, monadic graph construction language for small graphs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "graphene" = callPackage @@ -119678,6 +125947,8 @@ self: { ]; description = "A minimal Graph Theory library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "graphics-drawingcombinators" = callPackage @@ -119695,6 +125966,8 @@ self: { ]; description = "A functional interface to 2D drawing in OpenGL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "graphics-formats-collada" = callPackage @@ -119710,6 +125983,8 @@ self: { ]; description = "Load 3D geometry in the COLLADA format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "graphicsFormats" = callPackage @@ -119721,6 +125996,7 @@ self: { libraryHaskellDepends = [ base haskell98 OpenGL QuickCheck ]; description = "Classes for renderable objects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "graphicstools" = callPackage @@ -119739,6 +126015,7 @@ self: { executableHaskellDepends = [ base CV wx wxcore ]; description = "Tools for creating graphical UIs, based on wxHaskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cvexample"; }) {}; @@ -119798,7 +126075,9 @@ self: { executableHaskellDepends = [ base ]; description = "A reimplementation of graphmod as a source plugin"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "graphmod-plugin"; + broken = true; }) {}; "graphql" = callPackage @@ -119851,6 +126130,8 @@ self: { ]; description = "GraphQL API"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "graphql-client" = callPackage @@ -119917,6 +126198,8 @@ self: { ]; description = "GraphQL Utils"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "graphql-w-persistent" = callPackage @@ -119928,6 +126211,8 @@ self: { libraryHaskellDepends = [ base containers json text ]; description = "GraphQL interface middleware for SQL databases"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "graphs" = callPackage @@ -119954,6 +126239,8 @@ self: { libraryHaskellDepends = [ base indexed ]; description = "Graph indexed monads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "graphtype" = callPackage @@ -119971,6 +126258,7 @@ self: { ]; description = "A simple tool to illustrate dependencies between Haskell types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "graphtype"; }) {}; @@ -120025,6 +126313,8 @@ self: { testToolDepends = [ markdown-unlit ]; description = "A declarative library for describing dependencies between data"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "graphviz" = callPackage @@ -120070,6 +126360,8 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Execute Graql queries on a Grakn graph"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "grasp" = callPackage @@ -120094,7 +126386,9 @@ self: { testHaskellDepends = [ base ]; description = "GRASP implementation for the AMMM project"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "grasp-exe"; + broken = true; }) {}; "gravatar" = callPackage @@ -120123,6 +126417,8 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Gray code encoder/decoder"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gray-extended" = callPackage @@ -120160,6 +126456,8 @@ self: { ]; description = "Support for graylog output"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "greencard" = callPackage @@ -120174,7 +126472,9 @@ self: { executableHaskellDepends = [ array base containers pretty ]; description = "GreenCard, a foreign function pre-processor for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "greencard"; + broken = true; }) {}; "greencard-lib" = callPackage @@ -120187,6 +126487,7 @@ self: { libraryHaskellDepends = [ array base containers greencard pretty ]; description = "A foreign function interface pre-processor library for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "greenclip" = callPackage @@ -120226,6 +126527,8 @@ self: { ]; description = "A scalable distributed logger with a high-precision global time axis"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gremlin-haskell" = callPackage @@ -120249,7 +126552,9 @@ self: { testHaskellDepends = [ aeson-qq base hspec lens lens-aeson mtl ]; description = "Graph database client for TinkerPop3 Gremlin Server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "gremlin-haskell-examples"; + broken = true; }) {}; "grenade" = callPackage @@ -120273,6 +126578,7 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion hmatrix ]; description = "Practical Deep Learning in Haskell"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "greplicate" = callPackage @@ -120289,6 +126595,8 @@ self: { ]; description = "Generalised replicate functions"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "greskell" = callPackage @@ -120311,6 +126619,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell binding for Gremlin graph query language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "greskell-core" = callPackage @@ -120333,6 +126642,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell binding for Gremlin graph query language - core data types and tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "greskell-websocket" = callPackage @@ -120356,6 +126667,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell client for Gremlin Server using WebSocket serializer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "grid" = callPackage @@ -120392,6 +126704,7 @@ self: { description = "Game engine for Prototyping on a Grid"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; }) {}; "gridbounds" = callPackage @@ -120404,6 +126717,7 @@ self: { testHaskellDepends = [ base earclipper gjk gridbox hspec ]; description = "Collision detection for GridBox"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "gridbox" = callPackage @@ -120433,6 +126747,8 @@ self: { ]; description = "GridFS (MongoDB file storage) implementation"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gridland" = callPackage @@ -120451,6 +126767,7 @@ self: { ]; description = "Grid-based multimedia engine"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "grids" = callPackage @@ -120473,6 +126790,8 @@ self: { vector ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gridtables" = callPackage @@ -120518,6 +126837,7 @@ self: { ]; description = "Symbolic evaluation as a library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "grisette-monad-coroutine" = callPackage @@ -120537,6 +126857,7 @@ self: { ]; description = "Support for monad-coroutine package with Grisette"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "grm" = callPackage @@ -120558,7 +126879,9 @@ self: { executableToolDepends = [ happy ]; description = "grm grammar converter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "grm"; + broken = true; }) {}; "groom" = callPackage @@ -120623,6 +126946,7 @@ self: { ]; description = "Command line utility to manage AWS ECS resources"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "groot"; }) {}; @@ -120638,6 +126962,7 @@ self: { executableHaskellDepends = [ base lens mtl ncurses ]; description = "A spoof on gloss for terminal animation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -120658,6 +126983,8 @@ self: { ]; description = "Type-safe datatype-database mapping library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "groundhog-converters" = callPackage @@ -120676,6 +127003,7 @@ self: { ]; description = "Extended Converter Library for groundhog embedded types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "groundhog-inspector" = callPackage @@ -120699,6 +127027,7 @@ self: { ]; description = "Type-safe datatype-database mapping library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "groundhog_inspector"; }) {}; @@ -120717,6 +127046,7 @@ self: { ]; description = "MySQL backend for the groundhog library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "groundhog-postgresql" = callPackage @@ -120735,6 +127065,7 @@ self: { ]; description = "PostgreSQL backend for the groundhog library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "groundhog-sqlite" = callPackage @@ -120752,6 +127083,7 @@ self: { ]; description = "Sqlite3 backend for the groundhog library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "groundhog-th" = callPackage @@ -120770,6 +127102,7 @@ self: { ]; description = "Type-safe datatype-database mapping library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "group-by-date" = callPackage @@ -120803,6 +127136,8 @@ self: { libraryHaskellDepends = [ base containers groups ]; description = "The theory of groups"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "group-with" = callPackage @@ -120819,6 +127154,8 @@ self: { ]; description = "Classify objects by key-generating function, like SQL GROUP BY"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "groupBy" = callPackage @@ -120851,6 +127188,8 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Grouped lists. Equal consecutive elements are grouped."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "groupoid" = callPackage @@ -120917,6 +127256,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "Mutable vector with efficient appends"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "growable-vector" = callPackage @@ -120935,6 +127276,8 @@ self: { testHaskellDepends = [ base contiguous vector ]; description = "A contiguous growable array type"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "growler" = callPackage @@ -120956,6 +127299,8 @@ self: { ]; description = "A revised version of the scotty library that attempts to be simpler and more performant"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "grpc-api-etcd" = callPackage @@ -120967,6 +127312,8 @@ self: { libraryHaskellDepends = [ base proto-lens proto-lens-runtime ]; description = "Generated messages and instances for etcd gRPC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "grpc-etcd-client" = callPackage @@ -120983,6 +127330,7 @@ self: { ]; description = "gRPC client for etcd"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "grpc-haskell" = callPackage @@ -121013,6 +127361,7 @@ self: { ]; description = "Haskell implementation of gRPC layered on shared C library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "grpc-haskell-core" = callPackage @@ -121038,6 +127387,7 @@ self: { ]; description = "Haskell implementation of gRPC layered on shared C library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {gpr = null; inherit (pkgs) grpc;}; "gruff" = callPackage @@ -121059,6 +127409,7 @@ self: { ]; description = "fractal explorer GUI using the ruff library"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "gruff"; }) {}; @@ -121078,6 +127429,7 @@ self: { ]; description = "Mandelbrot Set examples using ruff and gruff"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "gsasl" = callPackage @@ -121106,6 +127458,7 @@ self: { libraryHaskellDepends = [ base hierarchical-clustering ]; description = "Generic implementation of Gerstein/Sonnhammer/Chothia weighting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gscholar-rss" = callPackage @@ -121123,6 +127476,7 @@ self: { ]; description = "scrapes google scholar, provides RSS feed"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "gscholar-rss"; }) {}; @@ -121136,6 +127490,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Bindings the the GSL random number generation facilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gsl-random-fu" = callPackage @@ -121147,6 +127503,7 @@ self: { libraryHaskellDepends = [ base gsl-random random-fu ]; description = "Instances for using gsl-random with random-fu"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "gsmenu" = callPackage @@ -121164,6 +127521,7 @@ self: { ]; description = "A visual generic menu"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "gsmenu"; }) {}; @@ -121211,6 +127569,7 @@ self: { ]; description = "Generic implementation of Storable"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gstreamer" = callPackage @@ -121230,6 +127589,8 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the GStreamer open source multimedia framework"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {gst-plugins-base = null; gstreamer = null;}; "gt-tools" = callPackage @@ -121264,6 +127625,7 @@ self: { ]; description = "The General Transit Feed Specification format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gtfs-realtime" = callPackage @@ -121279,6 +127641,7 @@ self: { ]; description = "GTFS RealTime protobafs library (autogenerated from .proto file)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "gtk" = callPackage @@ -121312,6 +127675,8 @@ self: { ]; description = "A collection of auxiliary operations and widgets related to Gtk+"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gtk-jsinput" = callPackage @@ -121373,6 +127738,7 @@ self: { libraryPkgconfigDepends = [ gtk2 ]; description = "GTK+ Serialized event"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gtk2;}; "gtk-simple-list-view" = callPackage @@ -121453,6 +127819,8 @@ self: { libraryHaskellDepends = [ base containers gtk ]; description = "Convenient Gtk canvas with mouse and keyboard input"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gtk-traymanager" = callPackage @@ -121501,6 +127869,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: glade package"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gtk2hs-cast-glib" = callPackage @@ -121527,6 +127896,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gnomevfs package"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gtk2hs-cast-gtk" = callPackage @@ -121542,6 +127912,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtk package"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gtk2hs-cast-gtkglext" = callPackage @@ -121557,6 +127928,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtkglext package"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gtk2hs-cast-gtksourceview2" = callPackage @@ -121573,6 +127945,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtksourceview2 package"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "gtk2hs-cast-th" = callPackage @@ -121584,6 +127957,8 @@ self: { libraryHaskellDepends = [ base hint template-haskell ]; description = "A type class for cast functions of Gtk2hs: TH package"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gtk2hs-hello" = callPackage @@ -121597,7 +127972,9 @@ self: { executableHaskellDepends = [ base glib gtk3 transformers ]; description = "Gtk2Hs Hello World, an example package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "gtk2hs-hello"; + broken = true; }) {}; "gtk2hs-rpn" = callPackage @@ -121609,6 +127986,8 @@ self: { libraryHaskellDepends = [ base cairo glib gtk mtl ]; description = "Adds a module to gtk2hs allowing layouts to be defined using reverse polish notation"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gtk3" = callPackage @@ -121644,6 +128023,8 @@ self: { ]; description = "A collection of auxiliary operations and widgets related to Gtk"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gtk3-mac-integration" = callPackage @@ -121679,6 +128060,8 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the GTK+ OpenGL Extension"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) gtk2; inherit (pkgs.gnome2) gtkglext; inherit (pkgs) libGLU; inherit (pkgs.xorg) libICE; inherit (pkgs.xorg) libSM; inherit (pkgs.xorg) libXmu; @@ -121700,6 +128083,7 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the GtkImageView library"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gtkimageview;}; "gtkrsync" = callPackage @@ -121718,6 +128102,7 @@ self: { ]; description = "Gnome rsync progress display"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "gtksourceview2" = callPackage @@ -121737,6 +128122,8 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the GtkSourceView library"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) gtksourceview;}; "gtksourceview3" = callPackage @@ -121756,6 +128143,8 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the GtkSourceView library"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) gtksourceview3;}; "guarded-allocation" = callPackage @@ -121779,6 +128168,7 @@ self: { libraryHaskellDepends = [ base instant-generics ]; description = "Datatype-generic rewriting with preconditions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "guardian" = callPackage @@ -121811,7 +128201,9 @@ self: { testToolDepends = [ tasty-discover ]; description = "The border guardian for your package dependencies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "guardian"; + broken = true; }) {}; "guess-combinator" = callPackage @@ -121823,6 +128215,7 @@ self: { libraryHaskellDepends = [ base HList ]; description = "Generate simple combinators given their type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "guid" = callPackage @@ -121849,7 +128242,9 @@ self: { executableHaskellDepends = [ base cairo containers filepath gtk ]; description = "graphical untyped lambda calculus interactive interpreter"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "gulcii"; + broken = true; }) {}; "gutenberg-fibonaccis" = callPackage @@ -121893,7 +128288,9 @@ self: { executableHaskellDepends = [ base unix ]; description = "ghcWithPackages cmdline util"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "gw"; + broken = true; }) {}; "gyah-bin" = callPackage @@ -121907,7 +128304,9 @@ self: { executableHaskellDepends = [ base extra GiveYouAHead ]; description = "A binary version of GiveYouAHead"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "gyah"; + broken = true; }) {}; "gym-http-api" = callPackage @@ -121929,7 +128328,9 @@ self: { ]; description = "REST client to the gym-http-api project"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "h-booru" = callPackage @@ -121953,7 +128354,9 @@ self: { ]; description = "Haskell library for retrieving data from various booru image sites"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "h-booru"; + broken = true; }) {}; "h-gpgme" = callPackage @@ -121977,6 +128380,8 @@ self: { ]; description = "High Level Binding for GnuPG Made Easy (gpgme)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "h-raylib" = callPackage @@ -122022,7 +128427,9 @@ self: { ]; description = "Reversi game in haskell/blank-canvas"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "h-reversi"; + broken = true; }) {}; "h2048" = callPackage @@ -122049,6 +128456,8 @@ self: { ]; description = "An Implementation of Game 2048"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "h2c" = callPackage @@ -122060,6 +128469,8 @@ self: { libraryHaskellDepends = [ base bytestring mtl resourcet ]; description = "Bindings to Linux I2C with support for repeated-start transactions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hArduino" = callPackage @@ -122077,6 +128488,7 @@ self: { ]; description = "Control your Arduino board from Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hBDD" = callPackage @@ -122103,6 +128515,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "An FFI binding to CMU/Long's BDD library"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {bdd = null; mem = null;}; "hBDD-CUDD" = callPackage @@ -122118,6 +128532,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "An FFI binding to the CUDD library"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) cudd; epd = null; inherit (pkgs) mtr; inherit (pkgs) st; util = null;}; @@ -122150,6 +128566,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "interface to CSound API"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {csound64 = null; inherit (pkgs) libsndfile;}; "hDFA" = callPackage @@ -122161,6 +128579,8 @@ self: { libraryHaskellDepends = [ base containers directory process ]; description = "A simple library for representing and minimising DFAs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hF2" = callPackage @@ -122173,6 +128593,8 @@ self: { libraryHaskellDepends = [ base cereal vector ]; description = "F(2^e) math for cryptography"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hGelf" = callPackage @@ -122189,6 +128611,8 @@ self: { ]; description = "Haskell GELF library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hLLVM" = callPackage @@ -122232,6 +128656,8 @@ self: { ]; description = "Library to interact with the @Mollom anti-spam service"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hOff-display" = callPackage @@ -122246,6 +128672,7 @@ self: { executableHaskellDepends = [ base GLFW hOff-parser OpenGL parsec ]; description = "The tool to transform the OFF to other image format"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hOff-display-gl"; }) {}; @@ -122323,6 +128750,7 @@ self: { ]; description = "Protein Databank file format library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hPDB-examples" = callPackage @@ -122349,6 +128777,7 @@ self: { ]; description = "Examples for hPDB library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hPushover" = callPackage @@ -122364,6 +128793,8 @@ self: { ]; description = "Pushover.net API functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hR" = callPackage @@ -122375,6 +128806,8 @@ self: { libraryHaskellDepends = [ array base containers unix ]; description = "R bindings and interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hRESP" = callPackage @@ -122386,6 +128819,8 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring ]; description = "haskell implementation of RESP (REdis Serialization Protocol)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hS3" = callPackage @@ -122422,6 +128857,8 @@ self: { ]; description = "A Haskell library to scrape and crawl web-pages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hSimpleDB" = callPackage @@ -122438,6 +128875,8 @@ self: { ]; description = "Interface to Amazon's SimpleDB service"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hTalos" = callPackage @@ -122451,6 +128890,8 @@ self: { testHaskellDepends = [ base ]; description = "Parser, print and manipulate structures in PDB file format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hTensor" = callPackage @@ -122462,6 +128903,8 @@ self: { libraryHaskellDepends = [ base containers hmatrix random ]; description = "Multidimensional arrays and simple tensor computations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hVOIDP" = callPackage @@ -122477,7 +128920,9 @@ self: { executableSystemDepends = [ blas liblapack ]; description = "Optimal variable selection in chain graphical model"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hVOIDP"; + broken = true; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hXmixer" = callPackage @@ -122512,6 +128957,8 @@ self: { ]; description = "Haar wavelet transforms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "habit" = callPackage @@ -122536,6 +128983,7 @@ self: { executableHaskellDepends = [ base text ]; description = "Haskell message bot framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hello-bot"; }) {}; @@ -122572,6 +129020,7 @@ self: { ]; description = "A minimalist static blog generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hablo"; }) {}; @@ -122595,6 +129044,7 @@ self: { executableHaskellDepends = [ base optparse-applicative text ]; description = "A blog system"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hablog"; }) {}; @@ -122638,6 +129088,7 @@ self: { ]; description = "Hack contrib"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hack-contrib-press" = callPackage @@ -122654,6 +129105,7 @@ self: { ]; description = "Hack helper that renders Press templates"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "hack-frontend-happstack" = callPackage @@ -122671,6 +129123,8 @@ self: { ]; description = "hack-frontend-happstack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hack-frontend-monadcgi" = callPackage @@ -122693,6 +129147,8 @@ self: { libraryHaskellDepends = [ base bytestring hack ]; description = "Hack handler using CGI protocol. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hack-handler-epoll" = callPackage @@ -122711,6 +129167,7 @@ self: { ]; description = "hack handler implementation using epoll"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "hack-handler-evhttp" = callPackage @@ -122729,6 +129186,7 @@ self: { librarySystemDepends = [ event ]; description = "Hack EvHTTP (libevent) Handler"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {event = null;}; "hack-handler-fastcgi" = callPackage @@ -122741,6 +129199,7 @@ self: { librarySystemDepends = [ fcgi ]; description = "Hack handler direct to fastcgi (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) fcgi;}; "hack-handler-happstack" = callPackage @@ -122758,6 +129217,8 @@ self: { ]; description = "Hack Happstack server handler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hack-handler-hyena" = callPackage @@ -122774,6 +129235,7 @@ self: { ]; description = "Hyena hack handler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hack-handler-kibro" = callPackage @@ -122788,6 +129250,8 @@ self: { ]; description = "Hack Kibro handler"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hack-handler-simpleserver" = callPackage @@ -122803,6 +129267,7 @@ self: { ]; description = "A simplistic HTTP server handler for Hack. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hack-middleware-cleanpath" = callPackage @@ -122816,6 +129281,7 @@ self: { ]; description = "Applies some basic redirect rules to get cleaner paths. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hack-middleware-clientsession" = callPackage @@ -122831,6 +129297,7 @@ self: { ]; description = "Middleware for easily keeping session data in client cookies. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hack-middleware-gzip" = callPackage @@ -122857,6 +129324,7 @@ self: { ]; description = "Automatic wrapping of JSON responses to convert into JSONP. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hack2" = callPackage @@ -122884,6 +129352,8 @@ self: { ]; description = "Hack2 contrib"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hack2-contrib-extra" = callPackage @@ -122902,6 +129372,7 @@ self: { ]; description = "Hack2 contrib extra"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hack2-handler-happstack-server" = callPackage @@ -122919,6 +129390,7 @@ self: { ]; description = "Hack2 Happstack server handler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hack2-handler-mongrel2-http" = callPackage @@ -122939,6 +129411,7 @@ self: { ]; description = "Hack2 Mongrel2 HTTP handler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hack2-handler-snap-server" = callPackage @@ -122957,6 +129430,7 @@ self: { ]; description = "Hack2 Snap server handler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hack2-handler-warp" = callPackage @@ -122973,6 +129447,8 @@ self: { ]; description = "Hack2 warp handler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hack2-interface-wai" = callPackage @@ -123007,6 +129483,8 @@ self: { testHaskellDepends = [ base http-client-tls servant-client ]; description = "An API binding to Hackage API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hackage-cli" = callPackage @@ -123040,6 +129518,7 @@ self: { doHaddock = false; description = "CLI tool for Hackage"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "hackage-cli"; }) {}; @@ -123081,7 +129560,9 @@ self: { ]; description = "Compare the public API of different versions of a Hackage library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hackage-diff"; + broken = true; }) {}; "hackage-mirror" = callPackage @@ -123111,7 +129592,9 @@ self: { ]; description = "Simple mirroring utility for Hackage"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hackage-mirror"; + broken = true; }) {}; "hackage-plot" = callPackage @@ -123144,7 +129627,9 @@ self: { executableHaskellDepends = [ base Cabal containers hackage-db ]; description = "Process 00-index.tar.gz from Hackage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hackage-find-contribution"; + broken = true; }) {}; "hackage-proxy" = callPackage @@ -123168,7 +129653,9 @@ self: { ]; description = "Provide a proxy for Hackage which modifies responses in some way. (deprecated)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hackage-proxy"; + broken = true; }) {}; "hackage-repo-tool" = callPackage @@ -123277,6 +129764,8 @@ self: { ]; description = "The Hackage web server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libxcrypt;}; "hackage-sparks" = callPackage @@ -123314,7 +129803,9 @@ self: { ]; description = "Check for differences between working directory and hackage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hackage-whatsnew"; + broken = true; }) {}; "hackage2hwn" = callPackage @@ -123328,7 +129819,9 @@ self: { executableHaskellDepends = [ base download feed tagsoup ]; description = "Convert Hackage RSS feeds to wiki format for publishing on Haskell.org"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hackage2hwn"; + broken = true; }) {}; "hackage2twitter" = callPackage @@ -123342,6 +129835,7 @@ self: { executableHaskellDepends = [ base feed feed2twitter ]; description = "Send new Hackage releases to Twitter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hackage2twitter"; }) {}; @@ -123362,7 +129856,9 @@ self: { ]; description = "Hackage testing tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hackager"; + broken = true; }) {}; "hackernews" = callPackage @@ -123387,7 +129883,9 @@ self: { ]; description = "API for Hacker News"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hackernews-example"; + broken = true; }) {}; "hackertyper" = callPackage @@ -123425,6 +129923,7 @@ self: { executableHaskellDepends = [ base optparse-applicative text ]; description = "Generate useful files for Haskell projects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hackmanager"; }) {}; @@ -123487,6 +129986,8 @@ self: { ]; description = "Lightweight Erlang-style actors for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hactors" = callPackage @@ -123498,6 +129999,8 @@ self: { libraryHaskellDepends = [ base stm ]; description = "Practical actors for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haddock_2_23_1" = callPackage @@ -123532,6 +130035,7 @@ self: { preCheck = "unset GHC_PACKAGE_PATH"; description = "A documentation-generation tool for Haskell libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haddock"; }) {}; @@ -123558,6 +130062,7 @@ self: { description = "A documentation-generation tool for Haskell libraries"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haddock-api" = callPackage @@ -123584,6 +130089,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "A documentation-generation tool for Haskell libraries"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haddock-cheatsheet" = callPackage @@ -123613,7 +130120,9 @@ self: { ]; description = "A documentation-generation tool for Haskell libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haddock"; + broken = true; }) {}; "haddock-library_1_7_0" = callPackage @@ -123671,6 +130180,8 @@ self: { ]; description = "Test utilities for Haddock"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haddocset" = callPackage @@ -123692,6 +130203,7 @@ self: { ]; description = "Generate docset of Dash by Haddock haskell documentation tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haddocset"; }) {}; @@ -123747,6 +130259,8 @@ self: { testHaskellDepends = [ base bytestring filepath text vector ]; description = "Read/write file formats commonly used by Hadoop"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) snappy;}; "hadoop-rpc" = callPackage @@ -123767,6 +130281,8 @@ self: { testHaskellDepends = [ base protobuf tasty tasty-hunit vector ]; description = "Use the Hadoop RPC interface from Haskell"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hadoop-streaming" = callPackage @@ -123782,6 +130298,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "A simple Hadoop streaming library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hadoop-tools" = callPackage @@ -123808,6 +130326,7 @@ self: { ]; description = "Fast command line tools for working with Hadoop"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "hh"; }) {}; @@ -123840,6 +130359,8 @@ self: { testHaskellDepends = [ base intervals mtl QuickCheck ]; description = "Affine arithmetic library for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haggis" = callPackage @@ -123866,6 +130387,7 @@ self: { ]; description = "A static site generator with blogging/comments support"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "haggis"; }) {}; @@ -123889,6 +130411,8 @@ self: { ]; description = "A graph library offering mutable, immutable, and inductive graphs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haha" = callPackage @@ -123921,7 +130445,9 @@ self: { executableHaskellDepends = [ base time ]; description = "Analytic Hierarchy Process"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hahp-example"; + broken = true; }) {}; "haiji" = callPackage @@ -123944,6 +130470,8 @@ self: { ]; description = "A typed template engine, subset of jinja2"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hail" = callPackage @@ -123964,7 +130492,9 @@ self: { ]; description = "A service for pull-based continuous deployment based on hydra"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "hail"; + broken = true; }) {}; "hailgun" = callPackage @@ -123983,6 +130513,8 @@ self: { ]; description = "Mailgun REST api interface for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hailgun-send" = callPackage @@ -123998,6 +130530,7 @@ self: { ]; description = "A program to send emails throught the Mailgun api"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hailgun-send"; }) {}; @@ -124014,6 +130547,7 @@ self: { ]; description = "Easy-to-use wrapper for the hailgun package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hails" = callPackage @@ -124076,6 +130610,7 @@ self: { ]; description = "Dynamic launcher of Hails applications"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hails"; }) {}; @@ -124105,7 +130640,9 @@ self: { ]; description = "A JSON REST API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hairy"; + broken = true; }) {}; "hakaru" = callPackage @@ -124135,6 +130672,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ghc-prim ]; description = "A probabilistic programming embedded DSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hake" = callPackage @@ -124163,6 +130702,8 @@ self: { libraryHaskellDepends = [ base HTTP network ]; description = "Akismet spam protection library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hakka" = callPackage @@ -124177,7 +130718,9 @@ self: { executableHaskellDepends = [ base ]; description = "Minimal akka-inspired actor library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hakka-example"; + broken = true; }) {}; "hako" = callPackage @@ -124194,6 +130737,8 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "A mako-like quasi-quoter template library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hakyll" = callPackage @@ -124250,6 +130795,8 @@ self: { ]; description = "A package allowing to write Hakyll blog posts in Rmd"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hakyll-agda" = callPackage @@ -124266,6 +130813,8 @@ self: { ]; description = "Wrapper to integrate literate Agda files with Hakyll"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hakyll-alectryon" = callPackage @@ -124293,6 +130842,8 @@ self: { libraryHaskellDepends = [ base blaze-html blaze-markup hakyll ]; description = "Blaze templates for Hakyll"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hakyll-contrib" = callPackage @@ -124308,7 +130859,9 @@ self: { executableHaskellDepends = [ base directory filepath hakyll ]; description = "Extra modules for the hakyll website compiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hakyll-contrib"; + broken = true; }) {}; "hakyll-contrib-csv" = callPackage @@ -124325,6 +130878,8 @@ self: { testHaskellDepends = [ base blaze-html bytestring cassava hspec ]; description = "Generate Html tables from Csv files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hakyll-contrib-elm" = callPackage @@ -124343,7 +130898,9 @@ self: { executableHaskellDepends = [ base hakyll ]; description = "Compile Elm code for inclusion in Hakyll static site"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hakyll-contrib-elm-example"; + broken = true; }) {}; "hakyll-contrib-hyphenation" = callPackage @@ -124379,7 +130936,9 @@ self: { ]; description = "A Hakyll library for internationalization"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "haki18nll"; + broken = true; }) {}; "hakyll-contrib-links" = callPackage @@ -124399,6 +130958,8 @@ self: { ]; description = "A hakyll library that helps maintain a separate links database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hakyll-convert" = callPackage @@ -124450,7 +131011,9 @@ self: { executableHaskellDepends = [ base dhall hakyll ]; description = "Dhall compiler for Hakyll"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hakyll-dhall-test-app"; + broken = true; }) {}; "hakyll-dir-list" = callPackage @@ -124465,6 +131028,8 @@ self: { ]; description = "Allow Hakyll to create hierarchical menues from directories"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hakyll-elm" = callPackage @@ -124479,6 +131044,7 @@ self: { ]; description = "Hakyll wrapper for the Elm compiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hakyll-favicon" = callPackage @@ -124540,6 +131106,7 @@ self: { libraryHaskellDepends = [ base hakyll ogmarkup ]; description = "Integrate ogmarkup document with Hakyll"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hakyll-process" = callPackage @@ -124577,6 +131144,8 @@ self: { libraryHaskellDepends = [ base containers hakyll ]; description = "Adds series functionality to hakyll"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hakyll-shakespeare" = callPackage @@ -124615,6 +131184,8 @@ self: { ]; description = "A shortcode extension module for Hakyll"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hakyll-shortcut-links" = callPackage @@ -124631,6 +131202,7 @@ self: { testHaskellDepends = [ base hspec mtl pandoc text ]; description = "Use shortcut-links in markdown file for Hakyll"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "hakyll-typescript" = callPackage @@ -124647,6 +131219,8 @@ self: { testHaskellDepends = [ base directory hakyll tasty tasty-hunit ]; description = "Typescript and javascript hakyll compilers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hal" = callPackage @@ -124674,6 +131248,8 @@ self: { ]; description = "A runtime environment for Haskell applications running on AWS Lambda"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "halberd" = callPackage @@ -124702,6 +131278,7 @@ self: { ]; description = "A tool to generate missing import statements for Haskell modules"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "halberd"; }) {}; @@ -124758,6 +131335,8 @@ self: { ]; description = "The HAskelL File System (\"halfs\" -- intended for use on the HaLVM)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "halfsplit" = callPackage @@ -124783,6 +131362,7 @@ self: { description = "Integration between Halide and JuicyPixels"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; + hydraPlatforms = lib.platforms.none; }) {}; "halide-arrayfire" = callPackage @@ -124795,6 +131375,7 @@ self: { testHaskellDepends = [ arrayfire base halide-haskell hspec ]; description = "Integration between Halide and ArrayFire"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "halide-haskell" = callPackage @@ -124820,6 +131401,8 @@ self: { description = "Haskell bindings to Halide"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; + hydraPlatforms = lib.platforms.none; + broken = true; }) {Halide = null;}; "halipeto" = callPackage @@ -124833,6 +131416,8 @@ self: { libraryHaskellDepends = [ base directory HaXml pandoc ]; description = "Haskell Static Web Page Generator"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "halive" = callPackage @@ -124862,7 +131447,9 @@ self: { ]; description = "A live recompiler"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "halive"; + broken = true; }) {}; "hall-symbols" = callPackage @@ -124879,6 +131466,7 @@ self: { ]; description = "Symmetry operations generater of Hall Symbols"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "halma" = callPackage @@ -124899,6 +131487,8 @@ self: { ]; description = "Library implementing Halma rules"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "halma-gui" = callPackage @@ -124917,6 +131507,7 @@ self: { ]; description = "GTK application for playing Halma"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "halma-gui"; }) {}; @@ -124942,6 +131533,7 @@ self: { ]; description = "Telegram bot for playing Halma"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "halma-telegram-bot"; }) {}; @@ -124971,6 +131563,8 @@ self: { testHaskellDepends = [ base hedgehog lens ]; description = "Split or combine data structures to and from halves, quarters, eighths"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "halvm-web" = callPackage @@ -125018,6 +131612,7 @@ self: { ]; testHaskellDepends = [ base bytestring ]; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hamlog"; }) {}; @@ -125055,6 +131650,7 @@ self: { ]; description = "Physics on generalized coordinate systems using Hamiltonian Mechanics and AD"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hamilton-examples"; }) {}; @@ -125086,7 +131682,9 @@ self: { ]; description = "Haskell macro preprocessor"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "hampp"; + broken = true; }) {}; "hamsql" = callPackage @@ -125110,7 +131708,9 @@ self: { testHaskellDepends = [ base ]; description = "Interpreter for SQL-structure definitions in YAML (YamSql)"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hamsql"; + broken = true; }) {}; "hamtmap" = callPackage @@ -125124,6 +131724,8 @@ self: { libraryHaskellDepends = [ array base deepseq hashable ]; description = "A purely functional and persistent hash map"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hamtsolo" = callPackage @@ -125165,6 +131767,7 @@ self: { executableHaskellDepends = [ filepath ]; description = "Library to handle abstract music"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "han2zen" = callPackage @@ -125190,6 +131793,8 @@ self: { libraryHaskellDepends = [ array base containers random tf-random ]; description = "Hanabi card game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "handa-data" = callPackage @@ -125230,7 +131835,9 @@ self: { ]; description = "Library and command-line utility for accessing Google services and APIs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hgdata"; + broken = true; }) {}; "handa-geodata" = callPackage @@ -125277,6 +131884,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "HandleLike class"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "handsy" = callPackage @@ -125297,6 +131906,8 @@ self: { ]; description = "A DSL to describe common shell operations and interpeters for running them locally and remotely"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "handwriting" = callPackage @@ -125357,7 +131968,9 @@ self: { ]; description = "Simple Continuous Integration/Deployment System"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hannahci"; + broken = true; }) {}; "hans" = callPackage @@ -125381,6 +131994,8 @@ self: { ]; description = "Network Stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hans-pcap" = callPackage @@ -125392,6 +132007,7 @@ self: { libraryHaskellDepends = [ base bytestring hans pcap ]; description = "Driver for real ethernet devices for HaNS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hans-pfq" = callPackage @@ -125436,7 +132052,9 @@ self: { ]; description = "Korean spell checker"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hanspell"; + broken = true; }) {}; "haphviz" = callPackage @@ -125455,6 +132073,8 @@ self: { ]; description = "Graphviz code generation with Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hapistrano" = callPackage @@ -125483,7 +132103,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "A deployment library for Haskell applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hap"; + broken = true; }) {}; "happindicator" = callPackage @@ -125502,6 +132124,8 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the appindicator library"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libappindicator-gtk2;}; "happindicator3" = callPackage @@ -125516,6 +132140,8 @@ self: { libraryPkgconfigDepends = [ libappindicator-gtk3 ]; description = "Binding to the appindicator library"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libappindicator-gtk3;}; "happlets" = callPackage @@ -125533,6 +132159,8 @@ self: { ]; description = "\"Haskell Applets\" provides an event handler and a canvas for building simple GUI apps"; license = "AGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "happlets-lib-gtk" = callPackage @@ -125554,6 +132182,7 @@ self: { ]; description = "The \"Haskell Applets\" Gtk+ ver. 2 back-end for \"happlets\"."; license = "AGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "happraise" = callPackage @@ -125567,7 +132196,9 @@ self: { executableHaskellDepends = [ base directory filepath ]; description = "A small program for counting the comments in haskell source"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "happraise"; + broken = true; }) {}; "happs-hsp" = callPackage @@ -125581,6 +132212,7 @@ self: { base bytestring HAppS-Server hsp mtl plugins ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happs-hsp-template" = callPackage @@ -125597,6 +132229,7 @@ self: { ]; description = "Utilities for using HSP templates in HAppS applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happs-tutorial" = callPackage @@ -125621,6 +132254,7 @@ self: { ]; description = "A Happstack Tutorial that is its own web 2.0-type demo."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "happs-tutorial"; }) {}; @@ -125636,6 +132270,8 @@ self: { doHaddock = false; description = "The haskell application server stack + code generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "happstack-auth" = callPackage @@ -125654,6 +132290,7 @@ self: { ]; description = "A Happstack Authentication Suite"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happstack-authenticate" = callPackage @@ -125684,6 +132321,7 @@ self: { ]; description = "Happstack Authentication Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happstack-clientsession" = callPackage @@ -125700,6 +132338,8 @@ self: { ]; description = "client-side session data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "happstack-contrib" = callPackage @@ -125720,6 +132360,7 @@ self: { ]; description = "Web related tools and services"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happstack-data" = callPackage @@ -125741,6 +132382,7 @@ self: { ]; description = "Happstack data manipulation libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happstack-dlg" = callPackage @@ -125758,6 +132400,7 @@ self: { ]; description = "Cross-request user interactions for Happstack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happstack-facebook" = callPackage @@ -125783,6 +132426,7 @@ self: { ]; description = "A package for building Facebook applications using Happstack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happstack-fastcgi" = callPackage @@ -125814,6 +132458,7 @@ self: { ]; description = "Support for using Fay with Happstack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happstack-fay-ajax" = callPackage @@ -125826,6 +132471,7 @@ self: { libraryHaskellDepends = [ fay-base fay-jquery ]; description = "Support for using Fay with Happstack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happstack-foundation" = callPackage @@ -125846,6 +132492,7 @@ self: { ]; description = "Glue code for using Happstack with acid-state, web-routes, reform, and HSP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happstack-hamlet" = callPackage @@ -125857,6 +132504,8 @@ self: { libraryHaskellDepends = [ base happstack-server shakespeare text ]; description = "Support for Hamlet HTML templates in Happstack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "happstack-heist" = callPackage @@ -125873,6 +132522,7 @@ self: { ]; description = "Support for using Heist templates in Happstack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happstack-helpers" = callPackage @@ -125896,6 +132546,7 @@ self: { ]; description = "Convenience functions for Happstack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happstack-hsp" = callPackage @@ -125927,6 +132578,8 @@ self: { ]; description = "Support for using HStringTemplate in Happstack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "happstack-ixset" = callPackage @@ -125945,6 +132598,7 @@ self: { ]; description = "Efficient relational queries on Haskell sets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happstack-jmacro" = callPackage @@ -125975,6 +132629,8 @@ self: { ]; description = "Happstack minus the useless stuff"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "happstack-monad-peel" = callPackage @@ -125990,6 +132646,8 @@ self: { ]; description = "monad-peel instances for Happstack types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "happstack-plugins" = callPackage @@ -126005,6 +132663,7 @@ self: { ]; description = "The haskell application server stack + reload"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happstack-server" = callPackage @@ -126067,6 +132726,8 @@ self: { ]; description = "Extend happstack-server with native HTTPS support (TLS/SSL)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "happstack-state" = callPackage @@ -126087,6 +132748,7 @@ self: { ]; description = "Event-based distributed state"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happstack-static-routing" = callPackage @@ -126102,6 +132764,7 @@ self: { ]; description = "Support for static URL routing with overlap detection for Happstack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "happstack-util" = callPackage @@ -126125,6 +132788,8 @@ self: { ]; description = "Web framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "happstack-yui" = callPackage @@ -126146,6 +132811,8 @@ self: { ]; description = "Utilities for using YUI3 with Happstack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "happy_1_19_12" = callPackage @@ -126242,6 +132909,8 @@ self: { ]; description = "Acceptance test framework for web applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "happybara-webkit" = callPackage @@ -126261,6 +132930,7 @@ self: { ]; description = "WebKit Happybara driver"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "happybara-webkit-server" = callPackage @@ -126272,6 +132942,8 @@ self: { libraryHaskellDepends = [ base directory filepath process ]; description = "WebKit Server binary for Happybara (taken from capybara-webkit)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hapstone" = callPackage @@ -126290,6 +132962,8 @@ self: { ]; description = "Capstone bindings for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) capstone;}; "haquery" = callPackage @@ -126305,6 +132979,8 @@ self: { ]; description = "jQuery for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haquil" = callPackage @@ -126326,6 +133002,7 @@ self: { ]; description = "A Haskell implementation of the Quil instruction set for quantum computing"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "har" = callPackage @@ -126358,6 +133035,8 @@ self: { executableSystemDepends = [ openssl sqlite ]; description = "Networked content addressed backup and restore software"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) openssl; inherit (pkgs) sqlite;}; "hardware-edsl" = callPackage @@ -126375,6 +133054,7 @@ self: { ]; description = "Deep embedding of hardware descriptions with code generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "harfbuzz-pure" = callPackage @@ -126412,6 +133092,8 @@ self: { testHaskellDepends = [ base ]; description = "Haskell program configuration using higher kinded data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hark" = callPackage @@ -126430,6 +133112,7 @@ self: { ]; description = "A Gentoo package query tool"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hark"; }) {}; @@ -126456,6 +133139,7 @@ self: { ]; description = "A web service specification compiler that generates implementation and tests"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "harmony"; }) {}; @@ -126473,6 +133157,8 @@ self: { libraryPkgconfigDepends = [ groonga ]; description = "Low level bindings for Groonga"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) groonga;}; "haroonga-httpd" = callPackage @@ -126491,6 +133177,7 @@ self: { ]; description = "Yet another Groonga http server"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; mainProgram = "haroonga-httpd"; }) {}; @@ -126519,6 +133206,8 @@ self: { ]; description = "Runtime code generation for x86 machine code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "harvest-api" = callPackage @@ -126539,6 +133228,8 @@ self: { ]; description = "Bindings for Harvest API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "has" = callPackage @@ -126552,6 +133243,8 @@ self: { libraryHaskellDepends = [ base QuickCheck ]; description = "Entity based records"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "has-th" = callPackage @@ -126563,6 +133256,7 @@ self: { libraryHaskellDepends = [ base has template-haskell ]; description = "Template Haskell function for Has records"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "has-transformers" = callPackage @@ -126631,7 +133325,9 @@ self: { testHaskellDepends = [ base doctest ]; description = "Extras for hasbolt library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "hascal" = callPackage @@ -126674,7 +133370,9 @@ self: { ]; description = "Decompress SAPCAR archives"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hascar"; + broken = true; }) {}; "hascard" = callPackage @@ -126710,7 +133408,9 @@ self: { ]; description = "A TUI for reviewing notes using 'flashcards' written with markdown-like syntax"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hascard"; + broken = true; }) {}; "hascas" = callPackage @@ -126732,6 +133432,8 @@ self: { ]; description = "Cassandra driver for haskell"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hascat" = callPackage @@ -126750,6 +133452,7 @@ self: { ]; description = "Hascat Web Server"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "hascat"; }) {}; @@ -126768,6 +133471,7 @@ self: { ]; description = "Hascat Package"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "hascat-setup" = callPackage @@ -126789,6 +133493,7 @@ self: { doHaddock = false; description = "Hascat Installation helper"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "hascat-setup"; }) {}; @@ -126806,6 +133511,7 @@ self: { ]; description = "Hascat System Package"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "hash" = callPackage @@ -126824,6 +133530,8 @@ self: { testHaskellDepends = [ base directory doctest filepath ]; description = "Hashing tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hash-addressed" = callPackage @@ -126956,6 +133664,8 @@ self: { testHaskellDepends = [ base directory doctest filepath ]; description = "Higher-rank Hashable"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hashable-generics" = callPackage @@ -126974,6 +133684,8 @@ self: { benchmarkHaskellDepends = [ base criterion ghc-prim hashable ]; description = "Automatically generates Hashable instances with GHC.Generics."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hashable-orphans" = callPackage @@ -127015,6 +133727,8 @@ self: { ]; description = "Principled, portable & extensible hashing of data and types, including an implementation of the FNV-1a and SipHash algorithms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hashed-storage" = callPackage @@ -127033,6 +133747,8 @@ self: { ]; description = "Hashed file storage support code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hasherize" = callPackage @@ -127058,6 +133774,7 @@ self: { ]; description = "Hash digests for files and directories"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "hasherize"; }) {}; @@ -127092,6 +133809,7 @@ self: { libraryHaskellDepends = [ base containers simple-money ]; description = "A library for working with HashFlare.io contracts and hashrates"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "hashids" = callPackage @@ -127192,6 +133910,8 @@ self: { ]; description = "Efficient consistent hashing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hashtable-benchmark" = callPackage @@ -127253,6 +133973,8 @@ self: { ]; description = "Extensions for a \"hashtables\" library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hasim" = callPackage @@ -127264,6 +133986,8 @@ self: { libraryHaskellDepends = [ base containers mtl ]; description = "Process-Based Discrete Event Simulation library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hask" = callPackage @@ -127281,6 +134005,8 @@ self: { ]; description = "Categories"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hask-home" = callPackage @@ -127299,6 +134025,7 @@ self: { ]; description = "Generate homepages for cabal packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskades" = callPackage @@ -127316,7 +134043,9 @@ self: { ]; description = "Utility to generate bindings for BlackBerry Cascades"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "haskades"; + broken = true; }) {}; "haskakafka" = callPackage @@ -127361,6 +134090,7 @@ self: { ]; description = "A breakout game written in Yampa using SDL"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "haskanoid"; }) {}; @@ -127379,7 +134109,9 @@ self: { ]; description = "A dialect of haskell with order of execution based on dependency resolution"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "haskarrowPrecompiler"; + broken = true; }) {}; "haskbot-core" = callPackage @@ -127400,6 +134132,8 @@ self: { ]; description = "Easily-extensible chatbot for Slack messaging service"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskdeep" = callPackage @@ -127424,6 +134158,7 @@ self: { ]; description = "Computes and audits file hashes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haskdeep"; }) {}; @@ -127462,6 +134197,7 @@ self: { ]; description = "A small scheme interpreter"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "haskeem"; }) {}; @@ -127500,6 +134236,8 @@ self: { libraryHaskellDepends = [ base haskeline mtl ]; description = "Class interface for working with Haskeline"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskeline-repl" = callPackage @@ -127523,6 +134261,8 @@ self: { libraryHaskellDepends = [ base containers mtl protolude text ]; description = "Write Emacs module in Haskell, using Emacs 25's Dynamic Module feature"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-abci" = callPackage @@ -127548,6 +134288,7 @@ self: { ]; description = "Haskell Application BlockChain Interface (ABCI) Server Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haskell-abci-counter"; }) {}; @@ -127565,6 +134306,7 @@ self: { ]; description = "Remote Management Platform for Haskell Applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-admin-core" = callPackage @@ -127586,6 +134328,8 @@ self: { ]; description = "Core Modules of Haskell Admin"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-admin-health" = callPackage @@ -127605,6 +134349,7 @@ self: { ]; description = "Application Health Component for Haskell Admin"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-admin-managed-functions" = callPackage @@ -127626,6 +134371,7 @@ self: { ]; description = "Managed Functions integration for Haskell Admin"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-aliyun" = callPackage @@ -127648,6 +134394,7 @@ self: { ]; description = "haskell client of aliyun service"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-awk" = callPackage @@ -127681,7 +134428,9 @@ self: { ]; description = "Transform text from the command-line using Haskell expressions"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "hawk"; + broken = true; }) {}; "haskell-bcrypt" = callPackage @@ -127694,6 +134443,8 @@ self: { testHaskellDepends = [ base bytestring QuickCheck random ]; description = "A bcrypt implementation for haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-bitmex-client" = callPackage @@ -127720,6 +134471,7 @@ self: { ]; description = "Complete BitMEX Client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -127748,6 +134500,8 @@ self: { ]; description = "Auto-generated bitmex API Client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-brainfuck" = callPackage @@ -127767,7 +134521,9 @@ self: { ]; description = "BrainFuck interpreter"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "brainfuck"; + broken = true; }) {}; "haskell-ci" = callPackage @@ -127826,7 +134582,9 @@ self: { executableHaskellDepends = [ base directory process ]; description = "Library for parallel programming in the Intel Concurrent Collections paradigm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haskell-cnc-runTests"; + broken = true; }) {}; "haskell-coffee" = callPackage @@ -127859,7 +134617,9 @@ self: { ]; description = "compress files"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hs-compress"; + broken = true; }) {}; "haskell-conll" = callPackage @@ -127875,6 +134635,8 @@ self: { ]; description = "Core Types for NLP"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-course-preludes" = callPackage @@ -127886,6 +134648,8 @@ self: { libraryHaskellDepends = [ base deepseq ]; description = "Small modules for a Haskell course in which Haskell is taught by implementing Prelude functionality"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-dap" = callPackage @@ -127949,6 +134713,8 @@ self: { testHaskellDepends = [ base ]; description = "Client library for the Disque datastore"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-docs" = callPackage @@ -127971,6 +134737,7 @@ self: { testHaskellDepends = [ base ]; description = "A program to find and display the docs and type of a name"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haskell-docs"; }) {}; @@ -128023,6 +134790,7 @@ self: { testHaskellDepends = [ base eigen vector ]; description = "Some utility functions for haskell-eigen library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-exp-parser" = callPackage @@ -128075,7 +134843,9 @@ self: { ]; description = "Haskell source code formatter"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "haskell-formatter"; + broken = true; }) {}; "haskell-ftp" = callPackage @@ -128102,6 +134872,7 @@ self: { ]; description = "A Haskell ftp server with configurable backend"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "simple-ftp-server"; }) {}; @@ -128119,6 +134890,8 @@ self: { testHaskellDepends = [ base directory doctest filepath ]; description = "Typesafe generation of haskell source code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-gettext" = callPackage @@ -128230,6 +135003,8 @@ self: { testHaskellDepends = [ base template-haskell transformers ]; description = "Infer haskell code by given type"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-igraph" = callPackage @@ -128252,6 +135027,8 @@ self: { ]; description = "Bindings to the igraph C library (v0.8.0)."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-import-graph" = callPackage @@ -128270,7 +135047,9 @@ self: { executableHaskellDepends = [ base ]; description = "create haskell import graph for graphviz"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "haskell-import-graph"; + broken = true; }) {}; "haskell-in-space" = callPackage @@ -128284,6 +135063,8 @@ self: { executableHaskellDepends = [ base HGL random ]; description = "'Asteroids' arcade games"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-kubernetes" = callPackage @@ -128303,6 +135084,8 @@ self: { ]; description = "Haskell bindings to the Kubernetes API (via swagger-codegen)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-language-server" = callPackage @@ -128421,6 +135204,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell library for the Microsoft Language Server Protocol"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-lsp-client" = callPackage @@ -128441,6 +135225,7 @@ self: { ]; description = "A haskell package to build your own Language Server client"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "example-client"; }) {}; @@ -128461,6 +135246,8 @@ self: { ]; description = "Haskell library for the Microsoft Language Server Protocol, data types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-menu" = callPackage @@ -128491,7 +135278,9 @@ self: { testHaskellDepends = [ base MonadRandom ]; description = "Machine learning in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "iris"; + broken = true; }) {}; "haskell-modbus" = callPackage @@ -128515,6 +135304,8 @@ self: { libraryHaskellDepends = [ base ghc-prim integer-gmp ]; description = "Correctly-rounded arbitrary-precision floating-point arithmetic"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-mpi" = callPackage @@ -128557,6 +135348,8 @@ self: { ]; description = "Name resolution library for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-neo4j-client" = callPackage @@ -128588,6 +135381,8 @@ self: { ]; description = "A Haskell neo4j client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-openflow" = callPackage @@ -128602,6 +135397,8 @@ self: { testHaskellDepends = [ base ]; description = "OpenFlow protocol in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-overridez" = callPackage @@ -128623,7 +135420,9 @@ self: { ]; description = "Manage nix overrides for haskell packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haskell-overridez"; + broken = true; }) {}; "haskell-packages" = callPackage @@ -128642,6 +135441,8 @@ self: { ]; description = "Haskell suite library for package management and integration with Cabal"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-pdf-presenter" = callPackage @@ -128661,6 +135462,7 @@ self: { ]; description = "Tool for presenting PDF-based presentations"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hpdfp"; }) {}; @@ -128690,6 +135492,7 @@ self: { executableToolDepends = [ alex happy ]; description = "A test system for the Haskell Platform environment"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haskell-platform-test"; }) {}; @@ -128712,7 +135515,9 @@ self: { testHaskellDepends = [ base ]; description = "A terminal music player based on afplay"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haskell-player"; + broken = true; }) {}; "haskell-plot" = callPackage @@ -128729,6 +135534,8 @@ self: { ]; description = "A library for generating 2D plots painlessly"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-postal" = callPackage @@ -128744,6 +135551,8 @@ self: { testPkgconfigDepends = [ libpostal ]; description = "Haskell binding for the libpostal library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libpostal;}; "haskell-postgis" = callPackage @@ -128767,6 +135576,8 @@ self: { ]; description = "A haskell library for PostGIS geometry types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-proxy-list" = callPackage @@ -128809,6 +135620,8 @@ self: { testHaskellDepends = [ base directory hspec process ]; description = "Opens a temporary file on the system's EDITOR and returns the resulting edits"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-reflect" = callPackage @@ -128825,6 +135638,7 @@ self: { ]; description = "Reflect Haskell types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-rules" = callPackage @@ -128836,6 +135650,8 @@ self: { libraryHaskellDepends = [ base syb ]; description = "A DSL for expressing natural deduction rules in Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-say" = callPackage @@ -128872,6 +135688,7 @@ self: { description = "Snake game implemetation in Haskell using SDL2"; license = lib.licenses.gpl3Only; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; mainProgram = "haskell-snake"; }) {}; @@ -128889,6 +135706,8 @@ self: { ]; description = "Client API for Rocket Scissor Spacegoo"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-src" = callPackage @@ -128936,6 +135755,7 @@ self: { libraryHaskellDepends = [ base haskell-src-exts Hoed ]; description = "Observable orphan instances for haskell-src-exts"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-src-exts-prisms" = callPackage @@ -128949,6 +135769,8 @@ self: { ]; description = "Prisms with newtype wrappers for haskell-src-exts"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-src-exts-qq" = callPackage @@ -128965,6 +135787,8 @@ self: { testHaskellDepends = [ base haskell-src-exts hspec ]; description = "A quasiquoter for haskell-src-exts"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-src-exts-sc" = callPackage @@ -128978,6 +135802,8 @@ self: { libraryHaskellDepends = [ base haskell-src-exts ]; description = "Pretty print haskell code with comments"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-src-exts-simple" = callPackage @@ -129025,6 +135851,8 @@ self: { ]; description = "Testing code generators piece by piece"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-src-meta" = callPackage @@ -129060,6 +135888,8 @@ self: { ]; description = "Parse source to template-haskell abstract syntax"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-stack-trace-plugin" = callPackage @@ -129078,7 +135908,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "haskell-stack-trace-plugin"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "haskell-time-range" = callPackage @@ -129113,6 +135945,8 @@ self: { ]; description = "Generate Elm types and JSON encoders and decoders from Haskell types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-token-utils" = callPackage @@ -129136,6 +135970,7 @@ self: { ]; description = "Utilities to tie up tokens to an AST"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-ast" = callPackage @@ -129152,6 +135987,7 @@ self: { ]; description = "Haskell AST for efficient tooling"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-ast-fromghc" = callPackage @@ -129169,6 +136005,7 @@ self: { ]; description = "Creating the Haskell-Tools AST from GHC's representations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-ast-gen" = callPackage @@ -129185,6 +136022,7 @@ self: { ]; description = "Facilities for generating new parts of the Haskell-Tools AST"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-ast-trf" = callPackage @@ -129200,6 +136038,7 @@ self: { ]; description = "Conversions on Haskell-Tools AST to prepare for refactorings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-backend-ghc" = callPackage @@ -129217,6 +136056,7 @@ self: { ]; description = "Creating the Haskell-Tools AST from GHC's representations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-builtin-refactorings" = callPackage @@ -129248,6 +136088,7 @@ self: { ]; description = "Refactoring Tool for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-cli" = callPackage @@ -129283,6 +136124,7 @@ self: { ]; description = "Command-line frontend for Haskell-tools Refact"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-daemon" = callPackage @@ -129316,6 +136158,7 @@ self: { ]; description = "Background process for Haskell-tools that editors can connect to"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ht-daemon"; }) {}; @@ -129341,6 +136184,7 @@ self: { executableHaskellDepends = [ base ]; description = "Debugging Tools for Haskell-tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ht-debug"; }) {}; @@ -129372,6 +136216,7 @@ self: { ]; description = "A web-based demo for Haskell-tools Refactor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ht-demo"; }) {}; @@ -129403,6 +136248,7 @@ self: { ]; description = "Refactoring Tool for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-prettyprint" = callPackage @@ -129419,6 +136265,7 @@ self: { ]; description = "Pretty printing of Haskell-Tools AST"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-refactor" = callPackage @@ -129448,6 +136295,7 @@ self: { ]; description = "Refactoring Tool for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-tools-rewrite" = callPackage @@ -129469,6 +136317,7 @@ self: { ]; description = "Facilities for generating new parts of the Haskell-Tools AST"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskell-tor" = callPackage @@ -129502,6 +136351,7 @@ self: { ]; description = "A Haskell Tor Node"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haskell-tor"; }) {}; @@ -129516,6 +136366,8 @@ self: { ]; description = "A type checker for Haskell/haskell-src-exts"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-typescript" = callPackage @@ -129527,6 +136379,8 @@ self: { libraryHaskellDepends = [ base process ]; description = "Simple TypeScript API"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-tyrant" = callPackage @@ -129538,6 +136392,8 @@ self: { libraryHaskellDepends = [ base binary bytestring network ]; description = "Haskell implementation of the Tokyo Tyrant binary protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell-updater" = callPackage @@ -129581,6 +136437,7 @@ self: { executableToolDepends = [ hspec-discover ]; description = "Haskell XMPP (eXtensible Message Passing Protocol, a.k.a. Jabber) library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haskell-xmpp-io-test"; }) {}; @@ -129593,6 +136450,8 @@ self: { libraryHaskellDepends = [ array base ghc-prim ]; description = "Compatibility with Haskell 2010"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell2020" = callPackage @@ -129604,6 +136463,8 @@ self: { libraryHaskellDepends = [ array base ]; description = "Haskell 2020[draft] Standard Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell98" = callPackage @@ -129619,6 +136480,8 @@ self: { ]; description = "Compatibility with Haskell 98"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskell98libraries" = callPackage @@ -129634,6 +136497,8 @@ self: { ]; description = "Compatibility with Haskell 98"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskelldb" = callPackage @@ -129649,6 +136514,8 @@ self: { ]; description = "A library of combinators for generating and executing SQL statements"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskelldb-connect-hdbc" = callPackage @@ -129660,6 +136527,7 @@ self: { libraryHaskellDepends = [ base containers haskelldb HDBC ]; description = "Bracketed HDBC session for HaskellDB"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskelldb-connect-hdbc-catchio-mtl" = callPackage @@ -129675,6 +136543,7 @@ self: { ]; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-mtl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskelldb-connect-hdbc-catchio-tf" = callPackage @@ -129691,6 +136560,7 @@ self: { ]; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskelldb-connect-hdbc-catchio-transformers" = callPackage @@ -129707,6 +136577,7 @@ self: { ]; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskelldb-connect-hdbc-lifted" = callPackage @@ -129723,6 +136594,7 @@ self: { ]; description = "Bracketed HaskellDB HDBC session using lifted-base"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskelldb-dynamic" = callPackage @@ -129737,6 +136609,7 @@ self: { executableHaskellDepends = [ haskelldb ]; description = "HaskellDB support for the dynamically loaded drivers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-dynamic"; }) {}; @@ -129755,6 +136628,7 @@ self: { ]; description = "An experimental HaskellDB back-end in pure Haskell (no SQL)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-flat"; }) {}; @@ -129771,6 +136645,7 @@ self: { ]; description = "HaskellDB support for HDBC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskelldb-hdbc-mysql" = callPackage @@ -129788,6 +136663,7 @@ self: { ]; description = "HaskellDB support for the HDBC MySQL driver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-hdbc-mysql"; }) {}; @@ -129806,6 +136682,7 @@ self: { ]; description = "HaskellDB support for the HDBC ODBC driver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-hdbc-odbc"; }) {}; @@ -129825,6 +136702,7 @@ self: { executableSystemDepends = [ postgresql ]; description = "HaskellDB support for the HDBC PostgreSQL driver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-hdbc-postgresql"; }) {inherit (pkgs) postgresql;}; @@ -129843,6 +136721,7 @@ self: { ]; description = "HaskellDB support for the HDBC SQLite driver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-hdbc-sqlite3"; }) {}; @@ -129855,6 +136734,7 @@ self: { libraryHaskellDepends = [ base haskelldb hsql mtl old-time ]; description = "HaskellDB support for HSQL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskelldb-hsql-mysql" = callPackage @@ -129872,6 +136752,7 @@ self: { ]; description = "HaskellDB support for the HSQL MySQL driver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-hsql-mysql"; }) {}; @@ -129890,6 +136771,7 @@ self: { ]; description = "HaskellDB support for the HSQL ODBC driver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-hsql-odbc"; }) {}; @@ -129928,6 +136810,7 @@ self: { ]; description = "HaskellDB support for the HSQL PostgreSQL driver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-hsql-postgresql"; }) {}; @@ -129966,6 +136849,7 @@ self: { ]; description = "HaskellDB support for the HSQL SQLite3 driver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "DBDirect-hsql-sqlite3"; }) {}; @@ -129978,6 +136862,7 @@ self: { libraryHaskellDepends = [ base haskelldb mtl template-haskell ]; description = "Template Haskell utilities for HaskellDB"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskelldb-wx" = callPackage @@ -129988,6 +136873,8 @@ self: { sha256 = "01652m0bym80400navqlpdv5n0gfgnfzd1d0857f3kd13ksqk2hy"; description = "HaskellDB support for WXHaskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskellish" = callPackage @@ -130026,6 +136913,8 @@ self: { ]; description = "A scrabble library capturing the core game logic of scrabble"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskellscript" = callPackage @@ -130043,7 +136932,9 @@ self: { ]; description = "Command line tool for running Haskell scripts with a hashbang"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haskellscript"; + broken = true; }) {}; "haskelm" = callPackage @@ -130076,6 +136967,7 @@ self: { ]; description = "Elm to Haskell translation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haskelm"; }) {}; @@ -130093,6 +136985,8 @@ self: { ]; description = "CP in Haskell through MiniZinc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskeme" = callPackage @@ -130107,7 +137001,9 @@ self: { executableHaskellDepends = [ base ]; description = "Compiler from I- to S-Expressions for the Scheme Programming Language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haskeme"; + broken = true; }) {}; "haskey" = callPackage @@ -130135,6 +137031,7 @@ self: { ]; description = "A transactional, ACID compliant, embeddable key-value store"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskey-btree" = callPackage @@ -130158,6 +137055,8 @@ self: { ]; description = "B+-tree implementation in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskey-mtl" = callPackage @@ -130178,6 +137077,7 @@ self: { ]; description = "A monad transformer supporting Haskey transactions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskgame" = callPackage @@ -130189,6 +137089,7 @@ self: { libraryHaskellDepends = [ base containers haskell98 SDL SDL-ttf ]; description = "Haskell game library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskheap" = callPackage @@ -130205,6 +137106,8 @@ self: { ]; description = "Haskell bindings to refheap"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskhol-core" = callPackage @@ -130224,6 +137127,8 @@ self: { ]; description = "The core logical system of HaskHOL, an EDSL for HOL theorem proving"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskintex" = callPackage @@ -130244,7 +137149,9 @@ self: { executableHaskellDepends = [ base ]; description = "Haskell Evaluation inside of LaTeX code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haskintex"; + broken = true; }) {}; "hasklepias" = callPackage @@ -130279,6 +137186,7 @@ self: { ]; description = "embedded DSL for defining epidemiologic cohorts"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskmon" = callPackage @@ -130295,6 +137203,8 @@ self: { ]; description = "A haskell wrapper for PokeAPI.co (www.pokeapi.co)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskoin" = callPackage @@ -130320,6 +137230,8 @@ self: { ]; description = "Implementation of the Bitcoin protocol"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskoin-bitcoind" = callPackage @@ -130337,6 +137249,7 @@ self: { ]; description = "An adapter for haskoin to network-bitcoin"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskoin-core" = callPackage @@ -130422,6 +137335,7 @@ self: { ]; description = "Implementation of Bitcoin cryptographic primitives"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "haskoin-node" = callPackage @@ -130507,6 +137421,7 @@ self: { ]; description = "Implementation of the Bitcoin network protocol messages"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "haskoin-script" = callPackage @@ -130531,6 +137446,7 @@ self: { ]; description = "Implementation of Bitcoin script parsing and evaluation"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "haskoin-store" = callPackage @@ -130583,6 +137499,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Storage and index for Bitcoin and Bitcoin Cash"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "haskoin-store"; }) {}; @@ -130663,6 +137580,8 @@ self: { ]; description = "Utility functions for the Network.Haskoin project"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskoin-wallet" = callPackage @@ -130705,6 +137624,8 @@ self: { ]; description = "Implementation of a Bitcoin SPV Wallet with BIP32 and multisig support"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskoon" = callPackage @@ -130722,6 +137643,7 @@ self: { ]; description = "Web Application Abstraction"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "haskoon-httpspec" = callPackage @@ -130737,6 +137659,7 @@ self: { ]; description = "Integrating HttpSpec with Haskoon"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "haskoon-salvia" = callPackage @@ -130754,6 +137677,7 @@ self: { ]; description = "Integrating HttpSpec with Haskoon"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "haskore" = callPackage @@ -130780,6 +137704,8 @@ self: { ]; description = "The Haskore Computer Music System"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskore-realtime" = callPackage @@ -130797,6 +137723,7 @@ self: { ]; description = "Routines for realtime playback of Haskore songs"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "haskore-supercollider" = callPackage @@ -130818,6 +137745,7 @@ self: { ]; description = "Haskore back-end for SuperCollider"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "song-air"; }) {}; @@ -130838,6 +137766,7 @@ self: { ]; description = "Music rendering coded in Haskell"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "haskore-vintage" = callPackage @@ -130849,6 +137778,8 @@ self: { libraryHaskellDepends = [ base ]; description = "The February 2000 version of Haskore"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskseg" = callPackage @@ -130963,6 +137894,7 @@ self: { doHaddock = false; description = "Torch for tensors and neural networks in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hasktorch-codegen" = callPackage @@ -130992,7 +137924,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Code generation tools for Hasktorch"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ht-codegen"; + broken = true; }) {}; "hasktorch-ffi-tests" = callPackage @@ -131027,6 +137961,8 @@ self: { ]; description = "Bindings to Torch"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {ATen = null;}; "hasktorch-ffi-thc" = callPackage @@ -131049,6 +137985,7 @@ self: { ]; description = "Bindings to Cutorch"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {ATen = null;}; "hasktorch-indef" = callPackage @@ -131077,6 +138014,7 @@ self: { doHaddock = false; description = "Core Hasktorch abstractions wrapping FFI bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hasktorch-signatures" = callPackage @@ -131102,6 +138040,7 @@ self: { doHaddock = false; description = "Backpack signatures for Tensor operations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hasktorch-signatures-partial" = callPackage @@ -131117,6 +138056,8 @@ self: { ]; description = "Functions to partially satisfy tensor signatures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hasktorch-signatures-support" = callPackage @@ -131133,6 +138074,8 @@ self: { doHaddock = false; description = "Signatures for support tensors in hasktorch"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hasktorch-signatures-types" = callPackage @@ -131193,6 +138136,7 @@ self: { ]; description = "Neural architectures in hasktorch"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskus-binary" = callPackage @@ -131217,6 +138161,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Haskus binary format manipulation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskus-system-build" = callPackage @@ -131236,6 +138181,7 @@ self: { ]; description = "Haskus system build tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haskus-system-build"; }) {}; @@ -131259,6 +138205,7 @@ self: { ]; description = "Haskus utility modules"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskus-utils-compat" = callPackage @@ -131275,6 +138222,7 @@ self: { ]; description = "Compatibility modules with other external packages (ByteString, etc.)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskus-utils-data" = callPackage @@ -131326,6 +138274,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq QuickCheck ]; description = "Variant and EADT"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haskus-web" = callPackage @@ -131342,6 +138292,7 @@ self: { ]; description = "Haskus web"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haskyapi" = callPackage @@ -131373,7 +138324,9 @@ self: { ]; description = "HTTP server"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "haskyapi"; + broken = true; }) {}; "haslo" = callPackage @@ -131388,6 +138341,7 @@ self: { executableHaskellDepends = [ mtl old-time QuickCheck time wtk ]; description = "Loan calculator engine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hasloGUI" = callPackage @@ -131406,6 +138360,7 @@ self: { ]; description = "Loan calculator Gtk GUI. Based on haslo (Haskell Loan) library."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "HasloGUI"; }) {}; @@ -131437,7 +138392,9 @@ self: { benchmarkHaskellDepends = [ base criterion directory text ]; description = "CSS Minifier"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hasmin"; + broken = true; }) {}; "haspara" = callPackage @@ -131458,6 +138415,8 @@ self: { ]; description = "A library providing definitions to work with monetary values"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hasparql-client" = callPackage @@ -131469,6 +138428,8 @@ self: { libraryHaskellDepends = [ base HTTP monads-fd network xml ]; description = "This package enables to write SPARQL queries to remote endpoints"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haspell" = callPackage @@ -131525,6 +138486,8 @@ self: { ]; description = "API for backends of \"hasql\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hasql-class" = callPackage @@ -131547,6 +138510,8 @@ self: { ]; description = "Encodable and Decodable classes for hasql"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hasql-cursor-query" = callPackage @@ -131569,6 +138534,7 @@ self: { ]; description = "A declarative abstraction over PostgreSQL Cursor"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hasql-cursor-transaction" = callPackage @@ -131586,6 +138552,8 @@ self: { ]; description = "An abstraction for simultaneous fetching from multiple PostgreSQL cursors"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hasql-dynamic-statements" = callPackage @@ -131622,6 +138590,8 @@ self: { testHaskellDepends = [ base hasql tasty tasty-hunit ]; description = "Hasql queries testing interface"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hasql-generic" = callPackage @@ -131640,6 +138610,8 @@ self: { ]; description = "Generic encoder and decoder deriving for Hasql"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hasql-implicits" = callPackage @@ -131849,6 +138821,7 @@ self: { ]; description = "A \"PostgreSQL\" backend for the \"hasql\" library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hasql-postgres-options" = callPackage @@ -131863,6 +138836,7 @@ self: { ]; description = "An \"optparse-applicative\" parser for \"hasql-postgres\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hasql-queue" = callPackage @@ -131913,6 +138887,8 @@ self: { testHaskellDepends = [ base-prelude hasql hspec ]; description = "A pool of connections for Hasql based on resource-pool"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hasql-simple" = callPackage @@ -131929,6 +138905,8 @@ self: { ]; description = "A somewhat opinionated \"simpler\" API to hasql"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hasql-streams-conduit" = callPackage @@ -131945,6 +138923,7 @@ self: { ]; description = "Stream Hasql queries with Conduit"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hasql-streams-core" = callPackage @@ -131956,6 +138935,7 @@ self: { libraryHaskellDepends = [ base hasql hasql-transaction-io ]; description = "Stream Hasql queries"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hasql-streams-example" = callPackage @@ -131980,6 +138960,7 @@ self: { ]; description = "An example program that shows how to use Hasql streams with Rel8"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hasql-streaming"; }) {}; @@ -131997,6 +138978,7 @@ self: { ]; description = "Stream Hasql queries with Pipes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hasql-streams-streaming" = callPackage @@ -132013,6 +138995,7 @@ self: { ]; description = "Stream Hasql queries with Streaming"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hasql-streams-streamly" = callPackage @@ -132029,6 +139012,7 @@ self: { ]; description = "Stream Hasql queries with Streamly"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hasql-th" = callPackage @@ -132082,6 +139066,8 @@ self: { ]; description = "Perform IO actions during transactions for Hasql"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hasql-url" = callPackage @@ -132098,6 +139084,8 @@ self: { testHaskellDepends = [ base hasql tasty tasty-quickcheck ]; description = "Parse PostgreSQL connection URI into Hasql.Connection Settings"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hasqlator-mysql" = callPackage @@ -132117,6 +139105,7 @@ self: { ]; description = "composable SQL generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hasqly-mysql" = callPackage @@ -132132,6 +139121,7 @@ self: { ]; description = "composable SQL generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hastache" = callPackage @@ -132160,7 +139150,9 @@ self: { ]; description = "Haskell implementation of Mustache templates"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mkReadme"; + broken = true; }) {}; "hastache-aeson" = callPackage @@ -132177,6 +139169,7 @@ self: { ]; description = "render hastache templates using aeson values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haste" = callPackage @@ -132190,7 +139183,9 @@ self: { executableHaskellDepends = [ base curl filepath mtl ]; description = "A universal pastebin tool, written in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haste"; + broken = true; }) {}; "haste-app" = callPackage @@ -132210,6 +139205,7 @@ self: { ]; description = "Framework for type-safe, distributed web applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "haste-compiler" = callPackage @@ -132253,6 +139249,7 @@ self: { ]; description = "Google API bindings for the Haste compiler"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "haste-lib" = callPackage @@ -132271,6 +139268,7 @@ self: { ]; description = "Base libraries for haste-compiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haste-markup" = callPackage @@ -132285,6 +139283,7 @@ self: { ]; description = "A port of blaze-markup and blaze-html to Haste"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "haste-perch" = callPackage @@ -132296,6 +139295,7 @@ self: { libraryHaskellDepends = [ base haste-compiler transformers ]; description = "Create, navigate and modify the DOM tree with composable syntax, with the haste compiler"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "haste-prim" = callPackage @@ -132307,6 +139307,8 @@ self: { libraryHaskellDepends = [ base ghc-prim integer-gmp ]; description = "Low level primitives for the Haste compiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hastily" = callPackage @@ -132373,6 +139375,8 @@ self: { ]; description = "The Haskell tracer, generating and viewing Haskell execution traces"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hatex-guide" = callPackage @@ -132389,6 +139393,8 @@ self: { ]; description = "HaTeX User's Guide"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hatexmpp3" = callPackage @@ -132411,6 +139417,7 @@ self: { ]; description = "XMPP client with 9P and (optionally) GTK interfaces"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "hatexmpp"; }) {}; @@ -132463,7 +139470,9 @@ self: { ]; description = "Haskell client for the NATS messaging system"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hats-examples"; + broken = true; }) {}; "hatt" = callPackage @@ -132486,7 +139495,9 @@ self: { ]; description = "A truth table generator for classical propositional logic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hatt"; + broken = true; }) {}; "haveibeenpwned" = callPackage @@ -132509,7 +139520,9 @@ self: { ]; description = "Library for checking for weak/compromised passwords"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "readme"; + broken = true; }) {}; "haven" = callPackage @@ -132529,7 +139542,9 @@ self: { ]; description = "Recursively retrieve maven dependencies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haven"; + broken = true; }) {}; "haverer" = callPackage @@ -132554,7 +139569,9 @@ self: { ]; description = "Implementation of the rules of Love Letter"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "haverer"; + broken = true; }) {}; "hawitter" = callPackage @@ -132576,6 +139593,7 @@ self: { ]; description = "A twitter client for GTK+. Beta version."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hawitter"; }) {}; @@ -132602,7 +139620,9 @@ self: { ]; description = "Haskell cash-flow and tax simulation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hax"; + broken = true; }) {}; "haxl" = callPackage @@ -132629,6 +139649,8 @@ self: { ]; description = "A Haskell library for efficient, concurrent, and concise data access"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haxl-amazonka" = callPackage @@ -132645,6 +139667,7 @@ self: { ]; description = "Haxl data source for accessing AWS services through amazonka"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haxl-facebook" = callPackage @@ -132667,6 +139690,7 @@ self: { ]; description = "An example Haxl data source for accessing the Facebook Graph API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "haxparse" = callPackage @@ -132691,7 +139715,9 @@ self: { ]; description = "Readable HaxBall replays"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "haxparse"; + broken = true; }) {}; "haxr" = callPackage @@ -132725,6 +139751,8 @@ self: { libraryHaskellDepends = [ base haxr template-haskell ]; description = "Automatic deriving of XML-RPC structs for Haskell records"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "haxy" = callPackage @@ -132741,6 +139769,7 @@ self: { ]; description = "A simple HTTP proxy server library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hayland" = callPackage @@ -132761,7 +139790,9 @@ self: { testHaskellDepends = [ base process xml ]; description = "Haskell bindings for the C Wayland library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "wayland-list-globals"; + broken = true; }) {inherit (pkgs) libGL; inherit (pkgs) wayland;}; "hayoo-cli" = callPackage @@ -132780,7 +139811,9 @@ self: { ]; description = "Hayoo CLI"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hayoo"; + broken = true; }) {}; "hb3sum" = callPackage @@ -132814,6 +139847,7 @@ self: { ]; description = "N-back memory game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hback"; }) {}; @@ -132844,6 +139878,7 @@ self: { ]; description = "Bayesian Networks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hbb" = callPackage @@ -132860,6 +139895,7 @@ self: { ]; description = "Haskell Busy Bee, a backend for text editors"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hbb"; }) {}; @@ -132887,6 +139923,8 @@ self: { ]; description = "Client for the beanstalkd workqueue service"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hbeat" = callPackage @@ -132905,7 +139943,9 @@ self: { executableSystemDepends = [ SDL_mixer ]; description = "A simple step sequencer GUI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hbeat"; + broken = true; }) {inherit (pkgs) SDL_mixer;}; "hbf" = callPackage @@ -132942,6 +139982,7 @@ self: { ]; description = "An optimizing Brainfuck compiler and evaluator"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "hblas" = callPackage @@ -132959,6 +140000,8 @@ self: { testHaskellDepends = [ base hspec primitive vector ]; description = "Human friendly BLAS and Lapack bindings for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hblock" = callPackage @@ -132978,6 +140021,8 @@ self: { ]; description = "A mutable vector that provides indexation on the datatype fields it stores"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hbro" = callPackage @@ -133011,6 +140056,7 @@ self: { executableHaskellDepends = [ base ]; description = "Minimal extensible web-browser"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "hbro"; }) {}; @@ -133044,6 +140090,7 @@ self: { ]; description = "Third-party extensions to hbro"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -133065,7 +140112,9 @@ self: { executableToolDepends = [ alex happy ]; description = "Haskell Bottom Up Rewrite Generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hburg"; + broken = true; }) {}; "hcad" = callPackage @@ -133077,6 +140126,8 @@ self: { libraryHaskellDepends = [ base containers gasp mtl ]; description = "Haskell CAD library"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hcc" = callPackage @@ -133090,7 +140141,9 @@ self: { executableHaskellDepends = [ base bytestring language-c ]; description = "A toy C compiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hcc"; + broken = true; }) {}; "hcdt" = callPackage @@ -133114,6 +140167,8 @@ self: { libraryHaskellDepends = [ base colour random ]; description = "haskell cg (minus)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hcg-minus-cairo" = callPackage @@ -133129,6 +140184,7 @@ self: { ]; description = "haskell cg (minus) (cairo rendering)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hcheat" = callPackage @@ -133141,6 +140197,7 @@ self: { libraryHaskellDepends = [ base mps ]; description = "A collection of code cheatsheet"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hcheckers" = callPackage @@ -133174,6 +140231,7 @@ self: { ]; description = "Implementation of checkers (\"draughts\") board game - server application"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hcheckersd"; }) {}; @@ -133191,6 +140249,8 @@ self: { ]; description = "Chess library"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hcltest" = callPackage @@ -133211,6 +140271,8 @@ self: { testHaskellDepends = [ base directory doctest filepath ]; description = "A testing library for command line applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hcoap" = callPackage @@ -133233,6 +140295,8 @@ self: { ]; description = "CoAP implementation for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hcobs" = callPackage @@ -133256,6 +140320,8 @@ self: { ]; description = "An implementation of the Consistent Overhead Byte Stuffing algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hcom" = callPackage @@ -133267,6 +140333,8 @@ self: { doHaddock = false; description = "Haskell COM support library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hcoord" = callPackage @@ -133305,6 +140373,7 @@ self: { ]; description = "Haskell name counts"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hcount"; }) {}; @@ -133322,6 +140391,8 @@ self: { ]; description = "A simple job scheduler, which just runs some IO action at a given time"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hcube" = callPackage @@ -133342,6 +140413,7 @@ self: { ]; description = "Virtual Rubik's cube of arbitrary size"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hcube"; }) {}; @@ -133386,6 +140458,8 @@ self: { ]; description = "Library to handle the details of writing daemons for UNIX"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hdbc-aeson" = callPackage @@ -133402,6 +140476,8 @@ self: { ]; description = "Deserialize from HDBC rows to FromJSON instances"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hdbc-postgresql-hstore" = callPackage @@ -133413,6 +140489,8 @@ self: { libraryHaskellDepends = [ attoparsec base containers HDBC text ]; description = "Manipulate data in PostgreSQL \"hstore\" columns"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hdbc-tuple" = callPackage @@ -133451,6 +140529,7 @@ self: { ]; description = "Haskell Database Independent interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hdbi-conduit" = callPackage @@ -133471,6 +140550,7 @@ self: { ]; description = "Conduit glue for HDBI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hdbi-postgresql" = callPackage @@ -133498,6 +140578,7 @@ self: { ]; description = "PostgreSQL driver for hdbi"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hdbi-sqlite" = callPackage @@ -133517,6 +140598,7 @@ self: { ]; description = "SQlite driver for HDBI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hdbi-tests" = callPackage @@ -133536,6 +140618,7 @@ self: { ]; description = "test suite for testing HDBI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hdevtools" = callPackage @@ -133555,7 +140638,9 @@ self: { ]; description = "Persistent GHC powered background server for FAST haskell development tools"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hdevtools"; + broken = true; }) {}; "hdf" = callPackage @@ -133573,6 +140658,8 @@ self: { ]; description = "HDF: Uniform Rate Audio Signal Processing in Haskell"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hdf5" = callPackage @@ -133594,6 +140681,8 @@ self: { ]; description = "Haskell interface to the HDF5 scientific data storage library"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {hdf5-serial = null;}; "hdf5-lite" = callPackage @@ -133646,6 +140735,7 @@ self: { ]; description = "Pattern-Expression-based differencing of arbitrary types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hdiff"; }) {}; @@ -133661,6 +140751,8 @@ self: { ]; description = "Server-side HTTP Digest (RFC2617) in the CGI monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hdirect" = callPackage @@ -133679,6 +140771,7 @@ self: { executableToolDepends = [ happy ]; description = "An IDL compiler for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hdirect"; }) {}; @@ -133691,6 +140784,8 @@ self: { libraryHaskellDepends = [ base bytestring containers QuickCheck ]; description = "Interface to the udis86 disassembler for x86 and x86-64 / AMD64"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hdiscount" = callPackage @@ -133703,6 +140798,8 @@ self: { librarySystemDepends = [ markdown ]; description = "Haskell bindings to the Discount markdown library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {markdown = null;}; "hdm" = callPackage @@ -133716,7 +140813,9 @@ self: { executableHaskellDepends = [ base directory process unix vty ]; description = "a small display manager"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hdm"; + broken = true; }) {}; "hdo" = callPackage @@ -133744,7 +140843,9 @@ self: { ]; description = "A Digital Ocean client in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "docean"; + broken = true; }) {}; "hdocs" = callPackage @@ -133769,6 +140870,7 @@ self: { testHaskellDepends = [ base containers mtl ]; description = "Haskell docs tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hdocs"; }) {}; @@ -133796,6 +140898,7 @@ self: { ]; description = "Haskell distributed parallel Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hdph-closure" = callPackage @@ -133811,6 +140914,8 @@ self: { ]; description = "Explicit closures in Haskell distributed parallel Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hdr-histogram" = callPackage @@ -133830,6 +140935,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq primitive ]; description = "Haskell implementation of High Dynamic Range (HDR) Histograms"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "headed-megaparsec" = callPackage @@ -133864,7 +140971,9 @@ self: { ]; description = "Creates a header for a haskell source file"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "headergen"; + broken = true; }) {}; "headroom" = callPackage @@ -133927,6 +141036,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "interactively inspect Haskell values at runtime"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "heaps" = callPackage @@ -133969,7 +141080,9 @@ self: { executableHaskellDepends = [ array base ]; description = "Heapsort of MArrays as a demo of imperative programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "heapsort-example"; + broken = true; }) {}; "heart-app" = callPackage @@ -133985,6 +141098,7 @@ self: { ]; description = "An opinionated app prelude and framework in the UnliftIO style"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "heart-core" = callPackage @@ -134004,6 +141118,8 @@ self: { ]; description = "An opinionated library prelude in the UnliftIO style"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "heartbeat-streams" = callPackage @@ -134015,6 +141131,8 @@ self: { libraryHaskellDepends = [ async base io-streams time ]; description = "Heartbeats for io-streams"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "heatitup" = callPackage @@ -134044,6 +141162,7 @@ self: { ]; description = "Find and annotate ITDs"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "heatitup"; }) {}; @@ -134068,7 +141187,9 @@ self: { ]; description = "Find and annotate ITDs with assembly or read pair joining"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "heatitup-complete"; + broken = true; }) {}; "heatshrink" = callPackage @@ -134102,6 +141223,7 @@ self: { ]; description = "Simle api for heavy logger"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "heavy-logger" = callPackage @@ -134123,6 +141245,7 @@ self: { ]; description = "Full-weight logging based on fast-logger"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "heavy-logger-amazon" = callPackage @@ -134138,6 +141261,7 @@ self: { ]; description = "heavy-logger compatibility with amazonka-core logging"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "heavy-logger-instances" = callPackage @@ -134158,6 +141282,7 @@ self: { ]; description = "Orphan instances for data types in heavy-logger package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hebrew-time" = callPackage @@ -134170,6 +141295,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck time ]; description = "Hebrew dates and prayer times"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hecc" = callPackage @@ -134182,6 +141309,7 @@ self: { libraryHaskellDepends = [ base cereal crypto-api hF2 ]; description = "Elliptic Curve Cryptography for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "heckin" = callPackage @@ -134213,7 +141341,9 @@ self: { executableHaskellDepends = [ base directory process split ]; description = "Jekyll in Haskell (feat. LaTeX)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "heckle"; + broken = true; }) {}; "heddit" = callPackage @@ -134244,6 +141374,8 @@ self: { ]; description = "Reddit API bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hedgehog" = callPackage @@ -134315,6 +141447,8 @@ self: { ]; testHaskellDepends = [ base either hedgehog ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hedgehog-checkers-lens" = callPackage @@ -134326,6 +141460,7 @@ self: { libraryHaskellDepends = [ base hedgehog hedgehog-checkers lens ]; testHaskellDepends = [ base hedgehog hedgehog-checkers lens ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hedgehog-classes" = callPackage @@ -134424,6 +141559,7 @@ self: { ]; description = "Customizable Gen for ADT using Generics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hedgehog-gen-json" = callPackage @@ -134448,6 +141584,7 @@ self: { ]; description = "JSON generators for Hedgehog"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hedgehog-generic" = callPackage @@ -134459,6 +141596,8 @@ self: { libraryHaskellDepends = [ base hedgehog ]; description = "GHC Generics automatically derived hedgehog generators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hedgehog-golden" = callPackage @@ -134476,6 +141615,8 @@ self: { testHaskellDepends = [ aeson base hedgehog ]; description = "Golden testing capabilities for hedgehog using Aeson"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hedgehog-lens" = callPackage @@ -134487,6 +141628,8 @@ self: { libraryHaskellDepends = [ base hedgehog lens ]; description = "Hedgehog properties for lens laws"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hedgehog-optics" = callPackage @@ -134534,6 +141677,8 @@ self: { ]; description = "Hedgehog property testing for Servant APIs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hedis" = callPackage @@ -134574,6 +141719,8 @@ self: { ]; description = "Easy trivial configuration for Redis"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hedis-envy" = callPackage @@ -134615,7 +141762,9 @@ self: { testHaskellDepends = [ base ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hedis-namespace-exe"; + broken = true; }) {}; "hedis-pile" = callPackage @@ -134637,6 +141786,7 @@ self: { ]; description = "Caching mandatory data with Redis"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hedis-simple" = callPackage @@ -134648,6 +141798,8 @@ self: { libraryHaskellDepends = [ base bytestring either hedis mtl ]; description = "A simplified API for hedis"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hedis-tags" = callPackage @@ -134665,6 +141817,8 @@ self: { ]; description = "Tags for hedis"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hedn" = callPackage @@ -134720,7 +141874,9 @@ self: { testHaskellDepends = [ base doctest ]; description = "A small library and executable for generating dice rolls"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hedra"; + broken = true; }) {}; "hegg" = callPackage @@ -134766,7 +141922,9 @@ self: { benchmarkHaskellDepends = [ base criterion weigh ]; description = "Tidy data in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "app"; + broken = true; }) {}; "hein" = callPackage @@ -134785,7 +141943,9 @@ self: { ]; description = "An extensible build helper for haskell, in the vein of leiningen"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "hein"; + broken = true; }) {}; "heist" = callPackage @@ -134829,6 +141989,8 @@ self: { ]; description = "An Haskell template system supporting both HTML5 and XML"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "heist-aeson" = callPackage @@ -134845,6 +142007,7 @@ self: { ]; description = "Use JSON directly from Heist templates"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "heist-async" = callPackage @@ -134858,6 +142021,7 @@ self: { ]; description = "Adding support for asynchronous updates (\"AJAX\") with heist"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "heist-emanote" = callPackage @@ -134899,6 +142063,8 @@ self: { ]; description = "An Haskell template system supporting both HTML5 and XML"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "heist-extra" = callPackage @@ -134915,6 +142081,7 @@ self: { ]; description = "Extra heist functionality"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "helf" = callPackage @@ -134970,6 +142137,7 @@ self: { ]; description = "Clipboard Manager"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; mainProgram = "hel"; }) {}; @@ -134994,6 +142162,7 @@ self: { ]; description = "New Relic® agent SDK wrapper for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {newrelic-collector-client = null; newrelic-common = null; newrelic-transaction = null;}; @@ -135012,6 +142181,7 @@ self: { ]; description = "New Relic® agent SDK wrapper for wai"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "helisp" = callPackage @@ -135025,7 +142195,9 @@ self: { executableHaskellDepends = [ base containers mtl parsec process ]; description = "An incomplete Elisp compiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "helisp"; + broken = true; }) {}; "helium" = callPackage @@ -135049,6 +142221,7 @@ self: { ]; description = "The Helium Compiler"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "helium-overture" = callPackage @@ -135088,6 +142261,8 @@ self: { ]; description = "Web development micro framework for haskell with typesafe URLs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hell" = callPackage @@ -135112,6 +142287,7 @@ self: { executableHaskellDepends = [ base transformers utf8-string ]; description = "A Haskell shell based on shell-conduit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hell"; }) {}; @@ -135132,6 +142308,7 @@ self: { ]; description = "Distributed hackage mirror"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hellnet" = callPackage @@ -135156,6 +142333,7 @@ self: { ]; description = "Simple, distributed, anonymous data sharing network"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "hello" = callPackage @@ -135192,7 +142370,9 @@ self: { testHaskellDepends = [ base hspec ]; description = "A functionally reactive game engine"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "helm-example-flappy"; + broken = true; }) {}; "help-esb" = callPackage @@ -135209,6 +142389,8 @@ self: { ]; description = "A Haskell client for the Help.com team's ESB."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hemkay" = callPackage @@ -135226,7 +142408,9 @@ self: { ]; description = "A module music mixer and player"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hemkay"; + broken = true; }) {}; "hemkay-core" = callPackage @@ -135267,6 +142451,7 @@ self: { benchmarkHaskellDepends = [ base conduit criterion mtl ]; description = "Haskell port of the Emokit EEG project"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hen" = callPackage @@ -135287,6 +142472,7 @@ self: { ]; description = "Haskell bindings to Xen hypervisor interface"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {xenctrl = null;}; "henet" = callPackage @@ -135301,6 +142487,7 @@ self: { ]; description = "Bindings and high level interface for to ENet v1.3.9"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hepevt" = callPackage @@ -135312,6 +142499,7 @@ self: { libraryHaskellDepends = [ bytestring haskell2010 lha ]; description = "HEPEVT parser"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "her-lexer" = callPackage @@ -135334,6 +142522,8 @@ self: { libraryHaskellDepends = [ base her-lexer parsec transformers ]; description = "Parsec frontend to \"her-lexer\" for Haskell source code"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "herbalizer" = callPackage @@ -135351,7 +142541,9 @@ self: { ]; description = "HAML to ERB translator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "herbalizer"; + broken = true; }) {}; "hercules-ci-agent" = callPackage @@ -135656,6 +142848,8 @@ self: { testHaskellDepends = [ base bytestring doctest text ]; description = "Heredocument on Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "herf-time" = callPackage @@ -135720,6 +142914,7 @@ self: { ]; description = "Haskell Equational Reasoning Model-to-Implementation Tunnel"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hermit"; }) {}; @@ -135736,6 +142931,7 @@ self: { ]; description = "HERMIT plugin for optimizing Scrap-Your-Boilerplate traversals"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "herms" = callPackage @@ -135756,7 +142952,9 @@ self: { ]; description = "A command-line manager for delicious kitchen recipes"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "herms"; + broken = true; }) {}; "hero-club-five-tenets" = callPackage @@ -135800,6 +142998,8 @@ self: { testHaskellDepends = [ base hspec persistent-postgresql ]; description = "Parse DATABASE_URL into configuration types for Persistent"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "herringbone" = callPackage @@ -135819,6 +143019,7 @@ self: { ]; description = "A library for compiling and serving static web assets"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "herringbone-embed" = callPackage @@ -135835,6 +143036,7 @@ self: { ]; description = "Embed preprocessed web assets in your executable with Template Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "herringbone-wai" = callPackage @@ -135851,6 +143053,7 @@ self: { ]; description = "Wai adapter for the Herringbone web asset preprocessor"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hesh" = callPackage @@ -135877,6 +143080,7 @@ self: { ]; description = "the Haskell Extensible Shell: Haskell for Bash-style scripts"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hesh"; }) {}; @@ -135895,6 +143099,7 @@ self: { ]; description = "Haskell's embedded SQL"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hesql"; }) {}; @@ -135916,6 +143121,8 @@ self: { ]; description = "Fast heterogeneous data structures"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hetero-map" = callPackage @@ -135958,6 +143165,8 @@ self: { testHaskellDepends = [ base ]; description = "Allows the use of tuples as literals for Heterogeneous collections"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "heterolist" = callPackage @@ -135975,6 +143184,7 @@ self: { ]; description = "A heterogeneous list type"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hetris" = callPackage @@ -135991,7 +143201,9 @@ self: { executableSystemDepends = [ ncurses ]; description = "Text Tetris"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hetris"; + broken = true; }) {inherit (pkgs) ncurses;}; "hetzner" = callPackage @@ -136010,6 +143222,7 @@ self: { testHaskellDepends = [ base ]; description = "Hetzner Cloud and DNS library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "heukarya" = callPackage @@ -136024,6 +143237,8 @@ self: { ]; description = "A genetic programming based on tree structure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hevm" = callPackage @@ -136102,6 +143317,7 @@ self: { ]; description = "Genetic Mona Lisa problem in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hevolisa"; }) {}; @@ -136121,6 +143337,7 @@ self: { ]; description = "Genetic Mona Lisa problem in Haskell - using Data Parallel Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hevolisa"; }) {}; @@ -136159,6 +143376,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Haskell scripting interface for HexChat"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hexdump" = callPackage @@ -136182,6 +143401,8 @@ self: { libraryHaskellDepends = [ base binary bytestring filepath ]; description = "Reading Exif data form a JPEG file with Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hexmino" = callPackage @@ -136233,6 +143454,8 @@ self: { ]; description = "Lenses for the hexml package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hexpat" = callPackage @@ -136267,6 +143490,7 @@ self: { transformers ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hexpat-iteratee" = callPackage @@ -136284,6 +143508,7 @@ self: { ]; description = "Chunked XML parsing using iteratees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hexpat-lens" = callPackage @@ -136299,6 +143524,8 @@ self: { ]; description = "Lenses for Hexpat"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hexpat-pickle" = callPackage @@ -136332,6 +143559,8 @@ self: { ]; description = "Picklers for de/serialising Generic data types to and from XML"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hexpat-streamparser" = callPackage @@ -136348,6 +143577,8 @@ self: { ]; testHaskellDepends = [ base hexpat hspec ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hexpat-tagsoup" = callPackage @@ -136373,6 +143604,8 @@ self: { ]; description = "A framework for symbolic, homoiconic languages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hexpress" = callPackage @@ -136390,6 +143623,8 @@ self: { ]; description = "An express-like http framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hexquote" = callPackage @@ -136405,6 +143640,8 @@ self: { ]; description = "Hexadecimal ByteString literals, with placeholders that bind variables"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hexstring" = callPackage @@ -136422,6 +143659,8 @@ self: { testHaskellDepends = [ base binary bytestring hspec text ]; description = "Fast and safe representation of a hex string"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hext" = callPackage @@ -136438,7 +143677,9 @@ self: { executableHaskellDepends = [ base text ]; description = "a text classification library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hext-exe"; + broken = true; }) {}; "hextra" = callPackage @@ -136450,6 +143691,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Generic and niche utility functions and more for Haskell"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hextream" = callPackage @@ -136504,7 +143747,9 @@ self: { ]; description = "A server for Eye-Fi SD cards"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "heyefi"; + broken = true; }) {}; "heystone" = callPackage @@ -136540,6 +143785,8 @@ self: { ]; description = "Heyting and Boolean algebras"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hfann" = callPackage @@ -136555,6 +143802,8 @@ self: { libraryPkgconfigDepends = [ fann ]; description = "Haskell binding to the FANN library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {doublefann = null; fann = null;}; "hfd" = callPackage @@ -136573,6 +143822,7 @@ self: { ]; description = "Flash debugger"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hfd"; }) {}; @@ -136589,6 +143839,7 @@ self: { executableHaskellDepends = [ wx wxcore ]; description = "Four in a Row in Haskell!!"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hfiar"; }) {}; @@ -136635,7 +143886,9 @@ self: { ]; description = "Haskell source code formatter"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hfmt"; + broken = true; }) {}; "hfoil" = callPackage @@ -136683,6 +143936,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Field-of-view calculation for low-resolution 2D raster grids"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hfractal" = callPackage @@ -136701,6 +143956,7 @@ self: { ]; description = "OpenGL fractal renderer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hfractal"; }) {}; @@ -136732,6 +143988,8 @@ self: { ]; description = "A library for fusing a subset of Haskell programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hg-buildpackage" = callPackage @@ -136750,6 +144008,8 @@ self: { ]; description = "Tools to help manage Debian packages with Mercurial"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hgal" = callPackage @@ -136777,6 +144037,7 @@ self: { libraryHaskellDepends = [ array base haskell98 mtl ]; description = "Haskell Genetic Algorithm Library"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "hgdal" = callPackage @@ -136811,6 +144072,8 @@ self: { ]; description = "GDB Machine Interface: program-driven control of GDB"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hgearman" = callPackage @@ -136828,6 +144091,8 @@ self: { ]; description = "A Gearman client for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hgen" = callPackage @@ -136843,6 +144108,7 @@ self: { ]; description = "Random generation of modal and hybrid logic formulas"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hgen"; }) {}; @@ -136855,6 +144121,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A geometric library with bindings to GPC"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hgeometry" = callPackage @@ -136893,6 +144161,7 @@ self: { ]; description = "Geometric Algorithms, Data structures, and Data types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hgeometry-combinatorial" = callPackage @@ -136927,6 +144196,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Data structures, and Data types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hgeometry-ipe" = callPackage @@ -136961,6 +144231,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Reading and Writing ipe7 files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hgeometry-svg" = callPackage @@ -136981,6 +144252,7 @@ self: { testHaskellDepends = [ base doctest ]; description = "Writing geometric primitives from HGeometry as SVG Files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hgeos" = callPackage @@ -137041,6 +144313,8 @@ self: { doHaddock = false; description = "Library and for GIS with Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hgithub" = callPackage @@ -137061,6 +144335,7 @@ self: { executableHaskellDepends = [ base cmdargs directory ]; description = "Haskell bindings to the GitHub API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hgithub"; }) {}; @@ -137110,7 +144385,9 @@ self: { ]; description = "An haskell port of the java version of gom"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hgom"; + broken = true; }) {}; "hgopher" = callPackage @@ -137122,6 +144399,8 @@ self: { libraryHaskellDepends = [ base bytestring network ]; description = "Gopher server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hgraph" = callPackage @@ -137154,6 +144433,8 @@ self: { libraryHaskellDepends = [ aeson base bytestring cpu hosc network ]; description = "Haskell module to interact with the greetd daemon trough it's IPC protocol"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hgrep" = callPackage @@ -137176,7 +144457,9 @@ self: { ]; description = "Search Haskell source code from the command line"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hgrep"; + broken = true; }) {}; "hgrev" = callPackage @@ -137192,6 +144475,8 @@ self: { ]; description = "Compile Mercurial (hg) version info into Haskell code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hgrib" = callPackage @@ -137210,6 +144495,8 @@ self: { testHaskellDepends = [ base directory hspec ]; description = "Unofficial bindings for GRIB API"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {grib_api = null;}; "hharp" = callPackage @@ -137222,6 +144509,8 @@ self: { librarySystemDepends = [ harp ]; description = "Binding to libharp"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {harp = null;}; "hhp" = callPackage @@ -137248,6 +144537,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Happy Haskell Programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hhwloc" = callPackage @@ -137261,6 +144552,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Bindings to https://www.open-mpi.org/projects/hwloc"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hi" = callPackage @@ -137291,6 +144584,7 @@ self: { ]; description = "Generate scaffold for cabal project"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hi"; }) {}; @@ -137327,6 +144621,8 @@ self: { executableHaskellDepends = [ base dbus process ]; description = "Status line for i3bar"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hiccup" = callPackage @@ -137346,6 +144642,7 @@ self: { ]; description = "Relatively efficient Tcl interpreter with support for basic operations"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hiccup"; }) {}; @@ -137360,7 +144657,9 @@ self: { executableHaskellDepends = [ array base bytestring mtl network ]; description = "haskell robot for IChat protocol"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hichi"; + broken = true; }) {}; "hid" = callPackage @@ -137374,6 +144673,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "Interface to hidapi library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) hidapi;}; "hid-examples" = callPackage @@ -137408,6 +144709,8 @@ self: { doHaddock = false; description = "Examples to accompany the book \"Haskell in Depth\""; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hidapi" = callPackage @@ -137439,6 +144742,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Provides cross-platform getHiddenChar function"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hie-bios" = callPackage @@ -137527,6 +144832,7 @@ self: { ]; description = "The core of an IDE"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "hie-core"; }) {}; @@ -137567,6 +144873,8 @@ self: { libraryHaskellDepends = [ base containers HUnit mtl multiset ]; description = "Automated clustering of arbitrary elements in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hierarchical-clustering" = callPackage @@ -137580,6 +144888,8 @@ self: { testHaskellDepends = [ base hspec HUnit QuickCheck ]; description = "Fast algorithms for single, average/UPGMA and complete linkage clustering"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hierarchical-clustering-diagrams" = callPackage @@ -137599,6 +144909,7 @@ self: { ]; description = "Draw diagrams of dendrograms made by hierarchical-clustering"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hierarchical-env" = callPackage @@ -137621,6 +144932,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "hierarchical environments for dependency injection"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hierarchical-exceptions" = callPackage @@ -137632,6 +144944,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Template Haskell functions to easily create exception hierarchies"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hierarchical-spectral-clustering" = callPackage @@ -137662,6 +144976,7 @@ self: { ]; description = "Hierarchical spectral clustering of a graph"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "cluster-tree"; }) {}; @@ -137685,6 +145000,8 @@ self: { ]; description = "Predicated traversal of generated trees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hiernotify" = callPackage @@ -137700,6 +145017,8 @@ self: { ]; description = "Notification library for a filesystem hierarchy"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hifi" = callPackage @@ -137720,7 +145039,9 @@ self: { testHaskellDepends = [ base ]; description = "WiFi connection script generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hifi"; + broken = true; }) {}; "higgledy" = callPackage @@ -137757,7 +145078,9 @@ self: { executableHaskellDepends = [ base ghc ]; description = "Memory usage statistics"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "highWaterMark"; + broken = true; }) {}; "higher-leveldb" = callPackage @@ -137781,6 +145104,8 @@ self: { ]; description = "A rich monadic API for working with leveldb databases"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "higherorder" = callPackage @@ -137794,6 +145119,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Some higher order functions for Bool and []"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "highjson" = callPackage @@ -137811,6 +145138,8 @@ self: { ]; description = "Spec based JSON parsing/serialisation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "highjson-swagger" = callPackage @@ -137829,6 +145158,7 @@ self: { ]; description = "Derive swagger instances from highjson specs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "highjson-th" = callPackage @@ -137849,6 +145179,7 @@ self: { ]; description = "Template Haskell helpers for highjson specs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "highlight" = callPackage @@ -137896,7 +145227,9 @@ self: { ]; description = "Highlight package versions which differ from the latest version on Hackage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "highlight-versions"; + broken = true; }) {}; "highlighter" = callPackage @@ -137974,7 +145307,9 @@ self: { ]; description = "Generate STL models from SRTM elevation data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hills"; + broken = true; }) {}; "himerge" = callPackage @@ -138016,7 +145351,9 @@ self: { ]; description = "Simple gtk2hs image viewer. Point it at an image and fire away."; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "himg"; + broken = true; }) {}; "himpy" = callPackage @@ -138038,6 +145375,7 @@ self: { ]; description = "multithreaded snmp poller for riemann"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "himpy"; }) {}; @@ -138144,6 +145482,8 @@ self: { testHaskellDepends = [ base containers hspec ]; description = "Template for Hindley-Milner based languages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hindley-milner-type-check" = callPackage @@ -138164,6 +145504,8 @@ self: { ]; description = "Type inference for Hindley-Milner based languages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hinduce-associations-apriori" = callPackage @@ -138190,6 +145532,7 @@ self: { libraryHaskellDepends = [ base hinduce-missingh layout ]; description = "Interface and utilities for classifiers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hinduce-classifier-decisiontree" = callPackage @@ -138207,6 +145550,7 @@ self: { ]; description = "Decision Tree Classifiers for hInduce"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hinduce-examples" = callPackage @@ -138226,6 +145570,7 @@ self: { ]; description = "Example data for hInduce"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hinduce-missingh" = callPackage @@ -138381,6 +145726,8 @@ self: { ]; description = "Generate armet style query strings"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hinstaller" = callPackage @@ -138396,6 +145743,8 @@ self: { ]; description = "Installer wrapper for Haskell applications"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hint" = callPackage @@ -138432,6 +145781,8 @@ self: { ]; description = "A server process that runs hint"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hinter" = callPackage @@ -138453,6 +145804,8 @@ self: { ]; description = "Runtime Haskell interpreter (GHC API wrapper)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hinterface" = callPackage @@ -138479,6 +145832,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell / Erlang interoperability library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hinvaders" = callPackage @@ -138493,6 +145848,7 @@ self: { executableHaskellDepends = [ base haskell98 random ]; description = "Space Invaders"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hinvaders"; }) {}; @@ -138505,6 +145861,7 @@ self: { libraryHaskellDepends = [ base haskell98 Stream ]; description = "Streams and Unique Fixed Points"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hip" = callPackage @@ -138529,6 +145886,7 @@ self: { ]; description = "Haskell Image Processing (HIP) Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hipbot" = callPackage @@ -138553,6 +145911,7 @@ self: { ]; description = "A library for building HipChat Bots"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hipchat-hs" = callPackage @@ -138571,6 +145930,8 @@ self: { ]; description = "Hipchat API bindings in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hipe" = callPackage @@ -138586,6 +145947,7 @@ self: { ]; description = "Support for reading and writing ipe7 files (http://ipe7.sourceforge.net)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hips" = callPackage @@ -138612,6 +145974,8 @@ self: { sha256 = "18hwc5x902k2dsk8895sr8nil4445b9lazzdzbjzpllx4smf0lvz"; libraryHaskellDepends = [ aeson base bytestring servant ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hipsql-client" = callPackage @@ -138634,6 +145998,7 @@ self: { http-types mtl servant-client servant-client-core ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hipsql"; }) {}; @@ -138666,6 +146031,7 @@ self: { servant-server warp ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hipsql-demo-server"; }) {}; @@ -138681,6 +146047,7 @@ self: { base hipsql-monad hipsql-server postgresql-simple postgresql-tx ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hircules" = callPackage @@ -138699,7 +146066,9 @@ self: { ]; description = "IRC client"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hircules"; + broken = true; }) {}; "hirt" = callPackage @@ -138720,6 +146089,7 @@ self: { ]; description = "Calculates IRT 2PL and 3PL models"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hirt"; }) {}; @@ -138736,6 +146106,8 @@ self: { ]; description = "Unofficial API bindings to KISSmetrics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hist-pl" = callPackage @@ -138759,6 +146131,7 @@ self: { ]; description = "Umbrella package for the historical dictionary of Polish"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hist-pl"; }) {}; @@ -138774,6 +146147,7 @@ self: { ]; description = "A generic, DAWG-based dictionary"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hist-pl-fusion" = callPackage @@ -138790,6 +146164,7 @@ self: { ]; description = "Merging historical dictionary with PoliMorf"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hist-pl-lexicon" = callPackage @@ -138806,6 +146181,7 @@ self: { ]; description = "A binary representation of the historical dictionary of Polish"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hist-pl-lmf" = callPackage @@ -138817,6 +146193,7 @@ self: { libraryHaskellDepends = [ base hist-pl-types polysoup text ]; description = "LMF parsing for the historical dictionary of Polish"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hist-pl-transliter" = callPackage @@ -138839,6 +146216,8 @@ self: { libraryHaskellDepends = [ base binary text text-binary ]; description = "Types in the historical dictionary of Polish"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "histogram-fill" = callPackage @@ -138903,7 +146282,9 @@ self: { ]; description = "Extract the interesting bits from shell history"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "historian"; + broken = true; }) {}; "hit" = callPackage @@ -138922,6 +146303,7 @@ self: { ]; description = "Git like program in haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Hit"; }) {}; @@ -138938,6 +146320,7 @@ self: { ]; description = "Use graph algorithms to access and manipulate Git repos"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "hit-on" = callPackage @@ -138959,7 +146342,9 @@ self: { testHaskellDepends = [ base github hspec text ]; description = "Haskell Git Helper Tool"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "hit"; + broken = true; }) {}; "hix" = callPackage @@ -139003,6 +146388,8 @@ self: { ]; description = "Jcase library for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hjpath" = callPackage @@ -139032,7 +146419,9 @@ self: { ]; description = "JavaScript Parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hjs"; + broken = true; }) {}; "hjsmin" = callPackage @@ -139079,6 +146468,8 @@ self: { libraryHaskellDepends = [ base containers hjson ]; description = "library for querying from JSON"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hjsonpointer" = callPackage @@ -139100,6 +146491,8 @@ self: { ]; description = "JSON Pointer library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hjsonschema" = callPackage @@ -139130,6 +146523,7 @@ self: { ]; description = "JSON Schema library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hjugement" = callPackage @@ -139179,6 +146573,7 @@ self: { ]; description = "Majority Judgment and Helios-C command line tool"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hjugement"; }) {}; @@ -139207,6 +146602,8 @@ self: { ]; description = "A cryptographic protocol for the Majority Judgment"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hkd" = callPackage @@ -139242,6 +146639,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Definition of \"Delta structures\" for higher kinded data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hkd-lens" = callPackage @@ -139253,6 +146652,8 @@ self: { libraryHaskellDepends = [ base profunctors ]; description = "Generic lens/prism/traversal-kinded data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hkd-records" = callPackage @@ -139264,6 +146665,8 @@ self: { libraryHaskellDepends = [ base hkd template-haskell text ]; description = "higher kinded record operations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hkdf" = callPackage @@ -139312,6 +146715,8 @@ self: { ]; description = "A library for higher kinded types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hlatex" = callPackage @@ -139349,6 +146754,8 @@ self: { ]; description = "Haskell binding to L-BFGS-B version 3.0"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) gfortran;}; "hlcm" = callPackage @@ -139370,6 +146777,7 @@ self: { ]; description = "Fast algorithm for mining closed frequent itemsets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hleap" = callPackage @@ -139392,7 +146800,9 @@ self: { ]; description = "Web Socket interface to Leap Motion controller"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "leap-tracker"; + broken = true; }) {}; "hledger" = callPackage @@ -139466,6 +146876,7 @@ self: { ]; description = "Web API server for the hledger accounting tool"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hledger-api"; }) {}; @@ -139485,7 +146896,9 @@ self: { ]; description = "A pie chart image generator for the hledger accounting tool"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hledger-chart"; + broken = true; }) {}; "hledger-diff" = callPackage @@ -139499,7 +146912,9 @@ self: { executableHaskellDepends = [ base hledger-lib text time ]; description = "Compares the transactions in two ledger files"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hledger-diff"; + broken = true; }) {}; "hledger-flow" = callPackage @@ -139525,7 +146940,9 @@ self: { ]; description = "An hledger workflow focusing on automated statement import and classification"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hledger-flow"; + broken = true; }) {}; "hledger-iadd" = callPackage @@ -139559,7 +146976,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "A terminal UI as drop-in replacement for hledger add"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hledger-iadd"; + broken = true; }) {}; "hledger-interest" = callPackage @@ -139598,7 +147017,9 @@ self: { ]; description = "computes the internal rate of return of an investment"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hledger-irr"; + broken = true; }) {}; "hledger-lib" = callPackage @@ -139661,7 +147082,9 @@ self: { ]; description = "An hledger workflow focusing on automated statement import and classification"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hledger-makeitso"; + broken = true; }) {}; "hledger-stockquotes" = callPackage @@ -139736,7 +147159,9 @@ self: { ]; description = "A curses-style console interface for the hledger accounting tool"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hledger-vty"; + broken = true; }) {}; "hledger-web" = callPackage @@ -139802,6 +147227,8 @@ self: { testHaskellDepends = [ base hlint ]; description = "Haskell binding to libBladeRF SDR library"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libbladeRF;}; "hlibcpuid" = callPackage @@ -139830,6 +147257,8 @@ self: { librarySystemDepends = [ ev ]; description = "FFI interface to libev"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {ev = null;}; "hlibfam" = callPackage @@ -139842,6 +147271,8 @@ self: { librarySystemDepends = [ fam ]; description = "FFI interface to libFAM"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) fam;}; "hlibgit2" = callPackage @@ -140032,6 +147463,8 @@ self: { ]; description = "Client library for the Apache Livy REST API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hlogger" = callPackage @@ -140043,6 +147476,8 @@ self: { libraryHaskellDepends = [ base old-locale time ]; description = "Simple, concurrent, extendable and easy-to-use logging library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hlongurl" = callPackage @@ -140061,7 +147496,9 @@ self: { ]; description = "Library and utility interfacing to longurl.org"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hlongurl"; + broken = true; }) {}; "hlrdb" = callPackage @@ -140111,6 +147548,7 @@ self: { libraryHaskellDepends = [ base containers hcg-minus hps ]; description = "Haskell Lindenmayer Systems"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "hls-alternate-number-format-plugin" = callPackage @@ -140144,6 +147582,8 @@ self: { sha256 = "11hnkbpg13zvnq69svm46zm5k55yshgz97kjjx1g3jcb9ah1brm1"; description = "Integration with the Brittany code formatter"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hls-cabal-fmt-plugin" = callPackage @@ -140318,6 +147758,7 @@ self: { ]; description = "Common utilities to interaction between ghc-exactprint and HLS plugins"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "hls-explicit-fixity-plugin" = callPackage @@ -140474,6 +147915,8 @@ self: { sha256 = "0xf38ikm0r0sx4b25g3ns8q421swmy7an4fbs5dmv86r4pr3999m"; description = "Haddock comments plugin for Haskell Language Server"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hls-hlint-plugin" = callPackage @@ -140680,6 +148123,8 @@ self: { testHaskellDepends = [ base filepath hls-test-utils text ]; description = "Refine imports plugin for Haskell Language Server"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hls-rename-plugin" = callPackage @@ -140750,6 +148195,8 @@ self: { ]; description = "HLS Plugin to support smart selection range"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hls-splice-plugin" = callPackage @@ -140783,6 +148230,8 @@ self: { sha256 = "0azlvn5mibmsj3w5pwfkgaydji58bb88bvhzyc49y7gzg24cm23s"; description = "Stan integration plugin with Haskell Language Server"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hls-stylish-haskell-plugin" = callPackage @@ -140811,6 +148260,8 @@ self: { sha256 = "0mry1y7p26lraina8ynsrnm441wprrrp4wcl5ys6xs6z860kxaqf"; description = "Wingman plugin for Haskell Language Server"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hls-test-utils" = callPackage @@ -140848,6 +148299,8 @@ self: { libraryHaskellDepends = [ base stm transformers unix X11 ]; description = "Bindings to the herbstluftwm window manager"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hly" = callPackage @@ -140862,6 +148315,8 @@ self: { ]; description = "Haskell LilyPond"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hmark" = callPackage @@ -140880,6 +148335,7 @@ self: { executableHaskellDepends = [ base ]; description = "A tool and library for Markov chains based text generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hmark"; }) {}; @@ -140894,6 +148350,8 @@ self: { ]; description = "Simple wikitext-like markup format implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hmatrix" = callPackage @@ -140952,6 +148410,8 @@ self: { librarySystemDepends = [ liblapack ]; description = "HMatrix interface to LAPACK functions for banded matrices"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) liblapack;}; "hmatrix-csv" = callPackage @@ -141017,6 +148477,8 @@ self: { libraryHaskellDepends = [ base hmatrix mmap ]; description = "Memory map Vector from disk into memory efficiently"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hmatrix-morpheus" = callPackage @@ -141050,6 +148512,8 @@ self: { libraryHaskellDepends = [ base hmatrix ]; description = "NIPALS method for Principal Components Analysis on large data-sets"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hmatrix-nlopt" = callPackage @@ -141085,6 +148549,7 @@ self: { libraryHaskellDepends = [ base hmatrix repa vector ]; description = "Adaptors for interoperability between hmatrix and repa"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hmatrix-sparse" = callPackage @@ -141098,6 +148563,8 @@ self: { librarySystemDepends = [ mkl_core mkl_intel mkl_sequential ]; description = "Sparse linear solver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {mkl_core = null; mkl_intel = null; mkl_sequential = null;}; "hmatrix-special" = callPackage @@ -141124,6 +148591,8 @@ self: { ]; description = "hmatrix with vector and matrix sizes encoded in types"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hmatrix-sundials" = callPackage @@ -141151,6 +148620,7 @@ self: { ]; description = "hmatrix interface to sundials"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {sundials_arkode = null; sundials_cvode = null;}; "hmatrix-svdlibc" = callPackage @@ -141166,6 +148636,8 @@ self: { benchmarkHaskellDepends = [ base criterion hmatrix vector ]; description = "SVDLIBC bindings for HMatrix"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hmatrix-syntax" = callPackage @@ -141181,6 +148653,8 @@ self: { ]; description = "MATLAB-like syntax for hmatrix vectors and matrices"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hmatrix-tests" = callPackage @@ -141198,6 +148672,8 @@ self: { benchmarkHaskellDepends = [ base HUnit QuickCheck random ]; description = "Tests for hmatrix"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hmatrix-vector-sized" = callPackage @@ -141229,6 +148705,7 @@ self: { ]; description = "Haskell Meapsoft Parser"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "hmeap-utils" = callPackage @@ -141248,6 +148725,7 @@ self: { ]; description = "Haskell Meapsoft Parser Utilities"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "hmemdb" = callPackage @@ -141276,7 +148754,9 @@ self: { executableHaskellDepends = [ base MissingH process ]; description = "CLI fuzzy finder and launcher"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hmenu"; + broken = true; }) {}; "hmep" = callPackage @@ -141296,6 +148776,7 @@ self: { testHaskellDepends = [ base HUnit vector ]; description = "HMEP Multi Expression Programming – a genetic programming variant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hmidi" = callPackage @@ -141326,7 +148807,9 @@ self: { ]; description = "A make alternative based on Plan9's mk"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hmk"; + broken = true; }) {}; "hmm" = callPackage @@ -141342,6 +148825,8 @@ self: { ]; description = "A hidden markov model library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hmm-hmatrix" = callPackage @@ -141360,6 +148845,8 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Hidden Markov Models using HMatrix primitives"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hmm-lapack" = callPackage @@ -141408,7 +148895,9 @@ self: { executableSystemDepends = [ ncurses ]; description = "An ncurses mp3 player written in Haskell"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hmp3"; + broken = true; }) {inherit (pkgs) ncurses;}; "hmp3-ng" = callPackage @@ -141499,6 +148988,7 @@ self: { ]; description = "Haskell Music Theory Diagrams"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "hmumps" = callPackage @@ -141517,7 +149007,9 @@ self: { ]; description = "Interpreter for the MUMPS langugae"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hmumps"; + broken = true; }) {}; "hnetcdf" = callPackage @@ -141547,6 +149039,7 @@ self: { testSystemDepends = [ netcdf ]; description = "Haskell NetCDF library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) netcdf;}; "hnix" = callPackage @@ -141735,6 +149228,8 @@ self: { ]; description = "A reasonably fast and simple neural network library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hnock" = callPackage @@ -141750,7 +149245,9 @@ self: { testHaskellDepends = [ base ]; description = "A Nock interpreter"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hnock"; + broken = true; }) {}; "hnop" = callPackage @@ -141763,7 +149260,9 @@ self: { isExecutable = true; executableHaskellDepends = [ base ]; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "hnop"; + broken = true; }) {}; "hnormalise" = callPackage @@ -141805,6 +149304,7 @@ self: { ]; description = "Log message normalisation tool producing structured JSON messages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ho-rewriting" = callPackage @@ -141820,6 +149320,8 @@ self: { testHaskellDepends = [ base compdata patch-combinators ]; description = "Generic rewrite rules with safe treatment of variables and binders"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hoauth" = callPackage @@ -141837,6 +149339,8 @@ self: { ]; description = "A Haskell implementation of OAuth 1.0a protocol."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hoauth2" = callPackage @@ -141904,6 +149408,7 @@ self: { ]; description = "hoauth2 demo application"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hoauth2-demo"; }) {}; @@ -141924,6 +149429,8 @@ self: { ]; description = "OAuth2 Identity Providers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hoauth2-providers-tutorial" = callPackage @@ -141945,6 +149452,7 @@ self: { executableHaskellDepends = [ base ]; description = "tutorial for hoauth2-providers module"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hoauth2-providers-tutorial"; }) {}; @@ -141965,7 +149473,9 @@ self: { executableHaskellDepends = [ base ]; description = "Tutorial for using hoauth2"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hoauth2-tutorial"; + broken = true; }) {}; "hob" = callPackage @@ -141993,6 +149503,7 @@ self: { ]; description = "A source code editor aiming for the convenience of use"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hob"; }) {}; @@ -142011,7 +149522,9 @@ self: { ]; description = "A small file watcher for OSX"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hobbes"; + broken = true; }) {}; "hobbits" = callPackage @@ -142029,6 +149542,8 @@ self: { ]; description = "A library for canonically representing terms with binding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hocilib" = callPackage @@ -142048,6 +149563,8 @@ self: { testSystemDepends = [ ocilib ]; description = "FFI binding to OCILIB"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {ocilib = null;}; "hocker" = callPackage @@ -142090,6 +149607,8 @@ self: { ]; description = "Interact with the docker registry and generate nix build instructions"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hocon" = callPackage @@ -142102,6 +149621,8 @@ self: { testHaskellDepends = [ base hspec MissingH parsec split ]; description = "Small library for typesafe's configuration specification"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hodatime" = callPackage @@ -142125,6 +149646,8 @@ self: { benchmarkHaskellDepends = [ base criterion random ]; description = "A fully featured date/time library based on Nodatime"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hoe" = callPackage @@ -142143,7 +149666,9 @@ self: { ]; description = "hoe: Haskell One-liner Evaluator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hoe"; + broken = true; }) {}; "hofix-mtl" = callPackage @@ -142155,6 +149680,8 @@ self: { libraryHaskellDepends = [ base mtl star-to-star template-haskell ]; description = "defining @mtl@-ready monads as * -> * fixed-points"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hog" = callPackage @@ -142172,7 +149699,9 @@ self: { ]; description = "Simple IRC logger bot"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hog"; + broken = true; }) {}; "hogg" = callPackage @@ -142190,6 +149719,8 @@ self: { ]; description = "Library and tools to manipulate the Ogg container format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hoggl" = callPackage @@ -142215,7 +149746,9 @@ self: { ]; description = "Bindings to the Toggl.com REST API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hoggl"; + broken = true; }) {}; "hogre" = callPackage @@ -142231,6 +149764,7 @@ self: { doHaddock = false; description = "Haskell binding to a subset of OGRE"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {OGRE = null; OgreMain = null; cgen-hs = null; grgen = null;}; "hogre-examples" = callPackage @@ -142246,6 +149780,7 @@ self: { executableSystemDepends = [ OgreMain ]; description = "Examples for using Hogre"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {OgreMain = null;}; "hois" = callPackage @@ -142261,7 +149796,9 @@ self: { executableHaskellDepends = [ base X11 ]; description = "OIS bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "OISConsole"; + broken = true; }) {OIS = null;}; "hoist-error" = callPackage @@ -142317,6 +149854,8 @@ self: { libraryHaskellDepends = [ base random safe ]; description = "An engine for Texas hold'em Poker"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hole" = callPackage @@ -142328,6 +149867,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Higher kinded type removal"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "holey-format" = callPackage @@ -142363,6 +149904,8 @@ self: { testToolDepends = [ markdown-unlit tasty-discover ]; description = "Tools and combinators for solving constraint problems"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "holy-project" = callPackage @@ -142397,6 +149940,7 @@ self: { doCheck = false; description = "Start your Haskell project with cabal, git and tests"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "homeomorphic" = callPackage @@ -142408,6 +149952,8 @@ self: { libraryHaskellDepends = [ base containers mtl QuickCheck ]; description = "Homeomorphic Embedding Test"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hommage" = callPackage @@ -142421,6 +149967,7 @@ self: { ]; description = "Haskell Offline Music Manipulation And Generation EDSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hommage-ds" = callPackage @@ -142447,6 +149994,8 @@ self: { testHaskellDepends = [ base ]; description = "Constructs FAlgebras from typeclasses, making Haskell functions homoiconic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "homotuple" = callPackage @@ -142463,6 +150012,7 @@ self: { libraryHaskellDepends = [ base OneTuple Only single-tuple ]; description = "Homotuple, all whose elements are the same type"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "homplexity" = callPackage @@ -142493,7 +150043,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell code quality tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "homplexity-cli"; + broken = true; }) {}; "homura-stopwatch" = callPackage @@ -142550,6 +150102,8 @@ self: { testSystemDepends = [ freenect OpenNI2 ]; description = "OpenNI 2 binding"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {OpenNI2 = null; inherit (pkgs) freenect;}; "honk" = callPackage @@ -142580,7 +150134,9 @@ self: { ]; description = "Simple tool for fetching and merging hoogle data"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hoobuddy"; + broken = true; }) {}; "hood" = callPackage @@ -142593,6 +150149,7 @@ self: { testHaskellDepends = [ base ghc-prim ]; description = "Debugging by observing in place"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hood-off" = callPackage @@ -142604,6 +150161,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Dummy package to disable Hood without having to remove all the calls to observe"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hood2" = callPackage @@ -142615,6 +150174,8 @@ self: { libraryHaskellDepends = [ array base ]; description = "Debugging by observing in place"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hoodie" = callPackage @@ -142632,6 +150193,7 @@ self: { ]; description = "A small, toy roguelike"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hoodie"; }) {}; @@ -142653,6 +150215,7 @@ self: { executableHaskellDepends = [ base cmdargs hoodle-core ]; description = "Executable for hoodle"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hoodle"; }) {}; @@ -142670,6 +150233,7 @@ self: { ]; description = "text builder for hoodle file format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hoodle-core" = callPackage @@ -142702,6 +150266,7 @@ self: { librarySystemDepends = [ libX11 libXi ]; description = "Core library for hoodle"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXi;}; "hoodle-extra" = callPackage @@ -142727,6 +150292,7 @@ self: { ]; description = "extra hoodle tools"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "hoodle-parser" = callPackage @@ -142744,6 +150310,7 @@ self: { ]; description = "Hoodle file parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hoodle-publish" = callPackage @@ -142770,6 +150337,7 @@ self: { ]; description = "publish hoodle files as a static web site"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hoodle-publish"; }) {}; @@ -142791,6 +150359,7 @@ self: { ]; description = "Hoodle file renderer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hoodle-types" = callPackage @@ -142807,6 +150376,8 @@ self: { ]; description = "Data types for programs for hoodle file format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hoogle" = callPackage @@ -142859,7 +150430,9 @@ self: { ]; description = "Easily generate Hoogle indices for installed packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hoogle-index"; + broken = true; }) {}; "hooks-dir" = callPackage @@ -142871,6 +150444,8 @@ self: { libraryHaskellDepends = [ base directory process text ]; description = "run executables in a directory as hooks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hookup" = callPackage @@ -142910,6 +150485,8 @@ self: { ]; description = "Object-Oriented Programming in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hoopl" = callPackage @@ -142929,6 +150506,8 @@ self: { ]; description = "A library to support dataflow analysis and optimization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hoovie" = callPackage @@ -142952,6 +150531,7 @@ self: { ]; description = "Haskell Media Server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hoovie"; }) {}; @@ -142969,6 +150549,8 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Haskell binding to libopencc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) opencc;}; "hopencl" = callPackage @@ -142988,6 +150570,8 @@ self: { ]; description = "Haskell bindings for OpenCL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {OpenCL = null;}; "hopenpgp-tools" = callPackage @@ -143019,6 +150603,8 @@ self: { executableToolDepends = [ alex happy ]; description = "hOpenPGP-based command-line tools"; license = lib.licenses.agpl3Plus; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hopenssl" = callPackage @@ -143064,6 +150650,8 @@ self: { ]; description = "Hopfield Networks, Boltzmann Machines and Clusters"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {MagickCore = null; inherit (pkgs) imagemagick;}; "hopfield-networks" = callPackage @@ -143115,6 +150703,7 @@ self: { ]; description = "C++ FFI generator - Documentation"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "hoppy-generator" = callPackage @@ -143131,6 +150720,8 @@ self: { ]; description = "C++ FFI generator - Code generator"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hoppy-runtime" = callPackage @@ -143146,6 +150737,7 @@ self: { ]; description = "C++ FFI generator - Runtime support"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "hoppy-std" = callPackage @@ -143160,6 +150752,7 @@ self: { ]; description = "C++ FFI generator - Standard library bindings"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "hops" = callPackage @@ -143192,7 +150785,9 @@ self: { ]; description = "Handy Operations on Power Series"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hops"; + broken = true; }) {}; "hoq" = callPackage @@ -143212,7 +150807,9 @@ self: { executableToolDepends = [ alex happy ]; description = "A language based on homotopy type theory with an interval type"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hoq"; + broken = true; }) {}; "hora" = callPackage @@ -143241,6 +150838,8 @@ self: { libraryHaskellDepends = [ AC-Angle base time ]; description = "Sunrise and sunset UTC approximations from latitude and longitude coordinates"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "horizon-gen-nix" = callPackage @@ -143263,6 +150862,8 @@ self: { executableHaskellDepends = [ base directory path sydtest ]; description = "Generate nix expressions from horizon-spec definitions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "horizon-spec" = callPackage @@ -143290,6 +150891,8 @@ self: { libraryHaskellDepends = [ base horizon-spec lens ]; description = "Horizon Stable Package Set Lenses"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "horizon-spec-pretty" = callPackage @@ -143305,6 +150908,8 @@ self: { ]; description = "Horizon Stable Package Set Pretty Printer"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "horizontal-rule" = callPackage @@ -143343,7 +150948,9 @@ self: { executableHaskellDepends = [ base optparse-applicative text ]; description = "Rename function definitions returned by SMT solvers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "horname"; + broken = true; }) {}; "hosc" = callPackage @@ -143379,6 +150986,8 @@ self: { ]; description = "Haskell Open Sound Control JSON Serialisation"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hosc-utils" = callPackage @@ -143456,7 +151065,9 @@ self: { ]; description = "An dns server which is extremely easy to config"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hosts-server"; + broken = true; }) {}; "hothasktags" = callPackage @@ -143475,7 +151086,9 @@ self: { ]; description = "Generates ctags for Haskell, incorporating import lists and qualified imports"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hothasktags"; + broken = true; }) {}; "hotswap" = callPackage @@ -143487,6 +151100,7 @@ self: { libraryHaskellDepends = [ base plugins ]; description = "Simple code hotswapping"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hourglass" = callPackage @@ -143517,6 +151131,8 @@ self: { libraryHaskellDepends = [ base hourglass parsec ]; description = "A small library for parsing more human friendly date/time formats"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hourglass-orphans" = callPackage @@ -143562,7 +151178,9 @@ self: { ]; description = "A Haskell implementation of Foreman"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "houseman"; + broken = true; }) {}; "hout" = callPackage @@ -143591,6 +151209,8 @@ self: { ]; description = "Heap profiling helper library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hp2any-graph" = callPackage @@ -143612,6 +151232,7 @@ self: { executableSystemDepends = [ freeglut libGL libGLU ]; description = "Real-time heap graphing utility and profile stream server with a reusable graphing module"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) freeglut; inherit (pkgs) libGL; inherit (pkgs) libGLU;}; @@ -143633,6 +151254,7 @@ self: { ]; description = "A utility to visualise and compare heap profiles"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hp2any-manager"; }) {}; @@ -143780,7 +151402,9 @@ self: { ]; description = "Convert Cabal manifests into hpack's package.yamls"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hpack-convert"; + broken = true; }) {}; "hpack-dhall" = callPackage @@ -143811,6 +151435,8 @@ self: { ]; description = "hpack's dhalling"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hpaco" = callPackage @@ -143828,6 +151454,7 @@ self: { ]; description = "Modular template compiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hpaco"; }) {}; @@ -143846,6 +151473,7 @@ self: { ]; description = "Modular template compiler library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hpage" = callPackage @@ -143867,6 +151495,7 @@ self: { ]; description = "A scrapbook for Haskell developers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hpage"; }) {}; @@ -143881,6 +151510,8 @@ self: { description = "Binding for the PAPI library"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) papi;}; "hpaste" = callPackage @@ -143908,6 +151539,7 @@ self: { ]; description = "Haskell paste web site"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hpaste"; }) {}; @@ -143928,7 +151560,9 @@ self: { ]; description = "A command-line client for hpaste.org"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hpasteit"; + broken = true; }) {}; "hpath" = callPackage @@ -143969,6 +151603,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Alternative to 'directory' package with ByteString based filepaths"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hpath-filepath" = callPackage @@ -143997,6 +151632,7 @@ self: { ]; description = "High-level IO operations on files/directories"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hpath-posix" = callPackage @@ -144094,6 +151730,8 @@ self: { testHaskellDepends = [ base HUnit ]; description = "Coveralls.io support for Haskell."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hpc-lcov" = callPackage @@ -144168,6 +151806,7 @@ self: { ]; description = "Tracer with AJAX interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hpc-tracer"; }) {}; @@ -144209,7 +151848,9 @@ self: { executableHaskellDepends = [ base random ]; description = "a simple password generator"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; mainProgram = "hpg"; + broken = true; }) {}; "hpio" = callPackage @@ -144239,6 +151880,8 @@ self: { ]; description = "Monads for GPIO in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hplayground" = callPackage @@ -144255,6 +151898,7 @@ self: { ]; description = "monadic, reactive Formlets running in the Web browser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hplaylist" = callPackage @@ -144269,7 +151913,9 @@ self: { executableHaskellDepends = [ base directory filepath process ]; description = "Application for managing playlist files on a music player"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hplaylist"; + broken = true; }) {}; "hpodder" = callPackage @@ -144289,7 +151935,9 @@ self: { ]; description = "Podcast Aggregator (downloader)"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hpodder"; + broken = true; }) {}; "hpp" = callPackage @@ -144339,6 +151987,8 @@ self: { ]; description = "Haskell bindings to libpqtypes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {libpq = null;}; "hpqtypes-effectful" = callPackage @@ -144358,6 +152008,7 @@ self: { ]; description = "Adaptation of the hpqtypes library for the effectful ecosystem"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hpqtypes-extras" = callPackage @@ -144380,6 +152031,7 @@ self: { benchmarkHaskellDepends = [ base deepseq tasty-bench ]; description = "Extra utilities for hpqtypes library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hprotoc" = callPackage @@ -144409,6 +152061,7 @@ self: { executableToolDepends = [ alex ]; description = "Parse Google Protocol Buffer specifications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hprotoc"; }) {}; @@ -144438,6 +152091,7 @@ self: { executableToolDepends = [ alex ]; description = "Parse Google Protocol Buffer specifications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hprotoc"; }) {}; @@ -144481,6 +152135,7 @@ self: { libraryHaskellDepends = [ base filepath hcg-minus process ]; description = "Haskell Postscript"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "hps-cairo" = callPackage @@ -144496,6 +152151,7 @@ self: { executableHaskellDepends = [ base cairo gtk hps random ]; description = "Cairo rendering for the haskell postscript library"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "hps-kmeans" = callPackage @@ -144507,6 +152163,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "A nice implementation of the k-Means algorithm"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hpuz" = callPackage @@ -144534,6 +152192,8 @@ self: { ]; description = "Highlight source code using Pygments"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hpylos" = callPackage @@ -144565,7 +152225,9 @@ self: { ]; description = "pyrg utility done right"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hpyrg"; + broken = true; }) {}; "hpython" = callPackage @@ -144595,6 +152257,7 @@ self: { ]; description = "Python language tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -144622,6 +152285,7 @@ self: { testHaskellDepends = [ base hspec hspec-expectations ]; description = "Quantitative Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gsl;}; "hquantlib" = callPackage @@ -144651,6 +152315,7 @@ self: { ]; description = "HQuantLib is a port of essencial parts of QuantLib to Haskell"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "mctest"; }) {}; @@ -144663,6 +152328,8 @@ self: { libraryHaskellDepends = [ base time ]; description = "HQuantLib Time is a business calendar functions extracted from HQuantLib"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hquery" = callPackage @@ -144680,6 +152347,8 @@ self: { ]; description = "A query language for transforming HTML5"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hranker" = callPackage @@ -144693,6 +152362,7 @@ self: { executableHaskellDepends = [ base HCL NonEmpty ]; description = "Basic utility for ranking a list of items"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hranker"; }) {}; @@ -144756,6 +152426,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "A Type dependent Highlevel HTTP client library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -144781,6 +152452,7 @@ self: { testToolDepends = [ hspec-discover markdown-unlit ]; description = "Conduit streaming support for Hreq"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hreq-core" = callPackage @@ -144801,6 +152473,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "Core functionality for Hreq Http client library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hrfsize" = callPackage @@ -144826,7 +152500,9 @@ self: { executableHaskellDepends = [ base containers ]; description = "A Cricket scoring application"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hricket"; + broken = true; }) {}; "hriemann" = callPackage @@ -144852,6 +152528,7 @@ self: { ]; description = "A Riemann Client for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hriemann-exe"; }) {}; @@ -144875,6 +152552,8 @@ self: { ]; description = "Embed a Ruby intepreter in your Haskell program !"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) ruby;}; "hs" = callPackage @@ -144898,6 +152577,7 @@ self: { ]; description = "GHC-toolchain installer broker"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hs"; }) {}; @@ -144961,6 +152641,7 @@ self: { benchmarkSystemDepends = [ libb2 ]; description = "A cryptohash-inspired library for blake2"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libb2;}; "hs-brotli" = callPackage @@ -144979,6 +152660,8 @@ self: { ]; description = "Compression and decompression in the brotli format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {brotlidec = null; brotlienc = null;}; "hs-captcha" = callPackage @@ -145084,7 +152767,9 @@ self: { ]; description = "Dependency Injection library for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hs-di-cases"; + broken = true; }) {}; "hs-dotnet" = callPackage @@ -145097,6 +152782,8 @@ self: { librarySystemDepends = [ ole32 oleaut32 ]; description = "Pragmatic .NET interop for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {ole32 = null; oleaut32 = null;}; "hs-duktape" = callPackage @@ -145121,6 +152808,8 @@ self: { ]; description = "Haskell bindings for a very compact embedded ECMAScript (JavaScript) engine"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hs-excelx" = callPackage @@ -145136,6 +152825,8 @@ self: { ]; description = "HS-Excelx provides basic read-only access to Excel 2007 and 2010 documents in XLSX format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hs-ffmpeg" = callPackage @@ -145147,6 +152838,7 @@ self: { libraryHaskellDepends = [ base bytestring haskell98 ]; description = "Bindings to FFMPEG library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hs-fltk" = callPackage @@ -145160,6 +152852,8 @@ self: { librarySystemDepends = [ fltk fltk_images ]; description = "Binding to GUI library FLTK"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) fltk; fltk_images = null;}; "hs-functors" = callPackage @@ -145201,6 +152895,7 @@ self: { ]; description = "Utility to generate haskell-names interface files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hs-gen-iface"; }) {}; @@ -145217,6 +152912,8 @@ self: { ]; description = "Haskell wrapper around the GIZA++ toolkit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hs-inspector" = callPackage @@ -145259,6 +152956,8 @@ self: { ]; description = "Java .class files assembler/disassembler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hs-json-rpc" = callPackage @@ -145272,6 +152971,8 @@ self: { ]; description = "JSON-RPC client library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hs-logo" = callPackage @@ -145298,7 +152999,9 @@ self: { ]; description = "Logo interpreter written in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hs-logo"; + broken = true; }) {}; "hs-mesos" = callPackage @@ -145357,7 +153060,9 @@ self: { executableHaskellDepends = [ base HandsomeSoup hxt random ]; description = "Name generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hs-nombre-generator"; + broken = true; }) {}; "hs-openmoji-data" = callPackage @@ -145757,7 +153462,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "DSL for musical patterns and transformation, based on contravariant functors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hs-pattrans"; + broken = true; }) {}; "hs-pgms" = callPackage @@ -145777,7 +153484,9 @@ self: { ]; description = "Programmer's Mine Sweeper in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hs-pgms"; + broken = true; }) {}; "hs-php-session" = callPackage @@ -145804,6 +153513,8 @@ self: { libraryHaskellDepends = [ base data-default-class text ]; description = "Create pkg-config configuration files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hs-pkpass" = callPackage @@ -145824,6 +153535,7 @@ self: { ]; description = "A library for Passbook pass creation & signing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hs-popen" = callPackage @@ -145861,6 +153573,8 @@ self: { libraryHaskellDepends = [ array base regex-base regex-posix ]; description = "Easy to use Regex"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hs-rqlite" = callPackage @@ -145877,6 +153591,8 @@ self: { ]; description = "A Haskell client for RQlite"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hs-rs-notify" = callPackage @@ -145897,7 +153613,9 @@ self: { testHaskellDepends = [ base protolude ]; description = "Experimental! Wraps this awesome rust library so you can use it in haskell. https://docs.rs/crate/notify"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "notify"; + broken = true; }) {notifier = null;}; "hs-scrape" = callPackage @@ -145918,6 +153636,8 @@ self: { ]; description = "Simple and easy web scraping and automation in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hs-sdl-term-emulator" = callPackage @@ -145939,6 +153659,7 @@ self: { executableHaskellDepends = [ base ]; description = "Terminal Emulator written in Haskell, SDL2 Backend"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hs-sdl-term-emulator"; }) {}; @@ -145971,7 +153692,9 @@ self: { ]; description = "snowtify send your result of `stack build` (`stack test`) to notify-daemon :dog2:"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "snowtify"; + broken = true; }) {}; "hs-speedscope" = callPackage @@ -146022,7 +153745,9 @@ self: { ]; description = "Create tag files (ctags and etags) for Haskell code"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hs-tags"; + broken = true; }) {}; "hs-term-emulator" = callPackage @@ -146044,6 +153769,8 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Terminal Emulator written in 100% Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hs-twitter" = callPackage @@ -146061,6 +153788,8 @@ self: { ]; description = "Haskell binding to the Twitter API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hs-twitterarchiver" = callPackage @@ -146075,7 +153804,9 @@ self: { executableHaskellDepends = [ base HTTP json mtl network pretty ]; description = "Commandline Twitter feed archiver"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hs-twitterarchiver"; + broken = true; }) {}; "hs-vcard" = callPackage @@ -146087,6 +153818,8 @@ self: { libraryHaskellDepends = [ base old-locale time ]; description = "Implements the RFC 2426 vCard 3.0 spec"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hs-watchman" = callPackage @@ -146106,6 +153839,8 @@ self: { ]; description = "Client library for Facebook's Watchman tool"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hs-zstd" = callPackage @@ -146194,7 +153929,9 @@ self: { ]; description = "Haskell to Brainfuck compiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hs2bf"; + broken = true; }) {}; "hs2dot" = callPackage @@ -146212,6 +153949,7 @@ self: { ]; description = "Generate graphviz-code from Haskell-code"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "hs2dot"; }) {}; @@ -146225,6 +153963,8 @@ self: { testHaskellDepends = [ base hspec template-haskell ]; description = "Translate Haskell types to PureScript"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsConfigure" = callPackage @@ -146249,6 +153989,8 @@ self: { libraryHaskellDepends = [ base bytestring unix ]; description = "I2C access for Haskell and Linux"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsPID" = callPackage @@ -146277,6 +154019,8 @@ self: { ]; description = "Sqlite3 bindings"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsXenCtrl" = callPackage @@ -146289,6 +154033,8 @@ self: { librarySystemDepends = [ xenctrl ]; description = "FFI bindings to the Xen Control library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {xenctrl = null;}; "hsakamai" = callPackage @@ -146349,6 +154095,8 @@ self: { ]; description = "OASIS Security Assertion Markup Language (SAML) V2.0"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libxml2;}; "hsass" = callPackage @@ -146389,6 +154137,7 @@ self: { testHaskellDepends = [ base cpython hspec ]; description = "Haskell bindings for PyAutoGUI, a library for automating user interaction"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hsay" = callPackage @@ -146403,7 +154152,9 @@ self: { executableHaskellDepends = [ base Hclip HTTP process unix ]; description = "(ab)Use Google Translate as a speech synthesiser"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hsay"; + broken = true; }) {}; "hsb2hs" = callPackage @@ -146440,6 +154191,7 @@ self: { ]; description = "simple utility for rolling filesystem backups"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hsbackup"; }) {}; @@ -146454,7 +154206,9 @@ self: { executableHaskellDepends = [ attoparsec base text vector ]; description = "A command line calculator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hsbc"; + broken = true; }) {}; "hsbencher" = callPackage @@ -146477,6 +154231,8 @@ self: { ]; description = "Launch and gather data from Haskell and non-Haskell benchmarks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsbencher-codespeed" = callPackage @@ -146495,6 +154251,7 @@ self: { ]; description = "Backend for uploading benchmark data to CodeSpeed"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hsbencher-fusion" = callPackage @@ -146518,6 +154275,7 @@ self: { ]; description = "Backend for uploading benchmark data to Google Fusion Tables"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hsblst" = callPackage @@ -146595,6 +154353,7 @@ self: { ]; description = "Haskell SuperCollider Auditor"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "hsc3-cairo" = callPackage @@ -146607,6 +154366,8 @@ self: { libraryHaskellDepends = [ base cairo gtk hosc hsc3 split ]; description = "haskell supercollider cairo drawing"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsc3-data" = callPackage @@ -146624,6 +154385,7 @@ self: { ]; description = "haskell supercollider data"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "hsc3-db" = callPackage @@ -146636,6 +154398,8 @@ self: { libraryHaskellDepends = [ base hsc3 safe ]; description = "Haskell SuperCollider Unit Generator Database"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsc3-dot" = callPackage @@ -146648,6 +154412,8 @@ self: { libraryHaskellDepends = [ base directory filepath hsc3 process ]; description = "haskell supercollider graph drawing"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsc3-forth" = callPackage @@ -146667,6 +154433,7 @@ self: { ]; description = "FORTH SUPERCOLLIDER"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hsc3-forth"; }) {}; @@ -146692,6 +154459,7 @@ self: { executableHaskellDepends = [ base ]; description = "Haskell SuperCollider Graphs"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hsc3-graphs"; }) {}; @@ -146713,6 +154481,8 @@ self: { ]; description = "Haskell SuperCollider Language"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsc3-lisp" = callPackage @@ -146732,6 +154502,7 @@ self: { ]; description = "LISP SUPERCOLLIDER"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hsc3-lisp"; }) {}; @@ -146750,6 +154521,7 @@ self: { ]; description = "Haskell SuperCollider Plotting"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "hsc3-process" = callPackage @@ -146769,6 +154541,8 @@ self: { ]; description = "Create and control scsynth processes"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsc3-rec" = callPackage @@ -146781,6 +154555,8 @@ self: { libraryHaskellDepends = [ base hsc3 ]; description = "Haskell SuperCollider Record Variants"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsc3-rw" = callPackage @@ -146798,6 +154574,8 @@ self: { ]; description = "hsc3 re-writing"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsc3-server" = callPackage @@ -146824,6 +154602,7 @@ self: { ]; description = "SuperCollider server resource management and synchronization"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "hsc3-sf" = callPackage @@ -146836,6 +154615,8 @@ self: { libraryHaskellDepends = [ base bytestring hosc ]; description = "Haskell SuperCollider SoundFile"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsc3-sf-hsndfile" = callPackage @@ -146852,6 +154633,7 @@ self: { ]; description = "Haskell SuperCollider SoundFile"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "hsc3-unsafe" = callPackage @@ -146864,6 +154646,8 @@ self: { libraryHaskellDepends = [ base hsc3 ]; description = "Unsafe Haskell SuperCollider"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsc3-utils" = callPackage @@ -146885,6 +154669,7 @@ self: { ]; description = "Haskell SuperCollider Utilities"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "hscaffold" = callPackage @@ -146911,7 +154696,9 @@ self: { ]; description = "Very simple file/directory structure scaffolding writer monad EDSL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hsfiles-from-directory"; + broken = true; }) {}; "hscamwire" = callPackage @@ -146926,6 +154713,8 @@ self: { librarySystemDepends = [ camwire_1394 dc1394_control raw1394 ]; description = "Haskell bindings to IIDC1394 cameras, via Camwire"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {camwire_1394 = null; dc1394_control = null; raw1394 = null;}; "hscassandra" = callPackage @@ -146942,6 +154731,7 @@ self: { ]; description = "cassandra database interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hscd" = callPackage @@ -146956,7 +154746,9 @@ self: { executableHaskellDepends = [ aeson base bytestring ghc-prim HTTP ]; description = "Command line client and library for SoundCloud.com"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hscd"; + broken = true; }) {}; "hscdio" = callPackage @@ -146981,6 +154773,8 @@ self: { ]; description = "Haskell bindings to the libcdio disc-reading library"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + broken = true; }) {cdio = null;}; "hscharm" = callPackage @@ -147041,6 +154835,8 @@ self: { ]; description = "Describe schemas for your Haskell data types"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hschema-prettyprinter" = callPackage @@ -147124,7 +154920,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "hscim json schema and server implementation"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hscim-server"; + broken = true; }) {}; "hsclock" = callPackage @@ -147138,7 +154936,9 @@ self: { executableHaskellDepends = [ base cairo glib gtk old-time ]; description = "An elegant analog clock using Haskell, GTK and Cairo"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hsclock"; + broken = true; }) {}; "hscolour" = callPackage @@ -147177,6 +154977,7 @@ self: { ]; description = "cscope like browser for Haskell code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hscope"; }) {}; @@ -147215,7 +155016,9 @@ self: { testHaskellDepends = [ base containers text ]; description = "Collision-resistant IDs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "perf-test"; + broken = true; }) {}; "hscurses" = callPackage @@ -147290,6 +155093,7 @@ self: { ]; description = "Haskell development library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hsdev"; }) {}; @@ -147303,6 +155107,8 @@ self: { libraryHaskellDepends = [ base bytestring hosc ]; description = "Haskell SDIF"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsdip" = callPackage @@ -147317,7 +155123,9 @@ self: { libraryHaskellDepends = [ base cairo containers HUnit parsec ]; description = "hsdip - a Diplomacy parser/renderer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hsdip"; + broken = true; }) {}; "hsdns" = callPackage @@ -147350,6 +155158,8 @@ self: { ]; description = "Caching asynchronous DNS resolver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hse-cpp" = callPackage @@ -147378,6 +155188,8 @@ self: { ]; description = "Haskell eBay SDK"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsemail" = callPackage @@ -147421,6 +155233,7 @@ self: { ]; description = "sendxmpp clone, sending XMPP messages via CLI"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hsendxmpp"; }) {}; @@ -147442,7 +155255,9 @@ self: { ]; description = "Virtual Haskell Environment builder"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hsenv"; + broken = true; }) {}; "hserv" = callPackage @@ -147498,6 +155313,7 @@ self: { libraryHaskellDepends = [ base containers language-puppet text ]; description = "A small and ugly library that emulates the output of the puppet facter program"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "hsfcsh" = callPackage @@ -147513,6 +155329,8 @@ self: { ]; description = "Incremental builder for flash"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsfilt" = callPackage @@ -147526,7 +155344,9 @@ self: { executableHaskellDepends = [ base ghc ]; description = "Z-decoder"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hsfilt"; + broken = true; }) {}; "hsforce" = callPackage @@ -147550,6 +155370,8 @@ self: { ]; description = "Salesforce API Client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsgnutls" = callPackage @@ -147562,6 +155384,8 @@ self: { librarySystemDepends = [ gcrypt gnutls ]; description = "Library wrapping the GnuTLS API"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {gcrypt = null; inherit (pkgs) gnutls;}; "hsgnutls-yj" = callPackage @@ -147574,6 +155398,8 @@ self: { librarySystemDepends = [ gcrypt gnutls ]; description = "Library wrapping the GnuTLS API"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {gcrypt = null; inherit (pkgs) gnutls;}; "hsgsom" = callPackage @@ -147586,6 +155412,8 @@ self: { libraryHaskellDepends = [ base containers random stm time ]; description = "An implementation of the GSOM clustering algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsgtd" = callPackage @@ -147680,7 +155508,9 @@ self: { doHaddock = false; description = "Extend the import list of a Haskell source file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hsimport"; + broken = true; }) {}; "hsini" = callPackage @@ -147750,6 +155580,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "LSP interface over the hsinspect binary"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "hsinspect-lsp"; }) {}; @@ -147784,6 +155615,8 @@ self: { libraryHaskellDepends = [ base Cabal ]; description = "Skeleton for new Haskell programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hslackbuilder" = callPackage @@ -147799,7 +155632,9 @@ self: { ]; description = "HSlackBuilder automatically generates slackBuild scripts from a cabal package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cabal2slackBuild"; + broken = true; }) {}; "hslibsvm" = callPackage @@ -147813,6 +155648,8 @@ self: { librarySystemDepends = [ svm ]; description = "A FFI binding to libsvm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {svm = null;}; "hslinks" = callPackage @@ -147829,7 +155666,9 @@ self: { ]; description = "Resolves links to Haskell identifiers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hslinks"; + broken = true; }) {}; "hslogger" = callPackage @@ -147867,6 +155706,8 @@ self: { ]; description = "Parsing hslogger-produced logs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hslogger-template" = callPackage @@ -147878,6 +155719,8 @@ self: { libraryHaskellDepends = [ base hslogger mtl template-haskell ]; description = "Automatic generation of hslogger functions"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hslogger4j" = callPackage @@ -147916,6 +155759,7 @@ self: { ]; description = "A library to work with, or as, a logstash server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hslua" = callPackage @@ -148280,6 +156124,8 @@ self: { testHaskellDepends = [ aeson base bytestring colour containers ]; description = "HSLuv conversion utility"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsmagick" = callPackage @@ -148301,6 +156147,8 @@ self: { libraryPkgconfigDepends = [ freetype GraphicsMagick lcms libxml2 ]; description = "FFI bindings for the GraphicsMagick library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {GraphicsMagick = null; inherit (pkgs) bzip2; inherit (pkgs) freetype; inherit (pkgs) jasper; inherit (pkgs) lcms; inherit (pkgs) libjpeg; @@ -148338,7 +156186,9 @@ self: { ]; description = "Tool for generating .dir-locals.el for intero"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hsmodetweaks"; + broken = true; }) {}; "hsmtpclient" = callPackage @@ -148350,6 +156200,8 @@ self: { libraryHaskellDepends = [ array base directory network old-time ]; description = "Simple SMTP Client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsndfile" = callPackage @@ -148406,7 +156258,9 @@ self: { ]; description = "Nock 5K interpreter"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "hsnock"; + broken = true; }) {}; "hsnoise" = callPackage @@ -148431,7 +156285,9 @@ self: { executableHaskellDepends = [ base network pcap ]; description = "a miniature network sniffer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hsns"; + broken = true; }) {}; "hsnsq" = callPackage @@ -148450,6 +156306,8 @@ self: { ]; description = "Haskell NSQ client"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsntp" = callPackage @@ -148466,6 +156324,8 @@ self: { executableHaskellDepends = [ unix ]; description = "Libraries to use SNTP protocol and small client/server implementations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsoptions" = callPackage @@ -148490,6 +156350,8 @@ self: { ]; description = "Haskell library that supports command-line flag processing"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsoz" = callPackage @@ -148528,6 +156390,8 @@ self: { ]; description = "Iron, Hawk, Oz: Web auth protocols"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsp" = callPackage @@ -148550,6 +156414,8 @@ self: { libraryHaskellDepends = [ base containers harp hsp network ]; description = "Facilitates running Haskell Server Pages web pages as CGI programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsparklines" = callPackage @@ -148583,6 +156449,7 @@ self: { ]; description = "A SPARQL query generator and DSL, and a client to query a SPARQL server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hspear" = callPackage @@ -148598,6 +156465,8 @@ self: { ]; description = "Haskell Spear Parser"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hspec_2_7_10" = callPackage @@ -148660,6 +156529,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "A Testing Framework for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hspec-attoparsec" = callPackage @@ -148979,6 +156850,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "An hspec expectation that asserts a value matches a pattern"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hspec-expectations-pretty" = callPackage @@ -148994,6 +156867,7 @@ self: { ]; description = "hspec-expectations with pretty printing on failure"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hspec-expectations-pretty-diff" = callPackage @@ -149022,6 +156896,8 @@ self: { testHaskellDepends = [ base hspec-meta ]; description = "An experimental DSL for testing on top of Hspec"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hspec-golden_0_1_0_3" = callPackage @@ -149126,6 +157002,8 @@ self: { libraryHaskellDepends = [ base blaze-markup hspec ]; description = "Jenkins-friendly XML formatter for Hspec"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hspec-junit-formatter" = callPackage @@ -149148,6 +157026,8 @@ self: { testToolDepends = [ markdown-unlit ]; description = "A JUnit XML runner/formatter for hspec"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hspec-laws" = callPackage @@ -149285,6 +157165,8 @@ self: { ]; description = "Orphan instances of MonadBase and MonadBaseControl for SpecM"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hspec-multicheck" = callPackage @@ -149316,6 +157198,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Read environment variables for hspec tests"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hspec-parsec" = callPackage @@ -149349,6 +157233,7 @@ self: { ]; description = "Helpers for creating database tests with hspec and pg-transact"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hspec-server" = callPackage @@ -149396,6 +157281,7 @@ self: { ]; description = "Add an hspec test-suite in one command"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hspec-setup"; }) {}; @@ -149408,6 +157294,7 @@ self: { libraryHaskellDepends = [ hspec test-shouldbe ]; description = "Convenience wrapper and utilities for hspec"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hspec-slow" = callPackage @@ -149424,6 +157311,8 @@ self: { testHaskellDepends = [ base hspec mtl stm ]; description = "Find slow test cases"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hspec-smallcheck" = callPackage @@ -149467,6 +157356,7 @@ self: { ]; description = "A library for testing with Hspec and the Snap Web Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hspec-stack-rerun" = callPackage @@ -149488,6 +157378,8 @@ self: { sha256 = "008gm0qvhvp6z6a9sq5vpljqb90258apd83rkzy47k3bczy1sgmj"; libraryHaskellDepends = [ base hspec ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hspec-tables" = callPackage @@ -149502,6 +157394,8 @@ self: { testHaskellDepends = [ base hspec hspec-core ]; description = "Table-driven (by-example) HSpec tests"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hspec-test-framework" = callPackage @@ -149640,6 +157534,8 @@ self: { libraryHaskellDepends = [ base hspec hspec-discover ]; description = "Alpha version of Hspec 2.0"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hspecVariant" = callPackage @@ -149652,6 +157548,7 @@ self: { testHaskellDepends = [ base hspec QuickCheck QuickCheckVariant ]; description = "Spec for testing properties"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "hspkcs11" = callPackage @@ -149670,6 +157567,8 @@ self: { ]; description = "Wrapper for PKCS #11 interface"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hspr-sh" = callPackage @@ -149712,6 +157611,8 @@ self: { ]; description = "A client library for the spread toolkit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hspresent" = callPackage @@ -149726,7 +157627,9 @@ self: { doHaddock = false; description = "A terminal presentation tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hspresent"; + broken = true; }) {}; "hspretty" = callPackage @@ -149748,7 +157651,9 @@ self: { testHaskellDepends = [ base doctest ]; description = "My opinionated Haskell project formatter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hspretty"; + broken = true; }) {}; "hsprocess" = callPackage @@ -149774,6 +157679,7 @@ self: { ]; description = "The Haskell Stream Processor command line utility"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hsp"; }) {}; @@ -149786,6 +157692,8 @@ self: { libraryHaskellDepends = [ base old-time ]; description = "Database access from Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsql-mysql" = callPackage @@ -149800,6 +157708,7 @@ self: { librarySystemDepends = [ mysqlclient ]; description = "MySQL driver for HSQL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {mysqlclient = null;}; "hsql-odbc" = callPackage @@ -149812,6 +157721,7 @@ self: { librarySystemDepends = [ unixODBC ]; description = "A Haskell Interface to ODBC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) unixODBC;}; "hsql-postgresql" = callPackage @@ -149824,6 +157734,7 @@ self: { librarySystemDepends = [ postgresql ]; description = "A Haskell Interface to PostgreSQL via the PQ library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) postgresql;}; "hsql-sqlite3" = callPackage @@ -149836,6 +157747,7 @@ self: { librarySystemDepends = [ sqlite ]; description = "SQLite3 driver for HSQL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) sqlite;}; "hsqml" = callPackage @@ -150002,6 +157914,7 @@ self: { ]; description = "Access to the Readability API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hsrelp" = callPackage @@ -150016,6 +157929,8 @@ self: { ]; description = "RELP (Reliable Event Logging Protocol) server implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsseccomp" = callPackage @@ -150029,6 +157944,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit unix ]; description = "Haskell bindings to libseccomp"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {seccomp = null;}; "hssh" = callPackage @@ -150064,6 +157981,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "Haskell for Unix shell scripting tasks"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hssourceinfo" = callPackage @@ -150100,6 +158019,8 @@ self: { ]; description = "SQL parser and type checker"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hssqlppp-th" = callPackage @@ -150118,6 +158039,7 @@ self: { ]; description = "hssqlppp extras which need template-haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hstar" = callPackage @@ -150140,6 +158062,7 @@ self: { executableToolDepends = [ cpphs ]; description = "Haskell version of tar CLI utility"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hstar"; }) {}; @@ -150167,6 +158090,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Statistical Computing in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hstatsd" = callPackage @@ -150178,6 +158103,8 @@ self: { libraryHaskellDepends = [ base bytestring mtl network text ]; description = "Quick and dirty statsd interface"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hstest" = callPackage @@ -150195,7 +158122,9 @@ self: { ]; description = "Runs tests via QuickCheck1 and HUnit; like quickCheck-script but uses GHC api"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hstest"; + broken = true; }) {}; "hstidy" = callPackage @@ -150209,7 +158138,9 @@ self: { executableHaskellDepends = [ base haskell-src-exts ]; description = "Takes haskell source on stdin, parses it, then prettyprints it to stdout"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hstidy"; + broken = true; }) {}; "hstorchat" = callPackage @@ -150267,6 +158198,7 @@ self: { testHaskellDepends = [ async base ]; description = "A Tox protocol implementation in Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "hstradeking" = callPackage @@ -150291,6 +158223,7 @@ self: { ]; description = "Tradeking API bindings for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tradeking"; }) {}; @@ -150309,7 +158242,9 @@ self: { ]; description = "Checks Haskell source code for style compliance"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hstyle"; + broken = true; }) {}; "hstzaar" = callPackage @@ -150330,6 +158265,7 @@ self: { ]; description = "A two player abstract strategy game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hstzaar"; }) {}; @@ -150352,6 +158288,7 @@ self: { ]; description = "One-time, faithful conversion of Subversion repositories to Git"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hsubconvert"; }) {}; @@ -150381,7 +158318,9 @@ self: { ]; description = "Sudoku game with a GTK3 interface"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hsudoku"; + broken = true; }) {}; "hsverilog" = callPackage @@ -150413,6 +158352,7 @@ self: { librarySystemDepends = [ ncurses readline swipl ]; description = "embedding prolog in haskell"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) ncurses; inherit (pkgs) readline; swipl = null;}; @@ -150429,7 +158369,9 @@ self: { libraryHaskellDepends = [ base haskell-src-exts mtl utf8-string ]; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "trhsx"; + broken = true; }) {}; "hsx-jmacro" = callPackage @@ -150454,6 +158396,7 @@ self: { libraryHaskellDepends = [ base hsx mtl ]; description = "XHTML utilities to use together with HSX"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hsx2hs" = callPackage @@ -150488,6 +158431,8 @@ self: { libraryHaskellDepends = [ base ]; description = "FFI to syscalls"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hsyslog" = callPackage @@ -150519,6 +158464,7 @@ self: { ]; description = "syslog over TCP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hsyslog-udp" = callPackage @@ -150535,6 +158481,8 @@ self: { testHaskellDepends = [ base hspec time ]; description = "Log to syslog over a network via UDP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hszephyr" = callPackage @@ -150547,6 +158495,8 @@ self: { librarySystemDepends = [ com_err zephyr ]; description = "Simple libzephyr bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {com_err = null; zephyr = null;}; "htaglib" = callPackage @@ -150626,7 +158576,9 @@ self: { ]; description = "Command-line tar archive utility"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "htar"; + broken = true; }) {}; "htaut" = callPackage @@ -150669,7 +158621,9 @@ self: { executableHaskellDepends = [ base ]; description = "A library for testing correctness of pseudo random number generators in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "runTestu"; + broken = true; }) {inherit (pkgs) gcc;}; "htiled" = callPackage @@ -150686,6 +158640,8 @@ self: { ]; description = "Import from the Tiled map editor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "htime" = callPackage @@ -150727,6 +158683,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Heterogenous Set"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "html" = callPackage @@ -150860,6 +158818,7 @@ self: { libraryHaskellDepends = [ base hxt kure ]; description = "HTML rewrite engine, using KURE"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "html-minimalist" = callPackage @@ -150898,6 +158857,8 @@ self: { ]; description = "A high-performance HTML tokenizer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "html-parse-util" = callPackage @@ -150909,6 +158870,7 @@ self: { libraryHaskellDepends = [ attoparsec base html-parse text ]; description = "Utility functions for working with html-parse"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "html-presentation-text" = callPackage @@ -150934,6 +158896,8 @@ self: { libraryHaskellDepends = [ base lens mtl tagsoup transformers ]; description = "Perform traversals of HTML structures using sets of rules"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "html-tokenizer" = callPackage @@ -150956,6 +158920,8 @@ self: { ]; description = "An \"attoparsec\"-based HTML tokenizer"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "html-truncate" = callPackage @@ -151082,6 +159048,8 @@ self: { ]; description = "Parser for TOML files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "htoml-megaparsec" = callPackage @@ -151108,6 +159076,8 @@ self: { doHaddock = false; description = "Parser for TOML files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "htoml-parse" = callPackage @@ -151125,6 +159095,7 @@ self: { ]; description = "Parse TOML values produced by htoml-megaparsec package"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "htrace" = callPackage @@ -151148,6 +159119,8 @@ self: { libraryHaskellDepends = [ base hmt xml ]; description = "Haskell Music Typesetting"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "htsn" = callPackage @@ -151171,7 +159144,9 @@ self: { ]; description = "Parse XML files from The Sports Network feed"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "htsn"; + broken = true; }) {}; "htsn-common" = callPackage @@ -151214,6 +159189,7 @@ self: { ]; description = "Import XML files from The Sports Network into an RDBMS"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "htsn-import"; }) {}; @@ -151226,6 +159202,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Heterogenous Sets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-accept" = callPackage @@ -151322,6 +159300,8 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring http-types ]; description = "Attoparsec parsers for http-types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-client" = callPackage @@ -151371,6 +159351,7 @@ self: { ]; description = "HTTP authorization (both basic and digest) done right"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "http-client-brread-timeout" = callPackage @@ -151428,6 +159409,8 @@ self: { ]; description = "Optics for http-client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-client-multipart" = callPackage @@ -151500,6 +159483,8 @@ self: { ]; description = "Convenient monadic HTTP request modifiers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-client-restricted" = callPackage @@ -151555,6 +159540,7 @@ self: { ]; description = "http-client TLS backend using Rustls"; license = lib.licenses.cc0; + hydraPlatforms = lib.platforms.none; }) {}; "http-client-session" = callPackage @@ -151570,6 +159556,8 @@ self: { ]; description = "A simple abstraction over the \"http-client\" connection manager"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-client-streams" = callPackage @@ -151586,6 +159574,8 @@ self: { ]; description = "http-client for io-streams supporting openssl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-client-tls" = callPackage @@ -151757,6 +159747,8 @@ self: { ]; description = "Browser interface to the http-conduit package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-conduit-downloader" = callPackage @@ -151774,6 +159766,8 @@ self: { ]; description = "HTTP downloader tailored for web-crawler needs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-date" = callPackage @@ -151808,6 +159802,8 @@ self: { testHaskellDepends = [ base hspec text ]; description = "http directory listing library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-dispatch" = callPackage @@ -151825,6 +159821,8 @@ self: { testHaskellDepends = [ aeson base hspec ]; description = "High level HTTP client for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-download" = callPackage @@ -151894,6 +159892,8 @@ self: { ]; description = "A library for encoding and decoding bodies of HTTP messages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-enumerator" = callPackage @@ -151918,6 +159918,7 @@ self: { ]; description = "HTTP client package with enumerator interface and HTTPS support. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "http-grammar" = callPackage @@ -151929,6 +159930,8 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring ]; description = "Attoparsec-based parsers for the RFC-2616 HTTP grammar rules"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-interchange" = callPackage @@ -151949,6 +159952,8 @@ self: { ]; description = "Types and serialization for HTTP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-io-streams" = callPackage @@ -151982,6 +159987,7 @@ self: { ]; description = "HTTP and WebSocket client based on io-streams"; license = "BSD-3-Clause AND GPL-2.0-or-later"; + hydraPlatforms = lib.platforms.none; }) {}; "http-kinder" = callPackage @@ -152004,6 +160010,8 @@ self: { ]; description = "Generic kinds and types for working with HTTP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-kit" = callPackage @@ -152022,6 +160030,8 @@ self: { ]; description = "A low-level HTTP library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-link-header" = callPackage @@ -152065,6 +160075,8 @@ self: { ]; description = "Listen to HTTP requests and handle them in arbitrary ways"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-media" = callPackage @@ -152139,6 +160151,8 @@ self: { ]; description = "A type unsafe http library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-pony-serve-wai" = callPackage @@ -152158,6 +160172,8 @@ self: { ]; description = "Serve a WAI application with http-pony"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-pony-transformer-case-insensitive" = callPackage @@ -152228,6 +160244,8 @@ self: { ]; description = "A library for writing HTTP and HTTPS proxies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-query" = callPackage @@ -152259,6 +160277,8 @@ self: { ]; description = "The HTTP query builder"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-response-decoder" = callPackage @@ -152278,6 +160298,7 @@ self: { ]; description = "Declarative DSL for parsing an HTTP response"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "http-reverse-proxy" = callPackage @@ -152322,6 +160343,8 @@ self: { ]; description = "RFC7807 style response messages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-server" = callPackage @@ -152337,6 +160360,8 @@ self: { ]; description = "A library for writing Haskell web servers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-shed" = callPackage @@ -152350,6 +160375,8 @@ self: { libraryHaskellDepends = [ base network ]; description = "A simple websever with an interact style API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http-streams" = callPackage @@ -152448,6 +160475,8 @@ self: { libraryHaskellDepends = [ base failure process transformers ]; description = "Provide a simple HTTP client interface by wrapping the wget command line tool. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http2" = callPackage @@ -152501,6 +160530,8 @@ self: { testHaskellDepends = [ base ]; description = "A native HTTP2 client library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http2-client-exe" = callPackage @@ -152520,6 +160551,7 @@ self: { ]; description = "A command-line http2 client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "http2-client-exe"; }) {}; @@ -152540,6 +160572,7 @@ self: { testHaskellDepends = [ base ]; description = "Implement gRPC-over-HTTP2 clients"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "http2-grpc-proto-lens" = callPackage @@ -152556,6 +160589,7 @@ self: { ]; description = "Encoders based on `proto-lens` for gRPC over HTTP2"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "http2-grpc-proto3-wire" = callPackage @@ -152574,6 +160608,7 @@ self: { ]; description = "Encoders based on `proto3-wire` for gRPC over HTTP2"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "http2-grpc-types" = callPackage @@ -152588,6 +160623,8 @@ self: { ]; description = "Types for gRPC over HTTP2 common for client and servers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http2-tls" = callPackage @@ -152604,6 +160641,8 @@ self: { ]; description = "Library for HTTP/2 over TLS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "http3" = callPackage @@ -152631,6 +160670,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "HTTP/3 library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "httpd-shed" = callPackage @@ -152667,6 +160707,7 @@ self: { ]; description = "High-level access to HTTPS Everywhere rulesets"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "https-everywhere-rules-raw" = callPackage @@ -152681,6 +160722,7 @@ self: { ]; description = "Low-level (i.e. XML) access to HTTPS Everywhere rulesets."; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "httpspec" = callPackage @@ -152698,6 +160740,7 @@ self: { ]; description = "Specification of HTTP request/response generators and parsers"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "httpstan" = callPackage @@ -152718,6 +160761,8 @@ self: { ]; description = "Auto-generated API bindings for httpstan"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "htune" = callPackage @@ -152759,6 +160804,8 @@ self: { testSystemDepends = [ tvm_runtime ]; description = "Bindings for TVM machine learning framework"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {tvm_runtime = null;}; "htzaar" = callPackage @@ -152772,7 +160819,9 @@ self: { executableHaskellDepends = [ base OpenGL random SDL ]; description = "A two player abstract strategy game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "htzaar"; + broken = true; }) {}; "hub" = callPackage @@ -152828,6 +160877,7 @@ self: { executableSystemDepends = [ ruby ]; description = "Support library for Hubris, the Ruby <=> Haskell bridge"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "Hubrify"; }) {inherit (pkgs) ruby;}; @@ -152849,6 +160899,8 @@ self: { ]; description = "huck"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "huckleberry" = callPackage @@ -152880,7 +160932,9 @@ self: { executableHaskellDepends = [ base ]; description = "A fast-foward-based planner"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "blocksWorld"; + broken = true; }) {}; "huffman" = callPackage @@ -152892,6 +160946,8 @@ self: { libraryHaskellDepends = [ base containers fingertree ]; description = "Pure Haskell implementation of the Huffman encoding algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hugs2yc" = callPackage @@ -152908,6 +160964,7 @@ self: { ]; description = "Hugs Front-end to Yhc Core"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hulk" = callPackage @@ -152934,6 +160991,7 @@ self: { ]; description = "IRC server written in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hum" = callPackage @@ -152967,7 +161025,9 @@ self: { ]; description = "A TUI MPD client, inspired by ncmpcpp"; license = lib.licenses.gpl2Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "hum"; + broken = true; }) {}; "human-parse" = callPackage @@ -152979,6 +161039,8 @@ self: { libraryHaskellDepends = [ base text ]; description = "A lawless typeclass for parsing text entered by humans"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "human-readable-duration" = callPackage @@ -153003,6 +161065,8 @@ self: { libraryHaskellDepends = [ base text ]; description = "A lawless typeclass for converting values to human-friendly text"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "humble-prelude" = callPackage @@ -153014,6 +161078,8 @@ self: { libraryHaskellDepends = [ base bytestring deepseq ghc text ]; description = "Redefinition-free prelude alternative"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hums" = callPackage @@ -153038,7 +161104,9 @@ self: { ]; description = "Haskell UPnP Media Server"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hums"; + broken = true; }) {}; "hunch" = callPackage @@ -153061,7 +161129,9 @@ self: { ]; description = "CSS-like syntax for file system manipulation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hunch"; + broken = true; }) {}; "hunit-dejafu" = callPackage @@ -153088,6 +161158,7 @@ self: { executableHaskellDepends = [ base cairo gtk haskell98 HUnit ]; description = "A GUI testrunner for HUnit"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "tests"; }) {}; @@ -153112,6 +161183,8 @@ self: { testHaskellDepends = [ base hspec HUnit rematch ]; description = "HUnit support for rematch"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hunp" = callPackage @@ -153178,6 +161251,7 @@ self: { ]; description = "A search and indexing engine"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hunt-server" = callPackage @@ -153201,6 +161275,7 @@ self: { ]; description = "A search and indexing engine server"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hunt-server"; }) {}; @@ -153258,7 +161333,9 @@ self: { ]; description = "Upload packages and/or documentation to a hackage server"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "hup"; + broken = true; }) {}; "hurdle" = callPackage @@ -153274,6 +161351,7 @@ self: { ]; description = "Extract function names from Windows DLLs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hurdle"; }) {}; @@ -153322,6 +161400,7 @@ self: { ]; description = "Fetch parsed XML & possibly CSS for a URL based on MIMEtype"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "hurriyet" = callPackage @@ -153340,6 +161419,8 @@ self: { ]; description = "Haskell bindings for Hurriyet API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "husk-scheme" = callPackage @@ -153396,7 +161477,9 @@ self: { ]; description = "A simple command line calculator"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "husky"; + broken = true; }) {}; "hutton" = callPackage @@ -153417,7 +161500,9 @@ self: { ]; description = "A program for the button on Reddit"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hutton"; + broken = true; }) {}; "huttons-razor" = callPackage @@ -153431,7 +161516,9 @@ self: { executableHaskellDepends = [ base parsec parsec-numbers ]; description = "Quick implemention of Hutton's Razor"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "huttons-razor"; + broken = true; }) {}; "huzzy" = callPackage @@ -153443,6 +161530,7 @@ self: { libraryHaskellDepends = [ base easyplot ]; description = "Fuzzy logic library with support for T1, IT2, GT2"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hvect" = callPackage @@ -153535,6 +161623,7 @@ self: { ]; description = "Demo library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hw-aws-sqs-conduit" = callPackage @@ -153551,6 +161640,7 @@ self: { testHaskellDepends = [ base ]; description = "AWS SQS conduit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hw-balancedparens" = callPackage @@ -153634,7 +161724,9 @@ self: { doHaddock = false; description = "CI Assistant for Haskell projects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hw-ci-assist"; + broken = true; }) {}; "hw-conduit" = callPackage @@ -153737,7 +161829,9 @@ self: { ]; description = "Unbelievably fast streaming DSV file parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hw-dsv"; + broken = true; }) {}; "hw-dump" = callPackage @@ -153771,7 +161865,9 @@ self: { ]; description = "File Dump"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hw-dump"; + broken = true; }) {}; "hw-eliasfano" = callPackage @@ -154014,6 +162110,7 @@ self: { doHaddock = false; description = "Memory efficient JSON parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hw-json"; }) {}; @@ -154034,6 +162131,7 @@ self: { doHaddock = false; description = "Memory efficient JSON parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hw-json-lens" = callPackage @@ -154063,6 +162161,7 @@ self: { ]; description = "Lens for hw-json"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hw-json-simd" = callPackage @@ -154087,7 +162186,9 @@ self: { testToolDepends = [ doctest-discover ]; description = "SIMD-based JSON semi-indexer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hw-json-simd"; + broken = true; }) {}; "hw-json-simple-cursor" = callPackage @@ -154125,6 +162226,7 @@ self: { ]; description = "Memory efficient JSON parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hw-json"; }) {}; @@ -154165,6 +162267,7 @@ self: { ]; description = "Memory efficient JSON parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hw-json-standard-cursor"; }) {}; @@ -154377,6 +162480,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Primitive functions and data types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hw-prim" = callPackage @@ -154430,7 +162535,9 @@ self: { description = "Primitive support for bit manipulation"; license = lib.licenses.bsd3; platforms = lib.platforms.x86; + hydraPlatforms = lib.platforms.none; mainProgram = "hw-prim-bits-exe"; + broken = true; }) {}; "hw-rankselect" = callPackage @@ -154561,7 +162668,9 @@ self: { testToolDepends = [ doctest-discover ]; description = "SIMD library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hw-simd"; + broken = true; }) {}; "hw-streams" = callPackage @@ -154592,6 +162701,8 @@ self: { ]; description = "Primitive functions and data types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hw-string-parse" = callPackage @@ -154649,7 +162760,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Library for creating and extracting tar archives"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hw-tar"; + broken = true; }) {}; "hw-uri" = callPackage @@ -154685,6 +162798,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Supports IO on URIs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hw-uri"; }) {}; @@ -154743,7 +162857,9 @@ self: { ]; description = "XML parser based on succinct data structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hw-xml"; + broken = true; }) {}; "hwall-auth-iitk" = callPackage @@ -154762,7 +162878,9 @@ self: { ]; description = "Initial version of firewall Authentication for IITK network"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "firewall-auth"; + broken = true; }) {}; "hweblib" = callPackage @@ -154785,6 +162903,8 @@ self: { ]; description = "Haskell Web Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hwhile" = callPackage @@ -154805,7 +162925,9 @@ self: { testHaskellDepends = [ array base Cabal containers mtl ]; description = "An implementation of Neil D. Jones' While language"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hwhile"; + broken = true; }) {}; "hwk" = callPackage @@ -154846,6 +162968,8 @@ self: { ]; description = "A reliable at-least-once job queue built on top of redis"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hworker-ses" = callPackage @@ -154862,6 +162986,7 @@ self: { ]; description = "Library for sending email with Amazon's SES and hworker"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; }) {}; "hwormhole" = callPackage @@ -154894,6 +163019,7 @@ self: { ]; description = "magic-wormhole client"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hwormhole-exe"; }) {}; @@ -154913,6 +163039,7 @@ self: { ]; description = "Simple Haskell Web Server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hws"; }) {}; @@ -154933,6 +163060,8 @@ self: { ]; description = "Hashing with SL2"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hwsl2-bytevector" = callPackage @@ -154944,6 +163073,7 @@ self: { libraryHaskellDepends = [ base bytestring fingertree hwsl2 ]; description = "A hashed byte-vector based on algebraic hashes and finger trees"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hwsl2-reducers" = callPackage @@ -154957,6 +163087,7 @@ self: { ]; description = "Semigroup and Reducer instances for Data.Hash.SL2"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hx" = callPackage @@ -154968,6 +163099,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell extras (missing utility functions)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hxmppc" = callPackage @@ -154986,7 +163119,9 @@ self: { ]; description = "Haskell XMPP (Jabber Client) Command Line Interface (CLI)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hxmppc"; + broken = true; }) {}; "hxournal" = callPackage @@ -155013,6 +163148,7 @@ self: { executableHaskellDepends = [ base cmdargs ]; description = "A pen notetaking program written in haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hxournal"; }) {}; @@ -155047,6 +163183,7 @@ self: { ]; description = "Serialisation and deserialisation of HXT XmlTrees"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "hxt-cache" = callPackage @@ -155136,6 +163273,7 @@ self: { ]; description = "A collection of tools for processing XML with Haskell (Filter variant)"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "hxt-http" = callPackage @@ -155164,6 +163302,8 @@ self: { libraryHaskellDepends = [ base hxt mtl ]; description = "Utility functions for using HXT picklers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hxt-regex-xmlschema" = callPackage @@ -155265,6 +163405,7 @@ self: { libraryHaskellDepends = [ base bytestring encoding hxt mtl ]; description = "Helper functions for HXT"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "hxweb" = callPackage @@ -155276,6 +163417,7 @@ self: { libraryHaskellDepends = [ base cgi fastcgi libxml mtl xslt ]; description = "Minimal webframework using fastcgi, libxml2 and libxslt"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hyahtzee" = callPackage @@ -155311,7 +163453,9 @@ self: { ]; description = "Literate-style Documentation Generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hyakko"; + broken = true; }) {}; "hybrid" = callPackage @@ -155328,6 +163472,7 @@ self: { ]; description = "A implementation of a type-checker for Lambda-H"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hybrid"; }) {}; @@ -155367,6 +163512,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Type-aware transformations for data and programs"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hydra-hs" = callPackage @@ -155380,6 +163527,8 @@ self: { testHaskellDepends = [ base ]; description = "Haskell binding to the Sixense SDK for the Razer Hydra"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {sixense_x64 = null;}; "hydra-print" = callPackage @@ -155411,6 +163560,7 @@ self: { ]; description = "NCurses interface to view multiple ByteString streams in parallel"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hydrogen" = callPackage @@ -155427,6 +163577,8 @@ self: { testHaskellDepends = [ base Cabal containers mtl QuickCheck ]; description = "An alternate Prelude"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hydrogen-cli" = callPackage @@ -155447,6 +163599,7 @@ self: { ]; description = "Hydrogen Data"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "h"; }) {}; @@ -155463,6 +163616,7 @@ self: { ]; description = "Hydrogen Command Line Arguments Parser"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hydrogen-data" = callPackage @@ -155474,6 +163628,7 @@ self: { libraryHaskellDepends = [ base hydrogen-parsing hydrogen-prelude ]; description = "Hydrogen Data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hydrogen-multimap" = callPackage @@ -155485,6 +163640,8 @@ self: { libraryHaskellDepends = [ base containers ghc-prim ]; description = "Hydrogen Multimap"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hydrogen-parsing" = callPackage @@ -155498,6 +163655,7 @@ self: { ]; description = "Hydrogen Parsing Utilities"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hydrogen-prelude" = callPackage @@ -155517,6 +163675,7 @@ self: { ]; description = "Hydrogen Prelude"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hydrogen-prelude-parsec" = callPackage @@ -155528,6 +163687,7 @@ self: { libraryHaskellDepends = [ base hydrogen-prelude parsec ]; description = "Hydrogen Prelude /w Parsec"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "hydrogen-syntax" = callPackage @@ -155544,6 +163704,7 @@ self: { ]; description = "Hydrogen Syntax"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hydrogen-util" = callPackage @@ -155558,6 +163719,7 @@ self: { ]; description = "Hydrogen Tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hydrogen-version" = callPackage @@ -155586,6 +163748,7 @@ self: { ]; description = "Simple web application server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "hylide" = callPackage @@ -155607,7 +163770,9 @@ self: { ]; description = "WebGL live-coding environment for writing shaders with Hylogen"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "hylide"; + broken = true; }) {}; "hylogen" = callPackage @@ -155634,6 +163799,8 @@ self: { ]; description = "Tools for hybrid logics related programs"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hylotab" = callPackage @@ -155648,6 +163815,7 @@ self: { executableHaskellDepends = [ base hylolib mtl ]; description = "Tableau based theorem prover for hybrid logics"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hylotab"; }) {}; @@ -155664,6 +163832,7 @@ self: { ]; description = "Very small programs for hybrid logics"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "hyper" = callPackage @@ -155692,6 +163861,8 @@ self: { ]; description = "Display instances for the HyperHaskell graphical Haskell interpreter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hyper-haskell-server" = callPackage @@ -155711,7 +163882,9 @@ self: { ]; description = "Server back-end for the HyperHaskell graphical Haskell interpreter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hyper-haskell-server"; + broken = true; }) {}; "hyperdrive" = callPackage @@ -155730,7 +163903,9 @@ self: { ]; description = "a fast, trustworthy HTTP(s) server built"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pong"; + broken = true; }) {}; "hyperfunctions" = callPackage @@ -155746,6 +163921,8 @@ self: { ]; description = "Hyperfunctions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hypergeomatrix" = callPackage @@ -155798,6 +163975,8 @@ self: { ]; description = "Reliable performance measurement with robust data export"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hyperloglog" = callPackage @@ -155835,6 +164014,8 @@ self: { testHaskellDepends = [ base HUnit semigroups tasty tasty-hunit ]; description = "Approximate cardinality estimation using constant space"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hyperpublic" = callPackage @@ -155850,6 +164031,7 @@ self: { ]; description = "A thin wrapper for the Hyperpublic API"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "hyperscript" = callPackage @@ -155865,7 +164047,9 @@ self: { testHaskellDepends = [ base megaparsec text ]; description = "A parser for the _hyperscript programming language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hyperscript-exe"; + broken = true; }) {}; "hypertypes" = callPackage @@ -155952,6 +164136,8 @@ self: { ]; description = "A Haskell neo4j client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hyraxAbif" = callPackage @@ -155976,7 +164162,9 @@ self: { ]; description = "Modules for parsing, generating and manipulating AB1 files"; license = "(BSD-3-Clause OR Apache-2.0)"; + hydraPlatforms = lib.platforms.none; mainProgram = "hyraxAbif-exe"; + broken = true; }) {}; "hz3" = callPackage @@ -156084,6 +164272,8 @@ self: { ]; description = "A haskell wrapper for the Zulip API"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "i" = callPackage @@ -156104,6 +164294,7 @@ self: { ]; description = "Haskell interval types. Bounds checking."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "i18n" = callPackage @@ -156124,6 +164315,8 @@ self: { ]; description = "Internationalization for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "i3blocks-hs-contrib" = callPackage @@ -156143,6 +164336,8 @@ self: { ]; description = "Base i3blocks written in haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "i3ipc" = callPackage @@ -156160,6 +164355,8 @@ self: { testHaskellDepends = [ aeson base bytestring hspec ]; description = "A type-safe wrapper around i3's IPC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "iCalendar" = callPackage @@ -156190,6 +164387,7 @@ self: { libraryHaskellDepends = [ base interleavableIO mtl ]; description = "Version of Control.Exception using InterleavableIO."; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "iap-verifier" = callPackage @@ -156206,6 +164404,8 @@ self: { ]; description = "A simple wrapper of In-App-Purchase receipt validate APIs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ib-api" = callPackage @@ -156222,7 +164422,9 @@ self: { ]; description = "An API for the Interactive Brokers Trading Workstation written in pure Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "ex"; + broken = true; }) {}; "iban" = callPackage @@ -156241,6 +164443,8 @@ self: { testHaskellDepends = [ base HUnit tasty tasty-hunit text ]; description = "Validate and generate IBANs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ibus-hs" = callPackage @@ -156273,7 +164477,9 @@ self: { testHaskellDepends = [ base ]; description = "iCalendar format parser and org-mode converter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ical-org"; + broken = true; }) {}; "ice40-prim" = callPackage @@ -156290,6 +164496,7 @@ self: { ]; description = "Lattice iCE40 Primitive IP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "icepeak" = callPackage @@ -156335,6 +164542,8 @@ self: { ]; description = "A fast JSON document store with push notification support"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "icfpc2020-galaxy" = callPackage @@ -156346,6 +164555,8 @@ self: { libraryHaskellDepends = [ base ghc-prim transformers ]; description = "A strange message received at the Pegovka observatory"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "icon-fonts" = callPackage @@ -156386,6 +164597,8 @@ self: { testHaskellDepends = [ base ]; description = "Type safe iconv wrapper"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ide-backend" = callPackage @@ -156432,6 +164645,7 @@ self: { ]; description = "An IDE backend library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "ide-backend-exe-cabal"; }) {}; @@ -156457,6 +164671,8 @@ self: { ]; description = "Shared library used be ide-backend and ide-backend-server"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ide-backend-rts" = callPackage @@ -156491,6 +164707,7 @@ self: { ]; description = "An IDE backend server"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "ide-backend-server"; }) {}; @@ -156511,6 +164728,8 @@ self: { ]; description = "Feedback services for intelligent tutoring systems"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ideas-math" = callPackage @@ -156528,6 +164747,7 @@ self: { ]; description = "Interactive domain reasoner for logic and mathematics"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "ideas-math"; }) {}; @@ -156542,6 +164762,7 @@ self: { ]; description = "Common types for mathematical domain reasoners"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "ideas-statistics" = callPackage @@ -156557,6 +164778,7 @@ self: { ]; description = "Interactive domain reasoner for statistics"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "statistics.cgi"; }) {}; @@ -156570,6 +164792,8 @@ self: { testHaskellDepends = [ base containers hspec QuickCheck ]; description = "Idempotent monoids"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "identicon" = callPackage @@ -156612,6 +164836,7 @@ self: { ]; description = "Squares style for the identicon package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "identifiers" = callPackage @@ -156636,6 +164861,8 @@ self: { ]; description = "Numeric identifiers for values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "idiii" = callPackage @@ -156661,7 +164888,9 @@ self: { ]; description = "ID3v2 (tagging standard for MP3 files) library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "read-idiii"; + broken = true; }) {}; "idiomatic" = callPackage @@ -156697,6 +164926,8 @@ self: { libraryHaskellDepends = [ base punycode split ]; description = "Converts Unicode hostnames into ASCII"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "idringen" = callPackage @@ -156762,6 +164993,7 @@ self: { ]; description = "Functional Programming Language with Dependent Types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gmp;}; "ieee" = callPackage @@ -156784,6 +165016,8 @@ self: { libraryHaskellDepends = [ base ]; description = "ieee-utils"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ieee-utils-tempfix" = callPackage @@ -156833,6 +165067,8 @@ self: { testHaskellDepends = [ base bytestring HUnit stocks ]; description = "Library for the IEX Trading API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "if" = callPackage @@ -156871,6 +165107,8 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; description = "put if statements within type constraints"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "iff" = callPackage @@ -156922,6 +165160,8 @@ self: { ]; description = "Bindings to Instagram's API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ige" = callPackage @@ -156944,7 +165184,9 @@ self: { ]; description = "An keyboard-driven interactive graph editor"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "ige"; + broken = true; }) {}; "ige-mac-integration" = callPackage @@ -156963,6 +165205,7 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Bindings for the Gtk/OS X integration library"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; }) {ige-mac-integration = null;}; "ignore" = callPackage @@ -156982,7 +165225,9 @@ self: { testHaskellDepends = [ base HTF text ]; description = "Handle ignore files of different VCSes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ignore"; + broken = true; }) {}; "igraph" = callPackage @@ -157000,6 +165245,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "Bindings to the igraph C library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) igraph;}; "igrf" = callPackage @@ -157013,6 +165260,7 @@ self: { ]; description = "International Geomagnetic Reference Field"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ihaskell" = callPackage @@ -157102,6 +165350,8 @@ self: { ]; description = "IHaskell display instances for charts types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ihaskell-diagrams" = callPackage @@ -157118,6 +165368,8 @@ self: { ]; description = "IHaskell display instances for diagram types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ihaskell-display" = callPackage @@ -157140,6 +165392,8 @@ self: { libraryHaskellDepends = [ base bytestring gnuplot ihaskell ]; description = "IHaskell display instance for Gnuplot (from gnuplot package)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ihaskell-graphviz" = callPackage @@ -157151,6 +165405,8 @@ self: { libraryHaskellDepends = [ base bytestring ihaskell process ]; description = "IHaskell display instance for GraphViz (external binary)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ihaskell-hatex" = callPackage @@ -157190,6 +165446,7 @@ self: { ]; description = "Embed R quasiquotes and plots in IHaskell notebooks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ihaskell-juicypixels" = callPackage @@ -157235,6 +165492,8 @@ self: { ]; description = "IHaskell display instances for Parsec"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ihaskell-plot" = callPackage @@ -157246,6 +165505,8 @@ self: { libraryHaskellDepends = [ base bytestring hmatrix ihaskell plot ]; description = "IHaskell display instance for Plot (from plot package)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ihaskell-rlangqq" = callPackage @@ -157263,6 +165524,7 @@ self: { ]; description = "a rDisp quasiquote to show plots from Rlang-QQ in IHaskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ihaskell-widgets" = callPackage @@ -157280,6 +165542,8 @@ self: { ]; description = "IPython standard widgets for IHaskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ihp-hsx" = callPackage @@ -157297,6 +165561,8 @@ self: { ]; description = "JSX-like but for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ihs" = callPackage @@ -157329,6 +165595,7 @@ self: { executableHaskellDepends = [ base network ]; description = "Incremental HTTP iteratee"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ihttp-test"; }) {}; @@ -157369,7 +165636,9 @@ self: { executableToolDepends = [ alex ]; description = "A fast syntax highlighting library built with alex"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "illuminate"; + broken = true; }) {}; "image-type" = callPackage @@ -157383,6 +165652,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Determine the type of an image by reading the first bytes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "imagefilters" = callPackage @@ -157418,6 +165689,8 @@ self: { testPkgconfigDepends = [ imagemagick ]; description = "bindings to imagemagick library"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) imagemagick;}; "imagepaste" = callPackage @@ -157437,7 +165710,9 @@ self: { ]; description = "Command-line image paste utility"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "imagepaste"; + broken = true; }) {}; "imagesize-conduit" = callPackage @@ -157484,6 +165759,7 @@ self: { ]; description = "An efficient IMAP client library, with SSL and streaming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "imapget" = callPackage @@ -157501,7 +165777,9 @@ self: { ]; description = "Downloads email from imap SSL servers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "imapget"; + broken = true; }) {}; "imbib" = callPackage @@ -157523,6 +165801,7 @@ self: { ]; description = "Minimalistic reference manager"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "imgur" = callPackage @@ -157538,6 +165817,8 @@ self: { ]; description = "A function to post an image to imgur"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "imgurder" = callPackage @@ -157558,6 +165839,7 @@ self: { ]; description = "Uploader for Imgur"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "imgurder"; }) {}; @@ -157571,6 +165853,7 @@ self: { testHaskellDepends = [ base ]; description = "Animation Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "imj-base" = callPackage @@ -157595,6 +165878,7 @@ self: { ]; description = "Game engine with geometry, easing, animated text, delta rendering"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "imj-base-examples-exe"; }) {}; @@ -157616,6 +165900,7 @@ self: { testHaskellDepends = [ base imj-base mtl text ]; description = "A game with flying numbers and 8-bit color animations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "imj-game-hamazed-exe"; }) {}; @@ -157632,6 +165917,7 @@ self: { ]; description = "An application to determine the maximum capacity of stdout buffer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "imj-measure-stdout-exe"; }) {}; @@ -157644,6 +165930,8 @@ self: { libraryHaskellDepends = [ base mtl text ]; description = "Prelude library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "imm" = callPackage @@ -157682,6 +165970,7 @@ self: { ]; description = "Execute arbitrary actions for each item from RSS/Atom feeds"; license = lib.licenses.cc0; + hydraPlatforms = lib.platforms.none; }) {}; "immortal_0_2_2_1" = callPackage @@ -157743,6 +166032,8 @@ self: { ]; description = "Create worker threads that logs exceptions and restarts"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "imparse" = callPackage @@ -157766,6 +166057,7 @@ self: { ]; description = "Multi-platform parser analyzer and generator"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "imparse"; }) {}; @@ -157794,6 +166086,7 @@ self: { ]; description = "Deep embedding of imperative programs with code generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "imperative-edsl-vhdl" = callPackage @@ -157810,6 +166103,7 @@ self: { ]; description = "Deep embedding of VHDL programs with code generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "impl" = callPackage @@ -157822,6 +166116,8 @@ self: { doHaddock = false; description = "Framework for defaulting superclasses"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "implicit" = callPackage @@ -157940,6 +166236,8 @@ self: { libraryHaskellDepends = [ base mtl time transformers ]; description = "A logging framework built around implicit parameters"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "implicit-params" = callPackage @@ -157951,6 +166249,8 @@ self: { libraryHaskellDepends = [ base data-default-class ]; description = "Named and unnamed implicit parameters with defaults"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "importify" = callPackage @@ -157983,6 +166283,7 @@ self: { ]; description = "Tool for haskell imports refactoring"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "imports" = callPackage @@ -157995,6 +166296,8 @@ self: { testHaskellDepends = [ base directory filepath mtl ]; description = "Generate code for importing directories automatically"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "impossible" = callPackage @@ -158006,6 +166309,8 @@ self: { libraryHaskellDepends = [ base lens ]; description = "Set of data and type definitions of impossible types. Impossible types are useful when declaring type classes / type families instances that should not be expanded by GHC until a specific type is provided in order to keep the types nice and readable."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "imprevu" = callPackage @@ -158048,6 +166353,7 @@ self: { testHaskellDepends = [ base Cabal ]; description = "Imprevu support for Happstack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "imprint" = callPackage @@ -158062,6 +166368,8 @@ self: { testHaskellDepends = [ base binary constraints hspec ]; description = "Serialization of arbitrary Haskell expressions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "improve" = callPackage @@ -158073,6 +166381,7 @@ self: { libraryHaskellDepends = [ base mtl yices ]; description = "An imperative, verifiable programming language for high assurance applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "impure-containers" = callPackage @@ -158095,6 +166404,8 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Mutable containers in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "in-other-words" = callPackage @@ -158137,6 +166448,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Disambiguate obvious uses of effects when using in-other-words"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "inbox" = callPackage @@ -158181,6 +166494,7 @@ self: { ]; description = "A type-checker for Haskell with integer constraints"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "inch"; }) {}; @@ -158195,6 +166509,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Simple parser combinators for lexical analysis"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "incipit" = callPackage @@ -158306,6 +166622,7 @@ self: { benchmarkHaskellDepends = [ base containers deepseq QuickCheck ]; description = "Incremental computing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "incremental-maps" = callPackage @@ -158329,6 +166646,7 @@ self: { ]; description = "Package for doing incremental computations on maps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "incremental-parser" = callPackage @@ -158382,6 +166700,7 @@ self: { ]; description = "type classes for incremental updates to data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "indent" = callPackage @@ -158413,6 +166732,7 @@ self: { ]; description = "Indentation sensitive parsing combinators for Parsec and Trifecta"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "indentation-core" = callPackage @@ -158424,6 +166744,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Indentation sensitive parsing combinators core library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "indentation-parsec" = callPackage @@ -158438,6 +166760,7 @@ self: { testHaskellDepends = [ base parsec tasty tasty-hunit ]; description = "Indentation sensitive parsing combinators for Parsec"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "indentation-trifecta" = callPackage @@ -158454,6 +166777,7 @@ self: { testHaskellDepends = [ base tasty tasty-hunit trifecta ]; description = "Indentation sensitive parsing combinators for Trifecta"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "indentparser" = callPackage @@ -158494,7 +166818,9 @@ self: { libraryHaskellDepends = [ base ]; description = "Indexed Types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.Gabriella439 ]; + broken = true; }) {}; "indexation" = callPackage @@ -158516,6 +166842,7 @@ self: { ]; description = "Tools for entity indexation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "indexed" = callPackage @@ -158540,6 +166867,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Simple, no-frills indexed lists"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "indexed-do-notation" = callPackage @@ -158554,6 +166883,8 @@ self: { ]; description = "Do notation for indexed monads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "indexed-extras" = callPackage @@ -158648,6 +166979,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "A series of type families and constraints for \"indexable\" types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "indian-language-font-converter" = callPackage @@ -158674,6 +167007,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "Multi-dimensional statically bounded indices"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "indieweb-algorithms" = callPackage @@ -158703,6 +167038,7 @@ self: { ]; description = "A collection of implementations of IndieWeb algorithms"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "indigo" = callPackage @@ -158741,6 +167077,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Convenient imperative eDSL over Lorentz"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "indigo"; }) {}; @@ -158774,6 +167111,8 @@ self: { testHaskellDepends = [ array base deepseq QuickCheck text vector ]; description = "Non-contiguous interval data types with potentially infinite ranges"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "infer-license" = callPackage @@ -158809,7 +167148,9 @@ self: { ]; description = "Find the repository from where a given repo was forked"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "infer-upstream"; + broken = true; }) {}; "infernal" = callPackage @@ -158830,6 +167171,8 @@ self: { ]; description = "The Infernal Machine - An AWS Lambda Custom Runtime for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "inferno-core" = callPackage @@ -158855,6 +167198,7 @@ self: { ]; description = "A statically-typed functional scripting language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "inferno-lsp" = callPackage @@ -158879,6 +167223,7 @@ self: { executableHaskellDepends = [ base ]; description = "LSP for Inferno"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "inferno-lsp-server"; }) {}; @@ -158901,6 +167246,8 @@ self: { ]; description = "Core types for Inferno"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "inferno-vc" = callPackage @@ -158924,6 +167271,7 @@ self: { ]; description = "Version control server for Inferno"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "infernu" = callPackage @@ -158944,6 +167292,8 @@ self: { executableHaskellDepends = [ base optparse-applicative parsec ]; description = "Type inference and checker for JavaScript (experimental)"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "infinite-list" = callPackage @@ -158989,6 +167339,7 @@ self: { base binary Cabal filepath ghc irc plugins ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "infinity"; }) {}; @@ -159001,6 +167352,8 @@ self: { libraryHaskellDepends = [ base containers haskell-src ]; description = "Infix expression re-parsing (for HsParser library)"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "inflections" = callPackage @@ -159033,6 +167386,8 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "An infinite list type and operations thereon"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "influxdb" = callPackage @@ -159088,7 +167443,9 @@ self: { ]; description = "A yesod subsite serving a wiki"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "informative-test"; + broken = true; }) {}; "ini" = callPackage @@ -159119,6 +167476,8 @@ self: { testHaskellDepends = [ base HUnit ini raw-strings-qq text ]; description = "Quasiquoter for INI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "inilist" = callPackage @@ -159138,6 +167497,8 @@ self: { ]; description = "Processing for .ini files with duplicate sections and options"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "initialize" = callPackage @@ -159149,6 +167510,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Initialization and Deinitialization of 'Storable' values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "inj" = callPackage @@ -159170,6 +167533,8 @@ self: { libraryHaskellDepends = [ base inj ]; description = "'Inj' instances for 'base'"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "inject" = callPackage @@ -159201,6 +167566,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Monadic functions with injected parameters"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "injections" = callPackage @@ -159217,6 +167584,8 @@ self: { ]; description = "Canonical categorical conversions (injections and projections)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "inline-asm" = callPackage @@ -159306,6 +167675,8 @@ self: { testHaskellDepends = [ base hspec inline-c ]; description = "Lets you embed Objective-C code into Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "inline-c-win32" = callPackage @@ -159347,6 +167718,7 @@ self: { ]; description = "Java interop via inline Java code in Haskell modules"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "inline-r" = callPackage @@ -159381,6 +167753,8 @@ self: { ]; description = "Seamlessly call R from Haskell and vice versa. No FFI required."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) R;}; "inliterate" = callPackage @@ -159401,6 +167775,7 @@ self: { testHaskellDepends = [ base text ]; description = "Interactive literate programming"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "inlitpp"; }) {}; @@ -159467,6 +167842,8 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring dlist ]; description = "Stupid simple bytestring templates"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "inspection-proxy" = callPackage @@ -159523,6 +167900,7 @@ self: { testHaskellDepends = [ base ]; description = "Create benchmarks from the HAR files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "inspector-wrecker-exe"; }) {}; @@ -159562,6 +167940,8 @@ self: { ]; description = "SDK for adding custom Instana tracing support to Haskell applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "instance-control" = callPackage @@ -159589,6 +167969,8 @@ self: { ]; description = "Template haskell utilities for helping with deserialization etc. of existential types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "instant-aeson" = callPackage @@ -159605,6 +167987,7 @@ self: { ]; description = "Generic Aeson instances through instant-generics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "instant-bytes" = callPackage @@ -159621,6 +168004,7 @@ self: { ]; description = "Generic Serial instances through instant-generics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "instant-deepseq" = callPackage @@ -159632,6 +168016,7 @@ self: { libraryHaskellDepends = [ base deepseq instant-generics ]; description = "Generic NFData instances through instant-generics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "instant-generics" = callPackage @@ -159645,6 +168030,8 @@ self: { libraryHaskellDepends = [ base containers syb template-haskell ]; description = "Generic programming library with a sum of products view"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "instant-hashable" = callPackage @@ -159656,6 +168043,7 @@ self: { libraryHaskellDepends = [ base hashable instant-generics ]; description = "Generic Hashable instances through instant-generics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "instant-zipper" = callPackage @@ -159669,6 +168057,7 @@ self: { libraryHaskellDepends = [ base instant-generics mtl ]; description = "Heterogenous Zipper in Instant Generics"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "instapaper-sender" = callPackage @@ -159688,7 +168077,9 @@ self: { ]; description = "Basic HTTP gateway to save articles to Instapaper"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "instapaper-sender"; + broken = true; }) {}; "instinct" = callPackage @@ -159700,6 +168091,8 @@ self: { libraryHaskellDepends = [ base containers mersenne-random vector ]; description = "Fast artifical neural networks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "instrument" = callPackage @@ -159765,6 +168158,7 @@ self: { ]; description = "Adds a worker for the instrument package that exports to Amazon CloudWatch"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "int-cast" = callPackage @@ -159804,6 +168198,8 @@ self: { ]; description = "Interval map"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "int-like" = callPackage @@ -159822,6 +168218,8 @@ self: { ]; description = "Newtype wrappers over IntSet and IntMap"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "int-multimap" = callPackage @@ -159843,6 +168241,8 @@ self: { ]; description = "A data structure that associates each Int key with a set of values"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "intcode" = callPackage @@ -159857,6 +168257,8 @@ self: { testHaskellDepends = [ base containers doctest primitive ]; description = "Advent of Code 2019 intcode interpreter"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "integer-conversion" = callPackage @@ -159917,6 +168319,8 @@ self: { sha256 = "0lrhf6mw90bfph3hbyxv3n7g2n2xnjfq4qnhyhw4ml76k4yybmxa"; description = "A pure-Haskell implementation of arbitrary-precision Integers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "integer-roots" = callPackage @@ -159947,6 +168351,8 @@ self: { libraryHaskellDepends = [ ghc-prim ]; description = "Simple Integer library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "integer-types" = callPackage @@ -160001,6 +168407,7 @@ self: { ]; description = "Integrate different assays"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "integreat"; }) {}; @@ -160020,6 +168427,7 @@ self: { librarySystemDepends = [ intel_aes ]; description = "Hardware accelerated AES encryption and Random Number Generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {intel_aes = null;}; "intel-powermon" = callPackage @@ -160054,6 +168462,8 @@ self: { doHaddock = false; description = "A GHC Core plugin for intensional datatype refinement checking"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "interact" = callPackage @@ -160070,6 +168480,8 @@ self: { ]; description = "instantly create REPL from any function"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "interactive-plot" = callPackage @@ -160089,7 +168501,9 @@ self: { executableHaskellDepends = [ base ]; description = "Interactive quick time series plotting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "interactive-plot-demo"; + broken = true; }) {}; "interchangeable" = callPackage @@ -160114,7 +168528,9 @@ self: { executableHaskellDepends = [ base directory haskell-src hint mtl ]; description = "Generates a version of a module using InterleavableIO"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "interleavableGen"; + broken = true; }) {}; "interleavableIO" = callPackage @@ -160126,6 +168542,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Use other Monads in functions that asks for an IO Monad"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "interleave" = callPackage @@ -160166,6 +168584,8 @@ self: { ]; description = "Prelude replacement based on protolude"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "intern" = callPackage @@ -160199,7 +168619,9 @@ self: { ]; description = "Shell command for constructing custom stamps for German Post"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "internetmarke"; + broken = true; }) {}; "intero" = callPackage @@ -160226,7 +168648,9 @@ self: { ]; description = "Complete interactive development program for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "intero"; + broken = true; }) {}; "interp" = callPackage @@ -160258,7 +168682,9 @@ self: { ]; description = "Tracery-like randomized text interpolation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "interp"; + broken = true; }) {}; "interpol" = callPackage @@ -160282,7 +168708,9 @@ self: { ]; description = "GHC preprocessor and library to enable variable interpolation in strings"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "interpol"; + broken = true; }) {}; "interpolate" = callPackage @@ -160332,6 +168760,7 @@ self: { ]; description = "QuasiQuoter for Ruby-style multi-line interpolated strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "interpolatedstring-qq-mwotton" = callPackage @@ -160347,6 +168776,7 @@ self: { ]; description = "DO NOT USE THIS. interpolatedstring-qq works now."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "interpolatedstring-qq2" = callPackage @@ -160365,6 +168795,8 @@ self: { ]; description = "QuasiQuoter for multi-line interpolated strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "interpolation" = callPackage @@ -160406,6 +168838,8 @@ self: { ]; description = "Runtime interpolation of environment variables in records using profunctors"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "interprocess" = callPackage @@ -160442,6 +168876,8 @@ self: { testHaskellDepends = [ base Cabal either transformers ]; description = "Monad transformers that can be run and resumed later, conserving their context"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "interspersed" = callPackage @@ -160467,6 +168903,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Intervals with adherences"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "interval-algebra" = callPackage @@ -160488,7 +168926,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "An implementation of Allen's interval algebra for temporal logic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tutorial"; + broken = true; }) {}; "interval-functor" = callPackage @@ -160532,6 +168972,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Interval Tree Clocks"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "intervals" = callPackage @@ -160595,6 +169037,8 @@ self: { ]; description = "A quasiquoter for better instance deriving and default methods"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "intro" = callPackage @@ -160617,6 +169061,8 @@ self: { ]; description = "Safe and minimal prelude"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "intro-prelude" = callPackage @@ -160632,6 +169078,7 @@ self: { doHaddock = false; description = "Intro reexported as Prelude"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "introduction" = callPackage @@ -160652,6 +169099,8 @@ self: { ]; description = "A prelude for safe new projects"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "introduction-test" = callPackage @@ -160671,6 +169120,7 @@ self: { ]; description = "A prelude for the tests of safe new projects"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "intset" = callPackage @@ -160682,6 +169132,7 @@ self: { libraryHaskellDepends = [ base bits-extras bytestring deepseq ]; description = "Pure, mergeable, succinct Int sets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "intset-imperative" = callPackage @@ -160822,6 +169273,7 @@ self: { libraryHaskellDepends = [ base HList invertible ]; description = "invertible functions and instances for HList"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "invertible-hxt" = callPackage @@ -160846,6 +169298,8 @@ self: { libraryHaskellDepends = [ base partial-isomorphisms ]; description = "Invertible syntax descriptions for both parsing and pretty printing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "involutive-semigroups" = callPackage @@ -160857,6 +169311,8 @@ self: { libraryHaskellDepends = [ base bytestring containers text vector ]; description = "Semigroups with involution"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "io-capture" = callPackage @@ -160875,6 +169331,8 @@ self: { ]; description = "Capture IO actions' stdout and stderr"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "io-choice" = callPackage @@ -160894,6 +169352,8 @@ self: { ]; description = "Choice for IO and lifted IO"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "io-classes" = callPackage @@ -160972,7 +169432,9 @@ self: { executableHaskellDepends = [ base ]; description = "An API for generating TIMBER style reactive objects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "io-reactive-test"; + broken = true; }) {}; "io-region" = callPackage @@ -161123,6 +169585,8 @@ self: { libraryHaskellDepends = [ base network unix ]; description = "Type-safe I/O control package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ion" = callPackage @@ -161143,6 +169607,7 @@ self: { ]; description = "EDSL for concurrent, realtime, embedded programming on top of Ivory"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ion_example"; }) {}; @@ -161166,6 +169631,8 @@ self: { libraryHaskellDepends = [ base bytestring path text ]; description = "A class of strings that can be involved in IO"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "iothread" = callPackage @@ -161177,6 +169644,8 @@ self: { libraryHaskellDepends = [ base ]; description = "run IOs in a single thread"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "iotransaction" = callPackage @@ -161188,6 +169657,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Supports the automatic undoing of IO operations when an exception is thrown"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ip" = callPackage @@ -161234,6 +169705,8 @@ self: { testHaskellDepends = [ base cpu network tasty tasty-hunit ]; description = "Quasiquoter for IP addresses"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ip2location" = callPackage @@ -161250,6 +169723,8 @@ self: { ]; description = "IP2Location Haskell package for IP geolocation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ip2proxy" = callPackage @@ -161266,6 +169741,8 @@ self: { ]; description = "IP2Proxy Haskell package for proxy detection"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ip6addr" = callPackage @@ -161296,6 +169773,8 @@ self: { testHaskellDepends = [ base hspec text ]; description = "Internal Phonetic Alphabet (IPA)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ipatch" = callPackage @@ -161314,6 +169793,7 @@ self: { ]; description = "interactive patch editor"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "ipatch"; }) {}; @@ -161330,6 +169810,7 @@ self: { ]; description = "High level inter-process communication library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ipcvar" = callPackage @@ -161374,6 +169855,8 @@ self: { ]; description = "Access IPFS locally and remotely"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ipfs-api" = callPackage @@ -161410,6 +169893,7 @@ self: { ]; description = "IPLD Content-IDentifiers "; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ipopt-hs" = callPackage @@ -161431,6 +169915,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "haskell binding to ipopt and nlopt including automatic differentiation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) ipopt; inherit (pkgs) nlopt;}; "ipprint" = callPackage @@ -161442,6 +169928,7 @@ self: { libraryHaskellDepends = [ base haskell-src sr-extra ]; description = "Tiny helper for pretty-printing values in ghci console"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "iproute" = callPackage @@ -161479,7 +169966,9 @@ self: { executableHaskellDepends = [ base QuickCheck syb ]; description = "iptables rules parser/printer library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "iptables-helpers-test"; + broken = true; }) {}; "iptadmin" = callPackage @@ -161504,6 +169993,7 @@ self: { ]; description = "web-interface for iptables"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "iptadmin"; }) {}; @@ -161645,7 +170135,9 @@ self: { testHaskellDepends = [ base hashable HUnit text ]; description = "IRC core library for glirc"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.kiwi ]; + broken = true; }) {}; "irc-ctcp" = callPackage @@ -161681,6 +170173,8 @@ self: { ]; description = "A DCC message parsing and helper library for IRC clients"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "irc-fun-bot" = callPackage @@ -161701,6 +170195,7 @@ self: { ]; description = "Library for writing fun IRC bots"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "irc-fun-client" = callPackage @@ -161719,6 +170214,7 @@ self: { ]; description = "Another library for writing IRC clients"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "irc-fun-color" = callPackage @@ -161735,6 +170231,7 @@ self: { testHaskellDepends = [ base text ]; description = "Add color and style decorations to IRC messages"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "irc-fun-messages" = callPackage @@ -161748,6 +170245,7 @@ self: { ]; description = "Types and functions for working with the IRC protocol"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "irc-fun-types" = callPackage @@ -161759,6 +170257,8 @@ self: { libraryHaskellDepends = [ base hashable text ]; description = "Common types for IRC related packages"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ircbot" = callPackage @@ -161779,7 +170279,9 @@ self: { executableHaskellDepends = [ base ]; description = "A library for writing IRC bots"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ircbot-demo"; + broken = true; }) {}; "ircbouncer" = callPackage @@ -161802,6 +170304,8 @@ self: { libraryHaskellDepends = [ base QuickCheck ]; description = "Real numbers and intervals with relatively efficient exact arithmetic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "iri" = callPackage @@ -161828,6 +170332,8 @@ self: { ]; description = "RFC-based resource identifier library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "iridium" = callPackage @@ -161855,7 +170361,9 @@ self: { ]; description = "Automated Local Cabal Package Testing and Uploading"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "iridium"; + broken = true; }) {}; "iris" = callPackage @@ -161873,6 +170381,8 @@ self: { testHaskellDepends = [ base hspec optparse-applicative text ]; description = "Haskell CLI framework"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "iron-mq" = callPackage @@ -161884,6 +170394,8 @@ self: { libraryHaskellDepends = [ aeson base http-client lens text wreq ]; description = "Iron.IO message queueing client library"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ironforge" = callPackage @@ -161906,6 +170418,7 @@ self: { ]; description = "A technical demo for Antisplice"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ironforge"; }) {}; @@ -161918,6 +170431,8 @@ self: { libraryHaskellDepends = [ ad base data-default-class statistics ]; description = "Item Response Theory functions for use in computerized adaptive testing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "is" = callPackage @@ -161961,7 +170476,9 @@ self: { ]; description = "An executable and library to determine if a file is a DICOM file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "isdicom"; + broken = true; }) {}; "isevaluated" = callPackage @@ -161973,6 +170490,7 @@ self: { libraryHaskellDepends = [ base vacuum ]; description = "Check whether a value has been evaluated"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "isiz" = callPackage @@ -162014,6 +170532,7 @@ self: { ]; description = "Advanced ESMTP library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "iso-deriving" = callPackage @@ -162085,6 +170604,8 @@ self: { ]; description = "Types and parser for ISO8601 durations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "iso8601-time" = callPackage @@ -162122,6 +170643,8 @@ self: { ]; description = "A parser and generator for the ISO-14496-12/14 base media file format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "isobmff-builder" = callPackage @@ -162146,6 +170669,7 @@ self: { ]; description = "A (bytestring-) builder for the ISO-14496-12 base media file format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "isocline" = callPackage @@ -162178,6 +170702,7 @@ self: { ]; description = "Bindings to the isoHunt torrent search API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "isomorphism-class" = callPackage @@ -162218,6 +170743,8 @@ self: { ]; description = "Isotopic masses and relative abundances"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ispositive" = callPackage @@ -162242,6 +170769,8 @@ self: { testHaskellDepends = [ base generic-lens QuickCheck ]; description = "Automatically derivable Has instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "itanium-abi" = callPackage @@ -162279,7 +170808,9 @@ self: { ]; description = "Issue Tracker for the CLI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "itcli"; + broken = true; }) {}; "itemfield" = callPackage @@ -162307,6 +170838,8 @@ self: { ]; description = "A brick Widget for selectable summary of many elements on a terminal"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "iter-stats" = callPackage @@ -162325,6 +170858,7 @@ self: { ]; description = "iteratees for statistical processing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "iterIO" = callPackage @@ -162343,6 +170877,8 @@ self: { librarySystemDepends = [ zlib ]; description = "Iteratee-based IO with pipe operators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) zlib;}; "iterable" = callPackage @@ -162388,6 +170924,8 @@ self: { ]; description = "Iteratee-based I/O"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "iteratee-compress" = callPackage @@ -162400,6 +170938,7 @@ self: { librarySystemDepends = [ bzip2 zlib ]; description = "Enumeratees for compressing and decompressing streams"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) bzip2; inherit (pkgs) zlib;}; "iteratee-mtl" = callPackage @@ -162417,6 +170956,7 @@ self: { ]; description = "Iteratee-based I/O"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "iteratee-parsec" = callPackage @@ -162432,6 +170972,7 @@ self: { ]; description = "Package allowing parsec parser initeratee"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "iteratee-stm" = callPackage @@ -162445,6 +170986,7 @@ self: { ]; description = "Concurrent iteratees using STM"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "iterative-forward-search" = callPackage @@ -162465,6 +171007,8 @@ self: { ]; description = "An IFS constraint solver"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "iterio-server" = callPackage @@ -162481,6 +171025,7 @@ self: { ]; description = "Library for building servers with IterIO"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "iterm-show" = callPackage @@ -162497,7 +171042,9 @@ self: { executableHaskellDepends = [ base bytestring ]; description = "Enable graphical display of images inline on some terminals"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "it2-show"; + broken = true; }) {}; "iterm-show-JuicyPixels" = callPackage @@ -162511,6 +171058,7 @@ self: { libraryHaskellDepends = [ base iterm-show JuicyPixels ]; description = "Orphan Show instances for JuciyPixels image types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "iterm-show-diagrams" = callPackage @@ -162528,6 +171076,7 @@ self: { ]; description = "Orphan Show instances for diagrams package that render inline in some terminals"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ival" = callPackage @@ -162544,6 +171093,7 @@ self: { ]; description = "Intervals"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ivar-simple" = callPackage @@ -162573,6 +171123,7 @@ self: { ]; description = "Theorem proving library based on dependent type theory"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ivory" = callPackage @@ -162591,6 +171142,8 @@ self: { libraryToolDepends = [ alex happy ]; description = "Safe embedded C programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ivory-artifact" = callPackage @@ -162619,6 +171172,7 @@ self: { ]; description = "Ivory register bindings for the Atmega328p"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ivory-backend-c" = callPackage @@ -162639,6 +171193,7 @@ self: { ]; description = "Ivory C backend"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ivory-bitdata" = callPackage @@ -162657,6 +171212,7 @@ self: { executableHaskellDepends = [ base ivory ivory-backend-c ]; description = "Ivory bit-data support"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ivory-bitdata-example"; }) {}; @@ -162676,6 +171232,7 @@ self: { ]; description = "Simple concrete evaluator for Ivory programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ivory-examples" = callPackage @@ -162698,6 +171255,7 @@ self: { ]; description = "Ivory examples"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ivory-c-clang-test"; }) {}; @@ -162711,6 +171269,7 @@ self: { libraryHaskellDepends = [ base filepath ivory ivory-artifact ]; description = "Ivory hardware model (STM32F4)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ivory-opts" = callPackage @@ -162727,6 +171286,7 @@ self: { ]; description = "Ivory compiler optimizations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ivory-quickcheck" = callPackage @@ -162748,6 +171308,7 @@ self: { ]; description = "QuickCheck driver for Ivory"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ivory-serialize" = callPackage @@ -162764,6 +171325,7 @@ self: { ]; description = "Serialization library for Ivory"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ivory-stdlib" = callPackage @@ -162776,6 +171338,7 @@ self: { libraryHaskellDepends = [ base filepath ivory ivory-artifact ]; description = "Ivory standard library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ivy-web" = callPackage @@ -162791,6 +171354,7 @@ self: { ]; description = "A lightweight web framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "iwlib" = callPackage @@ -162823,6 +171387,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Indexed monads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ix-shapable" = callPackage @@ -162847,7 +171412,9 @@ self: { executableHaskellDepends = [ base preprocessor-tools syb ]; description = "A preprocessor for expanding \"ixdo\" notation for indexed monads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ixdopp"; + broken = true; }) {}; "ixmonad" = callPackage @@ -162861,6 +171428,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Embeds effect systems into Haskell using parameteric effect monads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ixset" = callPackage @@ -162879,6 +171448,7 @@ self: { ]; description = "Efficient relational queries on Haskell sets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ixset-typed" = callPackage @@ -162969,6 +171539,8 @@ self: { ]; description = "A shallow embedding of the OpenGL Shading Language in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "iyql" = callPackage @@ -162988,6 +171560,7 @@ self: { ]; description = "CLI (command line interface) to YQL"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "iyql"; }) {}; @@ -163005,6 +171578,7 @@ self: { testHaskellDepends = [ base bytestring repa tasty tasty-hunit ]; description = "J in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "j2hs" = callPackage @@ -163025,6 +171599,7 @@ self: { ]; description = "j2hs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "j2hs"; }) {}; @@ -163109,6 +171684,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "DEPRECATED Bindings to the JACK Audio Connection Kit"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libjack2;}; "jackminimix" = callPackage @@ -163120,6 +171697,8 @@ self: { libraryHaskellDepends = [ base hosc ]; description = "control JackMiniMix"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jackpolynomials" = callPackage @@ -163164,6 +171743,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "Roots of two shifted Jacobi polynomials (Legendre and Radau) to double precision"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jacobi-theta" = callPackage @@ -163201,7 +171782,9 @@ self: { testToolDepends = [ tasty-discover ]; description = "Generate flamegraphs from Jaeger .json dumps."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "jaeger-flamegraph"; + broken = true; }) {}; "jail" = callPackage @@ -163217,6 +171800,8 @@ self: { ]; description = "Jailed IO monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jailbreak-cabal" = callPackage @@ -163267,6 +171852,8 @@ self: { ]; description = "Higher level functions for linear algebra. Wraps BLAS and LAPACKE."; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) blas; cblas = null; lapacke = null;}; "jammittools" = callPackage @@ -163287,7 +171874,9 @@ self: { executableHaskellDepends = [ base boxes directory filepath ]; description = "Export sheet music and audio from Windows/Mac app Jammit"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "jammittools"; + broken = true; }) {}; "japanese-calendar" = callPackage @@ -163333,7 +171922,9 @@ self: { ]; description = "Tool for searching java classes, members and fields in classfiles and JAR archives"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "jarf"; + broken = true; }) {}; "jarify" = callPackage @@ -163355,7 +171946,9 @@ self: { doHaddock = false; description = "Jarification of Haskell sources"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "jarify"; + broken = true; }) {}; "jaskell" = callPackage @@ -163371,6 +171964,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Stack-based concatenative language embedded in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jason" = callPackage @@ -163390,7 +171985,9 @@ self: { testHaskellDepends = [ aeson base bytestring text ]; description = "A fast JASONETTE-iOS JSON combinator library for haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "jason"; + broken = true; }) {}; "java-adt" = callPackage @@ -163406,7 +172003,9 @@ self: { executableToolDepends = [ alex happy ]; description = "Create immutable algebraic data structures for Java"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "java-adt"; + broken = true; }) {}; "java-bridge" = callPackage @@ -163430,6 +172029,8 @@ self: { ]; description = "Bindings to the JNI and a high level interface generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "java-bridge-extras" = callPackage @@ -163441,6 +172042,7 @@ self: { libraryHaskellDepends = [ base java-bridge transformers ]; description = "Utilities for working with the java-bridge package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "java-character" = callPackage @@ -163452,6 +172054,7 @@ self: { libraryHaskellDepends = [ base diet ]; description = "Functions to simulate Java's Character class"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "java-poker" = callPackage @@ -163478,6 +172081,7 @@ self: { libraryHaskellDepends = [ base containers hx java-bridge ]; description = "Tools for reflecting on Java classes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "javaclass" = callPackage @@ -163498,6 +172102,7 @@ self: { ]; description = "Java class files"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "javascript-bridge" = callPackage @@ -163519,6 +172124,8 @@ self: { testHaskellDepends = [ aeson base scotty stm text time wai-extra ]; description = "Remote Monad for JavaScript on the browser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "javascript-extras" = callPackage @@ -163560,6 +172167,7 @@ self: { ]; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "javasf"; }) {}; @@ -163577,7 +172185,9 @@ self: { ]; description = "A utility to print the target version of Java class files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "javav"; + broken = true; }) {}; "jbi" = callPackage @@ -163599,7 +172209,9 @@ self: { ]; description = "Just Build It - a \"do what I mean\" abstraction for Haskell build tools"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "jbi"; + broken = true; }) {}; "jcdecaux-vls" = callPackage @@ -163615,6 +172227,8 @@ self: { ]; description = "JCDecaux self-service bicycles API client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jdi" = callPackage @@ -163633,7 +172247,9 @@ self: { executableHaskellDepends = [ base mtl network ]; description = "Implementation of Java Debug Interface"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "Test"; + broken = true; }) {}; "jenga" = callPackage @@ -163655,7 +172271,9 @@ self: { executableHaskellDepends = [ base optparse-applicative text ]; description = "Generate a cabal freeze file from a stack.yaml"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "jenga"; + broken = true; }) {}; "jenkinsPlugins2nix" = callPackage @@ -163680,7 +172298,9 @@ self: { testHaskellDepends = [ base containers tasty-hspec text ]; description = "Generate nix for Jenkins plugins"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "jenkinsPlugins2nix"; + broken = true; }) {}; "jespresso" = callPackage @@ -163710,6 +172330,7 @@ self: { ]; description = "Extract all JavaScript from an HTML page and consolidate it in one script"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "jespresso"; }) {}; @@ -163769,6 +172390,8 @@ self: { ]; description = "Yet another streaming library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jinquantities" = callPackage @@ -163791,7 +172414,9 @@ self: { ]; description = "Unit conversion and manipulation library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "quantities"; + broken = true; }) {}; "jira-wiki-markup" = callPackage @@ -163878,6 +172503,8 @@ self: { ]; description = "JSON-RPC clients and servers using JMacro, and evented client-server Reactive Programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jmacro-rpc-happstack" = callPackage @@ -163894,6 +172521,7 @@ self: { ]; description = "Happstack backend for jmacro-rpc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "jmacro-rpc-snap" = callPackage @@ -163909,6 +172537,7 @@ self: { ]; description = "Snap backend for jmacro-rpc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "jml-web-service" = callPackage @@ -163929,6 +172558,8 @@ self: { testHaskellDepends = [ base protolude tasty ]; description = "Common utilities for running a web service"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jmonkey" = callPackage @@ -163963,6 +172594,8 @@ self: { testHaskellDepends = [ base hspec singletons ]; description = "Complete JNI raw bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) jdk;}; "jobqueue" = callPackage @@ -164008,6 +172641,7 @@ self: { ]; description = "A library for creating a jobs management website running custom jobs"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "join" = callPackage @@ -164020,6 +172654,7 @@ self: { libraryHaskellDepends = [ base haskell98 multisetrewrite stm ]; description = "Parallel Join Patterns with Guards and Propagation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "join-api" = callPackage @@ -164033,6 +172668,8 @@ self: { ]; description = "Bindings for Join push notifications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "joinlist" = callPackage @@ -164044,6 +172681,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Join list - symmetric list type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "joint" = callPackage @@ -164074,6 +172713,8 @@ self: { ]; description = "An implementation of the Jonathan's Card API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jord" = callPackage @@ -164115,6 +172756,8 @@ self: { ]; description = "JSON with Structure"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jordan-openapi" = callPackage @@ -164136,6 +172779,7 @@ self: { ]; description = "OpenAPI Definitions for Jordan, Automatically"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "jordan-servant" = callPackage @@ -164158,6 +172802,7 @@ self: { ]; description = "Servant Combinators for Jordan"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "jordan-servant-client" = callPackage @@ -164181,6 +172826,7 @@ self: { ]; description = "Servant Client Instances for Jordan Servant Types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "jordan-servant-openapi" = callPackage @@ -164205,6 +172851,7 @@ self: { ]; description = "OpenAPI schemas for Jordan-Powered Servant APIs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "jordan-servant-server" = callPackage @@ -164226,6 +172873,7 @@ self: { ]; description = "Servers for Jordan-Based Servant Combinators"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "jort" = callPackage @@ -164239,7 +172887,9 @@ self: { executableHaskellDepends = [ array base gtk ]; description = "JP's own ray tracer"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "jort"; + broken = true; }) {}; "jose" = callPackage @@ -164308,6 +172958,7 @@ self: { ]; description = "Tiny markdown notebook"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; mainProgram = "jot"; }) {}; @@ -164342,6 +172993,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Transform Joy code using conditional rewrite rules"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jpeg" = callPackage @@ -164353,6 +173006,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A library for decoding JPEG files written in pure Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jpl-horizons-api" = callPackage @@ -164433,6 +173088,8 @@ self: { libraryHaskellDepends = [ base wl-pprint ]; description = "Javascript: The Good Parts -- AST & Pretty Printer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "js-jquery" = callPackage @@ -164483,6 +173140,8 @@ self: { ]; description = "Interface for JavaScript that works with GHCJS and GHC"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jsaddle-dom" = callPackage @@ -164519,6 +173178,7 @@ self: { description = "JSaddle Hello World, an example package"; license = lib.licenses.mit; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; }) {}; "jsaddle-warp" = callPackage @@ -164545,6 +173205,8 @@ self: { ]; description = "Interface for JavaScript that works with GHCJS and GHC"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jsaddle-webkit2gtk" = callPackage @@ -164594,6 +173256,8 @@ self: { sha256 = "07qba7bnygnsy3yg4mk8bn8wfzca43cd7mzzjp5b4yracchvljqj"; description = "Interface for JavaScript that works with GHCJS and GHC"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jsc" = callPackage @@ -164622,6 +173286,7 @@ self: { libraryHaskellDepends = [ base DOM mtl WebBits ]; description = "Javascript Monadic Writer base package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "json" = callPackage @@ -164666,6 +173331,8 @@ self: { libraryHaskellDepends = [ aeson base ]; description = "Union 'alternative' or Either that has untagged JSON encoding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-api" = callPackage @@ -164687,6 +173354,8 @@ self: { ]; description = "Utilities for generating JSON-API payloads"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-api-lib" = callPackage @@ -164711,6 +173380,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Utilities for generating JSON-API payloads"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-assertions" = callPackage @@ -164726,6 +173397,8 @@ self: { ]; description = "Test that your (Aeson) JSON encoding matches your expectations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-ast" = callPackage @@ -164758,6 +173431,7 @@ self: { ]; description = "Encoders of JSON AST"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "json-ast-quickcheck" = callPackage @@ -164772,6 +173446,8 @@ self: { ]; description = "Compatibility layer for \"json-ast\" and \"QuickCheck\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-autotype" = callPackage @@ -164806,6 +173482,7 @@ self: { ]; description = "Automatic type declaration for JSON input data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "json-autotype"; }) {}; @@ -164829,6 +173506,7 @@ self: { ]; description = "JSON parser that uses byte strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "json-schema"; }) {}; @@ -164848,6 +173526,8 @@ self: { ]; description = "Data structure agnostic JSON serialization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-bytes-builder" = callPackage @@ -164863,6 +173543,8 @@ self: { benchmarkHaskellDepends = [ aeson criterion rebase ]; description = "Direct-to-bytes JSON Builder"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-directory" = callPackage @@ -164901,6 +173583,8 @@ self: { ]; description = "A direct-to-bytes single-pass JSON encoder with a declarative DSL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-enumerator" = callPackage @@ -164918,6 +173602,7 @@ self: { ]; description = "Pure-Haskell utilities for dealing with JSON with the enumerator package. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "json-extra" = callPackage @@ -164934,6 +173619,8 @@ self: { ]; description = "Utility functions to extend Aeson"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-feed" = callPackage @@ -164974,6 +173661,8 @@ self: { ]; description = "Generic JSON serialization / deserialization"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-incremental-decoder" = callPackage @@ -164998,6 +173687,7 @@ self: { ]; description = "Incremental JSON parser with early termination and a declarative DSL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "json-litobj" = callPackage @@ -165010,6 +173700,8 @@ self: { testHaskellDepends = [ base hspec json QuickCheck ]; description = "Extends Text.JSON to handle literal JS objects."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-pointer" = callPackage @@ -165023,6 +173715,8 @@ self: { libraryHaskellDepends = [ attoparsec base base-prelude text ]; description = "JSON Pointer parsing and interpretation utilities"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-pointer-aeson" = callPackage @@ -165038,6 +173732,7 @@ self: { ]; description = "Integration layer for \"json-pointer\" and \"aeson\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "json-pointer-hasql" = callPackage @@ -165054,6 +173749,7 @@ self: { ]; description = "JSON Pointer extensions for Hasql"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "json-pointy" = callPackage @@ -165078,6 +173774,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "JSON Pointer (RFC 6901) parsing, access, and modification"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-python" = callPackage @@ -165094,6 +173792,8 @@ self: { libraryPkgconfigDepends = [ python ]; description = "Call python inline from haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {python = null;}; "json-qq" = callPackage @@ -165110,6 +173810,8 @@ self: { ]; description = "Json Quasiquatation library for Haskell"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-query" = callPackage @@ -165133,6 +173835,7 @@ self: { ]; description = "Kitchen sink for querying JSON"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "json-rpc" = callPackage @@ -165191,6 +173894,7 @@ self: { ]; description = "JSON-RPC 2.0 on the client side."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "json-rpc-generic" = callPackage @@ -165211,6 +173915,8 @@ self: { ]; description = "Generic encoder and decode for JSON-RPC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-rpc-server" = callPackage @@ -165235,6 +173941,8 @@ self: { ]; description = "JSON-RPC 2.0 on the server side."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-schema" = callPackage @@ -165260,6 +173968,7 @@ self: { ]; description = "Types and type classes for defining JSON schemas"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "json-sop" = callPackage @@ -165301,6 +174010,7 @@ self: { ]; description = "Type-level JSON specification"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "json-spec-openapi" = callPackage @@ -165320,6 +174030,7 @@ self: { ]; description = "json-spec-openapi"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "json-state" = callPackage @@ -165388,6 +174099,8 @@ self: { ]; description = "High-performance JSON parser and encoder"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-to-haskell" = callPackage @@ -165437,6 +174150,7 @@ self: { ]; description = "Effectful parsing of JSON documents"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "json-tokens" = callPackage @@ -165464,6 +174178,7 @@ self: { ]; description = "Tokenize JSON"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "json-tools" = callPackage @@ -165483,6 +174198,8 @@ self: { ]; description = "A collection of JSON tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-tracer" = callPackage @@ -165506,6 +174223,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "A polymorphic, type-safe, json-structured tracing library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json-types" = callPackage @@ -165533,6 +174252,8 @@ self: { ]; description = "Library provides support for JSON"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "json2-hdbc" = callPackage @@ -165548,6 +174269,7 @@ self: { ]; description = "Support JSON for SQL Database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "json2-types" = callPackage @@ -165581,6 +174303,7 @@ self: { doHaddock = false; description = "Lossy conversion from JSON to Sugar"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "json2sg"; }) {}; @@ -165631,7 +174354,9 @@ self: { ]; description = "Filter select values in JSON objects to unix programs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "jsonextfilter"; + broken = true; }) {}; "jsonifier" = callPackage @@ -165711,6 +174436,8 @@ self: { ]; description = "JsonLogic Aeson Support"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jsonnet" = callPackage @@ -165747,7 +174474,9 @@ self: { ]; description = "Jsonnet implementaton in pure Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hs-jsonnet"; + broken = true; }) {}; "jsonpath" = callPackage @@ -165784,6 +174513,8 @@ self: { ]; description = "Parser and datatypes for the JSON Resume format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jsonrpc-conduit" = callPackage @@ -165806,6 +174537,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "JSON-RPC 2.0 server over a Conduit."; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jsonrpc-tinyclient" = callPackage @@ -165822,6 +174555,8 @@ self: { ]; description = "Tiny JSON-RPC client for Haskell Web3 library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jsons-to-schema" = callPackage @@ -165853,6 +174588,7 @@ self: { ]; description = "JSON to JSON Schema"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "jsons-to-schema-exe"; }) {}; @@ -165875,6 +174611,8 @@ self: { ]; description = "JSON Schema generator from Algebraic data type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jsonsql" = callPackage @@ -165895,7 +174633,9 @@ self: { ]; description = "Interpolate JSON object values into SQL strings"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "jsonsql"; + broken = true; }) {}; "jsontsv" = callPackage @@ -165916,7 +174656,9 @@ self: { ]; description = "JSON to TSV transformer"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "jsontsv"; + broken = true; }) {}; "jsonxlsx" = callPackage @@ -165937,7 +174679,9 @@ self: { ]; description = "json to xlsx converter"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "jsonxlsx"; + broken = true; }) {}; "jsop" = callPackage @@ -165962,6 +174706,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "Cherry picking in JSON objects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jspath" = callPackage @@ -165977,6 +174723,7 @@ self: { ]; description = "Extract substructures from JSON by following a path"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "juandelacosa" = callPackage @@ -166027,7 +174774,9 @@ self: { ]; description = "Tableau-based theorem prover for justification logic"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "judge"; + broken = true; }) {}; "judy" = callPackage @@ -166043,6 +174792,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Fast, scalable, mutable dynamic arrays, maps and hashes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {Judy = null;}; "juicy-draw" = callPackage @@ -166101,7 +174852,9 @@ self: { executableHaskellDepends = [ base ]; description = "A first-order reasoning toolbox"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "jukebox"; + broken = true; }) {}; "jump" = callPackage @@ -166169,6 +174922,8 @@ self: { ]; description = "A library for creating and using Jupyter kernels"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "justified-containers" = callPackage @@ -166185,6 +174940,8 @@ self: { ]; description = "Keyed container types with type-checked proofs of key presence"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jvm" = callPackage @@ -166210,6 +174967,7 @@ self: { ]; description = "Call JVM methods from Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "jvm-batching" = callPackage @@ -166236,6 +174994,7 @@ self: { ]; description = "Provides batched marshalling of values between Java and Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "jvm-binary" = callPackage @@ -166268,6 +175027,8 @@ self: { ]; description = "A library for reading Java class-files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jvm-parser" = callPackage @@ -166284,6 +175045,8 @@ self: { ]; description = "A parser for JVM bytecode files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "jvm-streaming" = callPackage @@ -166310,6 +175073,7 @@ self: { ]; description = "Expose Java iterators as streams from the streaming package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "jwt" = callPackage @@ -166356,6 +175120,8 @@ self: { ]; description = "Application wrapper for the k8s environment"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kademlia" = callPackage @@ -166377,6 +175143,8 @@ self: { ]; description = "An implementation of the Kademlia DHT Protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kafka" = callPackage @@ -166407,6 +175175,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Low-level Haskell client library for Apache Kafka 0.7."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kafka-client-sync" = callPackage @@ -166421,6 +175191,8 @@ self: { testHaskellDepends = [ base hw-kafka-client monad-parallel text ]; description = "Synchronous Kafka Client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kafka-device" = callPackage @@ -166441,6 +175213,7 @@ self: { ]; description = "UI device events via a Kafka message broker"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "kafka-device-glut" = callPackage @@ -166455,6 +175228,7 @@ self: { executableHaskellDepends = [ base GLUT kafka-device OpenGL ]; description = "GLUT events via a Kafka message broker"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "kafka-device-glut"; }) {}; @@ -166476,6 +175250,7 @@ self: { ]; description = "Linux joystick events via a Kafka message broker"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "kafka-device-joystick"; }) {}; @@ -166495,6 +175270,7 @@ self: { ]; description = "Leap Motion events via a Kafka message broker"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "kafka-device-leap"; }) {}; @@ -166516,6 +175292,7 @@ self: { ]; description = "Linux SpaceNavigator events via a Kafka message broker"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "kafka-device-spacenav"; }) {}; @@ -166531,6 +175308,7 @@ self: { executableHaskellDepends = [ base kafka-device vrpn ]; description = "VRPN events via a Kafka message broker"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "kafka-device-vrpn"; }) {}; @@ -166554,6 +175332,7 @@ self: { doHaddock = false; description = "Haskell Kaleidoscope tutorial"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "kalman" = callPackage @@ -166573,6 +175352,8 @@ self: { ]; description = "Kalman and particle filters and smoothers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kan-extensions" = callPackage @@ -166604,6 +175385,8 @@ self: { libraryHaskellDepends = [ array base ]; description = "Binary parsing with random access"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kanji" = callPackage @@ -166623,6 +175406,8 @@ self: { benchmarkHaskellDepends = [ aeson base containers criterion text ]; description = "Perform 漢字検定 (Japan Kanji Aptitude Test) level analysis on Japanese Kanji"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kansas-comet" = callPackage @@ -166664,6 +175449,7 @@ self: { ]; description = "Kansas Lava is a hardware simulator and VHDL generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "kansas-lava-cores" = callPackage @@ -166683,6 +175469,7 @@ self: { ]; description = "FPGA Cores Written in Kansas Lava"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "kansas-lava-papilio" = callPackage @@ -166701,6 +175488,7 @@ self: { ]; description = "Kansas Lava support files for the Papilio FPGA board"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "kansas-lava-shake" = callPackage @@ -166717,6 +175505,7 @@ self: { ]; description = "Shake rules for building Kansas Lava projects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "karabiner-config" = callPackage @@ -166736,6 +175525,8 @@ self: { ]; description = "Karabiner elements configuration generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "karakuri" = callPackage @@ -166751,6 +175542,7 @@ self: { ]; description = "Good stateful automata"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "karps" = callPackage @@ -166778,6 +175570,8 @@ self: { ]; description = "Haskell bindings for Spark Dataframes and Datasets"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "karver" = callPackage @@ -166853,6 +175647,8 @@ self: { ]; description = "Datadog scribe for the Katip logging framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "katip-elasticsearch" = callPackage @@ -166884,6 +175680,8 @@ self: { ]; description = "ElasticSearch scribe for the Katip logging framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "katip-kafka" = callPackage @@ -166897,6 +175695,8 @@ self: { ]; description = "Katip scribe to send logs to Kafka"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "katip-logstash" = callPackage @@ -166939,6 +175739,8 @@ self: { ]; description = "Logz.IO scribe for the Katip logging framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "katip-raven" = callPackage @@ -166955,6 +175757,8 @@ self: { ]; description = "Katip scribe for raven (https://sentry.io)"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "katip-rollbar" = callPackage @@ -166971,6 +175775,7 @@ self: { ]; description = "Katip scribe that logs to Rollbar"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "katip-scalyr-scribe" = callPackage @@ -166989,6 +175794,8 @@ self: { ]; description = "A katip scribe for logging to json"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "katip-syslog" = callPackage @@ -167005,6 +175812,8 @@ self: { testHaskellDepends = [ base ]; description = "Syslog Katip Scribe"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "katip-wai" = callPackage @@ -167047,7 +175856,9 @@ self: { testHaskellDepends = [ base bytestring directory mtl ]; description = "Client for the Kattis judge system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "katt"; + broken = true; }) {}; "katydid" = callPackage @@ -167081,7 +175892,9 @@ self: { ]; description = "A haskell implementation of Katydid"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "katydid-exe"; + broken = true; }) {}; "kawa" = callPackage @@ -167129,6 +175942,8 @@ self: { ]; description = "Utilities for serving static sites and blogs with Wai/Warp"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kawhi" = callPackage @@ -167151,6 +175966,8 @@ self: { ]; description = "stats.NBA.com library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kazura-queue" = callPackage @@ -167220,6 +176037,8 @@ self: { ]; description = "A simple k-d tree implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kdesrc-build-extra" = callPackage @@ -167238,7 +176057,9 @@ self: { ]; description = "Build profiles for kdesrc-build"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "kdesrc-build-extra"; + broken = true; }) {}; "kdesrc-build-profiles" = callPackage @@ -167302,7 +176123,9 @@ self: { ]; description = "cryptographic functions based on the sponge construction"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "collision"; + broken = true; }) {}; "keelung" = callPackage @@ -167321,6 +176144,7 @@ self: { ]; description = "DSL for creating zero-knowledge proofs"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "keenser" = callPackage @@ -167348,7 +176172,9 @@ self: { testHaskellDepends = [ base ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "keenser-exe"; + broken = true; }) {}; "keep-alive" = callPackage @@ -167415,6 +176241,7 @@ self: { ]; description = "Haskell on Gtk rails - Gtk-based global environment for MVC applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-mvc-model-lightmodel" = callPackage @@ -167431,6 +176258,7 @@ self: { ]; description = "Rapid Gtk Application Development - Reactive Protected Light Models"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-mvc-model-protectedmodel" = callPackage @@ -167447,6 +176275,7 @@ self: { ]; description = "Rapid Gtk Application Development - Protected Reactive Models"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-mvc-solutions-config" = callPackage @@ -167479,6 +176308,7 @@ self: { ]; description = "Haskell on Gtk rails - Solutions to recurrent problems in Gtk applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-mvc-view" = callPackage @@ -167503,6 +176333,7 @@ self: { ]; description = "Haskell on Gtk rails - Gtk-based View for MVC applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactive-cbmvar" = callPackage @@ -167521,6 +176352,7 @@ self: { ]; description = "Reactive Haskell on Rails - CBMVars as reactive values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactive-fs" = callPackage @@ -167536,6 +176368,7 @@ self: { ]; description = "Haskell on Rails - Files as Reactive Values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactive-gtk" = callPackage @@ -167552,6 +176385,7 @@ self: { ]; description = "Haskell on Gtk rails - Reactive Fields for Gtk widgets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactive-htmldom" = callPackage @@ -167569,6 +176403,7 @@ self: { ]; description = "Keera Hails Reactive bindings for HTML DOM via GHCJS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactive-network" = callPackage @@ -167584,6 +176419,7 @@ self: { ]; description = "Haskell on Rails - Sockets as Reactive Values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactive-polling" = callPackage @@ -167598,6 +176434,7 @@ self: { ]; description = "Haskell on Rails - Polling based Readable RVs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactive-wx" = callPackage @@ -167611,6 +176448,7 @@ self: { ]; description = "Haskell on Rails - Reactive Fields for WX widgets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactive-yampa" = callPackage @@ -167626,6 +176464,7 @@ self: { ]; description = "Haskell on Rails - FRP Yampa Signal Functions as RVs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactivelenses" = callPackage @@ -167644,6 +176483,7 @@ self: { ]; description = "Reactive Haskell on Rails - Lenses applied to Reactive Values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "keera-hails-reactivevalues" = callPackage @@ -167663,6 +176503,8 @@ self: { testToolDepends = [ cabal-install ]; description = "Haskell on Rails - Reactive Values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "keera-posture" = callPackage @@ -167697,6 +176539,7 @@ self: { executableSystemDepends = [ SDL_mixer ]; description = "Get notifications when your sitting posture is inappropriate"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "keera-posture"; }) {inherit (pkgs) SDL_mixer;}; @@ -167778,6 +176621,8 @@ self: { description = "Basic rendering programs for Keid engine"; license = lib.licenses.bsd3; platforms = [ "x86_64-linux" ]; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "keid-resource-gltf" = callPackage @@ -167794,6 +176639,7 @@ self: { description = "GLTF loader for Keid engine"; license = lib.licenses.bsd3; platforms = [ "x86_64-linux" ]; + hydraPlatforms = lib.platforms.none; }) {}; "keid-sound-openal" = callPackage @@ -167828,6 +176674,7 @@ self: { description = "DearImGui elements for Keid engine"; license = lib.licenses.bsd3; platforms = [ "x86_64-linux" ]; + hydraPlatforms = lib.platforms.none; }) {}; "keiretsu" = callPackage @@ -167849,7 +176696,9 @@ self: { ]; description = "Multi-process orchestration for development and integration testing"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "keiretsu"; + broken = true; }) {}; "kempe" = callPackage @@ -167884,7 +176733,9 @@ self: { doHaddock = false; description = "Kempe compiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "kc"; + broken = true; }) {}; "kerry" = callPackage @@ -167907,6 +176758,7 @@ self: { ]; description = "Manage and abstract your packer configurations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "kesha" = callPackage @@ -167928,6 +176780,8 @@ self: { ]; description = "Haskell implementation of nix-hash"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "keter" = callPackage @@ -168000,6 +176854,7 @@ self: { ]; description = "a dAmn ↔ IRC proxy"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "kevin"; }) {}; @@ -168017,7 +176872,9 @@ self: { testHaskellDepends = [ array base containers HUnit split ]; description = "CLI and library to generate QR codes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "kewar"; + broken = true; }) {}; "key" = callPackage @@ -168055,6 +176912,7 @@ self: { ]; description = "Store of values of arbitrary types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "keycloak-hs" = callPackage @@ -168078,7 +176936,9 @@ self: { ]; executableHaskellDepends = [ base hslogger ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "keycode" = callPackage @@ -168105,6 +176965,8 @@ self: { libraryHaskellDepends = [ base containers vector ]; description = "Generic indexing for many data structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "keyed-vals" = callPackage @@ -168197,6 +177059,7 @@ self: { libraryHaskellDepends = [ base udbus ]; description = "Keyring access"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "keys" = callPackage @@ -168246,6 +177109,7 @@ self: { ]; description = "back up a secret key securely to the cloud"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "keysafe"; }) {}; @@ -168295,6 +177159,7 @@ self: { ]; description = "Pure Haskell key/value store implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "keyword-args" = callPackage @@ -168316,6 +177181,7 @@ self: { ]; description = "Extract data from a keyword-args config file format"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "keyword-args"; }) {}; @@ -168336,7 +177202,9 @@ self: { ]; description = "Command-line file tagging and organization tool"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "khph"; + broken = true; }) {}; "ki" = callPackage @@ -168407,6 +177275,7 @@ self: { ]; description = "Parser and writer for KiCad files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "kickass-torrents-dump-parser" = callPackage @@ -168424,6 +177293,8 @@ self: { ]; description = "Parses kat.ph torrent dumps"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kickchan" = callPackage @@ -168442,6 +177313,8 @@ self: { ]; description = "Kick Channels: bounded channels with non-blocking writes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kif-parser" = callPackage @@ -168460,6 +177333,7 @@ self: { ]; description = "Process KIF iOS test logs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "kif-parser"; }) {}; @@ -168539,6 +177413,8 @@ self: { testHaskellDepends = [ base singletons singletons-base ]; description = "Type-level integers. Like KnownNat, but for integers."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kind-rational" = callPackage @@ -168555,6 +177431,7 @@ self: { ]; description = "Type-level rationals. Like KnownNat, but for rationals."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "kinds" = callPackage @@ -168586,6 +177463,7 @@ self: { ]; description = "A dependency manager for Xcode (Objective-C) projects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "kit"; }) {}; @@ -168625,6 +177503,8 @@ self: { ]; description = "A list type based on the Kleene star and plus"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kmeans" = callPackage @@ -168657,6 +177537,7 @@ self: { ]; description = "Sequential and parallel implementations of Lloyd's algorithm"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "kmeans-vector" = callPackage @@ -168673,6 +177554,7 @@ self: { benchmarkHaskellDepends = [ base criterion QuickCheck vector ]; description = "An implementation of the kmeans clustering algorithm based on the vector package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "kmeans-example"; }) {}; @@ -168691,7 +177573,9 @@ self: { ]; description = "K_M,N quadratic programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "kmn-programming"; + broken = true; }) {}; "kmonad" = callPackage @@ -168711,7 +177595,9 @@ self: { executableHaskellDepends = [ base ]; description = "Advanced keyboard remapping utility"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "kmonad"; + broken = true; }) {}; "kmp-dfa" = callPackage @@ -168724,6 +177610,8 @@ self: { testHaskellDepends = [ array base QuickCheck ]; description = "KMP algorithm implementation, based on Deterministic Finite State Automata"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "knead" = callPackage @@ -168745,6 +177633,7 @@ self: { ]; description = "Repa-like array processing using LLVM JIT"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "knead-arithmetic" = callPackage @@ -168758,6 +177647,7 @@ self: { ]; description = "Linear algebra and interpolation using LLVM JIT"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "knit" = callPackage @@ -168809,6 +177699,7 @@ self: { ]; description = "a minimal Rmarkdown sort-of-thing for haskell, by way of Pandoc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "knob" = callPackage @@ -168838,7 +177729,9 @@ self: { executableHaskellDepends = [ base containers parallel ]; description = "Khovanov homology computations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "Rolfsen-Kh"; + broken = true; }) {}; "koellner-phonetic" = callPackage @@ -168852,6 +177745,8 @@ self: { doHaddock = false; description = "\"map German words to code representing pronunciation\""; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "koji" = callPackage @@ -168883,6 +177778,7 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "CLI tool for installing rpms directly from Fedora Koji"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "koji-install"; }) {}; @@ -168906,6 +177802,7 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "Koji CLI tool for querying tasks and installing builds"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "koji-tool"; }) {}; @@ -168939,7 +177836,9 @@ self: { ]; description = "a concatenative not-quite-lisp for kittens"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "koneko"; + broken = true; }) {}; "konnakol" = callPackage @@ -168956,6 +177855,8 @@ self: { testHaskellDepends = [ base ]; description = "Formalising the rules of Konnakol, an Indian percussional art form"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kontra-config" = callPackage @@ -168972,6 +177873,8 @@ self: { ]; description = "JSON config file parsing based on unjson"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kontrakcja-templates" = callPackage @@ -169007,6 +177910,8 @@ self: { ]; description = "Client to Koofr API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "korea-holidays" = callPackage @@ -169026,6 +177931,8 @@ self: { ]; description = "Korea Holidays"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "korfu" = callPackage @@ -169041,6 +177948,7 @@ self: { ]; description = "The Korfu ORF Utility"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "korfu"; }) {}; @@ -169094,6 +178002,8 @@ self: { ]; description = "Kraken.io API client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "krank" = callPackage @@ -169150,6 +178060,8 @@ self: { ]; description = "Haskell bindings for Spark Dataframes and Datasets"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "krpc" = callPackage @@ -169175,6 +178087,8 @@ self: { ]; description = "KRPC protocol implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ks-test" = callPackage @@ -169186,6 +178100,7 @@ self: { libraryHaskellDepends = [ base gamma random-fu roots vector ]; description = "Kolmogorov distribution and Kolmogorov-Smirnov test"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "ksystools" = callPackage @@ -169209,6 +178124,8 @@ self: { libraryPkgconfigDepends = [ egl glew ]; description = "A binding for libktx from Khronos"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {egl = null; inherit (pkgs) glew;}; "ktx-codec" = callPackage @@ -169260,6 +178177,7 @@ self: { ]; description = "Client library for Kubernetes"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "kubernetes-client-core" = callPackage @@ -169287,6 +178205,8 @@ self: { ]; description = "Auto-generated kubernetes-client-core API Client"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kubernetes-webhook-haskell" = callPackage @@ -169303,6 +178223,8 @@ self: { ]; description = "Create Kubernetes Admission Webhooks in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kudzu" = callPackage @@ -169318,7 +178240,9 @@ self: { testHaskellDepends = [ base ]; description = "coverage driven random testing framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "kudzu"; + broken = true; }) {}; "kuifje" = callPackage @@ -169330,6 +178254,8 @@ self: { libraryHaskellDepends = [ base boxes containers lens ]; description = "A Quantitative Information Flow aware programming language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kure" = callPackage @@ -169341,6 +178267,8 @@ self: { libraryHaskellDepends = [ base dlist transformers ]; description = "Combinators for Strategic Programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "kure-your-boilerplate" = callPackage @@ -169352,6 +178280,7 @@ self: { libraryHaskellDepends = [ base kure template-haskell ]; description = "Generator for Boilerplate KURE Combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "kurita" = callPackage @@ -169384,6 +178313,7 @@ self: { testHaskellDepends = [ base ]; description = "Find the alpha emoji"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "kvitable" = callPackage @@ -169404,6 +178334,7 @@ self: { ]; description = "Key/Value Indexed Table container and formatting library"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; }) {}; "kyotocabinet" = callPackage @@ -169428,6 +178359,8 @@ self: { librarySystemDepends = [ lbfgsb ]; description = "Bindings to L-BFGS-B, Fortran code for limited-memory quasi-Newton bound-constrained optimization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {lbfgsb = null;}; "l10n" = callPackage @@ -169439,6 +178372,8 @@ self: { libraryHaskellDepends = [ base text time ]; description = "Enables providing localization as typeclass instances in separate files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "labeled-graph" = callPackage @@ -169450,6 +178385,8 @@ self: { libraryHaskellDepends = [ base labeled-tree ]; description = "Labeled graph structure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "labeled-tree" = callPackage @@ -169495,6 +178432,7 @@ self: { ]; description = "an experiment management framework"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "labor-example"; }) {}; @@ -169519,6 +178457,7 @@ self: { ]; description = "LabSat TCP Interface Wrapper"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "labsat"; }) {}; @@ -169541,6 +178480,7 @@ self: { ]; description = "A complicated turn-based game"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "labyrinth-server" = callPackage @@ -169574,6 +178514,7 @@ self: { ]; description = "A complicated turn-based game - Web server"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "labyrinth-server"; }) {}; @@ -169618,6 +178559,7 @@ self: { ]; description = "Solve Lagrange multiplier problems"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "laika" = callPackage @@ -169637,6 +178579,7 @@ self: { ]; description = "Minimalistic type-checked compile-time template engine"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "lambda" = callPackage @@ -169676,7 +178619,9 @@ self: { executableHaskellDepends = [ base ]; description = "A bridge from Haskell (on a CPU) to VHDL on a FPGA"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "haskell-test1"; + broken = true; }) {}; "lambda-calculator" = callPackage @@ -169702,7 +178647,9 @@ self: { ]; description = "A lambda calculus interpreter"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "lambda-calculator"; + broken = true; }) {}; "lambda-calculus-interpreter" = callPackage @@ -169746,6 +178693,8 @@ self: { testHaskellDepends = [ base hspec tasty tasty-hspec text ]; description = "Haskell implementation of (some of) lambda cube calculi"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lambda-devs" = callPackage @@ -169772,6 +178721,7 @@ self: { ]; description = "a Paralell-DEVS implementaion based on distributed-process"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lambda-devs-example"; }) {}; @@ -169787,6 +178737,7 @@ self: { ]; description = "Declarative command-line parser with type-driven pattern matching"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lambda-placeholders" = callPackage @@ -169814,6 +178765,8 @@ self: { ]; description = "Boltzmann sampler utilities for lambda calculus"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lambda-toolbox" = callPackage @@ -169827,7 +178780,9 @@ self: { executableHaskellDepends = [ base ]; description = "An application to work with the lambda calculus (for learning)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lambda-toolbox"; + broken = true; }) {}; "lambda2js" = callPackage @@ -169841,7 +178796,9 @@ self: { executableHaskellDepends = [ base parsec ]; description = "Untyped Lambda calculus to JavaScript compiler"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "lambda2js"; + broken = true; }) {}; "lambdaBase" = callPackage @@ -169853,6 +178810,8 @@ self: { libraryHaskellDepends = [ base parsec ]; testHaskellDepends = [ base parsec ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lambdaFeed" = callPackage @@ -169866,6 +178825,7 @@ self: { executableHaskellDepends = [ base haskell98 html ]; description = "RSS 2.0 feed generator"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "lambdaFeed"; }) {}; @@ -169884,6 +178844,7 @@ self: { ]; description = "..."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "lambdaLit"; }) {}; @@ -170105,6 +179066,8 @@ self: { ]; description = "Utility libraries for the advanced IRC bot, Lambdabot"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lambdabot-xmpp" = callPackage @@ -170130,7 +179093,9 @@ self: { ]; description = "Lambdabot plugin for XMPP (Jabber) protocol"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "lambdabot-xmpp"; + broken = true; }) {}; "lambdabot-zulip" = callPackage @@ -170151,6 +179116,7 @@ self: { testHaskellDepends = [ base hspec HUnit text ]; description = "Lambdabot for Zulip Chat"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "lamdabot-zulip-server"; }) {}; @@ -170196,6 +179162,8 @@ self: { ]; description = "LambdaCms 'core' subsite for Yesod apps"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lambdacms-media" = callPackage @@ -170212,6 +179180,7 @@ self: { ]; description = "LambdaCms \"media\" extension"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "lambdacube" = callPackage @@ -170225,6 +179194,7 @@ self: { executableHaskellDepends = [ base editline mtl pretty ]; description = "A simple lambda cube type checker"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cube"; }) {}; @@ -170239,6 +179209,7 @@ self: { ]; description = "Example for combining LambdaCube and Bullet"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lambdacube-compiler" = callPackage @@ -170263,6 +179234,7 @@ self: { ]; description = "LambdaCube 3D is a DSL to program GPUs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lc"; }) {}; @@ -170279,6 +179251,8 @@ self: { ]; description = "LambdaCube 3D IR"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lambdacube-edsl" = callPackage @@ -170295,6 +179269,7 @@ self: { ]; description = "LambdaCube 3D EDSL definition"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lambdacube-engine" = callPackage @@ -170314,6 +179289,8 @@ self: { ]; description = "3D rendering engine written entirely in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lambdacube-examples" = callPackage @@ -170330,6 +179307,7 @@ self: { ]; description = "Examples for LambdaCube"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lambdacube-gl" = callPackage @@ -170348,6 +179326,7 @@ self: { ]; description = "OpenGL 3.3 Core Profile backend for LambdaCube 3D"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lambdacube-ir" = callPackage @@ -170359,6 +179338,8 @@ self: { libraryHaskellDepends = [ aeson base containers mtl text vector ]; description = "LambdaCube 3D intermediate representation of 3D graphics pipelines"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lambdacube-samples" = callPackage @@ -170380,6 +179361,7 @@ self: { ]; description = "Samples for LambdaCube 3D"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lambdatex" = callPackage @@ -170400,6 +179382,8 @@ self: { ]; description = "Type-Safe LaTeX EDSL"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lambdatwit" = callPackage @@ -170425,6 +179409,8 @@ self: { ]; description = "Lambdabot running as a twitter bot. Similar to the @fsibot f# bot."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lambdaya-bus" = callPackage @@ -170438,6 +179424,7 @@ self: { ]; description = "Fpga bus core and serialization for RedPitaya"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "lambdiff" = callPackage @@ -170455,6 +179442,7 @@ self: { ]; description = "Diff Viewer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lambdiff"; }) {}; @@ -170481,6 +179469,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "A high-level binding to the LAME encoder"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {mp3lame = null;}; "lame-tester" = callPackage @@ -170497,6 +179487,7 @@ self: { testHaskellDepends = [ bizzlelude containers tasty tasty-hunit ]; description = "A strange and unnecessary selective test-running library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "landlock" = callPackage @@ -170524,6 +179515,7 @@ self: { doHaddock = false; description = "Haskell bindings for the Linux Landlock API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "landlocked"; }) {}; @@ -170536,6 +179528,7 @@ self: { libraryHaskellDepends = [ base bytestring http-streams Mapping ]; description = "A Lisp"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "language-Modula2" = callPackage @@ -170568,6 +179561,7 @@ self: { ]; description = "Parser, pretty-printer, and more for the Modula-2 programming language"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "parse"; }) {}; @@ -170587,6 +179581,8 @@ self: { ]; description = "ASN.1 encoding and decoding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-asn1" = callPackage @@ -170691,6 +179687,7 @@ self: { ]; description = "Interpreter and language infrastructure for Boogie"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "boogaloo"; }) {}; @@ -170724,6 +179721,8 @@ self: { libraryToolDepends = [ alex ]; description = "Extracting comments from C code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-c-inline" = callPackage @@ -170740,6 +179739,8 @@ self: { ]; description = "Inline C & Objective-C code in Haskell for language interoperability"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-c-quote" = callPackage @@ -170835,6 +179836,8 @@ self: { ]; description = "Conf parsers and pretty-printers for the Haskell programming language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-csharp" = callPackage @@ -170849,6 +179852,8 @@ self: { libraryToolDepends = [ alex ]; description = "C# source code manipulation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-css" = callPackage @@ -170872,6 +179877,8 @@ self: { testHaskellDepends = [ base hspec raw-strings-qq ]; description = "Manipulating Dart source: abstract syntax and pretty-printer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-dickinson" = callPackage @@ -170985,6 +179992,8 @@ self: { ]; description = "Dockerfile linter, parser, pretty-printer and embedded DSL"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-dot" = callPackage @@ -171059,6 +180068,7 @@ self: { libraryToolDepends = [ alex ]; description = "Parser and pretty printer for the Eiffel language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "language-elm" = callPackage @@ -171076,6 +180086,8 @@ self: { testToolDepends = [ doctest ]; description = "Generate elm code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-fortran" = callPackage @@ -171089,6 +180101,8 @@ self: { libraryToolDepends = [ alex happy ]; description = "Fortran lexer and parser, language support, and extensions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-gcl" = callPackage @@ -171100,6 +180114,8 @@ self: { libraryHaskellDepends = [ base bifunctors parsers ]; description = "Something similar to Dijkstra's guarded command language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-gemini" = callPackage @@ -171112,6 +180128,8 @@ self: { testHaskellDepends = [ base hedgehog hspec hspec-hedgehog text ]; description = "Datatypes and parsing/printing functions to represent the Gemini markup language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-glsl" = callPackage @@ -171145,6 +180163,8 @@ self: { libraryHaskellDepends = [ array base parsec utf8-string ]; description = "A library for analysis and synthesis of Go code"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-guess" = callPackage @@ -171157,6 +180177,8 @@ self: { libraryHaskellDepends = [ base bytestring cereal containers ]; description = "Guess at which language a text is written in using trigrams"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-haskell-extract" = callPackage @@ -171194,6 +180216,8 @@ self: { ]; description = "HCL parsers and pretty-printers for the Haskell programming language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-java" = callPackage @@ -171230,6 +180254,8 @@ self: { ]; description = "Parser for Java .class files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-javascript_0_7_0_0" = callPackage @@ -171285,6 +180311,8 @@ self: { testHaskellDepends = [ base hspec parsec ]; description = "javascript parser for es6 and es7"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-kort" = callPackage @@ -171308,6 +180336,7 @@ self: { ]; description = "Parser and serializer for the Kort information language"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "language-lua" = callPackage @@ -171350,6 +180379,8 @@ self: { testHaskellDepends = [ base ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-lua2" = callPackage @@ -171375,6 +180406,8 @@ self: { ]; description = "Lua parser and pretty printer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-mixal" = callPackage @@ -171389,7 +180422,9 @@ self: { executableHaskellDepends = [ base pretty ]; description = "Parser, pretty-printer, and AST types for the MIXAL assembly language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mixal-pretty"; + broken = true; }) {}; "language-ninja" = callPackage @@ -171428,6 +180463,7 @@ self: { ]; description = "A library for dealing with the Ninja build language"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "language-nix" = callPackage @@ -171477,6 +180513,7 @@ self: { ]; description = "Parser, pretty-printer, and more for the Oberon programming language"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "parse"; }) {}; @@ -171495,6 +180532,8 @@ self: { libraryToolDepends = [ alex happy ]; description = "Analysis and generation of Objective C code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-ocaml" = callPackage @@ -171520,6 +180559,8 @@ self: { ]; description = "Language tools for manipulating OCaml programs in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) zlib;}; "language-openscad" = callPackage @@ -171536,7 +180577,9 @@ self: { executableHaskellDepends = [ attoparsec base bytestring ]; description = "A simple parser for OpenSCAD"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Test"; + broken = true; }) {}; "language-pig" = callPackage @@ -171557,6 +180600,8 @@ self: { ]; description = "Pig parser in haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-protobuf" = callPackage @@ -171610,6 +180655,7 @@ self: { ]; description = "Tools to parse and evaluate the Puppet DSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "language-python" = callPackage @@ -171643,6 +180689,7 @@ self: { ]; description = "Generate coloured XHTML for Python code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pycol"; }) {}; @@ -171673,6 +180720,7 @@ self: { ]; description = "Utilities for working with the Qux language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "language-rust" = callPackage @@ -171702,6 +180750,8 @@ self: { ]; description = "Parsing and pretty printing of Rust code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-sally" = callPackage @@ -171716,6 +180766,8 @@ self: { ]; description = "AST and pretty printer for Sally"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-sh" = callPackage @@ -171730,6 +180782,8 @@ self: { ]; description = "A package for parsing shell scripts"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-slice" = callPackage @@ -171768,6 +180822,7 @@ self: { ]; description = "Various tools to detect/correct mistakes in words"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "language-sqlite" = callPackage @@ -171783,6 +180838,8 @@ self: { ]; description = "Full parser and generator for SQL as implemented by SQLite3"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-sygus" = callPackage @@ -171800,6 +180857,8 @@ self: { testHaskellDepends = [ base deepseq tasty tasty-hunit text ]; description = "A parser and printer for the SyGuS 2.0 language."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-thrift" = callPackage @@ -171876,6 +180935,8 @@ self: { libraryHaskellDepends = [ base containers parsec pretty ]; description = "A library for working with TypeScript Definition files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "language-vhdl" = callPackage @@ -171899,6 +180960,8 @@ self: { testHaskellDepends = [ base HUnit ]; description = "Parser and Pretty Printer for WebIDL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "laop" = callPackage @@ -171912,6 +180975,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq QuickCheck ]; description = "Matrix programming library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lapack" = callPackage @@ -172066,6 +181131,7 @@ self: { ]; description = "Scalable anonymous records"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "large-anon-testsuite-fourmolu-preprocessor"; }) {}; @@ -172087,6 +181153,8 @@ self: { ]; description = "Generic programming API for large-records and large-anon"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "large-hashable" = callPackage @@ -172143,6 +181211,7 @@ self: { ]; description = "Efficient compilation for large records, linear in the size of the record"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "largeword" = callPackage @@ -172201,6 +181270,7 @@ self: { ]; description = "Tool to track security alerts on LWN"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "lat"; }) {}; @@ -172232,7 +181302,9 @@ self: { ]; description = "Find the latest version of a package on npm"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "latest-npm-version"; + broken = true; }) {}; "latex" = callPackage @@ -172263,6 +181335,7 @@ self: { ]; description = "Use actual LaTeX to render formulae inside Hakyll pages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "latex-formulae-image" = callPackage @@ -172281,6 +181354,8 @@ self: { ]; description = "A library for rendering LaTeX formulae as images using an actual LaTeX installation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "latex-formulae-pandoc" = callPackage @@ -172302,6 +181377,7 @@ self: { ]; description = "Render LaTeX formulae in pandoc documents to images with an actual LaTeX installation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "latex-formulae-filter"; }) {}; @@ -172357,6 +181433,7 @@ self: { ]; description = "Use actual LaTeX to render formulae inside Hakyll pages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "latex-svg-image" = callPackage @@ -172374,6 +181451,8 @@ self: { ]; description = "A library for rendering LaTeX formulae as SVG using an actual LaTeX"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "latex-svg-pandoc" = callPackage @@ -172393,6 +181472,7 @@ self: { executableHaskellDepends = [ base latex-svg-image pandoc-types ]; description = "Render LaTeX formulae in pandoc documents to images with an actual LaTeX"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "latex-svg-filter"; }) {}; @@ -172474,6 +181554,8 @@ self: { ]; description = "Server-side SDK for integrating with LaunchDarkly"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "launchdarkly-server-sdk-redis-hedis" = callPackage @@ -172494,6 +181576,7 @@ self: { ]; description = "LaunchDarkly Server-Side SDK - Redis Integration"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "launchpad-control" = callPackage @@ -172511,7 +181594,9 @@ self: { executableHaskellDepends = [ base ]; description = "High and low-level interface to the Novation Launchpad midi controller"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "launchpad-control-examples"; + broken = true; }) {}; "lawful" = callPackage @@ -172595,6 +181680,8 @@ self: { benchmarkHaskellDepends = [ base machines time ]; description = "Concurrent networked stream transducers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lawz" = callPackage @@ -172659,6 +181746,7 @@ self: { ]; description = "Control structure similar to Control.Monad.State, allowing multiple nested states, distinguishable by provided phantom types."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "layers" = callPackage @@ -172670,6 +181758,8 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Modular type class machinery for monad transformer stacks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "layers-game" = callPackage @@ -172689,6 +181779,7 @@ self: { ]; description = "A prototypical 2d platform game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "layers"; }) {}; @@ -172701,6 +181792,8 @@ self: { libraryHaskellDepends = [ base convertible hinduce-missingh ]; description = "Turn values into pretty text or markup"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "layout-bootstrap" = callPackage @@ -172712,6 +181805,8 @@ self: { libraryHaskellDepends = [ base blaze-html containers text ]; description = "Template and widgets for Bootstrap2 to use with Text.Blaze.Html5"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "layout-rules" = callPackage @@ -172723,6 +181818,8 @@ self: { libraryHaskellDepends = [ alex-tools base text ]; description = "A collection of different layout implementations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "layouting" = callPackage @@ -172738,6 +181835,7 @@ self: { ]; description = "General layouting library. Currently supports layouting 2D areas and can be used as a backend for text pretty printing or automatic windows layouting managers."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "lazify" = callPackage @@ -172753,6 +181851,8 @@ self: { testHaskellDepends = [ base ]; description = "A simple utility for lazy record matching"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lazy" = callPackage @@ -172845,6 +181945,8 @@ self: { ]; description = "Identifiers for not-yet-computed values"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lazy-hash-cache" = callPackage @@ -172865,6 +181967,7 @@ self: { ]; description = "Storing computed values for re-use when the same program runs again"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "lazy-io" = callPackage @@ -172905,7 +182008,9 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Lazy-Spined Monadic Priority Queues"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "Levenshtein"; + broken = true; }) {}; "lazy-search" = callPackage @@ -172928,6 +182033,8 @@ self: { libraryHaskellDepends = [ array base ]; description = "Efficient implementation of lazy monolithic arrays (lazy in indexes)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lazyboy" = callPackage @@ -172947,6 +182054,8 @@ self: { ]; description = "An EDSL for programming the Game Boy"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lazyio" = callPackage @@ -172980,6 +182089,8 @@ self: { ]; description = "Set and Map from lazy/infinite lists"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lazysmallcheck" = callPackage @@ -173035,6 +182146,8 @@ self: { libraryHaskellDepends = [ array base ]; description = "Find longest common sublist of two lists"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ld-intervals" = callPackage @@ -173046,6 +182159,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Data structures for representing arbitrary intervals"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lda" = callPackage @@ -173061,6 +182176,7 @@ self: { ]; description = "Online Latent Dirichlet Allocation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ldap-client" = callPackage @@ -173128,6 +182244,7 @@ self: { ]; description = "See README for synopsis"; license = lib.licenses.agpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "ldap-scim-bridge"; }) {}; @@ -173147,6 +182264,7 @@ self: { ]; description = "LDIF idempotent apply tool"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "ldapply"; }) {}; @@ -173170,6 +182288,8 @@ self: { testHaskellDepends = [ base HUnit ]; description = "The LDAP Data Interchange Format (LDIF) tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ldtk-types" = callPackage @@ -173200,7 +182320,9 @@ self: { ]; description = "A simple portfolio generator"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "leaf"; + broken = true; }) {}; "leaky" = callPackage @@ -173219,6 +182341,7 @@ self: { ]; description = "Robust space leak, and its strictification"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "leaky"; }) {}; @@ -173235,6 +182358,7 @@ self: { ]; description = "Bonds to Lean theorem prover"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lean-peano" = callPackage @@ -173352,6 +182476,8 @@ self: { libraryHaskellDepends = [ base time ]; testHaskellDepends = [ base tasty tasty-hunit time ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "leapseconds-announced" = callPackage @@ -173375,6 +182501,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Learning Algorithms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "learn-physics" = callPackage @@ -173427,6 +182555,7 @@ self: { ]; description = "Yet another library for hidden Markov models"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "leb128" = callPackage @@ -173495,7 +182624,9 @@ self: { executableHaskellDepends = [ base containers ]; description = "Leetify text"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "leetify"; + broken = true; }) {}; "left4deadrl" = callPackage @@ -173531,6 +182662,7 @@ self: { ]; description = "Distributed, stateful, homogeneous microservice framework"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "legion-discovery" = callPackage @@ -173556,6 +182688,7 @@ self: { testHaskellDepends = [ base ]; description = "A discovery service based on Legion"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "legion-discovery"; }) {}; @@ -173576,6 +182709,7 @@ self: { testHaskellDepends = [ base ]; description = "Client library for communicating with legion-discovery"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "legion-extra" = callPackage @@ -173597,6 +182731,7 @@ self: { testHaskellDepends = [ base ]; description = "Extra non-essential utilities for building legion applications"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "leksah" = callPackage @@ -173634,6 +182769,7 @@ self: { executableHaskellDepends = [ base gi-gtk-hs leksah-server stm ]; description = "Haskell IDE written in Haskell"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "leksah"; }) {inherit (pkgs) gtk3;}; @@ -173672,6 +182808,7 @@ self: { ]; description = "Metadata collection for leksah"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "lendingclub" = callPackage @@ -173688,6 +182825,8 @@ self: { ]; description = "Bindings for the LendingClub marketplace API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lens" = callPackage @@ -173739,6 +182878,7 @@ self: { libraryHaskellDepends = [ accelerate base lens ]; description = "Instances to mix lens with Accelerate"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lens-action" = callPackage @@ -173827,6 +182967,8 @@ self: { libraryHaskellDepends = [ base lens time ]; description = "Lenses for Data.Time.* types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lens-errors" = callPackage @@ -173895,6 +183037,8 @@ self: { ]; description = "Lens interface for your filesystem; still a bit experimental"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lens-indexed-plated" = callPackage @@ -173917,6 +183061,8 @@ self: { libraryHaskellDepends = [ base ghc-prim profunctors tagged ]; description = "Integration of lenses with OverloadedLabels"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lens-misc" = callPackage @@ -173956,6 +183102,8 @@ self: { ]; description = "Alternate prelude that exports lens combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lens-process" = callPackage @@ -173973,6 +183121,8 @@ self: { ]; description = "Optics for system processes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lens-properties" = callPackage @@ -174045,6 +183195,8 @@ self: { ]; description = "simplified import of elementary lens-family combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lens-sop" = callPackage @@ -174069,6 +183221,8 @@ self: { libraryHaskellDepends = [ base lens tell ]; description = "MonadTell-based lens combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lens-text-encoding" = callPackage @@ -174080,6 +183234,8 @@ self: { libraryHaskellDepends = [ base bytestring lens text ]; description = "Isomorphisms and prisms for text <=> bytestring conversions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lens-th-rewrite" = callPackage @@ -174094,6 +183250,8 @@ self: { executableHaskellDepends = [ base ghc ghc-exactprint lens ]; description = "Rewrites Template Haskell splices using the API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lens-time" = callPackage @@ -174105,6 +183263,8 @@ self: { libraryHaskellDepends = [ base lens time ]; description = "lens for Data.Time"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lens-toml-parser" = callPackage @@ -174121,6 +183281,8 @@ self: { ]; description = "Lenses for toml-parser"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lens-tutorial" = callPackage @@ -174135,7 +183297,9 @@ self: { testHaskellDepends = [ base doctest ]; description = "Tutorial for the lens library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.Gabriella439 ]; + broken = true; }) {}; "lens-typelevel" = callPackage @@ -174147,6 +183311,8 @@ self: { libraryHaskellDepends = [ base singletons ]; description = "Type-level lenses using singletons"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lens-utils" = callPackage @@ -174163,6 +183329,7 @@ self: { ]; description = "Collection of missing lens utilities"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "lens-witherable" = callPackage @@ -174188,6 +183355,8 @@ self: { testHaskellDepends = [ base lens xml ]; description = "Lenses for the xml package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lenses" = callPackage @@ -174201,6 +183370,8 @@ self: { libraryHaskellDepends = [ base mtl template-haskell ]; description = "Simple Functional Lenses"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lensref" = callPackage @@ -174213,6 +183384,8 @@ self: { testHaskellDepends = [ base ]; description = "References which can be joined and on which lenses can be applied"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lentil" = callPackage @@ -174295,6 +183468,8 @@ self: { ]; description = "Van Laarhoven lens templates"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "less-arbitrary" = callPackage @@ -174323,6 +183498,8 @@ self: { ]; description = "Linear time testing with variant of Arbitrary class that always terminates"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "level-monad" = callPackage @@ -174334,6 +183511,8 @@ self: { libraryHaskellDepends = [ base fmlist ]; description = "Non-Determinism Monad for Level-Wise Search"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "leveldb-haskell" = callPackage @@ -174410,6 +183589,8 @@ self: { libraryHaskellDepends = [ base bindings-levmar hmatrix vector ]; description = "An implementation of the Levenberg-Marquardt algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "levmar-chart" = callPackage @@ -174423,6 +183604,7 @@ self: { libraryHaskellDepends = [ base Chart colour data-accessor levmar ]; description = "Plots the results of the Levenberg-Marquardt algorithm in a chart"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lex-applicative" = callPackage @@ -174442,6 +183624,7 @@ self: { benchmarkHaskellDepends = [ base gauge util ]; description = "See README for more info"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lexer-applicative" = callPackage @@ -174470,6 +183653,8 @@ self: { testHaskellDepends = [ base doctest QuickCheck ]; description = "L-Fuzzy Set Theory implementation in Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lgtk" = callPackage @@ -174497,6 +183682,7 @@ self: { ]; description = "Lens GUI Toolkit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lgtkdemo"; }) {}; @@ -174509,6 +183695,7 @@ self: { libraryHaskellDepends = [ haskell2010 ]; description = "Data structures for the Les Houches Accord"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "lhae" = callPackage @@ -174528,6 +183715,7 @@ self: { ]; description = "Simple spreadsheet program"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "lhae"; }) {}; @@ -174542,6 +183730,8 @@ self: { enableSeparateDataOutput = true; description = "LHC Haskell Compiler"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lhe" = callPackage @@ -174553,6 +183743,7 @@ self: { libraryHaskellDepends = [ bytestring haskell2010 HaXml lha ]; description = "Parser and writer for Les-Houches event files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "lhs2TeX-hl" = callPackage @@ -174571,7 +183762,9 @@ self: { ]; description = "Literate highlighter preprocessor for lhs2tex"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "lhs2TeX-hl"; + broken = true; }) {}; "lhs2html" = callPackage @@ -174624,7 +183817,9 @@ self: { ]; description = "Tool for using pdflatex with .lhs files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lhslatex"; + broken = true; }) {}; "libBF" = callPackage @@ -174657,6 +183852,8 @@ self: { ]; description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "libarchive" = callPackage @@ -174725,6 +183922,7 @@ self: { testHaskellDepends = [ base doctest doctest-prop lens ]; description = "Haskell bindings to libconfig"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libconfig;}; "libcspm" = callPackage @@ -174745,6 +183943,7 @@ self: { ]; description = "A library providing a parser, type checker and evaluator for CSPM"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "libexpect" = callPackage @@ -174757,6 +183956,8 @@ self: { librarySystemDepends = [ expect tcl ]; description = "Library for interacting with console applications via pseudoterminals"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) expect; inherit (pkgs) tcl;}; "libffi" = callPackage @@ -174831,6 +184032,7 @@ self: { ]; description = "Store and manipulate data in a graph"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "libhbb" = callPackage @@ -174854,7 +184056,9 @@ self: { ]; description = "Backend for text editors to provide better Haskell editing support"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; mainProgram = "libhbb-cli"; + broken = true; }) {}; "libinfluxdb" = callPackage @@ -174873,6 +184077,8 @@ self: { ]; description = "libinfluxdb"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "libiserv_9_6_1" = callPackage @@ -174917,6 +184123,8 @@ self: { ]; description = "Jenkins API interface"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "libjwt-typed" = callPackage @@ -174947,6 +184155,8 @@ self: { ]; description = "A Haskell implementation of JSON Web Token (JWT)"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "liblastfm" = callPackage @@ -174973,6 +184183,7 @@ self: { ]; description = "Lastfm API interface"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "liblawless" = callPackage @@ -175008,6 +184219,7 @@ self: { ]; description = "Prelude based on protolude for GHC 8 and beyond"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "liblinear-enumerator" = callPackage @@ -175021,6 +184233,7 @@ self: { ]; description = "liblinear iteratee"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "libltdl" = callPackage @@ -175034,6 +184247,8 @@ self: { libraryHaskellDepends = [ base ]; description = "FFI interface to libltdl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "libmdbx" = callPackage @@ -175062,7 +184277,9 @@ self: { ]; description = "Bindings for libmdbx, an embedded key/value store"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "libmdbx-exe"; + broken = true; }) {}; "libmodbus" = callPackage @@ -175108,6 +184325,7 @@ self: { ]; description = "Prelude based on protolude for GHC 8 and beyond"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "libmpd" = callPackage @@ -175201,7 +184419,9 @@ self: { testHaskellDepends = [ base ]; description = "Bindings to liboath"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "oathtool-hs"; + broken = true; }) {liboath = null; oath = null;}; "liboleg" = callPackage @@ -175217,6 +184437,8 @@ self: { ]; description = "An evolving collection of Oleg Kiselyov's Haskell modules"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "libpafe" = callPackage @@ -175230,6 +184452,8 @@ self: { testHaskellDepends = [ base bytestring iconv transformers ]; description = "Wrapper for libpafe"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {pafe = null;}; "libphonenumber" = callPackage @@ -175251,6 +184475,8 @@ self: { ]; description = "Parsing, formatting, and validating international phone numbers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {phonenumber = null; inherit (pkgs) protobuf;}; "libpq" = callPackage @@ -175263,6 +184489,8 @@ self: { librarySystemDepends = [ postgresql ]; description = "libpq binding for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) postgresql;}; "libraft" = callPackage @@ -175314,6 +184542,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Raft consensus algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "raft-example"; }) {}; @@ -175326,6 +184555,8 @@ self: { libraryHaskellDepends = [ base bytestring curl ]; description = "Wrapper to Random.org API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "librarian" = callPackage @@ -175371,6 +184602,7 @@ self: { ]; description = "Bindings to the Librato API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "libravatar" = callPackage @@ -175542,6 +184774,8 @@ self: { ]; description = "Haskell bindings for libsystemd-daemon"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {libsystemd-daemon = null; systemd-daemon = null;}; "libsystemd-journal" = callPackage @@ -175576,6 +184810,8 @@ self: { libraryPkgconfigDepends = [ taglib ]; description = "Binding to TagLib C library"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) taglib;}; "libtelnet" = callPackage @@ -175593,6 +184829,8 @@ self: { description = "Bindings to libtelnet"; license = lib.licenses.gpl3Plus; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libtelnet;}; "libversion" = callPackage @@ -175641,6 +184879,8 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "Bindings to libxls"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "libxlsxwriter-hs" = callPackage @@ -175653,6 +184893,8 @@ self: { librarySystemDepends = [ xlsxwriter ]; description = "Bindings to libxlsxwriter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {xlsxwriter = null;}; "libxml" = callPackage @@ -175683,6 +184925,7 @@ self: { ]; description = "Enumerator-based API for libXML's SAX interface"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "libxml-sax" = callPackage @@ -175708,6 +184951,8 @@ self: { librarySystemDepends = [ xslt ]; description = "Binding to libxslt"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {xslt = null;}; "libyaml" = callPackage @@ -175736,6 +184981,8 @@ self: { ]; description = "Low-level, streaming YAML interface via streamly"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "libzfs" = callPackage @@ -175755,7 +185002,9 @@ self: { description = "Bindings to libzfs, for dealing with the Z File System and Zpools"; license = lib.licenses.mit; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {nvpair = null; inherit (pkgs) zfs;}; "licensor" = callPackage @@ -175775,7 +185024,9 @@ self: { executableHaskellDepends = [ base Cabal containers directory ]; description = "A license compatibility helper"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "licensor"; + broken = true; }) {}; "lie" = callPackage @@ -175790,7 +185041,9 @@ self: { executableHaskellDepends = [ base ]; description = "Lie Algebras"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Lie"; + broken = true; }) {}; "life" = callPackage @@ -175832,7 +185085,9 @@ self: { ]; description = "Synchronize personal configs across multiple machines"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "life"; + broken = true; }) {}; "lifetimes" = callPackage @@ -175852,6 +185107,8 @@ self: { ]; description = "Flexible manual resource management"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lift-generics" = callPackage @@ -175963,6 +185220,7 @@ self: { ]; description = "lifted IO operations from the base library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lifted-protolude" = callPackage @@ -175980,6 +185238,8 @@ self: { ]; description = "A sensible set of defaults for writing lifted custom Preludes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lifted-stm" = callPackage @@ -176058,6 +185318,8 @@ self: { libraryHaskellDepends = [ base text ]; description = "Expand ligatures in unicode text"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ligd" = callPackage @@ -176083,6 +185345,8 @@ self: { testHaskellDepends = [ base containers lens linear QuickCheck ]; description = "a simple physics engine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lightning-haskell" = callPackage @@ -176104,6 +185368,7 @@ self: { ]; description = "Haskell client for lightning-viz REST API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lightstep-haskell" = callPackage @@ -176135,6 +185400,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "LightStep OpenTracing client library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "lightstep-haskell-stress-test"; }) {}; @@ -176152,6 +185418,7 @@ self: { libraryToolDepends = [ alex happy ]; description = "Lighttpd configuration file tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lighttpd-conf-qq" = callPackage @@ -176168,6 +185435,7 @@ self: { ]; description = "A QuasiQuoter for lighttpd configuration files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lilypond" = callPackage @@ -176184,6 +185452,8 @@ self: { ]; description = "Bindings to Lilypond"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lima" = callPackage @@ -176239,6 +185509,8 @@ self: { ]; description = "bindings for integer linear programming solver Coin/CBC"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lin-alg" = callPackage @@ -176261,6 +185533,8 @@ self: { libraryHaskellDepends = [ base hmatrix HUnit ]; description = "LINear Discriminant Analysis"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "linden" = callPackage @@ -176290,7 +185564,9 @@ self: { ]; description = "Zen gardening, based on l-systems"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "linden-example"; + broken = true; }) {}; "lindenmayer" = callPackage @@ -176354,6 +185630,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell SDK for LINE Messaging API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "line-break" = callPackage @@ -176380,6 +185658,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "raster line drawing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "line-indexed-cursor" = callPackage @@ -176394,6 +185674,8 @@ self: { benchmarkHaskellDepends = [ base criterion random ]; description = "Line-indexed file reader"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "line-size" = callPackage @@ -176468,6 +185750,7 @@ self: { testHaskellDepends = [ base doctest ]; description = "Lifting linear vector spaces into Accelerate"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "linear-algebra-cblas" = callPackage @@ -176488,7 +185771,9 @@ self: { ]; description = "A linear algebra library with bindings to BLAS and LAPACK"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "test-hs-linear-algebra"; + broken = true; }) {}; "linear-base" = callPackage @@ -176567,6 +185852,7 @@ self: { ]; description = "A simple library for linear codes (coding theory, error correction)"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "linear-generics" = callPackage @@ -176628,6 +185914,8 @@ self: { libraryHaskellDepends = [ base containers HUnit ]; description = "Finite maps for linear use"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "linear-opengl" = callPackage @@ -176643,6 +185931,8 @@ self: { ]; description = "Isomorphisms between linear and OpenGL types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "linear-programming" = callPackage @@ -176684,6 +185974,8 @@ self: { testHaskellDepends = [ base hspec network tasty-hspec ]; description = "Typed sockets"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "linear-tests" = callPackage @@ -176710,6 +186002,8 @@ self: { libraryHaskellDepends = [ base random ]; description = "A low-dimensional linear algebra library, operating on the Num typeclass"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "linearEqSolver" = callPackage @@ -176722,6 +186016,7 @@ self: { description = "Use SMT solvers to solve linear systems over integers and rationals"; license = lib.licenses.bsd3; badPlatforms = [ "aarch64-linux" ]; + hydraPlatforms = lib.platforms.none; }) {}; "linearmap-category" = callPackage @@ -176767,6 +186062,8 @@ self: { ]; description = "Linear scan register allocator, formally verified in Coq"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "linearscan-hoopl" = callPackage @@ -176787,6 +186084,7 @@ self: { ]; description = "Makes it easy to use the linearscan register allocator with Hoopl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "linebreak" = callPackage @@ -176819,7 +186117,9 @@ self: { ]; description = "A lightweight readline-replacement library for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "linenoise-demo"; + broken = true; }) {}; "lines-of-action" = callPackage @@ -176831,6 +186131,8 @@ self: { libraryHaskellDepends = [ base containers mtl safe ]; description = "Lines of Action, 2-player strategy board game"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lingo" = callPackage @@ -176853,7 +186155,9 @@ self: { testHaskellDepends = [ base hspec ]; description = "File extension based programming language detection"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "generate"; + broken = true; }) {}; "linguistic-ordinals" = callPackage @@ -176865,6 +186169,8 @@ self: { libraryHaskellDepends = [ base text ]; description = "Express Integral types as linguistic ordinals (1st, 2nd, 3rd, etc)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "link-relations" = callPackage @@ -176921,6 +186227,7 @@ self: { ]; description = "linkchk is a network interface link ping monitor"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "linkchk"; }) {}; @@ -176938,6 +186245,7 @@ self: { ]; description = "Combines multiple GHC Core modules into a single module"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "linkcore"; }) {}; @@ -176951,6 +186259,8 @@ self: { testHaskellDepends = [ base ]; description = "A pure linked list which is mutable through iterators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "linkedhashmap" = callPackage @@ -176973,6 +186283,8 @@ self: { ]; description = "Persistent LinkedHashMap data structure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "linklater" = callPackage @@ -176995,6 +186307,8 @@ self: { ]; description = "A Haskell library for the Slack API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "linnet" = callPackage @@ -177021,6 +186335,7 @@ self: { ]; description = "Lightweight library for building HTTP API"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "linnet-aeson" = callPackage @@ -177038,6 +186353,7 @@ self: { ]; description = "Aeson JSON support for Linnet"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "linnet-conduit" = callPackage @@ -177058,6 +186374,7 @@ self: { ]; description = "Conduit-backed support for streaming in Linnet"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "linode" = callPackage @@ -177079,6 +186396,8 @@ self: { ]; description = "Bindings to the Linode API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "linode-v4" = callPackage @@ -177095,6 +186414,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Haskell wrapper for the Linode v4 API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "linux-blkid" = callPackage @@ -177111,6 +186432,8 @@ self: { libraryPkgconfigDepends = [ blkid ]; description = "Linux libblkid"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {blkid = null;}; "linux-capabilities" = callPackage @@ -177133,6 +186456,8 @@ self: { libraryHaskellDepends = [ base filepath ]; description = "Very basic interface to the Linux CGroup Virtual Filesystem"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "linux-evdev" = callPackage @@ -177147,6 +186472,8 @@ self: { description = "Bindings to Linux evdev input device interface"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "linux-file-extents" = callPackage @@ -177211,6 +186538,8 @@ self: { libraryPkgconfigDepends = [ libkmod ]; description = "Linux kernel modules support"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {libkmod = null;}; "linux-mount" = callPackage @@ -177270,6 +186599,8 @@ self: { ]; description = "Read files generated by perf on Linux"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "linux-ptrace" = callPackage @@ -177287,6 +186618,7 @@ self: { ]; description = "Wrapping of Linux' ptrace(2)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "linux-xattr" = callPackage @@ -177298,6 +186630,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Read, set and list extended attributes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "linx-gateway" = callPackage @@ -177318,7 +186652,9 @@ self: { ]; description = "Implementation of the Enea LINX gateway protocol"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "Ping"; + broken = true; }) {}; "lio" = callPackage @@ -177346,6 +186682,7 @@ self: { ]; description = "Labeled IO library"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "lio-fs" = callPackage @@ -177388,7 +186725,9 @@ self: { ]; description = "LIO support for the Simple web framework"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "lio-simple"; + broken = true; }) {}; "lion" = callPackage @@ -177406,6 +186745,7 @@ self: { ]; description = "RISC-V Core"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lipsum-gen" = callPackage @@ -177417,6 +186757,8 @@ self: { libraryHaskellDepends = [ base QuickCheck ]; description = "Generators for random sequences of English-like nonsense text"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "liquid" = callPackage @@ -177441,6 +186783,8 @@ self: { benchmarkHaskellDepends = [ aeson attoparsec base criterion text ]; description = "Liquid template language library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "liquid-base" = callPackage @@ -177454,6 +186798,7 @@ self: { libraryHaskellDepends = [ base liquid-ghc-prim liquidhaskell ]; description = "Drop-in base replacement for LiquidHaskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "liquid-bytestring" = callPackage @@ -177469,6 +186814,7 @@ self: { libraryHaskellDepends = [ bytestring liquid-base liquidhaskell ]; description = "LiquidHaskell specs for the bytestring package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "liquid-containers" = callPackage @@ -177484,6 +186830,7 @@ self: { libraryHaskellDepends = [ containers liquid-base liquidhaskell ]; description = "LiquidHaskell specs for the containers package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "liquid-fixpoint" = callPackage @@ -177521,7 +186868,9 @@ self: { doCheck = false; description = "Predicate Abstraction-based Horn-Clause/Implication Constraint Solver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "fixpoint"; + broken = true; }) {inherit (pkgs) git; inherit (pkgs) nettools; inherit (pkgs) z3;}; @@ -177536,6 +186885,7 @@ self: { libraryHaskellDepends = [ ghc-prim liquidhaskell ]; description = "Drop-in ghc-prim replacement for LiquidHaskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "liquid-parallel" = callPackage @@ -177550,6 +186900,7 @@ self: { libraryHaskellDepends = [ liquid-base liquidhaskell parallel ]; description = "LiquidHaskell specs for the parallel package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "liquid-platform" = callPackage @@ -177569,6 +186920,7 @@ self: { ]; description = "A battery-included platform for LiquidHaskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "liquidhaskell"; }) {}; @@ -177586,6 +186938,7 @@ self: { ]; description = "General utility modules for LiquidHaskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "liquid-vector" = callPackage @@ -177599,6 +186952,7 @@ self: { libraryHaskellDepends = [ liquid-base liquidhaskell vector ]; description = "LiquidHaskell specs for the vector package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "liquidhaskell" = callPackage @@ -177638,6 +186992,7 @@ self: { testSystemDepends = [ z3 ]; description = "Liquid Types for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "liquid"; }) {inherit (pkgs) z3;}; @@ -177652,6 +187007,8 @@ self: { libraryHaskellDepends = [ base Cabal directory filepath ]; description = "Liquid Haskell integration for Cabal and Stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "liquidhaskell-cabal-demo" = callPackage @@ -177667,6 +187024,7 @@ self: { executableHaskellDepends = [ base liquidhaskell-cabal ]; description = "Demo of Liquid Haskell integration for Cabal and Stack"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "ffi"; }) {}; @@ -177726,6 +187084,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "testing list fusion for success"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "list-grouping" = callPackage @@ -177748,6 +187108,8 @@ self: { libraryHaskellDepends = [ base ]; description = "List Multiplexing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "list-predicate" = callPackage @@ -177780,6 +187142,8 @@ self: { ]; description = "A simple list prompt UI for the terminal"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "list-remote-forwards" = callPackage @@ -177852,6 +187216,7 @@ self: { ]; description = "An \"attoparsec\" adapter for \"list-t\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "list-t-html-parser" = callPackage @@ -177875,6 +187240,7 @@ self: { ]; description = "Streaming HTML parser"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "list-t-http-client" = callPackage @@ -177890,6 +187256,8 @@ self: { ]; description = "A streaming HTTP client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "list-t-libcurl" = callPackage @@ -177906,6 +187274,8 @@ self: { ]; description = "A \"libcurl\"-based streaming HTTP client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "list-t-text" = callPackage @@ -177925,6 +187295,8 @@ self: { ]; description = "A streaming text codec"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "list-transformer" = callPackage @@ -177972,6 +187344,8 @@ self: { ]; description = "Tries and Patricia tries: finite sets and maps for list keys"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "list-tuple" = callPackage @@ -177993,6 +187367,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "List-like operations for tuples"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "list-witnesses" = callPackage @@ -178011,6 +187386,7 @@ self: { ]; description = "Witnesses for working with type-level lists"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "list-zip-def" = callPackage @@ -178022,6 +187398,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Provides zips with default values"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "list-zipper" = callPackage @@ -178044,6 +187422,8 @@ self: { ]; description = "A list zipper"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "listenbrainz-client" = callPackage @@ -178061,6 +187441,7 @@ self: { ]; description = "A client library to the ListenBrainz project"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "listlike-instances" = callPackage @@ -178072,6 +187453,8 @@ self: { libraryHaskellDepends = [ base bytestring ListLike text vector ]; description = "Extra instances of the ListLike class"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lists" = callPackage @@ -178142,6 +187525,7 @@ self: { ]; description = "Append only key-list database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lit" = callPackage @@ -178161,6 +187545,7 @@ self: { ]; description = "A simple tool for literate programming"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "lit"; }) {}; @@ -178173,6 +187558,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Non-overloaded functions for concrete literals"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "literatex" = callPackage @@ -178214,6 +187601,8 @@ self: { testHaskellDepends = [ base containers mtl tasty tasty-hunit ]; description = "Simple implementation of Earley parsing"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "little-logger" = callPackage @@ -178276,6 +187665,7 @@ self: { ]; description = "Live coding of MIDI music"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "liveplot" = callPackage @@ -178311,6 +187701,8 @@ self: { libraryHaskellDepends = [ base ]; librarySystemDepends = [ picosat ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) picosat;}; "llrbtree" = callPackage @@ -178342,7 +187734,9 @@ self: { ]; description = "An implementation of the LLSD data system"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "llsdutil"; + broken = true; }) {}; "llvm" = callPackage @@ -178359,6 +187753,7 @@ self: { ]; description = "Bindings to the LLVM compiler toolkit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "llvm-analysis" = callPackage @@ -178386,6 +187781,7 @@ self: { ]; description = "A Haskell library for analyzing LLVM bitcode"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "llvm-base" = callPackage @@ -178397,6 +187793,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "FFI bindings to the LLVM compiler toolkit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "llvm-base-types" = callPackage @@ -178417,6 +187815,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "The base types for a mostly pure Haskell LLVM analysis library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "llvm-base-util" = callPackage @@ -178428,6 +187827,7 @@ self: { libraryHaskellDepends = [ base llvm-base ]; description = "Utilities for bindings to the LLVM compiler toolkit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "llvm-data-interop" = callPackage @@ -178448,6 +187848,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "A low-level data interoperability binding for LLVM"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "llvm-dsl" = callPackage @@ -178465,6 +187866,7 @@ self: { ]; description = "Support for writing an EDSL with LLVM-JIT as target"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "llvm-extension" = callPackage @@ -178483,6 +187885,7 @@ self: { ]; description = "Processor specific intrinsics for the llvm interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "llvm-extra" = callPackage @@ -178510,6 +187913,7 @@ self: { doHaddock = false; description = "Utility functions for the llvm interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "llvm-ffi" = callPackage @@ -178569,6 +187973,7 @@ self: { ]; description = "General purpose LLVM bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {llvm-config = null;}; "llvm-general-pure" = callPackage @@ -178589,6 +187994,8 @@ self: { ]; description = "Pure Haskell LLVM functionality (no FFI)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "llvm-general-quote" = callPackage @@ -178612,6 +188019,7 @@ self: { ]; description = "QuasiQuoting llvm code for llvm-general"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "llvm-hs" = callPackage @@ -178638,6 +188046,8 @@ self: { ]; description = "General purpose LLVM bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {llvm-config = null;}; "llvm-hs-pretty" = callPackage @@ -178658,6 +188068,7 @@ self: { ]; description = "A pretty printer for LLVM IR"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "llvm-hs-pure" = callPackage @@ -178695,6 +188106,8 @@ self: { ]; description = "Bindings to the LLVM compiler toolkit with some custom extensions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "llvm-party" = callPackage @@ -178719,6 +188132,8 @@ self: { ]; description = "General purpose LLVM bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "llvm-pkg-config" = callPackage @@ -178757,6 +188172,8 @@ self: { ]; description = "A pretty printing library inspired by the llvm binding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "llvm-pretty-bc-parser" = callPackage @@ -178783,6 +188200,7 @@ self: { ]; description = "LLVM bitcode parsing library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "llvm-disasm"; }) {}; @@ -178805,6 +188223,8 @@ self: { doHaddock = false; description = "Bindings to the LLVM compiler toolkit using type families"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "llvm-tools" = callPackage @@ -178832,6 +188252,7 @@ self: { ]; description = "Useful tools built on llvm-analysis"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lmdb" = callPackage @@ -178866,6 +188287,8 @@ self: { ]; description = "Higher level API for working with LMDB"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lmdb-simple" = callPackage @@ -178881,6 +188304,8 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Simple API for LMDB"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lmonad" = callPackage @@ -178901,6 +188326,8 @@ self: { ]; description = "LMonad is an Information Flow Control (IFC) framework for Haskell applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lmonad-yesod" = callPackage @@ -178921,6 +188348,7 @@ self: { ]; description = "LMonad for Yesod integrates LMonad's IFC with Yesod web applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "lnd-client" = callPackage @@ -178955,6 +188383,7 @@ self: { doHaddock = false; description = "Lightning Network Daemon (LND) client library for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lnd-client-prof"; }) {}; @@ -178973,6 +188402,8 @@ self: { ]; description = "Support for developing against the LNURL protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lnurl-authenticator" = callPackage @@ -178995,6 +188426,7 @@ self: { executableHaskellDepends = [ base Clipboard optparse-applicative ]; description = "A command line tool to manage LNURL auth identities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lnurl-authenticator"; }) {}; @@ -179007,6 +188439,8 @@ self: { libraryHaskellDepends = [ base containers hslogger PSQueue stm ]; description = "Client-side load balancing utilities"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "load-env" = callPackage @@ -179039,6 +188473,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "A cross platform library for loading bundled fonts into your application"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "loadavg" = callPackage @@ -179095,6 +188531,8 @@ self: { libraryHaskellDepends = [ base containers hedgehog loc ]; description = "Hedgehog generators for loc"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "local-address" = callPackage @@ -179106,6 +188544,8 @@ self: { libraryHaskellDepends = [ base network ]; description = "Functions to get local interface address"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "local-search" = callPackage @@ -179122,6 +188562,7 @@ self: { ]; description = "Generalised local search within Haskell, for applications in combinatorial optimisation"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "localization" = callPackage @@ -179151,6 +188592,7 @@ self: { ]; description = "GNU Gettext-based messages localization library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "located" = callPackage @@ -179162,6 +188604,8 @@ self: { libraryHaskellDepends = [ base text ]; description = "Source location helpers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "located-base" = callPackage @@ -179186,6 +188630,8 @@ self: { libraryHaskellDepends = [ base monad-logger text ]; description = "Location-aware logging without Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "locators" = callPackage @@ -179218,7 +188664,9 @@ self: { executableHaskellDepends = [ base ]; description = "Support for precise error locations in source files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "loch"; + broken = true; }) {}; "loch-th" = callPackage @@ -179271,6 +188719,7 @@ self: { ]; description = "Very simple poll lock"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "locked-poll"; }) {}; @@ -179329,6 +188778,7 @@ self: { ]; description = "Structured logging solution with multiple backends"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "log-base" = callPackage @@ -179387,7 +188837,9 @@ self: { ]; description = "An extensible log effect using extensible-effects"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "log-example"; + broken = true; }) {}; "log-effect-syslog" = callPackage @@ -179404,6 +188856,7 @@ self: { ]; description = "Syslog functions for log-effect"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "log-effectful" = callPackage @@ -179456,6 +188909,7 @@ self: { ]; description = "Structured logging solution (PostgreSQL back end)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "log-utils" = callPackage @@ -179478,6 +188932,7 @@ self: { ]; description = "Utils for working with logs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "log-warper" = callPackage @@ -179513,6 +188968,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Flexible, configurable, monadic and pretty logging"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "log2json" = callPackage @@ -179526,7 +188983,9 @@ self: { executableHaskellDepends = [ base containers json parsec ]; description = "Turn log file records into JSON"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "log2json"; + broken = true; }) {}; "log4hs" = callPackage @@ -179557,6 +189016,7 @@ self: { ]; description = "A python logging style log library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "logentries" = callPackage @@ -179576,6 +189036,8 @@ self: { ]; description = "Request logger middleware for Logentries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "logfloat" = callPackage @@ -179619,6 +189081,8 @@ self: { ]; description = "Fast & extensible logging framework"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "logger-thread" = callPackage @@ -179713,6 +189177,7 @@ self: { executableHaskellDepends = [ base ]; description = "Supplemental packages for `logging-effect`"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "log-extra"; }) {}; @@ -179732,6 +189197,8 @@ self: { executableHaskellDepends = [ base logging-effect prettyprinter ]; description = "TH splices to augment log messages with file info"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "logging-effect-extra-handler" = callPackage @@ -179750,6 +189217,8 @@ self: { executableHaskellDepends = [ base logging-effect prettyprinter ]; description = "Handy logging handler combinators"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "logging-effect-syslog" = callPackage @@ -179855,6 +189324,7 @@ self: { ]; description = "Framework for propositional and first order logic, theorem proving"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "logical-constraints" = callPackage @@ -179877,6 +189347,8 @@ self: { libraryHaskellDepends = [ base logict transformers ]; description = "Backtracking mutable references in the ST and IO monads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "logict" = callPackage @@ -179932,6 +189404,8 @@ self: { ]; description = "A backtracking logic-programming monad with asymptotic improvements to msplit"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "logict-state" = callPackage @@ -179967,6 +189441,8 @@ self: { testHaskellDepends = [ base hspec time ]; description = "Parse Heroku application/logplex documents"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "logsink" = callPackage @@ -180019,6 +189495,7 @@ self: { executableHaskellDepends = [ haskell98 ]; description = "Useful utilities for the Lojban language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "jbovlastegendb"; }) {}; @@ -180034,7 +189511,9 @@ self: { executableHaskellDepends = [ base ]; description = "lojban parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "testParser"; + broken = true; }) {}; "lojbanXiragan" = callPackage @@ -180049,7 +189528,9 @@ self: { executableHaskellDepends = [ base ]; description = "lojban to xiragan"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "xiragan"; + broken = true; }) {}; "lojysamban" = callPackage @@ -180063,6 +189544,7 @@ self: { executableHaskellDepends = [ base lojbanParser yjtools ]; description = "Prolog with lojban"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lojysamban"; }) {}; @@ -180092,6 +189574,7 @@ self: { testHaskellDepends = [ base test-framework ]; description = "A library for lattice cryptography"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "lol-apps" = callPackage @@ -180112,6 +189595,7 @@ self: { ]; description = "Lattice-based cryptographic applications using ."; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "lol-benches" = callPackage @@ -180128,6 +189612,7 @@ self: { ]; description = "A library for benchmarking ."; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "lol-calculus" = callPackage @@ -180149,7 +189634,9 @@ self: { ]; description = "Calculus for LOL (λω language)"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "lol-calculus"; + broken = true; }) {}; "lol-cpp" = callPackage @@ -180169,6 +189656,7 @@ self: { benchmarkHaskellDepends = [ base DRBG lol lol-apps MonadRandom ]; description = "A fast C++ backend for ."; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "lol-repa" = callPackage @@ -180188,6 +189676,7 @@ self: { benchmarkHaskellDepends = [ base DRBG lol lol-benches ]; description = "A repa backend for ."; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "lol-tests" = callPackage @@ -180207,6 +189696,7 @@ self: { testHaskellDepends = [ base lol test-framework ]; description = "A library for testing ."; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "lol-typing" = callPackage @@ -180231,6 +189721,7 @@ self: { ]; description = "Type inferencer for LOL (λω language)"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "loli" = callPackage @@ -180248,6 +189739,7 @@ self: { ]; description = "A minimum web dev DSL in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "long-double" = callPackage @@ -180259,6 +189751,8 @@ self: { libraryHaskellDepends = [ base integer-gmp ]; description = "FFI bindings for C long double"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "longboi" = callPackage @@ -180270,6 +189764,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Dependently-typed linked list implementation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "longshot" = callPackage @@ -180302,6 +189798,7 @@ self: { description = "Fast Brute-force search using parallelism"; license = lib.licenses.mit; badPlatforms = [ "aarch64-linux" ]; + hydraPlatforms = lib.platforms.none; mainProgram = "longshot"; }) {}; @@ -180337,6 +189834,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Statically generate lookup tables using Template Haskell"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "loop" = callPackage @@ -180365,6 +189864,8 @@ self: { testHaskellDepends = [ base hspec mtl transformers vector ]; description = "monadic loop dsl"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "loop-effin" = callPackage @@ -180376,6 +189877,7 @@ self: { libraryHaskellDepends = [ base effin ]; description = "control-monad-loop port for effin"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "loop-while" = callPackage @@ -180387,6 +189889,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformer supporting various styles of while loop"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "loopbreaker" = callPackage @@ -180404,6 +189908,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "inline self-recursive definitions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "looper" = callPackage @@ -180424,6 +189930,8 @@ self: { ]; testToolDepends = [ sydtest-discover ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "loops" = callPackage @@ -180441,6 +189949,8 @@ self: { benchmarkHaskellDepends = [ base criterion transformers vector ]; description = "Fast imperative-style loops"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "loopy" = callPackage @@ -180459,7 +189969,9 @@ self: { ]; description = "Find all biological feedback loops within an ecosystem graph"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "loopy"; + broken = true; }) {}; "lord" = callPackage @@ -180500,7 +190012,9 @@ self: { ]; description = "A command line interface to online radios"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "lord"; + broken = true; }) {}; "lorem" = callPackage @@ -180515,7 +190029,9 @@ self: { executableHaskellDepends = [ base ]; description = "Library for generating filler text"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lorem"; + broken = true; }) {}; "lorentz" = callPackage @@ -180541,6 +190057,7 @@ self: { ]; description = "EDSL for the Michelson Language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "loris" = callPackage @@ -180554,6 +190071,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "interface to Loris API"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {loris = null;}; "loshadka" = callPackage @@ -180572,7 +190091,9 @@ self: { ]; description = "Minecraft 1.7 server proxy that answers to queries when the server is offline"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "loshadka"; + broken = true; }) {}; "lostcities" = callPackage @@ -180590,6 +190111,7 @@ self: { ]; description = "An implementation of an adictive two-player card game"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "lostcities"; }) {}; @@ -180604,6 +190126,8 @@ self: { ]; description = "Turning images into text using Braille font"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "loup" = callPackage @@ -180624,6 +190148,7 @@ self: { executableHaskellDepends = [ base optparse-generic shakers ]; description = "Amazon Simple Workflow Service Wrapper for Work Pools"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "lowgl" = callPackage @@ -180635,6 +190160,8 @@ self: { libraryHaskellDepends = [ base gl linear vector ]; description = "Basic gl wrapper and reference"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lowlin" = callPackage @@ -180684,6 +190211,8 @@ self: { ]; description = "SVG Backend for lp-diagrams"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lpeg" = callPackage @@ -180727,6 +190256,8 @@ self: { ]; description = "LRU cache"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lrucaching-haxl" = callPackage @@ -180738,6 +190269,7 @@ self: { libraryHaskellDepends = [ base hashable haxl lrucaching psqueues ]; description = "Combine lrucaching and haxl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ls-usb" = callPackage @@ -180756,6 +190288,7 @@ self: { ]; description = "List USB devices"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ls-usb"; }) {}; @@ -180774,7 +190307,9 @@ self: { ]; description = "List exported modules from a set of .cabal files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lscabal"; + broken = true; }) {}; "lsfrom" = callPackage @@ -180793,7 +190328,9 @@ self: { testHaskellDepends = [ base directory filepath simple-cmd ]; description = "List directory files starting from a specific name"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lsfrom"; + broken = true; }) {}; "lsh" = callPackage @@ -180817,7 +190354,9 @@ self: { ]; description = "A simple ls clone with modern, colored formatting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lsh-exe"; + broken = true; }) {}; "lsp_1_4_0_0" = callPackage @@ -180905,6 +190444,8 @@ self: { ]; description = "Haskell library for Language Server Protocol clients"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lsp-test" = callPackage @@ -181025,6 +190566,7 @@ self: { ]; description = "Paint an L-System Grammar"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lsystem"; }) {}; @@ -181057,6 +190599,7 @@ self: { ]; description = "Parameterized file evaluator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ltext"; }) {}; @@ -181100,6 +190643,8 @@ self: { ]; description = "Partial implementation of a service provider for LTI 1.1."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ltk" = callPackage @@ -181120,6 +190665,8 @@ self: { libraryPkgconfigDepends = [ gtk3 ]; description = "Leksah tool kit"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) gtk3;}; "ltl" = callPackage @@ -181174,6 +190721,8 @@ self: { ]; description = "Lua bytecode parser"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lua-bytecode" = callPackage @@ -181206,6 +190755,7 @@ self: { ]; description = "Library functions for reading and writing Lua chunks"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "luautils" = callPackage @@ -181227,6 +190777,8 @@ self: { ]; description = "Helpers for Haskell integration with Lua"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lub" = callPackage @@ -181276,7 +190828,9 @@ self: { testHaskellDepends = [ base lucid text ]; description = "Use Alpine.js in your lucid templates"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lucid-alpine-exe"; + broken = true; }) {}; "lucid-aria" = callPackage @@ -181289,6 +190843,8 @@ self: { testHaskellDepends = [ base hspec HUnit lucid ]; description = "Provides ARIA attributes for Lucid templates"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lucid-cdn" = callPackage @@ -181313,6 +190869,7 @@ self: { libraryHaskellDepends = [ base colonnade lucid text ]; description = "Helper functions for using lucid with colonnade"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lucid-extras" = callPackage @@ -181372,7 +190929,9 @@ self: { testHaskellDepends = [ base lucid template-haskell text ]; description = "Use _hyperscript with lucid"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lucid-hyperscript-exe"; + broken = true; }) {}; "lucid-svg" = callPackage @@ -181427,6 +190986,8 @@ self: { testHaskellDepends = [ base hspec HUnit lucid2 text ]; description = "Use htmx in your lucid templates"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lucid2-xstatic" = callPackage @@ -181459,6 +191020,7 @@ self: { ]; description = "Server side feed aggregator/reader"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "luhn" = callPackage @@ -181470,6 +191032,8 @@ self: { libraryHaskellDepends = [ base digits QuickCheck ]; description = "An implementation of Luhn's check digit algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lui" = callPackage @@ -181485,6 +191049,7 @@ self: { ]; description = "Purely FunctionaL User Interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "luis-client" = callPackage @@ -181499,6 +191064,8 @@ self: { ]; description = "An unofficial client for the LUIS NLP service"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "luka" = callPackage @@ -181512,6 +191079,8 @@ self: { librarySystemDepends = [ objc ]; description = "Simple ObjectiveC runtime binding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {objc = null;}; "lukko" = callPackage @@ -181569,6 +191138,8 @@ self: { ]; description = "Type-safe, type-level and stateless graphics framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "luminance-samples" = callPackage @@ -181587,6 +191158,7 @@ self: { ]; description = "Luminance samples"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lushtags" = callPackage @@ -181600,7 +191172,9 @@ self: { executableHaskellDepends = [ base haskell-src-exts text vector ]; description = "Create ctags compatible tags files for Haskell programs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "lushtags"; + broken = true; }) {}; "luthor" = callPackage @@ -181613,6 +191187,8 @@ self: { testHaskellDepends = [ base mtl parsec ]; description = "Tools for lexing and utilizing lexemes that integrate with Parsec"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lvar" = callPackage @@ -181651,6 +191227,7 @@ self: { ]; description = "Parallel scheduler, LVar data structures, and infrastructure to build more"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "lvmlib" = callPackage @@ -181673,7 +191250,9 @@ self: { ]; description = "The Lazy Virtual Machine (LVM)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "coreasm"; + broken = true; }) {}; "lvmrun" = callPackage @@ -181686,7 +191265,9 @@ self: { isExecutable = true; description = "The Lazy Virtual Machine (LVM) Runtime System"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "lvmrun"; + broken = true; }) {}; "lxc" = callPackage @@ -181728,7 +191309,9 @@ self: { ]; description = "LXD client written in Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "lxd-client-example"; + broken = true; }) {}; "lxd-client-config" = callPackage @@ -181749,6 +191332,8 @@ self: { ]; description = "Read the configuration file of the standard LXD client"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lye" = callPackage @@ -181766,7 +191351,9 @@ self: { ]; description = "A Lilypond-compiling music box"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "lye"; + broken = true; }) {}; "lz4" = callPackage @@ -181825,6 +191412,7 @@ self: { ]; description = "LZ4 compression for conduits"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "LZ4"; }) {}; @@ -181854,7 +191442,9 @@ self: { ]; description = "Conduit implementing the official LZ4 frame streaming format"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "haskell-lz4c"; + broken = true; }) {}; "lz4-hs" = callPackage @@ -181884,6 +191474,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Lzip compression / Lzlib bindings"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lzlib" = callPackage @@ -181904,6 +191496,8 @@ self: { ]; description = "lzlib bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lzma" = callPackage @@ -181974,6 +191568,7 @@ self: { ]; description = "Enumerator interface for lzma/xz compression"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) xz;}; "lzma-static" = callPackage @@ -182010,6 +191605,8 @@ self: { ]; description = "IO-Streams interface for lzma/xz compression"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lzo" = callPackage @@ -182027,6 +191624,8 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion ]; description = "minilzo bundled for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mDNSResponder-client" = callPackage @@ -182043,6 +191642,7 @@ self: { testHaskellDepends = [ base bytestring Cabal ]; description = "Library for talking to the mDNSResponder daemon"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "maam" = callPackage @@ -182059,7 +191659,9 @@ self: { ]; description = "Monadic Abstracting Abstract Machines (MAAM) built on Galois Transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "maam_examples"; + broken = true; }) {}; "mac" = callPackage @@ -182071,6 +191673,8 @@ self: { libraryHaskellDepends = [ base network transformers ]; description = "Static Mandatory Access Control in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "macaroon-shop" = callPackage @@ -182091,6 +191695,8 @@ self: { ]; description = "A toolkit for working with macaroons"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "macbeth-lib" = callPackage @@ -182116,6 +191722,7 @@ self: { testHaskellDepends = [ attoparsec base bytestring hspec ]; description = "Macbeth - A beautiful and minimalistic FICS client"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "Macbeth"; }) {}; @@ -182160,6 +191767,8 @@ self: { ]; description = "Arrow based stream transducers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "machines" = callPackage @@ -182205,6 +191814,7 @@ self: { ]; description = "Machine transducers for Amazonka calls"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "machines-attoparsec" = callPackage @@ -182225,6 +191835,8 @@ self: { ]; description = "Parse machines streams with attoparsec parsers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "machines-binary" = callPackage @@ -182236,6 +191848,8 @@ self: { libraryHaskellDepends = [ base binary bytestring machines ]; description = "Binary utilities for the machines library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "machines-bytestring" = callPackage @@ -182247,6 +191861,8 @@ self: { libraryHaskellDepends = [ base bytestring machines ]; description = "ByteString support for machines"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "machines-directory" = callPackage @@ -182262,6 +191878,7 @@ self: { ]; description = "Directory (system) utilities for the machines library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "machines-encoding" = callPackage @@ -182273,6 +191890,8 @@ self: { libraryHaskellDepends = [ base bytestring machines text ]; description = "Transcode encodings with machines"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "machines-io" = callPackage @@ -182288,6 +191907,8 @@ self: { ]; description = "IO utilities for the machines library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "machines-process" = callPackage @@ -182302,6 +191923,7 @@ self: { ]; description = "Process (system) utilities for the machines library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "machines-zlib" = callPackage @@ -182316,6 +191938,8 @@ self: { ]; description = "Decompression support for machines"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "macho" = callPackage @@ -182328,6 +191952,8 @@ self: { libraryHaskellDepends = [ base binary bytestring ]; description = "Parser for Mach-O object format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mackerel-client" = callPackage @@ -182351,6 +191977,7 @@ self: { ]; description = "An API client library for Mackerel"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "maclight" = callPackage @@ -182375,7 +192002,9 @@ self: { ]; description = "Control screen and keyboard backlights on MACs under Linux"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "maclight"; + broken = true; }) {}; "macos-corelibs" = callPackage @@ -182391,6 +192020,8 @@ self: { ]; description = "Haskell bindings to C-based Mac OS SDK frameworks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "macosx-make-standalone" = callPackage @@ -182410,6 +192041,7 @@ self: { ]; description = "Make a macosx app standalone deployable"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "macosx-make-standalone"; }) {}; @@ -182435,7 +192067,9 @@ self: { ]; description = "Alternative rm command for macOS that remove files/dirs to the system trash"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "macrm"; + broken = true; }) {}; "mad-props" = callPackage @@ -182489,7 +192123,9 @@ self: { benchmarkHaskellDepends = [ base criterion megaparsec text ]; description = "Randomized templating language DSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "madlang"; + broken = true; }) {}; "mage" = callPackage @@ -182505,7 +192141,9 @@ self: { executableSystemDepends = [ ncurses ]; description = "Rogue-like"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mage"; + broken = true; }) {inherit (pkgs) ncurses;}; "magic" = callPackage @@ -182529,6 +192167,8 @@ self: { libraryHaskellDepends = [ base ghc ghc-tcplugins-extra syb ]; description = "Write plugins for magic type families with ease"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "magic-wormhole" = callPackage @@ -182559,6 +192199,7 @@ self: { ]; description = "Interact with Magic Wormhole"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "hocus-pocus"; }) {}; @@ -182592,6 +192233,7 @@ self: { ]; description = "A web framework that integrates Servant, RIO, EKG, fast-logger, wai-cli…"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "magico" = callPackage @@ -182655,6 +192297,7 @@ self: { ]; description = "ImageBoards to XMPP gate"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "mahoro"; }) {}; @@ -182677,6 +192320,7 @@ self: { ]; description = "A simple static web server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "maid"; }) {}; @@ -182758,6 +192402,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Bindings for the MailChimp API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mailchimp-subscribe" = callPackage @@ -182776,7 +192422,9 @@ self: { ]; description = "MailChimp subscription request handler"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mailchimp-subscribe"; + broken = true; }) {}; "mailgun" = callPackage @@ -182796,6 +192444,7 @@ self: { ]; description = "API binding for Mailgun"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "main-tester" = callPackage @@ -182847,6 +192496,7 @@ self: { ]; description = "Majordomo protocol for ZeroMQ"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "majority" = callPackage @@ -182858,6 +192508,7 @@ self: { libraryHaskellDepends = [ haskell2010 ]; description = "Boyer-Moore Majority Vote Algorithm"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "make-hard-links" = callPackage @@ -182875,7 +192526,9 @@ self: { ]; description = "Change duplicated files into hard-links"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "make-hard-links"; + broken = true; }) {}; "make-monofoldable-foldable" = callPackage @@ -182887,6 +192540,8 @@ self: { libraryHaskellDepends = [ base mono-traversable ]; description = "Make a MonoFoldable type into an ordinary Foldable type"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "make-package" = callPackage @@ -182907,6 +192562,7 @@ self: { ]; description = "Make a cabalized package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "make-package"; }) {}; @@ -182919,6 +192575,8 @@ self: { libraryHaskellDepends = [ base directory filepath HSH process ]; description = "Helper for writing redo scripts in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "makefile" = callPackage @@ -182936,6 +192594,8 @@ self: { ]; description = "Simple Makefile parser and generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mallard" = callPackage @@ -182963,7 +192623,9 @@ self: { ]; description = "Database migration and testing as a library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mallard"; + broken = true; }) {}; "mameya" = callPackage @@ -183051,6 +192713,7 @@ self: { ]; description = "The Haskell/Gtk+ Integrated Live Environment"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "manatee"; }) {}; @@ -183099,6 +192762,7 @@ self: { ]; description = "Multithread interactive input/search framework for Manatee"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "manatee-anything"; }) {}; @@ -183144,6 +192808,7 @@ self: { ]; description = "The core of Manatee"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "manatee-curl" = callPackage @@ -183166,6 +192831,7 @@ self: { ]; description = "Download Manager extension for Manatee"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "manatee-curl"; }) {}; @@ -183187,6 +192853,7 @@ self: { ]; description = "Editor extension for Manatee"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "manatee-editor"; }) {}; @@ -183208,6 +192875,7 @@ self: { ]; description = "File manager extension for Manatee"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "manatee-filemanager"; }) {}; @@ -183229,6 +192897,7 @@ self: { ]; description = "Image viewer extension for Manatee"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "manatee-imageviewer"; }) {}; @@ -183254,6 +192923,7 @@ self: { ]; description = "IRC client extension for Manatee"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "manatee-mplayer" = callPackage @@ -183275,6 +192945,7 @@ self: { ]; description = "Mplayer client extension for Manatee"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "manatee-pdfviewer" = callPackage @@ -183295,6 +192966,7 @@ self: { ]; description = "PDF viewer extension for Manatee"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "manatee-pdfviewer"; }) {}; @@ -183315,6 +192987,7 @@ self: { ]; description = "Process manager extension for Manatee"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "manatee-processmanager"; }) {}; @@ -183357,6 +193030,7 @@ self: { ]; description = "Template code to create Manatee application"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "manatee-template"; }) {}; @@ -183377,6 +193051,7 @@ self: { ]; description = "Terminal Emulator extension for Manatee"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "manatee-terminal"; }) {}; @@ -183397,6 +193072,7 @@ self: { ]; description = "Welcome module to help user play Manatee quickly"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "manatee-welcome"; }) {}; @@ -183493,6 +193169,7 @@ self: { ]; description = "Bindings to the MangoPay API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mangopay-passphrase"; }) {}; @@ -183515,6 +193192,7 @@ self: { ]; description = "A parser for web documents according to the HTML5 specification"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "manifold-random" = callPackage @@ -183531,6 +193209,7 @@ self: { ]; description = "Sampling random points on general manifolds"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "manifolds" = callPackage @@ -183561,6 +193240,8 @@ self: { ]; description = "Coordinate-free hypersurfaces"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "manifolds-core" = callPackage @@ -183606,6 +193287,8 @@ self: { executableHaskellDepends = [ base bytestring cassava containers ]; description = "Extensions to Data.Map"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "map-reduce-folds" = callPackage @@ -183633,6 +193316,8 @@ self: { ]; description = "foldl wrappers for map-reduce"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "map-syntax" = callPackage @@ -183671,6 +193356,8 @@ self: { ]; description = "Efficient, polymorphic Map Algebra"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mappy" = callPackage @@ -183693,7 +193380,9 @@ self: { testHaskellDepends = [ base containers hspec parsec QuickCheck ]; description = "A functional programming language focused around maps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mappy"; + broken = true; }) {}; "mapquest-api" = callPackage @@ -183784,6 +193473,7 @@ self: { ]; description = "A study of marionetta movements"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "marionetta"; }) {}; @@ -183830,6 +193520,8 @@ self: { ]; description = "Convert Markdown to HTML, with XSS protection"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "markdown-pap" = callPackage @@ -183841,6 +193533,7 @@ self: { libraryHaskellDepends = [ base monads-tf papillon ]; description = "markdown parser with papillon"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "markdown-unlit" = callPackage @@ -183904,6 +193597,7 @@ self: { ]; description = "markdown to svg converter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "markdown2svg"; }) {}; @@ -183917,6 +193611,8 @@ self: { testHaskellDepends = [ base ]; description = "Pretty-printing library, with scoping, based on pretty"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "markov" = callPackage @@ -183977,6 +193673,7 @@ self: { testHaskellDepends = [ assertions base bifunctors memoize random ]; description = "Hidden Markov processes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "markov-realization" = callPackage @@ -183989,6 +193686,8 @@ self: { testHaskellDepends = [ base HTF MonadRandom ]; description = "Realizations of Markov chains"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "markup" = callPackage @@ -184007,6 +193706,7 @@ self: { ]; description = "Abstraction for HTML-embedded content"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "markup-preview" = callPackage @@ -184056,6 +193756,7 @@ self: { ]; description = "Upload packages to Marmalade"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "marmalade-upload"; }) {}; @@ -184091,6 +193792,7 @@ self: { testHaskellDepends = [ base bytestring hspec ]; description = "Client library for Vaultaire"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mars" = callPackage @@ -184121,6 +193823,8 @@ self: { ]; description = "A ContT-based wrapper for Haskell-to-C marshalling functions"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "marvin" = callPackage @@ -184155,6 +193859,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "A framework for modular, portable chat bots"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "marvin-interpolate" = callPackage @@ -184171,6 +193876,8 @@ self: { testHaskellDepends = [ base hspec text ]; description = "Compile time string interpolation a la Scala and CoffeeScript"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "marxup" = callPackage @@ -184217,6 +193924,7 @@ self: { ]; description = "@minamiyama1994_bot on haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "masakazu-bot"; }) {}; @@ -184296,6 +194004,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Compatibility of 'massiv' with 'persist'"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "massiv-scheduler" = callPackage @@ -184316,6 +194025,8 @@ self: { ]; description = "Work stealing scheduler for Massiv (Массив) and other parallel applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "massiv-serialise" = callPackage @@ -184333,6 +194044,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Compatibility of 'massiv' with 'serialise'"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "massiv-test" = callPackage @@ -184380,7 +194093,9 @@ self: { ]; description = "The project management tool for hackers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "master-plan"; + broken = true; }) {}; "mastermind" = callPackage @@ -184442,6 +194157,8 @@ self: { ]; description = "A composable abstraction for checking or converting a context value"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "matchers" = callPackage @@ -184454,6 +194171,7 @@ self: { librarySystemDepends = [ pcre ]; description = "Text matchers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) pcre;}; "math-extras" = callPackage @@ -184506,6 +194224,8 @@ self: { testHaskellDepends = [ array base containers hspec random ]; description = "Library containing graph data structures and graph algorithms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "math-interpolate" = callPackage @@ -184517,6 +194237,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Class for interpolation of values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "math-metric" = callPackage @@ -184528,6 +194250,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Typeclass for metric spaces"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "math-programming" = callPackage @@ -184544,6 +194268,8 @@ self: { testHaskellDepends = [ base hspec mtl QuickCheck text ]; description = "A library for formulating and solving math programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "math-programming-glpk" = callPackage @@ -184562,6 +194288,7 @@ self: { ]; description = "A GLPK backend to the math-programming library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "math-programming-tests" = callPackage @@ -184579,6 +194306,7 @@ self: { ]; description = "Utility functions for testing implementations of the math-programming library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mathblog" = callPackage @@ -184605,6 +194333,7 @@ self: { ]; description = "A program for creating and managing a static weblog with LaTeX math and diagrams"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mathexpr" = callPackage @@ -184635,6 +194364,8 @@ self: { ]; description = "Dependently typed tensorflow modeler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mathgenealogy" = callPackage @@ -184695,6 +194426,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "Write Mathematica packages in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mathlist" = callPackage @@ -184804,6 +194536,8 @@ self: { ]; description = "Read and Display Jones-Faithful notation for spacegroup and planegroup"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "matrix-client" = callPackage @@ -184849,6 +194583,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "Optics for the \"matrix\" package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "matrix-market" = callPackage @@ -184860,6 +194596,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Read and write NIST Matrix Market files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "matrix-market-attoparsec" = callPackage @@ -184911,6 +194649,8 @@ self: { ]; description = "Haskell matrix library with interface to C++ linear algebra libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "matrix-static" = callPackage @@ -184942,6 +194682,8 @@ self: { testHaskellDepends = [ base containers hspec QuickCheck ]; description = "matroid (combinatorial pre-geometries) library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "matsuri" = callPackage @@ -184961,6 +194703,7 @@ self: { ]; description = "ncurses XMPP client"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "matsuri"; }) {}; @@ -185064,6 +194807,8 @@ self: { ]; description = "An interface to the Maude rewriting system"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "maxent" = callPackage @@ -185085,6 +194830,7 @@ self: { ]; description = "Compute Maximum Entropy Distributions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "maxent-learner-hw" = callPackage @@ -185108,7 +194854,9 @@ self: { ]; description = "Hayes and Wilson's maxent learning algorithm for phonotactic grammars"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "phono-learner-hw"; + broken = true; }) {}; "maxent-learner-hw-gui" = callPackage @@ -185130,6 +194878,7 @@ self: { ]; description = "GUI for maxent-learner-hw"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "phono-learner-hw-gui"; }) {}; @@ -185163,6 +194912,7 @@ self: { ]; description = "Maximal sharing of terms in the lambda calculus with letrec"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "maxsharing"; }) {}; @@ -185194,6 +194944,8 @@ self: { ]; description = "Automated benchmarking tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mbox" = callPackage @@ -185225,6 +194977,8 @@ self: { ]; description = "A collection of tools to process mbox files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mbox-utility" = callPackage @@ -185265,6 +195019,8 @@ self: { testHaskellDepends = [ base HUnit ]; description = "Haskell MBTiles client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mbug" = callPackage @@ -185290,7 +195046,9 @@ self: { ]; description = "download bugs mailboxes"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "mbug"; + broken = true; }) {}; "mcaeson" = callPackage @@ -185333,6 +195091,8 @@ self: { ]; description = "Bindings to mcl, a generic and fast pairing-based cryptography library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) gmpxx; mcl = null; inherit (pkgs) openssl;}; "mcm" = callPackage @@ -185352,6 +195112,8 @@ self: { ]; description = "Machine Configuration Manager"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mcmaster-gloss-examples" = callPackage @@ -185405,6 +195167,7 @@ self: { ]; description = "Combinators for MCMC sampling"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mcmc-synthesis" = callPackage @@ -185416,6 +195179,8 @@ self: { libraryHaskellDepends = [ base MonadRandom ]; description = "MCMC applied to probabilistic program synthesis"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mcmc-types" = callPackage @@ -185443,6 +195208,8 @@ self: { executableHaskellDepends = [ base transformers ]; description = "Connect to MineCraft running on a Raspberry PI"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "md5" = callPackage @@ -185479,6 +195246,8 @@ self: { ]; description = "Haskell interface to Fedora's mdapi"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mdcat" = callPackage @@ -185498,7 +195267,9 @@ self: { ]; description = "Markdown viewer in your terminal"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mdcat"; + broken = true; }) {}; "mdo" = callPackage @@ -185529,6 +195300,8 @@ self: { testHaskellDepends = [ base HTF HUnit QuickCheck vector ]; description = "Tools for solving Markov Decision Processes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mealstrom" = callPackage @@ -185551,6 +195324,8 @@ self: { ]; description = "Manipulate FSMs and store them in PostgreSQL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mealy" = callPackage @@ -185568,6 +195343,8 @@ self: { ]; description = "Mealy machines for processing time-series and ordered data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "means" = callPackage @@ -185591,6 +195368,8 @@ self: { librarySystemDepends = [ mecab ]; description = "A Haskell binding to MeCab"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) mecab;}; "mech" = callPackage @@ -185602,6 +195381,8 @@ self: { libraryHaskellDepends = [ base machines ]; description = "mecha are the most complex composite machines known to humanity, lets build them well!"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mecha" = callPackage @@ -185627,6 +195408,8 @@ self: { libraryHaskellDepends = [ base machines ]; description = "mecha are the most complex composite machines known to humanity, lets build them well!"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "med-module" = callPackage @@ -185674,6 +195457,7 @@ self: { ]; description = "A schema language for JSON"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "mediabus" = callPackage @@ -185704,6 +195488,8 @@ self: { ]; description = "Multimedia streaming on top of Conduit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mediabus-fdk-aac" = callPackage @@ -185731,6 +195517,7 @@ self: { ]; description = "Mediabus plugin for the Frauenhofer ISO-14496-3 AAC FDK"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {fdk-aac = null;}; "mediabus-rtp" = callPackage @@ -185768,6 +195555,7 @@ self: { ]; description = "Receive and Send RTP Packets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mediabus-demo-rtp-alaw-player"; }) {}; @@ -185799,6 +195587,8 @@ self: { ]; description = "Interfacing with the MediaWiki API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mediawiki2latex" = callPackage @@ -185843,6 +195633,8 @@ self: { ]; description = "Haskell SDK for communicating with the Medium API"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "meep" = callPackage @@ -185863,6 +195655,8 @@ self: { ]; description = "A silly container"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mega-sdist" = callPackage @@ -185893,6 +195687,8 @@ self: { libraryHaskellDepends = [ base megaparsec mtl text ]; description = "lisp parser using mega-parsec"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "megaparsec" = callPackage @@ -186008,7 +195804,9 @@ self: { ]; description = "Bulk image or strict bytestring storage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "megastore"; + broken = true; }) {}; "meldable-heap" = callPackage @@ -186070,6 +195868,8 @@ self: { ]; description = "Control physical access devices"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mellon-gpio" = callPackage @@ -186081,6 +195881,7 @@ self: { libraryHaskellDepends = [ base hpio mellon-core protolude ]; description = "GPIO support for mellon"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mellon-web" = callPackage @@ -186122,6 +195923,7 @@ self: { ]; description = "A REST web service for Mellon controllers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "melody" = callPackage @@ -186143,7 +195945,9 @@ self: { ]; description = "A functional scripting language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "imelody"; + broken = true; }) {}; "membership" = callPackage @@ -186176,6 +195980,8 @@ self: { ]; description = "Type-safe memory units"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "memcache" = callPackage @@ -186216,6 +196022,7 @@ self: { ]; description = "Conduit library for memcache procotol"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "memcache-haskell" = callPackage @@ -186238,6 +196045,8 @@ self: { ]; description = "Memcache procotol library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "memcached" = callPackage @@ -186249,6 +196058,8 @@ self: { libraryHaskellDepends = [ base bytestring network utf8-light ]; description = "haskell bindings for memcached"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "memcached-binary" = callPackage @@ -186271,6 +196082,8 @@ self: { ]; description = "memcached client using binary protocol"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "memdb" = callPackage @@ -186323,6 +196136,8 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring containers ]; description = "Library for reading `/proc/meminfo`"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "memis" = callPackage @@ -186348,7 +196163,9 @@ self: { ]; description = "Memis Efficient Manual Image Sorting"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "memis"; + broken = true; }) {}; "memo-ptr" = callPackage @@ -186360,6 +196177,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Pointer equality memoization"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "memo-sqlite" = callPackage @@ -186371,6 +196190,8 @@ self: { libraryHaskellDepends = [ base direct-sqlite text ]; description = "memoize functions using SQLite3 database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "memoization-utils" = callPackage @@ -186387,6 +196208,8 @@ self: { testHaskellDepends = [ base hspec time time-units ]; description = "Utilities for memoizing functions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "memoize" = callPackage @@ -186427,7 +196250,9 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion random ]; description = "Generate human memorable strings from binary data"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "membits"; + broken = true; }) {}; "memory" = callPackage @@ -186464,6 +196289,7 @@ self: { ]; description = "memory and related abstraction stuff"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "memory-hexstring" = callPackage @@ -186479,6 +196305,7 @@ self: { ]; description = "Hex-string type for Haskell Web3 library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "memorypool" = callPackage @@ -186494,6 +196321,8 @@ self: { ]; description = "basic memory pool outside of haskell heap/GC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "memscript" = callPackage @@ -186548,6 +196377,8 @@ self: { ]; description = "Haskell binding for Menoh DNN inference library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {menoh = null;}; "menshen" = callPackage @@ -186566,6 +196397,8 @@ self: { ]; description = "Data Validation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mercury-api" = callPackage @@ -186592,6 +196425,8 @@ self: { ]; description = "Haskell binding to Mercury API for ThingMagic RFID readers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "merge" = callPackage @@ -186663,6 +196498,8 @@ self: { ]; description = "Support for using mergeful from persistent-based databases"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mergeless" = callPackage @@ -186702,6 +196539,8 @@ self: { ]; description = "Support for using mergeless from persistent-based databases"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "merkle-log" = callPackage @@ -186751,6 +196590,7 @@ self: { ]; description = "A modified Merkle Patricia DB"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "merkle-tree" = callPackage @@ -186848,6 +196688,8 @@ self: { ]; description = "Message Pack RPC over TCP"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "messente" = callPackage @@ -186861,6 +196703,8 @@ self: { ]; description = "Messente SMS Gateway"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "meta-misc" = callPackage @@ -186872,6 +196716,8 @@ self: { libraryHaskellDepends = [ base loch-th template-haskell ]; description = "Utility library providing miscellaneous meta-programming utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "meta-par" = callPackage @@ -186888,6 +196734,8 @@ self: { ]; description = "Provides the monad-par interface, but based on modular scheduler \"mix-ins\""; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "meta-par-accelerate" = callPackage @@ -186905,6 +196753,7 @@ self: { ]; description = "Support for integrated Accelerate computations within Meta-par"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "metadata" = callPackage @@ -186916,6 +196765,8 @@ self: { libraryHaskellDepends = [ base text time ]; description = "metadata library for semantic web"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "metaheuristics" = callPackage @@ -186927,6 +196778,8 @@ self: { libraryHaskellDepends = [ arrows base random Stream ]; description = "Generalised local search within Haskell, for applications in combinatorial optimisation"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "metamorphic" = callPackage @@ -186949,6 +196802,7 @@ self: { libraryHaskellDepends = [ base Cabal filepath ghc haskell98 ]; description = "a tiny ghc api wrapper"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "metar" = callPackage @@ -186974,6 +196828,7 @@ self: { ]; description = "Australian METAR"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "metar"; }) {}; @@ -186999,6 +196854,7 @@ self: { ]; description = "HTTP for METAR"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "metar-http"; }) {}; @@ -187020,6 +196876,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "rebindable methods for improving testability"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "metric" = callPackage @@ -187038,6 +196896,8 @@ self: { ]; description = "Metric spaces"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "metrics" = callPackage @@ -187071,6 +196931,8 @@ self: { libraryHaskellDepends = [ base network ]; description = "Client for the metrics aggregator Metricsd"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "metro" = callPackage @@ -187172,6 +197034,7 @@ self: { ]; description = "Time Synchronized execution"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mezzo" = callPackage @@ -187192,6 +197055,8 @@ self: { ]; description = "Typesafe music composition"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mezzolens" = callPackage @@ -187203,6 +197068,8 @@ self: { libraryHaskellDepends = [ base containers mtl transformers ]; description = "Pure Profunctor Functional Lenses"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mfsolve" = callPackage @@ -187232,6 +197099,8 @@ self: { ]; description = "Generics with multiple parameters"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mi" = callPackage @@ -187247,6 +197116,8 @@ self: { ]; description = "Multiple Instance for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "miconix-test" = callPackage @@ -187262,7 +197133,9 @@ self: { executableHaskellDepends = [ base ]; description = "spam"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "test1"; + broken = true; }) {}; "micro-gateway" = callPackage @@ -187291,6 +197164,7 @@ self: { ]; description = "A Micro service gateway"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "simple-gateway"; }) {}; @@ -187309,6 +197183,8 @@ self: { testHaskellDepends = [ base HUnit template-haskell ]; description = "Simple recursion schemes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "microaeson" = callPackage @@ -187344,6 +197220,8 @@ self: { doHaddock = false; description = "A minimal base to work around GHC bugs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "microbench" = callPackage @@ -187401,6 +197279,8 @@ self: { ]; description = "A Microformats 2 parser"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "microformats2-types" = callPackage @@ -187418,6 +197298,7 @@ self: { ]; description = "Microformats 2 types (with Aeson instances)"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "microgroove" = callPackage @@ -187429,6 +197310,8 @@ self: { libraryHaskellDepends = [ base primitive vector ]; description = "Array-backed extensible records"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "microlens" = callPackage @@ -187503,6 +197386,8 @@ self: { libraryHaskellDepends = [ base microlens ]; description = "'each' for microlens"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "microlens-ghc" = callPackage @@ -187566,6 +197451,8 @@ self: { testHaskellDepends = [ base doctest microlens process ]; description = "Micro-optics for the process library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "microlens-th" = callPackage @@ -187600,6 +197487,8 @@ self: { testHaskellDepends = [ aeson base hspec text ]; description = "A super simple logging module"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "microsoft-translator" = callPackage @@ -187617,6 +197506,8 @@ self: { ]; description = "Bindings to the Microsoft Translator API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "microspec" = callPackage @@ -187693,7 +197584,9 @@ self: { ]; description = "Language for algorithmic generation of MIDI files"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "mida"; + broken = true; }) {}; "midair" = callPackage @@ -187789,6 +197682,8 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion ]; description = "A simple and fast library for working with MIDI messages"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "midi-util" = callPackage @@ -187819,6 +197714,8 @@ self: { ]; description = "Utilities for working with MIDI data"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "midimory" = callPackage @@ -187838,6 +197735,7 @@ self: { ]; description = "A Memory-like (Concentration, Pairs, ...) game for tones"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "midimory"; }) {}; @@ -187857,7 +197755,9 @@ self: { description = "A control midi surface"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; + hydraPlatforms = lib.platforms.none; mainProgram = "midisurface"; + broken = true; }) {}; "mig" = callPackage @@ -187895,6 +197795,7 @@ self: { ]; description = "Simple Web Server in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mighttpd2" = callPackage @@ -187926,6 +197827,8 @@ self: { testHaskellDepends = [ base hspec http-client ]; description = "High performance web server on WAI/warp"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mighty-metropolis" = callPackage @@ -188000,6 +197903,8 @@ self: { ]; description = "Semi-automatic database schema migrations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "migrant-sqlite-simple" = callPackage @@ -188030,6 +197935,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "MikMod bindings"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mikrokosmos" = callPackage @@ -188055,7 +197962,9 @@ self: { ]; description = "Lambda calculus interpreter"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "mikrokosmos"; + broken = true; }) {}; "miku" = callPackage @@ -188072,6 +197981,8 @@ self: { ]; description = "A minimum web dev DSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "milena" = callPackage @@ -188095,6 +198006,8 @@ self: { ]; description = "A Kafka client for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mime" = callPackage @@ -188123,6 +198036,8 @@ self: { ]; description = "A library for parsing/printing the text/directory mime type"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mime-mail" = callPackage @@ -188243,6 +198158,7 @@ self: { ]; description = "a DSL for generating minecraft commands and levels"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mines" = callPackage @@ -188277,6 +198193,7 @@ self: { ]; description = "Minesweeper game which is always solvable without guessing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "minesweeper"; }) {}; @@ -188299,6 +198216,7 @@ self: { testHaskellDepends = [ base hspec primes ]; description = "Template Haskell Implementation of Egison Pattern Matching"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "cdcl"; }) {}; @@ -188346,7 +198264,9 @@ self: { ]; description = "Miniature FORTH-like interpreter"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "miniforth"; + broken = true; }) {}; "minilens" = callPackage @@ -188362,6 +198282,8 @@ self: { ]; description = "A minimalistic lens library, providing only the simplest, most basic lens functionality"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "minilight" = callPackage @@ -188393,6 +198315,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "A SDL2-based graphics library, batteries-included"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "minilight-lua" = callPackage @@ -188413,6 +198336,7 @@ self: { executableHaskellDepends = [ base lens minilight mtl ]; description = "A binding library of minilight for Lua langauge"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -188454,6 +198378,7 @@ self: { executableHaskellDepends = [ base GLUT haskell98 unix ]; description = "Shows how to run grabber on Mac OS X"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "minimung"; }) {}; @@ -188507,7 +198432,9 @@ self: { ]; description = "A fast parallel ssh tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "minions"; + broken = true; }) {}; "minioperational" = callPackage @@ -188524,6 +198451,7 @@ self: { ]; description = "fast and simple operational monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "miniplex" = callPackage @@ -188540,6 +198468,8 @@ self: { ]; description = "simple 1-to-N interprocess communication"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "minirotate" = callPackage @@ -188559,6 +198489,7 @@ self: { ]; description = "Minimalistic file rotation utility"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "minirotate"; }) {}; @@ -188601,7 +198532,9 @@ self: { ]; description = "an interpreter for an operational semantics for the STG machine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ministg"; + broken = true; }) {}; "minitypeset-opengl" = callPackage @@ -188655,6 +198588,8 @@ self: { ]; description = "A set of helpers to call minizinc models"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "minlen" = callPackage @@ -188682,6 +198617,8 @@ self: { testHaskellDepends = [ base binary directory hspec vector ]; description = "Read and write IDX data that is used in e.g. the MINST database."; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mintty" = callPackage @@ -188716,7 +198653,9 @@ self: { ]; description = "A Minisat-based CDCL SAT solver in Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "mios162"; + broken = true; }) {}; "mirror-tweet" = callPackage @@ -188735,7 +198674,9 @@ self: { ]; description = "Tweet mirror"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "mirror-tweet"; + broken = true; }) {}; "misfortune" = callPackage @@ -188797,6 +198738,7 @@ self: { testHaskellDepends = [ base hedgehog mismi-p text ]; description = "AWS Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mismi-p" = callPackage @@ -188810,6 +198752,8 @@ self: { libraryHaskellDepends = [ base text ]; description = "A commmon prelude for the mismi project"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mismi-s3" = callPackage @@ -188865,6 +198809,7 @@ self: { testHaskellDepends = [ base hedgehog mismi-p text ]; description = "AWS Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "miso" = callPackage @@ -188896,6 +198841,8 @@ self: { libraryHaskellDepends = [ aeson base ghcjs-base miso ]; description = "Miso state transition logger"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "miso-examples" = callPackage @@ -188908,6 +198855,8 @@ self: { isExecutable = true; description = "A tasty Haskell front-end framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "miso-from-html" = callPackage @@ -188956,6 +198905,7 @@ self: { ]; description = "A Haskell git implimentation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "miss-porcelain" = callPackage @@ -188974,6 +198924,7 @@ self: { ]; description = "Useability extras built on top of miss"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "missing-foreign" = callPackage @@ -188999,6 +198950,7 @@ self: { ]; description = "Haskell interface to Python"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "mit-3qvpPyAi6mH" = callPackage @@ -189018,7 +198970,9 @@ self: { executableHaskellDepends = [ base ]; description = "A git wrapper with a streamlined UX"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mit"; + broken = true; }) {}; "miv" = callPackage @@ -189057,6 +199011,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Mixing effects of one arrow into another one"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mixed-strategies" = callPackage @@ -189073,6 +199029,7 @@ self: { ]; description = "Find optimal mixed strategies for two-player games"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "oms"; }) {}; @@ -189116,6 +199073,8 @@ self: { testToolDepends = [ hspec-discover markdown-unlit ]; description = "Mixpanel client"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mkbndl" = callPackage @@ -189130,6 +199089,7 @@ self: { executableHaskellDepends = [ base directory filepath haskell98 ]; description = "Makes an OS X .app bundle from a binary."; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "mkbndl"; }) {}; @@ -189149,7 +199109,9 @@ self: { ]; description = "Generate cabal files for a Haskell project"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "mkcabal"; + broken = true; }) {}; "ml-w" = callPackage @@ -189164,7 +199126,9 @@ self: { executableHaskellDepends = [ base mtl parsec pretty ]; description = "Minimal ML language to to demonstrate the W type infererence algorithm"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "ML"; + broken = true; }) {}; "mlist" = callPackage @@ -189176,6 +199140,7 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "Monadic List alternative to lazy I/O"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mltool" = callPackage @@ -189199,6 +199164,8 @@ self: { ]; description = "Machine Learning Toolbox"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mm2" = callPackage @@ -189210,6 +199177,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "The library that can be used for optimization of multiple (Ord a) => a -> b transformations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mmap" = callPackage @@ -189338,6 +199307,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "The library that can be used for multiple (Ord a) => a -> b transformations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mmsyn2-array" = callPackage @@ -189396,7 +199367,9 @@ self: { executableHaskellDepends = [ base directory mmsyn3 process ]; description = "The \"glue\" between electronic tables and GraphViz"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mmsyn4"; + broken = true; }) {}; "mmsyn5" = callPackage @@ -189431,6 +199404,7 @@ self: { ]; description = "A musical instrument synthesizer or a tool for Ukrainian language listening"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mmsyn6ukr"; }) {}; @@ -189455,7 +199429,9 @@ self: { ]; description = "A musical instrument synthesizer or a tool for Ukrainian language listening"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mmsyn6ukra"; + broken = true; }) {}; "mmsyn7h" = callPackage @@ -189478,6 +199454,7 @@ self: { ]; description = "Produces a sound recording specified by the Ukrainian text"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mmsyn7h"; }) {}; @@ -189499,6 +199476,7 @@ self: { ]; description = "Modifies the amplitudes of the sounds representations created by mmsyn7ukr-array and mmsyn7ukr packages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mmsyn7l"; }) {}; @@ -189514,6 +199492,7 @@ self: { executableHaskellDepends = [ base mmsyn2 mmsyn5 mmsyn6ukr vector ]; description = "Shows a sorted list of the Ukrainian sounds representations that can be used by mmsyn7 series of programs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mmsyn7s"; }) {}; @@ -189536,6 +199515,7 @@ self: { ]; description = "A simple basic interface to some SoX functionality or to produce a voice that can be used by mmsyn7h"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mmsyn7ukr"; }) {}; @@ -189553,6 +199533,7 @@ self: { ]; description = "A simple reduced basic interface to some SoX functionality or to produce a voice that can be used by mmsyn7h-array, dobutokO2-array and other similar packages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "mmsyn7ukr-common" = callPackage @@ -189564,6 +199545,8 @@ self: { libraryHaskellDepends = [ base directory mmsyn3 process ]; description = "Some common for mmsyn7ukr and mmsyn7ukr-array functionality using SoX"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mmtf" = callPackage @@ -189584,6 +199567,8 @@ self: { ]; description = "Macromolecular Transmission Format implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mmtl" = callPackage @@ -189595,6 +199580,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Modular Monad transformer library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mmtl-base" = callPackage @@ -189608,6 +199595,7 @@ self: { libraryHaskellDepends = [ base mmtl ]; description = "MonadBase type-class for mmtl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mmzk-typeid" = callPackage @@ -189628,6 +199616,8 @@ self: { ]; description = "A TypeID implementation for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mnist-idx" = callPackage @@ -189679,6 +199669,7 @@ self: { ]; description = "Language-agnostic analyzer for positional morphosyntactic tags"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mock-httpd" = callPackage @@ -189697,7 +199688,9 @@ self: { ]; description = "A HTTP server for testing HTTP clients"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "mock-httpd"; + broken = true; }) {}; "mock-time" = callPackage @@ -189738,6 +199731,8 @@ self: { ]; description = "Mock records of functions easily"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mockery" = callPackage @@ -189814,6 +199809,8 @@ self: { ]; description = "Communicate with Modbus devices over TCP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "model" = callPackage @@ -189833,6 +199830,8 @@ self: { ]; description = "Derive a model of a data type using Generics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "modelicaparser" = callPackage @@ -189849,6 +199848,8 @@ self: { ]; description = "A parser for the modelica language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "modern-uri" = callPackage @@ -189900,6 +199901,7 @@ self: { ]; description = "Modify fasta (and CLIP) files in several optional ways"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "modify-fasta"; }) {}; @@ -189921,6 +199923,7 @@ self: { ]; description = "Haskell source splitter driven by special comments"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "modsplit"; }) {}; @@ -189962,6 +199965,8 @@ self: { ]; description = "A new Prelude featuring first class modules"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "modular-prelude-classy" = callPackage @@ -189973,6 +199978,7 @@ self: { libraryHaskellDepends = [ base classy-prelude modular-prelude ]; description = "Reifying ClassyPrelude a la ModularPrelude"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "modularity" = callPackage @@ -189988,6 +199994,7 @@ self: { ]; description = "Find the modularity of a network"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "module-management" = callPackage @@ -190018,7 +200025,9 @@ self: { ]; description = "Clean up module imports, split and merge modules"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hmm"; + broken = true; }) {}; "modulespection" = callPackage @@ -190035,6 +200044,8 @@ self: { ]; description = "Template Haskell for introspecting a module's declarations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "modulo" = callPackage @@ -190054,6 +200065,7 @@ self: { ]; description = "Modular C code generator"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "modulo"; }) {}; @@ -190070,6 +200082,8 @@ self: { ]; description = "html with style"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "moesocks" = callPackage @@ -190092,7 +200106,9 @@ self: { ]; description = "A functional firewall killer"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "moesocks"; + broken = true; }) {}; "mohws" = callPackage @@ -190117,7 +200133,9 @@ self: { executableHaskellDepends = [ base bytestring ]; description = "Modular Haskell Web Server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hws"; + broken = true; }) {}; "mole" = callPackage @@ -190148,6 +200166,7 @@ self: { ]; description = "A glorified string replacement tool"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mole"; }) {}; @@ -190174,6 +200193,8 @@ self: { ]; description = "Mollie API client for Haskell http://www.mollie.com"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-abort-fd" = callPackage @@ -190201,6 +200222,8 @@ self: { libraryHaskellDepends = [ base containers ghc-prim mtl ]; description = "Monadically convert object to unique integers and back"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-atom-simple" = callPackage @@ -190212,6 +200235,8 @@ self: { libraryHaskellDepends = [ base containers ghc-prim mtl ]; description = "Monadically map objects to unique ints"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-batcher" = callPackage @@ -190297,6 +200322,8 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "Monadic abstraction for computations that can be branched and run independently"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-choice" = callPackage @@ -190312,6 +200339,8 @@ self: { ]; description = "Monad, monad transformer, and typeclass representing choices"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-chronicle" = callPackage @@ -190427,6 +200456,8 @@ self: { ]; description = "Just like monad-control, except less efficient, and the monadic state terms are all * -> *"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-control-identity" = callPackage @@ -190489,6 +200520,7 @@ self: { ]; description = "Exstensible monadic exceptions"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "monad-extras" = callPackage @@ -190531,6 +200563,8 @@ self: { libraryHaskellDepends = [ base monad-control ]; description = "Type class for monads which support a fork operation"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-gen" = callPackage @@ -190579,6 +200613,7 @@ self: { ]; description = "A class of monads which can do http requests"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "monad-interleave" = callPackage @@ -190604,6 +200639,8 @@ self: { ]; description = "A reader monad that gives the environment access to the entire transformer stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-io-adapter" = callPackage @@ -190651,6 +200688,8 @@ self: { ]; description = "Specific levels of monad transformers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-lgbt" = callPackage @@ -190669,6 +200708,8 @@ self: { ]; description = "Monad transformers for combining local and global state"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-log" = callPackage @@ -190688,6 +200729,8 @@ self: { ]; description = "A simple and fast logging monad"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-logger" = callPackage @@ -190803,6 +200846,8 @@ self: { benchmarkHaskellDepends = [ base criterion monad-logger ]; description = "Add prefixes to your monad-logger output"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-logger-syslog" = callPackage @@ -190820,6 +200865,8 @@ self: { ]; description = "syslog output for monad-logger"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-loops" = callPackage @@ -190862,6 +200909,8 @@ self: { ]; description = "a monad to calculate linear recursive sequence"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-markov" = callPackage @@ -190913,6 +200962,8 @@ self: { libraryHaskellDepends = [ base mersenne-random-pure64 ]; description = "An efficient random generator monad, based on the Mersenne Twister"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-metrics" = callPackage @@ -190932,6 +200983,8 @@ self: { testHaskellDepends = [ base ]; description = "A convenient wrapper around EKG metrics"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-metrics-extensible" = callPackage @@ -190952,6 +201005,7 @@ self: { ]; description = "An extensible and type-safe wrapper around EKG metrics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "monad-mock" = callPackage @@ -190970,6 +201024,8 @@ self: { testHaskellDepends = [ base hspec mtl ]; description = "A monad transformer for mocking mtl-style typeclasses"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-open" = callPackage @@ -190981,6 +201037,8 @@ self: { libraryHaskellDepends = [ base exceptions mtl transformers ]; description = "Open recursion for when you need it"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-ox" = callPackage @@ -191062,6 +201120,8 @@ self: { ]; description = "Parallel execution of monadic computations with a progress bar"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-param" = callPackage @@ -191073,6 +201133,8 @@ self: { libraryHaskellDepends = [ base mtl stm ]; description = "Parameterized monads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-peel" = callPackage @@ -191133,6 +201195,8 @@ self: { ]; description = "An mtl-style typeclass and transformer for persistent"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-primitive" = callPackage @@ -191166,6 +201230,8 @@ self: { libraryHaskellDepends = [ base ghc-prim mtl ]; description = "Fast monads and monad transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-recorder" = callPackage @@ -191182,6 +201248,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Record and replay the results of monadic actions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-resumption" = callPackage @@ -191223,6 +201291,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Monads of program skeleta"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-st" = callPackage @@ -191251,6 +201321,7 @@ self: { ]; description = "Utility library for monads, particularly those involving state"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "monad-statevar" = callPackage @@ -191263,6 +201334,8 @@ self: { testHaskellDepends = [ base stm ]; description = "Concise, overloaded accessors for IORef, STRef, TVar"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-ste" = callPackage @@ -191279,6 +201352,8 @@ self: { testHaskellDepends = [ base hspec HUnit ]; description = "ST monad with efficient explicit errors"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-stlike-io" = callPackage @@ -191293,6 +201368,8 @@ self: { ]; description = "ST-like monad capturing variables to regions and supporting IO"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-stlike-stm" = callPackage @@ -191304,6 +201381,7 @@ self: { libraryHaskellDepends = [ base monad-stlike-io stm ]; description = "ST-like monad capturing variables to regions and supporting STM"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "monad-stm" = callPackage @@ -191337,6 +201415,8 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "A monad transformer that turns event processing into co-routine programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-throw-exit" = callPackage @@ -191352,6 +201432,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck typed-process ]; description = "Functions to exit the program anywhere in MonadThrow monads"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-time" = callPackage @@ -191392,6 +201474,8 @@ self: { testHaskellDepends = [ base containers hlint hspec transformers ]; description = "Monad transformer for recording timing events"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-tree" = callPackage @@ -191403,6 +201487,8 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "Tree data structure for nondeterministic computations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-tx" = callPackage @@ -191414,6 +201500,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A transactional state monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-unify" = callPackage @@ -191427,6 +201515,8 @@ self: { libraryHaskellDepends = [ base mtl unordered-containers ]; description = "Generic first-order unification"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monad-unlift" = callPackage @@ -191502,6 +201592,8 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Wrap functions such as catch around different monads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monadIO" = callPackage @@ -191535,6 +201627,8 @@ self: { libraryHaskellDepends = [ base monadLib ]; description = "Arrow-like monad composition for monadLib"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monadacme" = callPackage @@ -191546,6 +201640,8 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "The Acme and AcmeT monads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monadbi" = callPackage @@ -191573,6 +201669,8 @@ self: { ]; description = "A monad for using CryptoRandomGen"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monadfibre" = callPackage @@ -191650,6 +201748,8 @@ self: { testHaskellDepends = [ base ]; description = "Constraint Programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monadiccp-gecode" = callPackage @@ -191668,6 +201768,7 @@ self: { testHaskellDepends = [ base ]; description = "Constraint Programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {gecodeint = null; gecodekernel = null; gecodesearch = null; gecodeset = null; gecodesupport = null;}; @@ -191719,7 +201820,9 @@ self: { ]; description = "A preprocessor for generating monadic call traces"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "MonadLoc"; + broken = true; }) {}; "monadlog" = callPackage @@ -191739,6 +201842,8 @@ self: { ]; description = "A simple and fast logging monad"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monadoid" = callPackage @@ -191860,6 +201965,7 @@ self: { testHaskellDepends = [ base doctest ]; description = "Monadic interface for TokyoTyrant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mondo" = callPackage @@ -191883,6 +201989,8 @@ self: { ]; description = "Haskell bindings for the Mondo API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monetdb-mapi" = callPackage @@ -191894,6 +202002,7 @@ self: { libraryHaskellDepends = [ base bindings-monetdb-mapi ]; description = "Mid-level bindings for the MonetDB API (mapi)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "money" = callPackage @@ -191906,6 +202015,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "Money"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mongoDB" = callPackage @@ -191960,6 +202071,8 @@ self: { ]; description = "message queue using MongoDB"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mongrel2-handler" = callPackage @@ -191977,6 +202090,7 @@ self: { ]; description = "Mongrel2 Handler Library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "monitor" = callPackage @@ -191990,7 +202104,9 @@ self: { executableHaskellDepends = [ base filepath hinotify process ]; description = "Do things when files change"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "monitor"; + broken = true; }) {}; "monky" = callPackage @@ -192015,6 +202131,7 @@ self: { ]; description = "A system state collecting library and application"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "monky"; }) {}; @@ -192027,6 +202144,8 @@ self: { libraryHaskellDepends = [ base bytestring text vector ]; description = "Folds for monomorphic containers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mono-traversable" = callPackage @@ -192106,6 +202225,8 @@ self: { testHaskellDepends = [ base ]; description = "Low level bindings to the monocypher C library"; license = "(CC0-1.0 OR BSD-2-Clause)"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monoid" = callPackage @@ -192117,6 +202238,8 @@ self: { libraryHaskellDepends = [ base containers lens mtl ]; description = "Monoid type classes, designed in modular way, distinguish Monoid from Mempty and Semigroup. This design allows mempty operation don't bring Semigroups related constraints until (<>) is used."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monoid-absorbing" = callPackage @@ -192128,6 +202251,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A library for (left, right) zero monoids and backtracking with cut"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monoid-extras" = callPackage @@ -192173,6 +202298,8 @@ self: { libraryHaskellDepends = [ base bytestring containers ]; description = "a practical monoid implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monoid-record" = callPackage @@ -192279,7 +202406,9 @@ self: { ]; description = "Monoidal Functors Library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "co-log"; + broken = true; }) {}; "monoidmap" = callPackage @@ -192309,6 +202438,8 @@ self: { doHaddock = false; description = "Monoidal map type"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monoidplus" = callPackage @@ -192322,6 +202453,8 @@ self: { ]; description = "Extra classes/functions about monoids"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monoids" = callPackage @@ -192337,6 +202470,8 @@ self: { ]; description = "Deprecated: Use 'reducers'"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monomer" = callPackage @@ -192399,6 +202534,7 @@ self: { ]; description = "Monomer Flatpak Example Application"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "monomer-flatpak-example"; }) {}; @@ -192451,6 +202587,8 @@ self: { ]; description = "Well-typed paths"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "montage" = callPackage @@ -192516,6 +202654,7 @@ self: { ]; description = "A monad and transformer for Monte Carlo calculations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "months" = callPackage @@ -192550,6 +202689,8 @@ self: { ]; description = "a 'Monus' is a commutative monoid that allows a notion of substraction"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "monus-weighted-search" = callPackage @@ -192592,6 +202733,8 @@ self: { ]; description = "Haskell bindings for the Monzo API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "moo" = callPackage @@ -192613,6 +202756,7 @@ self: { ]; description = "Genetic algorithm library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "moo-nad" = callPackage @@ -192627,6 +202771,7 @@ self: { doHaddock = false; description = "Invocation helpers for the ReaderT-record-of-functions style"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "moonshine" = callPackage @@ -192643,6 +202788,7 @@ self: { ]; description = "A web service framework for Haskell, similar in purpose to dropwizard"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "more-containers" = callPackage @@ -192686,7 +202832,9 @@ self: { ]; description = "A tool for supervised learning of morphology"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "morfette"; + broken = true; }) {}; "morfeusz" = callPackage @@ -192704,6 +202852,8 @@ self: { librarySystemDepends = [ morfeusz ]; description = "Bindings to the morphological analyser Morfeusz"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {morfeusz = null;}; "morley" = callPackage @@ -192745,6 +202895,7 @@ self: { ]; description = "Developer tools for the Michelson Language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "morley"; }) {}; @@ -192787,6 +202938,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Client to interact with the Tezos blockchain"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "morley-client"; }) {}; @@ -192806,6 +202958,7 @@ self: { ]; description = "A custom prelude used in Morley"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "morley-upgradeable" = callPackage @@ -192839,6 +202992,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Upgradeability infrastructure based on Morley"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "morley-ustore-reader"; }) {}; @@ -192878,6 +203032,7 @@ self: { ]; description = "A multi-lingual, typed, workflow language"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "morloc"; }) {}; @@ -192976,7 +203131,9 @@ self: { ]; description = "Morpheus GraphQL CLI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "morpheus"; + broken = true; }) {}; "morpheus-graphql-client" = callPackage @@ -193164,6 +203321,8 @@ self: { libraryHaskellDepends = [ morphisms ]; description = "Functors, theirs compositions and transformations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "morphisms-functors-inventory" = callPackage @@ -193175,6 +203334,7 @@ self: { libraryHaskellDepends = [ morphisms morphisms-functors ]; description = "Inventory is state and store"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "morphisms-objects" = callPackage @@ -193186,6 +203346,8 @@ self: { libraryHaskellDepends = [ morphisms ]; description = "Algebraic structures"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "morte" = callPackage @@ -193221,8 +203383,10 @@ self: { benchmarkHaskellDepends = [ base criterion system-filepath text ]; description = "A bare-bones calculus of constructions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "morte"; maintainers = [ lib.maintainers.Gabriella439 ]; + broken = true; }) {}; "mortred" = callPackage @@ -193254,7 +203418,9 @@ self: { ]; description = "Library for setting up and running scrapers with webdriver"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "mortred"; + broken = true; }) {}; "mosaico-lib" = callPackage @@ -193273,6 +203439,8 @@ self: { ]; description = "Generación interactiva de mosaicos"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mosquitto-hs" = callPackage @@ -193382,6 +203550,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Generate state diagrams from Motor FSM typeclasses"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "motor-reflection" = callPackage @@ -193399,6 +203568,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Reflect on Motor FSM typeclasses to obtain runtime representations"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mount" = callPackage @@ -193410,6 +203581,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Mounts and umounts filesystems"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mountpoints" = callPackage @@ -193444,7 +203617,9 @@ self: { ]; description = "Plays videos using GStreamer and GTK+"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "movie-monad"; + broken = true; }) {}; "moving-averages" = callPackage @@ -193481,6 +203656,7 @@ self: { ]; description = "Music player for linux"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "mp"; }) {}; @@ -193497,6 +203673,7 @@ self: { ]; description = "MP3 decoder for teaching"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "mp3driver"; }) {}; @@ -193513,6 +203690,7 @@ self: { ]; description = "MPD/PowerMate executable"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mpdmate"; }) {}; @@ -193659,6 +203837,8 @@ self: { ]; description = "Multi-dimensional parametric pretty-printer with color"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mprelude" = callPackage @@ -193677,6 +203857,7 @@ self: { ]; description = "A minimalish prelude"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mpretty" = callPackage @@ -193693,6 +203874,7 @@ self: { ]; description = "a monadic, extensible pretty printing library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mpris" = callPackage @@ -193704,6 +203886,8 @@ self: { libraryHaskellDepends = [ base containers dbus mtl ]; description = "Interface for MPRIS"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mprover" = callPackage @@ -193721,6 +203905,7 @@ self: { ]; description = "Simple equational reasoning for a Haskell-ish language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mp"; }) {}; @@ -193741,6 +203926,7 @@ self: { ]; description = "simply oo"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mptcp" = callPackage @@ -193759,6 +203945,7 @@ self: { testHaskellDepends = [ base hspec ip text ]; description = "Datastructures to describe TCP and MPTCP connections"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "mptcp-pm" = callPackage @@ -193793,6 +203980,7 @@ self: { description = "A Multipath TCP path manager"; license = lib.licenses.gpl3Only; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; mainProgram = "mptcp-pm"; }) {}; @@ -193839,6 +204027,7 @@ self: { ]; description = "A Multipath TCP analyzer"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "mptcpanalyzer"; }) {}; @@ -193858,7 +204047,9 @@ self: { ]; description = "A minimalist mpv GUI written in I/O heavy Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "mpvguihs"; + broken = true; }) {}; "mqtt" = callPackage @@ -193887,6 +204078,8 @@ self: { ]; description = "An MQTT protocol implementation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mqtt-hs" = callPackage @@ -193903,6 +204096,8 @@ self: { ]; description = "A MQTT client library"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mr-env" = callPackage @@ -193928,7 +204123,9 @@ self: { executableHaskellDepends = [ array base containers mtl ]; description = "Decompiles Glulx files"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "mrifk"; + broken = true; }) {}; "mrm" = callPackage @@ -193940,6 +204137,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Modular Refiable Matching, first-class matches"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ms" = callPackage @@ -193960,6 +204159,8 @@ self: { ]; description = "metric spaces"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ms-auth" = callPackage @@ -193978,6 +204179,8 @@ self: { ]; description = "Microsoft Authentication API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ms-azure-api" = callPackage @@ -193997,6 +204200,8 @@ self: { ]; description = "Microsoft Azure API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ms-graph-api" = callPackage @@ -194015,6 +204220,8 @@ self: { ]; description = "Microsoft Graph API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ms-tds" = callPackage @@ -194060,6 +204267,8 @@ self: { ]; description = "A Haskell implementation of MessagePack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "msgpack-aeson" = callPackage @@ -194078,6 +204287,7 @@ self: { testHaskellDepends = [ aeson base msgpack tasty tasty-hunit ]; description = "Aeson adapter for MessagePack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "msgpack-arbitrary" = callPackage @@ -194096,6 +204306,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "A Haskell implementation of MessagePack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "msgpack-binary" = callPackage @@ -194124,6 +204335,7 @@ self: { ]; description = "A Haskell implementation of MessagePack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "msgpack-idl" = callPackage @@ -194145,6 +204357,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "An IDL Compiler for MessagePack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mpidl"; }) {}; @@ -194172,6 +204385,7 @@ self: { ]; description = "A Haskell implementation of MessagePack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "msgpack-parser"; }) {}; @@ -194193,6 +204407,7 @@ self: { testHaskellDepends = [ async base mtl network tasty tasty-hunit ]; description = "A MessagePack-RPC Implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "msgpack-rpc-conduit" = callPackage @@ -194213,6 +204428,7 @@ self: { testHaskellDepends = [ async base bytestring hspec mtl network ]; description = "A MessagePack-RPC Implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "msgpack-testsuite" = callPackage @@ -194232,6 +204448,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "A Haskell implementation of MessagePack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "msgpack-types" = callPackage @@ -194256,6 +204473,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "A Haskell implementation of MessagePack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "msh" = callPackage @@ -194272,6 +204491,8 @@ self: { ]; description = "Object-Oriented Programming in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "msi-kb-backlit" = callPackage @@ -194285,6 +204506,7 @@ self: { executableHaskellDepends = [ base bytestring hid split ]; description = "A command line tool to change backlit colors of your MSI keyboards"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "msi-kb-backlit"; }) {}; @@ -194364,6 +204586,7 @@ self: { ]; description = "Library to communicate with Mt.Gox"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mtl_2_3_1" = callPackage @@ -194389,6 +204612,8 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "Very strict CPS'd transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mtl-compat" = callPackage @@ -194416,6 +204641,8 @@ self: { ]; description = "Instances for the mtl classes for all monad transformers"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mtl-extras" = callPackage @@ -194427,6 +204654,8 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "Higher order versions of MTL classes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mtl-prelude" = callPackage @@ -194449,6 +204678,8 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Monad Transformer Library with Type Families"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mtl-unleashed" = callPackage @@ -194502,6 +204733,8 @@ self: { libraryHaskellDepends = [ base mtl QuickCheck ]; description = "Monad transformer library with type indexes, providing 'free' copies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mtp" = callPackage @@ -194514,6 +204747,8 @@ self: { librarySystemDepends = [ mtp ]; description = "Bindings to libmtp"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {mtp = null;}; "mtree" = callPackage @@ -194536,6 +204771,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Reified monad transformer stacks"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mu-avro" = callPackage @@ -194561,6 +204798,7 @@ self: { ]; description = "Avro serialization support for Mu microservices"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "test-avro"; }) {}; @@ -194591,6 +204829,7 @@ self: { ]; description = "GraphQL support for Mu"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "library-graphql"; }) {}; @@ -194613,6 +204852,7 @@ self: { ]; description = "gRPC clients from Mu definitions"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "mu-grpc-common" = callPackage @@ -194632,6 +204872,7 @@ self: { ]; description = "gRPC for Mu, common modules for client and server"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "mu-grpc-server" = callPackage @@ -194658,6 +204899,7 @@ self: { ]; description = "gRPC servers for Mu definitions"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "grpc-example-server"; }) {}; @@ -194675,6 +204917,7 @@ self: { ]; description = "Utilities for interoperation between Mu and Kafka"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "mu-lens" = callPackage @@ -194690,6 +204933,7 @@ self: { ]; description = "Lenses for @mu-schema@ terms"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "mu-optics" = callPackage @@ -194704,6 +204948,7 @@ self: { ]; description = "Optics for @mu-schema@ terms"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "mu-persistent" = callPackage @@ -194722,6 +204967,7 @@ self: { ]; description = "Utilities for interoperation between Mu and Persistent"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "mu-prometheus" = callPackage @@ -194738,6 +204984,7 @@ self: { ]; description = "Metrics support for Mu using Prometheus"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "mu-protobuf" = callPackage @@ -194765,6 +205012,7 @@ self: { ]; description = "Protocol Buffers serialization and gRPC schema import for Mu microservices"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "test-protobuf"; }) {}; @@ -194782,6 +205030,7 @@ self: { ]; description = "Protocol-independent declaration of services and servers"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "mu-schema" = callPackage @@ -194800,6 +205049,8 @@ self: { ]; description = "Format-independent schemas for serialization"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mu-servant-server" = callPackage @@ -194823,6 +205074,7 @@ self: { ]; description = "Servant servers for Mu definitions"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "servant-example-server"; }) {}; @@ -194837,6 +205089,7 @@ self: { ]; description = "Tracing support for Mu"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "mucipher" = callPackage @@ -194872,7 +205125,9 @@ self: { ]; description = "Multi-version deployer for web applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mud"; + broken = true; }) {}; "mudbath" = callPackage @@ -194893,7 +205148,9 @@ self: { ]; description = "Continuous deployment server for use with GitHub"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "mudbath"; + broken = true; }) {}; "muesli" = callPackage @@ -194963,7 +205220,9 @@ self: { testToolDepends = [ alex happy ]; description = "An intermediate language designed to perform advanced code analysis"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "mulang"; + broken = true; }) {}; "multext-east-msd" = callPackage @@ -194975,6 +205234,8 @@ self: { libraryHaskellDepends = [ base ]; description = "MULTEXT-East morphosyntactic descriptors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "multi-cabal" = callPackage @@ -194996,6 +205257,7 @@ self: { ]; description = "A tool supporting multi cabal project builds"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "multi-cabal"; }) {}; @@ -195034,6 +205296,8 @@ self: { testHaskellDepends = [ base hedgehog ]; description = "Typeclasses augmented with a phantom type parameter"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "multi-trie" = callPackage @@ -195066,6 +205330,8 @@ self: { ]; description = "A network address format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "multiarg" = callPackage @@ -195084,6 +205350,8 @@ self: { ]; description = "Command lines for options that take multiple arguments"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "multibase" = callPackage @@ -195108,6 +205376,7 @@ self: { testHaskellDepends = [ base doctest QuickCheck template-haskell ]; description = "Self-identifying base encodings, implementation of "; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "multicurryable" = callPackage @@ -195164,6 +205433,7 @@ self: { ]; description = "Bidirectional Two-level Transformation of XML Schemas"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "multifocal"; }) {}; @@ -195188,7 +205458,9 @@ self: { ]; description = "Multihash library and CLI executable"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "multihash"; + broken = true; }) {}; "multihash-cryptonite" = callPackage @@ -195225,6 +205497,7 @@ self: { testHaskellDepends = [ base cryptonite hedgehog serialise ]; description = "CBOR encoding of multihashes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "multihashmap" = callPackage @@ -195257,6 +205530,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq weigh ]; description = "Comprehensive and efficient (multi)linear algebra implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "multilinear-io" = callPackage @@ -195280,6 +205555,7 @@ self: { ]; description = "Conduit-based input/output capability for multilinear package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "multimap" = callPackage @@ -195336,6 +205612,8 @@ self: { ]; description = "Folding data with multiple named passes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "multipath" = callPackage @@ -195347,6 +205625,8 @@ self: { libraryHaskellDepends = [ base parsec utf8-string ]; description = "Parser and builder for unix-path-like objects"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "multiplate" = callPackage @@ -195373,6 +205653,8 @@ self: { libraryHaskellDepends = [ base multiplate transformers ]; description = "Shorter, more generic functions for Multiplate"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "multiplicity" = callPackage @@ -195389,6 +205671,7 @@ self: { ]; description = "Wrapper program for duplicity, adding config files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "multiplicity"; }) {}; @@ -195410,6 +205693,8 @@ self: { ]; description = "Generalized system for reading and writing to distributed systems that have primary/replica topologies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "multipool-persistent" = callPackage @@ -195430,6 +205715,7 @@ self: { ]; description = "Read and write from appropriate persistent sql instances in replicated environments"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "multipool-persistent-postgresql" = callPackage @@ -195454,6 +205740,7 @@ self: { ]; description = "Read and write appropriately from both master and replicated postgresql instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "multipool-postgresql-simple" = callPackage @@ -195474,6 +205761,7 @@ self: { unliftio-core unordered-containers ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "multiprocess" = callPackage @@ -195497,6 +205785,8 @@ self: { testHaskellDepends = [ base ]; description = "Generic programming for families of recursive datatypes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "multirec-alt-deriver" = callPackage @@ -195512,6 +205802,7 @@ self: { ]; description = "Alternative multirec instances deriver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "multirec-binary" = callPackage @@ -195523,6 +205814,7 @@ self: { libraryHaskellDepends = [ base binary multirec ]; description = "Generic Data.Binary instances using MultiRec."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "multiset" = callPackage @@ -195562,6 +205854,7 @@ self: { libraryHaskellDepends = [ base haskell98 stm ]; description = "Multi-set rewrite rules with guards and a parallel execution scheme"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "multistate" = callPackage @@ -195610,7 +205903,9 @@ self: { ]; description = "Multivariant assignments generation language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "multivector" = callPackage @@ -195670,7 +205965,9 @@ self: { ]; description = "Static blog generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "muon"; + broken = true; }) {}; "murder" = callPackage @@ -195687,6 +205984,7 @@ self: { ]; description = "MUtually Recursive Definitions Explicitly Represented"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "murmur" = callPackage @@ -195712,7 +206010,9 @@ self: { testHaskellDepends = [ base ]; description = "Simple CUI Twitter Client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mur"; + broken = true; }) {}; "murmur-hash" = callPackage @@ -195753,6 +206053,7 @@ self: { libraryHaskellDepends = [ haskell2010 ]; description = "32-bit non-cryptographic hashing"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "mushu" = callPackage @@ -195779,6 +206080,7 @@ self: { testHaskellDepends = [ base classy-prelude ]; description = "Minimalist MPD client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mushu"; }) {}; @@ -195844,6 +206146,7 @@ self: { ]; description = "Diagrams-based visualization of musical data structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "music-parts" = callPackage @@ -195866,6 +206169,7 @@ self: { ]; description = "Musical instruments, parts and playing techniques"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "music-pitch" = callPackage @@ -195883,6 +206187,7 @@ self: { ]; description = "Musical pitch representation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "music-pitch-literal" = callPackage @@ -195923,6 +206228,7 @@ self: { testHaskellDepends = [ base process tasty tasty-golden ]; description = "Some useful preludes for the Music Suite"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "music-score" = callPackage @@ -195946,6 +206252,7 @@ self: { ]; description = "Musical score and part representation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "music-sibelius" = callPackage @@ -195965,6 +206272,7 @@ self: { ]; description = "Interaction with Sibelius"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "music-suite" = callPackage @@ -195984,6 +206292,7 @@ self: { doHaddock = false; description = "A set of libraries for composition, analysis and manipulation of music"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "music-util" = callPackage @@ -196001,7 +206310,9 @@ self: { ]; description = "Utility for developing the Music Suite"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "music-util"; + broken = true; }) {}; "musicScroll" = callPackage @@ -196026,7 +206337,9 @@ self: { executablePkgconfigDepends = [ gtk3 ]; description = "Supply your tunes info without leaving your music player"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "music-scroll"; + broken = true; }) {inherit (pkgs) gtk3;}; "musicbrainz-email" = callPackage @@ -196060,6 +206373,7 @@ self: { ]; description = "Send an email to all MusicBrainz editors"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "musicw" = callPackage @@ -196094,6 +206408,8 @@ self: { ]; description = "MusicXML format encoded as Haskell type and functions of reading and writting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "musicxml2" = callPackage @@ -196111,6 +206427,7 @@ self: { ]; description = "A representation of the MusicXML format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mustache" = callPackage @@ -196164,7 +206481,9 @@ self: { ]; description = "Straight implementation of mustache templates"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mus"; + broken = true; }) {}; "mustache2hs" = callPackage @@ -196183,7 +206502,9 @@ self: { ]; description = "Utility to generate Haskell code from Mustache templates"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "mustache2hs"; + broken = true; }) {}; "mutable" = callPackage @@ -196205,6 +206526,8 @@ self: { ]; description = "Automatic piecewise-mutable references for your types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mutable-containers" = callPackage @@ -196239,6 +206562,7 @@ self: { ]; description = "iteratees based upon mutable buffers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mutable-lens" = callPackage @@ -196275,6 +206599,7 @@ self: { ]; description = "Watches your screensaver and (un)mutes music when you (un)lock the screen"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "mute-unmute"; }) {}; @@ -196305,7 +206630,9 @@ self: { ]; description = "Model-view-controller"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.Gabriella439 ]; + broken = true; }) {}; "mvc-updates" = callPackage @@ -196319,6 +206646,7 @@ self: { libraryHaskellDepends = [ async base foldl mvc ]; description = "Concurrent and combinable updates"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.Gabriella439 ]; }) {}; @@ -196338,6 +206666,7 @@ self: { ]; description = "Client library for metaverse systems like Second Life"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mwc-probability" = callPackage @@ -196409,6 +206738,7 @@ self: { libraryHaskellDepends = [ accelerate base mwc-random ]; description = "Generate Accelerate arrays filled with high quality pseudorandom numbers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mwc-random-monad" = callPackage @@ -196458,6 +206788,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit vector ]; description = "MXNet interface in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) mxnet;}; "mxnet-dataiter" = callPackage @@ -196475,6 +206807,7 @@ self: { testHaskellDepends = [ base hspec mxnet streaming ]; description = "mxnet dataiters"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mxnet-examples" = callPackage @@ -196488,6 +206821,7 @@ self: { executableHaskellDepends = [ base mxnet ]; description = "Examples for MXNet in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "mxnet-nn" = callPackage @@ -196513,6 +206847,7 @@ self: { ]; description = "Train a neural network with MXNet in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lenet"; }) {}; @@ -196527,6 +206862,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "NNVM interface in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) mxnet;}; "my-package-testing" = callPackage @@ -196551,6 +206888,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "spam"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "my-test-docs" = callPackage @@ -196575,6 +206914,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "spam"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "myTestlll" = callPackage @@ -196599,6 +206940,7 @@ self: { ]; description = "None"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "myanimelist-export" = callPackage @@ -196622,7 +206964,9 @@ self: { ]; description = "Export from MyAnimeList"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "myanimelist-export"; + broken = true; }) {}; "mybitcoin-sci" = callPackage @@ -196692,7 +207036,9 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Haskell binding to the Myo armband"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "myo-ws-example"; + broken = true; }) {}; "mysnapsession" = callPackage @@ -196709,6 +207055,7 @@ self: { ]; description = "Sessions and continuations for Snap web apps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mysnapsession-example" = callPackage @@ -196728,6 +207075,7 @@ self: { ]; description = "Example projects using mysnapsession"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mysql" = callPackage @@ -196761,6 +207109,8 @@ self: { ]; description = "An extensible mysql effect using extensible-effects and mysql-simple"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mysql-haskell" = callPackage @@ -196796,6 +207146,8 @@ self: { ]; description = "pure haskell MySQL driver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mysql-haskell-nem" = callPackage @@ -196811,6 +207163,7 @@ self: { ]; description = "Adds a interface like mysql-simple to mysql-haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mysql-haskell-openssl" = callPackage @@ -196827,6 +207180,7 @@ self: { ]; description = "TLS support for mysql-haskell package using openssl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mysql-pure" = callPackage @@ -196862,6 +207216,8 @@ self: { ]; description = "pure haskell MySQL driver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mysql-simple" = callPackage @@ -196897,6 +207253,8 @@ self: { ]; description = "Quasi-quoter for use with mysql-simple"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mysql-simple-typed" = callPackage @@ -196912,6 +207270,7 @@ self: { ]; description = "Typed extension to mysql simple"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "mystem" = callPackage @@ -196930,7 +207289,9 @@ self: { executableHaskellDepends = [ base text ]; description = "Bindings for Mystem morphological analyzer executabe"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mystem-test-exe"; + broken = true; }) {}; "mywatch" = callPackage @@ -196955,6 +207316,7 @@ self: { ]; description = "Web application to view and kill MySQL queries"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mywatch"; }) {}; @@ -196979,6 +207341,7 @@ self: { ]; description = "Tool to keep track of what you have been working on and where"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; mainProgram = "mywork"; }) {}; @@ -197002,6 +207365,8 @@ self: { testHaskellDepends = [ bytestring text ]; description = "A Haskell client for the Myxine GUI server"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mzv" = callPackage @@ -197013,6 +207378,8 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Implementation of the \"Monads, Zippers and Views\" (Schrijvers and Oliveira, ICFP'11)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "n-ary-functor" = callPackage @@ -197056,6 +207423,8 @@ self: { libraryHaskellDepends = [ base singletons vector ]; description = "Homogeneous tuples of arbitrary length"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "n2o" = callPackage @@ -197100,6 +207469,8 @@ self: { ]; description = "N2O Protocols Starter Pack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "n2o-web" = callPackage @@ -197118,6 +207489,7 @@ self: { ]; description = "N2O adapter for WebSockets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nagios-check" = callPackage @@ -197188,7 +207560,9 @@ self: { ]; description = "Monitor ekg metrics via Nagios"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "check_ekg"; + broken = true; }) {}; "nakadi-client" = callPackage @@ -197227,6 +207601,7 @@ self: { ]; description = "Client library for the Nakadi Event Broker"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "namecoin-update" = callPackage @@ -197274,6 +207649,8 @@ self: { testHaskellDepends = [ base cereal tasty tasty-quickcheck text ]; description = "NBT (named binary tag) serialization and deserialization"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "named-formlet" = callPackage @@ -197300,6 +207677,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A named lock that is created on demand"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "named-records" = callPackage @@ -197322,6 +207701,8 @@ self: { libraryHaskellDepends = [ base named servant ]; description = "support records and named (from the named package) parameters in servant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "named-servant-client" = callPackage @@ -197337,6 +207718,7 @@ self: { ]; description = "client support for named-servant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "named-servant-server" = callPackage @@ -197352,6 +207734,7 @@ self: { ]; description = "server support for named-servant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "named-sop" = callPackage @@ -197364,6 +207747,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Dependently-typed sums and products, tagged by field name"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "named-text" = callPackage @@ -197403,6 +207788,8 @@ self: { ]; description = "fortran90 namelist parser/pretty printer"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "names" = callPackage @@ -197455,6 +207842,8 @@ self: { ]; description = "A threadsafe binding to glibc's crypt_r function"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libxcrypt;}; "nano-erl" = callPackage @@ -197478,6 +207867,8 @@ self: { librarySystemDepends = [ openssl ]; description = "Bindings to OpenSSL HMAC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) openssl;}; "nano-md5" = callPackage @@ -197492,6 +207883,8 @@ self: { librarySystemDepends = [ openssl ]; description = "Efficient, ByteString bindings to OpenSSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) openssl;}; "nanoAgda" = callPackage @@ -197509,7 +207902,9 @@ self: { ]; description = "A toy dependently-typed language"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "nanoAgda"; + broken = true; }) {}; "nanocurses" = callPackage @@ -197522,6 +207917,8 @@ self: { librarySystemDepends = [ ncurses ]; description = "Simple Curses binding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) ncurses;}; "nanomsg" = callPackage @@ -197534,6 +207931,8 @@ self: { librarySystemDepends = [ nanomsg ]; description = "nanomsg - scalability protocols library"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) nanomsg;}; "nanomsg-haskell" = callPackage @@ -197558,6 +207957,8 @@ self: { ]; description = "Bindings to the nanomsg library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) nanomsg;}; "nanoparsec" = callPackage @@ -197569,6 +207970,8 @@ self: { libraryHaskellDepends = [ base bytestring ListLike ]; description = "An implementation of attoparsec-like parser around list-like"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nanopass" = callPackage @@ -197589,7 +207992,9 @@ self: { ]; description = "An EDSL for creating compilers using small passes and many intermediate representations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dumb-nanopass-example"; + broken = true; }) {}; "nanospec" = callPackage @@ -197643,6 +208048,8 @@ self: { ]; description = "Simple interface to rendering with NanoVG"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nanq" = callPackage @@ -197662,6 +208069,7 @@ self: { ]; description = "Performs 漢字検定 (Japan Kanji Aptitude Test) level analysis on given Kanji"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "nanq"; }) {}; @@ -197680,6 +208088,8 @@ self: { ]; description = "Efficient representable functors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "naqsha" = callPackage @@ -197698,6 +208108,8 @@ self: { doHaddock = false; description = "A library for working with anything map related"; license = "(Apache-2.0 OR BSD-3-Clause)"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "narc" = callPackage @@ -197709,6 +208121,8 @@ self: { libraryHaskellDepends = [ base HDBC HUnit mtl QuickCheck random ]; description = "Query SQL databases using Nested Relational Calculus embedded in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nat" = callPackage @@ -197746,6 +208160,8 @@ self: { testHaskellDepends = [ base doctest hedgehog QuickCheck ]; description = "Variable-sized numbers from type-level nats"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nationstates" = callPackage @@ -197762,6 +208178,8 @@ self: { ]; description = "NationStates API client"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "native" = callPackage @@ -197822,7 +208240,9 @@ self: { benchmarkHaskellDepends = [ base criterion time ]; description = "Another Haskell client for NATS (https://nats.io)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "nats-client"; + broken = true; }) {}; "nats-queue" = callPackage @@ -197843,6 +208263,7 @@ self: { ]; description = "Haskell API for NATS messaging system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "natural" = callPackage @@ -197861,6 +208282,8 @@ self: { ]; description = "Natural number"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "natural-arithmetic" = callPackage @@ -197901,6 +208324,7 @@ self: { ]; description = "Natural numbers tagged with a type-level representation of the number"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "natural-numbers" = callPackage @@ -197978,6 +208402,8 @@ self: { ]; description = "Interface to Naver Translate"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nbt" = callPackage @@ -197997,6 +208423,8 @@ self: { ]; description = "A parser/serializer for Minecraft's Named Binary Tag (NBT) data format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nc-indicators" = callPackage @@ -198033,6 +208461,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "Modernised bindings to GNU ncurses"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) ncurses;}; "ndjson-conduit" = callPackage @@ -198060,7 +208490,9 @@ self: { executableHaskellDepends = [ base filepath parsec ]; description = "A Fast Retargetable Template Engine"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "neat"; + broken = true; }) {}; "neat-interpolation" = callPackage @@ -198095,6 +208527,8 @@ self: { ]; description = "ASCII-fied arrow notation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "neet" = callPackage @@ -198111,6 +208545,8 @@ self: { ]; description = "A NEAT library for Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nehe-tuts" = callPackage @@ -198130,6 +208566,8 @@ self: { ]; description = "Port of the NeHe OpenGL tutorials to Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "neil" = callPackage @@ -198148,7 +208586,9 @@ self: { ]; description = "General tools for Neil"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "neil"; + broken = true; }) {}; "neither" = callPackage @@ -198160,6 +208600,8 @@ self: { libraryHaskellDepends = [ base failure transformers ]; description = "Provide versions of Either with good monad and applicative instances. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "neither-data" = callPackage @@ -198171,6 +208613,8 @@ self: { libraryHaskellDepends = [ base ]; description = "The Neither datatype"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "neko-lib" = callPackage @@ -198191,6 +208635,8 @@ self: { ]; description = "Neko VM code generation and disassembly library"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "neko-obfs" = callPackage @@ -198212,7 +208658,9 @@ self: { ]; description = "a TCP tunnel with packet length obfuscation"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "neko-obfs"; + broken = true; }) {}; "nekos-best" = callPackage @@ -198230,6 +208678,8 @@ self: { ]; description = "Unofficial nekos.best API wrapper"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nemesis" = callPackage @@ -198262,6 +208712,7 @@ self: { ]; description = "A collection of Nemesis tasks to bootstrap a Haskell project with a focus on continuous integration"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "neolua" = callPackage @@ -198311,7 +208762,9 @@ self: { ]; description = "Neptune Client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example-app"; + broken = true; }) {}; "nerf" = callPackage @@ -198338,6 +208791,7 @@ self: { ]; description = "Nerf, a named entity recognition tool based on linear-chain CRFs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "nerf"; }) {}; @@ -198357,6 +208811,8 @@ self: { ]; description = "Lens-based HTTP toolkit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nero-wai" = callPackage @@ -198372,6 +208828,7 @@ self: { ]; description = "WAI adapter for Nero server applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nero-warp" = callPackage @@ -198383,6 +208840,7 @@ self: { libraryHaskellDepends = [ base nero nero-wai warp ]; description = "Run Nero server applications with Warp"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nest" = callPackage @@ -198398,6 +208856,8 @@ self: { ]; testHaskellDepends = [ base bytestring containers hedgehog text ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nested-routes" = callPackage @@ -198427,6 +208887,7 @@ self: { ]; description = "Declarative, compositional Wai responses"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nested-sequence" = callPackage @@ -198443,6 +208904,8 @@ self: { ]; description = "List-like data structures with O(log(n)) random access"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nested-sets" = callPackage @@ -198471,6 +208934,8 @@ self: { ]; description = "A library for nested maps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "net-concurrent" = callPackage @@ -198619,6 +209084,7 @@ self: { testToolDepends = [ doctest-discover hspec-discover ]; description = "A graph database middleware to maintain a time-varying graph"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "net-spider-cli" = callPackage @@ -198640,6 +209106,7 @@ self: { testToolDepends = [ doctest-discover hspec-discover ]; description = "CLI option parsers for NetSpider objects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "net-spider-pangraph" = callPackage @@ -198658,6 +209125,7 @@ self: { ]; description = "Conversion between net-spider and pangraph"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "net-spider-rpl" = callPackage @@ -198681,6 +209149,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "NetSpider data model and utility for RPL networks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "net-spider-rpl-cli" = callPackage @@ -198708,6 +209177,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "CLI executable of NetSpider.RPL."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "net-spider-rpl-cli"; }) {}; @@ -198722,6 +209192,8 @@ self: { libraryHaskellDepends = [ base bytestring hosc network ]; description = "Netclock protocol"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "netcode-io" = callPackage @@ -198767,6 +209239,7 @@ self: { ]; description = "The NetCore compiler and runtime system for OpenFlow networks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "netease-fm" = callPackage @@ -198795,7 +209268,9 @@ self: { ]; description = "NetEase Cloud Music FM client in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "netease-fm"; + broken = true; }) {}; "netlib-carray" = callPackage @@ -198864,6 +209339,7 @@ self: { executableHaskellDepends = [ base HTF random ]; description = "Enumerator tools for text-based network protocols"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "netlines-test"; }) {}; @@ -198962,6 +209438,8 @@ self: { ]; description = "Contract normaliser and simulator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "netspec" = callPackage @@ -198978,6 +209456,8 @@ self: { ]; description = "Simplify static Networking tasks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "netstring-enumerator" = callPackage @@ -198991,6 +209471,7 @@ self: { ]; description = "Enumerator-based netstring parsing"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "nettle" = callPackage @@ -199032,6 +209513,7 @@ self: { ]; description = "FRP for controlling networks of OpenFlow switches"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nettle-netkit" = callPackage @@ -199047,6 +209529,7 @@ self: { ]; description = "DSL for describing OpenFlow networks, and a compiler generating NetKit labs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nettle-openflow" = callPackage @@ -199063,6 +209546,7 @@ self: { ]; description = "OpenFlow protocol messages, binary formats, and servers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "netwire" = callPackage @@ -199122,6 +209606,8 @@ self: { ]; description = "JavaScript instance of netwire-input"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "netwire-vinylglfw-examples" = callPackage @@ -199144,6 +209630,8 @@ self: { ]; description = "Netwire/GLFW/VinylGL input handling demo"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network_2_6_3_1" = callPackage @@ -199200,6 +209688,8 @@ self: { ]; description = "IP data structures and textual representation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-anonymous-i2p" = callPackage @@ -199222,6 +209712,7 @@ self: { ]; description = "Haskell API for I2P anonymous networking"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "network-anonymous-tor" = callPackage @@ -199251,6 +209742,7 @@ self: { ]; description = "Haskell API for Tor anonymous networking"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "tor-relay"; }) {}; @@ -199269,6 +209761,8 @@ self: { ]; description = "Toolkit for building http client libraries over Network.Http.Conduit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-arbitrary" = callPackage @@ -199290,6 +209784,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Arbitrary Instances for Network Types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-attoparsec" = callPackage @@ -199313,6 +209809,8 @@ self: { doCheck = false; description = "Utility functions for running a parser against a socket"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-bitcoin" = callPackage @@ -199335,6 +209833,8 @@ self: { ]; description = "An interface to bitcoind"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-bsd" = callPackage @@ -199369,7 +209869,9 @@ self: { ]; description = "Linux NetworkNameSpace Builder"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "network-builder"; + broken = true; }) {}; "network-byte-order" = callPackage @@ -199397,6 +209899,8 @@ self: { libraryHaskellDepends = [ base bytestring network unix ]; description = "Fast, memory-efficient, low-level networking"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-carbon" = callPackage @@ -199410,6 +209914,8 @@ self: { ]; description = "A Haskell implementation of the Carbon protocol (part of the Graphite monitoring tools)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-conduit" = callPackage @@ -199479,6 +209985,7 @@ self: { ]; description = "A wrapper around a generic stream-like connection"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "network-data" = callPackage @@ -199506,6 +210013,8 @@ self: { ]; description = "D-Bus"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-dns" = callPackage @@ -199544,6 +210053,7 @@ self: { ]; description = "Enumerators for network sockets"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "network-fancy" = callPackage @@ -199566,6 +210076,7 @@ self: { libraryHaskellDepends = [ base bytestring hans parsec ]; description = "HaNS to Network shims for easier HaNS integration"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "network-house" = callPackage @@ -199577,6 +210088,8 @@ self: { libraryHaskellDepends = [ array base containers mtl ]; description = "data and parsers for Ethernet, TCP, UDP, IPv4, IPv6, ICMP, DHCP, TFTP"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-info" = callPackage @@ -199599,6 +210112,7 @@ self: { libraryHaskellDepends = [ base bytestring ioctl network ]; description = "Haskell bindings for the ifreq structure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "network-ip" = callPackage @@ -199644,7 +210158,9 @@ self: { doHaddock = false; description = "network-manager tui"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "nmt"; + broken = true; }) {}; "network-messagepack-rpc" = callPackage @@ -199696,6 +210212,8 @@ self: { ]; description = "Send metrics to Ganglia, Graphite, and statsd"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-minihttp" = callPackage @@ -199715,6 +210233,7 @@ self: { ]; description = "A ByteString based library for writing HTTP(S) servers and clients"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "network-msg" = callPackage @@ -199726,6 +210245,8 @@ self: { libraryHaskellDepends = [ base binary bytestring network unix ]; description = "Recvmsg and sendmsg bindings"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-msgpack-rpc" = callPackage @@ -199748,6 +210269,8 @@ self: { testHaskellDepends = [ async base bytestring hspec mtl network ]; description = "A MessagePack-RPC Implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-multicast" = callPackage @@ -199775,6 +210298,7 @@ self: { ]; description = "Haskell bindings for low-level packet sockets (AF_PACKET)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "network-packet-linux" = callPackage @@ -199792,6 +210316,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Types for working with Linux packet sockets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-pgi" = callPackage @@ -199807,6 +210333,7 @@ self: { ]; description = "Library for writing PGI applications"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "network-protocol-xmpp" = callPackage @@ -199841,6 +210368,7 @@ self: { ]; description = "A cross-platform RPC library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "network-run" = callPackage @@ -199866,7 +210394,9 @@ self: { executableHaskellDepends = [ base network unix ]; description = "A light abstraction over sockets & co. for servers"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "network-service" = callPackage @@ -199882,6 +210412,8 @@ self: { ]; description = "Provide a service at the data type level"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-simple" = callPackage @@ -199913,6 +210445,8 @@ self: { ]; description = "network-simple for resolved addresses"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-simple-tls" = callPackage @@ -199974,6 +210508,8 @@ self: { libraryHaskellDepends = [ base network ]; description = "Type-safe, portable alternative to getSocketOption/setSocketOption"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-stream" = callPackage @@ -199990,6 +210526,7 @@ self: { ]; description = "ByteString and Text streams for networking"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "network-topic-models" = callPackage @@ -200011,6 +210548,7 @@ self: { ]; description = "A few network topic model implementations for bayes-stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "network-transport" = callPackage @@ -200051,6 +210589,8 @@ self: { ]; description = "AMQP-based transport layer for distributed-process (aka Cloud Haskell)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-transport-composed" = callPackage @@ -200186,6 +210726,7 @@ self: { ]; description = "Network functions that do not throw exceptions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "network-uri" = callPackage @@ -200237,6 +210778,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "FromJSON and ToJSON Instances for Network.URI"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "network-uri-lenses" = callPackage @@ -200276,6 +210818,8 @@ self: { ]; description = "VoiceText Web API wrapper"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-wai-router" = callPackage @@ -200287,6 +210831,8 @@ self: { libraryHaskellDepends = [ base wai ]; description = "A routing library for wai"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "network-wait" = callPackage @@ -200316,6 +210862,7 @@ self: { libraryHaskellDepends = [ base haskell98 network webserver ]; description = "WebSocket library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "networked-game" = callPackage @@ -200333,6 +210880,8 @@ self: { ]; description = "Networked-game support library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "neural" = callPackage @@ -200365,6 +210914,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Neural Networks in native Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "neural-network-base" = callPackage @@ -200395,6 +210945,8 @@ self: { ]; description = "Yet Another High Performance and Extendable Neural Network in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "neural-network-hmatrix" = callPackage @@ -200412,6 +210964,8 @@ self: { librarySystemDepends = [ blas ]; description = "Yet Another High Performance and Extendable Neural Network in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) blas;}; "neuron" = callPackage @@ -200469,6 +211023,7 @@ self: { doHaddock = false; description = "Future-proof system for plain-text notes"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "neuron"; }) {}; @@ -200482,6 +211037,8 @@ self: { testHaskellDepends = [ array base bytestring hspec QuickCheck ]; description = "Encodes and decodes numbers using Tantek Çelik's New Base 60 number system"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "newhope" = callPackage @@ -200513,6 +211070,8 @@ self: { ]; description = "Library implementing the NewHope cryptographic key-exchange protocol"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "newline" = callPackage @@ -200524,6 +211083,8 @@ self: { libraryHaskellDepends = [ base bytestring text ]; description = "newline specifications as values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "newports" = callPackage @@ -200537,7 +211098,9 @@ self: { executableHaskellDepends = [ base directory old-time ]; description = "List ports newer than N days on a FreeBSD system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "newports"; + broken = true; }) {}; "newsletter" = callPackage @@ -200566,7 +211129,9 @@ self: { ]; description = "A basic newsletter implimentation, using various backends"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "newsletter-server"; + broken = true; }) {}; "newsletter-mailgun" = callPackage @@ -200582,6 +211147,7 @@ self: { ]; description = "A mailgun backend for the newsletter package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "newsynth" = callPackage @@ -200599,6 +211165,7 @@ self: { executableHaskellDepends = [ base random time ]; description = "Exact and approximate synthesis of quantum circuits"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "gridsynth"; }) {}; @@ -200620,7 +211187,9 @@ self: { executableHaskellDepends = [ base cmdargs containers mtl ]; description = "A trivially simple app to create things from simple templates"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "newt"; + broken = true; }) {}; "newtype" = callPackage @@ -200650,6 +211219,8 @@ self: { ]; description = "Instance derivers for newtype wrappers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "newtype-generics" = callPackage @@ -200682,6 +211253,8 @@ self: { ]; description = "A template haskell deriver to create Control.Newtype instances."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "newtype-zoo" = callPackage @@ -200721,6 +211294,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "A concurrency primitive for a slow consumer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nextstep-plist" = callPackage @@ -200732,6 +211307,8 @@ self: { libraryHaskellDepends = [ base parsec pretty QuickCheck ]; description = "NextStep style plist parser and printer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nf" = callPackage @@ -200799,7 +211376,9 @@ self: { executableHaskellDepends = [ base parseargs ]; description = "Ngrams loader based on http://www.ngrams.info format"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "ngrams-loader"; + broken = true; }) {}; "ngx-export" = callPackage @@ -200863,6 +211442,8 @@ self: { ]; description = "Native Nginx logging from configuration files and Haskell handlers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ngx-export-tools" = callPackage @@ -200903,6 +211484,7 @@ self: { ]; description = "More extra tools for Nginx haskell module"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "niagra" = callPackage @@ -200919,6 +211501,8 @@ self: { testHaskellDepends = [ base HUnit QuickCheck ]; description = "High performance CSS EDSL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nibblestring" = callPackage @@ -200939,6 +211523,8 @@ self: { ]; description = "Packed, strict nibble arrays with a list interface (ByteString for nibbles)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nice-html" = callPackage @@ -200962,6 +211548,8 @@ self: { ]; description = "A fast and nice HTML templating library with distinct compilation/rendering phases"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nicify" = callPackage @@ -201009,7 +211597,9 @@ self: { executableHaskellDepends = [ base ]; description = "Nico Nico Douga (ニコニコ動画) Comment Translator"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "nicovideo-translator"; + broken = true; }) {}; "nikepub" = callPackage @@ -201030,6 +211620,7 @@ self: { ]; description = "Command line utility publishes Nike+ runs on blogs and Twitter"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "nikepub"; }) {}; @@ -201080,6 +211671,7 @@ self: { ]; description = "IDL compiler and RPC/distributed object framework for microservices"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "nirum"; }) {}; @@ -201094,6 +211686,8 @@ self: { libraryHaskellDepends = [ base bytestring http-conduit xml ]; description = "Haskell interface to the nist random beacon"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nitro" = callPackage @@ -201105,6 +211699,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Haskell bindings for Nitro"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "niv" = callPackage @@ -201161,7 +211757,9 @@ self: { executableHaskellDepends = [ base ]; description = "Convenient utility for distributed Nix builds"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "nix-delegate"; + broken = true; }) {}; "nix-deploy" = callPackage @@ -201260,6 +211858,8 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; description = "Evaluate Haskell expressions using Nix to get packages"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nix-freeze-tree" = callPackage @@ -201288,7 +211888,9 @@ self: { doHaddock = false; description = "Convert a tree of files into fixed-output derivations"; license = lib.licenses.agpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "nix-freeze-tree"; + broken = true; }) {}; "nix-graph" = callPackage @@ -201373,7 +211975,9 @@ self: { ]; description = "A drop-in replacement for nix-serve that's faster and more stable"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "nix-serve"; + broken = true; }) {inherit (pkgs) nix;}; "nix-thunk" = callPackage @@ -201402,6 +212006,7 @@ self: { ]; description = "Lightweight dependency management with Nix"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "nix-thunk"; }) {}; @@ -201433,6 +212038,8 @@ self: { ]; description = "cabal/stack to nix translation tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nix-tree" = callPackage @@ -201481,7 +212088,9 @@ self: { ]; description = "Interactively browse a Nix store paths dependencies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "nixdu"; + broken = true; }) {}; "nixfmt" = callPackage @@ -201529,7 +212138,9 @@ self: { ]; description = "Generate nix expressions from npm packages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "nixfromnpm"; + broken = true; }) {}; "nixos-types" = callPackage @@ -201594,7 +212205,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Tool for semi-automatic updating of nixpkgs repository"; license = lib.licenses.cc0; + hydraPlatforms = lib.platforms.none; mainProgram = "nixpkgs-update"; + broken = true; }) {}; "nkjp" = callPackage @@ -201613,6 +212226,7 @@ self: { ]; description = "Manipulating the National Corpus of Polish (NKJP)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nlopt-haskell" = callPackage @@ -201637,6 +212251,8 @@ self: { libraryHaskellDepends = [ base containers strict ]; description = "Scoring functions commonly used for evaluation in NLP and IR"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nlp-scores-scripts" = callPackage @@ -201652,6 +212268,7 @@ self: { ]; description = "NLP scoring command-line programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nm" = callPackage @@ -201668,7 +212285,9 @@ self: { executableHaskellDepends = [ base ]; description = "Network Manager, binding to libnm-glib"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "nm-demo"; + broken = true; }) {g = null; inherit (pkgs) glib; libnm-glib = null; nm-glib = null;}; @@ -201681,6 +212300,8 @@ self: { libraryHaskellDepends = [ base bytestring utf8-string ]; description = "Bindings to the Nyctergatis Markup Engine"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nmis-parser" = callPackage @@ -201709,6 +212330,8 @@ self: { testHaskellDepends = [ base tasty tasty-hspec tasty-quickcheck ]; description = "A tiny neural network"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nntp" = callPackage @@ -201724,6 +212347,8 @@ self: { ]; description = "Library to connect to an NNTP Server"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "no-buffering-workaround" = callPackage @@ -201747,6 +212372,8 @@ self: { testHaskellDepends = [ base template-haskell ]; description = "Role annotations without -XRoleAnnotations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "no-value" = callPackage @@ -201780,7 +212407,9 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Math in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "noether"; + broken = true; }) {}; "nofib-analyse" = callPackage @@ -201794,7 +212423,9 @@ self: { executableHaskellDepends = [ array base containers regex-compat ]; description = "Parse and compare nofib runs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "nofib-analyse"; + broken = true; }) {}; "nofib-analyze" = callPackage @@ -201808,7 +212439,9 @@ self: { executableHaskellDepends = [ array base containers regex-compat ]; description = "Parse and compare nofib runs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "nofib-analyze"; + broken = true; }) {}; "noise" = callPackage @@ -201832,7 +212465,9 @@ self: { ]; description = "A friendly language for graphic design"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "noise"; + broken = true; }) {}; "noli" = callPackage @@ -201849,6 +212484,8 @@ self: { ]; description = "A static site generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nom" = callPackage @@ -201873,6 +212510,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Name-binding & alpha-equivalence"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nominal" = callPackage @@ -201905,6 +212543,7 @@ self: { ]; description = "REST API for Nomyx"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nomyx-core" = callPackage @@ -201933,6 +212572,7 @@ self: { testHaskellDepends = [ base Cabal ]; description = "A Nomic game in haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nomyx-language" = callPackage @@ -201952,6 +212592,7 @@ self: { ]; description = "Language to express rules for Nomic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nomyx-library" = callPackage @@ -201969,6 +212610,7 @@ self: { ]; description = "Library of rules for Nomyx"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nomyx-server" = callPackage @@ -201990,6 +212632,7 @@ self: { testHaskellDepends = [ base Cabal ]; description = "A Nomic game in haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "nomyx-server"; }) {}; @@ -202046,6 +212689,8 @@ self: { sha256 = "1frjpvx3nzymkwyxz0zc4p11pvxdihx3d3hi31w3d9qanwncbc96"; libraryHaskellDepends = [ base containers semigroupoids ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "non-empty-sequence" = callPackage @@ -202085,6 +212730,8 @@ self: { testHaskellDepends = [ base checkers QuickCheck ]; description = "The Zipper for NonEmpty"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "non-negative" = callPackage @@ -202175,6 +212822,8 @@ self: { testHaskellDepends = [ base hedgehog hedgehog-classes ]; description = "nonempty structure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nonempty-vector" = callPackage @@ -202301,6 +212950,8 @@ self: { libraryHaskellDepends = [ base primitive vector ]; description = "Various iterative algorithms for optimization of nonlinear functions"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nonlinear-optimization-ad" = callPackage @@ -202320,6 +212971,7 @@ self: { ]; description = "Wrapper of nonlinear-optimization package for using with AD package"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "nonlinear-optimization-backprop" = callPackage @@ -202340,6 +212992,7 @@ self: { ]; description = "Wrapper of nonlinear-optimization package for using with backprop package"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "noodle" = callPackage @@ -202354,6 +213007,8 @@ self: { executableHaskellDepends = [ base directory filepath ]; description = "the noodle programming language"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "normaldistribution" = callPackage @@ -202388,6 +213043,8 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion deepseq ]; description = "Normalization insensitive string comparison"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "normalize" = callPackage @@ -202485,6 +213142,8 @@ self: { ]; description = "An opinionated Prelude replacement library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "notcpp" = callPackage @@ -202497,6 +213156,8 @@ self: { testHaskellDepends = [ base template-haskell ]; description = "Avoiding the C preprocessor via cunning use of Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nothunks" = callPackage @@ -202579,7 +213240,9 @@ self: { executableSystemDepends = [ notmuch ]; description = "Binding for notmuch MUA library"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "notmuch-test"; + broken = true; }) {inherit (pkgs) notmuch;}; "notmuch-web" = callPackage @@ -202617,6 +213280,7 @@ self: { ]; description = "A web interface to the notmuch email indexer"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "notmuch-web"; }) {}; @@ -202635,6 +213299,8 @@ self: { ]; description = "A data type for representing numeric values, except zero"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "now-haskell" = callPackage @@ -202671,6 +213337,7 @@ self: { ]; description = "Zeit Now haskell-side integration and introspection tools"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "module-scanner"; }) {}; @@ -202714,6 +213381,8 @@ self: { ]; description = "Linear algebra for the numeric-prelude framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nptools" = callPackage @@ -202732,6 +213401,8 @@ self: { ]; description = "A collection of random tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nqe" = callPackage @@ -202766,6 +213437,7 @@ self: { ]; description = "Read environment variables as settings to build 12-factor apps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nri-http" = callPackage @@ -202789,6 +213461,7 @@ self: { ]; description = "Make Elm style HTTP requests"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nri-kafka" = callPackage @@ -202812,6 +213485,7 @@ self: { ]; description = "Functions for working with Kafka"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nri-observability" = callPackage @@ -202838,6 +213512,7 @@ self: { ]; description = "Report log spans collected by nri-prelude"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nri-postgresql" = callPackage @@ -202862,6 +213537,7 @@ self: { ]; description = "Make queries against Postgresql"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nri-prelude" = callPackage @@ -202891,6 +213567,7 @@ self: { ]; description = "A Prelude inspired by the Elm programming language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nri-redis" = callPackage @@ -202914,6 +213591,7 @@ self: { ]; description = "An intuitive hedis wrapper library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nri-test-encoding" = callPackage @@ -202931,6 +213609,7 @@ self: { ]; description = "A library to simplify writing golden tests for encoding types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nsis" = callPackage @@ -203015,6 +213694,8 @@ self: { ]; description = "Client library for NTP control messaging"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ntrip-client" = callPackage @@ -203039,7 +213720,9 @@ self: { ]; description = "NTRIP client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ntrip-client"; + broken = true; }) {}; "ntype" = callPackage @@ -203063,6 +213746,8 @@ self: { testHaskellDepends = [ base vector ]; description = "Multidimensional arrays, Linear algebra, Numerical analysis"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "null-canvas" = callPackage @@ -203080,6 +213765,8 @@ self: { ]; description = "HTML5 Canvas Graphics Library - forked Blank Canvas"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nullary" = callPackage @@ -203091,6 +213778,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A package for working with nullary type classes"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nullpipe" = callPackage @@ -203103,6 +213792,8 @@ self: { testHaskellDepends = [ base hspec pipes ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "num-non-negative" = callPackage @@ -203172,6 +213863,8 @@ self: { benchmarkHaskellDepends = [ base tasty-bench ]; description = "Create number walls and save them as images"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "numbered-semigroups" = callPackage @@ -203254,6 +213947,7 @@ self: { ]; description = "Convert numbers to number words"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "numeric-domains" = callPackage @@ -203289,6 +213983,7 @@ self: { libraryHaskellDepends = [ base type-compare ]; description = "Type-level numeric types and classes"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "numeric-limits" = callPackage @@ -203347,6 +214042,7 @@ self: { ]; description = "Ode solvers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Kepler"; }) {}; @@ -203454,6 +214150,8 @@ self: { doCheck = false; description = "Quasi-quoters for numbers of different bases"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "numeric-quest" = callPackage @@ -203481,6 +214179,8 @@ self: { testHaskellDepends = [ base hspec HUnit QuickCheck ]; description = "A framework for numeric ranges"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "numeric-tools" = callPackage @@ -203514,6 +214214,7 @@ self: { ]; description = "core package for Numerical Haskell project"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "numericpeano" = callPackage @@ -203596,6 +214297,8 @@ self: { testHaskellDepends = [ base doctest numhask ]; description = "numerical free algebras"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "numhask-hedgehog" = callPackage @@ -203612,6 +214315,7 @@ self: { testHaskellDepends = [ base hedgehog numhask numhask-prelude ]; description = "Laws and tests for numhask"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "numhask-histogram" = callPackage @@ -203628,6 +214332,7 @@ self: { testHaskellDepends = [ base doctest ]; description = "See readme.md"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "numhask-prelude" = callPackage @@ -203640,6 +214345,8 @@ self: { testHaskellDepends = [ doctest ]; description = "A numeric prelude"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "numhask-range" = callPackage @@ -203660,6 +214367,7 @@ self: { ]; description = "Numbers that are range representations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "numhask-space" = callPackage @@ -203676,6 +214384,8 @@ self: { ]; description = "Numerical spaces"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "numhask-test" = callPackage @@ -203692,6 +214402,7 @@ self: { testHaskellDepends = [ base numhask-prelude QuickCheck tasty ]; description = "Laws and tests for numhask"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "nums" = callPackage @@ -203714,6 +214425,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Type-level (low cardinality) integers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "numtype-dk" = callPackage @@ -203736,6 +214449,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Type-level (low cardinality) integers, implemented using type families"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nurbs" = callPackage @@ -203814,8 +214529,10 @@ self: { testToolDepends = [ hspec-discover ]; description = "Generate nix sources expr for the latest version of packages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "nvfetcher"; maintainers = [ lib.maintainers.berberman ]; + broken = true; }) {}; "nvim-hs" = callPackage @@ -203924,6 +214641,7 @@ self: { executableHaskellDepends = [ base bytestring mtl ncurses text ]; description = "Bored? Nyan cat!"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "nyan"; }) {}; @@ -203997,6 +214715,8 @@ self: { ]; description = "Client for the Nylas API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "nymphaea" = callPackage @@ -204015,6 +214735,7 @@ self: { ]; description = "An interactive GUI for manipulating L-systems"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "nymphaea"; }) {}; @@ -204042,6 +214763,7 @@ self: { ]; description = "A bullet-hell game made with SDL2"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "app"; }) {}; @@ -204092,6 +214814,8 @@ self: { ]; description = "Client to the OANDA REST API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "oasis-xrd" = callPackage @@ -204114,6 +214838,8 @@ self: { ]; description = "Extensible Resource Descriptor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "oath" = callPackage @@ -204131,6 +214857,7 @@ self: { benchmarkHaskellDepends = [ async base streamly tasty-bench ]; description = "Composable concurrent computation done right"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "oauth10a" = callPackage @@ -204175,6 +214902,7 @@ self: { ]; description = "OAuth2 jwt-bearer client flow as per rfc7523"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "oauthenticated" = callPackage @@ -204200,6 +214928,8 @@ self: { ]; description = "Simple OAuth for http-client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "obd" = callPackage @@ -204224,6 +214954,7 @@ self: { testHaskellDepends = [ base ]; description = "Communicate to OBD interfaces over ELM327"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "obdd" = callPackage @@ -204240,6 +214971,7 @@ self: { testHaskellDepends = [ array base containers text ]; description = "Ordered Reduced Binary Decision Diagrams"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "oberon0" = callPackage @@ -204259,6 +214991,7 @@ self: { doHaddock = false; description = "Oberon0 Compiler"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "obj" = callPackage @@ -204278,6 +215011,7 @@ self: { ]; description = "Reads and writes obj models"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "objectid" = callPackage @@ -204298,6 +215032,7 @@ self: { ]; description = "Rather unique identifier for things that need to be stored"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "objective" = callPackage @@ -204313,6 +215048,7 @@ self: { ]; description = "Composable objects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "oblivious-transfer" = callPackage @@ -204385,6 +215121,8 @@ self: { ]; description = "Convert Haskell types in OCaml types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ocap-io" = callPackage @@ -204415,6 +215153,7 @@ self: { ]; description = "Owned channels in the Ownership Monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ochintin-daicho" = callPackage @@ -204431,6 +215170,7 @@ self: { testHaskellDepends = [ base doctest Glob ]; description = "A module to manage payroll books for Japanese companies"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "octane" = callPackage @@ -204455,6 +215195,7 @@ self: { ]; description = "Parse Rocket League replays"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "octane"; }) {}; @@ -204486,6 +215227,7 @@ self: { ]; description = "A tested, minimal wrapper around GitHub's API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "abc"; }) {}; @@ -204507,6 +215249,7 @@ self: { ]; description = "Lisp with more dynamism, more power, more simplicity"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "octi"; }) {}; @@ -204525,6 +215268,7 @@ self: { description = "Oculus Rift ffi providing head tracking data"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libGL; inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXinerama; ovr = null; inherit (pkgs) systemd;}; @@ -204608,6 +215352,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "A full-featured PostgreSQL-backed job queue (with an admin UI)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "oden-go-packages" = callPackage @@ -204623,6 +215368,8 @@ self: { ]; description = "Provides Go package metadata"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "odpic-raw" = callPackage @@ -204681,6 +215428,8 @@ self: { ]; description = "Interface for Online Encyclopedia of Integer Sequences (OEIS)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "off-simple" = callPackage @@ -204692,6 +215441,7 @@ self: { libraryHaskellDepends = [ base parsec3 vector ]; description = "A parser for simplified-syntax OFF files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ofx" = callPackage @@ -204724,6 +215474,7 @@ self: { ]; description = "Ogma: Helper tool to interoperate between Copilot and other languages"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "ogma"; }) {}; @@ -204750,6 +215501,7 @@ self: { ]; description = "Ogma: Helper tool to interoperate between Copilot and other languages"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "ogma-extra" = callPackage @@ -204785,6 +215537,8 @@ self: { ]; description = "Ogma: Runtime Monitor translator: C Language Frontend"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ogma-language-cocospec" = callPackage @@ -204802,6 +215556,8 @@ self: { ]; description = "Ogma: Runtime Monitor translator: CoCoSpec Language Frontend"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ogma-language-copilot" = callPackage @@ -204833,6 +215589,7 @@ self: { ]; description = "Ogma: Runtime Monitor translator: FRET Component Specification Frontend"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "ogma-language-fret-reqs" = callPackage @@ -204853,6 +215610,7 @@ self: { ]; description = "Ogma: Runtime Monitor translator: FRET Component Requirement DB Frontend"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "ogma-language-smv" = callPackage @@ -204870,6 +215628,8 @@ self: { ]; description = "Ogma: Runtime Monitor translator: SMV Language Frontend"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ogmarkup" = callPackage @@ -204886,6 +215646,8 @@ self: { ]; description = "A lightweight markup language for story writers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ohloh-hs" = callPackage @@ -204909,7 +215671,9 @@ self: { ]; description = "Interface to the Ohloh API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "cmdoh"; + broken = true; }) {}; "oi" = callPackage @@ -204926,6 +215690,8 @@ self: { executableHaskellDepends = [ base directory filepath parallel ]; description = "Library for purely functional lazy interactions with the outer world"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "oidc-client" = callPackage @@ -204963,6 +215729,7 @@ self: { librarySystemDepends = [ OIS ]; description = "wrapper for OIS input manager for use with hogre"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {OIS = null;}; "okapi" = callPackage @@ -204987,6 +215754,8 @@ self: { ]; description = "A microframework based on monadic parsing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "old-locale" = callPackage @@ -205024,6 +215793,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Basic versioning library"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "olwrapper" = callPackage @@ -205049,6 +215820,7 @@ self: { ]; description = "An OpenLayers JavaScript Wrapper and Webframework with snaplet-fay"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "olwrapper"; }) {}; @@ -205061,6 +215833,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Actor pattern utilities"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "om-doh" = callPackage @@ -205077,6 +215851,8 @@ self: { ]; description = "om-doh"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "om-elm" = callPackage @@ -205094,6 +215870,8 @@ self: { ]; description = "Haskell utilities for building embedded Elm programs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "om-fail" = callPackage @@ -205108,6 +215886,8 @@ self: { ]; description = "Monad transformer providing MonadFail"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "om-fork" = callPackage @@ -205145,6 +215925,8 @@ self: { ]; description = "Http utilities"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "om-http-logging" = callPackage @@ -205160,6 +215942,8 @@ self: { ]; description = "om-http-logging"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "om-kubernetes" = callPackage @@ -205179,6 +215963,7 @@ self: { ]; description = "om-kubernetes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "om-legion" = callPackage @@ -205212,6 +215997,7 @@ self: { ]; description = "Legion Framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "om-logging" = callPackage @@ -205228,6 +216014,8 @@ self: { ]; description = "Opinionated logging utilities"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "om-plugin-imports" = callPackage @@ -205278,6 +216066,8 @@ self: { ]; description = "Socket utilities"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "om-time" = callPackage @@ -205308,7 +216098,9 @@ self: { ]; description = "A simple tool to generate OMakefile for latex files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "omaketex"; + broken = true; }) {}; "ombra" = callPackage @@ -205328,6 +216120,8 @@ self: { ]; description = "Render engine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "omega" = callPackage @@ -205346,7 +216140,9 @@ self: { ]; description = "A purely functional programming language and a proof system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "omega"; + broken = true; }) {}; "omnicodec" = callPackage @@ -205391,7 +216187,9 @@ self: { ]; description = "A pretty-printer wrapper to faciliate ease of formatting during development"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "omnifmt"; + broken = true; }) {}; "on-a-horse" = callPackage @@ -205410,6 +216208,8 @@ self: { ]; description = "\"Haskell on a Horse\" - A combinatorial web framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "on-demand-ssh-tunnel" = callPackage @@ -205430,7 +216230,9 @@ self: { ]; description = "Program that sends traffic through SSH tunnels on-demand"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "on-demand-ssh-tunnel"; + broken = true; }) {}; "onama" = callPackage @@ -205442,6 +216244,8 @@ self: { libraryHaskellDepends = [ base containers parsec tagsoup ]; description = "HTML-parsing primitives for Parsec"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "once" = callPackage @@ -205544,6 +216348,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A never-empty list type"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "online" = callPackage @@ -205564,6 +216370,8 @@ self: { testHaskellDepends = [ base doctest numhask ]; description = "See readme.md"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "online-csv" = callPackage @@ -205582,6 +216390,7 @@ self: { testHaskellDepends = [ base doctest numhask-prelude ]; description = "See readme.md"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "only" = callPackage @@ -205607,6 +216416,8 @@ self: { libraryHaskellDepends = [ base ]; description = "partition lenses"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "onu-course" = callPackage @@ -205618,6 +216429,8 @@ self: { libraryHaskellDepends = [ base smallcheck ]; description = "Code for the Haskell course taught at the Odessa National University in 2012"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "oo-prototypes" = callPackage @@ -205679,6 +216492,8 @@ self: { testHaskellDepends = [ base containers doctest ]; description = "Common operators encouraging large-scale easy reading"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "opaleye" = callPackage @@ -205760,6 +216575,8 @@ self: { ]; description = "Opaleye wrapped up in classy MTL attire"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "opaleye-sqlite" = callPackage @@ -205784,6 +216601,8 @@ self: { ]; description = "An SQL-generating DSL targeting SQLite"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "opaleye-trans" = callPackage @@ -205805,6 +216624,8 @@ self: { ]; description = "A monad transformer for Opaleye"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "opc-xml-da-client" = callPackage @@ -205836,6 +216657,7 @@ self: { ]; description = "OPC XML-DA Client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "open-adt" = callPackage @@ -205851,6 +216673,8 @@ self: { ]; description = "Open algebraic data types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "open-adt-tutorial" = callPackage @@ -205870,6 +216694,7 @@ self: { executableHaskellDepends = [ base ]; description = "Open algebraic data type examples"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "open-adt-tutorial"; }) {}; @@ -205899,7 +216724,9 @@ self: { executableHaskellDepends = [ base basic-prelude text turtle ]; description = "Open haddock HTML documentation"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "open-haddock"; + broken = true; }) {}; "open-pandoc" = callPackage @@ -205922,6 +216749,8 @@ self: { ]; description = "Conversion between markup formats"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "open-signals" = callPackage @@ -205934,6 +216763,8 @@ self: { testHaskellDepends = [ base ]; description = "A mechanism similar to checked exceptions that integrates with MTL and transformer stacks"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "open-symbology" = callPackage @@ -205961,6 +216792,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Open type representations and dynamic types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "open-union" = callPackage @@ -206018,6 +216850,8 @@ self: { ]; description = "Unofficial OpenAI client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "openai-servant" = callPackage @@ -206075,6 +216909,8 @@ self: { ]; description = "Auto-generated openapi-petstore API Client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "openapi-typed" = callPackage @@ -206094,6 +216930,8 @@ self: { ]; description = "Types for OpenAPI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "openapi3" = callPackage @@ -206131,7 +216969,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "OpenAPI 3.0 data model"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "openapi3-code-generator" = callPackage @@ -206171,7 +217011,9 @@ self: { ]; description = "OpenAPI3 Haskell Client Code Generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "openapi3-code-generator-exe"; + broken = true; }) {}; "opencc" = callPackage @@ -206186,6 +217028,8 @@ self: { testHaskellDepends = [ base bytestring mtl text transformers ]; description = "OpenCC bindings"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) opencc;}; "opench-meteo" = callPackage @@ -206197,6 +217041,8 @@ self: { libraryHaskellDepends = [ aeson base data-default text time ]; description = "A Haskell implementation of the Swiss Meteo Net data API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "opencog-atomspace" = callPackage @@ -206209,6 +217055,8 @@ self: { librarySystemDepends = [ atomspace-cwrapper ]; description = "Haskell Bindings for the AtomSpace"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {atomspace-cwrapper = null;}; "opencv" = callPackage @@ -206240,6 +217088,7 @@ self: { hardeningDisable = [ "bindnow" ]; description = "Haskell binding to OpenCV-3.x"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) opencv3;}; "opencv-extra" = callPackage @@ -206264,6 +217113,7 @@ self: { ]; description = "Haskell binding to OpenCV-3.x extra modules"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "opencv-raw" = callPackage @@ -206276,6 +217126,8 @@ self: { libraryPkgconfigDepends = [ opencv ]; description = "Raw Haskell bindings to OpenCV >= 2.0"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) opencv;}; "opendatatable" = callPackage @@ -206287,6 +217139,8 @@ self: { libraryHaskellDepends = [ base hxt template-haskell th-lift ]; description = "A library for working with Open Data Tables"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "openexchangerates" = callPackage @@ -206302,6 +217156,8 @@ self: { ]; description = "Fetch exchange rates from OpenExchangeRates.org"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "openexr-write" = callPackage @@ -206335,6 +217191,8 @@ self: { ]; description = "OpenFlow"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "opengl-dlp-stereo" = callPackage @@ -206393,6 +217251,8 @@ self: { testHaskellDepends = [ base ]; description = "Functional interface for OpenGL 4.1+ and OpenGL ES 2.0+"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {EGL = null; GLESv2 = null;}; "openid" = callPackage @@ -206437,6 +217297,8 @@ self: { ]; description = "An OpenID Connect library that does all the heavy lifting for you"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "openpgp" = callPackage @@ -206460,6 +217322,8 @@ self: { ]; description = "Implementation of the OpenPGP message format"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "openpgp-Crypto" = callPackage @@ -206481,6 +217345,7 @@ self: { ]; description = "Implementation of cryptography for use with OpenPGP using the Crypto library"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "openpgp-asciiarmor" = callPackage @@ -206528,6 +217393,7 @@ self: { ]; description = "Implement cryptography for OpenPGP using crypto-api compatible libraries"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "opensoundcontrol-ht" = callPackage @@ -206543,6 +217409,8 @@ self: { ]; description = "Haskell OpenSoundControl utilities"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "opensource" = callPackage @@ -206584,6 +217452,7 @@ self: { ]; description = "Fetch OpenSSH keys from a GitHub team"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "openssh-github-keys"; }) {}; @@ -206601,6 +217470,8 @@ self: { testHaskellDepends = [ base cereal hedgehog time ]; description = "Haskell implementation of openssh protocol primitives"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "openssl-createkey" = callPackage @@ -206683,6 +217554,8 @@ self: { testToolDepends = [ tasty-discover ]; benchmarkHaskellDepends = [ base opentelemetry tasty-bench ]; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "opentelemetry-http-client" = callPackage @@ -206696,6 +217569,8 @@ self: { base http-client http-types opentelemetry text ]; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "opentelemetry-lightstep" = callPackage @@ -206722,6 +217597,7 @@ self: { splitmix text typed-process unordered-containers ]; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "eventlog-to-lightstep"; }) {}; @@ -206803,7 +217679,9 @@ self: { ]; description = "Unicode characters"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "opentheory-char-test"; + broken = true; }) {}; "opentheory-divides" = callPackage @@ -206969,6 +217847,7 @@ self: { ]; description = "An OpenTok SDK for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "opentracing" = callPackage @@ -206989,6 +217868,8 @@ self: { ]; description = "OpenTracing for Haskell"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "opentracing-http-client" = callPackage @@ -207002,6 +217883,7 @@ self: { ]; description = "OpenTracing instrumentation of http-client"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "opentracing-jaeger" = callPackage @@ -207021,6 +217903,7 @@ self: { ]; description = "Jaeger backend for OpenTracing"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "opentracing-wai" = callPackage @@ -207032,6 +217915,7 @@ self: { libraryHaskellDepends = [ base lens opentracing text wai ]; description = "Middleware adding OpenTracing tracing for WAI applications"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "opentracing-zipkin-common" = callPackage @@ -207043,6 +217927,7 @@ self: { libraryHaskellDepends = [ aeson base opentracing text ]; description = "Zipkin OpenTracing Backend Commons"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "opentracing-zipkin-v1" = callPackage @@ -207062,6 +217947,7 @@ self: { ]; description = "Zipkin V1 backend for OpenTracing"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "opentracing-zipkin-v2" = callPackage @@ -207079,6 +217965,7 @@ self: { ]; description = "Zipkin V2 backend for OpenTracing"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "opentype" = callPackage @@ -207096,6 +217983,8 @@ self: { ]; description = "Opentype loading and writing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "openweathermap" = callPackage @@ -207135,6 +218024,8 @@ self: { testHaskellDepends = [ base doctest filemanip hspec QuickCheck ]; description = "Simple project template from stack"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "operational" = callPackage @@ -207190,6 +218081,8 @@ self: { ]; description = "Interpretation functions and simple instruction sets for operational"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "oplang" = callPackage @@ -207209,7 +218102,9 @@ self: { ]; description = "Stack-based esoteric programming language"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "oplang"; + broken = true; }) {}; "opml" = callPackage @@ -207267,7 +218162,9 @@ self: { ]; description = "Open files or URLs using associated programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "opn"; + broken = true; }) {}; "optics" = callPackage @@ -207402,6 +218299,8 @@ self: { testHaskellDepends = [ attoparsec-data rerebase ]; description = "Simple command line interface arguments parser"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "optima-for-hasql" = callPackage @@ -207417,6 +218316,7 @@ self: { ]; description = "Command-line arguments parsing for Hasql"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "optimal-blocks" = callPackage @@ -207441,6 +218341,7 @@ self: { ]; description = "Optimal Block boundary determination for rsync-like behaviours"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "chunk"; }) {}; @@ -207457,6 +218358,8 @@ self: { ]; description = "Numerical optimization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "optimusprime" = callPackage @@ -207475,6 +218378,7 @@ self: { ]; description = "A supercompiler for f-lite"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "optimusprime"; }) {}; @@ -207501,6 +218405,8 @@ self: { ]; description = "Using type-classes for optional function arguments"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "optional-args" = callPackage @@ -207557,6 +218463,8 @@ self: { testHaskellDepends = [ base chell options time ]; description = "Command-line option types for dates and times"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "optparse-applicative_0_15_1_0" = callPackage @@ -207641,6 +218549,8 @@ self: { testHaskellDepends = [ attoparsec-data rerebase ]; description = "Simple command line interface arguments parser"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "optparse-declarative" = callPackage @@ -207666,6 +218576,7 @@ self: { ]; description = "An enum-text based toolkit for optparse-applicative"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "optparse-generic" = callPackage @@ -207721,6 +218632,8 @@ self: { libraryHaskellDepends = [ base optparse-applicative ]; description = "Helper functions for optparse-applicative"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "optparse-simple" = callPackage @@ -207778,6 +218691,8 @@ self: { ]; description = "Command line option parsing library with a twice applicative interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "opusfile" = callPackage @@ -207831,7 +218746,9 @@ self: { ]; description = "Orchestration-style co-ordination EDSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "orc"; + broken = true; }) {}; "orchestrate" = callPackage @@ -207855,6 +218772,8 @@ self: { ]; description = "An API client for http://orchestrate.io/."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "orchid" = callPackage @@ -207875,6 +218794,7 @@ self: { ]; description = "Haskell Wiki Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "orchid-demo" = callPackage @@ -207894,6 +218814,7 @@ self: { ]; description = "Haskell Wiki Demo"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "orchid-demo"; }) {}; @@ -207922,6 +218843,7 @@ self: { ]; description = "Algorithms for the order maintenance problem with a safe interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "order-statistic-tree" = callPackage @@ -207954,6 +218876,8 @@ self: { ]; description = "L-Estimators for robust statistics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ordered" = callPackage @@ -207967,6 +218891,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A definition of Posets"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ordered-containers" = callPackage @@ -208046,6 +218972,8 @@ self: { testHaskellDepends = [ base directory process split ]; description = "Push-pull implementation of discrete-time FRP"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "oref" = callPackage @@ -208060,6 +218988,8 @@ self: { testHaskellDepends = [ base containers either mtl transformers ]; description = "Owned references in the Ownership Monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "org-mode" = callPackage @@ -208115,6 +219045,8 @@ self: { ]; description = "Parser for Org Mode documents"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "org2anki" = callPackage @@ -208142,7 +219074,9 @@ self: { executableHaskellDepends = [ attoparsec base text ]; description = "Organize scala imports"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "organize-imports"; + broken = true; }) {}; "orgmode" = callPackage @@ -208162,6 +219096,8 @@ self: { ]; description = "Org Mode library for haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "orgmode-parse" = callPackage @@ -208184,6 +219120,8 @@ self: { ]; description = "A collection of Attoparsec combinators for parsing org-mode flavored documents"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "orgstat" = callPackage @@ -208218,6 +219156,7 @@ self: { ]; description = "Statistics visualizer for org-mode"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "origami" = callPackage @@ -208236,6 +219175,8 @@ self: { ]; description = "An un-SYB framework for transforming heterogenous data through folds"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "orion-hs" = callPackage @@ -208255,6 +219196,8 @@ self: { unordered-containers word8 wreq ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "orizentic" = callPackage @@ -208276,7 +219219,9 @@ self: { testHaskellDepends = [ base hspec jwt mtl time ]; description = "Token-based authentication and authorization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "orizentic"; + broken = true; }) {}; "ormolu_0_5_0_1" = callPackage @@ -208470,6 +219415,8 @@ self: { ]; description = "Auto-generated ory-hydra API Client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ory-kratos" = callPackage @@ -208490,6 +219437,8 @@ self: { ]; description = "API bindings for Ory Kratos"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "os-release" = callPackage @@ -208525,6 +219474,8 @@ self: { ]; description = "A library to handle messages in the OSC protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "oscpacking" = callPackage @@ -208572,7 +219523,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "An insertion-order-preserving set"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "oset-app"; + broken = true; }) {}; "osm-conduit" = callPackage @@ -208592,6 +219545,8 @@ self: { ]; description = "Parse and operate on OSM data in efficient way"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "osm-download" = callPackage @@ -208613,6 +219568,7 @@ self: { ]; description = "Download Open Street Map tiles"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "oso2pdf" = callPackage @@ -208631,6 +219587,8 @@ self: { ]; description = "Better conversion of Oxford Scholarship Online material to PDF"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "osx-ar" = callPackage @@ -208643,6 +219601,8 @@ self: { libraryHaskellDepends = [ base binary bytestring containers ]; description = "Parser for OS X static archive format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ot" = callPackage @@ -208663,6 +219623,8 @@ self: { ]; description = "Real-time collaborative editing with Operational Transformation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "otp-authenticator" = callPackage @@ -208688,6 +219650,7 @@ self: { ]; description = "OTP Authenticator (a la google) command line client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "otp-auth"; }) {}; @@ -208706,7 +219669,9 @@ self: { ]; description = "Pretty-printer for Ott parse trees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ottparse-pretty"; + broken = true; }) {}; "outsort" = callPackage @@ -208731,6 +219696,7 @@ self: { ]; description = "External sorting package based on Conduit"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "SortLines"; }) {}; @@ -208755,6 +219721,7 @@ self: { ]; description = "A purely functional E-Graph library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "overhang" = callPackage @@ -208781,6 +219748,7 @@ self: { ]; description = "Finite overloading"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "overloaded" = callPackage @@ -208809,6 +219777,8 @@ self: { doHaddock = false; description = "Overloaded pragmas as a plugin"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "overloaded-records" = callPackage @@ -208830,6 +219800,8 @@ self: { ]; description = "Overloaded Records based on current GHC proposal"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "overture" = callPackage @@ -208843,6 +219815,8 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "An alternative to some of the Prelude"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "owoify-hs" = callPackage @@ -208858,6 +219832,8 @@ self: { ]; description = "Turn any English text into nonsensical babyspeaks"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pa-error-tree" = callPackage @@ -208980,6 +219956,8 @@ self: { ]; description = "Bidirectional fast ByteString packer/unpacker"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "package-description-remote" = callPackage @@ -208996,6 +219974,8 @@ self: { testHaskellDepends = [ base ]; description = "Fetches a 'GenericPackageDescription' from Hackage"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "package-o-tron" = callPackage @@ -209014,6 +219994,7 @@ self: { ]; description = "Utilities for working with cabal packages and your package database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "package-version" = callPackage @@ -209037,6 +220018,8 @@ self: { ]; description = "A package for retrieving a package's version number"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "package-vt" = callPackage @@ -209052,7 +220035,9 @@ self: { ]; description = "Haskell Package Versioning Tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "package-vt"; + broken = true; }) {}; "packcheck" = callPackage @@ -209090,7 +220075,9 @@ self: { ]; description = "Check your cabal packages for lagging dependencies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "packdeps"; + broken = true; }) {}; "packed" = callPackage @@ -209107,6 +220094,8 @@ self: { ]; benchmarkHaskellDepends = [ base gauge ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "packed-dawg" = callPackage @@ -209134,6 +220123,8 @@ self: { ]; description = "Generation and traversal of highly compressed directed acyclic word graphs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "packed-multikey-map" = callPackage @@ -209152,6 +220143,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; description = "Efficient “spreadsheet table” like maps with multiple marginals"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "packedstring" = callPackage @@ -209165,6 +220158,8 @@ self: { libraryHaskellDepends = [ array base ]; description = "(Deprecated) Packed Strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "packer" = callPackage @@ -209199,6 +220194,8 @@ self: { ]; description = "MessagePack Serialization an Deserialization for Packer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "packman" = callPackage @@ -209218,6 +220215,8 @@ self: { ]; description = "Serialization library for GHC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "packstream" = callPackage @@ -209237,6 +220236,8 @@ self: { ]; description = "PackStream converter for Neo4j BOLT protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "packunused" = callPackage @@ -209257,7 +220258,9 @@ self: { ]; description = "Tool for detecting redundant Cabal package dependencies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "packunused"; + broken = true; }) {}; "pacman-memcache" = callPackage @@ -209271,7 +220274,9 @@ self: { executableHaskellDepends = [ base deepseq directory-tree ]; description = "Read whole Pacman database which pushes it into the memory cache"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pacman-memcache"; + broken = true; }) {}; "pact-time" = callPackage @@ -209305,6 +220310,7 @@ self: { ]; description = "Controlling padKONTROL native mode"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "paddle" = callPackage @@ -209344,6 +220350,8 @@ self: { ]; description = "Fast, type-safe p-adic arithmetic"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pads-haskell" = callPackage @@ -209371,6 +220379,8 @@ self: { ]; description = "PADS data description language for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pagarme" = callPackage @@ -209389,7 +220399,9 @@ self: { executableHaskellDepends = [ base text wreq ]; description = "Pagarme API wrapper"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "testbin"; + broken = true; }) {}; "pager" = callPackage @@ -209435,6 +220447,7 @@ self: { ]; description = "Client library for PagerDuty Integration and REST APIs"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "pagerduty-hs" = callPackage @@ -209452,6 +220465,8 @@ self: { ]; description = "An interface to the PagerDuty API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pagination" = callPackage @@ -209510,6 +220525,8 @@ self: { ]; description = "Receive hooks from pagure and do things with them"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "paint" = callPackage @@ -209550,6 +220567,7 @@ self: { ]; description = "Bilinear pairings"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "palette" = callPackage @@ -209610,6 +220628,8 @@ self: { benchmarkHaskellDepends = [ base byteslice gauge primitive ]; description = "Parse syslog traffic from PAN-OS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "panda" = callPackage @@ -209630,6 +220650,7 @@ self: { ]; description = "A simple static blog engine"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "pandoc" = callPackage @@ -209778,7 +220799,9 @@ self: { doCheck = false; description = "Supports using pandoc with citeproc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-citeproc"; + broken = true; }) {}; "pandoc-citeproc-preamble" = callPackage @@ -209831,7 +220854,9 @@ self: { executableHaskellDepends = [ base pandoc-types ]; description = "A pandoc filter that provides a Markdown extension for columns"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-columns"; + broken = true; }) {}; "pandoc-crossref" = callPackage @@ -209885,7 +220910,9 @@ self: { executableHaskellDepends = [ base csv pandoc pandoc-types ]; description = "Convert CSV to Pandoc Table Markdown"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-csv2table"; + broken = true; }) {}; "pandoc-dhall-decoder" = callPackage @@ -209942,7 +220969,9 @@ self: { ]; description = "A Pandoc filter to use graphviz"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-filter-graphviz"; + broken = true; }) {}; "pandoc-filter-indent" = callPackage @@ -209973,7 +221002,9 @@ self: { ]; description = "Pandoc filter formatting Haskell code fragments using GHC lexer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-filter-indent"; + broken = true; }) {}; "pandoc-highlighting-extensions" = callPackage @@ -209990,6 +221021,7 @@ self: { ]; description = "Syntax highlighting customization for Pandoc"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "pandoc-include" = callPackage @@ -210010,7 +221042,9 @@ self: { doHaddock = false; description = "Include other Markdown files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-include"; + broken = true; }) {}; "pandoc-include-code" = callPackage @@ -210054,7 +221088,9 @@ self: { executableHaskellDepends = [ base directory pandoc-types ]; description = "Pandoc filter to include files, with image path and heading level adjustment"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-include-plus"; + broken = true; }) {}; "pandoc-japanese-filters" = callPackage @@ -210074,6 +221110,7 @@ self: { ]; description = "Japanese-specific markup filters for pandoc"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "pandoc-lens" = callPackage @@ -210085,6 +221122,8 @@ self: { libraryHaskellDepends = [ base containers lens pandoc-types text ]; description = "Lenses for Pandoc documents"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pandoc-linear-table" = callPackage @@ -210099,7 +221138,9 @@ self: { executableHaskellDepends = [ base pandoc-types ]; description = "A pandoc filter that provides a Markdown extension to wrap text in table cells"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-linear-table"; + broken = true; }) {}; "pandoc-link-context" = callPackage @@ -210113,6 +221154,8 @@ self: { ]; description = "Extract \"contextual links\" from Pandoc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pandoc-logic-proof" = callPackage @@ -210127,7 +221170,9 @@ self: { executableHaskellDepends = [ base pandoc-types ]; description = "A pandoc filter that provides a Markdown extension for logic proofs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-logic-proof"; + broken = true; }) {}; "pandoc-lua-engine" = callPackage @@ -210204,7 +221249,9 @@ self: { ]; description = "Pandoc-filter to evaluate `code` section in markdown and auto-embed output"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-markdown-ghci-filter-exe"; + broken = true; }) {}; "pandoc-placetable" = callPackage @@ -210226,7 +221273,9 @@ self: { ]; description = "Pandoc filter to include CSV files"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-placetable"; + broken = true; }) {}; "pandoc-plantuml-diagrams" = callPackage @@ -210250,7 +221299,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Render and insert PlantUML diagrams with Pandoc"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-plantuml-diagrams"; + broken = true; }) {}; "pandoc-plot" = callPackage @@ -210312,7 +221363,9 @@ self: { ]; description = "A Pandoc filter to include figures generated from Python code blocks"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-pyplot"; + broken = true; }) {}; "pandoc-select-code" = callPackage @@ -210326,7 +221379,9 @@ self: { executableHaskellDepends = [ base pandoc pandoc-types ]; description = "Pandoc filter to extract only the code blocks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-select-code"; + broken = true; }) {}; "pandoc-server" = callPackage @@ -210482,7 +221537,9 @@ self: { executableHaskellDepends = [ base pandoc ]; description = "Literate Haskell support for GitHub's Markdown flavor"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "pandoc-unlit"; + broken = true; }) {}; "pandoc-utils" = callPackage @@ -210500,6 +221557,8 @@ self: { ]; description = "Utility functions to work with Pandoc in Haskell applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pandoc-vimhl" = callPackage @@ -210528,6 +221587,8 @@ self: { sha256 = "05x4ihcs6j380r9g5rh6afy9zadfnrlg9si8ia4aaa7kh2jc20p9"; description = "A box of patterns and paradigms"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pandora-io" = callPackage @@ -210539,6 +221600,7 @@ self: { libraryHaskellDepends = [ ghc-prim pandora ]; description = "..."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "panfiguration" = callPackage @@ -210556,6 +221618,7 @@ self: { testHaskellDepends = [ barbies-th base ]; description = "Merge environment variables and command line options generically"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "pang-a-lambda" = callPackage @@ -210575,7 +221638,9 @@ self: { ]; description = "A super-pang clone"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "pang-a-lambda"; + broken = true; }) {}; "pango" = callPackage @@ -210612,6 +221677,8 @@ self: { testHaskellDepends = [ base bytestring containers HUnit ]; description = "A set of parsers for graph languages and conversions to graph libaries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "panhandle" = callPackage @@ -210668,7 +221735,9 @@ self: { ]; description = "Pandoc filter to execute code blocks"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "panpipe"; + broken = true; }) {}; "pansite" = callPackage @@ -210697,7 +221766,9 @@ self: { testHaskellDepends = [ base doctest Glob hspec QuickCheck ]; description = "Pansite: a simple web site management tool"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "pansite"; + broken = true; }) {}; "pantry_0_5_2_1" = callPackage @@ -210888,6 +221959,8 @@ self: { ]; description = "Content addressable Haskell package management"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "papa" = callPackage @@ -210911,6 +221984,7 @@ self: { ]; description = "Reasonable default import"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "papa-base" = callPackage @@ -210924,6 +221998,7 @@ self: { ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "papa-base-export" = callPackage @@ -210935,6 +222010,8 @@ self: { libraryHaskellDepends = [ base semigroups ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "papa-base-implement" = callPackage @@ -210946,6 +222023,7 @@ self: { libraryHaskellDepends = [ base papa-base-export semigroups ]; description = "Useful base functions reimplemented"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "papa-bifunctors" = callPackage @@ -211005,6 +222083,7 @@ self: { ]; description = "Reasonable default import"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "papa-implement" = callPackage @@ -211026,6 +222105,7 @@ self: { ]; description = "Reasonable default import"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "papa-include" = callPackage @@ -211042,6 +222122,8 @@ self: { ]; description = "Third party libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "papa-lens" = callPackage @@ -211055,6 +222137,7 @@ self: { ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "papa-lens-export" = callPackage @@ -211066,6 +222149,8 @@ self: { libraryHaskellDepends = [ base lens ]; description = "export useful functions from `lens`"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "papa-lens-implement" = callPackage @@ -211077,6 +222162,8 @@ self: { libraryHaskellDepends = [ base lens ]; description = "useful `lens` functions reimplemented"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "papa-prelude" = callPackage @@ -211093,6 +222180,8 @@ self: { ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "papa-prelude-core" = callPackage @@ -211109,6 +222198,8 @@ self: { ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "papa-prelude-lens" = callPackage @@ -211125,6 +222216,8 @@ self: { ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "papa-prelude-semigroupoids" = callPackage @@ -211141,6 +222234,8 @@ self: { ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "papa-prelude-semigroups" = callPackage @@ -211157,6 +222252,8 @@ self: { ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "papa-semigroupoids" = callPackage @@ -211172,6 +222269,7 @@ self: { ]; description = "Prelude with only useful functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "papa-semigroupoids-export" = callPackage @@ -211194,6 +222292,8 @@ self: { libraryHaskellDepends = [ base semigroupoids semigroups ]; description = "useful `semigroupoids` functions reimplemented"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "papa-x" = callPackage @@ -211240,7 +222340,9 @@ self: { executableHaskellDepends = [ base bytestring containers ]; description = "A passphrase generator"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "paphragen"; + broken = true; }) {}; "papillon" = callPackage @@ -211261,7 +222363,9 @@ self: { ]; description = "packrat parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "papillon"; + broken = true; }) {}; "pappy" = callPackage @@ -211275,7 +222379,9 @@ self: { executableHaskellDepends = [ base ]; description = "Packrat parsing; linear-time parsers for grammars in TDPL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pappy"; + broken = true; }) {}; "paprika" = callPackage @@ -211298,6 +222404,7 @@ self: { ]; description = "The Haskell library and examples for the kids programming robot paprika"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "par-dual" = callPackage @@ -211314,6 +222421,7 @@ self: { ]; description = "ParDual class for Parallel <-> Sequential"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "par-traverse" = callPackage @@ -211363,7 +222471,9 @@ self: { executableToolDepends = [ alex ]; description = "Paragon"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "parac"; + broken = true; }) {}; "parallel" = callPackage @@ -211407,6 +222517,8 @@ self: { transformers vector vector-algorithms ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parallel-tree-search" = callPackage @@ -211420,6 +222532,7 @@ self: { libraryHaskellDepends = [ base parallel tree-monad ]; description = "Parallel Tree Search"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "parameterized" = callPackage @@ -211443,6 +222556,8 @@ self: { libraryHaskellDepends = [ base template-haskell type-level ]; description = "Parameterized data library implementing lightweight dependent types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parameterized-utils" = callPackage @@ -211509,7 +222624,9 @@ self: { testHaskellDepends = [ base ]; description = "http proxy server"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "paranoia"; + broken = true; }) {}; "parco" = callPackage @@ -211521,6 +222638,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Generalised parser combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parco-attoparsec" = callPackage @@ -211532,6 +222651,7 @@ self: { libraryHaskellDepends = [ attoparsec base mtl parco ]; description = "Generalised parser combinators - Attoparsec interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "parco-parsec" = callPackage @@ -211543,6 +222663,7 @@ self: { libraryHaskellDepends = [ base mtl parco parsec ]; description = "Generalised parser combinators - Parsec interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "parcom-lib" = callPackage @@ -211558,6 +222679,8 @@ self: { ]; description = "A simple parser-combinator library, a bit like Parsec but without the frills"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parconc-examples" = callPackage @@ -211586,6 +222709,7 @@ self: { executableToolDepends = [ alex happy ]; description = "Examples to accompany the book \"Parallel and Concurrent Programming in Haskell\""; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pareto" = callPackage @@ -211597,6 +222721,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A library for cause-effect relationships"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pareto-front" = callPackage @@ -211632,6 +222758,8 @@ self: { ]; description = "Parser combinators with fast-path and slower fallback for error reporting"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "park-bench" = callPackage @@ -211668,7 +222796,9 @@ self: { ]; description = "Help Manage project specific documentation"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "parochial"; + broken = true; }) {}; "parport" = callPackage @@ -211706,6 +222836,7 @@ self: { ]; description = "Streaming Parquet reader"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "parse" = callPackage @@ -211719,6 +222850,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Simple way to parse strings with Python-like format strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parse-dimacs" = callPackage @@ -211749,6 +222882,8 @@ self: { ]; description = "Parse machine-readable GHC GC stats"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parse-help" = callPackage @@ -211766,6 +222901,7 @@ self: { testHaskellDepends = [ cmdargs ]; description = "generate command line arguments from a --help output"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "parseargs" = callPackage @@ -211876,6 +223012,8 @@ self: { testHaskellDepends = [ base directory doctest filepath ]; description = "Parsing instances for Parsec"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parsec-permutation" = callPackage @@ -211902,7 +223040,9 @@ self: { executableHaskellDepends = [ base containers mtl parsec pretty ]; description = "Pratt Parser combinator for Parsec"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "parsec-pratt-example"; + broken = true; }) {}; "parsec-tagsoup" = callPackage @@ -211958,6 +223098,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Monadic parser combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parsec3" = callPackage @@ -211969,6 +223111,8 @@ self: { libraryHaskellDepends = [ base bytestring mtl text ]; description = "Monadic parser combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parsec3-numbers" = callPackage @@ -212003,6 +223147,8 @@ self: { testHaskellDepends = [ base hspec parsec ]; description = "Adds and Eq instance for Parsec's ParseError if needed"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parsek" = callPackage @@ -212024,6 +223170,8 @@ self: { sha256 = "16sg32qs1kq184wk6d83z20b9firh1kjmysqwd2aqaiyq37zjyyb"; libraryHaskellDepends = [ base mtl parsec ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parser-combinators" = callPackage @@ -212055,6 +223203,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Test suite of parser-combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parser-helper" = callPackage @@ -212070,7 +223220,9 @@ self: { ]; description = "Prints Haskell parse trees in JSON"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "parser-helper"; + broken = true; }) {}; "parser-unbiased-choice-monad-embedding" = callPackage @@ -212087,6 +223239,8 @@ self: { ]; description = "Parsing library with unbiased choice and support for embedding arbitrary monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parser241" = callPackage @@ -212101,6 +223255,8 @@ self: { testHaskellDepends = [ base containers hspec mtl ]; description = "An interface to create production rules using augmented grammars"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parsergen" = callPackage @@ -212122,6 +223278,8 @@ self: { ]; description = "TH parser generator for splitting bytestring into fixed-width fields"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parsers" = callPackage @@ -212158,6 +223316,8 @@ self: { ]; description = "`parsers` instances for Megaparsec"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parsestar" = callPackage @@ -212181,6 +223341,7 @@ self: { ]; description = "NMR-STAR file format parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "parsimony" = callPackage @@ -212192,6 +223353,8 @@ self: { libraryHaskellDepends = [ base bytestring text ]; description = "Monadic parser combinators derived from Parsec"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parsix" = callPackage @@ -212212,6 +223375,8 @@ self: { ]; description = "Parser combinators with slicing, error recovery, and syntax highlighting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parsley" = callPackage @@ -212240,6 +223405,7 @@ self: { benchmarkToolDepends = [ happy ]; description = "A fast parser combinator library backed by Typed Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "parsley-core" = callPackage @@ -212264,6 +223430,8 @@ self: { ]; description = "A fast parser combinator library backed by Typed Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "parsley-garnish" = callPackage @@ -212281,6 +223449,7 @@ self: { ]; description = "A collection of GHC plugins to work with parsley"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "parsnip" = callPackage @@ -212297,6 +223466,8 @@ self: { ]; description = "A fast, minimal parser"; license = "(BSD-2-Clause OR Apache-2.0)"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "partage" = callPackage @@ -212315,6 +223486,7 @@ self: { testHaskellDepends = [ base containers HUnit tasty tasty-hunit ]; description = "Parsing factorized"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "partial" = callPackage @@ -212365,6 +223537,8 @@ self: { ]; description = "Haskell 98 Partial Lenses"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "partial-order" = callPackage @@ -212393,6 +223567,8 @@ self: { libraryHaskellDepends = [ base template-haskell transformers ]; description = "Template haskell utilities for constructing records with default values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "partial-semigroup" = callPackage @@ -212463,7 +223639,9 @@ self: { ]; description = "Inspect, create, and alter MBRs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "partly"; + broken = true; }) {}; "passage" = callPackage @@ -212482,6 +223660,8 @@ self: { ]; description = "Parallel code generation for hierarchical Bayesian modeling"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "passman" = callPackage @@ -212509,7 +223689,9 @@ self: { ]; description = "a simple password manager"; license = lib.licenses.lgpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "passman"; + broken = true; }) {}; "passman-cli" = callPackage @@ -212530,6 +223712,7 @@ self: { ]; description = "Deterministic password generator command line interface"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "passman-cli"; }) {}; @@ -212556,6 +223739,8 @@ self: { doHaddock = false; description = "Deterministic password generator core"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "password" = callPackage @@ -212639,6 +223824,8 @@ self: { libraryHaskellDepends = [ base containers MonadRandom random ]; description = "Password generation/validation library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pasta" = callPackage @@ -212655,6 +223842,8 @@ self: { testHaskellDepends = [ base hspec microlens protolude ]; description = "PostgreSQL Abstract Syntax Tree Assember"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pasta-curves" = callPackage @@ -212682,7 +223871,9 @@ self: { ]; description = "Provides the Pasta curves: Pallas, Vesta and their field elements Fp and Fq"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "pasta-curves"; + broken = true; }) {}; "pastis" = callPackage @@ -212694,6 +223885,8 @@ self: { libraryHaskellDepends = [ base HTTP network ]; description = "Interface to the past.is URL shortening service"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pasty" = callPackage @@ -212707,7 +223900,9 @@ self: { executableHaskellDepends = [ base bytestring mtl ]; description = "A simple command line pasting utility"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "pasty"; + broken = true; }) {}; "patat" = callPackage @@ -212822,6 +224017,8 @@ self: { ]; description = "Patches (diffs) on vectors: composable, mergeable, and invertible"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "path_0_9_0" = callPackage @@ -212928,6 +224125,8 @@ self: { libraryHaskellDepends = [ base formatting path ]; description = "Formatting for path"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "path-io" = callPackage @@ -213054,6 +224253,7 @@ self: { ]; description = "A toy pathfinding library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pathological-bytestrings" = callPackage @@ -213162,7 +224362,9 @@ self: { executableHaskellDepends = [ base HandsomeSoup hxt ]; description = "A webpage scraper for Patreon which dumps a list of patrons to a text file"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "patronscraper"; + broken = true; }) {}; "pattern-arrows" = callPackage @@ -213212,6 +224414,8 @@ self: { ]; description = "Pattern tries"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "patterns" = callPackage @@ -213228,6 +224432,7 @@ self: { ]; description = "Common patterns in message-oriented applications"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "pava" = callPackage @@ -213274,6 +224479,8 @@ self: { testHaskellDepends = [ base hspec unliftio ]; description = "A Haskell wrapper for the Paynow payment gateway"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "paypal-adaptive-hoops" = callPackage @@ -213298,7 +224505,9 @@ self: { ]; description = "Client for a limited part of PayPal's Adaptive Payments API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "paypal-api" = callPackage @@ -213315,6 +224524,8 @@ self: { ]; description = "PayPal API, currently supporting \"ButtonManager\""; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "paypal-rest-client" = callPackage @@ -213331,6 +224542,7 @@ self: { ]; description = "A client to connect to PayPal's REST API (v1)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "pb" = callPackage @@ -213346,7 +224558,9 @@ self: { ]; description = "pastebin command line application"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pb"; + broken = true; }) {}; "pb-next" = callPackage @@ -213366,7 +224580,9 @@ self: { testHaskellDepends = [ base parsec tasty tasty-hunit ]; description = "Utility CLI for working with protobuf files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pbhelp"; + broken = true; }) {}; "pbc4hs" = callPackage @@ -213378,6 +224594,8 @@ self: { libraryHaskellDepends = [ base hslua string-qq ]; description = "pbc for HsLua"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pbkdf" = callPackage @@ -213434,6 +224652,7 @@ self: { ]; description = "Convert a pcap into an enumerator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pcapng" = callPackage @@ -213463,6 +224682,7 @@ self: { text unliftio-core validity ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pcapng-exe"; }) {}; @@ -213488,7 +224708,9 @@ self: { ]; description = "PCD file loader"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pcd2bin"; + broken = true; }) {}; "pcf" = callPackage @@ -213506,6 +224728,7 @@ self: { ]; description = "A one file compiler for PCF"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "pcf-font" = callPackage @@ -213535,6 +224758,8 @@ self: { ]; description = "Template Haskell for embedding text rendered using PCF fonts"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pcg-random" = callPackage @@ -213567,6 +224792,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq random ]; description = "A fast, pseudorandom number generator"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pcre-heavy" = callPackage @@ -213621,6 +224848,8 @@ self: { libraryHaskellDepends = [ base bytestring pcre-light ]; description = "pcre-light extra functionality"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pcre-utils" = callPackage @@ -213697,6 +224926,7 @@ self: { ]; description = "Tool to generate PDF from haskintex templates and YAML input"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pdf-slave"; }) {}; @@ -213749,6 +224979,8 @@ self: { ]; description = "Template format definition for pdf-slave tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pdf-toolbox-content" = callPackage @@ -213836,7 +225068,9 @@ self: { ]; description = "Simple pdf viewer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pdf-toolbox-viewer"; + broken = true; }) {}; "pdf2line" = callPackage @@ -213869,6 +225103,8 @@ self: { ]; description = "Wrapper around the pdfinfo command"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pdfname" = callPackage @@ -213886,6 +225122,7 @@ self: { ]; description = "Name a PDF file using information from the pdfinfo command"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "pdfname"; }) {}; @@ -213902,6 +225139,7 @@ self: { ]; description = "split two-column PDFs, so there is one column per page"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pdfsplit"; }) {}; @@ -213924,7 +225162,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Extracts text from PDF using poppler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pdftotext.hs"; + broken = true; }) {poppler-cpp = null;}; "pdynload" = callPackage @@ -213941,6 +225181,8 @@ self: { ]; description = "pdynload is polymorphic dynamic linking library"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "peakachu" = callPackage @@ -213956,6 +225198,7 @@ self: { ]; description = "Experiemental library for composable interactive programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "peano" = callPackage @@ -214004,6 +225247,7 @@ self: { ]; description = "pec embedded compiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pecoff" = callPackage @@ -214016,6 +225260,8 @@ self: { libraryHaskellDepends = [ base binary bytestring containers ]; description = "Parser for PE/COFF format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pedersen-commitment" = callPackage @@ -214049,6 +225295,8 @@ self: { libraryHaskellDepends = [ array base binary containers ]; description = "A pedestrian implementation of directed acyclic graphs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "peg" = callPackage @@ -214066,7 +225314,9 @@ self: { ]; description = "a lazy non-deterministic concatenative programming language"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "peg"; + broken = true; }) {}; "peggy" = callPackage @@ -214085,6 +225335,8 @@ self: { ]; description = "The Parser Generator for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pell" = callPackage @@ -214102,6 +225354,7 @@ self: { ]; description = "Package to solve the Generalized Pell Equation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "pem" = callPackage @@ -214143,6 +225396,8 @@ self: { ]; description = "Static site generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "penn-treebank" = callPackage @@ -214174,6 +225429,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Parser combinators for trees in the Penn Treebank format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "penny" = callPackage @@ -214202,6 +225459,7 @@ self: { ]; description = "Extensible double-entry accounting system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "penny-bin" = callPackage @@ -214220,6 +225478,7 @@ self: { ]; description = "Deprecated - use penny package instead"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "penny-lib" = callPackage @@ -214241,6 +225500,7 @@ self: { ]; description = "Deprecated - use penny package instead"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "penrose" = callPackage @@ -214276,6 +225536,7 @@ self: { ]; description = "Create beautiful diagrams just by typing mathematical notation in plain text"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "penrose"; }) {}; @@ -214288,6 +225549,7 @@ self: { libraryHaskellDepends = [ base binary bytestring haskell98 ]; description = "A parser for PE object files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "percent-encoder" = callPackage @@ -214307,6 +225569,8 @@ self: { ]; description = "Percent encode/decode ByteStrings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "percent-format" = callPackage @@ -214330,6 +225594,8 @@ self: { libraryHaskellDepends = [ base ]; description = "The perceptron learning algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "perceptual-hash" = callPackage @@ -214357,6 +225623,7 @@ self: { benchmarkToolDepends = [ cpphs ]; description = "Find duplicate images"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "phash"; }) {}; @@ -214386,6 +225653,7 @@ self: { ]; description = "Robust persistence for acyclic immutable data"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "perdure"; }) {}; @@ -214404,6 +225672,8 @@ self: { ]; description = "Database migration support for use in other libraries"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "perf" = callPackage @@ -214427,6 +225697,7 @@ self: { benchmarkHaskellDepends = [ base ]; description = "Low-level run time measurement"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "perf-explore"; }) {}; @@ -214450,6 +225721,7 @@ self: { ]; description = "analysis example using perf"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "perf-examples"; }) {}; @@ -214507,7 +225779,9 @@ self: { ]; description = "Library for performing vector shuffles"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "perfecthash" = callPackage @@ -214531,6 +225805,7 @@ self: { ]; description = "A perfect hashing library for mapping bytestrings to values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "perhaps" = callPackage @@ -214548,6 +225823,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "Perhaps, a monad"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "period" = callPackage @@ -214585,7 +225862,9 @@ self: { testHaskellDepends = [ base cereal hedis hspec text time ]; description = "A reliable at-least-once periodic job scheduler backed by redis"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "periodic-client" = callPackage @@ -214603,6 +225882,7 @@ self: { ]; description = "Periodic task system haskell client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "periodic-client-exe" = callPackage @@ -214627,6 +225907,7 @@ self: { ]; description = "Periodic task system haskell client executables"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "periodic-common" = callPackage @@ -214643,6 +225924,8 @@ self: { ]; description = "Periodic task system common"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "periodic-polynomials" = callPackage @@ -214654,6 +225937,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "A library for working with periodic polynomials (very basic functionality)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "periodic-server" = callPackage @@ -214683,6 +225968,7 @@ self: { ]; description = "Periodic task system haskell server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "periodicd"; }) {}; @@ -214700,6 +225986,7 @@ self: { ]; description = "permutation Applicative and Monad with many mtl instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "permutation" = callPackage @@ -214714,6 +226001,8 @@ self: { libraryHaskellDepends = [ base ghc-prim QuickCheck ]; description = "A library for permutations and combinations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "permutations" = callPackage @@ -214737,6 +226026,7 @@ self: { ]; description = "Permutations of finite sets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "permute" = callPackage @@ -214748,6 +226038,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Generalised permutation parser combinator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "persist" = callPackage @@ -214765,6 +226057,8 @@ self: { ]; description = "Minimal serialization library with focus on performance"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "persist-state" = callPackage @@ -214785,6 +226079,8 @@ self: { description = "Serialization library with state and leb128 encoding"; license = lib.licenses.bsd3; badPlatforms = [ "aarch64-linux" "armv7l-linux" ]; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "persist2er" = callPackage @@ -214800,7 +226096,9 @@ self: { ]; description = "Transforms persist's quasi-quoted syntax into ER format"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "persist2er"; + broken = true; }) {}; "persistable-record" = callPackage @@ -214821,6 +226119,7 @@ self: { testHaskellDepends = [ base quickcheck-simple ]; description = "Binding between SQL database values and haskell records"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "persistable-types-HDBC-pg" = callPackage @@ -214841,6 +226140,7 @@ self: { ]; description = "HDBC and Relational-Record instances of PostgreSQL extended types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "persistent" = callPackage @@ -214908,6 +226208,7 @@ self: { ]; description = "Parses a Persist Model file and produces Audit Models"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "persistent-audit"; }) {}; @@ -214920,6 +226221,8 @@ self: { libraryHaskellDepends = [ base cereal persistent text ]; description = "Helper functions for writing Persistent instances"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "persistent-database-url" = callPackage @@ -214939,6 +226242,8 @@ self: { ]; description = "Parse DATABASE_URL into configuration types for Persistent"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "persistent-discover" = callPackage @@ -214999,6 +226304,8 @@ self: { libraryHaskellDepends = [ array base diffarray ]; description = "Persistent equivalence relations (aka union-find)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "persistent-event-source" = callPackage @@ -215020,6 +226327,7 @@ self: { ]; description = "Persistent based event sourcing"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "persistent-eventsource" = callPackage @@ -215041,6 +226349,7 @@ self: { ]; description = "Persistent based event sourcing"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "persistent-generic" = callPackage @@ -215052,6 +226361,8 @@ self: { libraryHaskellDepends = [ base persistent text ]; description = "Derive Persistent classes generically"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "persistent-hssqlppp" = callPackage @@ -215068,6 +226379,7 @@ self: { ]; description = "Declare Persistent entities using SQL SELECT query syntax"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "persistent-instances-iproute" = callPackage @@ -215122,6 +226434,7 @@ self: { ]; description = "A thread-safe (STM) persistency interface for finite map types"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "persistent-migration" = callPackage @@ -215173,6 +226486,8 @@ self: { ]; description = "Backend for the persistent library using mongoDB"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "persistent-mtl" = callPackage @@ -215203,6 +226518,7 @@ self: { testToolDepends = [ tasty-autocollect ]; description = "Monad transformer for the persistent API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "persistent-mysql" = callPackage @@ -215261,6 +226577,7 @@ self: { ]; description = "A pure haskell backend for the persistent library using MySQL database server"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "persistent-mysql-haskell-example"; }) {}; @@ -215294,6 +226611,7 @@ self: { ]; description = "A pure haskell backend for the persistent library using MySQL database server"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "persistent-mysql-pure-example"; }) {}; @@ -215315,6 +226633,8 @@ self: { ]; description = "Backend for the persistent library using ODBC"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "persistent-pagination" = callPackage @@ -215398,6 +226718,8 @@ self: { ]; description = "Memory-constant streaming of Persistent entities from PostgreSQL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "persistent-protobuf" = callPackage @@ -215414,6 +226736,7 @@ self: { ]; description = "Template-Haskell helpers for integrating protobufs with persistent"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "persistent-qq" = callPackage @@ -215446,6 +226769,8 @@ self: { libraryHaskellDepends = [ base time yesod ]; description = "A library for rate limiting activities with a persistent backend"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "persistent-redis" = callPackage @@ -215506,6 +226831,7 @@ self: { ]; description = "relational-record on persisten backends"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "persistent-spatial" = callPackage @@ -215576,6 +226902,8 @@ self: { testHaskellDepends = [ base hspec stm temporary ]; description = "STM transactions involving persistent storage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "persistent-template" = callPackage @@ -215609,6 +226937,8 @@ self: { ]; description = "Generate classy lens field accessors for persistent models"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "persistent-test" = callPackage @@ -215719,6 +227049,8 @@ self: { ]; description = "Persona (BrowserID) library"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "persona-idp" = callPackage @@ -215740,6 +227072,7 @@ self: { ]; description = "Persona (BrowserID) Identity Provider"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "persona"; }) {}; @@ -215755,7 +227088,9 @@ self: { executableHaskellDepends = [ base process ]; description = "Proof Editor for Sequent Calculus"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "pesca"; + broken = true; }) {}; "peyotls" = callPackage @@ -215782,6 +227117,7 @@ self: { ]; description = "Pretty Easy YOshikuni-made TLS library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "peyotls-codec" = callPackage @@ -215799,6 +227135,7 @@ self: { ]; description = "Codec parts of Pretty Easy YOshikuni-made TLS library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pez" = callPackage @@ -215815,6 +227152,8 @@ self: { ]; description = "A Pretty Extraordinary Zipper library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pg-entity" = callPackage @@ -215842,6 +227181,7 @@ self: { ]; description = "A pleasant PostgreSQL layer"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "pg-extras" = callPackage @@ -215858,6 +227198,8 @@ self: { testHaskellDepends = [ base HUnit text ]; description = "PostgreSQL database performance insights"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pg-harness" = callPackage @@ -215877,7 +227219,9 @@ self: { ]; description = "REST service and library for creating/consuming temporary PostgreSQL databases"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "pg-harness"; + broken = true; }) {}; "pg-harness-client" = callPackage @@ -215908,7 +227252,9 @@ self: { ]; description = "REST service for creating temporary PostgreSQL databases"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "pg-harness"; + broken = true; }) {}; "pg-recorder" = callPackage @@ -215934,7 +227280,9 @@ self: { ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pg-recorder"; + broken = true; }) {}; "pg-store" = callPackage @@ -215958,6 +227306,8 @@ self: { ]; description = "Simple storage interface to PostgreSQL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pg-transact" = callPackage @@ -215982,6 +227332,8 @@ self: { ]; description = "A postgresql-simple transaction monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pgdl" = callPackage @@ -216007,7 +227359,9 @@ self: { ]; description = "browse directory listing webpages and download files from them"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "pgdl"; + broken = true; }) {}; "pgf2" = callPackage @@ -216020,6 +227374,8 @@ self: { librarySystemDepends = [ gu pgf ]; description = "Bindings to the C version of the PGF runtime"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {gu = null; inherit (pkgs) pgf;}; "pgm" = callPackage @@ -216067,6 +227423,8 @@ self: { ]; description = "A mid-level PostgreSQL client library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pgstream" = callPackage @@ -216091,6 +227449,8 @@ self: { ]; description = "Streaming Postgres bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pgvector" = callPackage @@ -216103,6 +227463,8 @@ self: { testHaskellDepends = [ base postgresql-simple ]; description = "pgvector support for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "phantom-state" = callPackage @@ -216129,6 +227491,8 @@ self: { ]; description = "Freezing, thawing, and copy elision"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "phaser" = callPackage @@ -216143,6 +227507,8 @@ self: { ]; description = "Incremental multiple pass parser library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "phash" = callPackage @@ -216339,7 +227705,9 @@ self: { testHaskellDepends = [ base hspec ]; description = "Deprecated - ghci debug viewer with simple editor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "phoityne"; + broken = true; }) {}; "phoityne-vscode" = callPackage @@ -216362,7 +227730,9 @@ self: { ]; description = "Haskell Debug Adapter for Visual Studio Code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "phoityne-vscode"; + broken = true; }) {}; "phone-metadata" = callPackage @@ -216376,6 +227746,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Phonenumber Metadata - NOTE: this is now deprecated!"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "phone-numbers" = callPackage @@ -216390,6 +227762,8 @@ self: { testHaskellDepends = [ base bytestring ]; description = "Haskell bindings to the libphonenumber library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {phonenumber = null; inherit (pkgs) protobuf;}; "phone-push" = callPackage @@ -216407,6 +227781,8 @@ self: { ]; description = "Push notifications for Android and iOS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "phonetic-code" = callPackage @@ -216440,6 +227816,7 @@ self: { libraryHaskellDepends = [ base subG subG-instances vector ]; description = "A generalization of the uniqueness-periods-vector-common package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-constaints" = callPackage @@ -216451,6 +227828,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Constraints to filter the needed permutations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "phonetic-languages-constraints" = callPackage @@ -216462,6 +227841,7 @@ self: { libraryHaskellDepends = [ base subG subG-instances vector ]; description = "Constraints to filter the needed permutations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-constraints-array" = callPackage @@ -216506,6 +227886,7 @@ self: { ]; description = "A generalization of the uniqueness-periods-vector-examples functionality"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-filters-array" = callPackage @@ -216533,6 +227914,7 @@ self: { ]; description = "A generalization of the uniqueness-periods-vector-general functionality"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-permutations" = callPackage @@ -216544,6 +227926,7 @@ self: { libraryHaskellDepends = [ base subG subG-instances vector ]; description = "Commonly used versions of the phonetic-languages-common package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-permutations-array" = callPackage @@ -216614,6 +227997,7 @@ self: { ]; description = "A generalization of the uniqueness-periods-vector-properties package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-rhythmicity" = callPackage @@ -216656,6 +228040,7 @@ self: { ]; description = "A simplified version of the phonetic-languages-functionality"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-simplified-examples-array" = callPackage @@ -216706,6 +228091,7 @@ self: { ]; description = "Helps to create Ukrainian texts with the given phonetic properties"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-simplified-examples-common" = callPackage @@ -216724,6 +228110,7 @@ self: { ]; description = "Some commonly used by phonetic-languages-simplified* series functions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-simplified-generalized-examples-array" = callPackage @@ -216755,6 +228142,8 @@ self: { ]; description = "Helps to create texts with the given phonetic properties (e. g. poetic)."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "phonetic-languages-simplified-generalized-examples-common" = callPackage @@ -216824,6 +228213,7 @@ self: { ]; description = "Simplified and somewhat optimized version of the phonetic-languages-examples"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-simplified-properties-array" = callPackage @@ -216847,6 +228237,8 @@ self: { ]; description = "Some properties of the data related to rhythmicity"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "phonetic-languages-simplified-properties-array-common" = callPackage @@ -216884,6 +228276,8 @@ self: { ]; description = "Some properties of the data related to rhythmicity"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "phonetic-languages-simplified-properties-lists" = callPackage @@ -216902,6 +228296,7 @@ self: { ]; description = "A generalization of the uniqueness-periods-vector-properties package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-simplified-properties-lists-double" = callPackage @@ -216920,6 +228315,7 @@ self: { ]; description = "A generalization of the uniqueness-periods-vector-properties package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-ukrainian" = callPackage @@ -216931,6 +228327,7 @@ self: { libraryHaskellDepends = [ base mmsyn2 mmsyn5 vector ]; description = "Prepares Ukrainian text to be used as a phonetic language text"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "phonetic-languages-ukrainian-array" = callPackage @@ -216957,6 +228354,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "A generalization of the functionality of the uniqueness-periods-vector package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "phooey" = callPackage @@ -216972,6 +228371,7 @@ self: { ]; description = "Functional user interfaces"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "photoname" = callPackage @@ -217014,7 +228414,9 @@ self: { executableHaskellDepends = [ base mtl SDL transformers ]; description = "A fractal viewer"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "phraskell"; + broken = true; }) {}; "phybin" = callPackage @@ -217047,6 +228449,7 @@ self: { ]; description = "Utility for clustering phylogenetic trees in Newick format based on Robinson-Foulds distance"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "phybin"; }) {}; @@ -217079,7 +228482,9 @@ self: { ]; description = "Applied pi-calculus interpreter"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "phi"; + broken = true; }) {}; "pi-forall" = callPackage @@ -217103,7 +228508,9 @@ self: { ]; description = "Demo implementation of typechecker for dependently-typed language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pi-forall"; + broken = true; }) {}; "pi-hoole" = callPackage @@ -217129,6 +228536,8 @@ self: { testHaskellDepends = [ base ]; description = "Lightweight access control solution for the pijul vcs"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pi-lcd" = callPackage @@ -217150,6 +228559,8 @@ self: { executableHaskellDepends = [ base text ]; description = "Control an Adafruit character LCD and keypad kit on a Raspberry Pi"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pia-forward" = callPackage @@ -217170,7 +228581,9 @@ self: { ]; description = "Set up port forwarding with the Private Internet Access VPN service"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "pia-forward"; + broken = true; }) {}; "pianola" = callPackage @@ -217193,6 +228606,7 @@ self: { ]; description = "Remotely controlling Java Swing applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "picedit" = callPackage @@ -217207,7 +228621,9 @@ self: { executableHaskellDepends = [ base cli hmatrix ]; description = "simple image manipulation functions"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "picedit"; + broken = true; }) {}; "pickle" = callPackage @@ -217219,6 +228635,8 @@ self: { libraryHaskellDepends = [ base containers network stm text ]; description = "Instant StatsD in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "picologic" = callPackage @@ -217241,6 +228659,8 @@ self: { ]; description = "Utilities for symbolic predicate logic expressions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "picoparsec" = callPackage @@ -217273,6 +228693,8 @@ self: { ]; description = "Fast combinator parsing for bytestrings and text"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "picosat" = callPackage @@ -217298,7 +228720,9 @@ self: { executableHaskellDepends = [ base matrix transformers xml ]; description = "Converts a svg image to tikz code"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "pictikz"; + broken = true; }) {}; "pid" = callPackage @@ -217359,6 +228783,7 @@ self: { ]; description = "Yet another Haskell build system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pier"; }) {}; @@ -217379,6 +228804,8 @@ self: { ]; description = "A library for writing forwards-declared build systems in haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "piet" = callPackage @@ -217392,7 +228819,9 @@ self: { libraryHaskellDepends = [ array base containers Imlib mtl ]; description = "A Piet interpreter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "piet"; + broken = true; }) {}; "pig" = callPackage @@ -217409,7 +228838,9 @@ self: { ]; description = "dice game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pig"; + broken = true; }) {}; "piki" = callPackage @@ -217449,6 +228880,8 @@ self: { ]; description = "Access to the Pinboard API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pinboard-notes-backup" = callPackage @@ -217538,7 +228971,9 @@ self: { ]; description = "A code generator for the pinch Thrift library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pinch-gen"; + broken = true; }) {}; "pinchot" = callPackage @@ -217557,6 +228992,8 @@ self: { ]; description = "Write grammars, not parsers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pine" = callPackage @@ -217580,6 +229017,7 @@ self: { ]; description = "Functional 2D Game Framework"; license = lib.licenses.zlib; + hydraPlatforms = lib.platforms.none; }) {}; "ping" = callPackage @@ -217600,6 +229038,7 @@ self: { ]; description = "icmp echo requests"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ping-parser-attoparsec" = callPackage @@ -217696,6 +229135,7 @@ self: { testHaskellDepends = [ base doctest protolude ]; description = "A gateway for various cloud notification services"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pipe-enumerator" = callPackage @@ -217707,6 +229147,7 @@ self: { libraryHaskellDepends = [ base enumerator pipes transformers ]; description = "A bidirectional bridge between pipes and iteratees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pipeclip" = callPackage @@ -217818,6 +229259,8 @@ self: { ]; description = "A higher-level interface to using concurrency with pipes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-attoparsec" = callPackage @@ -217857,6 +229300,7 @@ self: { ]; description = "Streaming parsing in the pipes-core framework with Attoparsec"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "MimeParser"; }) {}; @@ -217873,6 +229317,8 @@ self: { ]; description = "Blocked GZip"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-binary" = callPackage @@ -217910,6 +229356,8 @@ self: { testHaskellDepends = [ base bytestring mtl pipes QuickCheck ]; description = "Pipes to group by any delimiter (such as lines with carriage returns)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-brotli" = callPackage @@ -217926,6 +229374,8 @@ self: { ]; description = "Brotli (RFC7932) compressors and decompressors for the Pipes package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-bytestring" = callPackage @@ -217968,6 +229418,8 @@ self: { benchmarkHaskellDepends = [ base ]; description = "Streaming compression/decompression via pipes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) bzip2;}; "pipes-cacophony" = callPackage @@ -217984,6 +229436,7 @@ self: { testHaskellDepends = [ base hlint ]; description = "Pipes for Noise-secured network connections"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "pipes-category" = callPackage @@ -217998,6 +229451,8 @@ self: { testHaskellDepends = [ base hspec pipes transformers ]; description = "Allows instances for Category, Arrow and ArrowChoice for Pipes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-cborg" = callPackage @@ -218059,6 +229514,8 @@ self: { ]; description = "Encode and decode binary streams using the pipes and cereal libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-cereal-plus" = callPackage @@ -218074,6 +229531,7 @@ self: { ]; description = "A streaming serialization library on top of \"pipes\" and \"cereal-plus\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "pipes-cliff" = callPackage @@ -218119,6 +229577,7 @@ self: { libraryHaskellDepends = [ base conduit mtl pipes-core ]; description = "Conduit adapters"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pipes-core" = callPackage @@ -218134,6 +229593,8 @@ self: { ]; description = "Compositional pipelines"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-courier" = callPackage @@ -218145,6 +229606,7 @@ self: { libraryHaskellDepends = [ base courier pipes ]; description = "Pipes utilities for interfacing with the courier message-passing framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pipes-csv" = callPackage @@ -218178,6 +229640,8 @@ self: { libraryHaskellDepends = [ base errors pipes ]; description = "Integration between pipes and errors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-extra" = callPackage @@ -218205,6 +229669,7 @@ self: { ]; description = "Various basic utilities for Pipes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pipes-extras" = callPackage @@ -218266,6 +229731,7 @@ self: { ]; description = "Fast traversal of directory trees using pipes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pipes-fluid" = callPackage @@ -218288,6 +229754,7 @@ self: { ]; description = "Reactively combines Producers so that a value is yielded as soon as possible"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pipes-group" = callPackage @@ -218340,6 +229807,7 @@ self: { ]; description = "Illumina NGS data processing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pipes-interleave" = callPackage @@ -218353,6 +229821,8 @@ self: { libraryHaskellDepends = [ base containers heaps pipes ]; description = "Interleave and merge streams of elements"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-io" = callPackage @@ -218367,6 +229837,8 @@ self: { testHaskellDepends = [ base hspec pipes ]; description = "Stateful IO streams based on pipes"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-kafka" = callPackage @@ -218407,6 +229879,7 @@ self: { ]; description = "Streaming processing of CSV files preceded by key-value pairs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pipes-lines" = callPackage @@ -218423,6 +229896,8 @@ self: { ]; description = "Pipes for grouping by lines with carriage returns"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-lzma" = callPackage @@ -218444,7 +229919,9 @@ self: { ]; description = "LZMA compressors and decompressors for the Pipes package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pipes-lzma-unxz"; + broken = true; }) {}; "pipes-misc" = callPackage @@ -218465,6 +229942,7 @@ self: { ]; description = "Miscellaneous utilities for pipes, required by glazier-tutorial"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pipes-mongodb" = callPackage @@ -218523,6 +230001,8 @@ self: { ]; description = "WebSockets support for pipes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-ordered-zip" = callPackage @@ -218552,6 +230032,7 @@ self: { ]; description = "P2P network nodes with pipes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pipes-p2p-examples" = callPackage @@ -218570,6 +230051,7 @@ self: { ]; description = "Examples using pipes-p2p"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "address-exchanger"; }) {}; @@ -218624,7 +230106,9 @@ self: { testHaskellDepends = [ base ]; description = "Alternate Prelude for the pipes ecosystem"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pipes-protolude-exe"; + broken = true; }) {}; "pipes-pulse-simple" = callPackage @@ -218664,7 +230148,9 @@ self: { executableHaskellDepends = [ base pipes time ]; description = "A few pipes to control the timing of yields"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "PipesRealTimeExample"; + broken = true; }) {}; "pipes-s3" = callPackage @@ -218687,6 +230173,8 @@ self: { ]; description = "A simple interface for streaming data to and from Amazon S3"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-safe" = callPackage @@ -218726,6 +230214,8 @@ self: { ]; description = "Create proper Pipes from System.Process"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-sqlite-simple" = callPackage @@ -218739,6 +230229,8 @@ self: { ]; description = "Functions that smash Pipes and sqlite-simple together"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-text" = callPackage @@ -218779,6 +230271,8 @@ self: { ]; description = "Interfacing pipes with foldl folds"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-vector" = callPackage @@ -218794,6 +230288,8 @@ self: { ]; description = "Various proxies for streaming data into vectors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-wai" = callPackage @@ -218845,6 +230341,8 @@ self: { ]; description = "Pipes integration for ZeroMQ messaging"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pipes-zlib" = callPackage @@ -218884,6 +230382,7 @@ self: { ]; description = "A dependently typed core language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pisigma"; }) {}; @@ -218907,7 +230406,9 @@ self: { ]; description = "Account management tool"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "pit"; + broken = true; }) {}; "pitchtrack" = callPackage @@ -218928,6 +230429,7 @@ self: { ]; description = "Pitch tracking library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "pivotal-tracker" = callPackage @@ -218951,7 +230453,9 @@ self: { testHaskellDepends = [ base hspec ]; description = "A library and a CLI tool for accessing Pivotal Tracker API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tracker"; + broken = true; }) {}; "pixel-printer" = callPackage @@ -218969,7 +230473,9 @@ self: { testHaskellDepends = [ base ]; description = "A program for turning pixel art into 3D prints"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "pixel-printer-exe"; + broken = true; }) {}; "pixela" = callPackage @@ -218993,6 +230499,8 @@ self: { ]; description = "Pixela client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pixelated-avatar-generator" = callPackage @@ -219014,7 +230522,9 @@ self: { ]; description = "A library and application for generating pixelated avatars"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "pixelated-avatar-generator"; + broken = true; }) {}; "pixiv" = callPackage @@ -219041,6 +230551,8 @@ self: { ]; description = "Pixiv API binding based on servant-client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "piyo" = callPackage @@ -219066,6 +230578,7 @@ self: { description = "Haskell game engine like fantasy console"; license = lib.licenses.mit; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; mainProgram = "piyo-exe"; }) {}; @@ -219099,6 +230612,8 @@ self: { ]; description = "PKCS#10 library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pkcs7" = callPackage @@ -219111,6 +230626,8 @@ self: { testHaskellDepends = [ base bytestring Cabal HUnit QuickCheck ]; description = "PKCS #7 padding in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pkggraph" = callPackage @@ -219124,7 +230641,9 @@ self: { executableHaskellDepends = [ base Cabal split ]; description = "Package dependency graph for installed packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pkggraph"; + broken = true; }) {}; "pkgtreediff" = callPackage @@ -219147,6 +230666,7 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "RPM package tree diff tool"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "pkgtreediff"; }) {}; @@ -219228,6 +230748,8 @@ self: { libraryHaskellDepends = [ base bytestring mtl time unix ]; description = "plaimi's prelude"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "plan-applicative" = callPackage @@ -219248,6 +230770,8 @@ self: { ]; description = "Applicative/Arrow for resource estimation and progress tracking"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "plan-b" = callPackage @@ -219266,6 +230790,8 @@ self: { testHaskellDepends = [ base hspec path path-io ]; description = "Failure-tolerant file and directory editing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "planar-graph" = callPackage @@ -219282,6 +230808,8 @@ self: { ]; description = "A representation of planar graphs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "planb-token-introspection" = callPackage @@ -219305,6 +230833,8 @@ self: { ]; description = "Token Introspection for PlanB"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "planet-mitchell" = callPackage @@ -219359,6 +230889,7 @@ self: { ]; description = "Planet Mitchell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "planet-mitchell-test" = callPackage @@ -219375,6 +230906,8 @@ self: { ]; description = "Planet Mitchell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "plankton" = callPackage @@ -219386,6 +230919,8 @@ self: { libraryHaskellDepends = [ adjunctions base protolude ]; description = "The core of a numeric prelude, taken from numhask"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "plat" = callPackage @@ -219399,6 +230934,8 @@ self: { ]; description = "Simple templating library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "platinum-parsing" = callPackage @@ -219422,7 +230959,9 @@ self: { testHaskellDepends = [ base containers fgl hspec vector ]; description = "General Framework for compiler development"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pp"; + broken = true; }) {}; "playlists" = callPackage @@ -219446,7 +230985,9 @@ self: { ]; description = "Library and executable for working with playlist files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "playlist"; + broken = true; }) {}; "playlists-http" = callPackage @@ -219465,6 +231006,7 @@ self: { ]; description = "Library to glue together playlists and http-client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "plex" = callPackage @@ -219495,6 +231037,8 @@ self: { libraryHaskellDepends = [ base base64-bytestring bytestring hxt ]; description = "Generate and parse Mac OS X property list format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "plist-buddy" = callPackage @@ -219518,6 +231062,8 @@ self: { ]; description = "Remote monad for editing plists"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "plivo" = callPackage @@ -219537,6 +231083,8 @@ self: { ]; description = "Plivo API wrapper for Haskell"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "plocketed" = callPackage @@ -219550,6 +231098,7 @@ self: { executableHaskellDepends = [ base optparse-applicative socketed ]; description = "plot data from stdin through socketed"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "plocketed"; }) {}; @@ -219577,6 +231126,8 @@ self: { libraryHaskellDepends = [ base glib gtk hmatrix mtl plot process ]; description = "GTK plots and interaction with GHCi"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "plot-gtk-ui" = callPackage @@ -219593,6 +231144,8 @@ self: { ]; description = "A quick way to use Mathematica like Manipulation abilities"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "plot-gtk3" = callPackage @@ -219606,6 +231159,8 @@ self: { ]; description = "GTK3 plots and interaction with GHCi"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "plot-lab" = callPackage @@ -219622,7 +231177,9 @@ self: { ]; description = "A plotting tool with Mathematica like Manipulation abilities"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "plot-lab"; + broken = true; }) {}; "plot-light" = callPackage @@ -219680,7 +231237,9 @@ self: { executableHaskellDepends = [ base mtl optparse-generic text ]; description = "Basic plotting of tabular data for the command line"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "ploterific"; + broken = true; }) {}; "plotfont" = callPackage @@ -219754,6 +231313,8 @@ self: { ]; description = "Diagrams based plotting library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "plotserver-api" = callPackage @@ -219793,6 +231354,8 @@ self: { ]; description = "Async IO tracer for plow-log"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "plucky" = callPackage @@ -219822,6 +231385,8 @@ self: { ]; description = "Dynamic linking for Haskell and C objects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "plugins-auto" = callPackage @@ -219838,6 +231403,7 @@ self: { testHaskellDepends = [ base directory process ]; description = "Automatic recompilation and reloading of haskell modules"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "plugins-multistage" = callPackage @@ -219856,6 +231422,8 @@ self: { ]; description = "Dynamic linking for embedded DSLs with staged compilation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "plumbers" = callPackage @@ -219867,6 +231435,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Pointless plumbing combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "plur" = callPackage @@ -219879,6 +231449,8 @@ self: { testHaskellDepends = [ base hedgehog hedgehog-classes ]; description = "Plurality monad: Zero, one, or at least two"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "plural" = callPackage @@ -219891,6 +231463,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Pluralize"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ply-loader" = callPackage @@ -219930,6 +231504,8 @@ self: { testHaskellDepends = [ base hspec mtl text unordered-containers ]; description = "A front-end framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "png-file" = callPackage @@ -219945,6 +231521,7 @@ self: { ]; description = "read/write png file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pngload" = callPackage @@ -219961,6 +231538,7 @@ self: { ]; description = "Pure Haskell loader for PNG images"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pngload-fixed" = callPackage @@ -219973,6 +231551,8 @@ self: { libraryHaskellDepends = [ array base bytestring mtl parsec zlib ]; description = "Pure Haskell loader for PNG images"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pnm" = callPackage @@ -219999,6 +231579,8 @@ self: { ]; description = "Bindings for the Pocket API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pocket-dns" = callPackage @@ -220058,7 +231640,9 @@ self: { testHaskellDepends = [ base hspec text ]; description = "A container wrapper"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "podenv"; + broken = true; }) {}; "point-octree" = callPackage @@ -220077,6 +231661,7 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Point octree, with bounding boxes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pointed" = callPackage @@ -220108,6 +231693,8 @@ self: { libraryHaskellDepends = [ base mtl semigroups transformers ]; description = "Alternative done right"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pointedlist" = callPackage @@ -220166,7 +231753,9 @@ self: { doHaddock = false; description = "Tool for refactoring expressions into pointfree form"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pointfree"; + broken = true; }) {}; "pointful" = callPackage @@ -220185,7 +231774,9 @@ self: { executableHaskellDepends = [ base ]; description = "Pointful refactoring tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pointful"; + broken = true; }) {}; "pointless-fun" = callPackage @@ -220208,6 +231799,8 @@ self: { libraryHaskellDepends = [ base GHood process syb ]; description = "Pointless Haskell library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pointless-lenses" = callPackage @@ -220223,6 +231816,7 @@ self: { ]; description = "Pointless Lenses library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pointless-rewrite" = callPackage @@ -220238,6 +231832,7 @@ self: { ]; description = "Pointless Rewrite library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "poke" = callPackage @@ -220269,6 +231864,7 @@ self: { ]; description = "Discord verification bot"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "poke-exe"; }) {}; @@ -220286,6 +231882,8 @@ self: { ]; description = "Haskell types for the Pokemon Go protobuf protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "poker" = callPackage @@ -220308,6 +231906,7 @@ self: { benchmarkHaskellDepends = [ base gauge ]; description = "Texas holdem hand evaluation and simulation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "poker-exe"; }) {}; @@ -220331,6 +231930,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "A library for core poker types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "poker-eval" = callPackage @@ -220343,6 +231944,8 @@ self: { librarySystemDepends = [ poker-eval ]; description = "Binding to libpoker-eval"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {poker-eval = null;}; "pokitdok" = callPackage @@ -220360,6 +231963,8 @@ self: { ]; description = "PokitDok Platform API Client for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "polar" = callPackage @@ -220383,6 +231988,8 @@ self: { testHaskellDepends = [ base containers HUnit MissingH mtl parsec ]; description = "Fork of ConfigFile for Polar Game Engine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "polar-shader" = callPackage @@ -220395,6 +232002,8 @@ self: { testHaskellDepends = [ base containers hspec ]; description = "High-level shader compiler framework"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "polh-lexicon" = callPackage @@ -220413,6 +232022,7 @@ self: { ]; description = "A library for manipulating the historical dictionary of Polish (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "policeman" = callPackage @@ -220438,7 +232048,9 @@ self: { ]; description = "Haskell PVP version adviser"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "policeman"; + broken = true; }) {}; "polimorf" = callPackage @@ -220483,6 +232095,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Cache infrequently updated data for simpler distributed systems"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "poly" = callPackage @@ -220509,6 +232123,8 @@ self: { ]; description = "Polynomials"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "poly-arity" = callPackage @@ -220531,6 +232147,8 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "Poly-kinded continuations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "poly-control" = callPackage @@ -220542,6 +232160,8 @@ self: { libraryHaskellDepends = [ base lens ]; description = "This package provides abstraction for polymorphic controls, like PolyMonads or PolyApplicatives"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "poly-rec" = callPackage @@ -220582,6 +232202,7 @@ self: { ]; description = "Wrap together data and it's constraints"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "polydata-core" = callPackage @@ -220593,6 +232214,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Core data definitions for the \"polydata\" package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "polyglot" = callPackage @@ -220618,7 +232241,9 @@ self: { ]; description = "Haskell to Purescript & Scala 3 transpiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "polyglot"; + broken = true; }) {}; "polymap" = callPackage @@ -220653,6 +232278,8 @@ self: { ]; description = "Polynomial types and operations"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "polynomial" = callPackage @@ -220675,6 +232302,8 @@ self: { ]; description = "Polynomials"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "polynomial-algebra" = callPackage @@ -220759,6 +232388,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Experimental, RandomFu effect and interpreters for polysemy"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-account" = callPackage @@ -220775,6 +232405,7 @@ self: { ]; description = "Account management with Servant and Polysemy"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-account-api" = callPackage @@ -220804,6 +232435,7 @@ self: { ]; description = "Account management with Servant and Polysemy"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-check" = callPackage @@ -220881,6 +232513,7 @@ self: { ]; description = "Polysemy effects for databases"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-extra" = callPackage @@ -220894,6 +232527,7 @@ self: { ]; description = "Extra Input and Output functions for polysemy"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-fs" = callPackage @@ -220926,6 +232560,7 @@ self: { ]; description = "Run a KVStore as a filesystem in polysemy"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-hasql" = callPackage @@ -220949,6 +232584,7 @@ self: { ]; description = "Polysemy effects for databases"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-hasql-test" = callPackage @@ -220972,6 +232608,7 @@ self: { ]; description = "Test utilities for polysemy-hasql"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-http" = callPackage @@ -220995,6 +232632,7 @@ self: { ]; description = "Polysemy effects for HTTP clients"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-keyed-state" = callPackage @@ -221015,6 +232653,8 @@ self: { ]; description = "Effect for a set of stateful values indexed by a type of keys"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "polysemy-kvstore" = callPackage @@ -221026,6 +232666,8 @@ self: { libraryHaskellDepends = [ base containers polysemy ]; description = "KVStore effect for polysemy"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "polysemy-kvstore-jsonfile" = callPackage @@ -221044,6 +232686,7 @@ self: { ]; description = "Run a KVStore as a single json file in polysemy"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-log" = callPackage @@ -221089,6 +232732,7 @@ self: { ]; description = "Colog adapters for Polysemy.Log"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-log-di" = callPackage @@ -221130,6 +232774,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Primitive functions and data types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "polysemy-methodology" = callPackage @@ -221144,6 +232790,7 @@ self: { ]; description = "Domain modelling algebra for polysemy"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-methodology-co-log" = callPackage @@ -221161,6 +232808,7 @@ self: { ]; description = "Logging functions for polysemy-methodology"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-methodology-composite" = callPackage @@ -221179,6 +232827,7 @@ self: { ]; description = "Functions for using polysemy-methodology with composite"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-mocks" = callPackage @@ -221205,6 +232854,8 @@ self: { libraryHaskellDepends = [ base optics polysemy polysemy-zoo ]; description = "Optics for Polysemy"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "polysemy-path" = callPackage @@ -221218,6 +232869,7 @@ self: { libraryHaskellDepends = [ base path polysemy polysemy-extra ]; description = "Polysemy versions of Path functions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-plugin" = callPackage @@ -221266,6 +232918,8 @@ self: { ]; description = "Polysemy effects for system processes"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "polysemy-readline" = callPackage @@ -221289,7 +232943,9 @@ self: { ]; description = "Readline effect for polysemy"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "echo-repl"; + broken = true; }) {}; "polysemy-req" = callPackage @@ -221303,6 +232959,8 @@ self: { libraryHaskellDepends = [ base polysemy req ]; description = "Polysemy effect for req"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "polysemy-resume" = callPackage @@ -221341,6 +232999,7 @@ self: { ]; description = "Well-typed filesystem operation effects"; license = lib.licenses.agpl3Plus; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-several" = callPackage @@ -221352,6 +233011,8 @@ self: { libraryHaskellDepends = [ base polysemy ]; description = "Run several effects at once, taken from the polysemy-zoo"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "polysemy-socket" = callPackage @@ -221365,6 +233026,8 @@ self: { libraryHaskellDepends = [ base bytestring polysemy socket ]; description = "Socket effect for polysemy"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "polysemy-test" = callPackage @@ -221414,6 +233077,7 @@ self: { libraryHaskellDepends = [ base polysemy polysemy-methodology ]; description = "Uncontrolled toy effect for polysemy"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-video" = callPackage @@ -221434,6 +233098,7 @@ self: { ]; description = "Experimental video processing DSL for polysemy"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-vinyl" = callPackage @@ -221451,6 +233116,7 @@ self: { ]; description = "Functions for mapping vinyl records in polysemy"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "polysemy-webserver" = callPackage @@ -221517,7 +233183,9 @@ self: { executableHaskellDepends = [ cgi free-theorems utf8-string xhtml ]; description = "Taming Selective Strictness"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "polyseq.cgi"; + broken = true; }) {}; "polysoup" = callPackage @@ -221542,6 +233210,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Typeable for polymorphic types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "polytypeable-utils" = callPackage @@ -221553,6 +233223,7 @@ self: { libraryHaskellDepends = [ base haskell98 polytypeable ]; description = "Utilities for polytypeable"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "polyvariadic" = callPackage @@ -221567,6 +233238,8 @@ self: { testHaskellDepends = [ base ]; description = "Creation and application of polyvariadic functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pomaps" = callPackage @@ -221590,6 +233263,8 @@ self: { ]; description = "Maps and sets of partial orders"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pomodoro" = callPackage @@ -221608,6 +233283,7 @@ self: { ]; description = "pomodoro timer"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "pomodoro"; }) {}; @@ -221632,7 +233308,9 @@ self: { testHaskellDepends = [ base hspec protolude ]; description = "Initial project template from stack"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; mainProgram = "pomohoro-exe"; + broken = true; }) {}; "ponder" = callPackage @@ -221644,6 +233322,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "PEG parser combinator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pong-server" = callPackage @@ -221661,6 +233341,8 @@ self: { testHaskellDepends = [ base hspec network QuickCheck ]; description = "A simple embedded pingable server that runs in the background"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pontarius-mediaserver" = callPackage @@ -221679,6 +233361,7 @@ self: { ]; description = "Extended Personal Media Network (XPMN) media server"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "pontarius-mediaserver-test"; }) {}; @@ -221744,6 +233427,8 @@ self: { ]; description = "XEPs implementation on top of pontarius-xmpp"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pontarius-xpmn" = callPackage @@ -221759,6 +233444,8 @@ self: { ]; description = "Extended Personal Media Network (XPMN) library"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pony" = callPackage @@ -221786,6 +233473,8 @@ self: { libraryHaskellDepends = [ base monad-control transformers ]; description = "Thread-safe resource pools. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pool-conduit" = callPackage @@ -221803,6 +233492,8 @@ self: { ]; description = "Resource pool allocations via ResourceT. (deprecated)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "poolboy" = callPackage @@ -221817,6 +233508,8 @@ self: { testHaskellDepends = [ base hspec hspec-core ]; description = "Simple work queue for bounded concurrency"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pooled-io" = callPackage @@ -221848,6 +233541,8 @@ self: { libraryHaskellDepends = [ base mtl network ]; description = "POP3 Client Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "popenhs" = callPackage @@ -221860,6 +233555,7 @@ self: { libraryHaskellDepends = [ base directory haskell98 unix ]; description = "popenhs is a popen-like library for Haskell"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "popkey" = callPackage @@ -221879,6 +233575,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Static key-value storage backed by poppy"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "poppler" = callPackage @@ -221899,6 +233597,8 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the Poppler"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) gdk-pixbuf; inherit (pkgs) gtk2; inherit (pkgs) pango; inherit (pkgs) poppler_gi;}; @@ -221953,6 +233653,7 @@ self: { ]; description = "Express portable, composable and reusable data tasks and pipelines"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "porcupine-http" = callPackage @@ -221981,6 +233682,7 @@ self: { ]; description = "A location accessor for porcupine to connect to HTTP sources/sinks"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "porcupine-s3" = callPackage @@ -222011,6 +233713,7 @@ self: { ]; description = "A location accessor for porcupine to connect to AWS S3 sources/sinks"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "exampleS3"; }) {}; @@ -222030,7 +233733,9 @@ self: { executableHaskellDepends = [ base warp ]; description = "A minimalist HTTP server framework written on top of wai"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "porpoise-example"; + broken = true; }) {}; "port-utils" = callPackage @@ -222084,6 +233789,8 @@ self: { testHaskellDepends = [ base containers hspec mtl QuickCheck text ]; description = "DSL for configuring Gentoo portage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "portaudio" = callPackage @@ -222113,7 +233820,9 @@ self: { ]; description = "FreeBSD ports index search and analysis tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "porte"; + broken = true; }) {}; "porter" = callPackage @@ -222246,6 +233955,7 @@ self: { libraryHaskellDepends = [ base haskell98 unix ]; description = "The Haskell Ports Library"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "ports-tools" = callPackage @@ -222290,6 +234000,8 @@ self: { ]; description = "A product-of-sums generics library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "poseidon" = callPackage @@ -222312,6 +234024,7 @@ self: { ]; description = "Simple extensible library to run SQL file against PostgreSQL database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "poseidon-postgis" = callPackage @@ -222332,6 +234045,7 @@ self: { ]; description = "Extension of Poseidon library for Postgis (Spatial and Geographic objects for PostgreSQL)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "posit" = callPackage @@ -222349,6 +234063,8 @@ self: { benchmarkHaskellDepends = [ base vector weigh ]; description = "Posit Numbers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "positive" = callPackage @@ -222377,6 +234093,8 @@ self: { testHaskellDepends = [ base ]; description = "Experiment"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "posix-acl" = callPackage @@ -222394,6 +234112,8 @@ self: { librarySystemDepends = [ acl ]; description = "Support for Posix ACL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) acl;}; "posix-api" = callPackage @@ -222415,6 +234135,8 @@ self: { description = "posix bindings"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "posix-error-codes" = callPackage @@ -222491,6 +234213,8 @@ self: { libraryHaskellDepends = [ base bytestring unix ]; description = "POSIX Realtime functionality"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "posix-socket" = callPackage @@ -222531,6 +234255,8 @@ self: { libraryHaskellDepends = [ base unix ]; description = "Low-level wrapping of POSIX waitpid(2)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "posplyu" = callPackage @@ -222548,7 +234274,9 @@ self: { ]; description = "Sleep tracker for X11, using XScreenSaver extension and manual input"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "posplyu"; + broken = true; }) {}; "possible" = callPackage @@ -222593,6 +234321,8 @@ self: { libraryHaskellDepends = [ aeson base bytestring HTTP ]; description = "A library that gets postcode information from the uk-postcodes.com"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgres-embedded" = callPackage @@ -222611,6 +234341,8 @@ self: { ]; description = "Library for easily running embedded PostgreSQL server for tests"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgres-options" = callPackage @@ -222638,6 +234370,8 @@ self: { libraryHaskellDepends = [ base bytestring postgresql-simple text ]; description = "Create a temporary database that is deleted after performing some operation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgres-websockets" = callPackage @@ -222670,7 +234404,9 @@ self: { ]; description = "Middleware to map LISTEN/NOTIFY messages to Websockets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "postgres-websockets"; + broken = true; }) {}; "postgresql-binary" = callPackage @@ -222712,6 +234448,8 @@ self: { ]; description = "Library for sharing common PostgreSQL types across Haskell PostgreSQL libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgresql-common-persistent" = callPackage @@ -222730,6 +234468,7 @@ self: { ]; description = "Persistent compatibility for postgresql-common"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "postgresql-config" = callPackage @@ -222746,6 +234485,8 @@ self: { ]; description = "Types for easy adding postgresql configuration to your program"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgresql-connector" = callPackage @@ -222785,6 +234526,8 @@ self: { libraryHaskellDepends = [ base bytestring postgresql-simple ]; description = "Cube support for postgresql-simple"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgresql-error-codes" = callPackage @@ -222862,6 +234605,8 @@ self: { ]; description = "Utilities for streaming PostgreSQL LargeObjects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgresql-ltree" = callPackage @@ -222878,6 +234623,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck text ]; description = "Types and functions for representing PostgreSQL's ltree"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgresql-migration" = callPackage @@ -222920,6 +234667,8 @@ self: { testHaskellDepends = [ base generics-sop hspec postgresql-simple ]; description = "Generic deserialization of PostgreSQL rows based on column names"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgresql-orm" = callPackage @@ -222945,7 +234694,9 @@ self: { executableHaskellDepends = [ base filepath ]; description = "An ORM (Object Relational Mapping) and migrations DSL for PostgreSQL"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "pg_migrate"; + broken = true; }) {}; "postgresql-placeholder-converter" = callPackage @@ -223008,6 +234759,7 @@ self: { ]; description = "pure Haskell PostgreSQL driver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "postgresql-query" = callPackage @@ -223039,6 +234791,8 @@ self: { ]; description = "Sql interpolating quasiquote plus some kind of primitive ORM using it"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgresql-replicant" = callPackage @@ -223060,7 +234814,9 @@ self: { testHaskellDepends = [ base binary bytestring cereal hspec ]; description = "PostgreSQL logical streaming replication library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "replicant-example"; + broken = true; }) {}; "postgresql-resilient" = callPackage @@ -223074,6 +234830,8 @@ self: { libraryHaskellDepends = [ base exceptions postgresql-simple ]; description = "Automatic re-connection support for PostgreSQL"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgresql-schema" = callPackage @@ -223173,6 +234931,8 @@ self: { ]; description = "FFI-like bindings for PostgreSQL stored functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgresql-simple-interpolate" = callPackage @@ -223211,6 +234971,7 @@ self: { ]; description = "Instances for using ltree with postgresql-simple"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "postgresql-simple-migration" = callPackage @@ -223236,7 +234997,9 @@ self: { testHaskellDepends = [ base bytestring hspec postgresql-simple ]; description = "PostgreSQL Schema Migrations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "migrate"; + broken = true; }) {}; "postgresql-simple-named" = callPackage @@ -223256,6 +235019,8 @@ self: { ]; description = "Implementation of named parameters for `postgresql-simple` library"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgresql-simple-opts" = callPackage @@ -223304,6 +235069,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "A PostgreSQL backed queue"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "postgresql-simple-sop" = callPackage @@ -223315,6 +235081,8 @@ self: { libraryHaskellDepends = [ base generics-sop postgresql-simple ]; description = "Generic functions for postgresql-simple"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgresql-simple-typed" = callPackage @@ -223331,6 +235099,7 @@ self: { ]; description = "Typed extension for PostgreSQL simple"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "postgresql-simple-url" = callPackage @@ -223409,6 +235178,8 @@ self: { libraryHaskellDepends = [ base monad-logger postgresql-tx ]; description = "postgresql-tx interfacing for use with monad-logger"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgresql-tx-query" = callPackage @@ -223428,6 +235199,7 @@ self: { ]; description = "postgresql-tx interfacing for use with postgresql-query"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "postgresql-tx-simple" = callPackage @@ -223443,6 +235215,8 @@ self: { ]; description = "postgresql-tx interfacing for use with postgresql-simple"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgresql-tx-squeal" = callPackage @@ -223459,6 +235233,7 @@ self: { ]; description = "postgresql-tx interfacing for use with squeal-postgresql"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "postgresql-tx-squeal-compat-simple" = callPackage @@ -223472,6 +235247,7 @@ self: { ]; description = "Connection interop from postgresql-simple connections to postgresql-libpq connections"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "postgresql-typed" = callPackage @@ -223547,6 +235323,8 @@ self: { ]; description = "postgresql-typed operations lifted to any instance of MonadBase or MonadBaseControl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postgrest" = callPackage @@ -223591,6 +235369,7 @@ self: { ]; description = "REST API for any Postgres database"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "postgrest"; }) {}; @@ -223627,7 +235406,9 @@ self: { ]; description = "PostgREST extension to map LISTEN/NOTIFY messages to Websockets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "postgrest-ws"; + broken = true; }) {}; "postie" = callPackage @@ -223646,6 +235427,8 @@ self: { ]; description = "SMTP server library to receive emails from within Haskell programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postmark" = callPackage @@ -223664,6 +235447,7 @@ self: { ]; description = "Library for postmarkapp.com HTTP Api"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "postmark-streams" = callPackage @@ -223680,6 +235464,8 @@ self: { ]; description = "Send email via Postmark using io-streams"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "postmaster" = callPackage @@ -223700,7 +235486,9 @@ self: { ]; description = "Postmaster ESMTP Server"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "postmaster"; + broken = true; }) {}; "potato-tool" = callPackage @@ -223714,7 +235502,9 @@ self: { executableHaskellDepends = [ base binary bytestring split ]; description = "Command line Dreamcast VMU filesystem toolset"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "potato-tool"; + broken = true; }) {}; "potoki" = callPackage @@ -223726,6 +235516,7 @@ self: { libraryHaskellDepends = [ potoki-core ]; description = "Simple streaming in IO"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "potoki-cereal" = callPackage @@ -223748,6 +235539,7 @@ self: { ]; description = "Streaming serialization"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "potoki-conduit" = callPackage @@ -223770,6 +235562,7 @@ self: { ]; description = "Integration of \"potoki\" and \"conduit\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "potoki-core" = callPackage @@ -223797,6 +235590,8 @@ self: { benchmarkHaskellDepends = [ criterion rerebase ]; description = "Low-level components of \"potoki\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "potoki-hasql" = callPackage @@ -223812,6 +235607,7 @@ self: { ]; description = "Integration of \"potoki\" and \"hasql\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "potoki-zlib" = callPackage @@ -223825,6 +235621,7 @@ self: { ]; description = "Streaming ZLib decompression"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "potrace" = callPackage @@ -223877,6 +235674,8 @@ self: { ]; description = "PowerDNS API bindings for api/v1"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "powermate" = callPackage @@ -223891,6 +235690,8 @@ self: { executableHaskellDepends = [ base ]; description = "bindings for Griffin PowerMate USB"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "powerpc" = callPackage @@ -223902,6 +235703,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Tools for PowerPC programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "powerqueue" = callPackage @@ -223959,6 +235762,8 @@ self: { benchmarkSystemDepends = [ leveldb snappy ]; description = "A high performance in memory and LevelDB backend for powerqueue"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) leveldb; inherit (pkgs) snappy;}; "powerqueue-sqs" = callPackage @@ -223972,6 +235777,7 @@ self: { ]; description = "A Amazon SQS backend for powerqueue"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ppm" = callPackage @@ -223994,6 +235800,8 @@ self: { libraryHaskellDepends = [ base boxes ]; description = "A library for pretty printing Records"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pptable" = callPackage @@ -224028,6 +235836,8 @@ self: { libraryHaskellDepends = [ base QuickCheck random stm ]; description = "Parallel batch driver for QuickCheck"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pqueue" = callPackage @@ -224076,6 +235886,7 @@ self: { ]; description = "Fully encapsulated monad transformers with queuelike functionality"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "practice-room" = callPackage @@ -224094,6 +235905,7 @@ self: { ]; description = "Practice Room"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "practice-room"; }) {}; @@ -224115,6 +235927,8 @@ self: { ]; description = "A pragmatic Prelude"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pragmatic-show" = callPackage @@ -224168,6 +235982,8 @@ self: { ]; description = "Yet another prelude"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "precis" = callPackage @@ -224186,7 +236002,9 @@ self: { ]; description = "Diff Cabal packages"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "precis"; + broken = true; }) {}; "precursor" = callPackage @@ -224203,6 +236021,8 @@ self: { testHaskellDepends = [ base doctest QuickCheck ]; description = "Prelude replacement"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pred-set" = callPackage @@ -224214,6 +236034,7 @@ self: { libraryHaskellDepends = [ base hashable hashtables HSet ]; description = "Simple cached predicates"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pred-trie" = callPackage @@ -224242,6 +236063,7 @@ self: { ]; description = "Predicative tries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "predicate-class" = callPackage @@ -224253,6 +236075,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Helper class for passing context along a predicate value"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "predicate-transformers" = callPackage @@ -224290,6 +236114,8 @@ self: { ]; description = "Predicates, Refinement types and Dsl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "predicates" = callPackage @@ -224333,6 +236159,8 @@ self: { ]; description = "Evaluate and display trees of predicates"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prednote-test" = callPackage @@ -224355,6 +236183,7 @@ self: { ]; description = "Tests and QuickCheck generators to accompany prednote"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "prefetch" = callPackage @@ -224421,6 +236250,8 @@ self: { ]; description = "A library for building a prefork-style server quickly"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pregame" = callPackage @@ -224440,6 +236271,8 @@ self: { ]; description = "Prelude for applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prelate" = callPackage @@ -224459,6 +236292,7 @@ self: { ]; description = "A Prelude"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; }) {}; "preliminaries" = callPackage @@ -224480,6 +236314,8 @@ self: { ]; description = "A larger alternative to the Prelude"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prelude-compat" = callPackage @@ -224525,6 +236361,8 @@ self: { libraryHaskellDepends = [ base comonad logict transformers ]; description = "Another kind of alternate Prelude file"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prelude-plus" = callPackage @@ -224538,6 +236376,8 @@ self: { libraryHaskellDepends = [ base utf8-string ]; description = "Prelude for rest of us"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prelude-prime" = callPackage @@ -224601,6 +236441,8 @@ self: { ]; description = "Preprocess Haskell Repositories"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "preprocessor" = callPackage @@ -224621,6 +236463,8 @@ self: { ]; description = "Remove cpp annotations to get the source ready for static analysis"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "preprocessor-tools" = callPackage @@ -224672,6 +236516,8 @@ self: { benchmarkToolDepends = [ alex happy ]; description = "safe PostgreSQL queries using Quasiquoters"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "presburger" = callPackage @@ -224686,6 +236532,8 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "A decision procedure for quantifier-free linear arithmetic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "present" = callPackage @@ -224697,6 +236545,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Make presentations for data types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "press" = callPackage @@ -224708,6 +236558,8 @@ self: { libraryHaskellDepends = [ base containers json mtl parsec ]; description = "Text template library targeted at the web / HTML generation"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "presto-hdbc" = callPackage @@ -224727,6 +236579,7 @@ self: { ]; description = "An HDBC connector for Presto"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "prettify" = callPackage @@ -224782,6 +236635,8 @@ self: { ]; description = "Pretty-printing library"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pretty-diff" = callPackage @@ -224798,6 +236653,7 @@ self: { ]; description = "Pretty printing a diff of two values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pretty-display" = callPackage @@ -224851,7 +236707,9 @@ self: { ]; description = "Functionality for beautifying GHCi"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pp-ghci"; + broken = true; }) {}; "pretty-hex" = callPackage @@ -224890,6 +236748,8 @@ self: { libraryHaskellDepends = [ base text ]; description = "Tracking and highlighting of locations in source files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pretty-ncols" = callPackage @@ -224903,6 +236763,8 @@ self: { libraryHaskellDepends = [ base pretty ]; description = "A implementation of multi-column layout w/ Text.PrettyPrint"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pretty-relative-time" = callPackage @@ -225069,6 +236931,7 @@ self: { ]; description = "Pretty print charts from ghci"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "prettyclass" = callPackage @@ -225268,6 +237131,8 @@ self: { libraryHaskellDepends = [ base prettyprinter vty ]; description = "prettyprinter backend for vty"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "preview" = callPackage @@ -225283,6 +237148,7 @@ self: { ]; description = "The method of previewing data (instead of wholly show-ing it)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "prim" = callPackage @@ -225294,6 +237160,8 @@ self: { libraryHaskellDepends = [ ghc-prim ]; description = "An ergonomic but conservative interface to ghc-prim"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prim-array" = callPackage @@ -225307,6 +237175,8 @@ self: { libraryHaskellDepends = [ base ghc-prim primitive semigroups ]; description = "Primitive byte array with type variable"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prim-instances" = callPackage @@ -225319,6 +237189,8 @@ self: { testHaskellDepends = [ base QuickCheck quickcheck-classes ]; description = "Prim typeclass instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prim-ref" = callPackage @@ -225330,6 +237202,8 @@ self: { libraryHaskellDepends = [ base ghc-prim primitive semigroups ]; description = "Primitive byte array with type variable"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prim-spoon" = callPackage @@ -225377,6 +237251,8 @@ self: { ]; description = "Primeval world of Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "primal-memory" = callPackage @@ -225396,6 +237272,7 @@ self: { ]; description = "Unified interface for memory managemenet"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "prime" = callPackage @@ -225408,6 +237285,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "prime number tools"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "primecount" = callPackage @@ -225448,6 +237327,8 @@ self: { benchmarkHaskellDepends = [ base criterion primes ]; description = "Type-safe prime numbers"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "primesieve" = callPackage @@ -225512,6 +237393,8 @@ self: { testHaskellDepends = [ base primitive primitive-unlifted ]; description = "Wrappers for primops around atomic operations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "primitive-checked" = callPackage @@ -225523,6 +237406,8 @@ self: { libraryHaskellDepends = [ base primitive ]; description = "primitive functions with bounds-checking"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "primitive-containers" = callPackage @@ -225550,6 +237435,7 @@ self: { ]; description = "containers backed by arrays"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "primitive-convenience" = callPackage @@ -225561,6 +237447,8 @@ self: { libraryHaskellDepends = [ primitive ]; description = "convenience class for PrimMonad m/PrimState m"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "primitive-extras" = callPackage @@ -225595,6 +237483,8 @@ self: { testHaskellDepends = [ base primitive QuickCheck ]; description = "using the `Prim` interface for the FFI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "primitive-indexed" = callPackage @@ -225606,6 +237496,8 @@ self: { libraryHaskellDepends = [ base primitive ]; testHaskellDepends = [ base doctest QuickCheck ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "primitive-maybe" = callPackage @@ -225623,6 +237515,8 @@ self: { ]; description = "Arrays of Maybes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "primitive-offset" = callPackage @@ -225645,6 +237539,8 @@ self: { libraryHaskellDepends = [ base primitive ]; description = "Unboxed variables for `Prim` values"; license = lib.licenses.cc0; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "primitive-serial" = callPackage @@ -225670,6 +237566,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq random vector ]; description = "SIMD data types and functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "primitive-slice" = callPackage @@ -225681,6 +237579,8 @@ self: { libraryHaskellDepends = [ base primitive primitive-unlifted ]; description = "Slices of primitive arrays"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "primitive-sort" = callPackage @@ -225704,6 +237604,8 @@ self: { ]; description = "Sort primitive arrays"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "primitive-stablename" = callPackage @@ -225715,6 +237617,8 @@ self: { libraryHaskellDepends = [ base primitive ]; description = "primitive operations on StableNames"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "primitive-unaligned" = callPackage @@ -225785,6 +237689,7 @@ self: { ]; description = "ImageBoard on Happstack and HSP"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "primula-board"; }) {}; @@ -225804,6 +237709,7 @@ self: { ]; description = "Jabber-bot for primula-board ImageBoard"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "primula-bot"; }) {}; @@ -225842,6 +237748,8 @@ self: { ]; description = "Classes and data structures complementing the singletons library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "print-console-colors" = callPackage @@ -225868,6 +237776,8 @@ self: { libraryHaskellDepends = [ base split ]; description = "Debug print formatting library"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "print-info" = callPackage @@ -225879,6 +237789,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Can be used to coordinate the printing output"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "printcess" = callPackage @@ -225895,6 +237807,8 @@ self: { ]; description = "Pretty printing with indentation, mixfix operators, and automatic line breaks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "printf-mauke" = callPackage @@ -225936,6 +237850,8 @@ self: { ]; description = "The Artist Formerly Known as Prints"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "printxosd" = callPackage @@ -225961,6 +237877,8 @@ self: { libraryHaskellDepends = [ base containers queue reord stateref ]; description = "Simple implementation of a priority queue"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "priority-sync" = callPackage @@ -226051,6 +237969,8 @@ self: { doHaddock = false; description = "Abstract syntax for writing documents"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pro-source" = callPackage @@ -226072,6 +237992,8 @@ self: { ]; description = "Utilities for tracking source locations"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prob" = callPackage @@ -226108,7 +238030,9 @@ self: { executableHaskellDepends = [ base extensible lens ]; description = "A library for modular probabilistic modelling"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "prob-fx"; + broken = true; }) {}; "probability" = callPackage @@ -226144,6 +238068,8 @@ self: { ]; description = "Easy and reasonably efficient probabilistic programming and random generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "proc" = callPackage @@ -226162,6 +238088,7 @@ self: { ]; description = "Parse process information for Linux"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "proc-net" = callPackage @@ -226212,6 +238139,8 @@ self: { ]; description = "Conduits for processes (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "process-extras" = callPackage @@ -226247,6 +238176,7 @@ self: { ]; description = "IterIO Process Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "process-leksah" = callPackage @@ -226258,6 +238188,8 @@ self: { libraryHaskellDepends = [ base directory filepath unix ]; description = "Process libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "process-listlike" = callPackage @@ -226274,6 +238206,8 @@ self: { ]; description = "Process extras"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "process-progress" = callPackage @@ -226290,6 +238224,7 @@ self: { ]; description = "Run a process and do reportsing on its progress"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "process-qq" = callPackage @@ -226306,6 +238241,7 @@ self: { ]; description = "Quasi-Quoters for exec process"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "process-sequential" = callPackage @@ -226317,6 +238253,8 @@ self: { libraryHaskellDepends = [ base directory mmsyn3 process sublists ]; description = "A test suite for the complex multi files multi level processment"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "process-streaming" = callPackage @@ -226348,6 +238286,7 @@ self: { ]; description = "Streaming interface to system processes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "processing" = callPackage @@ -226366,6 +238305,8 @@ self: { ]; description = "Web graphic applications with processing.js."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "processing-for-haskell" = callPackage @@ -226393,6 +238334,8 @@ self: { libraryHaskellDepends = [ base binary bytestring process ]; description = "C bindings for the gnu-extension functions process_vm_readv and process_vm_writev"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "processor-creative-kit" = callPackage @@ -226435,6 +238378,7 @@ self: { libraryHaskellDepends = [ base procrastinating-variable ]; description = "Pure structures that can be incrementally created in impure code"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "procrastinating-variable" = callPackage @@ -226446,6 +238390,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell values that cannot be evaluated immediately"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "procstat" = callPackage @@ -226457,6 +238403,8 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring ]; description = "get information on processes in Linux"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "proctest" = callPackage @@ -226493,6 +238441,7 @@ self: { ]; description = "Simple streaming datatype"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "product" = callPackage @@ -226506,6 +238455,7 @@ self: { libraryHaskellDepends = [ base category ]; description = "Product category"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "product-isomorphic" = callPackage @@ -226518,6 +238468,8 @@ self: { testHaskellDepends = [ base template-haskell ]; description = "Weaken applicative functor on products"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "product-profunctors" = callPackage @@ -226551,7 +238503,9 @@ self: { executableHaskellDepends = [ base optparse-applicative ]; description = "Generate flamegraphs from ghc RTS .prof files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "prof-flamegraph"; + broken = true; }) {}; "prof2dot" = callPackage @@ -226567,6 +238521,7 @@ self: { ]; description = "Convert GHC profiles into GraphViz's dot format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "prof2dot"; }) {}; @@ -226586,6 +238541,8 @@ self: { ]; description = "generate pretty source from time/allocation profiles"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "profiterole" = callPackage @@ -226627,7 +238584,9 @@ self: { ]; description = "Treemap visualiser for GHC prof files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "profiteur"; + broken = true; }) {}; "profunctor-arrows" = callPackage @@ -226678,6 +238637,8 @@ self: { ]; description = "Monadic bidirectional programming"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "profunctor-optics" = callPackage @@ -226755,6 +238716,8 @@ self: { libraryHaskellDepends = [ ansi-terminal async base stm ]; description = "Live diagnostics for concurrent activity"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "progress-reporting" = callPackage @@ -226768,6 +238731,8 @@ self: { libraryHaskellDepends = [ base deepseq mtl time ]; description = "Functionality for reporting function progress"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "progressbar" = callPackage @@ -226781,6 +238746,7 @@ self: { libraryHaskellDepends = [ base io-reactive ]; description = "Progressbar API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "progression" = callPackage @@ -226797,6 +238763,8 @@ self: { ]; description = "Automates the recording and graphing of criterion benchmarks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "progressive" = callPackage @@ -226815,7 +238783,9 @@ self: { ]; description = "Multilabel classification model which learns sequentially (online)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "progressive"; + broken = true; }) {}; "proj4-hs-bindings" = callPackage @@ -226828,6 +238798,8 @@ self: { librarySystemDepends = [ proj ]; description = "Haskell bindings for the Proj4 C dynamic library"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) proj;}; "project-forge" = callPackage @@ -226846,6 +238818,8 @@ self: { testHaskellDepends = [ aeson base filepath tasty tasty-hunit ]; description = "A project initialization library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "project-m36" = callPackage @@ -226921,6 +238895,7 @@ self: { ]; description = "Relational Algebra Engine"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "project-template" = callPackage @@ -226961,6 +238936,8 @@ self: { ]; description = "Go to README.md"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "projection" = callPackage @@ -227002,6 +238979,8 @@ self: { ]; description = "Profunctor-based lightweight implementation of optics"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prolog" = callPackage @@ -227018,6 +238997,8 @@ self: { ]; description = "A Prolog interpreter written in Haskell"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prolog-graph" = callPackage @@ -227035,6 +239016,7 @@ self: { ]; description = "A command line tool to visualize query resolution in Prolog"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "hsprolog-graph"; }) {}; @@ -227047,6 +239029,7 @@ self: { libraryHaskellDepends = [ base fgl graphviz mtl prolog text ]; description = "Generating images of resolution trees for Prolog queries"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "prologue" = callPackage @@ -227072,6 +239055,7 @@ self: { ]; description = "Better, more general Prelude exporting common utilities"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "prolude" = callPackage @@ -227093,6 +239077,7 @@ self: { ]; description = "ACI Learning's custom prelude"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "prometheus" = callPackage @@ -227166,7 +239151,9 @@ self: { benchmarkHaskellDepends = [ base criterion text ]; description = "Instrument applications with metrics and publish/push to Prometheus"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "test"; + broken = true; }) {}; "prometheus-metrics-ghc" = callPackage @@ -227219,7 +239206,9 @@ self: { ]; description = "Instrument a wai application with various metrics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "prometheus-wai-middleware-example"; + broken = true; }) {}; "promise" = callPackage @@ -227231,6 +239220,8 @@ self: { libraryHaskellDepends = [ async base ]; description = "A monadic interface for async"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "promises" = callPackage @@ -227273,6 +239264,8 @@ self: { ]; description = "A library for interfacing with the CMU Pronouncing Dictionary"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "proof-assistant-bot" = callPackage @@ -227305,6 +239298,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Proof Combinators used in Liquid Haskell for Theorem Proving"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prop-unit" = callPackage @@ -227320,6 +239315,8 @@ self: { ]; description = "Conveniences for using Hedgehog as a unit test runner"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "propane" = callPackage @@ -227335,6 +239332,7 @@ self: { ]; description = "Functional synthesis of images and animations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "propeller" = callPackage @@ -227379,6 +239377,8 @@ self: { libraryHaskellDepends = [ base ]; description = "check quickCheck properties in real time"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "property" = callPackage @@ -227409,6 +239409,8 @@ self: { ]; description = "Apple property list parser"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "proplang" = callPackage @@ -227420,6 +239422,7 @@ self: { libraryHaskellDepends = [ base glade glib gtk ]; description = "A library for functional GUI development"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "props" = callPackage @@ -227472,6 +239475,8 @@ self: { ]; description = "A simple language for writing documents"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prosidyc" = callPackage @@ -227488,6 +239493,7 @@ self: { ]; description = "A DSL for processing Prosidy documents"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "prospect" = callPackage @@ -227523,6 +239529,8 @@ self: { ]; description = "Bindings to the Prosper marketplace API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "proteaaudio" = callPackage @@ -227541,6 +239549,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "Simple audio library for Windows, Linux, OSX"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {libpulse = null; libpulse-simple = null; inherit (pkgs) libpulseaudio;}; @@ -227628,6 +239638,8 @@ self: { ]; description = "Arbitrary instances for proto-lens"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "proto-lens-combinators" = callPackage @@ -227649,6 +239661,7 @@ self: { ]; description = "Utilities functions to proto-lens"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "proto-lens-descriptors" = callPackage @@ -227665,6 +239678,7 @@ self: { ]; description = "Protocol buffers for describing the definitions of messages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "proto-lens-jsonpb" = callPackage @@ -227712,6 +239726,7 @@ self: { libraryToolDepends = [ proto-lens-protoc protobuf ]; description = "Basic protocol buffer message types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) protobuf;}; "proto-lens-protoc" = callPackage @@ -227733,6 +239748,7 @@ self: { ]; description = "Protocol buffer compiler for the proto-lens library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "proto-lens-protoc"; }) {inherit (pkgs) protobuf;}; @@ -227766,6 +239782,7 @@ self: { ]; description = "Cabal support for codegen with proto-lens"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "proto3-suite" = callPackage @@ -227810,6 +239827,7 @@ self: { ]; description = "A higher-level API to the proto3-wire library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "proto3-wire" = callPackage @@ -227835,6 +239853,8 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion random ]; description = "A low-level implementation of the Protocol Buffers (version 3) wire format"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "protobuf" = callPackage @@ -227896,6 +239916,7 @@ self: { ]; description = "Protocol Buffers via C++"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "protobuf-native-test"; }) {}; @@ -227934,6 +239955,8 @@ self: { libraryHaskellDepends = [ base freer-indexed singletons ]; description = "Model distributed system as type-level multi-party protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "protocol-buffers" = callPackage @@ -227951,6 +239974,8 @@ self: { ]; description = "Parse Google Protocol Buffer specifications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "protocol-buffers-descriptor" = callPackage @@ -227967,6 +239992,7 @@ self: { ]; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "protocol-buffers-descriptor-fork" = callPackage @@ -227983,6 +240009,7 @@ self: { ]; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "protocol-buffers-fork" = callPackage @@ -227999,6 +240026,8 @@ self: { ]; description = "Parse Google Protocol Buffer specifications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "protocol-radius" = callPackage @@ -228065,6 +240094,8 @@ self: { ]; description = "Protolude with lifted-base and lifted-async"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "proton" = callPackage @@ -228082,6 +240113,7 @@ self: { transformers ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "proton-haskell" = callPackage @@ -228100,6 +240132,8 @@ self: { ]; description = "Simple XML templating library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prototype" = callPackage @@ -228111,6 +240145,8 @@ self: { libraryHaskellDepends = [ base monads-tf ]; description = "prototype-based programming on Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prove-everywhere-server" = callPackage @@ -228131,7 +240167,9 @@ self: { ]; description = "The server for ProveEverywhere"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "prove-everywhere-server"; + broken = true; }) {}; "provenience" = callPackage @@ -228150,6 +240188,8 @@ self: { ]; description = "Computations that automatically track data dependencies"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "proxied" = callPackage @@ -228183,6 +240223,8 @@ self: { libraryHaskellDepends = [ base tagged ]; description = "A library for kind-polymorphic manipulation and inspection of Proxy values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "proxy-mapping" = callPackage @@ -228194,6 +240236,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Mapping of Proxy Types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "prune-juice" = callPackage @@ -228226,7 +240270,9 @@ self: { ]; description = "Prune unused Haskell dependencies"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "prune-juice"; + broken = true; }) {}; "psc-ide" = callPackage @@ -228256,6 +240302,7 @@ self: { ]; description = "Language support for the PureScript programming language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "pseudo-boolean" = callPackage @@ -228293,6 +240340,8 @@ self: { libraryHaskellDepends = [ base semigroups ]; description = "A tagged rose-tree with short circuited unique leaves"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pseudomacros" = callPackage @@ -228317,6 +240366,8 @@ self: { ]; description = "Yet another custom Prelude"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "psql" = callPackage @@ -228342,6 +240393,7 @@ self: { ]; description = "PostgreSQL client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "psql-helpers" = callPackage @@ -228405,7 +240457,9 @@ self: { executableHaskellDepends = [ base text ]; description = "A Haskell Implementation of the Porter Stemmer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pstemmer-test-exe"; + broken = true; }) {}; "psx" = callPackage @@ -228418,6 +240472,8 @@ self: { testHaskellDepends = [ async base tasty tasty-hunit ]; description = "Integrate libpsx with the GHC RTS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ptera" = callPackage @@ -228441,6 +240497,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "A parser generator"; license = "(Apache-2.0 OR MPL-2.0)"; + hydraPlatforms = lib.platforms.none; }) {}; "ptera-core" = callPackage @@ -228464,6 +240521,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "A parser generator"; license = "(Apache-2.0 OR MPL-2.0)"; + hydraPlatforms = lib.platforms.none; }) {}; "ptera-th" = callPackage @@ -228489,6 +240547,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "A parser generator"; license = "(Apache-2.0 OR MPL-2.0)"; + hydraPlatforms = lib.platforms.none; }) {}; "pthread" = callPackage @@ -228571,6 +240630,8 @@ self: { ]; description = "Pipe stdin to a redis pub/sub channel"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "publicsuffix" = callPackage @@ -228586,6 +240647,8 @@ self: { benchmarkHaskellDepends = [ base criterion random ]; description = "The publicsuffix list exposed as proper Haskell types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "publicsuffixlist" = callPackage @@ -228622,6 +240685,8 @@ self: { testHaskellDepends = [ base cereal HUnit publicsuffixlist ]; description = "Create the publicsuffixlist package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "publish" = callPackage @@ -228651,6 +240716,8 @@ self: { ]; description = "Publishing tools for papers, books, and presentations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pubnub" = callPackage @@ -228683,6 +240750,8 @@ self: { ]; description = "PubNub Haskell SDK"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pubsub" = callPackage @@ -228701,6 +240770,8 @@ self: { executableHaskellDepends = [ fastcgi ]; description = "A library for Google/SixApart pubsub hub interaction"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "puffytools" = callPackage @@ -228730,6 +240801,7 @@ self: { ]; description = "A CLI assistant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ptk"; }) {}; @@ -228747,6 +240819,8 @@ self: { testHaskellDepends = [ base bytestring tasty tasty-hunit ]; description = "pugixml binding"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pugs-DrIFT" = callPackage @@ -228770,7 +240844,9 @@ self: { ]; description = "DrIFT with pugs-specific rules"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pugs-DrIFT"; + broken = true; }) {}; "pugs-HsSyck" = callPackage @@ -228783,6 +240859,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Fast, lightweight YAML loader and dumper"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pugs-compat" = callPackage @@ -228802,6 +240880,7 @@ self: { ]; description = "Portable Haskell/POSIX layer for Pugs"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "pugs-hsregex" = callPackage @@ -228813,6 +240892,7 @@ self: { libraryHaskellDepends = [ array base haskell98 ]; description = "Haskell PCRE binding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pulse" = callPackage @@ -228869,6 +240949,7 @@ self: { ]; description = "Multilingual unsupervised sentence tokenization with Punkt"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "punycode" = callPackage @@ -228903,6 +240984,7 @@ self: { ]; description = "A program that displays the puppet resources associated to a node given .pp files."; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "puppetresources"; }) {}; @@ -228922,6 +241004,7 @@ self: { ]; description = "Another pure-haskell CDB (Constant Database) implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "pure-fft" = callPackage @@ -228946,6 +241029,8 @@ self: { libraryHaskellDepends = [ base containers mtl safe ]; description = "Pure IO monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pure-priority-queue" = callPackage @@ -228957,6 +241042,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A pure priority queue"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pure-priority-queue-tests" = callPackage @@ -228975,6 +241062,7 @@ self: { ]; description = "Tests for the pure-priority-queue package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pure-priority-queue-tests"; }) {}; @@ -229021,7 +241109,9 @@ self: { ]; description = "A Haskell-only implementation of zlib / DEFLATE"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "deflate"; + broken = true; }) {}; "pureMD5" = callPackage @@ -229089,6 +241179,7 @@ self: { executableHaskellDepends = [ base ]; description = "Nix backend for PureScript. Transpile PureScript code to Nix."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "purenix"; }) {}; @@ -229179,6 +241270,7 @@ self: { doCheck = false; description = "PureScript Programming Language Compiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "purs"; }) {}; @@ -229197,6 +241289,8 @@ self: { ]; description = "PureScript Programming Language Abstract Syntax Tree"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "purescript-bridge" = callPackage @@ -229254,6 +241348,8 @@ self: { libraryToolDepends = [ happy ]; description = "PureScript Programming Language Concrete Syntax Tree"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "purescript-iso" = callPackage @@ -229283,6 +241379,7 @@ self: { ]; description = "Isomorphic trivial data type definitions over JSON"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "purescript-tsd-gen" = callPackage @@ -229305,6 +241402,7 @@ self: { ]; description = "TypeScript Declaration File (.d.ts) generator for PureScript"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "purs-tsd-gen"; }) {}; @@ -229322,6 +241420,7 @@ self: { executableHaskellDepends = [ base text ]; description = "A cli client for pursuit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pursuit-search"; }) {}; @@ -229345,6 +241444,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Build server rendered, interactive websites"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "push-notifications" = callPackage @@ -229364,6 +241465,8 @@ self: { ]; description = "Push notifications for Android and iOS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "push-notify" = callPackage @@ -229387,6 +241490,7 @@ self: { ]; description = "A server-side library for sending push notifications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "push-notify-apn" = callPackage @@ -229412,6 +241516,7 @@ self: { testHaskellDepends = [ aeson base hspec ]; description = "Send push notifications to mobile iOS devices"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sendapn"; }) {}; @@ -229432,6 +241537,7 @@ self: { ]; description = "A server-side library for sending/receiving push notifications through CCS (Google Cloud Messaging)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "push-notify-general" = callPackage @@ -229450,6 +241556,7 @@ self: { ]; description = "A general library for sending/receiving push notif. through dif. services."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "pushbullet" = callPackage @@ -229466,6 +241573,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Simple push support for pushbullet"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pushbullet-types" = callPackage @@ -229482,6 +241591,8 @@ self: { ]; description = "Datatypes used by the Pushbullet APIs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pusher-haskell" = callPackage @@ -229498,6 +241609,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "A Pusher.com client written in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pusher-http-haskell" = callPackage @@ -229538,6 +241651,8 @@ self: { ]; description = "Implementation of the Pusher WebSocket protocol"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pushme" = callPackage @@ -229563,7 +241678,9 @@ self: { ]; description = "Tool to synchronize directories with rsync, zfs or git-annex"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pushme"; + broken = true; }) {}; "pushover" = callPackage @@ -229600,6 +241717,8 @@ self: { ]; description = "Put-based lens library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "puzzle-draw" = callPackage @@ -229631,6 +241750,8 @@ self: { ]; description = "Creating graphics for pencil puzzles"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "puzzle-draw-cmdline" = callPackage @@ -229649,6 +241770,7 @@ self: { ]; description = "Creating graphics for pencil puzzles, command line tools"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "drawpuzzle"; }) {}; @@ -229687,6 +241809,7 @@ self: { executableSystemDepends = [ libdevil ]; description = "A photo viewer daemon application with remote controlling abilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libdevil;}; "pvector" = callPackage @@ -229713,6 +241836,8 @@ self: { ]; description = "Fast persistent vectors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "pvss" = callPackage @@ -229820,6 +241945,8 @@ self: { libraryPkgconfigDepends = [ python ]; description = "Call python inline from haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {python = null;}; "pyfi" = callPackage @@ -229836,6 +241963,8 @@ self: { libraryPkgconfigDepends = [ python ]; description = "Call python inline from haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {python = null;}; "python-pickle" = callPackage @@ -229859,7 +241988,9 @@ self: { ]; description = "Serialization/deserialization using Python Pickle format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pickle"; + broken = true; }) {}; "q4c12-twofinger" = callPackage @@ -229878,6 +242009,8 @@ self: { ]; description = "Efficient alternating finger trees"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "qbe" = callPackage @@ -229911,6 +242044,8 @@ self: { ]; description = "Compile time generation of operation invariance tests for QuickCheck"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "qchas" = callPackage @@ -229940,6 +242075,8 @@ self: { librarySystemDepends = [ qd ]; description = "double-double and quad-double number type via libqd"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {qd = null;}; "qd-vec" = callPackage @@ -229951,6 +242088,7 @@ self: { libraryHaskellDepends = [ base qd Vec ]; description = "'Vec' instances for 'qd' types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "qed" = callPackage @@ -229969,6 +242107,8 @@ self: { testHaskellDepends = [ base transformers ]; description = "Simple prover"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "qhs" = callPackage @@ -229992,6 +242132,7 @@ self: { ]; description = "Command line tool qhs, SQL queries on CSV and TSV files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "qhs"; }) {}; @@ -230021,6 +242162,7 @@ self: { ]; description = "Delaunay triangulation, Voronoi diagrams and convex hulls"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "qhull-simple" = callPackage @@ -230033,6 +242175,8 @@ self: { librarySystemDepends = [ qhull ]; description = "Simple bindings to Qhull, a library for computing convex hulls"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) qhull;}; "qif" = callPackage @@ -230052,6 +242196,8 @@ self: { ]; description = "A simple QIF file format parser / printer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "qlinear" = callPackage @@ -230072,6 +242218,8 @@ self: { ]; description = "Typesafe library for linear algebra"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "qm-interpolated-string" = callPackage @@ -230119,6 +242267,7 @@ self: { ]; description = "Decrypt files encrypted by QNAP's Hybrid Backup Sync"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "qnap-decrypt"; }) {}; @@ -230170,6 +242319,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Library to generate images"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) qrencode;}; "qr-repa" = callPackage @@ -230189,6 +242340,7 @@ self: { executableHaskellDepends = [ base bytestring ]; description = "Library to generate QR codes from bytestrings and objects and scale image files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "qrpipe"; }) {}; @@ -230202,6 +242354,8 @@ self: { libraryHaskellDepends = [ array base containers mtl vector ]; description = "QR Code library in pure Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "qrcode-core" = callPackage @@ -230263,6 +242417,8 @@ self: { ]; description = "Qt bindings"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {qtc_core = null; qtc_gui = null; qtc_network = null; qtc_opengl = null; qtc_script = null; qtc_tools = null;}; @@ -230281,6 +242437,7 @@ self: { librarySystemDepends = [ qtbase ]; description = "Qt bindings for Haskell - C++ library"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs.qt5) qtbase;}; "qtah-examples" = callPackage @@ -230298,6 +242455,7 @@ self: { ]; description = "Example programs for Qtah Qt bindings"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "qtah-examples"; }) {}; @@ -230319,6 +242477,7 @@ self: { executableHaskellDepends = [ base ]; description = "Generator for Qtah Qt bindings"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "qtah-generator"; }) {}; @@ -230341,6 +242500,7 @@ self: { testHaskellDepends = [ base hoppy-runtime HUnit ]; description = "Qt bindings for Haskell"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs.qt5) qtbase;}; "quaalude" = callPackage @@ -230401,6 +242561,8 @@ self: { testHaskellDepends = [ base text ]; description = "GHC plugin to automatically insert qualified imports"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quandl-api" = callPackage @@ -230418,6 +242580,8 @@ self: { ]; description = "Quandl.com API library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quantfin" = callPackage @@ -230437,6 +242601,7 @@ self: { executableHaskellDepends = [ base ]; description = "Quant finance library in pure Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -230454,6 +242619,8 @@ self: { ]; description = "Rage against the quantification"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quantities" = callPackage @@ -230499,6 +242666,8 @@ self: { libraryHaskellDepends = [ base MonadRandom mtl QuickCheck random ]; description = "An embedding of quantum computation as a Haskell arrow"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quantum-random" = callPackage @@ -230521,6 +242690,7 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Retrieve, store and manage real quantum random data"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "qrand"; }) {}; @@ -230543,7 +242713,9 @@ self: { ]; description = "Coronavirus quarantine timer web app for your things"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "quarantimer"; + broken = true; }) {}; "qudb" = callPackage @@ -230562,7 +242734,9 @@ self: { executableToolDepends = [ alex happy ]; description = "Quite Useless DB"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "qudb"; + broken = true; }) {}; "quenya-verb" = callPackage @@ -230585,7 +242759,9 @@ self: { executableHaskellDepends = [ base ]; description = "Quenya verb conjugator"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "quenya-verb-server"; + broken = true; }) {}; "queryparser" = callPackage @@ -230605,6 +242781,7 @@ self: { benchmarkHaskellDepends = [ base criterion text ]; description = "Analysis and parsing library for SQL queries"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "queryparser-demo" = callPackage @@ -230621,6 +242798,7 @@ self: { ]; description = "Demo package containing queryparser examples"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "queryparser-hive" = callPackage @@ -230640,6 +242818,7 @@ self: { ]; description = "Parsing for Hive SQL queries"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "queryparser-presto" = callPackage @@ -230659,6 +242838,7 @@ self: { ]; description = "Parsing for Presto SQL queries"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "queryparser-vertica" = callPackage @@ -230678,6 +242858,7 @@ self: { ]; description = "Parsing for Vertica SQL queries"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "querystring-pickle" = callPackage @@ -230695,6 +242876,8 @@ self: { ]; description = "Picklers for de/serialising Generic data types to and from query strings"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "questioner" = callPackage @@ -230710,6 +242893,8 @@ self: { ]; description = "A package for prompting values from the command-line"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "queue" = callPackage @@ -230758,6 +242943,7 @@ self: { libraryHaskellDepends = [ array base containers mtl stateful-mtl ]; description = "A library of queuelike data structures, both functional and stateful"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quibble-core" = callPackage @@ -230778,6 +242964,8 @@ self: { ]; description = "Convenient SQL query language for Haskell (but only for single tables)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quic" = callPackage @@ -230808,6 +242996,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "QUIC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quick-generator" = callPackage @@ -230838,6 +243028,8 @@ self: { ]; description = "Slimmed down json schema language and validator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quickbench" = callPackage @@ -230858,6 +243050,7 @@ self: { testHaskellDepends = [ base ]; description = "quick & easy benchmarking of command-line programs"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "quickbench"; }) {}; @@ -230877,6 +243070,8 @@ self: { ]; description = "QuickBooks API binding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quickcheck-arbitrary-adt" = callPackage @@ -230910,6 +243105,8 @@ self: { ]; description = "Generate QuickCheck Gen for Sum Types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quickcheck-assertions" = callPackage @@ -230971,6 +243168,8 @@ self: { sha256 = "0qdjls949kmcv8wj3a27p4dz8nb1dq4i99zizkw7qyqn47r9ccxd"; libraryHaskellDepends = [ base QuickCheck unfoldable-restricted ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quickcheck-dynamic" = callPackage @@ -230982,6 +243181,8 @@ self: { libraryHaskellDepends = [ base containers mtl QuickCheck random ]; description = "A library for stateful property-based testing"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quickcheck-enum-instances" = callPackage @@ -231111,6 +243312,7 @@ self: { ]; description = "Library for lockstep-style testing with 'quickcheck-dynamic'"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quickcheck-monoid-subclasses" = callPackage @@ -231178,6 +243380,7 @@ self: { ]; description = "Automating QuickCheck for polymorphic and overlaoded properties"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quickcheck-properties" = callPackage @@ -231200,6 +243403,8 @@ self: { libraryHaskellDepends = [ base mtl QuickCheck ]; description = "Combinators for Quickcheck Property construction and diagnostics"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quickcheck-property-monad" = callPackage @@ -231211,6 +243416,8 @@ self: { libraryHaskellDepends = [ base either QuickCheck transformers ]; description = "A monad for generating QuickCheck properties without Arbitrary instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quickcheck-quid" = callPackage @@ -231248,6 +243455,7 @@ self: { ]; description = "Generate regex-constrained strings for QuickCheck"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "quickcheck-relaxng" = callPackage @@ -231263,6 +243471,7 @@ self: { ]; description = "Generate RelaxNG-constrained XML documents for QuickCheck"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "quickcheck-rematch" = callPackage @@ -231275,6 +243484,8 @@ self: { testHaskellDepends = [ base hspec HUnit QuickCheck rematch ]; description = "QuickCheck support for rematch"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quickcheck-report" = callPackage @@ -231290,6 +243501,8 @@ self: { ]; description = "Customizable reports for quickcheck properties"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quickcheck-script" = callPackage @@ -231365,6 +243578,7 @@ self: { ]; description = "Test monadic programs using state machine based models"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quickcheck-state-machine-distributed" = callPackage @@ -231388,6 +243602,7 @@ self: { ]; description = "Test monadic programs using state machine based models"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "quickcheck-string-random" = callPackage @@ -231450,6 +243665,8 @@ self: { libraryHaskellDepends = [ base QuickCheck transformers webdriver ]; description = "Utilities for using WebDriver with QuickCheck"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quickcheck-with-counterexamples" = callPackage @@ -231484,6 +243701,8 @@ self: { ]; description = "Wrapper for the QuickJS Javascript Engine"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quicklz" = callPackage @@ -231516,7 +243735,9 @@ self: { testHaskellDepends = [ base directory filepath QuickCheck ]; description = "Generate Main module with QuickCheck tests"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "quickpull"; + broken = true; }) {}; "quickselect" = callPackage @@ -231542,6 +243763,8 @@ self: { libraryHaskellDepends = [ base vector vector-algorithms ]; description = "Very fast and memory-compact query-only set and map structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quickson" = callPackage @@ -231553,6 +243776,8 @@ self: { libraryHaskellDepends = [ aeson attoparsec base bytestring text ]; description = "Quick JSON extractions with Aeson"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quickspec" = callPackage @@ -231571,6 +243796,8 @@ self: { ]; description = "Equational laws for free!"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quickterm" = callPackage @@ -231605,6 +243832,7 @@ self: { ]; description = "A reflective batch tester for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "quicktest"; }) {}; @@ -231624,6 +243852,8 @@ self: { ]; description = "A quick webapp generator for any file processing tool"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quiet" = callPackage @@ -231652,6 +243882,7 @@ self: { doHaddock = false; description = "Meta-package for Quipper"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quipper-algorithms" = callPackage @@ -231675,6 +243906,7 @@ self: { executableHaskellDepends = [ base ]; description = "A set of algorithms implemented in Quipper"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quipper-all" = callPackage @@ -231690,6 +243922,7 @@ self: { doHaddock = false; description = "Meta-package for Quipper"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quipper-cabal" = callPackage @@ -231701,6 +243934,7 @@ self: { libraryHaskellDepends = [ base Cabal process quipper-language ]; description = "Some functions to aid in the creation of Cabal packages for Quipper"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quipper-core" = callPackage @@ -231716,6 +243950,8 @@ self: { ]; description = "An embedded, scalable functional programming language for quantum computing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quipper-demos" = callPackage @@ -231736,6 +243972,7 @@ self: { doHaddock = false; description = "Miscellaneous code snippets that illustrate various Quipper features"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quipper-language" = callPackage @@ -231756,6 +243993,7 @@ self: { executableHaskellDepends = [ base process ]; description = "Quipper, an embedded functional programming language for quantum computation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quipper-libraries" = callPackage @@ -231778,6 +244016,7 @@ self: { ]; description = "The standard libraries for Quipper"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quipper-rendering" = callPackage @@ -231794,6 +244033,7 @@ self: { ]; description = "An embedded, scalable functional programming language for quantum computing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quipper-tools" = callPackage @@ -231815,6 +244055,7 @@ self: { doHaddock = false; description = "Miscellaneous stand-alone tools for Quipper"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quipper-utils" = callPackage @@ -231831,6 +244072,7 @@ self: { ]; description = "Utility libraries for Quipper"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quiver" = callPackage @@ -231842,6 +244084,8 @@ self: { libraryHaskellDepends = [ base mmorph transformers ]; description = "Quiver finite stream processing library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quiver-binary" = callPackage @@ -231858,6 +244102,7 @@ self: { testHaskellDepends = [ base hspec QuickCheck quiver transformers ]; description = "Binary serialisation support for Quivers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "quiver-bytestring" = callPackage @@ -231869,6 +244114,7 @@ self: { libraryHaskellDepends = [ base bytestring quiver ]; description = "Quiver combinators for bytestring streaming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quiver-cell" = callPackage @@ -231880,6 +244126,7 @@ self: { libraryHaskellDepends = [ base data-cell quiver ]; description = "Quiver combinators for cellular data processing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quiver-csv" = callPackage @@ -231895,6 +244142,7 @@ self: { ]; description = "Quiver combinators for cellular CSV data processing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quiver-enumerator" = callPackage @@ -231906,6 +244154,7 @@ self: { libraryHaskellDepends = [ base enumerator quiver ]; description = "Bridge between Quiver and Iteratee paradigms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quiver-groups" = callPackage @@ -231918,6 +244167,7 @@ self: { testHaskellDepends = [ base hspec QuickCheck quiver ]; description = "Group and chunk values within a Quiver"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "quiver-http" = callPackage @@ -231935,6 +244185,7 @@ self: { ]; description = "Adapter to stream over HTTP(s) with quiver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "quiver-instances" = callPackage @@ -231950,6 +244201,7 @@ self: { ]; description = "Extra instances for Quiver"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "quiver-interleave" = callPackage @@ -231962,6 +244214,7 @@ self: { testHaskellDepends = [ base hspec QuickCheck quiver ]; description = "Interleave values from multiple Quivers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "quiver-sort" = callPackage @@ -231985,6 +244238,7 @@ self: { ]; description = "Sort the values in a quiver"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "quokka" = callPackage @@ -232003,6 +244257,8 @@ self: { ]; description = "Test helpers which help generate data for projects that use postgresql"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "quoridor-hs" = callPackage @@ -232027,7 +244283,9 @@ self: { testHaskellDepends = [ base HUnit mtl ]; description = "A Quoridor implementation in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "quoridor-exec"; + broken = true; }) {}; "quote-quot" = callPackage @@ -232076,6 +244334,7 @@ self: { ]; description = "Command line binary for working with the Qux language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "qux"; }) {}; @@ -232178,6 +244437,7 @@ self: { executableHaskellDepends = [ base ]; description = "A library and program to create QIF files from Rabobank CSV exports"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "rabocsv2qif"; }) {}; @@ -232190,6 +244450,8 @@ self: { libraryHaskellDepends = [ array base containers data-reify ]; description = "Reverse Automatic Differentiation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "radian" = callPackage @@ -232202,6 +244464,8 @@ self: { testHaskellDepends = [ base HUnit lens ]; description = "Isomorphisms for measurements that use radians"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "radium" = callPackage @@ -232218,6 +244482,8 @@ self: { ]; description = "Chemistry"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "radium-formula-parser" = callPackage @@ -232233,6 +244499,8 @@ self: { ]; description = "Chemistry"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "radius" = callPackage @@ -232261,7 +244529,9 @@ self: { executableHaskellDepends = [ base filepath ]; description = "Command-line tool for emitting numbers in various bases"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "radix"; + broken = true; }) {}; "radix-tree" = callPackage @@ -232330,6 +244600,8 @@ self: { ]; description = "librados haskell bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {rados = null;}; "raft" = callPackage @@ -232348,6 +244620,8 @@ self: { ]; description = "Miscellaneous Haskell utilities for data structures and data manipulation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rail-compiler-editor" = callPackage @@ -232370,6 +244644,7 @@ self: { testHaskellDepends = [ base containers HUnit process ]; description = "Compiler and editor for the esolang rail"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "rails-session" = callPackage @@ -232393,6 +244668,7 @@ self: { ]; description = "Decrypt Ruby on Rails sessions in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rainbow" = callPackage @@ -232423,6 +244699,7 @@ self: { ]; description = "Tests and QuickCheck generators to accompany rainbow"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rainbox" = callPackage @@ -232483,6 +244760,7 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "distributed-process node"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "raketka"; }) {}; @@ -232500,6 +244778,8 @@ self: { ]; description = "Stream based PDF library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rakuten" = callPackage @@ -232524,6 +244804,8 @@ self: { ]; description = "The Rakuten API in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ral" = callPackage @@ -232589,6 +244871,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "Random access list with a list compatible interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rallod" = callPackage @@ -232601,6 +244885,7 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "'$' in reverse"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "raml" = callPackage @@ -232616,6 +244901,8 @@ self: { ]; description = "RESTful API Modeling Language (RAML) library for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rampart" = callPackage @@ -232653,6 +244940,8 @@ self: { libraryHaskellDepends = [ array base IntervalMap mtl random ]; description = "Random variable library, with Functor, Applicative and Monad instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "randfile" = callPackage @@ -232671,6 +244960,7 @@ self: { ]; description = "Program for picking a random file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "randfile"; }) {}; @@ -232686,6 +244976,8 @@ self: { ]; description = "Easy-to-use randomness for livecoding"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "random" = callPackage @@ -232730,6 +245022,7 @@ self: { ]; description = "Random file access methods, supporting application-level page cache"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "random-access-list" = callPackage @@ -232741,6 +245034,8 @@ self: { libraryHaskellDepends = [ array base containers ]; description = "Random-access lists in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "random-bytestring" = callPackage @@ -232771,6 +245066,7 @@ self: { libraryHaskellDepends = [ base primitive transformers util ]; description = "Class of random value generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "random-cycle" = callPackage @@ -232792,6 +245088,8 @@ self: { benchmarkHaskellDepends = [ base criterion random vector ]; description = "Uniform draws of partitions and cycle-partitions, with thinning"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "random-derive" = callPackage @@ -232803,6 +245101,8 @@ self: { libraryHaskellDepends = [ base random template-haskell ]; description = "A Template Haskell helper for deriving Random instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "random-eff" = callPackage @@ -232814,6 +245114,8 @@ self: { libraryHaskellDepends = [ base extensible-effects random ]; description = "A simple random generator library for extensible-effects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "random-effin" = callPackage @@ -232825,6 +245127,7 @@ self: { libraryHaskellDepends = [ base effin random ]; description = "A simple random generator library for effin"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "random-extras" = callPackage @@ -232839,6 +245142,7 @@ self: { ]; description = "Additional functions for random values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "random-fu" = callPackage @@ -232885,6 +245189,7 @@ self: { ]; description = "Random variate generation from hypergeometric distributions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "random-names" = callPackage @@ -232924,6 +245229,8 @@ self: { ]; description = "Generic basis for random number generators"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "random-stream" = callPackage @@ -232935,6 +245242,8 @@ self: { libraryHaskellDepends = [ base binary bytestring random ]; description = "An infinite stream of random data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "random-string" = callPackage @@ -232951,6 +245260,8 @@ self: { ]; description = "Generate a random base 16, 58, or 64 string"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "random-strings" = callPackage @@ -233103,6 +245414,7 @@ self: { ]; description = "A Range type with vector-space instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ranged-list" = callPackage @@ -233127,6 +245439,8 @@ self: { libraryHaskellDepends = [ base containers primitive vector ]; description = "Linear range-min algorithms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ranges" = callPackage @@ -233175,7 +245489,9 @@ self: { ]; description = "Find the rank product of a data set"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "rank-product"; + broken = true; }) {}; "rank1dynamic" = callPackage @@ -233192,6 +245508,8 @@ self: { ]; description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rank2classes" = callPackage @@ -233229,6 +245547,8 @@ self: { ]; description = "Rapid prototyping with GHCi: hot reloading of running components and reload-surviving values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rapid-term" = callPackage @@ -233244,6 +245564,8 @@ self: { ]; description = "External terminal support for rapid"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rasa" = callPackage @@ -233268,6 +245590,7 @@ self: { ]; description = "A modular text editor"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "rasa-example-config" = callPackage @@ -233287,6 +245610,7 @@ self: { ]; description = "Example user config for Rasa"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "rasa"; }) {}; @@ -233302,6 +245626,7 @@ self: { ]; description = "Rasa Ext for useful buffer utilities"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-cmd" = callPackage @@ -233316,6 +245641,7 @@ self: { ]; description = "Rasa Ext for running commands"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-cursors" = callPackage @@ -233331,6 +245657,7 @@ self: { ]; description = "Rasa Ext adding cursor(s)"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-files" = callPackage @@ -233347,6 +245674,7 @@ self: { ]; description = "Rasa Ext for filesystem actions"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-logger" = callPackage @@ -233358,6 +245686,7 @@ self: { libraryHaskellDepends = [ base lens mtl rasa ]; description = "Rasa Ext for logging state/actions"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-slate" = callPackage @@ -233374,6 +245703,7 @@ self: { ]; description = "Rasa extension for rendering to terminal with vty"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-status-bar" = callPackage @@ -233385,6 +245715,7 @@ self: { libraryHaskellDepends = [ base data-default lens rasa yi-rope ]; description = "Rasa Ext for populating status-bar"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-style" = callPackage @@ -233396,6 +245727,7 @@ self: { libraryHaskellDepends = [ base data-default lens rasa ]; description = "Rasa Ext managing rendering styles"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-views" = callPackage @@ -233412,6 +245744,7 @@ self: { ]; description = "Rasa Ext managing rendering views"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "rasa-ext-vim" = callPackage @@ -233430,6 +245763,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "Rasa Ext for vim bindings"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "rascal" = callPackage @@ -233458,6 +245792,7 @@ self: { ]; description = "A command-line client for Reddit"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "rascal"; }) {}; @@ -233580,6 +245915,8 @@ self: { benchmarkHaskellDepends = [ base-noprelude gauge relude ]; description = "Client for rating.chgk.info API and CSV tables (documentation in Russian)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rating-systems" = callPackage @@ -233618,6 +245955,8 @@ self: { ]; description = "finite or repeating lists"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rattle" = callPackage @@ -233651,6 +245990,8 @@ self: { ]; description = "Forward build system, with caching and speculation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rattletrap" = callPackage @@ -233671,7 +246012,9 @@ self: { testHaskellDepends = [ base bytestring filepath ]; description = "Parse and generate Rocket League replays"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "rattletrap"; + broken = true; }) {}; "rattletrap_12_1_1" = callPackage @@ -233694,6 +246037,7 @@ self: { license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; mainProgram = "rattletrap"; + broken = true; }) {}; "raven-haskell" = callPackage @@ -233728,6 +246072,8 @@ self: { ]; description = "Sentry http interface for Scotty web server"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "raw-feldspar" = callPackage @@ -233751,6 +246097,7 @@ self: { ]; description = "Resource-Aware Feldspar"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "raw-strings-qq" = callPackage @@ -233794,6 +246141,7 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "Anonymous extensible records"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rawstring-qm" = callPackage @@ -233818,6 +246166,8 @@ self: { libraryHaskellDepends = [ base h-raylib ]; description = "Haskell bindings for rlImGui"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "raz" = callPackage @@ -233835,6 +246185,8 @@ self: { ]; description = "Random Access Zippers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "razom-text-util" = callPackage @@ -233853,6 +246205,7 @@ self: { testHaskellDepends = [ base QuickCheck regex-applicative smaoin ]; description = "Common text/parsing tools for Razom language packages"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "rbpcp-api" = callPackage @@ -233888,6 +246241,7 @@ self: { executableHaskellDepends = [ base bio bytestring containers ]; description = "Mask nucleotide (EST) sequences in Fasta format"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "rbst" = callPackage @@ -233910,6 +246264,8 @@ self: { benchmarkHaskellDepends = [ base gauge mwc-random ]; description = "Randomized Binary Search Trees"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rc" = callPackage @@ -233933,6 +246289,7 @@ self: { ]; description = "Reservoir Computing, fast RNNs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ntc"; }) {}; @@ -233949,6 +246306,8 @@ self: { ]; description = "Haskell client for Rserve"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rcu" = callPackage @@ -234020,7 +246379,9 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq text ]; description = "A library for RDF processing in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rdf4h"; + broken = true; }) {}; "rdioh" = callPackage @@ -234043,6 +246404,7 @@ self: { ]; description = "A Haskell wrapper for Rdio's API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "rdtsc" = callPackage @@ -234096,6 +246458,8 @@ self: { ]; description = "A binding to React based on the Flux application architecture for GHCJS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "react-flux-servant" = callPackage @@ -234107,6 +246471,7 @@ self: { libraryHaskellDepends = [ aeson base react-flux servant text ]; description = "Allow react-flux stores to send requests to a servant server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "react-haskell" = callPackage @@ -234124,6 +246489,8 @@ self: { ]; description = "Haskell React bindings"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "react-tutorial-haskell-server" = callPackage @@ -234141,7 +246508,9 @@ self: { ]; description = "react-tutorial web server"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "server"; + broken = true; }) {}; "reaction-logic" = callPackage @@ -234156,7 +246525,9 @@ self: { executableHaskellDepends = [ base mtl QuickCheck ]; description = "pluggable pure logic serializable reactor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "reaction-logic-test"; + broken = true; }) {}; "reactive" = callPackage @@ -234173,6 +246544,7 @@ self: { ]; description = "Push-pull functional reactive programming"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "reactive-bacon" = callPackage @@ -234185,6 +246557,8 @@ self: { testHaskellDepends = [ base containers HUnit old-time stm ]; description = "FRP (functional reactive programming) framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reactive-balsa" = callPackage @@ -234255,6 +246629,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "home (etc) automation using reactive-banana"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reactive-banana-bunch" = callPackage @@ -234288,6 +246664,8 @@ self: { testHaskellDepends = [ base ]; description = "Simple reactive programming with GTK GObject Introspection"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reactive-banana-sdl" = callPackage @@ -234304,6 +246682,7 @@ self: { ]; description = "Reactive Banana bindings for SDL"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "reactive-banana-sdl2" = callPackage @@ -234316,6 +246695,8 @@ self: { testHaskellDepends = [ base ]; description = "Reactive Banana integration with SDL2"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reactive-banana-threepenny" = callPackage @@ -234330,6 +246711,8 @@ self: { libraryHaskellDepends = [ base reactive-banana threepenny-gui ]; description = "Examples for the reactive-banana library, using threepenny-gui"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reactive-banana-wx" = callPackage @@ -234347,6 +246730,7 @@ self: { ]; description = "Examples for the reactive-banana library, using wxHaskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "reactive-fieldtrip" = callPackage @@ -234363,6 +246747,7 @@ self: { ]; description = "Connect Reactive and FieldTrip"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "reactive-glut" = callPackage @@ -234378,6 +246763,7 @@ self: { ]; description = "Connects Reactive and GLUT"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "reactive-haskell" = callPackage @@ -234459,7 +246845,9 @@ self: { ]; description = "Reactive programming via imperative threads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example-sdl"; + broken = true; }) {}; "reactivity" = callPackage @@ -234494,6 +246882,7 @@ self: { ]; description = "Reactor - task parallel reactive programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "read-bounded" = callPackage @@ -234505,6 +246894,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Class for reading bounded values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "read-ctags" = callPackage @@ -234527,7 +246918,9 @@ self: { base bytestring containers directory hspec text ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "read-ctags"; + broken = true; }) {}; "read-editor" = callPackage @@ -234565,6 +246958,8 @@ self: { testHaskellDepends = [ base containers directory filepath hspec ]; description = "Read IO library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "readability" = callPackage @@ -234585,7 +246980,9 @@ self: { ]; description = "Extracts text of main article from HTML document"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "readability"; + broken = true; }) {}; "readable" = callPackage @@ -234629,6 +247026,8 @@ self: { ]; description = "Vinyl-based reader-like monad composition"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "readline" = callPackage @@ -234663,6 +247062,7 @@ self: { ]; description = "Readline effect for in-other-words"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "echo-repl"; }) {}; @@ -234675,6 +247075,8 @@ self: { libraryHaskellDepends = [ base readline StateVar ]; description = "Readline with variables (setX/getY) wrapped in state vars"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "readme-lhs" = callPackage @@ -234696,7 +247098,9 @@ self: { testHaskellDepends = [ base doctest numhask ]; description = "Literate programming support"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "readme-lhs-example"; + broken = true; }) {}; "readpyc" = callPackage @@ -234710,6 +247114,7 @@ self: { executableHaskellDepends = [ base bliplib parseargs ]; description = "Read and pretty print Python bytecode (.pyc) files."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "readpyc"; }) {}; @@ -234728,6 +247133,8 @@ self: { ]; description = "Code for reading ESRI Shapefiles"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "real-day-end" = callPackage @@ -234755,6 +247162,8 @@ self: { libraryHaskellDepends = [ base parsec ]; description = "A really simple XML parser"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "realworldhaskell" = callPackage @@ -234802,6 +247211,7 @@ self: { ]; description = "Animation library based on SVGs"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "reanimate-svg" = callPackage @@ -234829,6 +247239,8 @@ self: { ]; description = "SVG file loader and serializer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reason-export" = callPackage @@ -234850,6 +247262,8 @@ self: { ]; description = "Generate Reason types from Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reasonable-lens" = callPackage @@ -234861,6 +247275,8 @@ self: { libraryHaskellDepends = [ base mtl split template-haskell ]; description = "Lens implementation. It is more small but adequately."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reasonable-operational" = callPackage @@ -234960,6 +247376,8 @@ self: { testHaskellDepends = [ base hspec primitive ]; description = "SmallArray-based extensible records for small-scale fast reads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "recaptcha" = callPackage @@ -235001,6 +247419,8 @@ self: { ]; description = "Anonymous records"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "record-aeson" = callPackage @@ -235017,6 +247437,7 @@ self: { testHaskellDepends = [ aeson base-prelude hspec record ]; description = "Instances of \"aeson\" classes for the \"record\" types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "record-dot-preprocessor" = callPackage @@ -235051,6 +247472,8 @@ self: { ]; description = "Generic encoding of records"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "record-gl" = callPackage @@ -235074,6 +247497,7 @@ self: { ]; description = "Utilities for working with OpenGL's GLSL shading language and Nikita Volkov's \"Record\"s"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "record-hasfield" = callPackage @@ -235129,6 +247553,7 @@ self: { doHaddock = false; description = "Compiler preprocessor introducing a syntactic extension for anonymous records"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "record-preprocessor"; }) {}; @@ -235153,6 +247578,7 @@ self: { ]; description = "A library for parsing and processing the Haskell syntax sprinkled with anonymous records"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "record-wrangler" = callPackage @@ -235165,6 +247591,8 @@ self: { testHaskellDepends = [ base ]; description = "Alter your records with ease"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "records" = callPackage @@ -235178,6 +247606,8 @@ self: { libraryHaskellDepends = [ base kinds type-functions ]; description = "A flexible record system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "records-sop" = callPackage @@ -235194,6 +247624,8 @@ self: { ]; description = "Record subtyping and record utilities with generics-sop"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "records-th" = callPackage @@ -235210,6 +247642,7 @@ self: { ]; description = "Template Haskell declarations for the records package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "recover-rtti" = callPackage @@ -235297,6 +247730,7 @@ self: { ]; description = "Recursion schemes over indexed Functors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "recursive-line-count" = callPackage @@ -235343,6 +247777,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck template-haskell ]; description = "Auto-generate final encodings and their isomorphisms using Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "recv" = callPackage @@ -235375,6 +247811,8 @@ self: { doHaddock = false; description = "Extensible records and variants indexed by a type-level Red-Black tree"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "red-black-tree" = callPackage @@ -235404,6 +247842,7 @@ self: { ]; description = "Monadic HTTP request handlers combinators to build a standalone web apps"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "redact" = callPackage @@ -235451,6 +247890,7 @@ self: { ]; description = "Library for interfacing with Reddit's API"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "reddit-scrape" = callPackage @@ -235523,6 +247963,8 @@ self: { libraryHaskellDepends = [ base bytestring network utf8-string ]; description = "A simple Redis library for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "redis-io" = callPackage @@ -235551,6 +247993,7 @@ self: { ]; description = "Yet another redis client"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "redis-job-queue" = callPackage @@ -235579,6 +248022,7 @@ self: { ]; description = "REdis Serialization Protocol (RESP) implementation"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "redis-schema" = callPackage @@ -235606,6 +248050,8 @@ self: { libraryHaskellDepends = [ base binary bytestring redis ]; description = "Simple redis bindings for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rediscaching-haxl" = callPackage @@ -235621,6 +248067,7 @@ self: { ]; description = "Combine redis caching and haxl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "redland" = callPackage @@ -235676,6 +248123,7 @@ self: { ]; description = "Simplify a set of equations by removing redundancies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "reduce-equations"; }) {}; @@ -235722,6 +248170,8 @@ self: { ]; description = "Reed-Solomon Erasure Coding in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reenact" = callPackage @@ -235735,6 +248185,8 @@ self: { ]; description = "A reimplementation of the Reactive library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reexport-crypto-random" = callPackage @@ -235756,6 +248208,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Generic Mutable Ref Abstraction Layer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ref-extras" = callPackage @@ -235772,6 +248226,8 @@ self: { ]; description = "Extra stuff for mutable references"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ref-fd" = callPackage @@ -235794,6 +248250,8 @@ self: { libraryHaskellDepends = [ base mtl stm transformers ]; description = "A type class for monads with references compatible with the mtl2 library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ref-tf" = callPackage @@ -235837,6 +248295,8 @@ self: { ]; description = "Container with element counts"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reference" = callPackage @@ -235870,6 +248330,8 @@ self: { ]; description = "Selectors for reading and updating data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "refh" = callPackage @@ -235887,6 +248349,7 @@ self: { ]; description = "A command-line tool for pasting to https://www.refheap.com"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "refh"; }) {}; @@ -235917,6 +248380,8 @@ self: { libraryHaskellDepends = [ base http-api-data refined text ]; description = "http-api-data instances for refined types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "refined-with" = callPackage @@ -235928,6 +248393,8 @@ self: { libraryHaskellDepends = [ aeson base deepseq hashable refined ]; description = "Refinement types with an \"refinement applied\" switch"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "refined1" = callPackage @@ -235992,6 +248459,8 @@ self: { ]; description = "Utilities for the reflection package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reflection-without-remorse" = callPackage @@ -236061,6 +248530,7 @@ self: { ]; description = "Continuous animations support for reflex"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "reflex-backend-socket" = callPackage @@ -236082,6 +248552,8 @@ self: { ]; description = "Reflex bindings for TCP sockets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reflex-backend-wai" = callPackage @@ -236102,6 +248574,7 @@ self: { executableHaskellDepends = [ base http-types reflex wai ]; description = "Reflex interface to `wai`"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -236123,6 +248596,8 @@ self: { executableHaskellDepends = [ base lens reflex witherable ]; description = "A basic Reflex host for backend work"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reflex-dom" = callPackage @@ -236160,6 +248635,8 @@ self: { ]; description = "Basic support for using the Ace editor with Reflex"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reflex-dom-colonnade" = callPackage @@ -236178,6 +248655,7 @@ self: { ]; description = "Use colonnade with reflex-dom"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "reflex-dom-contrib" = callPackage @@ -236196,6 +248674,8 @@ self: { ]; description = "A playground for experimenting with infrastructure and common code for reflex applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reflex-dom-core" = callPackage @@ -236259,7 +248739,9 @@ self: { description = "A reflex-dom widget to draw on a canvas with a fragment shader program"; license = lib.licenses.mit; badPlatforms = [ "aarch64-linux" ] ++ lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; mainProgram = "demo"; + broken = true; }) {}; "reflex-dom-helpers" = callPackage @@ -236276,6 +248758,8 @@ self: { testHaskellDepends = [ base ]; description = "Html tag helpers for reflex-dom"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reflex-dom-ionic" = callPackage @@ -236309,6 +248793,8 @@ self: { ]; description = "Render Pandoc documents to HTML using reflex-dom"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reflex-dom-retractable" = callPackage @@ -236324,6 +248810,8 @@ self: { ]; description = "Routing and retractable back button for reflex-dom"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reflex-dom-svg" = callPackage @@ -236339,6 +248827,8 @@ self: { ]; description = "Reflex functions for SVG elements"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reflex-dom-th" = callPackage @@ -236383,6 +248873,7 @@ self: { ]; description = "various dynamic containers for Reflex"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "reflex-external-ref" = callPackage @@ -236394,6 +248885,8 @@ self: { libraryHaskellDepends = [ base deepseq reflex ]; description = "External reference with reactivity support"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reflex-fsnotify" = callPackage @@ -236434,6 +248927,7 @@ self: { ]; description = "Interact with a GADT API in your reflex-dom application"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "readme"; }) {}; @@ -236464,6 +248958,7 @@ self: { ]; description = "A GHCi widget library for use in reflex applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "reflex-ghci"; }) {}; @@ -236492,7 +248987,9 @@ self: { ]; description = "Helper functions to use reflex with gi-gtk"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "reflex-gi-gtk-example"; + broken = true; }) {}; "reflex-gloss" = callPackage @@ -236535,6 +249032,7 @@ self: { ]; description = "A simple scene-graph using reflex and gloss"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "reflex-jsx" = callPackage @@ -236551,6 +249049,8 @@ self: { ]; description = "Use jsx-like syntax in Reflex"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reflex-libtelnet" = callPackage @@ -236568,6 +249068,7 @@ self: { description = "Reflex bindings for libtelnet"; license = lib.licenses.gpl3Plus; platforms = lib.platforms.linux; + hydraPlatforms = lib.platforms.none; }) {}; "reflex-localize" = callPackage @@ -236583,6 +249084,7 @@ self: { ]; description = "Localization library for reflex"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "reflex-localize-dom" = callPackage @@ -236601,6 +249103,7 @@ self: { description = "Helper widgets for reflex-localize"; license = lib.licenses.mit; badPlatforms = [ "aarch64-linux" ] ++ lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; }) {}; "reflex-monad-auth" = callPackage @@ -236616,6 +249119,7 @@ self: { ]; description = "Utilities to split reflex app to authorized and not authorized contexts"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "reflex-orphans" = callPackage @@ -236632,6 +249136,8 @@ self: { ]; description = "Useful missing instances for Reflex"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reflex-potatoes" = callPackage @@ -236652,6 +249158,7 @@ self: { reflex reflex-test-host relude semialign some text these ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "reflex-process" = callPackage @@ -236677,6 +249184,7 @@ self: { ]; description = "Reflex FRP interface for running system processes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "readme"; }) {}; @@ -236697,7 +249205,9 @@ self: { executableHaskellDepends = [ base mtl reflex ]; description = "SDL2 and reflex FRP"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "reflex-sdl2-exe"; + broken = true; }) {}; "reflex-test-host" = callPackage @@ -236718,6 +249228,8 @@ self: { ]; description = "reflex host methods for testing without external events"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reflex-transformers" = callPackage @@ -236733,6 +249245,8 @@ self: { ]; description = "Collections and switchable Monad transformers for Reflex"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reflex-vty" = callPackage @@ -236758,7 +249272,9 @@ self: { testHaskellDepends = [ base containers extra hspec reflex text ]; description = "Reflex FRP host and widgets for VTY applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "reform" = callPackage @@ -236796,6 +249312,8 @@ self: { ]; description = "Add support for using Hamlet with Reform"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reform-happstack" = callPackage @@ -236822,6 +249340,8 @@ self: { libraryHaskellDepends = [ base hsp hsx2hs reform text ]; description = "Add support for using HSP with Reform"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reform-lucid" = callPackage @@ -236833,6 +249353,8 @@ self: { libraryHaskellDepends = [ base lucid path-pieces reform text ]; description = "Add support for using lucid with Reform"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reformat" = callPackage @@ -236844,6 +249366,8 @@ self: { libraryHaskellDepends = [ base parsec ]; description = "The parser and render to parsec and render the string"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "refractor" = callPackage @@ -236867,6 +249391,7 @@ self: { ]; description = "See README for more info"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "refresht" = callPackage @@ -236882,6 +249407,8 @@ self: { libraryHaskellDepends = [ base data-default exceptions lens mtl ]; description = "Environment Monad with automatic resource refreshment"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "refty" = callPackage @@ -236894,6 +249421,8 @@ self: { testHaskellDepends = [ base ]; description = "Formatted JSON generator for API server inspired by normalizr"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "refurb" = callPackage @@ -236924,6 +249453,7 @@ self: { ]; description = "Tools for maintaining a database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "reg-alloc" = callPackage @@ -236937,6 +249467,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Register allocation API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reg-alloc-graph-color" = callPackage @@ -236960,6 +249492,7 @@ self: { doHaddock = false; description = "Register allocation by graph colorization"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "reg-alloc-types" = callPackage @@ -237082,6 +249615,7 @@ self: { ]; description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Brzozowski's Deriviatives"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "regex-dfa" = callPackage @@ -237095,6 +249629,8 @@ self: { libraryHaskellDepends = [ base mtl parsec regex-base ]; description = "Replaces/Enhances Text.Regex"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "regex-do" = callPackage @@ -237183,6 +249719,8 @@ self: { ]; description = "Generate a random string from a PCRE"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "regex-genex" = callPackage @@ -237201,6 +249739,7 @@ self: { executableHaskellDepends = [ base containers mtl regex-tdfa sbv ]; description = "From a regex, generate all possible strings it can match"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "genex"; }) {}; @@ -237215,6 +249754,8 @@ self: { libraryHaskellDepends = [ base parsec regex-base ]; description = "Replaces/Enhances Text.Regex"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "regex-pcre" = callPackage @@ -237266,6 +249807,7 @@ self: { ]; description = "Text-based PCRE API for regex-base"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "regex-pderiv" = callPackage @@ -237282,6 +249824,7 @@ self: { ]; description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Antimirov's partial derivatives."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "regex-posix" = callPackage @@ -237326,7 +249869,9 @@ self: { ]; description = "Unit tests for the plaform's Posix regex library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "regex-posix-unittest"; + broken = true; }) {}; "regex-rure" = callPackage @@ -237380,6 +249925,8 @@ self: { ]; description = "Parse with regular expressions on Producers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "regex-tdfa-quasiquoter" = callPackage @@ -237391,6 +249938,8 @@ self: { libraryHaskellDepends = [ base regex-tdfa template-haskell ]; description = "Quasi-quoter for TDFA (extended POSIX) regular expressions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "regex-tdfa-rc" = callPackage @@ -237408,6 +249957,8 @@ self: { ]; description = "Replaces/Enhances Text.Regex"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "regex-tdfa-text" = callPackage @@ -237421,6 +249972,8 @@ self: { libraryHaskellDepends = [ array base regex-base regex-tdfa text ]; description = "Text interface for regex-tdfa"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "regex-tdfa-unittest" = callPackage @@ -237441,7 +249994,9 @@ self: { ]; description = "Unit tests for the regex-tdfa"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "regex-tdfa-unittest"; + broken = true; }) {}; "regex-tdfa-utf8" = callPackage @@ -237459,6 +250014,8 @@ self: { ]; description = "This combines regex-tdfa with utf8-string to allow searching over UTF8 encoded lazy bytestrings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "regex-tre" = callPackage @@ -237473,6 +250030,8 @@ self: { librarySystemDepends = [ tre ]; description = "Replaces/Enhances Text.Regex"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) tre;}; "regex-type" = callPackage @@ -237484,6 +250043,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Type-level regular expressions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "regex-with-pcre" = callPackage @@ -237531,6 +250092,7 @@ self: { libraryHaskellDepends = [ base haskell98 parsec ]; description = "A regular expression library for W3C XML Schema regular expressions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "regexchar" = callPackage @@ -237556,6 +250118,7 @@ self: { testHaskellDepends = [ base QuickCheck regexdot toolshed ]; description = "A POSIX, extended regex-engine"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "grecce"; }) {}; @@ -237572,6 +250135,8 @@ self: { ]; description = "A polymorphic, POSIX, extended regex-engine"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "regexp-tries" = callPackage @@ -237587,6 +250152,7 @@ self: { ]; description = "Regular Expressions on Tries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "regexpr" = callPackage @@ -237610,6 +250176,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Regular expressions via symbolic manipulation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "regexqq" = callPackage @@ -237623,6 +250191,8 @@ self: { ]; description = "A quasiquoter for PCRE regexes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "regional-pointers" = callPackage @@ -237637,6 +250207,7 @@ self: { ]; description = "Regional memory pointers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "regions" = callPackage @@ -237652,6 +250223,8 @@ self: { ]; description = "Provides the region monad for safely opening and working with scarce resources"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "regions-monadsfd" = callPackage @@ -237667,6 +250240,7 @@ self: { ]; description = "Monads-fd instances for the RegionT monad transformer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "regions-monadstf" = callPackage @@ -237682,6 +250256,7 @@ self: { ]; description = "Monads-tf instances for the RegionT monad transformer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "regions-mtl" = callPackage @@ -237693,6 +250268,7 @@ self: { libraryHaskellDepends = [ base-unicode-symbols mtl regions ]; description = "mtl instances for the RegionT monad transformer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "register-machine-typelevel" = callPackage @@ -237704,6 +250280,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A computationally universal register machine implementation at the type-level"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "registry" = callPackage @@ -237733,6 +250311,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "data structure for assembling components"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "registry-aeson" = callPackage @@ -237756,6 +250336,7 @@ self: { ]; description = "Aeson encoders / decoders"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "registry-hedgehog" = callPackage @@ -237781,6 +250362,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "utilities to work with Hedgehog generators and `registry`"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "registry-hedgehog-aeson" = callPackage @@ -237808,6 +250390,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Hedgehog generators for Aeson"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "registry-messagepack" = callPackage @@ -237829,6 +250412,7 @@ self: { ]; description = "MessagePack encoders / decoders"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "registry-options" = callPackage @@ -237853,6 +250437,7 @@ self: { ]; description = "application options parsing"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "regress" = callPackage @@ -237864,6 +250449,8 @@ self: { libraryHaskellDepends = [ ad base vector ]; description = "Linear and logistic regression through automatic differentiation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "regression-simple" = callPackage @@ -237893,6 +250480,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Generic programming library for regular datatypes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "regular-extras" = callPackage @@ -237904,6 +250493,7 @@ self: { libraryHaskellDepends = [ base binary deepseq QuickCheck regular ]; description = "Additional functions for regular: arbitrary, coarbitrary, and binary get/put"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "regular-web" = callPackage @@ -237919,6 +250509,7 @@ self: { ]; description = "Generic programming for the web"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "regular-xmlpickler" = callPackage @@ -237930,6 +250521,7 @@ self: { libraryHaskellDepends = [ base hxt regular text ]; description = "Generic generation of HXT XmlPickler instances using Regular"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "reheat" = callPackage @@ -237944,6 +250536,7 @@ self: { testHaskellDepends = [ base directory QuickCheck text vty vty-ui ]; description = "to make notes and reduce impact on idle time on writing other programms"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "reheat"; }) {}; @@ -237962,7 +250555,9 @@ self: { ]; description = "Rebuild default.hoo from many .hoo files in the current directory"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rehoo"; + broken = true; }) {}; "rei" = callPackage @@ -237980,7 +250575,9 @@ self: { ]; description = "Process lists easily"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "rei"; + broken = true; }) {}; "reified-records" = callPackage @@ -237992,6 +250589,8 @@ self: { libraryHaskellDepends = [ base containers mtl ]; description = "Reify records to Maps and back again"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reify" = callPackage @@ -238007,7 +250606,9 @@ self: { executableHaskellDepends = [ base ghc ]; description = "Serialize data"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "reify"; + broken = true; }) {}; "reinterpret-cast" = callPackage @@ -238061,6 +250662,8 @@ self: { libraryHaskellDepends = [ array base containers ]; description = "A relation data structure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "relapse" = callPackage @@ -238099,6 +250702,8 @@ self: { testToolDepends = [ doctest-discover hspec-discover ]; description = "A data structure representing Relations on Sets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "relational-postgresql8" = callPackage @@ -238116,6 +250721,7 @@ self: { ]; description = "PostgreSQL v8.x driver for haskell-relational-record"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "relational-query" = callPackage @@ -238141,6 +250747,7 @@ self: { ]; description = "Typeful, Modular, Relational, algebraic query engine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "relational-query-HDBC" = callPackage @@ -238165,6 +250772,7 @@ self: { ]; description = "HDBC instance of relational-query and typed query interface for HDBC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "relational-query-postgresql-pure" = callPackage @@ -238191,6 +250799,7 @@ self: { ]; description = "The connector of relational-record and postgresql-pure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "relational-record" = callPackage @@ -238208,6 +250817,7 @@ self: { ]; description = "Meta package of Relational Record"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "relational-record-examples" = callPackage @@ -238231,6 +250841,7 @@ self: { ]; description = "Examples of Haskell Relationa Record"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "relational-schemas" = callPackage @@ -238247,6 +250858,7 @@ self: { ]; description = "RDBMSs' schema templates for relational-query"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "relative-date" = callPackage @@ -238261,6 +250873,7 @@ self: { ]; description = "Durations and generalized time parsing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "releaser" = callPackage @@ -238279,8 +250892,10 @@ self: { executableHaskellDepends = [ base ]; description = "Automation of Haskell package release process"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "releaser"; maintainers = [ lib.maintainers.maralorn ]; + broken = true; }) {}; "relevant-time" = callPackage @@ -238292,6 +250907,8 @@ self: { libraryHaskellDepends = [ aeson base chronos text torsor ]; description = "humanised relevant time"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reliable-io" = callPackage @@ -238351,7 +250968,9 @@ self: { ]; description = "A web based Haskell IDE"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "reload-exe"; + broken = true; }) {}; "reloto" = callPackage @@ -238412,7 +251031,9 @@ self: { ]; description = "A DSL for marking student work"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "remark"; + broken = true; }) {}; "remarks" = callPackage @@ -238434,7 +251055,9 @@ self: { ]; description = "A DSL for marking student work"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "remarks"; + broken = true; }) {}; "rematch" = callPackage @@ -238476,6 +251099,8 @@ self: { ]; description = "Cloud Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "remote-debugger" = callPackage @@ -238491,7 +251116,9 @@ self: { ]; description = "Interface to ghci debugger"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "remote-debugger"; + broken = true; }) {}; "remote-json" = callPackage @@ -238516,6 +251143,7 @@ self: { ]; description = "Remote Monad implementation of the JSON RPC protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "remote-json-client" = callPackage @@ -238533,6 +251161,7 @@ self: { ]; description = "Web client wrapper for remote-json"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "remote-json-server" = callPackage @@ -238550,6 +251179,7 @@ self: { ]; description = "Web server wrapper for remote-json"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "remote-monad" = callPackage @@ -238572,6 +251202,8 @@ self: { ]; description = "An parametrizable Remote Monad, and parametrizable Applicative Functor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "remotion" = callPackage @@ -238604,6 +251236,7 @@ self: { ]; description = "A library for client-server applications based on custom protocols"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "render-utf8" = callPackage @@ -238654,6 +251287,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Reorder expressions in a syntax tree according to operator fixities"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reorderable" = callPackage @@ -238669,6 +251304,8 @@ self: { ]; description = "Define compound types that do not depend on member order"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "repa" = callPackage @@ -238684,6 +251321,8 @@ self: { ]; description = "High performance, regular, shape polymorphic parallel arrays"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "repa-algorithms" = callPackage @@ -238695,6 +251334,7 @@ self: { libraryHaskellDepends = [ base repa vector ]; description = "Algorithms using the Repa array library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "repa-array" = callPackage @@ -238712,6 +251352,7 @@ self: { ]; description = "Bulk array representations and operators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "repa-bytestring" = callPackage @@ -238724,6 +251365,7 @@ self: { doHaddock = false; description = "(deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "repa-convert" = callPackage @@ -238739,6 +251381,7 @@ self: { ]; description = "Packing and unpacking flat tables"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "repa-devil" = callPackage @@ -238751,6 +251394,7 @@ self: { librarySystemDepends = [ libdevil ]; description = "Support for image reading and writing of Repa arrays using in-place FFI calls"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libdevil;}; "repa-eval" = callPackage @@ -238762,6 +251406,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Low-level parallel operators on bulk random-accessble arrays"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "repa-examples" = callPackage @@ -238782,6 +251428,7 @@ self: { ]; description = "Examples using the Repa array library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "repa-fftw" = callPackage @@ -238802,6 +251449,7 @@ self: { ]; description = "Perform fft with repa via FFTW"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "repa-flow" = callPackage @@ -238820,6 +251468,7 @@ self: { ]; description = "Data-parallel data flows"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "repa-io" = callPackage @@ -238835,6 +251484,7 @@ self: { ]; description = "Read and write Repa arrays in various formats"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "repa-linear-algebra" = callPackage @@ -238846,6 +251496,7 @@ self: { libraryHaskellDepends = [ base hmatrix repa vector ]; description = "HMatrix operations for Repa"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "repa-plugin" = callPackage @@ -238862,6 +251513,7 @@ self: { ]; description = "Data Flow Fusion GHC Plugin"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "repa-scalar" = callPackage @@ -238879,6 +251531,8 @@ self: { ]; description = "Scalar data types and conversions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "repa-series" = callPackage @@ -238890,6 +251544,8 @@ self: { libraryHaskellDepends = [ base ghc ghc-prim vector ]; description = "Series Expressionss API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "repa-sndfile" = callPackage @@ -238908,6 +251564,7 @@ self: { ]; description = "Reading and writing sound files with repa arrays"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "repa-stream" = callPackage @@ -238919,6 +251576,7 @@ self: { libraryHaskellDepends = [ base mtl primitive repa-scalar vector ]; description = "Stream functions not present in the vector library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "repa-v4l2" = callPackage @@ -238938,6 +251596,7 @@ self: { executableHaskellDepends = [ base gloss repa ]; description = "Provides high-level access to webcams"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -238952,6 +251611,8 @@ self: { ]; description = "IRC friendly REPL library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "repl-toolkit" = callPackage @@ -238970,6 +251631,8 @@ self: { ]; description = "Toolkit for quickly whipping up config files and command-line interfaces"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "replace-attoparsec" = callPackage @@ -239024,6 +251687,8 @@ self: { wai-websockets websockets ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "replicant" = callPackage @@ -239050,6 +251715,7 @@ self: { testHaskellDepends = [ base ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "replicant"; }) {}; @@ -239095,6 +251761,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Blogging module using blaze html for markup"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rbb"; }) {}; @@ -239111,6 +251778,7 @@ self: { ]; description = "Render overloaded expressions to their textual representation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "repr-tree-syb" = callPackage @@ -239140,6 +251808,8 @@ self: { ]; description = "Representable functors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "representable-profunctors" = callPackage @@ -239170,6 +251840,7 @@ self: { ]; description = "Tries from representations of polynomial functors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "reprinter" = callPackage @@ -239187,6 +251858,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Scrap Your Reprinter"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reproject" = callPackage @@ -239199,6 +251872,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Define and combine \"materialized\" projections"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "req" = callPackage @@ -239294,6 +251969,8 @@ self: { ]; description = "Conduit helpers for the req HTTP client library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "req-oauth2" = callPackage @@ -239331,7 +252008,9 @@ self: { testHaskellDepends = [ base hspec modern-uri req ]; description = "Provides URI/URL helper functions for use with Req"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sample"; + broken = true; }) {}; "reqcatcher" = callPackage @@ -239363,6 +252042,8 @@ self: { http-types ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "request-monad" = callPackage @@ -239374,6 +252055,8 @@ self: { libraryHaskellDepends = [ base free mtl transformers ]; description = "A transformer for generic requests"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "require" = callPackage @@ -239405,6 +252088,8 @@ self: { ]; description = "Scrap your qualified import clutter"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "require-callstack" = callPackage @@ -239532,6 +252217,8 @@ self: { ]; description = "More understandable exceptions"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reserve" = callPackage @@ -239556,6 +252243,7 @@ self: { ]; description = "Reserve reloads web applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "reserve"; }) {}; @@ -239568,6 +252256,8 @@ self: { libraryHaskellDepends = [ base containers random ]; description = "Unweighted reservoir sampling"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "resin" = callPackage @@ -239579,6 +252269,7 @@ self: { libraryHaskellDepends = [ base ghc-prim ralist semigroupoids ]; description = "High performance variable binders"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "resistor-cube" = callPackage @@ -239652,6 +252343,8 @@ self: { ]; description = "A name resolusion library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "resolve-trivial-conflicts" = callPackage @@ -239670,7 +252363,9 @@ self: { ]; description = "Remove trivial conflict markers in a git repository"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "resolve-trivial-conflicts"; + broken = true; }) {}; "resource-effect" = callPackage @@ -239689,6 +252384,8 @@ self: { ]; description = "A port of the package 'resourcet' for extensible effects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "resource-effectful" = callPackage @@ -239713,7 +252410,9 @@ self: { executableHaskellDepends = [ base bytestring directory ]; description = "Embed data files via C and FFI"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "resource-embed"; + broken = true; }) {}; "resource-pool" = callPackage @@ -239772,6 +252471,8 @@ self: { ]; description = "A monadic interface for resource-pool"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "resource-simple" = callPackage @@ -239788,6 +252489,7 @@ self: { ]; description = "Allocate resources which are guaranteed to be released"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "resourcet" = callPackage @@ -239845,6 +252547,8 @@ self: { libraryHaskellDepends = [ base resource-pool resourcet ]; description = "A small library to convert a Pool into an Acquire"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "respond" = callPackage @@ -239873,6 +252577,7 @@ self: { ]; description = "process and route HTTP requests and generate responses on top of WAI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -239895,6 +252600,7 @@ self: { ]; description = "Utility library for use in generated API client libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rest-core" = callPackage @@ -239922,6 +252628,7 @@ self: { ]; description = "Rest API library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rest-example" = callPackage @@ -239944,6 +252651,7 @@ self: { executableHaskellDepends = [ base base-compat rest-gen ]; description = "Example project for rest"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rest-example-gen"; }) {}; @@ -239972,6 +252680,7 @@ self: { ]; description = "Documentation and client generation from rest definition"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rest-happstack" = callPackage @@ -239989,6 +252698,7 @@ self: { ]; description = "Rest driver for Happstack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rest-rewrite" = callPackage @@ -240030,6 +252740,7 @@ self: { ]; description = "Rest driver for Snap"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rest-stringmap" = callPackage @@ -240046,6 +252757,7 @@ self: { ]; description = "Maps with stringy keys that can be transcoded to JSON and XML"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rest-types" = callPackage @@ -240065,6 +252777,7 @@ self: { ]; description = "Silk Rest Framework Types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rest-wai" = callPackage @@ -240084,6 +252797,7 @@ self: { ]; description = "Rest driver for WAI applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "restartable" = callPackage @@ -240095,6 +252809,8 @@ self: { libraryHaskellDepends = [ aeson base bytestring unix ]; description = "Minimal live coding library for model-view-event-update applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "restful-snap" = callPackage @@ -240114,6 +252830,7 @@ self: { time-locale-compat xmlhtml ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "restless-git" = callPackage @@ -240150,6 +252867,7 @@ self: { ]; description = "Running worker processes under system resource restrictions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "restyle" = callPackage @@ -240164,7 +252882,9 @@ self: { executableHaskellDepends = [ base directory filepath utf8-string ]; description = "Convert between camel case and separated words style"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "restyle"; + broken = true; }) {}; "result" = callPackage @@ -240188,6 +252908,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformer for resumable exceptions"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ret" = callPackage @@ -240229,6 +252951,8 @@ self: { benchmarkHaskellDepends = [ aeson async base criterion text ]; description = "A driver for RethinkDB 2.2"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rethinkdb-client-driver" = callPackage @@ -240257,6 +252981,8 @@ self: { ]; description = "Client driver for RethinkDB"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rethinkdb-model" = callPackage @@ -240272,6 +252998,7 @@ self: { ]; description = "Useful tools for modeling data with rethinkdb"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "rethinkdb-wereHamster" = callPackage @@ -240291,6 +253018,7 @@ self: { ]; description = "RethinkDB driver for Haskell"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "retrie_1_1_0_0" = callPackage @@ -240375,6 +253103,7 @@ self: { ]; description = "Code shared across the code samples in the book \"Retrocomputing with Clash\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "retroclash-sim" = callPackage @@ -240394,6 +253123,7 @@ self: { ]; description = "High-level simulators from the book \"Retrocomputing with Clash\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "retry" = callPackage @@ -240442,7 +253172,9 @@ self: { executableHaskellDepends = [ base optparse-applicative process ]; description = "Retry failed commands"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "retryer"; + broken = true; }) {}; "rev-scientific" = callPackage @@ -240519,6 +253251,8 @@ self: { ]; description = "Simple reverse geocoding using OpenStreeMap"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reverse-list" = callPackage @@ -240530,6 +253264,8 @@ self: { libraryHaskellDepends = [ base containers contiguous deepseq ]; description = "reversed lists/snoc lists"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reversi" = callPackage @@ -240543,7 +253279,9 @@ self: { executableHaskellDepends = [ array base process ]; description = "Text-only reversi (aka othelo) game"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "reversi"; + broken = true; }) {}; "rewrite" = callPackage @@ -240559,6 +253297,7 @@ self: { ]; description = "open file and rewrite it with new contents"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rewrite"; }) {}; @@ -240579,6 +253318,8 @@ self: { executableHaskellDepends = [ base prettyprinter ]; description = "Inspection of rewriting steps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rewriting" = callPackage @@ -240590,6 +253331,7 @@ self: { libraryHaskellDepends = [ base containers regular ]; description = "Generic rewriting library for regular datatypes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rex" = callPackage @@ -240625,6 +253367,7 @@ self: { ]; description = "Github resume generator"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "rezoom"; }) {}; @@ -240659,6 +253402,8 @@ self: { ]; description = "Robert Fischer's Common library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rfc-env" = callPackage @@ -240670,6 +253415,7 @@ self: { libraryHaskellDepends = [ base envy network rfc-prelude time ]; description = "Environment variable support from the Robert Fischer Commons"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "rfc-http-client" = callPackage @@ -240687,6 +253433,7 @@ self: { ]; description = "The HTTP client extensions from the Robert Fischer Commons"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "rfc-prelude" = callPackage @@ -240710,6 +253457,8 @@ self: { ]; description = "The Prelude from the Robert Fischer Commons"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rfc-psql" = callPackage @@ -240726,6 +253475,7 @@ self: { ]; description = "The PostgreSQL extensions from the Robert Fischer Commons"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "rfc-redis" = callPackage @@ -240737,6 +253487,7 @@ self: { libraryHaskellDepends = [ base hedis rfc-env rfc-prelude time ]; description = "The Redis extensions from the Robert Fischer Commons"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "rfc-servant" = callPackage @@ -240758,6 +253509,7 @@ self: { ]; description = "The Servant extensions from the Robert Fischer Commons"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "rfc1413-server" = callPackage @@ -240872,7 +253624,9 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "Bugzilla query tool"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "rhbzquery"; + broken = true; }) {}; "rhine" = callPackage @@ -240894,7 +253648,9 @@ self: { ]; description = "Functional Reactive Programming with type-level clocks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.turion ]; + broken = true; }) {}; "rhine-bayes" = callPackage @@ -240916,6 +253672,7 @@ self: { ]; description = "monad-bayes backend for Rhine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rhine-bayes-gloss"; }) {}; @@ -240935,6 +253692,7 @@ self: { executableHaskellDepends = [ base ]; description = "Gloss backend for Rhine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rhine-gloss-gears"; maintainers = [ lib.maintainers.turion ]; }) {}; @@ -240959,6 +253717,7 @@ self: { ]; description = "Terminal backend for Rhine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rhine-terminal-simple"; }) {}; @@ -240978,6 +253737,7 @@ self: { ]; description = "Haskell rhythm game tutorial"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rhythmic-sequences" = callPackage @@ -241021,6 +253781,8 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion semigroups ]; description = "A Haskell client for the Riak decentralized data store"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "riak-protobuf" = callPackage @@ -241053,7 +253815,9 @@ self: { ]; description = "Lenses for riak-protobuf"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "generate"; + broken = true; }) {}; "rib" = callPackage @@ -241084,6 +253848,7 @@ self: { ]; description = "Static site generator based on Shake"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rib-core" = callPackage @@ -241105,6 +253870,8 @@ self: { ]; description = "Static site generator based on Shake"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ribbit" = callPackage @@ -241116,6 +253883,8 @@ self: { libraryHaskellDepends = [ base Only postgresql-simple text time ]; description = "Type-level Relational DB combinators"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ribosome" = callPackage @@ -241139,6 +253908,7 @@ self: { ]; description = "Neovim plugin framework for Polysemy"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; }) {}; "ribosome-app" = callPackage @@ -241165,6 +253935,7 @@ self: { ]; description = "CLI for Ribosome"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; mainProgram = "ribosome"; }) {}; @@ -241194,6 +253965,7 @@ self: { ]; description = "Neovim plugin host for Polysemy"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; }) {}; "ribosome-host-test" = callPackage @@ -241211,6 +253983,7 @@ self: { ]; description = "Test tools for Ribosome"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; }) {}; "ribosome-root" = callPackage @@ -241242,6 +254015,7 @@ self: { ]; description = "api extensions for nvim-hs"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "ribosome-test" = callPackage @@ -241265,6 +254039,7 @@ self: { ]; description = "Test tools for Ribosome"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; }) {}; "richreports" = callPackage @@ -241307,6 +254082,7 @@ self: { ]; description = "Quick metrics to grow your app strong"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ridley-extras" = callPackage @@ -241324,6 +254100,7 @@ self: { testHaskellDepends = [ base ]; description = "Handy metrics that don't belong to ridley"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "riemann" = callPackage @@ -241353,7 +254130,9 @@ self: { ]; description = "A Riemann client for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "riemann-client"; + broken = true; }) {}; "riff" = callPackage @@ -241372,6 +254151,8 @@ self: { executableHaskellDepends = [ base bytestring filepath ]; description = "RIFF parser for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rigel-viz" = callPackage @@ -241388,6 +254169,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "A mid-level wrapper for vega-lite"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ring-buffer" = callPackage @@ -241402,6 +254185,8 @@ self: { testHaskellDepends = [ base HUnit QuickCheck vector ]; description = "A concurrent, mutable ring-buffer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ring-buffers" = callPackage @@ -241418,6 +254203,8 @@ self: { testHaskellDepends = [ base HUnit primitive QuickCheck ]; description = "mutable ring buffers with atomic updates in GHC Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rings" = callPackage @@ -241547,6 +254334,7 @@ self: { ]; description = "A library for process pools coupled with asynchronous message queues"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "rio-process-pool-memleak-test"; }) {}; @@ -241567,6 +254355,7 @@ self: { executableSystemDepends = [ ncurses ]; description = "Riot is an Information Organisation Tool"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "riot"; }) {inherit (pkgs) ncurses;}; @@ -241587,6 +254376,7 @@ self: { ]; description = "Ripple payment system library"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "ripple-federation" = callPackage @@ -241604,6 +254394,7 @@ self: { ]; description = "Utilities and types to work with the Ripple federation protocol"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "risc-v" = callPackage @@ -241623,6 +254414,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "RISC-V"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "risc386" = callPackage @@ -241653,6 +254445,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Haskell representation of the RISC-V instruction set architecture"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rison" = callPackage @@ -241673,6 +254467,8 @@ self: { ]; description = "Parses and renders RISON strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rivers" = callPackage @@ -241684,6 +254480,8 @@ self: { libraryHaskellDepends = [ base lazysmallcheck oeis QuickCheck ]; description = "Rivers are like Streams, but different"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rivet" = callPackage @@ -241697,6 +254495,7 @@ self: { executableHaskellDepends = [ base rivet-core rivet-simple-deploy ]; description = "A project management tool for Haskell applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rivet"; }) {}; @@ -241746,6 +254545,8 @@ self: { libraryHaskellDepends = [ base postgresql-simple text ]; description = "Postgresql migration support for project management tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rivet-simple-deploy" = callPackage @@ -241757,6 +254558,8 @@ self: { libraryHaskellDepends = [ base configurator mtl rivet-core text ]; description = "Basic deployment support for project management tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rl-satton" = callPackage @@ -241782,7 +254585,9 @@ self: { ]; description = "Collection of Reinforcement Learning algorithms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "rle" = callPackage @@ -241804,6 +254609,8 @@ self: { ]; description = "A data type of run-length-encoded lists"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rlglue" = callPackage @@ -241826,6 +254633,8 @@ self: { ]; description = "A Haskell codec for RL-Glue"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rlist" = callPackage @@ -241861,6 +254670,7 @@ self: { executableHaskellDepends = [ ansi-terminal base options time ]; description = "Ring-LWE/LWR challenges using Lol"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "rlwe-challenges"; }) {}; @@ -241878,6 +254688,7 @@ self: { ]; description = "Restricted monad library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rncryptor" = callPackage @@ -241906,6 +254717,7 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion ]; description = "Haskell implementation of the RNCryptor file format"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "rng-utils" = callPackage @@ -241944,6 +254756,7 @@ self: { testHaskellDepends = [ base directory ]; description = "Simple projects generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "rob"; }) {}; @@ -241964,7 +254777,9 @@ self: { ]; description = "A build daemon for Haskell development"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "robin"; + broken = true; }) {}; "roboservant" = callPackage @@ -242009,6 +254824,7 @@ self: { ]; description = "Simulate keyboard and mouse events"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "robots-txt" = callPackage @@ -242028,6 +254844,8 @@ self: { ]; description = "Parser for robots.txt"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "roc-cluster" = callPackage @@ -242042,6 +254860,8 @@ self: { testHaskellDepends = [ base hspec HUnit ]; description = "ROC online clustering algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "roc-cluster-demo" = callPackage @@ -242059,6 +254879,7 @@ self: { ]; description = "Gloss interactive demo for roc-cluster package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "roc-cluster-demo"; }) {}; @@ -242103,6 +254924,7 @@ self: { ]; description = "A build system for incremental, parallel, and demand-driven computations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rocksdb-haskell" = callPackage @@ -242181,7 +255003,9 @@ self: { ]; description = "Sci-fi roguelike game. Client application."; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "roguestar"; + broken = true; }) {}; "roguestar-engine" = callPackage @@ -242202,6 +255026,7 @@ self: { ]; description = "Sci-fi roguelike game. Backend."; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "roguestar-engine"; }) {}; @@ -242220,6 +255045,7 @@ self: { ]; description = "Sci-fi roguelike game. Client library."; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "roguestar-glut" = callPackage @@ -242233,6 +255059,7 @@ self: { executableHaskellDepends = [ base GLUT roguestar-gl rsagl ]; description = "Sci-fi roguelike game. GLUT front-end."; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "roguestar-glut"; }) {}; @@ -242249,6 +255076,8 @@ self: { ]; description = "Bindings to Roku's External Control API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "roles" = callPackage @@ -242294,6 +255123,7 @@ self: { testHaskellDepends = [ base ]; description = "Simple CLI tool to perform commons tasks such as tracking deploys"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "rollbar"; }) {}; @@ -242318,6 +255148,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Core library to communicate with Rollbar API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rollbar-hs" = callPackage @@ -242340,6 +255172,8 @@ self: { ]; description = "Core Rollbar data types and APIs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rollbar-wai" = callPackage @@ -242364,6 +255198,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Provides error reporting capabilities to WAI based applications through Rollbar API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "rollbar-yesod" = callPackage @@ -242385,6 +255220,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Provides error reporting capabilities to Yesod applications through Rollbar API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "roller" = callPackage @@ -242405,7 +255241,9 @@ self: { ]; description = "Playing with applicatives and dice!"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "roller"; + broken = true; }) {}; "rolling-queue" = callPackage @@ -242430,6 +255268,8 @@ self: { ]; description = "Parsing and pretty printing of Roman numerals"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "romkan" = callPackage @@ -242467,6 +255307,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq integer-gmp ]; description = "RON"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ron-rdt" = callPackage @@ -242483,6 +255325,7 @@ self: { ]; description = "Replicated Data Types (RON-RDT)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ron-schema" = callPackage @@ -242500,6 +255343,7 @@ self: { ]; description = "RON-Schema"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ron-storage" = callPackage @@ -242517,6 +255361,7 @@ self: { ]; description = "RON Storage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "roots" = callPackage @@ -242541,6 +255386,8 @@ self: { ]; description = "Tools for manipulating fingertrees of bytestrings with optional annotations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rope-utf16-splay" = callPackage @@ -242633,6 +255480,7 @@ self: { ]; description = "Trees with polymorphic paths to nodes, combining properties of Rose Trees and Tries"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "rosebud" = callPackage @@ -242648,6 +255496,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Common rose tree/forest functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rosezipper" = callPackage @@ -242691,6 +255541,7 @@ self: { ]; description = "Haskell support for the ROS robotics framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "roshask"; }) {}; @@ -242709,6 +255560,8 @@ self: { ]; description = "ROS message parser, render, TH"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rosmsg-bin" = callPackage @@ -242726,6 +255579,7 @@ self: { ]; description = "ROS message management tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rospkg" = callPackage @@ -242746,7 +255600,9 @@ self: { testHaskellDepends = [ base ]; description = "ROS package system information"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rospkg"; + broken = true; }) {}; "rosso" = callPackage @@ -242758,6 +255614,8 @@ self: { libraryHaskellDepends = [ base containers deepseq ]; description = "General purpose utility library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rot13" = callPackage @@ -242789,6 +255647,8 @@ self: { ]; description = "Size-limited, concurrent, automatically-rotating log writer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "roundRobin" = callPackage @@ -242825,6 +255685,7 @@ self: { testHaskellDepends = [ base long-double ]; description = "Correctly-rounded arbitrary-precision floating-point arithmetic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) gmp; inherit (pkgs) mpfr;}; "rounded-hw" = callPackage @@ -242851,6 +255712,7 @@ self: { ]; description = "Directed rounding for built-in floating types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rounding" = callPackage @@ -242862,6 +255724,8 @@ self: { libraryHaskellDepends = [ array base numeric-extras ]; description = "Explicit floating point rounding mode wrappers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "roundtrip" = callPackage @@ -242897,6 +255761,8 @@ self: { ]; description = "Un-/parse JSON with roundtrip invertible syntax definitions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "roundtrip-string" = callPackage @@ -242929,6 +255795,7 @@ self: { ]; description = "Bidirectional (de-)serialization for XML"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "route-generator" = callPackage @@ -242944,6 +255811,7 @@ self: { ]; description = "Utility to generate routes for use with yesod-routes"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "routeGenerator"; }) {}; @@ -242963,6 +255831,7 @@ self: { ]; description = "A library and utilities for creating a route"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "row" = callPackage @@ -242979,6 +255848,7 @@ self: { doHaddock = false; description = "Row types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "row-types" = callPackage @@ -243056,6 +255926,8 @@ self: { libraryHaskellDepends = [ base containers template-haskell ]; description = "Build records from lists of strings, as from CSV files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rp-tree" = callPackage @@ -243105,6 +255977,7 @@ self: { ]; description = "type safe rpcs provided as basic IO actions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rpc-framework" = callPackage @@ -243123,7 +255996,9 @@ self: { executableHaskellDepends = [ base ]; description = "a remote procedure call framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rpc-test"; + broken = true; }) {}; "rpf" = callPackage @@ -243143,6 +256018,7 @@ self: { ]; description = "Receiver Policy Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rpf"; }) {}; @@ -243157,6 +256033,8 @@ self: { libraryHaskellDepends = [ base directory filepath HaXml process ]; description = "Cozy little project to question unruly rpm packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rpm-nvr" = callPackage @@ -243194,7 +256072,9 @@ self: { ]; description = "Sort RPM packages in dependency order"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rpmbuild-order"; + broken = true; }) {}; "rpmostree-update" = callPackage @@ -243213,7 +256093,9 @@ self: { ]; description = "rpm-ostree update wrapper that caches change info"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rpmostree-update"; + broken = true; }) {}; "rrb-vector" = callPackage @@ -243251,6 +256133,8 @@ self: { testHaskellDepends = [ base hspec text ]; description = "Recurrence rule parser and formatter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rsagl" = callPackage @@ -243270,6 +256154,7 @@ self: { ]; description = "The RogueStar Animation and Graphics Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rsagl-frp" = callPackage @@ -243285,6 +256170,7 @@ self: { ]; description = "The RogueStar Animation and Graphics Library: Functional Reactive Programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rsagl-math" = callPackage @@ -243301,6 +256187,7 @@ self: { ]; description = "The RogueStar Animation and Graphics Library: Mathematics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rset" = callPackage @@ -243324,6 +256211,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A Rational Street Performer Protocol solver"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rss" = callPackage @@ -243390,7 +256279,9 @@ self: { ]; description = "watches an RSS/Atom feed and writes it to an IRC channel"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rss2irc"; + broken = true; }) {}; "rstream" = callPackage @@ -243402,6 +256293,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "stream-fusion framework from vector"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rtcm" = callPackage @@ -243430,6 +256323,7 @@ self: { ]; description = "Haskell bindings for RTCM"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rtld" = callPackage @@ -243477,6 +256371,8 @@ self: { ]; description = "Manipulate network devices, addresses, and routes on Linux"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rtorrent-rpc" = callPackage @@ -243493,6 +256389,8 @@ self: { ]; description = "A library for communicating with RTorrent over its XML-RPC interface"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rtorrent-state" = callPackage @@ -243513,6 +256411,8 @@ self: { ]; description = "Parsing and manipulation of rtorrent state file contents"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rts-loader" = callPackage @@ -243532,6 +256432,8 @@ self: { executableHaskellDepends = [ base Cabal process ]; description = "Dynamically load Haskell libraries"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rubberband" = callPackage @@ -243550,6 +256452,8 @@ self: { description = "Binding to the C++ audio stretching library Rubber Band"; license = lib.licenses.gpl3Only; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) rubberband;}; "ruby-marshal" = callPackage @@ -243571,6 +256475,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Parse a subset of Ruby objects serialised with Marshal.dump."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ruby-qq" = callPackage @@ -243587,6 +256493,8 @@ self: { ]; description = "rubyish quasiquoters"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ruff" = callPackage @@ -243598,6 +256506,8 @@ self: { libraryHaskellDepends = [ array base mtl parsec safe strict Vec ]; description = "relatively useful fractal functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ruin" = callPackage @@ -243619,6 +256529,8 @@ self: { ]; description = "Pliable records"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ruler" = callPackage @@ -243637,6 +256549,7 @@ self: { ]; description = "Ruler tool for UHC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ruler"; }) {}; @@ -243655,6 +256568,7 @@ self: { uulib ]; license = "LGPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "ruler-core"; }) {}; @@ -243752,7 +256666,9 @@ self: { testHaskellDepends = [ base directory hspec process ]; description = "Stack wrapper for single-file Haskell programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "runhs"; + broken = true; }) {}; "runmany" = callPackage @@ -243770,7 +256686,9 @@ self: { ]; description = "Run multiple commands, interleaving output and errors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "runmany"; + broken = true; }) {}; "runmemo" = callPackage @@ -243793,6 +256711,7 @@ self: { libraryHaskellDepends = [ base ifcxt QuickCheck template-haskell ]; description = "Runtime generation of Arbitrary values"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "runtime-instances" = callPackage @@ -243810,6 +256729,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit type-reflection ]; description = "Look up class instances at runtime"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "rustls" = callPackage @@ -243834,6 +256755,8 @@ self: { ]; description = "TLS bindings for Rustls"; license = lib.licenses.cc0; + hydraPlatforms = lib.platforms.none; + broken = true; }) {rustls = null;}; "rv" = callPackage @@ -243851,6 +256774,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "RISC-V"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "rvar" = callPackage @@ -243897,7 +256821,9 @@ self: { ]; description = "Packet Generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "rws"; + broken = true; }) {}; "rz-pipe" = callPackage @@ -243916,7 +256842,9 @@ self: { executableHaskellDepends = [ aeson base ]; description = "Pipe interface for Rizin"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "rzk" = callPackage @@ -243986,6 +256914,7 @@ self: { executableHaskellDepends = [ base ]; description = "simple general-purpose s-expressions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "example-s-expressions"; }) {}; @@ -244046,6 +256975,8 @@ self: { ]; description = "A monadic buffer resilient to exceptions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safe-coerce" = callPackage @@ -244057,6 +256988,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A friendly shorthand for an old friend"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safe-coloured-text" = callPackage @@ -244092,6 +257025,8 @@ self: { ]; testToolDepends = [ sydtest-discover ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safe-coloured-text-layout" = callPackage @@ -244109,6 +257044,8 @@ self: { testToolDepends = [ sydtest-discover ]; description = "Safely layout output coloured text"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safe-coloured-text-layout-gen" = callPackage @@ -244129,6 +257066,7 @@ self: { ]; testToolDepends = [ sydtest-discover ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "safe-coloured-text-terminfo" = callPackage @@ -244161,6 +257099,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Relational proof system for probabilistic algorithms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "safe-decimal" = callPackage @@ -244256,6 +257195,8 @@ self: { libraryHaskellDepends = [ base indexed mtl vector ]; description = "Support for safely freezing multiple arrays in the ST monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safe-gen" = callPackage @@ -244279,6 +257220,8 @@ self: { libraryHaskellDepends = [ base stm template-haskell ]; description = "Safe top-level mutable variables which scope like ordinary values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safe-json" = callPackage @@ -244319,6 +257262,8 @@ self: { ]; description = "A library providing safe lazy IO features"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safe-length" = callPackage @@ -244336,6 +257281,8 @@ self: { ]; description = "Tired of accidentally calling length on tuples? Relief at last!"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safe-money" = callPackage @@ -244442,6 +257389,8 @@ self: { ]; description = "Instances from the xmlbf library for the safe-money library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safe-numeric" = callPackage @@ -244469,6 +257418,7 @@ self: { ]; description = "A small wrapper over hs-plugins to allow loading safe plugins"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "safe-printf" = callPackage @@ -244488,6 +257438,8 @@ self: { ]; description = "Well-typed, flexible and variadic printf for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safe-tensor" = callPackage @@ -244503,6 +257455,8 @@ self: { ]; description = "Dependently typed tensor algebra"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safe-wild-cards" = callPackage @@ -244515,6 +257469,8 @@ self: { testHaskellDepends = [ base ]; description = "Use RecordWildCards safely"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safecopy" = callPackage @@ -244557,6 +257513,8 @@ self: { ]; description = "Making SafeCopy migrations easier"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safecopy-store" = callPackage @@ -244580,6 +257538,8 @@ self: { ]; description = "Binary serialization with version control"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safeint" = callPackage @@ -244597,6 +257557,8 @@ self: { ]; description = "overflow-checked Int type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safeio" = callPackage @@ -244619,6 +257581,8 @@ self: { ]; description = "Write output to disk atomically"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safepath" = callPackage @@ -244631,6 +257595,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "Safe Paths in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "safer-file-handles" = callPackage @@ -244647,6 +257613,7 @@ self: { ]; description = "Type-safe file handling"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "safer-file-handles-bytestring" = callPackage @@ -244663,6 +257630,7 @@ self: { ]; description = "Extends safer-file-handles with ByteString operations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "safer-file-handles-text" = callPackage @@ -244678,6 +257646,7 @@ self: { ]; description = "Extends safer-file-handles with Text operations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "saferoute" = callPackage @@ -244689,6 +257658,8 @@ self: { libraryHaskellDepends = [ base blaze-html containers text ]; description = "A simple type-safe routing library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sai-shape-syb" = callPackage @@ -244704,6 +257675,7 @@ self: { ]; description = "Obtain homogeneous values from arbitrary values, transforming or culling data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sajson" = callPackage @@ -244726,7 +257698,9 @@ self: { ]; description = "Fast JSON parsing powered by Chad Austin's sajson library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sajson-bench"; + broken = true; }) {}; "sak" = callPackage @@ -244748,6 +257722,7 @@ self: { executableToolDepends = [ cpphs ]; description = "Compression command-line tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sak"; }) {}; @@ -244769,6 +257744,8 @@ self: { ]; description = "Haskell representation of messages exchanged on the sakura.io platform."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "salak" = callPackage @@ -244798,6 +257775,8 @@ self: { ]; description = "Configuration (re)Loader and Parser"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "salak-toml" = callPackage @@ -244820,6 +257799,7 @@ self: { ]; description = "Configuration Loader for toml"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "salak-yaml" = callPackage @@ -244841,6 +257821,7 @@ self: { ]; description = "Configuration Loader for yaml"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "saltine" = callPackage @@ -244885,6 +257866,7 @@ self: { ]; description = "Quickcheck implementations for some NaCl data"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libsodium;}; "salve" = callPackage @@ -244917,6 +257899,7 @@ self: { ]; description = "Modular web application framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "salvia-demo" = callPackage @@ -244939,6 +257922,7 @@ self: { doHaddock = false; description = "Demo Salvia servers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "salvia-extras" = callPackage @@ -244959,6 +257943,7 @@ self: { ]; description = "Collection of non-fundamental handlers for the Salvia web server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "salvia-protocol" = callPackage @@ -244975,6 +257960,8 @@ self: { ]; description = "Salvia webserver protocol suite supporting URI, HTTP, Cookie and MIME"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "salvia-sessions" = callPackage @@ -244992,6 +257979,7 @@ self: { ]; description = "Session support for the Salvia webserver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "salvia-websocket" = callPackage @@ -245008,6 +257996,7 @@ self: { ]; description = "Websocket implementation for the Salvia Webserver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sample-frame" = callPackage @@ -245066,6 +258055,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "Binding to the C samtools library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) zlib;}; "samtools-conduit" = callPackage @@ -245086,6 +258076,7 @@ self: { ]; description = "Conduit interface to SAM/BAM format files through samtools"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "samtools-conduit-copy"; }) {}; @@ -245102,6 +258093,7 @@ self: { ]; description = "Enumerator interface to SamTools library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "samtools-iteratee" = callPackage @@ -245118,6 +258110,7 @@ self: { ]; description = "Iteratee interface to SamTools library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "sandi" = callPackage @@ -245148,6 +258141,8 @@ self: { libraryHaskellDepends = [ base ]; description = "SAND data serialization and manipulation library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sandman" = callPackage @@ -245166,7 +258161,9 @@ self: { ]; description = "Manages Cabal sandboxes to avoid rebuilding packages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sandman"; + broken = true; }) {}; "sandwich" = callPackage @@ -245337,6 +258334,8 @@ self: { libraryHaskellDepends = [ base deepseq portaudio ]; description = "audio library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sarif" = callPackage @@ -245380,6 +258379,7 @@ self: { ]; description = "A universal quickfix toolkit and his protocol"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "sasha" = callPackage @@ -245403,6 +258403,7 @@ self: { testToolDepends = [ alex ]; description = "A staged lexer generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sasl" = callPackage @@ -245419,6 +258420,7 @@ self: { ]; description = "SASL implementation using simple-pipe"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sat" = callPackage @@ -245432,6 +258434,8 @@ self: { executableHaskellDepends = [ base ]; description = "CNF SATisfier"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sat-micro-hs" = callPackage @@ -245449,6 +258453,7 @@ self: { ]; description = "A minimal SAT solver"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "sat-micro"; }) {}; @@ -245483,6 +258488,8 @@ self: { ]; description = "driver for external satchmo backends"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "satchmo-examples" = callPackage @@ -245500,6 +258507,7 @@ self: { ]; description = "examples that show how to use satchmo"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "satchmo-funsat" = callPackage @@ -245515,6 +258523,7 @@ self: { ]; description = "funsat driver as backend for satchmo"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "satchmo-minisat" = callPackage @@ -245526,6 +258535,8 @@ self: { libraryHaskellDepends = [ base containers process satchmo ]; description = "minisat driver as backend for satchmo"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "satchmo-toysat" = callPackage @@ -245541,6 +258552,7 @@ self: { ]; description = "toysat driver as backend for satchmo"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "saturn" = callPackage @@ -245576,6 +258588,8 @@ self: { ]; description = "Step-by-step SAT solver for educational purposes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sauron" = callPackage @@ -245602,6 +258616,7 @@ self: { ]; description = "The eye that watches everything you did on Twitter"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "sauron"; }) {}; @@ -245621,6 +258636,8 @@ self: { ]; description = "re-export of the random generators from Hedgehog"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sax" = callPackage @@ -245639,6 +258656,8 @@ self: { testHaskellDepends = [ base bytestring hspec ]; description = "Monadic streaming XML parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "say" = callPackage @@ -245787,6 +258806,7 @@ self: { description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) z3;}; "sbv" = callPackage @@ -245816,6 +258836,8 @@ self: { ]; description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) z3;}; "sbv-program" = callPackage @@ -245831,6 +258853,7 @@ self: { testHaskellDepends = [ base sbv ]; description = "Component-based program synthesis using SBV"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sbvPlugin" = callPackage @@ -245850,6 +258873,7 @@ self: { ]; description = "Formally prove properties of Haskell programs using SBV/SMT"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sc2-lowlevel" = callPackage @@ -245869,6 +258893,7 @@ self: { ]; description = "Low-level Starcraft II API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sc2-proto" = callPackage @@ -245888,6 +258913,7 @@ self: { libraryToolDepends = [ proto-lens-protoc protoc ]; description = "A protocol buffer model for the Starcraft II bot API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {protoc = null;}; "sc2-support" = callPackage @@ -245904,6 +258930,7 @@ self: { ]; description = "Support and utility library for sc2hs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sc2hs" = callPackage @@ -245931,6 +258958,7 @@ self: { ]; description = "An interface to the Starcraft II bot API"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "sc2hs-demo"; }) {}; @@ -245944,6 +258972,7 @@ self: { libraryHaskellDepends = [ base hsc3 hsc3-db ]; description = "Haskell bindings to sc3-rdu (sc3 rd ugens)"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "scalable-server" = callPackage @@ -245961,6 +258990,7 @@ self: { ]; description = "Library for writing fast/scalable TCP-based services"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "scale" = callPackage @@ -245984,6 +259014,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "SCALE v2.0 codec for Haskell Web3 library."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "scaleimage" = callPackage @@ -245997,7 +259029,9 @@ self: { executableHaskellDepends = [ base filepath gd ]; description = "Scale an image to a new geometry"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "scaleimage"; + broken = true; }) {}; "scalendar" = callPackage @@ -246014,6 +259048,8 @@ self: { ]; description = "A library for handling calendars and resource availability over time"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "scalp-webhooks" = callPackage @@ -246040,6 +259076,7 @@ self: { ]; description = "Test webhooks locally"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "scalp-webhooks"; }) {}; @@ -246092,6 +259129,7 @@ self: { ]; description = "scalpel scrapers for search engines"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "scan" = callPackage @@ -246125,6 +259163,7 @@ self: { ]; description = "Metadata types for Albedo Scanners"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "scan-vector-machine" = callPackage @@ -246137,6 +259176,7 @@ self: { testHaskellDepends = [ array base HUnit ]; description = "An implementation of the Scan Vector Machine instruction set in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "scanf" = callPackage @@ -246202,7 +259242,9 @@ self: { description = "Generates unique passwords for various websites from a single password"; license = lib.licenses.bsd3; platforms = lib.platforms.x86; + hydraPlatforms = lib.platforms.none; mainProgram = "scat"; + broken = true; }) {}; "scc" = callPackage @@ -246235,7 +259277,9 @@ self: { ]; description = "Streaming component combinators"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "shsh"; + broken = true; }) {}; "scenegraph" = callPackage @@ -246268,6 +259312,8 @@ self: { ]; description = "A Haskell library for writing SCGI programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "schedevr" = callPackage @@ -246285,6 +259331,8 @@ self: { ]; description = "Marge schedules and show EVR"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "schedule" = callPackage @@ -246325,7 +259373,9 @@ self: { ]; description = "Find the ideal lesson layout"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "schedule-planner"; + broken = true; }) {}; "scheduler" = callPackage @@ -246369,6 +259419,7 @@ self: { ]; description = "An interview scheduler using constraint satisfaction and Google Sheets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "scheduler"; }) {}; @@ -246381,6 +259432,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Exposes standard POSIX function sched_yield"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "schema" = callPackage @@ -246423,6 +259476,8 @@ self: { ]; description = "schema guided serialization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "schematic" = callPackage @@ -246451,6 +259506,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "JSON-biased spec and validation tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "scholdoc" = callPackage @@ -246495,6 +259551,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Converts ScholarlyMarkdown documents to HTML5/LaTeX/Docx format"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "scholdoc"; }) {}; @@ -246529,6 +259586,7 @@ self: { ]; description = "Scholdoc fork of pandoc-citeproc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "scholdoc-citeproc"; }) {}; @@ -246552,6 +259610,7 @@ self: { ]; description = "Scholdoc fork of texmath"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "scholdoc-types" = callPackage @@ -246567,6 +259626,8 @@ self: { ]; description = "Scholdoc fork of pandoc-types"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "schonfinkeling" = callPackage @@ -246590,6 +259651,8 @@ self: { testHaskellDepends = [ base ]; description = "Rational numbers in scientific notation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "scidb-hquery" = callPackage @@ -246623,7 +259686,9 @@ self: { ]; description = "Haskell query for SciDB via shim"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hquery"; + broken = true; }) {}; "science-constants" = callPackage @@ -246744,6 +259809,7 @@ self: { ]; description = "Haskell IDE library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "scion-server"; }) {}; @@ -246779,6 +259845,7 @@ self: { ]; description = "Command-line interface for browsing and searching packages documentation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "scion-browser"; }) {}; @@ -246793,7 +259860,9 @@ self: { executableHaskellDepends = [ base bytestring containers process ]; description = "Generates graphviz file of scons dependency information"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "scons2dot"; + broken = true; }) {}; "scope" = callPackage @@ -246811,6 +259880,7 @@ self: { ]; description = "An interactive renderer for plotting time-series data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "scope-cairo" = callPackage @@ -246834,6 +259904,7 @@ self: { ]; description = "An interactive renderer for plotting time-series data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "scope-cairo"; }) {}; @@ -246852,6 +259923,8 @@ self: { ]; description = "scotty with batteries included"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "scotty" = callPackage @@ -246903,6 +259976,8 @@ self: { ]; description = "The Play Framework style data binding in Scotty"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "scotty-blaze" = callPackage @@ -246917,6 +259992,8 @@ self: { ]; description = "blaze-html integration for Scotty"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "scotty-cookie" = callPackage @@ -246957,6 +260034,7 @@ self: { ]; description = "Fay integration for Scotty"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "scotty-form" = callPackage @@ -246970,6 +260048,7 @@ self: { ]; description = "Html form validation using `ditto`"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "scotty-format" = callPackage @@ -246986,7 +260065,9 @@ self: { testHaskellDepends = [ base ]; description = "Response format helper for the Scotty web framework"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "scotty-format-example"; + broken = true; }) {}; "scotty-hastache" = callPackage @@ -247003,6 +260084,7 @@ self: { ]; description = "Easy Mustache templating support for Scotty"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "scotty-haxl" = callPackage @@ -247014,6 +260096,7 @@ self: { libraryHaskellDepends = [ base haxl scotty text ]; description = "Combine scotty and haxl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "scotty-params-parser" = callPackage @@ -247030,6 +260113,7 @@ self: { ]; description = "HTTP-request's query parameters parser abstraction for \"scotty\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "scotty-path-normalizer" = callPackage @@ -247057,6 +260141,8 @@ self: { ]; description = "A Better way of modeling web resources"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "scotty-rest" = callPackage @@ -247082,6 +260168,8 @@ self: { ]; description = "Webmachine-style REST library for scotty"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "scotty-session" = callPackage @@ -247100,6 +260188,8 @@ self: { ]; description = "Adding session functionality to scotty"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "scotty-tls" = callPackage @@ -247113,6 +260203,8 @@ self: { ]; description = "TLS for Scotty"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "scotty-utils" = callPackage @@ -247144,7 +260236,9 @@ self: { libraryHaskellDepends = [ base scotty text transformers ]; executableHaskellDepends = [ base scotty text transformers ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "web"; + broken = true; }) {}; "scp-streams" = callPackage @@ -247166,6 +260260,7 @@ self: { testHaskellDepends = [ base bytestring io-streams ]; description = "An SCP protocol implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "scrabble-bot" = callPackage @@ -247185,6 +260280,7 @@ self: { ]; description = "Scrabble play generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "scrabble-bot"; }) {}; @@ -247209,6 +260305,7 @@ self: { ]; description = "collect posts of site that is wrote in config yaml using feed or scraping"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "scrapbook"; }) {}; @@ -247231,6 +260328,8 @@ self: { ]; description = "Core Package for scrapbook"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "scrape-changes" = callPackage @@ -247257,6 +260356,8 @@ self: { ]; description = "Scrape websites for changes"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "screenshot-to-clipboard" = callPackage @@ -247304,7 +260405,9 @@ self: { ]; description = "Stack of error, reader, writer, state, and prompt monad transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "script-monad-exe"; + broken = true; }) {}; "scrobble" = callPackage @@ -247327,7 +260430,9 @@ self: { ]; description = "Scrobbling server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "scrobble-server"; + broken = true; }) {}; "scroll" = callPackage @@ -247348,6 +260453,7 @@ self: { ]; description = "scroll(6), a roguelike game"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "scroll"; }) {}; @@ -247361,6 +260467,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "This package provides functions for relocate an item within a list"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "scrypt" = callPackage @@ -247405,7 +260513,9 @@ self: { ]; description = "Process management and supervision daemon"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "scrz"; + broken = true; }) {}; "scubature" = callPackage @@ -247453,7 +260563,9 @@ self: { executableHaskellDepends = [ base bytestring ]; description = "Fast CSV lexing on ByteString"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "scythe"; + broken = true; }) {}; "scyther-proof" = callPackage @@ -247475,7 +260587,9 @@ self: { executableToolDepends = [ alex ]; description = "Automatic generation of Isabelle/HOL correctness proofs for security protocols"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "scyther-proof"; + broken = true; }) {}; "sde-solver" = callPackage @@ -247494,6 +260608,8 @@ self: { ]; description = "Distributed SDE solver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sdf2p1-parser" = callPackage @@ -247572,6 +260688,8 @@ self: { ]; description = "An image loading and rendering library for sdl2 / sdl2-cairo"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sdl2-compositor" = callPackage @@ -247595,6 +260713,8 @@ self: { ]; description = "image compositing with sdl2 - declarative style"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sdl2-fps" = callPackage @@ -247608,6 +260728,8 @@ self: { libraryHaskellDepends = [ base sdl2 ]; description = "Run of the mill, frames per second timer implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sdl2-gfx" = callPackage @@ -247630,7 +260752,9 @@ self: { executablePkgconfigDepends = [ SDL2 SDL2_gfx ]; description = "Haskell bindings to SDL2_gfx"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sdl2-gfx-example"; + broken = true; }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_gfx;}; "sdl2-image" = callPackage @@ -247653,7 +260777,9 @@ self: { executablePkgconfigDepends = [ SDL2 SDL2_image ]; description = "Haskell bindings to SDL2_image"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sdl2-image-example"; + broken = true; }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_image;}; "sdl2-mixer" = callPackage @@ -247678,6 +260804,8 @@ self: { description = "Haskell bindings to SDL2_mixer"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) SDL2_mixer;}; "sdl2-sprite" = callPackage @@ -247698,6 +260826,7 @@ self: { ]; description = "Sprite previewer/animator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sdl2-sprite"; }) {}; @@ -247719,6 +260848,8 @@ self: { description = "Bindings to SDL2_ttf"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_ttf;}; "sdnv" = callPackage @@ -247744,6 +260875,8 @@ self: { libraryToolDepends = [ cpphs ]; description = "Simple Data Processing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sdp-binary" = callPackage @@ -247755,6 +260888,7 @@ self: { libraryHaskellDepends = [ base binary sdp ]; description = "Binary instances for SDP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sdp-deepseq" = callPackage @@ -247766,6 +260900,7 @@ self: { libraryHaskellDepends = [ base deepseq sdp ]; description = "DeepSeq SDP extension"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sdp-hashable" = callPackage @@ -247777,6 +260912,7 @@ self: { libraryHaskellDepends = [ base hashable sdp ]; description = "Hashable instances for SDP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sdp-io" = callPackage @@ -247788,6 +260924,7 @@ self: { libraryHaskellDepends = [ base fmr sdp ]; description = "SDP IO extension"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sdp-quickcheck" = callPackage @@ -247807,6 +260944,7 @@ self: { ]; description = "SDP QuickCheck support"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sdp4bytestring" = callPackage @@ -247827,6 +260965,7 @@ self: { ]; description = "SDP wrapper for ByteString"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sdp4text" = callPackage @@ -247845,6 +260984,7 @@ self: { ]; description = "SDP wrapper for Text"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sdp4unordered" = callPackage @@ -247858,6 +260998,7 @@ self: { ]; description = "SDP classes for unordered containers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sdp4vector" = callPackage @@ -247876,6 +261017,7 @@ self: { ]; description = "SDP wrapper for Vector"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sdr" = callPackage @@ -247931,6 +261073,8 @@ self: { ]; description = "Small web framework using Warp and WAI"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "seakale" = callPackage @@ -247942,6 +261086,8 @@ self: { libraryHaskellDepends = [ base bytestring free mtl text ]; description = "Pure SQL layer on top of other libraries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "seakale-postgresql" = callPackage @@ -247957,6 +261103,7 @@ self: { ]; description = "PostgreSQL backend for Seakale"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "seakale-tests" = callPackage @@ -247972,6 +261119,7 @@ self: { ]; description = "Helpers to test code using Seakale"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "seal-module" = callPackage @@ -248025,6 +261173,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Semantic Editor Combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "secd" = callPackage @@ -248056,7 +261206,9 @@ self: { executableHaskellDepends = [ base containers ]; description = "SECDH Machine Simulator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "secdh"; + broken = true; }) {}; "seclib" = callPackage @@ -248068,6 +261220,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A simple library for static information-flow security in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "second-transfer" = callPackage @@ -248095,6 +261249,8 @@ self: { testToolDepends = [ cpphs ]; description = "Second Transfer HTTP/2 web server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "secp256k1" = callPackage @@ -248118,6 +261274,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Bindings for secp256k1 library from Bitcoin Core"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) secp256k1;}; "secp256k1-haskell" = callPackage @@ -248190,6 +261348,8 @@ self: { ]; description = "fork of secp256k1"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "secret-santa" = callPackage @@ -248207,7 +261367,9 @@ self: { ]; description = "Secret Santa game assigner using QR-Codes"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "secret-santa"; + broken = true; }) {}; "secret-sharing" = callPackage @@ -248241,6 +261403,7 @@ self: { executableHaskellDepends = [ base haskell98 ]; description = "Example of writing \"secure\" file removal in Haskell rather than C"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "secrm"; }) {}; @@ -248269,7 +261432,9 @@ self: { testToolDepends = [ tasty-discover ]; description = "Securely allocated and deallocated memory"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "checkpw"; + broken = true; }) {}; "secure-sockets" = callPackage @@ -248285,6 +261450,8 @@ self: { ]; description = "Secure point-to-point connectivity library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "secureUDP" = callPackage @@ -248296,6 +261463,8 @@ self: { libraryHaskellDepends = [ base bytestring containers network ]; description = "Setups secure (unsorted) UDP packet transfer"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "securemem" = callPackage @@ -248325,6 +261494,7 @@ self: { librarySystemDepends = [ sedna ]; description = "Sedna C API XML Binding"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {sedna = null;}; "seitz-symbol" = callPackage @@ -248344,6 +261514,7 @@ self: { ]; description = "Read and Display Seitz Symbol"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "selda" = callPackage @@ -248360,6 +261531,8 @@ self: { ]; description = "Multi-backend, high-level EDSL for interacting with SQL databases"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "selda-json" = callPackage @@ -248371,6 +261544,7 @@ self: { libraryHaskellDepends = [ aeson base bytestring selda text ]; description = "JSON support for the Selda database library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "selda-postgresql" = callPackage @@ -248387,6 +261561,7 @@ self: { ]; description = "PostgreSQL backend for the Selda database EDSL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "selda-sqlite" = callPackage @@ -248403,6 +261578,7 @@ self: { ]; description = "SQLite backend for the Selda database EDSL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "select" = callPackage @@ -248455,6 +261631,8 @@ self: { libraryToolDepends = [ alex happy ]; description = "CSS Selectors for DOM traversal"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "selenium" = callPackage @@ -248466,6 +261644,8 @@ self: { libraryHaskellDepends = [ base HTTP HUnit mtl network pretty ]; description = "Test web applications through a browser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "selenium-server" = callPackage @@ -248485,6 +261665,7 @@ self: { testHaskellDepends = [ base hspec text webdriver ]; description = "Run the selenium standalone server for usage with webdriver"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "self-extract" = callPackage @@ -248530,6 +261711,8 @@ self: { librarySystemDepends = [ selinux ]; description = "SELinux bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {selinux = null;}; "semantic" = callPackage @@ -248561,6 +261744,7 @@ self: { ]; description = "Types and functionality for working with source code"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "semaphore-compat" = callPackage @@ -248574,6 +261758,8 @@ self: { libraryHaskellDepends = [ base exceptions unix ]; description = "Cross-platform abstraction for system semaphores"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "semaphore-plus" = callPackage @@ -248605,7 +261791,9 @@ self: { executableHaskellDepends = [ base ]; description = "Evaluate code snippets in Literate Haskell"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "semdoc"; + broken = true; }) {}; "semi-iso" = callPackage @@ -248621,6 +261809,7 @@ self: { ]; description = "Weakened partial isomorphisms, reversible computations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "semialign" = callPackage @@ -248657,6 +261846,7 @@ self: { testHaskellDepends = [ base doctest QuickCheck ]; description = "Extra functions for working with Semialigns"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "semialign-indexed" = callPackage @@ -248671,6 +261861,8 @@ self: { doHaddock = false; description = "SemialignWithIndex, i.e. izipWith and ialignWith"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "semialign-optics" = callPackage @@ -248685,6 +261877,8 @@ self: { doHaddock = false; description = "SemialignWithIndex, i.e. izipWith and ialignWith"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "semibounded-lattices" = callPackage @@ -248697,6 +261891,8 @@ self: { testHaskellDepends = [ base ]; description = "A Haskell implementation of semibounded lattices"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "semigroupoid-extras" = callPackage @@ -248781,6 +261977,8 @@ self: { ]; description = "RebindableSyntax using the semigroupoids package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "semigroups" = callPackage @@ -248803,6 +262001,8 @@ self: { libraryHaskellDepends = [ base containers semigroups ]; description = "Semigroups actions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "semilattices" = callPackage @@ -248821,6 +262021,8 @@ self: { ]; description = "Semilattices"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "semiring" = callPackage @@ -248834,6 +262036,7 @@ self: { libraryHaskellDepends = [ base Boolean containers monoids ]; description = "Semirings, ring-like structures used for dynamic programming applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "semiring-num" = callPackage @@ -248859,6 +262062,7 @@ self: { ]; description = "Basic semiring class and instances"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "semiring-simple" = callPackage @@ -248950,6 +262154,8 @@ self: { ]; description = "Sengrid API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sendgrid-v3" = callPackage @@ -248969,6 +262175,8 @@ self: { ]; description = "Sendgrid v3 API library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sensei" = callPackage @@ -249015,6 +262223,7 @@ self: { ]; description = "Distributed sensor network for the raspberry pi"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sensenet"; }) {}; @@ -249037,7 +262246,9 @@ self: { ]; description = "A tool to send command execution results to Sensu"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sensu-run"; + broken = true; }) {}; "sentence-jp" = callPackage @@ -249051,6 +262262,7 @@ self: { ]; description = "Easily generating message of japanese natural language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sentiwordnet-parser" = callPackage @@ -249067,6 +262279,7 @@ self: { ]; description = "Parser for the SentiWordNet tab-separated file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sentry" = callPackage @@ -249087,6 +262300,8 @@ self: { executableHaskellDepends = [ base directory filepath unix ]; description = "Process monitoring tool written and configured in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "senza" = callPackage @@ -249163,6 +262378,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "SmartyPants for Korean language"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "separated" = callPackage @@ -249185,6 +262402,8 @@ self: { ]; description = "A data type with elements separated by values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "seqaid" = callPackage @@ -249209,6 +262428,7 @@ self: { ]; description = "Dynamic strictness control, including space leak repair"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "seqalign" = callPackage @@ -249263,6 +262483,7 @@ self: { ]; description = "Handle sequence locations for bioinformatics"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "seqloc-datafiles" = callPackage @@ -249296,6 +262517,7 @@ self: { ]; description = "Read and write BED and GTF format genome annotations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "sequence" = callPackage @@ -249377,6 +262599,8 @@ self: { ]; description = "Alternative Core language for GHC plugins"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sequential-index" = callPackage @@ -249388,6 +262612,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Sequential numbers that allow arbitrarily inserting numbers - for containers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sequor" = callPackage @@ -249411,6 +262637,7 @@ self: { ]; description = "A sequence labeler based on Collins's sequence perceptron"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "serf" = callPackage @@ -249427,6 +262654,8 @@ self: { ]; description = "Interact with Serf via Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "serial" = callPackage @@ -249525,6 +262754,8 @@ self: { ]; description = "Instances for Serialize of cereal"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "serialport" = callPackage @@ -249537,6 +262768,8 @@ self: { testHaskellDepends = [ base bytestring HUnit ]; description = "Cross platform serial port library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "serokell-util" = callPackage @@ -249567,6 +262800,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "General-purpose functions by Serokell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "serpentine" = callPackage @@ -249585,6 +262820,7 @@ self: { executableHaskellDepends = [ base singletons text ]; description = "Simple project template from stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -249599,6 +262835,7 @@ self: { ]; description = "Dependently typed API framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "serv-wai" = callPackage @@ -249623,6 +262860,7 @@ self: { ]; description = "Dependently typed API servers with Serv"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant" = callPackage @@ -249702,7 +262940,9 @@ self: { ]; description = "Servant support for JuicyPixels"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "image-conversion"; + broken = true; }) {}; "servant-aeson-specs" = callPackage @@ -249728,6 +262968,8 @@ self: { ]; description = "generic tests for aeson serialization in servant"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-auth" = callPackage @@ -249801,6 +263043,8 @@ self: { ]; description = "Authentication via encrypted cookies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-auth-docs" = callPackage @@ -249885,6 +263129,7 @@ self: { ]; description = "Authentication via HMAC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -249916,6 +263161,8 @@ self: { testToolDepends = [ hspec-discover markdown-unlit ]; description = "servant-server/servant-auth compatibility"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-auth-swagger" = callPackage @@ -249957,6 +263204,7 @@ self: { ]; description = "Servant based API and server for token based authorisation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-auth-token-acid" = callPackage @@ -249978,6 +263226,7 @@ self: { ]; description = "Acid-state backend for servant-auth-token server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-auth-token-api" = callPackage @@ -249994,6 +263243,7 @@ self: { ]; description = "Servant based API for token based authorisation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-auth-token-leveldb" = callPackage @@ -250015,6 +263265,7 @@ self: { ]; description = "Leveldb backend for servant-auth-token server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-auth-token-persistent" = callPackage @@ -250034,6 +263285,7 @@ self: { ]; description = "Persistent backend for servant-auth-token server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-auth-token-rocksdb" = callPackage @@ -250056,6 +263308,7 @@ self: { ]; description = "RocksDB backend for servant-auth-token server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-auth-wordpress" = callPackage @@ -250090,6 +263343,8 @@ self: { ]; description = "Avro content type for Servant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-benchmark" = callPackage @@ -250113,6 +263368,8 @@ self: { ]; description = "Generate benchmark files from a Servant API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-blaze" = callPackage @@ -250219,7 +263476,9 @@ self: { ]; description = "Command line interface for Servant API clients"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "greet-cli"; + broken = true; }) {}; "servant-client" = callPackage @@ -250355,6 +263614,8 @@ self: { ]; description = "A servant client for frontend JavaScript"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-client-namedargs" = callPackage @@ -250376,6 +263637,7 @@ self: { ]; description = "Automatically derive API client functions with named and optional parameters"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-combinators" = callPackage @@ -250400,6 +263662,8 @@ self: { ]; description = "Extra servant combinators for full WAI functionality"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-conduit" = callPackage @@ -250462,6 +263726,7 @@ self: { ]; description = "Generate servant client library for C#"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-db" = callPackage @@ -250473,6 +263738,8 @@ self: { libraryHaskellDepends = [ base servant ]; description = "Servant types for defining API with relational DBs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-db-postgresql" = callPackage @@ -250498,6 +263765,7 @@ self: { ]; description = "Derive a postgres client to database API specified by servant-db"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-dhall" = callPackage @@ -250519,6 +263787,8 @@ self: { ]; description = "Servant Dhall content-type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-docs" = callPackage @@ -250598,6 +263868,8 @@ self: { ]; description = "Generate endpoints overview for Servant API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-ede" = callPackage @@ -250621,6 +263893,7 @@ self: { ]; description = "Combinators for rendering EDE templates in servant web applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "servant-ede-example"; }) {}; @@ -250648,6 +263921,7 @@ self: { ]; description = "Helpers for using ekg with servant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-elm" = callPackage @@ -250693,6 +263967,8 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Servant Errors wai-middlware"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-event-stream" = callPackage @@ -250713,6 +263989,8 @@ self: { testHaskellDepends = [ base ]; description = "Servant support for Server-Sent events"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-examples" = callPackage @@ -250735,6 +264013,7 @@ self: { ]; description = "Example programs for servant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-exceptions" = callPackage @@ -250839,6 +264118,8 @@ self: { libraryHaskellDepends = [ aeson base gdp servant-server text ]; description = "Use Servant and GDP together to create expressive web API types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-generate" = callPackage @@ -250852,6 +264133,8 @@ self: { libraryHaskellDepends = [ base servant servant-server ]; description = "Utilities for generating mock server implementations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-generic" = callPackage @@ -250868,6 +264151,8 @@ self: { ]; description = "Specify Servant APIs with records"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-github" = callPackage @@ -250891,7 +264176,9 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Bindings to GitHub API using servant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "test"; + broken = true; }) {}; "servant-github-webhook" = callPackage @@ -250914,6 +264201,8 @@ self: { ]; description = "Servant combinators to facilitate writing GitHub webhooks"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-haxl-client" = callPackage @@ -250941,6 +264230,7 @@ self: { ]; description = "automatical derivation of querying functions for servant webservices"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-hmac-auth" = callPackage @@ -250981,7 +264271,9 @@ self: { testHaskellDepends = [ base servant-server text ]; description = "A library for using servant with htmx"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "servant-htmx-exe"; + broken = true; }) {}; "servant-http-streams" = callPackage @@ -251017,6 +264309,8 @@ self: { testToolDepends = [ hspec-discover markdown-unlit ]; description = "Automatic derivation of querying functions for servant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-http-streams_0_20" = callPackage @@ -251052,6 +264346,7 @@ self: { description = "Automatic derivation of querying functions for servant"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-http2-client" = callPackage @@ -251076,6 +264371,7 @@ self: { ]; description = "Generate HTTP2 clients from Servant API descriptions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-iCalendar" = callPackage @@ -251092,6 +264388,8 @@ self: { ]; description = "Servant support for iCalendar"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-jquery" = callPackage @@ -251110,6 +264408,8 @@ self: { ]; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-js" = callPackage @@ -251205,6 +264505,8 @@ self: { ]; description = "Automatically derive Kotlin class to query servant webservices"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-lucid" = callPackage @@ -251294,6 +264596,7 @@ self: { ]; description = "Matrix parameter combinator for servant"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "servant-mock" = callPackage @@ -251322,6 +264625,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Derive a mock server for free from your servant API types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mock-app"; }) {}; @@ -251420,6 +264724,8 @@ self: { testHaskellDepends = [ base hspec named QuickCheck servant ]; description = "Combinators for servant providing named parameters"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-nix" = callPackage @@ -251441,6 +264747,8 @@ self: { ]; description = "Servant Nix content-type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-oauth2" = callPackage @@ -251462,6 +264770,7 @@ self: { ]; description = "A library for OAuth2 authentication in servant"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "servant-oauth2-examples" = callPackage @@ -251491,6 +264800,7 @@ self: { ]; description = "Example applications using this library in three ways"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "servant-openapi3" = callPackage @@ -251521,6 +264831,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Generate a Swagger/OpenAPI/OAS 3.0 specification for your servant API."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-options" = callPackage @@ -251571,6 +264882,8 @@ self: { ]; description = "Use Pandoc to render servant API documentation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-pipes" = callPackage @@ -251641,6 +264954,8 @@ self: { ]; description = "Utilities for using servant in a polysemy stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-pool" = callPackage @@ -251654,6 +264969,8 @@ self: { libraryHaskellDepends = [ base resource-pool servant time ]; description = "Utility functions for creating servant 'Context's with \"context/connection pooling\" support"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-postgresql" = callPackage @@ -251670,6 +264987,7 @@ self: { ]; description = "Useful functions and instances for using servant with a PostgreSQL context"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-proto-lens" = callPackage @@ -251692,6 +265010,7 @@ self: { ]; description = "Servant Content-Type for proto-lens protobuf modules"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-purescript" = callPackage @@ -251715,6 +265034,8 @@ self: { ]; description = "Generate PureScript accessor functions for you servant API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-pushbullet-client" = callPackage @@ -251734,6 +265055,7 @@ self: { ]; description = "Bindings to the Pushbullet API using servant-client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "servant-py" = callPackage @@ -251755,6 +265077,8 @@ self: { ]; description = "Automatically derive python functions to query servant webservices"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-queryparam-client" = callPackage @@ -251796,6 +265120,7 @@ self: { ]; description = "Instances of classes from openapi3 for servant-queryparam-core"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-queryparam-server" = callPackage @@ -251839,6 +265164,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "QuickCheck entire APIs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-rate-limit" = callPackage @@ -251862,6 +265189,7 @@ self: { ]; description = "Rate limiting for Servant"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "servant-rawm" = callPackage @@ -251935,6 +265263,7 @@ self: { ]; description = "Derive Reason types to interact with a Haskell backend"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-reflex" = callPackage @@ -251957,6 +265286,8 @@ self: { ]; description = "servant API generator for reflex apps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-response" = callPackage @@ -251989,6 +265320,8 @@ self: { ]; description = "Servant router for non-server applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-ruby" = callPackage @@ -252003,6 +265336,8 @@ self: { testHaskellDepends = [ base doctest QuickCheck ]; description = "Generate a Ruby client from a Servant API with Net::HTTP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-scotty" = callPackage @@ -252021,6 +265356,8 @@ self: { ]; description = "Generate a web service for servant 'Resource's using scotty and JSON"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-seo" = callPackage @@ -252043,6 +265380,8 @@ self: { ]; description = "Generate Robots.txt and Sitemap.xml specification for your servant API."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-serf" = callPackage @@ -252089,6 +265428,7 @@ self: { QuickCheck serialise servant text ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -252188,6 +265528,7 @@ self: { ]; description = "Automatically derive API server functions with named and optional parameters"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-smsc-ru" = callPackage @@ -252210,6 +265551,8 @@ self: { ]; description = "Servant client for smsc.ru service for sending SMS to cell phones"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-snap" = callPackage @@ -252247,6 +265590,7 @@ self: { ]; description = "A family of combinators for defining webservices APIs and serving them"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "snap-greet"; }) {}; @@ -252270,7 +265614,9 @@ self: { ]; description = "Content-Types for rendering Mustache in servant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "servant-static-th" = callPackage @@ -252297,6 +265643,8 @@ self: { ]; description = "Embed a directory of static files in your Servant server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-streaming" = callPackage @@ -252311,6 +265659,8 @@ self: { testHaskellDepends = [ base hspec http-types QuickCheck servant ]; description = "Servant combinators for the 'streaming' package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-streaming-client" = callPackage @@ -252336,6 +265686,7 @@ self: { ]; description = "Client instances for the 'servant-streaming' package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-streaming-docs" = callPackage @@ -252353,6 +265704,7 @@ self: { ]; description = "Client instances for the 'servant-docs' package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-streaming-server" = callPackage @@ -252379,6 +265731,7 @@ self: { ]; description = "Server instances for the 'servant-streaming' package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-streamly" = callPackage @@ -252402,7 +265755,9 @@ self: { ]; description = "Servant Stream support for streamly"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "servant-streamly-example"; + broken = true; }) {}; "servant-subscriber" = callPackage @@ -252507,6 +265862,7 @@ self: { ]; description = "Swagger Tags for Servant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-swagger-ui" = callPackage @@ -252605,6 +265961,7 @@ self: { ]; description = "Automatically generate Elm clients for Servant APIs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-tracing" = callPackage @@ -252629,6 +265986,8 @@ self: { transformers ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-typed-error" = callPackage @@ -252721,6 +266080,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Servant servers utilities"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "servant-util-examples"; }) {}; @@ -252752,6 +266112,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Implementation of servant-util primitives for beam-postgres"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "servant-util-beam-pg-examples"; }) {}; @@ -252793,6 +266154,7 @@ self: { ]; description = "Servant Integration for Waargonaut JSON Package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-wasm" = callPackage @@ -252811,7 +266173,9 @@ self: { ]; description = "Servant support for delivering WebAssembly"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "exe"; + broken = true; }) {}; "servant-websockets" = callPackage @@ -252881,6 +266245,8 @@ self: { ]; description = "Servant support for yaml"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-zeppelin" = callPackage @@ -252892,6 +266258,8 @@ self: { libraryHaskellDepends = [ base singletons ]; description = "Types and definitions of servant-zeppelin combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servant-zeppelin-client" = callPackage @@ -252915,6 +266283,7 @@ self: { ]; description = "Client library for servant-zeppelin combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-zeppelin-server" = callPackage @@ -252938,6 +266307,7 @@ self: { ]; description = "Server library for servant-zeppelin combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "servant-zeppelin-swagger" = callPackage @@ -252959,6 +266329,7 @@ self: { ]; description = "Swagger instances for servant-zeppelin combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "server-generic" = callPackage @@ -252976,7 +266347,9 @@ self: { ]; description = "Auto-generate a server for your datatype"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.Gabriella439 ]; + broken = true; }) {}; "serverless-haskell" = callPackage @@ -253004,6 +266377,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Deploying Haskell code onto AWS Lambda using Serverless"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "serversession" = callPackage @@ -253048,6 +266423,8 @@ self: { ]; description = "Storage backend for serversession using acid-state"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "serversession-backend-persistent" = callPackage @@ -253074,6 +266451,8 @@ self: { ]; description = "Storage backend for serversession using persistent and an RDBMS"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "serversession-backend-redis" = callPackage @@ -253112,6 +266491,7 @@ self: { ]; description = "Snap bindings for serversession"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "serversession-frontend-wai" = callPackage @@ -253164,6 +266544,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Tools for building services"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "serviette" = callPackage @@ -253179,6 +266561,8 @@ self: { ]; description = "JSON to Sql"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "servius" = callPackage @@ -253230,6 +266614,7 @@ self: { ]; description = "Snaplet for the ses-html package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sessions" = callPackage @@ -253244,6 +266629,8 @@ self: { ]; description = "Session Types for Haskell"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sessiontypes" = callPackage @@ -253265,7 +266652,9 @@ self: { testHaskellDepends = [ base directory exceptions hspec ]; description = "Session types library"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "test-visualizer"; + broken = true; }) {}; "sessiontypes-distributed" = callPackage @@ -253288,6 +266677,7 @@ self: { ]; description = "Session types distributed"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "set-cover" = callPackage @@ -253352,6 +266742,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Sets of fixed size, with typelits"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "set-with" = callPackage @@ -253371,6 +266763,8 @@ self: { ]; description = "Set of elements sorted by a different data type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "setdown" = callPackage @@ -253420,7 +266814,9 @@ self: { executableHaskellDepends = [ base ]; description = "A console interface to the game of Set"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "set-game"; + broken = true; }) {}; "setlocale" = callPackage @@ -253452,6 +266848,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "A Haskell implementation of setoid"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "setop" = callPackage @@ -253532,6 +266930,8 @@ self: { libraryHaskellDepends = [ base mtl template-haskell ]; description = "Small (TH) library to declare setters for typical `record' data type fields"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "settings" = callPackage @@ -253567,7 +266967,9 @@ self: { ]; description = "S-Expression parsing/printing made fun and easy"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "sexp"; + broken = true; }) {}; "sexp-grammar" = callPackage @@ -253645,7 +267047,9 @@ self: { testHaskellDepends = [ base data-default hspec megaparsec ]; description = "Simple s-expression parser"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sexpr-parser-z3-demo"; + broken = true; }) {}; "sexpresso" = callPackage @@ -253684,6 +267088,8 @@ self: { ]; description = "Lists, Texts, ByteStrings and Vectors with type-encoded length"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sfml-audio" = callPackage @@ -253696,6 +267102,8 @@ self: { librarySystemDepends = [ libsndfile openal ]; description = "minimal bindings to the audio module of sfml"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libsndfile; inherit (pkgs) openal;}; "sfmt" = callPackage @@ -253707,6 +267115,8 @@ self: { libraryHaskellDepends = [ base bytestring entropy primitive ]; description = "SIMD-oriented Fast Mersenne Twister(SFMT) binding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sfnt2woff" = callPackage @@ -253752,6 +267162,8 @@ self: { ]; description = "Stochastic gradient descent library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sgf" = callPackage @@ -253768,6 +267180,7 @@ self: { ]; description = "SGF (Smart Game Format) parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sgrep" = callPackage @@ -253781,6 +267194,7 @@ self: { executableHaskellDepends = [ base bio regex-compat ]; description = "Sgrep - grep Fasta files for sequences matching a regular expression"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "sgrep"; }) {}; @@ -253808,7 +267222,9 @@ self: { ]; description = "Record your shell session and print in the markdown format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sh2md"; + broken = true; }) {}; "sha-streams" = callPackage @@ -253823,7 +267239,9 @@ self: { executableHaskellDepends = [ base io-streams SHA ]; description = "SHA hashes for io-streams"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sha-streams"; + broken = true; }) {}; "sha-validation" = callPackage @@ -253873,6 +267291,8 @@ self: { libraryHaskellDepends = [ base mtl transformers ]; description = "A control structure used to combine heterogenous types with delayed effects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shadower" = callPackage @@ -253895,7 +267315,9 @@ self: { ]; description = "An automated way to run doctests in files that are changing"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "shadower"; + broken = true; }) {}; "shadowsocks" = callPackage @@ -253942,6 +267364,7 @@ self: { ]; description = "Functional GPU programming - DSEL & compiler"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "shady-graphics" = callPackage @@ -253959,6 +267382,7 @@ self: { ]; description = "Functional GPU programming - DSEL & compiler"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "shake" = callPackage @@ -254046,6 +267470,7 @@ self: { ]; description = "Rules for binary distributions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "shake-c" = callPackage @@ -254107,7 +267532,9 @@ self: { ]; description = "Utility for building Shake build systems using Cabal sandboxes"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "shake-cabal-build"; + broken = true; }) {}; "shake-ccjs" = callPackage @@ -254135,6 +267562,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Dhall dependencies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shake-elm" = callPackage @@ -254172,6 +267601,8 @@ self: { ]; description = "Extra utilities for shake build systems"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shake-futhark" = callPackage @@ -254240,6 +267671,8 @@ self: { ]; description = "Shake Minify Rules"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shake-minify-css" = callPackage @@ -254253,6 +267686,7 @@ self: { ]; description = "Shake rules for CSS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "shake-pack" = callPackage @@ -254264,6 +267698,8 @@ self: { libraryHaskellDepends = [ base bytestring bzlib shake tar ]; description = "Shake File Pack Rule"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shake-path" = callPackage @@ -254275,6 +267711,8 @@ self: { libraryHaskellDepends = [ base path path-io shake ]; description = "path alternatives to shake functions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shake-persist" = callPackage @@ -254292,7 +267730,9 @@ self: { executableHaskellDepends = [ base shake ]; description = "Shake build system on-disk caching"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "ex.shake-persist"; + broken = true; }) {}; "shake-plus" = callPackage @@ -254370,6 +267810,7 @@ self: { ]; description = "Shake-based technical documentation generator; HTML & PDF"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "shaker" = callPackage @@ -254398,6 +267839,7 @@ self: { ]; description = "simple and interactive command-line build tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "shaker"; }) {}; @@ -254455,6 +267897,8 @@ self: { ]; description = "compile es2015"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shakespeare-css" = callPackage @@ -254506,6 +267950,8 @@ self: { ]; description = "SASS support for Shakespeare and Yesod"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shakespeare-text" = callPackage @@ -254563,6 +268009,7 @@ self: { ]; description = "Parser and related tools for ESRI shapefile format"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "shapely-data" = callPackage @@ -254581,6 +268028,7 @@ self: { ]; description = "Generics using @(,)@ and @Either@, with algebraic operations and typed conversions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "shapes" = callPackage @@ -254681,6 +268129,8 @@ self: { ]; description = "A circular buffer built on shared memory"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shared-fields" = callPackage @@ -254694,6 +268144,8 @@ self: { testHaskellDepends = [ base Cabal hspec lens text ]; description = "a tiny library for using shared lens fields"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shared-memory" = callPackage @@ -254733,7 +268185,9 @@ self: { executableHaskellDepends = [ base filepath mtl ]; description = "A Haskell preprocessor adding miscellaneous features"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "she"; + broken = true; }) {}; "sheets" = callPackage @@ -254750,6 +268204,7 @@ self: { ]; description = "Spreadsheet type for composite"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "shelduck" = callPackage @@ -254780,6 +268235,7 @@ self: { ]; description = "Test webhooks locally"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "shelduck"; }) {}; @@ -254843,6 +268299,8 @@ self: { executableHaskellDepends = [ base ]; description = "Pipe streams through external shell commands"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shell-utility" = callPackage @@ -254894,6 +268352,8 @@ self: { ]; description = "shell-/perl- like (systems) programming in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shellmate" = callPackage @@ -254910,6 +268370,8 @@ self: { ]; description = "Simple interface for shell scripting in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shellmate-extras" = callPackage @@ -254926,6 +268388,7 @@ self: { ]; description = "Extra functionality for shellmate"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "shellmet" = callPackage @@ -255140,6 +268603,8 @@ self: { ]; description = "Run a sequence of functions on in-memory representations of files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shimmer" = callPackage @@ -255160,7 +268625,9 @@ self: { ]; description = "The Reflective Lambda Machine"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "shimmer"; + broken = true; }) {}; "shine" = callPackage @@ -255190,6 +268657,8 @@ self: { isExecutable = true; description = "Examples for the shine package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shine-varying" = callPackage @@ -255220,6 +268689,8 @@ self: { ]; description = "Implementation of Shivers' Control-Flow Analysis"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shoap" = callPackage @@ -255231,6 +268702,8 @@ self: { libraryHaskellDepends = [ base curl ]; description = "A very basic SOAP package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shopify" = callPackage @@ -255251,6 +268724,8 @@ self: { ]; description = "A haskell API binding for shopify.com"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "short-vec" = callPackage @@ -255282,6 +268757,7 @@ self: { ]; description = "Length-indexed vectors using SmallArray#"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "short-vec-lens" = callPackage @@ -255299,6 +268775,7 @@ self: { ]; description = "Lenses and related functionality for the `short-vec` package"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "shortbytestring" = callPackage @@ -255323,6 +268800,8 @@ self: { ]; description = "Additional ShortByteString API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shortcircuit" = callPackage @@ -255358,6 +268837,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "Link shortcuts for use in text markup"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "shorten-strings" = callPackage @@ -255369,6 +268850,8 @@ self: { libraryHaskellDepends = [ base text ]; description = "Shorten a variety of string-like types adding ellipsis"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "should-not-typecheck" = callPackage @@ -255443,6 +268926,8 @@ self: { ]; description = "Robust prettyprinter for output of auto-generated Show instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "show-type" = callPackage @@ -255454,6 +268939,8 @@ self: { libraryHaskellDepends = [ base ]; description = "convert types into string values in haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "showdown" = callPackage @@ -255468,6 +268955,7 @@ self: { executableHaskellDepends = [ base glade gtk random ]; description = "A simple gtk based Russian Roulette game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "showdown"; }) {}; @@ -255509,6 +268997,7 @@ self: { ]; description = "Web automation library in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "shplit" = callPackage @@ -255559,6 +269048,7 @@ self: { executableHaskellDepends = [ base ]; description = "Shuffle tool for UHC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "shuffle"; }) {}; @@ -255600,6 +269090,8 @@ self: { ]; description = "Generate swift types from haskell types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "si-clock" = callPackage @@ -255613,6 +269105,7 @@ self: { ]; description = "An interface to the Silicon Labs Si5351 clock chip"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "si-timers" = callPackage @@ -255654,6 +269147,7 @@ self: { ]; description = "Machine Learning algorithms"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "sieve" = callPackage @@ -255688,7 +269182,9 @@ self: { ]; description = "Simple, visual, functional language for learning about recursion"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sifflet"; + broken = true; }) {}; "sifflet-lib" = callPackage @@ -255707,6 +269203,8 @@ self: { librarySystemDepends = [ gdk_x11 gtk_x11 ]; description = "Library of modules shared by sifflet and its tests and its exporters"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {gdk_x11 = null; gtk_x11 = null;}; "siggy-chardust" = callPackage @@ -255747,6 +269245,7 @@ self: { ]; description = "Thom polynomials of second order Thom-Boardman singularities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sigma-ij"; }) {}; @@ -255769,6 +269268,8 @@ self: { ]; description = "Write Discord Bots in Haskell"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sign" = callPackage @@ -255819,6 +269320,7 @@ self: { ]; description = "Deterministic serialisation and signatures with proto-lens support"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "signable-haskell-protoc" = callPackage @@ -255838,6 +269340,7 @@ self: { ]; description = "Deterministic serialisation and signatures with proto-lens support"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "signable-haskell-protoc"; }) {}; @@ -255885,6 +269388,7 @@ self: { ]; description = "Synchronous signal processing for DSLs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "signature" = callPackage @@ -255902,6 +269406,7 @@ self: { ]; description = "Hmac sha256 signature json and http payload"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "signed-multiset" = callPackage @@ -255999,6 +269504,7 @@ self: { testHaskellDepends = [ base quantification savage text ]; description = "A generator for different kinds of data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "simd" = callPackage @@ -256010,6 +269516,8 @@ self: { libraryHaskellDepends = [ base ghc-prim primitive vector ]; description = "simple interface to GHC's SIMD instructions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simfin" = callPackage @@ -256036,6 +269544,8 @@ self: { testHaskellDepends = [ aeson base tasty tasty-hunit text ]; description = "A library to fetch and parse financial data from the SimFin(+) API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simgi" = callPackage @@ -256053,6 +269563,7 @@ self: { ]; description = "stochastic simulation engine"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "simgi"; }) {}; @@ -256103,6 +269614,8 @@ self: { ]; description = "A library for more structured concurrent programming, based on the Actor Model"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-affine-space" = callPackage @@ -256153,6 +269666,8 @@ self: { libraryHaskellDepends = [ base containers deepseq ]; description = "Atom (or symbol) datatype for fast comparision and sorting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-bluetooth" = callPackage @@ -256165,6 +269680,8 @@ self: { librarySystemDepends = [ bluetooth ]; description = "Simple Bluetooth API for Windows and Linux (bluez)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {bluetooth = null;}; "simple-c-value" = callPackage @@ -256187,6 +269704,7 @@ self: { ]; description = "A simple C value type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "simple-cabal" = callPackage @@ -256258,6 +269776,8 @@ self: { ]; description = "A simple streaming I/O library based on monadic folds"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-config" = callPackage @@ -256275,6 +269795,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Simple config file parser generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-css" = callPackage @@ -256290,6 +269812,8 @@ self: { ]; description = "simple binding of css and html"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-download" = callPackage @@ -256305,6 +269829,8 @@ self: { ]; description = "A simple wrapper of http-conduit for file download"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-effects" = callPackage @@ -256326,6 +269852,8 @@ self: { benchmarkHaskellDepends = [ base criterion mtl transformers ]; description = "A simple effect system that integrates with MTL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-enumeration" = callPackage @@ -256352,7 +269880,9 @@ self: { executableHaskellDepends = [ base text ]; description = "Evaluate a Text to an Integer: \"1 + 1\" -> 2"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "Eval"; + broken = true; }) {}; "simple-expr" = callPackage @@ -256383,6 +269913,7 @@ self: { libraryHaskellDepends = [ base bindings-dc1394 CV ]; description = "Simplified interface for firewire cameras"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "simple-form" = callPackage @@ -256399,6 +269930,8 @@ self: { ]; description = "Forms that configure themselves based on type"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-genetic-algorithm" = callPackage @@ -256413,7 +269946,9 @@ self: { executableHaskellDepends = [ base deepseq parallel random ]; description = "Simple parallel genetic algorithm implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ga-sin-example"; + broken = true; }) {}; "simple-genetic-algorithm-mr" = callPackage @@ -256461,6 +269996,8 @@ self: { ]; description = "Allows simple indexation on any data type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-log" = callPackage @@ -256481,6 +270018,8 @@ self: { testHaskellDepends = [ base hspec microlens-platform text ]; description = "Simple log for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-log-syslog" = callPackage @@ -256492,6 +270031,7 @@ self: { libraryHaskellDepends = [ base hsyslog simple-log text ]; description = "Syslog backend for simple-log"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "simple-logger" = callPackage @@ -256525,6 +270065,7 @@ self: { ]; description = "Logging effect to plug into the simple-effects framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "simple-ltl" = callPackage @@ -256571,6 +270112,8 @@ self: { libraryHaskellDepends = [ base formatting simple-media-timestamp ]; description = "Formatting for simple-media-timestamp"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-money" = callPackage @@ -256582,6 +270125,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Simple library to handle and interexchange money"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-neural-networks" = callPackage @@ -256601,6 +270146,8 @@ self: { ]; description = "Simple parallel neural networks implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-nix" = callPackage @@ -256622,6 +270169,7 @@ self: { ]; description = "Simple parsing/pretty printing for Nix expressions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "simple-observer" = callPackage @@ -256655,6 +270203,8 @@ self: { ]; description = "Simple parser combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-pascal" = callPackage @@ -256672,6 +270222,7 @@ self: { ]; description = "Simplified Pascal language to SSVM compiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "spc"; }) {}; @@ -256691,6 +270242,8 @@ self: { ]; description = "simple pipeline library like conduit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-postgresql-orm" = callPackage @@ -256708,6 +270261,7 @@ self: { ]; description = "Connector package for integrating postgresql-orm with the Simple web framework"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "simple-prompt" = callPackage @@ -256741,6 +270295,8 @@ self: { libraryHaskellDepends = [ base bytestring QuickCheck ]; description = "Memory-efficient strings with concatenation and splitting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-sendfile" = callPackage @@ -256776,6 +270332,8 @@ self: { ]; description = "Simple Server interface"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-session" = callPackage @@ -256829,6 +270387,8 @@ self: { testHaskellDepends = [ base mtl parsec pretty tasty tasty-hunit ]; description = "A parser for SQL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-src-utils" = callPackage @@ -256861,7 +270421,9 @@ self: { ]; description = "Simple stacked virtual machine: assembler, disassembler, bytecode interpreter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ssvm"; + broken = true; }) {}; "simple-tabular" = callPackage @@ -256873,6 +270435,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Simple tabular-text formatter"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-tar" = callPackage @@ -256888,6 +270452,8 @@ self: { ]; description = "Simple, pure, file-system-free reading of tar files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-templates" = callPackage @@ -256939,6 +270505,8 @@ self: { ]; description = "UI library for terminal"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-units" = callPackage @@ -256951,6 +270519,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "Simple arithmetic with SI units using type-checked dimensional analysis"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simple-vec3" = callPackage @@ -256980,6 +270550,8 @@ self: { testHaskellDepends = [ base hspec lens ]; description = "Zippers made slightly easier"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simpleargs" = callPackage @@ -256994,6 +270566,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Provides a more flexible getArgs function with better error reporting"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simpleconfig" = callPackage @@ -257010,6 +270584,8 @@ self: { ]; description = "Short description of your package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simpleirc" = callPackage @@ -257026,6 +270602,8 @@ self: { testHaskellDepends = [ base bytestring hspec HUnit knob ]; description = "Simple IRC Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simpleirc-lens" = callPackage @@ -257037,6 +270615,7 @@ self: { libraryHaskellDepends = [ base bytestring simpleirc ]; description = "Lenses for simpleirc types"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "simplelru" = callPackage @@ -257079,6 +270658,8 @@ self: { ]; description = "Haskell interface for the simplenote API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simpleprelude" = callPackage @@ -257097,6 +270678,8 @@ self: { ]; description = "A simplified Haskell prelude for teaching"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simplesmtpclient" = callPackage @@ -257110,6 +270693,8 @@ self: { libraryHaskellDepends = [ array base directory network old-time ]; description = "Very simple SMTP Client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simplessh" = callPackage @@ -257138,6 +270723,8 @@ self: { librarySystemDepends = [ sqlite ]; description = "Simplest SQLite3 binding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) sqlite;}; "simplex" = callPackage @@ -257239,6 +270826,8 @@ self: { ]; description = "SimpleXMQ message broker"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simplistic-generics" = callPackage @@ -257254,6 +270843,8 @@ self: { ]; description = "Generic programming without too many type classes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "simpoole" = callPackage @@ -257284,6 +270875,7 @@ self: { executableHaskellDepends = [ base bio bytestring random ]; description = "Simulate sequencing with different models for priming and errors"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "simseq"; }) {}; @@ -257350,6 +270942,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "a class for single tuple implementations"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "singlethongs" = callPackage @@ -257362,6 +270956,8 @@ self: { testHaskellDepends = [ base ]; description = "Like singletons, but much smaller"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "singleton-bool" = callPackage @@ -257398,6 +270994,8 @@ self: { libraryHaskellDepends = [ base singletons ]; description = "Typelevel balanced search trees via a singletonized Data.Map"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "singleton-nats" = callPackage @@ -257422,6 +271020,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Singletons and induction over GHC TypeLits"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "singletons" = callPackage @@ -257543,6 +271143,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Singnal"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "singular-factory" = callPackage @@ -257563,6 +271165,8 @@ self: { ]; description = "Multivariate polynomial factorization via bindings to Singular-factory"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {singular-factory = null;}; "sink" = callPackage @@ -257574,6 +271178,8 @@ self: { libraryHaskellDepends = [ base ]; description = "An alternative to lazy I/O that doesn't conflate execution with evaluation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sint" = callPackage @@ -257593,6 +271199,8 @@ self: { ]; description = "Nat singletons represented by Int"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "siphash" = callPackage @@ -257613,6 +271221,8 @@ self: { ]; description = "siphash: a fast short input PRF"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "siphon" = callPackage @@ -257638,6 +271248,7 @@ self: { ]; description = "Encode and decode CSV files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "siren-json" = callPackage @@ -257662,6 +271273,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Siren Tools for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "sirkel" = callPackage @@ -257678,6 +271290,7 @@ self: { ]; description = "Sirkel, a Chord DHT"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sitemap" = callPackage @@ -257689,6 +271302,7 @@ self: { libraryHaskellDepends = [ base lens taggy taggy-lens text ]; description = "Sitemap parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sitemap-gen" = callPackage @@ -257727,6 +271341,8 @@ self: { ]; description = "A simple to understand static site generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sixel" = callPackage @@ -257763,6 +271379,8 @@ self: { ]; description = "A six figure group of time"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sixty-five-oh-two" = callPackage @@ -257842,6 +271460,8 @@ self: { testToolDepends = [ markdown-unlit ]; description = "Multidimensional grids with sized specified at compile time"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sized-types" = callPackage @@ -257860,6 +271480,8 @@ self: { ]; description = "Sized types in Haskell using the GHC Nat kind"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sized-vector" = callPackage @@ -257876,6 +271498,8 @@ self: { ]; description = "Size-parameterized vector types and functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sized-wrapper" = callPackage @@ -257947,7 +271571,9 @@ self: { ]; description = "Recursively show space (size and i-nodes) used in subdirectories"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sizes"; + broken = true; }) {}; "sjsp" = callPackage @@ -257969,7 +271595,9 @@ self: { executableToolDepends = [ alex happy ]; description = "Simple JavaScript Profiler"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sjsp"; + broken = true; }) {}; "skein" = callPackage @@ -258006,6 +271634,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "Skeletal set - a set with equivalence relation different from equality"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "skeleton" = callPackage @@ -258024,6 +271654,7 @@ self: { ]; description = "a tool to access the OSX keychain"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "skeleton"; }) {}; @@ -258043,6 +271674,7 @@ self: { ]; description = "Manage project skeletons"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "skeletons"; }) {}; @@ -258059,6 +271691,8 @@ self: { ]; description = "An overly complex Haskell web framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "skemmtun" = callPackage @@ -258077,7 +271711,9 @@ self: { ]; description = "A MyAnimeList.net client."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "mal"; + broken = true; }) {}; "sketch-frp-copilot" = callPackage @@ -258094,6 +271730,7 @@ self: { ]; description = "Sketch programming with Copilot"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "skew-list" = callPackage @@ -258178,7 +271815,9 @@ self: { testHaskellDepends = [ base simple-cmd ]; description = "Check dates of container images"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "skopedate"; + broken = true; }) {}; "skulk" = callPackage @@ -258191,6 +271830,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Eclectic collection of utility functions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "skylark-client" = callPackage @@ -258213,6 +271854,7 @@ self: { ]; description = "Skylark client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "skylighting" = callPackage @@ -258286,6 +271928,8 @@ self: { ]; description = "Customized Skylighting syntax highlighters"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "skylighting-format-ansi" = callPackage @@ -258379,6 +272023,8 @@ self: { ]; description = "Skype Desktop API binding for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "skypelogexport" = callPackage @@ -258417,6 +272063,8 @@ self: { ]; description = "Haskell API for interacting with Slack"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "slack-api" = callPackage @@ -258440,6 +272088,8 @@ self: { testHaskellDepends = [ base ]; description = "Bindings to the Slack RTM API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "slack-notify-haskell" = callPackage @@ -258459,7 +272109,9 @@ self: { executableHaskellDepends = [ base ]; description = "Slack notifier for Haskell project"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "slack-progressbar" = callPackage @@ -258504,6 +272156,8 @@ self: { ]; description = "Slack API Request Verification HMAC"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "slack-web" = callPackage @@ -258568,6 +272222,7 @@ self: { ]; description = "A note taking CLI tool"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "slate"; }) {}; @@ -258647,7 +272302,9 @@ self: { ]; description = "Python-ish slicing traversals for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "gen-sliceofpy-examples"; + broken = true; }) {}; "slick" = callPackage @@ -258682,7 +272339,9 @@ self: { ]; description = "ws convert markdown to reveal-js"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "slidemews"; + broken = true; }) {}; "slim" = callPackage @@ -258698,6 +272357,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Functional reactive user interface programming"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "slip32" = callPackage @@ -258718,6 +272379,7 @@ self: { ]; description = "SLIP-0032: Extended serialization format for BIP-32 wallets"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "slist" = callPackage @@ -258755,7 +272417,9 @@ self: { ]; description = "A command line interface to Sloane's OEIS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sloane"; + broken = true; }) {}; "slope-field" = callPackage @@ -258791,6 +272455,8 @@ self: { ]; description = "Write lambdas without naming the parameters"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sloth" = callPackage @@ -258802,6 +272468,8 @@ self: { libraryHaskellDepends = [ base mtl process ]; description = "Testing for minimal strictness"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "slotmap" = callPackage @@ -258835,6 +272503,8 @@ self: { ]; description = "Type-safe slugs for Yesod ecosystem"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "slugger" = callPackage @@ -258866,6 +272536,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Convert text into slugs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "slynx" = callPackage @@ -258902,6 +272574,8 @@ self: { doHaddock = false; description = "Serialize to bytes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smallarray" = callPackage @@ -258913,6 +272587,8 @@ self: { libraryHaskellDepends = [ base bytestring deepseq hashable ]; description = "low-level unboxed arrays, with minimal features"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smallcaps" = callPackage @@ -258935,6 +272611,8 @@ self: { ]; description = "Flatten camel case text in LaTeX files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smallcheck" = callPackage @@ -258963,6 +272641,8 @@ self: { benchmarkHaskellDepends = [ base gauge ]; description = "See README for more info"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smallcheck-laws" = callPackage @@ -258974,6 +272654,7 @@ self: { libraryHaskellDepends = [ base smallcheck smallcheck-series ]; description = "SmallCheck properties for common laws"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "smallcheck-lens" = callPackage @@ -258989,6 +272670,7 @@ self: { ]; description = "SmallCheck properties for lens"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "smallcheck-series" = callPackage @@ -259008,6 +272690,8 @@ self: { ]; description = "Extra SmallCheck series and utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smallpt-hs" = callPackage @@ -259021,7 +272705,9 @@ self: { executableHaskellDepends = [ base vector ]; description = "A Haskell port of the smallpt path tracer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "smallpt-hs"; + broken = true; }) {}; "smallstring" = callPackage @@ -259037,6 +272723,7 @@ self: { ]; description = "A Unicode text type, optimized for low memory overhead"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "smaoin" = callPackage @@ -259083,7 +272770,9 @@ self: { ]; description = "A command line tool for working with sets and maps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "smap"; + broken = true; }) {}; "smartGroup" = callPackage @@ -259097,6 +272786,8 @@ self: { ]; description = "group strings or bytestrings by words in common"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smartcheck" = callPackage @@ -259117,7 +272808,9 @@ self: { ]; description = "A smarter QuickCheck"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sc-qc"; + broken = true; }) {}; "smartconstructor" = callPackage @@ -259129,6 +272822,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "A package exposing a helper function for generating smart constructors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smarties" = callPackage @@ -259170,6 +272865,7 @@ self: { ]; description = "Web based flash card for Word Smart I and II vocabularies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "smash" = callPackage @@ -259185,6 +272881,8 @@ self: { ]; description = "Combinators for Maybe types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smash-aeson" = callPackage @@ -259196,6 +272894,7 @@ self: { libraryHaskellDepends = [ aeson base smash unordered-containers ]; description = "Aeson support for the smash library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "smash-lens" = callPackage @@ -259208,6 +272907,7 @@ self: { testHaskellDepends = [ base ]; description = "Optics for the `smash` library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "smash-microlens" = callPackage @@ -259220,6 +272920,7 @@ self: { testHaskellDepends = [ base ]; description = "Optics for the `smash` library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "smash-optics" = callPackage @@ -259231,6 +272932,7 @@ self: { libraryHaskellDepends = [ base optics-core smash ]; description = "Optics for the `smash` library using `optics-core`"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "smawk" = callPackage @@ -259244,6 +272946,8 @@ self: { ]; description = "Linear time row minima for totally monotone matrices"; license = "(BSD-2-Clause OR Apache-2.0)"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smcdel" = callPackage @@ -259282,6 +272986,7 @@ self: { benchmarkToolDepends = [ alex happy ]; description = "Symbolic Model Checking for Dynamic Epistemic Logic"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "sme" = callPackage @@ -259293,6 +272998,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A library for Secure Multi-Execution in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smerdyakov" = callPackage @@ -259311,6 +273018,8 @@ self: { transformers yaml ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smiles" = callPackage @@ -259322,6 +273031,8 @@ self: { libraryHaskellDepends = [ base megaparsec text ]; testHaskellDepends = [ base hspec megaparsec QuickCheck text ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smith" = callPackage @@ -259358,6 +273069,7 @@ self: { ]; description = "Command line tool for ."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "smith"; }) {}; @@ -259382,6 +273094,7 @@ self: { ]; description = "API client for ."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "smoothie" = callPackage @@ -259394,6 +273107,8 @@ self: { libraryHaskellDepends = [ aeson base linear text vector ]; description = "Smooth curves via several interpolation modes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smsaero" = callPackage @@ -259410,6 +273125,8 @@ self: { ]; description = "SMSAero API and HTTP client based on servant library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smt" = callPackage @@ -259425,6 +273142,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Interface to Satisfiability Modulo Theories solvers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "smt-lib" = callPackage @@ -259436,6 +273154,8 @@ self: { libraryHaskellDepends = [ array base directory polyparse ]; description = "Parsing and printing SMT-LIB"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smt2-parser" = callPackage @@ -259489,6 +273209,8 @@ self: { ]; description = "An SMT-LIB backend running solvers as external processes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smtlib-backends-tests" = callPackage @@ -259536,6 +273258,8 @@ self: { ]; description = "A type-safe interface to communicate with an SMT solver"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smtlib2-debug" = callPackage @@ -259552,6 +273276,7 @@ self: { ]; description = "Dump the communication with an SMT solver for debugging purposes"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "smtlib2-pipe" = callPackage @@ -259573,6 +273298,7 @@ self: { ]; description = "A type-safe interface to communicate with an SMT solver"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "smtlib2-quickcheck" = callPackage @@ -259588,6 +273314,7 @@ self: { ]; description = "Helper functions to create SMTLib expressions in QuickCheck"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "smtlib2-timing" = callPackage @@ -259599,6 +273326,7 @@ self: { libraryHaskellDepends = [ base dependent-sum mtl smtlib2 time ]; description = "Get timing informations for SMT queries"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "smtp-mail" = callPackage @@ -259637,6 +273365,8 @@ self: { ]; description = "An SMTP client EDSL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smtp2mta" = callPackage @@ -259650,6 +273380,7 @@ self: { executableHaskellDepends = [ base haskell98 network process ]; description = "Listen for SMTP traffic and send it to an MTA script"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "smtp2mta"; }) {}; @@ -259684,6 +273415,8 @@ self: { ]; description = "Gmail SMTP Client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "smuggler" = callPackage @@ -259706,7 +273439,9 @@ self: { testHaskellDepends = [ base directory filepath ]; description = "GHC Source Plugin that helps to manage imports"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "play-smuggler"; + broken = true; }) {}; "smuggler2" = callPackage @@ -259728,6 +273463,8 @@ self: { ]; description = "GHC Source Plugin that helps to minimise imports and generate explicit exports"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "snack" = callPackage @@ -259757,7 +273494,9 @@ self: { executableHaskellDepends = [ base random split terminal-size ]; description = "A basic console snake game"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "snake"; + broken = true; }) {}; "snake-game" = callPackage @@ -259804,6 +273543,7 @@ self: { ]; description = "Top-level package for the Snap Web Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.maralorn ]; }) {}; @@ -259820,6 +273560,8 @@ self: { ]; description = "Accept header branching for the Snap web framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "snap-app" = callPackage @@ -259851,6 +273593,7 @@ self: { ]; description = "Command-line tool to manage Snap AuthManager database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "snap-auth-cli"; }) {}; @@ -259874,6 +273617,8 @@ self: { libraryHaskellDepends = [ base blaze-html clay snap-core ]; description = "blaze-html-clay integration for Snap"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "snap-configuration-utilities" = callPackage @@ -259887,6 +273632,8 @@ self: { ]; description = "Methods to manipulate Configurator objects for Snap & Snaplets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "snap-core" = callPackage @@ -259951,6 +273698,7 @@ self: { ]; description = "Serve Elm files through the Snap web framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snap-error-collector" = callPackage @@ -259967,6 +273715,7 @@ self: { ]; description = "Collect errors in batches and dispatch them"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snap-extras" = callPackage @@ -259998,6 +273747,7 @@ self: { ]; description = "A collection of useful helpers and utilities for Snap web applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snap-language" = callPackage @@ -260013,6 +273763,8 @@ self: { ]; description = "Language handling for Snap"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "snap-loader-dynamic" = callPackage @@ -260029,6 +273781,8 @@ self: { ]; description = "Snap dynamic loader"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "snap-loader-static" = callPackage @@ -260065,6 +273819,8 @@ self: { ]; description = "Declarative routing for Snap"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "snap-routes" = callPackage @@ -260082,6 +273838,7 @@ self: { ]; description = "Typesafe URLs for Snap applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "snap-server" = callPackage @@ -260140,6 +273897,8 @@ self: { ]; description = "Streaming Snap handlers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "snap-templates" = callPackage @@ -260185,6 +273944,7 @@ self: { ]; description = "A library for BDD-style testing with the Snap Web Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snap-utils" = callPackage @@ -260202,6 +273962,7 @@ self: { ]; description = "Snap Framework utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snap-web-routes" = callPackage @@ -260217,6 +273978,7 @@ self: { ]; description = "Type safe URLs for Snap"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-acid-state" = callPackage @@ -260230,6 +273992,7 @@ self: { ]; description = "acid-state snaplet for Snap Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-actionlog" = callPackage @@ -260254,6 +274017,7 @@ self: { ]; description = "Generic action log snaplet for the Snap Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-amqp" = callPackage @@ -260271,6 +274035,7 @@ self: { ]; description = "Snap framework snaplet for the AMQP library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-auth-acid" = callPackage @@ -260291,6 +274056,7 @@ self: { ]; description = "Provides an Acid-State backend for the Auth Snaplet"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-coffee" = callPackage @@ -260310,6 +274076,7 @@ self: { ]; description = "CoffeeScript for Snap, auto-compilation and pre-compilation"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-css-min" = callPackage @@ -260326,6 +274093,7 @@ self: { ]; description = "A Snaplet for CSS minification"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-customauth" = callPackage @@ -260348,6 +274116,7 @@ self: { ]; description = "Alternate authentication snaplet"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-environments" = callPackage @@ -260364,6 +274133,7 @@ self: { ]; description = "DEPRECATED! You should use standard Snap >= 0.9 \"environments\" functionality. It provided ability to easly read configuration based on given app environment given at command line, envs are defined in app configuration file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-fay" = callPackage @@ -260383,6 +274153,7 @@ self: { ]; description = "Fay integration for Snap with request- and pre-compilation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-ghcjs" = callPackage @@ -260399,6 +274170,7 @@ self: { ]; description = "Serve javascript files compiled with GHCJS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-hasql" = callPackage @@ -260416,6 +274188,7 @@ self: { ]; description = "A Hasql snaplet"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-haxl" = callPackage @@ -260431,6 +274204,7 @@ self: { ]; description = "Snaplet for Facebook's Haxl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-hdbc" = callPackage @@ -260451,6 +274225,7 @@ self: { ]; description = "HDBC snaplet for Snap Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-hslogger" = callPackage @@ -260467,6 +274242,7 @@ self: { ]; description = "Snap framework snaplet for the Logger API library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-i18n" = callPackage @@ -260490,6 +274266,7 @@ self: { ]; description = "snaplet-i18n"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "demo"; }) {}; @@ -260509,6 +274286,7 @@ self: { ]; description = "Snap framework snaplet for the InfluxDB library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-lss" = callPackage @@ -260525,6 +274303,7 @@ self: { testHaskellDepends = [ base hspec-snap hspec2 lens snap text ]; description = "Lexical Style Sheets - Snap Web Framework adaptor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-mandrill" = callPackage @@ -260541,6 +274320,7 @@ self: { ]; description = "Snap framework snaplet for the Mandrill API library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-mongoDB" = callPackage @@ -260560,6 +274340,7 @@ self: { ]; description = "Snap Framework MongoDB support as Snaplet"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-mongodb-minimalistic" = callPackage @@ -260574,6 +274355,7 @@ self: { ]; description = "Minimalistic MongoDB Snaplet"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-mysql-simple" = callPackage @@ -260594,6 +274376,7 @@ self: { ]; description = "mysql-simple snaplet for the Snap Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-oauth" = callPackage @@ -260619,6 +274402,7 @@ self: { ]; description = "snaplet-oauth"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-persistent" = callPackage @@ -260640,6 +274424,7 @@ self: { ]; description = "persistent snaplet for the Snap Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-postgresql-simple" = callPackage @@ -260664,6 +274449,7 @@ self: { ]; description = "postgresql-simple snaplet for the Snap Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-postmark" = callPackage @@ -260680,6 +274466,7 @@ self: { ]; description = "Postmark snaplet for the Snap Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-purescript" = callPackage @@ -260696,6 +274483,7 @@ self: { ]; description = "Automatic (re)compilation of purescript projects"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-recaptcha" = callPackage @@ -260713,6 +274501,7 @@ self: { ]; description = "A ReCAPTCHA verification snaplet with Heist integration and connection sharing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-redis" = callPackage @@ -260732,6 +274521,7 @@ self: { ]; description = "Redis support for Snap Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-redson" = callPackage @@ -260751,6 +274541,7 @@ self: { ]; description = "CRUD for JSON data with Redis storage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-rest" = callPackage @@ -260768,6 +274559,7 @@ self: { ]; description = "REST resources for the Snap web framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-riak" = callPackage @@ -260785,6 +274577,7 @@ self: { ]; description = "A Snaplet for the Riak database"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-sass" = callPackage @@ -260802,6 +274595,7 @@ self: { ]; description = "Sass integration for Snap with request- and pre-compilation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-scoped-session" = callPackage @@ -260818,6 +274612,7 @@ self: { ]; description = "Modularised session state for Snaplets, in a Snaplet"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-sedna" = callPackage @@ -260834,6 +274629,7 @@ self: { ]; description = "Snaplet for Sedna Bindings. Essentailly a rip of snaplet-hdbc."; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-ses-html" = callPackage @@ -260850,6 +274646,7 @@ self: { ]; description = "Snaplet for the ses-html package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-sqlite-simple" = callPackage @@ -260880,6 +274677,7 @@ self: { ]; description = "sqlite-simple snaplet for the Snap Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-sqlite-simple-jwt-auth" = callPackage @@ -260899,6 +274697,7 @@ self: { ]; description = "Snaplet for JWT authentication with snaplet-sqlite-simple"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-stripe" = callPackage @@ -260917,6 +274716,7 @@ self: { ]; description = "Stripe snaplet for the Snap Framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-tasks" = callPackage @@ -260933,6 +274733,7 @@ self: { ]; description = "Snaplet for Snap Framework enabling developers to administrative tasks akin to Rake tasks from Ruby On Rails framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-typed-sessions" = callPackage @@ -260950,6 +274751,7 @@ self: { ]; description = "Typed session snaplets and continuation-based programming for the Snap web framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snaplet-wordpress" = callPackage @@ -260976,6 +274778,7 @@ self: { ]; description = "A snaplet that communicates with wordpress over its api"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snappy" = callPackage @@ -261005,6 +274808,8 @@ self: { libraryHaskellDepends = [ base bytestring conduit snappy ]; description = "Conduit bindings for Snappy (see snappy package)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "snappy-framing" = callPackage @@ -261027,6 +274832,7 @@ self: { libraryHaskellDepends = [ base bytestring iteratee snappy ]; description = "An enumeratee that uses Google's snappy compression library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snappy-lazy" = callPackage @@ -261059,6 +274865,7 @@ self: { ]; description = "Audio file reading/writing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sneakyterm" = callPackage @@ -261074,6 +274881,7 @@ self: { ]; description = "Tiny, declarative wrapper around ncurses"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "sneathlane-haste" = callPackage @@ -261085,6 +274893,7 @@ self: { libraryHaskellDepends = [ base haste-compiler ]; description = "A compositional web UI library, which draws to a Canvas element"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "snipcheck" = callPackage @@ -261096,6 +274905,8 @@ self: { libraryHaskellDepends = [ base containers pandoc process text ]; description = "Markdown tester"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "snippet-extractor" = callPackage @@ -261131,6 +274942,7 @@ self: { ]; description = "The Simple Nice-Looking Manual Generator"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "snm"; }) {}; @@ -261150,6 +274962,7 @@ self: { ]; description = "SNMP protocol library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snorkels" = callPackage @@ -261172,7 +274985,9 @@ self: { ]; description = "Strategic board game of medium complexity"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "snorkels"; + broken = true; }) {}; "snow-white" = callPackage @@ -261185,6 +275000,7 @@ self: { libraryHaskellDepends = [ base binary bytestring mps ]; description = "encode any binary instance to white space"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snowball" = callPackage @@ -261227,6 +275043,8 @@ self: { ]; description = "A checksummed variation on Twitter's Snowflake UID generation algorithm"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "snowflake" = callPackage @@ -261252,6 +275070,7 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "twitter's snowflake"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "snowflake-server" = callPackage @@ -261270,6 +275089,7 @@ self: { ]; description = "snowflake http server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "snowflake-server"; }) {}; @@ -261305,7 +275125,9 @@ self: { ]; description = "snowtify send your result of `stack build` (`stack test`) to notify-daemon :dog2:"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "snowtify"; + broken = true; }) {}; "snumber" = callPackage @@ -261319,6 +275141,7 @@ self: { libraryHaskellDepends = [ base numeric-kinds type-compare ]; description = "Integer singletons with flexible representation"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "soap" = callPackage @@ -261398,6 +275221,7 @@ self: { ]; description = "Tunnel a socket over a single datastream (stdin/stdout)"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "sock2stream"; }) {}; @@ -261442,6 +275266,8 @@ self: { libraryHaskellDepends = [ base network transformers unix ]; description = "systemd socket activation library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "socket-icmp" = callPackage @@ -261468,6 +275294,7 @@ self: { transformers unordered-containers vector ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "socket-sctp" = callPackage @@ -261481,6 +275308,8 @@ self: { testHaskellDepends = [ base bytestring socket ]; description = "STCP socket extensions library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) lksctp-tools;}; "socket-unix" = callPackage @@ -261497,6 +275326,8 @@ self: { ]; description = "Unix domain sockets"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "socketed" = callPackage @@ -261523,7 +275354,9 @@ self: { ]; description = "simpe tool to serve piped data over http and websocket"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "socketed"; + broken = true; }) {}; "socketio" = callPackage @@ -261552,6 +275385,8 @@ self: { ]; description = "Socket.IO server"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sockets" = callPackage @@ -261580,6 +275415,7 @@ self: { doHaddock = false; description = "High-level network sockets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sockets-and-pipes" = callPackage @@ -261626,6 +275462,7 @@ self: { ]; description = "A small websocket backend provider"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "socks" = callPackage @@ -261650,6 +275487,8 @@ self: { libraryHaskellDepends = [ base containers mtl ]; description = "Sodium Reactive Programming (FRP) System"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "soegtk" = callPackage @@ -261662,6 +275501,8 @@ self: { libraryHaskellDepends = [ base cairo gtk old-time stm ]; description = "GUI functions as used in the book \"The Haskell School of Expression\""; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "softfloat-hs" = callPackage @@ -261674,6 +275515,8 @@ self: { librarySystemDepends = [ softfloat ]; description = "Haskell bindings for SoftFloat"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {softfloat = null;}; "solana-staking-csvs" = callPackage @@ -261713,6 +275556,8 @@ self: { libraryHaskellDepends = [ base time ]; description = "Simple library for solar calculations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "solga" = callPackage @@ -261736,6 +275581,8 @@ self: { ]; description = "Simple typesafe web routing"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "solga-swagger" = callPackage @@ -261753,6 +275600,7 @@ self: { ]; description = "Swagger generation for Solga"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "solr" = callPackage @@ -261777,6 +275625,7 @@ self: { ]; description = "A minimal Solr client library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "solve" = callPackage @@ -261810,6 +275659,8 @@ self: { ]; description = "Self-Organising Maps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "some" = callPackage @@ -261867,7 +275718,9 @@ self: { ]; description = "Sonic Visualiser"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "svdump"; + broken = true; }) {}; "sop-core" = callPackage @@ -261938,6 +275791,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Efficient, type-safe sorted sequences"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sorted-list" = callPackage @@ -261973,6 +275828,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Utils for sorting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sorting-network" = callPackage @@ -262001,7 +275858,9 @@ self: { executableHaskellDepends = [ base bytestring ]; description = "Sort lines per file size"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sorty"; + broken = true; }) {}; "souffle-dsl" = callPackage @@ -262025,6 +275884,7 @@ self: { ]; description = "Haskell EDSL for Souffle"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "souffle-haskell" = callPackage @@ -262047,6 +275907,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq text vector ]; description = "Souffle Datalog bindings for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sound-collage" = callPackage @@ -262123,6 +275985,7 @@ self: { ]; description = "The server backend for the source code iPhone app"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "source-code-server"; }) {}; @@ -262143,6 +276006,8 @@ self: { ]; description = "Source constraints GHC plugin"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sourcemap" = callPackage @@ -262182,6 +276047,8 @@ self: { ]; description = "Source/Sink/Transform: An alternative to lazy IO and iteratees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sox" = callPackage @@ -262241,7 +276108,9 @@ self: { ]; description = "DCPU-16 architecture utilities for Notch's 0x10c game"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "soyuz"; + broken = true; }) {}; "space" = callPackage @@ -262327,6 +276196,8 @@ self: { libraryHaskellDepends = [ base vector-space ]; description = "Space partition data structures. Currently only a QuadTree."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "spaceprobe" = callPackage @@ -262395,6 +276266,7 @@ self: { description = "A simple programming and debugging environment"; license = lib.licenses.gpl3Only; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; mainProgram = "spade"; }) {}; @@ -262422,7 +276294,9 @@ self: { ]; description = "Implementation of the SPAKE2 Password-Authenticated Key Exchange algorithm"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "haskell-spake2-interop-entrypoint"; + broken = true; }) {}; "spanout" = callPackage @@ -262468,6 +276342,7 @@ self: { ]; description = "Distributed Apache Spark applications in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sparkle"; }) {}; @@ -262514,6 +276389,7 @@ self: { ]; description = "Unified streaming data-dependency framework for web apps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "spars" = callPackage @@ -262525,6 +276401,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A sparse set-based parsing library for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sparse" = callPackage @@ -262552,6 +276430,8 @@ self: { benchmarkHaskellDepends = [ array base criterion deepseq vector ]; description = "A playground of sparse linear algebra primitives using Morton ordering"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sparse-lin-alg" = callPackage @@ -262569,6 +276449,8 @@ self: { ]; description = "Effective linear algebra on sparse matrices"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sparse-linear-algebra" = callPackage @@ -262593,6 +276475,8 @@ self: { ]; description = "Numerical computing in native Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sparse-merkle-trees" = callPackage @@ -262617,6 +276501,8 @@ self: { ]; description = "Sparse Merkle trees with proofs of inclusion and exclusion"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sparse-tensor" = callPackage @@ -262639,6 +276525,8 @@ self: { ]; description = "typesafe tensor algebra library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sparsebit" = callPackage @@ -262650,6 +276538,7 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "Sparse bitmaps for pattern match coverage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sparsecheck" = callPackage @@ -262661,6 +276550,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A Logic Programming Library for Test-Data Generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sparser" = callPackage @@ -262694,6 +276585,7 @@ self: { ]; description = "A unix-style (read from stdin, write to stdout) global hotkey daemon"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "spartacon"; }) {}; @@ -262707,6 +276599,7 @@ self: { libraryHaskellDepends = [ base dlist mps mtl ]; description = "brainless form validation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "spatial-math" = callPackage @@ -262834,6 +276727,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Control.Applicative, Data.Foldable, Data.Traversable (compatibility package)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "special-keys" = callPackage @@ -262851,6 +276746,8 @@ self: { ]; description = "Simple data types that help me here and there"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "special-values" = callPackage @@ -262892,6 +276789,7 @@ self: { ]; description = "Create specialized types from polymorphic ones using TH"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "species" = callPackage @@ -262933,6 +276831,8 @@ self: { ]; description = "Embedded specification language & model checker in Haskell"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "spectral-clustering" = callPackage @@ -262950,6 +276850,7 @@ self: { ]; description = "Library for spectral clustering"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "speculate" = callPackage @@ -262976,6 +276877,8 @@ self: { libraryHaskellDepends = [ base ghc-prim stm transformers ]; description = "A framework for safe, programmable, speculative parallelism"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "speculation-transformers" = callPackage @@ -262988,6 +276891,7 @@ self: { doHaddock = false; description = "Merged into 'speculation'. Use that instead."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "speechmatics" = callPackage @@ -263018,6 +276922,7 @@ self: { ]; description = "Speechmatics api client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "speechmatics"; }) {}; @@ -263057,6 +276962,7 @@ self: { ]; description = "Spelling suggestion tool with library and command-line interfaces"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "spherical" = callPackage @@ -263083,6 +276989,7 @@ self: { ]; description = "Orbotix Sphero client library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sphinx" = callPackage @@ -263099,6 +277006,8 @@ self: { ]; description = "Haskell bindings to the Sphinx full-text searching daemon"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sphinx-cli" = callPackage @@ -263112,6 +277021,7 @@ self: { executableHaskellDepends = [ base sphinx ]; description = "Sphinx CLI and demo of Haskell Sphinx library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sphinx-cli"; }) {}; @@ -263131,7 +277041,9 @@ self: { executableHaskellDepends = [ base optparse-applicative ]; description = "Transform queries for sphinx input"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sphinxesc"; + broken = true; }) {}; "spice" = callPackage @@ -263148,6 +277060,7 @@ self: { ]; description = "An FRP-based game engine written in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "spike" = callPackage @@ -263192,6 +277105,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Some utilities for reading and writing SPIR-V files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "spiros" = callPackage @@ -263218,6 +277133,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "Spiros Boosalis's Custom Prelude"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "spirv-reflect-ffi" = callPackage @@ -263271,6 +277188,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Generic splay-based sequence representation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "splaytree" = callPackage @@ -263290,6 +277209,8 @@ self: { ]; description = "Provides an annotated splay tree"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "splice" = callPackage @@ -263323,6 +277244,7 @@ self: { ]; description = "A parallel implementation of the Sorokina/Zeilfelder spline scheme"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "spline3"; }) {}; @@ -263345,6 +277267,7 @@ self: { benchmarkHaskellDepends = [ base criterion polynomial vector ]; description = "B-Splines, other splines, and NURBS"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "splint" = callPackage @@ -263356,6 +277279,8 @@ self: { libraryHaskellDepends = [ base containers ghc hlint stm ]; description = "HLint as a GHC source plugin"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "split" = callPackage @@ -263391,6 +277316,8 @@ self: { testHaskellDepends = [ base invariant lens QuickCheck ]; description = "Split Epimorphisms and Monomorphisms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "split-record" = callPackage @@ -263479,7 +277406,9 @@ self: { ]; description = "Use numerical ranges to split out certain lines from a file"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "splitter"; + broken = true; }) {}; "splot" = callPackage @@ -263554,7 +277483,9 @@ self: { ]; description = "Spoon's utilities. Simple testing and nice looking error reporting."; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "test"; + broken = true; }) {}; "spork" = callPackage @@ -263601,7 +277532,9 @@ self: { doHaddock = false; description = "Spotify Web API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "examples"; + broken = true; }) {}; "spoty" = callPackage @@ -263618,6 +277551,8 @@ self: { ]; description = "Spotify web API wrapper"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "spreadsheet" = callPackage @@ -263680,6 +277615,7 @@ self: { ]; description = "JSON API to HTML website wrapper"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sprinkles"; }) {}; @@ -263692,6 +277628,8 @@ self: { libraryHaskellDepends = [ base lens mtl vector ]; description = "An implementation of the Spritz RC4-like stream cipher in Haskell"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sproxy" = callPackage @@ -263716,6 +277654,7 @@ self: { ]; description = "HTTP proxy for authenticating users via OAuth2"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sproxy"; }) {}; @@ -263742,6 +277681,7 @@ self: { ]; description = "Web interface to sproxy database"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sproxy-web"; }) {}; @@ -263768,6 +277708,7 @@ self: { ]; description = "Secure HTTP proxy for authenticating users via OAuth2"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sproxy2"; }) {}; @@ -263788,6 +277729,8 @@ self: { benchmarkHaskellDepends = [ base criterion hmatrix random ]; description = "Simultaneous Perturbation Stochastic Approximation Optimization Algorithm"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "spy" = callPackage @@ -263813,7 +277756,9 @@ self: { ]; description = "A compact file system watcher for Mac OS X, Linux and Windows"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "spy"; + broken = true; }) {}; "sqel" = callPackage @@ -263841,6 +277786,8 @@ self: { ]; description = "Guided derivation for Hasql statements"; license = "BSD-2-Clause-Patent"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sqids" = callPackage @@ -263855,6 +277802,8 @@ self: { testHaskellDepends = [ base containers hspec mtl split text ]; description = "A small library that lets you generate YouTube-looking IDs from numbers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sql-simple" = callPackage @@ -263871,6 +277820,8 @@ self: { ]; description = "common middle-level sql client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sql-simple-mysql" = callPackage @@ -263886,6 +277837,7 @@ self: { ]; description = "mysql backend for sql-simple"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "sql-simple-pool" = callPackage @@ -263902,6 +277854,7 @@ self: { ]; description = "conection pool for sql-simple"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "sql-simple-postgresql" = callPackage @@ -263917,6 +277870,7 @@ self: { ]; description = "postgresql backend for sql-simple"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "sql-simple-sqlite" = callPackage @@ -263928,6 +277882,7 @@ self: { libraryHaskellDepends = [ base sql-simple sqlite-simple ]; description = "sqlite backend for sql-simple"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "sql-words" = callPackage @@ -263958,6 +277913,8 @@ self: { testHaskellDepends = [ base filepath hspec temporary ]; description = "Haskell binding to sqlcipher"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) openssl;}; "sqlcli" = callPackage @@ -263998,6 +277955,8 @@ self: { testHaskellDepends = [ base ]; description = "Haskell binding to sqlite3"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) sqlite;}; "sqlite-easy" = callPackage @@ -264051,6 +278010,8 @@ self: { testHaskellDepends = [ base mtl sqlite-simple text ]; description = "Wrapper around errors from sqlite-simple"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sqlite-simple-interpolate" = callPackage @@ -264083,6 +278044,7 @@ self: { ]; description = "Typed extension to sqlite simple"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sqlvalue-list" = callPackage @@ -264094,6 +278056,8 @@ self: { libraryHaskellDepends = [ base convertible HDBC template-haskell ]; description = "Class and instances for conversion to list of SqlValue"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sqsd-local" = callPackage @@ -264115,6 +278079,7 @@ self: { testHaskellDepends = [ base ]; description = "Initial project template from stack"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "sqsd-local"; }) {}; @@ -264172,6 +278137,7 @@ self: { ]; description = "Squeal PostgreSQL Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -264189,6 +278155,7 @@ self: { ]; description = "LTree extension for Squeal"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "squeal-postgresql-uuid-ossp" = callPackage @@ -264200,6 +278167,7 @@ self: { libraryHaskellDepends = [ base squeal-postgresql ]; description = "UUID OSSP extension for Squeal"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "squeather" = callPackage @@ -264240,6 +278208,7 @@ self: { ]; description = "A file-packing application"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "squeeze"; }) {}; @@ -264270,6 +278239,7 @@ self: { ]; description = "Module limbo"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "srcinst" = callPackage @@ -264288,7 +278258,9 @@ self: { ]; description = "Build and install Debian packages completely from source"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "srcinst"; + broken = true; }) {}; "srcloc" = callPackage @@ -264338,6 +278310,8 @@ self: { ]; description = "Attoparsec parser for the SRT format"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "srt-dhall" = callPackage @@ -264358,6 +278332,7 @@ self: { ]; description = "Dhall Encoder/Decoder for SRT"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "srt-formatting" = callPackage @@ -264374,6 +278349,7 @@ self: { ]; description = "Format an SRT"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "srtree" = callPackage @@ -264429,7 +278405,9 @@ self: { ]; description = "text UI for scanning with SANE"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "sscan"; + broken = true; }) {}; "sscgi" = callPackage @@ -264447,6 +278425,7 @@ self: { ]; description = "Simple SCGI Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sscript" = callPackage @@ -264490,6 +278469,8 @@ self: { doCheck = false; description = "A pure-Haskell SSH server library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ssh-known-hosts" = callPackage @@ -264529,6 +278510,8 @@ self: { ]; description = "Proxy http-client via ssh tunnel"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sshd-lint" = callPackage @@ -264549,6 +278532,7 @@ self: { ]; description = "Check sshd configuration for adherence to best practices"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sshd-lint"; }) {}; @@ -264598,6 +278582,7 @@ self: { ]; description = "HTTP proxy for S3"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sssp"; }) {}; @@ -264617,6 +278602,7 @@ self: { executableHaskellDepends = [ cmdargs ]; description = "SSTables in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sstable"; }) {}; @@ -264644,6 +278630,8 @@ self: { libraryHaskellDepends = [ base gdp primitive ]; description = "shared heap regions between local mutable state threads"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stable-heap" = callPackage @@ -264676,6 +278664,8 @@ self: { libraryHaskellDepends = [ base containers ghc-prim ]; description = "Heterogeneous maps keyed by StableNames"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stable-marriage" = callPackage @@ -264723,6 +278713,7 @@ self: { ]; description = "Trees whose branches are resistant to change"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "demo"; }) {}; @@ -264898,7 +278889,9 @@ self: { ]; description = "Dead simple version bumping for hpack packages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "stack-bump"; + broken = true; }) {}; "stack-clean-old" = callPackage @@ -264930,7 +278923,9 @@ self: { executableHaskellDepends = [ base options text turtle ]; description = "Console program used to fix Stack build errors automatically"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "stack-fix"; + broken = true; }) {}; "stack-hpc-coveralls" = callPackage @@ -264955,6 +278950,7 @@ self: { ]; description = "Initial project template from stack"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; mainProgram = "shc"; }) {}; @@ -264971,6 +278967,8 @@ self: { ]; description = "Wrapper to use stack as a library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stack-network" = callPackage @@ -265012,6 +279010,7 @@ self: { ]; description = "A program for extending Stack to add distributed capabilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "stack-network"; }) {}; @@ -265031,6 +279030,8 @@ self: { testHaskellDepends = [ base template-haskell ]; description = "Stack prisms"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stack-run" = callPackage @@ -265050,7 +279051,9 @@ self: { ]; description = "An equivalent to cabal run for stack"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "stack-run"; + broken = true; }) {}; "stack-run-auto" = callPackage @@ -265078,6 +279081,7 @@ self: { ]; description = "Initial project template from stack"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "stack-tag" = callPackage @@ -265125,6 +279129,8 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "The basic stack type"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stack-wrapper" = callPackage @@ -265141,6 +279147,8 @@ self: { executableHaskellDepends = [ base filepath process ]; description = "Call ghc within stack by calling ghc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stack-yaml" = callPackage @@ -265183,7 +279191,9 @@ self: { ]; description = "Convert stack projects to cabal.project + cabal.project.freeze"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "stack2cabal"; + broken = true; }) {}; "stack2nix" = callPackage @@ -265210,7 +279220,9 @@ self: { testHaskellDepends = [ base hspec ]; description = "Convert stack.yaml files into Nix build instructions."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "stack2nix"; + broken = true; }) {}; "stackage" = callPackage @@ -265229,6 +279241,7 @@ self: { ]; description = "Dummy package forcing installation of other Stackage packages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "stackage-build-plan" = callPackage @@ -265253,6 +279266,7 @@ self: { ]; description = "Calculate and print (in different formats) Stackage build plans"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "stackage-build-plan"; }) {}; @@ -265274,6 +279288,7 @@ self: { ]; description = "A CLI executable for cabal-based stackage commands"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "stackage-cli" = callPackage @@ -265295,6 +279310,8 @@ self: { executableHaskellDepends = [ base text ]; description = "A CLI library for stackage commands"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stackage-curator" = callPackage @@ -265339,6 +279356,7 @@ self: { ]; description = "Tools for curating Stackage bundles"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "stackage-install" = callPackage @@ -265388,7 +279406,9 @@ self: { ]; description = "DEPRECATED Grab current metadata for all packages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "all-cabal-metadata-tool"; + broken = true; }) {}; "stackage-query" = callPackage @@ -265412,6 +279432,7 @@ self: { ]; description = "Tool for querying Stackage"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "stackage"; }) {}; @@ -265433,6 +279454,7 @@ self: { ]; description = "Work with shared stackage sandboxes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "stackage-sandbox"; }) {}; @@ -265457,6 +279479,7 @@ self: { ]; description = "An executable for downloading a Haskell setup"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "stackage-setup"; }) {}; @@ -265483,7 +279506,9 @@ self: { ]; description = "Convert stack.yaml to cabal.project + cabal.project.freeze"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "stackage-to-hackage"; + broken = true; }) {}; "stackage-types" = callPackage @@ -265503,6 +279528,8 @@ self: { ]; description = "Shared data types between various Stackage packages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stackage-update" = callPackage @@ -265540,6 +279567,7 @@ self: { ]; description = "A more secure version of cabal upload which uses HTTPS"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "stackage-upload"; }) {}; @@ -265571,6 +279599,7 @@ self: { ]; description = "Convert Stack files into Nix build instructions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "stackage2nix"; }) {}; @@ -265597,7 +279626,9 @@ self: { ]; description = "Program to fold GHC prof files into flamegraph input"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "stackcollapse-ghc"; + broken = true; }) {}; "stackctl" = callPackage @@ -265630,6 +279661,7 @@ self: { aeson base bytestring hspec mtl QuickCheck yaml ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "stackctl"; }) {}; @@ -265678,6 +279710,8 @@ self: { ]; description = "GHC.Generics style staged generics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stagen" = callPackage @@ -265733,7 +279767,9 @@ self: { doHaddock = false; description = "Haskell STatic ANalyser"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "stan"; + broken = true; }) {}; "standalone-derive-topdown" = callPackage @@ -265745,6 +279781,8 @@ self: { libraryHaskellDepends = [ base mtl template-haskell ]; description = "This package will derive class instance along the data type declaration tree. (Deprecated)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "standalone-haddock" = callPackage @@ -265762,7 +279800,9 @@ self: { ]; description = "Generate standalone haddock documentation for a set of packages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "standalone-haddock"; + broken = true; }) {}; "star" = callPackage @@ -265809,6 +279849,8 @@ self: { ]; description = "A memcached client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "starrover2" = callPackage @@ -265828,6 +279870,7 @@ self: { ]; description = "Space simulation game"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "starrover2"; }) {}; @@ -265840,6 +279883,8 @@ self: { libraryHaskellDepends = [ base fsnotify ]; description = "Develop applications without restarts"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stash" = callPackage @@ -265855,6 +279900,8 @@ self: { ]; description = "To be written"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "state" = callPackage @@ -265866,6 +279913,8 @@ self: { libraryHaskellDepends = [ arrows base mtl ]; description = "Data.State"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "state-bag" = callPackage @@ -265882,6 +279931,8 @@ self: { testHaskellDepends = [ base hspec transformers ]; description = "Monad transformers for holding bags of state"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "state-codes" = callPackage @@ -265907,6 +279958,8 @@ self: { testHaskellDepends = [ base checkers mtl QuickCheck ]; description = "MonadPlus for StateT"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "state-record" = callPackage @@ -265918,6 +279971,8 @@ self: { libraryHaskellDepends = [ base mtl template-haskell ]; description = "Better records for State monad states"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stateWriter" = callPackage @@ -265961,6 +280016,7 @@ self: { libraryHaskellDepends = [ base MaybeT mtl ]; description = "Typeclass instances for monad transformer stacks with an ST thread at the bottom"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "stateref" = callPackage @@ -266034,6 +280090,8 @@ self: { ]; description = "Type-safe and interoperable static values and closures"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "static-bytes" = callPackage @@ -266082,6 +280140,7 @@ self: { ]; description = "Serialisable static pointers to functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "static-hash" = callPackage @@ -266125,7 +280184,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "See README on Github for more information"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "static-ls"; + broken = true; }) {}; "static-resources" = callPackage @@ -266170,6 +280231,8 @@ self: { ]; description = "Tensors of statically known size"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "static-text" = callPackage @@ -266243,6 +280306,7 @@ self: { ]; description = "Functions for working with Dirichlet densities and mixtures on vectors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "statistics-fusion" = callPackage @@ -266254,6 +280318,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "An implementation of high performance, minimal statistics functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "statistics-hypergeometric-genvar" = callPackage @@ -266269,6 +280335,8 @@ self: { ]; description = "Random variate generation from hypergeometric distributions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "statistics-linreg" = callPackage @@ -266309,6 +280377,8 @@ self: { ]; description = "A library of statistical types, data, and functions"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stats" = callPackage @@ -266322,7 +280392,9 @@ self: { executableHaskellDepends = [ base statistics text vector ]; description = "command line statistics"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "stats"; + broken = true; }) {}; "statsd" = callPackage @@ -266338,6 +280410,8 @@ self: { ]; description = "StatsD API"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "statsd-client" = callPackage @@ -266355,6 +280429,7 @@ self: { ]; description = "Statsd UDP client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "statsd-datadog" = callPackage @@ -266393,6 +280468,7 @@ self: { ]; description = "A lovely [Dog]StatsD implementation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "status-notifier-item" = callPackage @@ -266427,6 +280503,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Get unix filesystem statistics with statfs, statvfs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "staversion" = callPackage @@ -266481,6 +280559,8 @@ self: { testHaskellDepends = [ base hspec vector ]; description = "Image loading and writing microlibrary"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stb-truetype" = callPackage @@ -266525,7 +280605,9 @@ self: { ]; description = "A library for implicit, monadic dataflow parallelism"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ohua-stream-bench"; + broken = true; }) {}; "std" = callPackage @@ -266548,6 +280630,8 @@ self: { libraryHaskellDepends = [ base parsec syb template-haskell ]; description = "Structure Data Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stdcxx" = callPackage @@ -266581,6 +280665,8 @@ self: { ]; description = "Parse Structured Test Data Format (STDF)"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stdio" = callPackage @@ -266606,6 +280692,8 @@ self: { ]; description = "A simple and high performance IO toolkit for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libuv;}; "steambrowser" = callPackage @@ -266619,7 +280707,9 @@ self: { executableHaskellDepends = [ base directory parsec transformers ]; description = "List and launch steam games from the cli"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "steambrowser"; + broken = true; }) {}; "steeloverseer" = callPackage @@ -266653,6 +280743,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "A file watcher and development tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sos"; }) {}; @@ -266667,6 +280758,8 @@ self: { testHaskellDepends = [ base random uuid ]; description = "Generator and verifier for steganographic numbers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stemmer" = callPackage @@ -266678,6 +280771,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell bindings to the Snowball stemming library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stemmer-german" = callPackage @@ -266691,6 +280786,8 @@ self: { libraryHaskellDepends = [ base text ]; description = "Extract the stem of a German inflected word form"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "step-function" = callPackage @@ -266715,6 +280812,8 @@ self: { sha256 = "059k8g3wb4hkxk42vm83vv6kh3igrpf7fc97xvn3qai5rx3jmgqf"; libraryHaskellDepends = [ base containers mtl ]; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stern-brocot" = callPackage @@ -266732,6 +280831,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Positive rational numbers represented as paths in the Stern-Brocot tree"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "stgi" = callPackage @@ -266760,7 +280860,9 @@ self: { ]; description = "Educational implementation of the STG (Spineless Tagless G-machine)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "stgi-exe"; + broken = true; }) {}; "stickyKeysHotKey" = callPackage @@ -266853,6 +280955,8 @@ self: { testHaskellDepends = [ async base HUnit stm tasty tasty-hunit ]; description = "Chunked Communication Queues"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stm-conduit" = callPackage @@ -266940,6 +281044,8 @@ self: { testHaskellDepends = [ base hspec HUnit stm ]; description = "Conduits and STM operations for fire hoses"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stm-hamt" = callPackage @@ -267033,6 +281139,8 @@ self: { testHaskellDepends = [ base QuickCheck stm ]; description = "Simple STM Promises for IO computations and external processes"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stm-queue" = callPackage @@ -267096,6 +281204,8 @@ self: { ]; description = "retry statistics for STM transactions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stm-supply" = callPackage @@ -267133,6 +281243,7 @@ self: { libraryHaskellDepends = [ base haskell98 mtl stm ]; description = "Control communication among retrying transactions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "stochastic" = callPackage @@ -267148,6 +281259,8 @@ self: { ]; description = "Monadic composition of probabilistic functions and sampling"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stocks" = callPackage @@ -267243,6 +281356,8 @@ self: { doHaddock = false; description = "A simple wrapper around stooq.pl API for downloading market data."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stopwatch" = callPackage @@ -267266,6 +281381,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Storable type class for variable-sized data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "storable-complex" = callPackage @@ -267310,6 +281427,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Storable offsets for record fields"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "storable-record" = callPackage @@ -267339,6 +281458,8 @@ self: { libraryHaskellDepends = [ array base tagged vector ]; description = "Statically-sized array wrappers with Storable instances for FFI marshaling"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "storable-tuple" = callPackage @@ -267405,6 +281526,7 @@ self: { ]; description = "Conversion between storablevector and stream-fusion lists with fusion"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "store" = callPackage @@ -267507,7 +281629,9 @@ self: { executableHaskellDepends = [ base regex-compat ]; description = "Simple Theorem Prover"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "mu-test"; + broken = true; }) {}; "str" = callPackage @@ -267524,6 +281648,8 @@ self: { ]; description = "A type class to abstract between many different string types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stratosphere" = callPackage @@ -267568,6 +281694,7 @@ self: { ]; description = "Client for Stratum protocol"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "stratum-tool"; }) {}; @@ -267584,6 +281711,7 @@ self: { ]; description = "A library for stratux"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "stratux-demo" = callPackage @@ -267606,6 +281734,7 @@ self: { ]; description = "A demonstration of the stratux library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "stratux-demo"; }) {}; @@ -267622,6 +281751,7 @@ self: { ]; description = "A library for using HTTP with stratux"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "stratux-types" = callPackage @@ -267637,6 +281767,8 @@ self: { ]; description = "A library for reading JSON output from stratux"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stratux-websockets" = callPackage @@ -267653,6 +281785,7 @@ self: { ]; description = "A library for using websockets with stratux"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "stream" = callPackage @@ -267672,6 +281805,8 @@ self: { ]; description = "Initial project template from stack"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stream-fusion" = callPackage @@ -267685,6 +281820,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Faster Haskell lists using stream fusion"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stream-monad" = callPackage @@ -267698,6 +281835,8 @@ self: { libraryHaskellDepends = [ base logict ]; description = "Simple, Fair and Terminating Backtracking Monad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streamdeck" = callPackage @@ -267709,6 +281848,8 @@ self: { libraryHaskellDepends = [ base bytestring hidapi mtl split ]; description = "Control library for the Elgato Stream Deck"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streamed" = callPackage @@ -267728,6 +281869,8 @@ self: { description = "Programmatically edit MIDI event streams via ALSA"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streaming" = callPackage @@ -267784,6 +281927,7 @@ self: { ]; description = "Streaming conversion from/to base64"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "streaming-benchmarks" = callPackage @@ -267804,6 +281948,8 @@ self: { ]; description = "Measures and compares the performance of streaming libraries"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streaming-binary" = callPackage @@ -267859,6 +282005,8 @@ self: { ]; description = "Streaming interface for Brotli (RFC7932) compression"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streaming-bytestring" = callPackage @@ -267901,6 +282049,8 @@ self: { ]; description = "Cassava support for the streaming ecosystem"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streaming-commons" = callPackage @@ -267948,6 +282098,7 @@ self: { ]; description = "Concurrency support for the streaming ecosystem"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "streaming-conduit" = callPackage @@ -267964,6 +282115,8 @@ self: { testHaskellDepends = [ base conduit hspec streaming ]; description = "Bidirectional support between the streaming and conduit libraries"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streaming-events" = callPackage @@ -267980,6 +282133,8 @@ self: { ]; description = "Client-side consumption of a ServerEvent"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streaming-eversion" = callPackage @@ -268015,6 +282170,7 @@ self: { ]; description = "online streaming fft"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "streaming-histogram" = callPackage @@ -268051,6 +282207,8 @@ self: { ]; description = "Streaming interface for LZMA/XZ compression"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streaming-nonempty" = callPackage @@ -268085,6 +282243,8 @@ self: { ]; description = "A hand-written streaming byte parser for OpenStreetMap Protobuf data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streaming-pcap" = callPackage @@ -268126,6 +282286,8 @@ self: { ]; description = "Perfectly streaming PNG image decoding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streaming-postgresql-simple" = callPackage @@ -268145,6 +282307,8 @@ self: { ]; description = "Stream postgresql-query results using the streaming library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streaming-process" = callPackage @@ -268169,6 +282333,7 @@ self: { ]; description = "Streaming support for running system process"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "streaming-sort" = callPackage @@ -268190,6 +282355,7 @@ self: { ]; description = "Sorting streams"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "streaming-utils" = callPackage @@ -268241,6 +282407,8 @@ self: { ]; description = "with/bracket-style idioms for use with streaming"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streamly" = callPackage @@ -268301,6 +282469,8 @@ self: { ]; description = "Integration of streamly and binary"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streamly-bytestring" = callPackage @@ -268350,6 +282520,8 @@ self: { ]; description = "CSV streaming support via cassava for the streamly ecosystem"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streamly-core" = callPackage @@ -268405,6 +282577,8 @@ self: { ]; description = "Folder watching as a Streamly stream"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streamly-lmdb" = callPackage @@ -268445,6 +282619,8 @@ self: { benchmarkHaskellDepends = [ base directory gauge streamly ]; description = "Streamly combinators for LZ4 compression"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streamly-posix" = callPackage @@ -268466,6 +282642,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Posix related streaming APIs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streamly-process" = callPackage @@ -268523,6 +282701,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Stream Processer Arrow"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "streams" = callPackage @@ -268575,6 +282755,7 @@ self: { ]; description = "A simple, flexible and composable web-router"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "strelka-core" = callPackage @@ -268591,6 +282772,8 @@ self: { ]; description = "Core components of \"strelka\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "strelka-wai" = callPackage @@ -268607,6 +282790,7 @@ self: { ]; description = "WAI compatibility layer for \"strelka\""; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "strict" = callPackage @@ -268687,6 +282871,8 @@ self: { ]; description = "Strict containers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "strict-containers-lens" = callPackage @@ -268698,6 +282884,7 @@ self: { libraryHaskellDepends = [ base hashable lens strict-containers ]; description = "Strict containers - Lens instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "strict-containers-serialise" = callPackage @@ -268713,6 +282900,7 @@ self: { ]; description = "Strict containers - Serialise instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "strict-data" = callPackage @@ -268737,6 +282925,7 @@ self: { ]; description = "A collection of commonly used strict data structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "strict-ghc-plugin" = callPackage @@ -268748,6 +282937,8 @@ self: { libraryHaskellDepends = [ base ghc syb ]; description = "Compiler plugin for making Haskell strict"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "strict-identity" = callPackage @@ -268873,6 +283064,8 @@ self: { libraryHaskellDepends = [ base lens strict-tuple ]; description = "Optics for the `strict-tuple` library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "strict-types" = callPackage @@ -268940,6 +283133,8 @@ self: { libraryHaskellDepends = [ base deepseq ]; description = "Combinators for strictifying functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "string" = callPackage @@ -268964,6 +283159,8 @@ self: { libraryHaskellDepends = [ base bytestring tagged text ]; description = "String class library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "string-combinators" = callPackage @@ -269009,6 +283206,8 @@ self: { ]; description = "Tests for the string-conv library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "string-conversions" = callPackage @@ -269057,6 +283256,8 @@ self: { libraryHaskellDepends = [ base bytestring memory text ]; description = "Conversions between common string types, as well as Base16/Base32/Base64"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "string-interpolate" = callPackage @@ -269116,6 +283317,8 @@ self: { ]; description = "Tools for working with isomorphisms of strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "string-like" = callPackage @@ -269151,6 +283354,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "QuasiQuoter for non-interpolated strings, texts and bytestrings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "string-random" = callPackage @@ -269221,6 +283426,7 @@ self: { ]; description = "Type-level Chars and Strings, with decidable equality"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "string-variants" = callPackage @@ -269285,6 +283491,8 @@ self: { ]; description = "Transformations to several string-like types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stringprep" = callPackage @@ -269339,6 +283547,8 @@ self: { libraryHaskellDepends = [ base binary bytestring containers syb ]; description = "Memoize Strings as Atoms for fast comparison and sorting, with maps and sets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "strio" = callPackage @@ -269385,6 +283595,8 @@ self: { ]; description = "A Haskell implementation of the Stripe API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stripe-concepts" = callPackage @@ -269412,6 +283624,8 @@ self: { ]; description = "Stripe API for Haskell - Pure Core"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stripe-haskell" = callPackage @@ -269423,6 +283637,7 @@ self: { libraryHaskellDepends = [ base stripe-core stripe-http-client ]; description = "Stripe API for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "stripe-hs" = callPackage @@ -269448,6 +283663,8 @@ self: { ]; description = "Unofficial Stripe client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stripe-http-client" = callPackage @@ -269467,6 +283684,7 @@ self: { ]; description = "Stripe API for Haskell - http-client backend"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "stripe-http-streams" = callPackage @@ -269487,6 +283705,7 @@ self: { doCheck = false; description = "Stripe API for Haskell - http-streams backend"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "stripe-scotty" = callPackage @@ -269556,6 +283775,7 @@ self: { ]; description = "Tests for Stripe API bindings for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "stripe-wreq" = callPackage @@ -269641,6 +283861,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "Strongly typed paths in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "strongswan-sql" = callPackage @@ -269672,6 +283894,7 @@ self: { ]; description = "Interface library for strongSwan SQL backend"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "strongswan-sql"; }) {}; @@ -269765,6 +283988,7 @@ self: { ]; description = "Instantiate structural induction schemas for algebraic data types"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "structural-traversal" = callPackage @@ -269777,6 +284001,8 @@ self: { testHaskellDepends = [ base HUnit mtl ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "structured" = callPackage @@ -269857,6 +284083,7 @@ self: { ]; description = "Structured MongoDB interface"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "structures" = callPackage @@ -269887,6 +284114,8 @@ self: { ]; description = "\"Advanced\" Data Structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stt" = callPackage @@ -269903,6 +284132,8 @@ self: { ]; description = "A monad transformer version of the ST monad"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stunclient" = callPackage @@ -269926,6 +284157,8 @@ self: { ]; description = "RFC 5389: Session Traversal Utilities for NAT (STUN) client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stunts" = callPackage @@ -269946,6 +284179,7 @@ self: { ]; description = "A revival of the classic game Stunts (LambdaCube tech demo)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "stunts"; }) {}; @@ -269974,6 +284208,7 @@ self: { ]; description = "(Stutter Text|String)-Utterer"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "stutter"; }) {}; @@ -270001,7 +284236,9 @@ self: { doHaddock = false; description = "Format Cabal files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "stylish-cabal"; + broken = true; }) {}; "stylish-haskell_0_14_3_0" = callPackage @@ -270129,6 +284366,8 @@ self: { ]; description = "Apply CSS styles to a document tree"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "stylist-traits" = callPackage @@ -270153,6 +284392,8 @@ self: { libraryHaskellDepends = [ ansi-terminal base ]; description = "Ways to output stylized text on ANSI consoles"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "styx" = callPackage @@ -270210,6 +284451,8 @@ self: { ]; description = "Get the total, put a single element"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "subG" = callPackage @@ -270232,6 +284475,8 @@ self: { libraryHaskellDepends = [ base subG vector ]; description = "Additional instances for the InsertLeft class from subG package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "subcategories" = callPackage @@ -270287,6 +284532,7 @@ self: { benchmarkHaskellDepends = [ base criterion MonadRandom ]; description = "Type safe interface for programming in subcategories of Hask"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "subleq-toolchain" = callPackage @@ -270308,7 +284554,9 @@ self: { ]; description = "Toolchain of subleq computer"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "subleq"; + broken = true; }) {}; "sublists" = callPackage @@ -270341,7 +284589,9 @@ self: { ]; description = "Extract a part from CommonMark/Markdown docs"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "submark"; + broken = true; }) {}; "subnet" = callPackage @@ -270371,7 +284621,9 @@ self: { ]; description = "Subsample data"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "subsample"; + broken = true; }) {}; "substring-parser" = callPackage @@ -270390,6 +284642,7 @@ self: { ]; description = "Match / replace substrings with a parser combinators"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "subtitleParser" = callPackage @@ -270427,6 +284680,8 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Subword graph implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "subzero" = callPackage @@ -270487,7 +284742,9 @@ self: { benchmarkHaskellDepends = [ base criterion random ]; description = "Simple and moderately efficient suffix array implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "suffix-array-exe"; + broken = true; }) {}; "suffixarray" = callPackage @@ -270502,6 +284759,8 @@ self: { executableHaskellDepends = [ base HUnit ]; description = "n log n implementation of suffix array"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "suffixtree" = callPackage @@ -270533,6 +284792,8 @@ self: { ]; description = "A pretty, sweet data language"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sugar-data" = callPackage @@ -270547,6 +284808,7 @@ self: { testHaskellDepends = [ base hspec sugar tasty tasty-hspec ]; description = "Convert sugar to common data types for code generation"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "sugar-json" = callPackage @@ -270566,6 +284828,7 @@ self: { testHaskellDepends = [ base hspec sugar tasty tasty-hspec ]; description = "Sugar with JSON"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "sugar-scheme" = callPackage @@ -270582,6 +284845,7 @@ self: { testHaskellDepends = [ base hspec sugar tasty tasty-hspec ]; description = "Sugar with Scheme"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "sugarhaskell" = callPackage @@ -270595,6 +284859,8 @@ self: { executableHaskellDepends = [ base process ]; description = "Library-based syntactic extensibility for Haskell"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "suitable" = callPackage @@ -270608,6 +284874,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Abstract over the constraints on the parameters to type constructors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sum-type-boilerplate" = callPackage @@ -270620,6 +284888,8 @@ self: { testHaskellDepends = [ base hspec template-haskell ]; description = "Library for reducing the boilerplate involved with sum types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "summer" = callPackage @@ -270659,7 +284929,9 @@ self: { ]; description = "Tool for scaffolding fully configured batteries-included production-level Haskell projects"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "summon"; + broken = true; }) {}; "summoner-tui" = callPackage @@ -270679,6 +284951,7 @@ self: { executableHaskellDepends = [ base relude ]; description = "Tool for scaffolding fully configured batteries-included production-level Haskell projects using TUI"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "summon-tui"; }) {}; @@ -270697,6 +284970,7 @@ self: { ]; description = "A Haskell interface to SUMP-compatible logic analyzers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sundown" = callPackage @@ -270724,6 +284998,8 @@ self: { ]; description = "Test Cabalized package against multiple dependency versions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sunroof-compiler" = callPackage @@ -270741,6 +285017,8 @@ self: { ]; description = "Monadic Javascript Compiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sunroof-examples" = callPackage @@ -270762,6 +285040,7 @@ self: { ]; description = "Tests for Sunroof"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sunroof-server" = callPackage @@ -270783,6 +285062,7 @@ self: { ]; description = "Monadic Javascript Compiler - Server Utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "super-user-spark" = callPackage @@ -270812,7 +285092,9 @@ self: { ]; description = "Configure your dotfile deployment with a DSL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "super-user-spark"; + broken = true; }) {}; "superbubbles" = callPackage @@ -270827,6 +285109,8 @@ self: { testHaskellDepends = [ base containers hspec ]; description = "Find \"superbubbles\", as described in https://arxiv.org/abs/1307.7925"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "superbuffer" = callPackage @@ -270861,6 +285145,7 @@ self: { ]; description = "Haskell SuperCollider utilities"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "supercollider-midi" = callPackage @@ -270883,6 +285168,7 @@ self: { ]; description = "Demonstrate how to control SuperCollider via ALSA-MIDI"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "superconstraints" = callPackage @@ -270899,6 +285185,7 @@ self: { ]; description = "Access an instance's constraints"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "superdoc" = callPackage @@ -270938,6 +285225,8 @@ self: { ]; description = "A simple opinionated event store implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "supermonad" = callPackage @@ -270954,6 +285243,8 @@ self: { testHaskellDepends = [ base containers ghc QuickCheck ]; description = "Plugin and base library to support supermonads in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "supernova" = callPackage @@ -270974,6 +285265,7 @@ self: { testHaskellDepends = [ aeson async base bytestring streamly text ]; description = "Apache Pulsar client for Haskell"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "supero" = callPackage @@ -270992,7 +285284,9 @@ self: { ]; description = "A Supercompiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "supero"; + broken = true; }) {}; "superrecord" = callPackage @@ -271014,6 +285308,8 @@ self: { ]; description = "Supercharged anonymous records"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "supervisor" = callPackage @@ -271027,6 +285323,8 @@ self: { ]; description = "Control an internal monad execution for trace generation, backtrakcking, testing and other purposes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "supervisors" = callPackage @@ -271043,6 +285341,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Monitor groups of threads with non-hierarchical lifetimes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "supplemented" = callPackage @@ -271061,6 +285361,8 @@ self: { ]; description = "Early termination for monads"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "supply-chain" = callPackage @@ -271116,6 +285418,8 @@ self: { libraryHaskellDepends = [ base lens mtl template-haskell ]; description = "An output coverage checker"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "suspend" = callPackage @@ -271155,6 +285459,7 @@ self: { ]; description = "Encode and decode separated values (CSV, PSV, ...)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sv-cassava" = callPackage @@ -271176,6 +285481,7 @@ self: { ]; description = "Integration to use sv with cassava's parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sv-core" = callPackage @@ -271203,6 +285509,8 @@ self: { ]; description = "Encode and decode separated values (CSV, PSV, ...)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sv-svfactor" = callPackage @@ -271220,6 +285528,7 @@ self: { ]; description = "sv-core + svfactor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sv2v" = callPackage @@ -271239,7 +285548,9 @@ self: { executableToolDepends = [ alex happy ]; description = "SystemVerilog to Verilog conversion"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sv2v"; + broken = true; }) {}; "svfactor" = callPackage @@ -271265,6 +285576,8 @@ self: { ]; description = "Syntax-preserving CSV manipulation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "svg-builder" = callPackage @@ -271297,6 +285610,8 @@ self: { ]; description = "DSL for building SVG"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "svg-icons" = callPackage @@ -271352,6 +285667,7 @@ self: { ]; description = "Code generation tool for Quartz code from a SVG"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "svg2q"; }) {}; @@ -271393,6 +285709,7 @@ self: { ]; description = "Optimise SVGs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "svgone"; }) {}; @@ -271413,7 +285730,9 @@ self: { ]; description = "A tool to prune unused symbols from icon SVG files"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "svgsym"; + broken = true; }) {}; "svgutils" = callPackage @@ -271428,7 +285747,9 @@ self: { executableHaskellDepends = [ base filepath xml ]; description = "Helper functions for dealing with SVG files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "SVGtile"; + broken = true; }) {}; "svm" = callPackage @@ -271453,6 +285774,8 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring containers ]; description = "Parsers and formatters for the SVMlight input file format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "svm-simple" = callPackage @@ -271469,6 +285792,8 @@ self: { ]; description = "Medium level, simplified, bindings to libsvm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "svndump" = callPackage @@ -271487,6 +285812,8 @@ self: { ]; description = "Library for reading Subversion dump files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "swagger" = callPackage @@ -271503,6 +285830,8 @@ self: { testHaskellDepends = [ aeson base bytestring tasty tasty-hunit ]; description = "Implementation of swagger data model"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "swagger-petstore" = callPackage @@ -271530,6 +285859,8 @@ self: { ]; description = "Auto-generated openapi-petstore API Client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "swagger-test" = callPackage @@ -271559,7 +285890,9 @@ self: { ]; description = "Testing of Swagger APIs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "swagger-test"; + broken = true; }) {}; "swagger2" = callPackage @@ -271609,6 +285942,7 @@ self: { librarySystemDepends = [ tokyocabinet ]; description = "Transparently swapping data from in-memory structures to disk"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) tokyocabinet;}; "swarm" = callPackage @@ -271655,7 +285989,9 @@ self: { ]; description = "2D resource gathering game with programmable robots"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "swarm"; + broken = true; }) {}; "swearjure" = callPackage @@ -271675,7 +286011,9 @@ self: { ]; description = "Clojure without alphanumerics"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "swearjure"; + broken = true; }) {}; "sweet-egison" = callPackage @@ -271698,6 +286036,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Shallow embedding implementation of non-linear pattern matching"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "swf" = callPackage @@ -271709,6 +286048,8 @@ self: { libraryHaskellDepends = [ base mtl pretty ]; description = "A library for creating Shockwave Flash (SWF) files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "swift-lda" = callPackage @@ -271724,6 +286065,8 @@ self: { ]; description = "Online sampler for Latent Dirichlet Allocation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "swish" = callPackage @@ -271761,6 +286104,8 @@ self: { libraryHaskellDepends = [ base bytestring parallel time ]; description = "Basic functions for development with Core libraries and GHC boot libraries dependencies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "swiss-ephemeris" = callPackage @@ -271778,6 +286123,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell bindings for the Swiss Ephemeris C library"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "swisstable" = callPackage @@ -271818,6 +286165,7 @@ self: { ]; description = "Nintendo Switch Controller Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sws" = callPackage @@ -271841,7 +286189,9 @@ self: { ]; description = "A simple web server for serving directories"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sws"; + broken = true; }) {}; "sxml" = callPackage @@ -271880,6 +286230,8 @@ self: { libraryHaskellDepends = [ base eq prelude-extras ]; description = "Higher order versions of the Scrap Your Boilerplate classes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "syb-with-class" = callPackage @@ -271896,6 +286248,8 @@ self: { testHaskellDepends = [ base HUnit ]; description = "Scrap Your Boilerplate With Class"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "syb-with-class-instances-text" = callPackage @@ -271907,6 +286261,7 @@ self: { libraryHaskellDepends = [ base syb-with-class text ]; description = "Scrap Your Boilerplate With Class Text instance"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sydtest" = callPackage @@ -271974,6 +286329,7 @@ self: { testToolDepends = [ sydtest-discover ]; description = "An amqp companion library for sydtest"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "sydtest-autodocodec" = callPackage @@ -272044,6 +286400,8 @@ self: { testToolDepends = [ sydtest-discover ]; description = "An hedis companion library for sydtest"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sydtest-hspec" = callPackage @@ -272061,6 +286419,8 @@ self: { testToolDepends = [ sydtest-discover ]; description = "An Hspec companion library for sydtest"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sydtest-mongo" = callPackage @@ -272080,6 +286440,8 @@ self: { testToolDepends = [ sydtest-discover ]; description = "An mongoDB companion library for sydtest"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sydtest-persistent" = callPackage @@ -272116,6 +286478,8 @@ self: { testToolDepends = [ sydtest-discover ]; description = "An persistent-postgresql companion library for sydtest"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sydtest-persistent-sqlite" = callPackage @@ -272134,6 +286498,8 @@ self: { testToolDepends = [ sydtest-discover ]; description = "A persistent-sqlite companion library for sydtest"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sydtest-process" = callPackage @@ -272168,6 +286534,8 @@ self: { testToolDepends = [ sydtest-discover ]; description = "An rabbitmq companion library for sydtest"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sydtest-servant" = callPackage @@ -272246,6 +286614,8 @@ self: { testToolDepends = [ sydtest-discover ]; description = "A webdriver companion library for sydtest"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sydtest-webdriver-screenshot" = callPackage @@ -272268,6 +286638,7 @@ self: { testToolDepends = [ sydtest-discover ]; description = "A webdriver screenshot companion library for sydtest"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "sydtest-webdriver-yesod" = callPackage @@ -272290,6 +286661,7 @@ self: { testToolDepends = [ sydtest-discover ]; description = "A webdriver+yesod companion library for sydtest"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "sydtest-yesod" = callPackage @@ -272319,6 +286691,7 @@ self: { testToolDepends = [ sydtest-discover ]; description = "A yesod companion library for sydtest"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "syfco" = callPackage @@ -272339,7 +286712,9 @@ self: { ]; description = "Synthesis Format Conversion Tool / Library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "syfco"; + broken = true; }) {}; "sylvia" = callPackage @@ -272365,6 +286740,7 @@ self: { ]; description = "Lambda calculus visualization"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "sylvia"; }) {}; @@ -272405,6 +286781,8 @@ self: { ]; description = "Library for Typed Tagless-Final Higher-Order Composable DSL"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "symantic-atom" = callPackage @@ -272426,6 +286804,7 @@ self: { ]; description = "Library for reading and writing Atom"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "symantic-base" = callPackage @@ -272458,6 +286837,8 @@ self: { ]; description = "Symantics for parsing and documenting a CLI"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "symantic-document" = callPackage @@ -272524,6 +286905,8 @@ self: { ]; description = "symantic-http applied to the derivation of HTTP clients"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "symantic-http-demo" = callPackage @@ -272550,6 +286933,7 @@ self: { ]; description = "Demo for symantic-http and its companion libraries"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "symantic-http-pipes" = callPackage @@ -272616,6 +287000,7 @@ self: { ]; description = "Test symantic-http and its companion libraries"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "symantic-lib" = callPackage @@ -272638,6 +287023,7 @@ self: { ]; description = "Symantics for common types"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "symantic-parser" = callPackage @@ -272670,6 +287056,8 @@ self: { doHaddock = false; description = "Parser combinators statically optimized and staged via typed meta-programming"; license = lib.licenses.agpl3Plus; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "symantic-xml" = callPackage @@ -272693,6 +287081,8 @@ self: { ]; description = "Library for reading, validating and writing XML"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "symbiote" = callPackage @@ -272724,6 +287114,7 @@ self: { ]; description = "Data serialization, communication, and operation verification implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "symbol" = callPackage @@ -272749,6 +287140,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit unix ]; description = "Symlink functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "symbols" = callPackage @@ -272775,6 +287168,8 @@ self: { testSystemDepends = [ gmp gmpxx symengine ]; description = "SymEngine symbolic mathematics engine for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) gmp; inherit (pkgs) gmpxx; inherit (pkgs) symengine;}; @@ -272823,6 +287218,7 @@ self: { ]; description = "Derivation of symbols and coordinate triplets Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "symon" = callPackage @@ -272850,6 +287246,8 @@ self: { libraryHaskellDepends = [ base stm ]; description = "A fast implementation of synchronous channels with a CML-like API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "sync-mht" = callPackage @@ -272887,7 +287285,9 @@ self: { ]; description = "Fast incremental file transfer using Merkle-Hash-Trees"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "sync-mht"; + broken = true; }) {}; "synchronous-channels" = callPackage @@ -272926,6 +287326,7 @@ self: { ]; description = "Haskell bindings for the Syncthing REST API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "synt" = callPackage @@ -272975,6 +287376,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "Generic representation and manipulation of abstract syntax"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "syntactical" = callPackage @@ -273003,6 +287406,7 @@ self: { ]; description = "Reversible parsing and pretty-printing"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "syntax-attoparsec" = callPackage @@ -273018,6 +287422,7 @@ self: { ]; description = "Syntax instances for Attoparsec"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "syntax-example" = callPackage @@ -273036,6 +287441,7 @@ self: { ]; description = "Example application using syntax, a library for abstract syntax descriptions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "syntax-example"; }) {}; @@ -273055,6 +287461,7 @@ self: { ]; description = "Example JSON parser/pretty-printer"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "syntax-example-json"; }) {}; @@ -273070,6 +287477,7 @@ self: { ]; description = "Syntax instance for pretty, the pretty printing library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "syntax-printer" = callPackage @@ -273086,6 +287494,7 @@ self: { ]; description = "Text and ByteString printers for 'syntax'"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "syntax-trees" = callPackage @@ -273101,6 +287510,8 @@ self: { ]; description = "Convert between different Haskell syntax trees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "syntax-trees-fork-bairyn" = callPackage @@ -273116,6 +287527,8 @@ self: { ]; description = "Convert between different Haskell syntax trees. Bairyn's fork."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "syntaxnet-haskell" = callPackage @@ -273134,6 +287547,7 @@ self: { testHaskellDepends = [ aeson base cassava haskell-conll hspec ]; description = "Working with Google's SyntaxNet output files - CoNLL, Tree"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "synthesizer" = callPackage @@ -273155,6 +287569,8 @@ self: { ]; description = "Audio signal processing coded in Haskell"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "synthesizer-alsa" = callPackage @@ -273305,6 +287721,7 @@ self: { doHaddock = false; description = "Efficient signal processing using runtime compilation"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "synthesizer-midi" = callPackage @@ -273365,6 +287782,7 @@ self: { ]; description = "A replacement for System.Exit and System.Process."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "sysinfo" = callPackage @@ -273404,6 +287822,8 @@ self: { testHaskellDepends = [ base basic-prelude chell system-filepath ]; description = "Abstract data type for canonical paths with some utilities"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "system-command" = callPackage @@ -273422,6 +287842,8 @@ self: { ]; description = "A replacement for System.Exit and System.Process"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "system-error" = callPackage @@ -273447,6 +287869,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "A bunch of system utilities used by other projects"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "system-fileio" = callPackage @@ -273518,6 +287942,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Binding to Linux's inotify interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "system-lifted" = callPackage @@ -273540,7 +287966,9 @@ self: { ]; description = "Lifted versions of System functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "main"; + broken = true; }) {}; "system-linux-proc" = callPackage @@ -273557,6 +287985,8 @@ self: { testHaskellDepends = [ base directory hedgehog pretty-show ]; description = "A library for accessing the /proc filesystem in Linux"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "system-locale" = callPackage @@ -273573,6 +288003,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Get system locales"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "system-posix-redirect" = callPackage @@ -273610,6 +288042,8 @@ self: { ]; description = "Random number generation for extensible effects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "system-test" = callPackage @@ -273629,7 +288063,9 @@ self: { testHaskellDepends = [ base HUnit ]; description = "Runs system tests of applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "system-test"; + broken = true; }) {}; "system-time-monotonic" = callPackage @@ -273715,6 +288151,7 @@ self: { description = "systemd bindings"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) systemd;}; "systemd-socket-activation" = callPackage @@ -273750,6 +288187,7 @@ self: { ]; description = "An application that regularly logs system stats for later analysis"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "systemstats"; }) {}; @@ -273779,6 +288217,8 @@ self: { ]; description = "Matchers and grammars using tree regular expressions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "t3-client" = callPackage @@ -273790,6 +288230,7 @@ self: { libraryHaskellDepends = [ base t3-game t3-server ]; description = "tic-tac-toe Rexports for client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "t3-game" = callPackage @@ -273825,6 +288266,8 @@ self: { ]; description = "tic-tac-toe server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ta" = callPackage @@ -273840,6 +288283,7 @@ self: { ]; description = "Transito Abierto: convenience library when using Takusen and Oracle"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tabl" = callPackage @@ -273868,7 +288312,9 @@ self: { ]; description = "Simple tool to generate tables from DSV input"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "table"; + broken = true; }) {}; "table-layout" = callPackage @@ -273905,6 +288351,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A table tennis game tracking engine"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tableaux" = callPackage @@ -273922,7 +288370,9 @@ self: { ]; description = "An interactive theorem prover based on semantic tableaux"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tableaux.cgi"; + broken = true; }) {}; "tables" = callPackage @@ -273946,6 +288396,8 @@ self: { ]; description = "In-memory storage with multiple keys using lenses and traversals"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tablestorage" = callPackage @@ -273966,6 +288418,8 @@ self: { ]; description = "Azure Table Storage REST API Wrapper"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tablize" = callPackage @@ -274002,7 +288456,9 @@ self: { ]; description = "View the output of shell commands in a table"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tabloid"; + broken = true; }) {}; "tabs" = callPackage @@ -274017,7 +288473,9 @@ self: { executableHaskellDepends = [ base filepath monadlist mtl tagged ]; description = "Indents source files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tabs"; + broken = true; }) {}; "tabular" = callPackage @@ -274090,6 +288548,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Provides access to the dynamic pointer tagging bits used by GHC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tag-stream" = callPackage @@ -274105,6 +288565,7 @@ self: { ]; description = "streamlined html tag parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tagchup" = callPackage @@ -274186,6 +288647,8 @@ self: { ]; description = "Reflect exceptions using phantom types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tagged-identity" = callPackage @@ -274216,6 +288679,7 @@ self: { ]; description = "Lists tagged with a type-level natural number representing their length"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tagged-th" = callPackage @@ -274229,6 +288693,7 @@ self: { ]; description = "QuasiQuoter and Template Haskell splices for creating proxies at higher-kinds"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tagged-timers" = callPackage @@ -274242,6 +288707,8 @@ self: { ]; description = "Simple wrappers for timing IO actions (single-threaded)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tagged-transformer" = callPackage @@ -274318,6 +288785,8 @@ self: { ]; description = "Lenses for the taggy html/xml parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "taglib" = callPackage @@ -274347,6 +288816,8 @@ self: { libraryPkgconfigDepends = [ taglib ]; description = "An FFI layer over TagLib's C bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) taglib;}; "tagset-positional" = callPackage @@ -274412,6 +288883,8 @@ self: { ]; description = "alternative parser for the tagsoup package"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tagsoup-megaparsec" = callPackage @@ -274428,6 +288901,8 @@ self: { ]; description = "A Tag token parser and Tag specific parsing combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tagsoup-navigate" = callPackage @@ -274445,6 +288920,7 @@ self: { ]; description = "Tagsoup Navigate"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tagsoup-parsec" = callPackage @@ -274456,6 +288932,8 @@ self: { libraryHaskellDepends = [ base parsec tagsoup ]; description = "Tokenizes Tag, so [ Tag ] can be used as parser input"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tagsoup-selection" = callPackage @@ -274467,6 +288945,8 @@ self: { libraryHaskellDepends = [ base containers parsec tagsoup ]; description = "Selecting subtrees from TagSoup's TagTrees using CSS selectors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tagstew" = callPackage @@ -274487,6 +288967,7 @@ self: { ]; description = "Black magic tagsoup"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tagstew"; }) {}; @@ -274524,6 +289005,8 @@ self: { ]; description = "Hierarchical Tags & Tag Trees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tahoe-capabilities" = callPackage @@ -274536,6 +289019,8 @@ self: { testHaskellDepends = [ base ]; description = "Abstractions related to Tahoe-LAFS \"capabilities\""; license = lib.licenses.lgpl3Plus; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tahoe-chk" = callPackage @@ -274571,6 +289056,7 @@ self: { ]; description = "The Tahoe-LAFS' Content-Hash-Key (CHK) cryptographic protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tahoe-chk-encrypt"; }) {}; @@ -274616,6 +289102,7 @@ self: { ]; description = "An implementation of the \"Great Black Swamp\" LAFS protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tahoe-ssk" = callPackage @@ -274646,6 +289133,7 @@ self: { ]; description = "An implementation of the Tahoe-LAFS SSK cryptographic protocols"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tai" = callPackage @@ -274663,6 +289151,8 @@ self: { ]; description = "Support library to enable TAI usage on systems with time kept in UTC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tai64" = callPackage @@ -274681,6 +289171,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "Tai64 Labels for Haskell"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tailfile-hinotify" = callPackage @@ -274732,7 +289224,9 @@ self: { ]; description = "Tailwind wrapped in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "tailwind-run"; + broken = true; }) {}; "tak" = callPackage @@ -274753,6 +289247,8 @@ self: { ]; description = "A library encoding the rules of Tak, and a playtak.com client."; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tak-ai" = callPackage @@ -274770,6 +289266,7 @@ self: { ]; description = "AI(s) for playing Tak on playtak.com"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "takky"; }) {}; @@ -274783,6 +289280,7 @@ self: { libraryHaskellDepends = [ base lens monad-skeleton mtl ]; description = "create slide for presentation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "takedouble" = callPackage @@ -274819,6 +289317,8 @@ self: { librarySystemDepends = [ clntsh ]; description = "Database library with left-fold interface for Oracle"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {clntsh = null;}; "tal" = callPackage @@ -274834,6 +289334,7 @@ self: { ]; description = "An implementation of Typed Assembly Language (Morrisett, Walker, Crary, Glew)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "talash" = callPackage @@ -274858,6 +289359,7 @@ self: { executableHaskellDepends = [ base ]; description = "Line oriented fast enough text search"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "talash"; }) {}; @@ -274888,6 +289390,7 @@ self: { ]; description = "The Tamarin prover for security protocol analysis"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "tamarin-prover"; }) {}; @@ -274907,6 +289410,7 @@ self: { ]; description = "Term manipulation library for the tamarin prover"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "tamarin-prover-theory" = callPackage @@ -274928,6 +289432,7 @@ self: { ]; description = "Term manipulation library for the tamarin prover"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "tamarin-prover-utils" = callPackage @@ -274945,6 +289450,8 @@ self: { ]; description = "Utility library for the tamarin prover"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tamper" = callPackage @@ -275011,6 +289518,8 @@ self: { testHaskellDepends = [ base hspec vector ]; description = "A tasty enhancement to cassava for easy csv exporting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tar" = callPackage @@ -275066,6 +289575,7 @@ self: { ]; description = "Reading, writing and manipulating \".tar\" archive files."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tar-conduit" = callPackage @@ -275168,6 +289678,7 @@ self: { ]; description = "Generate test-suites from refinement types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "target"; }) {inherit (pkgs) z3;}; @@ -275211,6 +289722,7 @@ self: { ]; description = "A command line tool for keeping track of tasks you worked on"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "task"; }) {}; @@ -275248,6 +289760,7 @@ self: { ]; description = "Distributed processing of changing tasks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "taskell" = callPackage @@ -275371,7 +289884,9 @@ self: { ]; description = "Auto discovery for Tasty with support for ingredients and test tree generation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "tasty-auto"; + broken = true; }) {}; "tasty-autocollect" = callPackage @@ -275401,7 +289916,9 @@ self: { ]; description = "Autocollection of tasty tests"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tasty-autocollect"; + broken = true; }) {}; "tasty-bdd" = callPackage @@ -275427,6 +289944,7 @@ self: { ]; description = "BDD tests language and tasty provider"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tasty-bench" = callPackage @@ -275554,6 +290072,8 @@ self: { ]; description = "Adds the ability to fail a tasty test suite on first test failure"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tasty-focus" = callPackage @@ -275629,6 +290149,7 @@ self: { ]; description = "Tasty Tests for groundhog converters"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tasty-hedgehog" = callPackage @@ -275686,6 +290207,8 @@ self: { ]; description = "Coverage tracking for Hedgehog Property-Based Testing via Tasty"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tasty-hslua" = callPackage @@ -275858,6 +290381,7 @@ self: { ]; description = "automated integration of QuickCheck properties into tasty suites"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tasty-jenkins-xml" = callPackage @@ -275877,6 +290401,7 @@ self: { ]; description = "Render tasty output to both console and XML for Jenkins"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tasty-json" = callPackage @@ -275927,6 +290452,7 @@ self: { testHaskellDepends = [ base smallcheck smallcheck-laws tasty ]; description = "Test common laws"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tasty-leancheck" = callPackage @@ -275955,6 +290481,7 @@ self: { testHaskellDepends = [ base lens tasty ]; description = "Tasty TestTrees for Lens validation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tasty-lua" = callPackage @@ -276001,7 +290528,9 @@ self: { ]; description = "Golden testing provider for tasty with muti-line diff output"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tasty-mgolden-example"; + broken = true; }) {}; "tasty-papi" = callPackage @@ -276149,6 +290678,8 @@ self: { ]; description = "Collect statistics of your Tasty testsuite"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tasty-sugar" = callPackage @@ -276173,6 +290704,7 @@ self: { doHaddock = false; description = "Tests defined by Search Using Golden Answer References"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; }) {}; "tasty-tap" = callPackage @@ -276207,6 +290739,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Producing JUnit-style XML test reports"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tasty-test-vector" = callPackage @@ -276220,6 +290754,8 @@ self: { libraryHaskellDepends = [ base tasty ]; description = "Test vector support for tasty"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tasty-th" = callPackage @@ -276299,6 +290835,7 @@ self: { ]; description = "Meta tic-tac-toe ncurses game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tateti-tateti"; }) {}; @@ -276352,6 +290889,7 @@ self: { ]; description = "Transactional variables and data structures with IO hooks"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "tcache-AWS" = callPackage @@ -276367,6 +290905,8 @@ self: { ]; description = "tcache using Amazon Web Services as default persistence mechanism"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tccli" = callPackage @@ -276384,6 +290924,7 @@ self: { ]; description = "TokyoCabinet CLI interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tchcli"; }) {}; @@ -276418,6 +290959,7 @@ self: { libraryPkgconfigDepends = [ libtcod ]; description = "Bindings to libtcod roguelike engine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libtcod;}; "tconfig" = callPackage @@ -276440,6 +290982,8 @@ self: { libraryHaskellDepends = [ base containers old-time ]; description = "A purely functional TCP implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tcp-streams" = callPackage @@ -276483,6 +291027,8 @@ self: { ]; description = "Tcp streams using openssl for tls support"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tdd-util" = callPackage @@ -276510,6 +291056,7 @@ self: { ]; description = "Test framework wrapper"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tdigest" = callPackage @@ -276552,6 +291099,8 @@ self: { ]; description = "Chart generation from tdigest"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tdlib" = callPackage @@ -276643,6 +291192,8 @@ self: { ]; description = "TDoc is a typed document builder with support for (X)HTML"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tds" = callPackage @@ -276664,7 +291215,9 @@ self: { executableHaskellDepends = [ base ]; description = "Pure Haskell TDS protocol implementation. Mainly for beam-mssql and beam-sybase"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "test"; + broken = true; }) {}; "teams" = callPackage @@ -276676,6 +291229,8 @@ self: { libraryHaskellDepends = [ base containers fgl graphviz ]; description = "Graphical modeling tools for sequential teams"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "teardown" = callPackage @@ -276720,6 +291275,7 @@ self: { ]; description = "Bleeding edge prelude"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "technique" = callPackage @@ -276751,7 +291307,9 @@ self: { doHaddock = false; description = "Procedures and Sequences"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "technique"; + broken = true; }) {}; "teeth" = callPackage @@ -276763,6 +291321,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Dental data types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tehepero" = callPackage @@ -276778,6 +291338,8 @@ self: { ]; description = "Prettier error"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "telega" = callPackage @@ -276794,6 +291356,8 @@ self: { ]; description = "Telegram Bot API binding"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "telegram" = callPackage @@ -276809,6 +291373,8 @@ self: { ]; description = "Telegram API client"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "telegram-api" = callPackage @@ -276838,6 +291404,8 @@ self: { ]; description = "Telegram Bot API bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "telegram-bot" = callPackage @@ -276858,6 +291426,7 @@ self: { testHaskellDepends = [ base ]; description = "Telegram Bot microframework for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hello-bot"; }) {}; @@ -276933,6 +291502,7 @@ self: { ]; description = "Servant bindings to the Telegram bot API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "telegram-types" = callPackage @@ -276954,6 +291524,8 @@ self: { ]; description = "Types used in Telegram bot API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "telegraph" = callPackage @@ -276976,6 +291548,8 @@ self: { ]; description = "Binding to the telegraph API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "teleport" = callPackage @@ -276996,7 +291570,9 @@ self: { testHaskellDepends = [ base ]; description = "A tool to quickly switch between directories"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "teleport-exe"; + broken = true; }) {}; "teleshell" = callPackage @@ -277019,6 +291595,8 @@ self: { ]; description = "Telnet client and other things"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tell" = callPackage @@ -277049,7 +291627,9 @@ self: { ]; description = "IRC tellbot"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "tellbot"; + broken = true; }) {}; "tempered" = callPackage @@ -277094,6 +291674,8 @@ self: { libraryHaskellDepends = [ base mtl text ]; description = "Simple string substitution"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "template-default" = callPackage @@ -277105,6 +291687,8 @@ self: { libraryHaskellDepends = [ base data-default template-haskell ]; description = "declaring Default instances just got even easier"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "template-haskell_2_20_0_0" = callPackage @@ -277145,6 +291729,8 @@ self: { ]; description = "Optics for template-haskell types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "template-haskell-util" = callPackage @@ -277158,6 +291744,8 @@ self: { ]; description = "Some utilities for template Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "template-hsml" = callPackage @@ -277178,6 +291766,8 @@ self: { ]; description = "Haskell's Simple Markup Language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "template-toolkit" = callPackage @@ -277197,6 +291787,8 @@ self: { ]; description = "Template Toolkit implementation for Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "template-yj" = callPackage @@ -277208,6 +291800,8 @@ self: { libraryHaskellDepends = [ base bytestring text ]; description = "Process template file"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "templateify" = callPackage @@ -277221,7 +291815,9 @@ self: { executableHaskellDepends = [ base mtl tagsoup uniplate ]; description = "Make template from website"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "templateify"; + broken = true; }) {}; "templatepg" = callPackage @@ -277239,6 +291835,8 @@ self: { ]; description = "A PostgreSQL access library with compile-time SQL type inference"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "templater" = callPackage @@ -277293,6 +291891,8 @@ self: { ]; description = "A small Haskell wrapper around the TempoDB api"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "temporal-csound" = callPackage @@ -277310,6 +291910,7 @@ self: { ]; description = "library to make electronic music, brings together temporal-music-notation and csound-expression packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "temporal-media" = callPackage @@ -277431,7 +292032,9 @@ self: { executableToolDepends = [ happy ]; description = "Interpreter for the FRP language Tempus"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tempus"; + broken = true; }) {}; "tempus-fugit" = callPackage @@ -277472,6 +292075,8 @@ self: { ]; description = "Functors et al. over arity-1 type constructors"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ten-lens" = callPackage @@ -277485,6 +292090,7 @@ self: { libraryHaskellDepends = [ base lens profunctors some ten ]; description = "Lenses for the types in the ten package"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "ten-unordered-containers" = callPackage @@ -277510,6 +292116,7 @@ self: { ]; description = "Higher-kinded hash containers"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "tensor" = callPackage @@ -277522,6 +292129,8 @@ self: { testHaskellDepends = [ base QuickCheck random ]; description = "A completely type-safe library for linear algebra"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tensor-safe" = callPackage @@ -277545,7 +292154,9 @@ self: { ]; description = "Create valid deep neural network architectures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tensor-safe"; + broken = true; }) {}; "tensorflow" = callPackage @@ -277675,6 +292286,7 @@ self: { ]; description = "Code generation for TensorFlow operations"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "tensorflow-ops" = callPackage @@ -277721,6 +292333,7 @@ self: { libraryToolDepends = [ protobuf ]; description = "TensorFlow protocol buffers"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) protobuf;}; "tensorflow-records" = callPackage @@ -277841,7 +292454,9 @@ self: { executableHaskellDepends = [ base ]; description = "Bindings to the Termbox library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "termbox-bindings-c" = callPackage @@ -277980,6 +292595,7 @@ self: { ]; description = "Text data type for styled terminal output, including all standard ANSI effects (bold, italic, blinking) and ANSI / 256 / truecolor colors support for Unix and Windows (whenever possible)"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "termination-combinators" = callPackage @@ -277991,6 +292607,8 @@ self: { libraryHaskellDepends = [ base containers contravariant ]; description = "Termination combinators for forcing non-terminating algorithms to terminate"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "terminfo_0_4_1_6" = callPackage @@ -278079,7 +292697,9 @@ self: { ]; description = "Plot time series in your terminal using commands stdout"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "termplot"; + broken = true; }) {}; "terntup" = callPackage @@ -278097,6 +292717,8 @@ self: { ]; description = "a ternary library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "terraform-http-backend-pass" = callPackage @@ -278130,6 +292752,7 @@ self: { librarySystemDepends = [ terralib4c translib ]; description = "A Haskell GIS Programming Environment"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {terralib4c = null; translib = null;}; "tersmu" = callPackage @@ -278150,7 +292773,9 @@ self: { ]; description = "A semantic parser for lojban"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "tersmu"; + broken = true; }) {}; "tesla" = callPackage @@ -278201,6 +292826,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Test monadic side-effects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "test-framework" = callPackage @@ -278241,6 +292868,8 @@ self: { testHaskellDepends = [ base test-framework ]; description = "Test.Framework wrapper for DocTest"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "test-framework-golden" = callPackage @@ -278310,6 +292939,8 @@ self: { ]; description = "QuickCheck support for the test-framework package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "test-framework-quickcheck2" = callPackage @@ -278366,6 +292997,8 @@ self: { ]; description = "Functions for conveniently marking some of the tests in a suite as being skipped"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "test-framework-smallcheck" = callPackage @@ -278391,6 +293024,8 @@ self: { testHaskellDepends = [ base test-framework testing-feat ]; description = "A test framework provider for testing-feat"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "test-framework-th" = callPackage @@ -278424,6 +293059,8 @@ self: { ]; description = "Template Haskell for test framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "test-fun" = callPackage @@ -278497,7 +293134,9 @@ self: { executableHaskellDepends = [ base simple-get-opt ]; description = "A library to make a quick test-runner script"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; mainProgram = "test-runner"; + broken = true; }) {}; "test-monad-laws" = callPackage @@ -278529,6 +293168,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Just tests Hackage"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "test-sandbox" = callPackage @@ -278589,6 +293230,7 @@ self: { ]; description = "Lightweight development enviroments using test-sandbox"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "test-sandbox-compose"; }) {}; @@ -278629,6 +293271,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Catchy combinators for HUnit"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "test-simple" = callPackage @@ -278647,6 +293291,7 @@ self: { ]; description = "Simple Perl inspired testing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "testCom" = callPackage @@ -278664,6 +293309,8 @@ self: { ]; description = "Write your tests in comments"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "testPkg" = callPackage @@ -278677,7 +293324,9 @@ self: { executableHaskellDepends = [ base ]; description = "Small test package"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "testPkg"; + broken = true; }) {}; "testbench" = callPackage @@ -278699,6 +293348,7 @@ self: { ]; description = "Create tests and benchmarks together"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "testcontainers" = callPackage @@ -278725,6 +293375,8 @@ self: { testToolDepends = [ hspec-discover tasty-discover ]; description = "Docker containers for your integration tests"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "testing-feat" = callPackage @@ -278769,6 +293421,8 @@ self: { ]; description = "Quick feedback loop for test suites"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "testpack" = callPackage @@ -278785,6 +293439,8 @@ self: { ]; description = "Test Utililty Pack for HUnit and QuickCheck (unmaintained)"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "testpattern" = callPackage @@ -278799,7 +293455,9 @@ self: { executableHaskellDepends = [ base filepath gtk ]; description = "Display a monitor test pattern"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "testpattern"; + broken = true; }) {}; "testrunner" = callPackage @@ -278814,6 +293472,8 @@ self: { ]; description = "Easy unit test driver framework"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tetris" = callPackage @@ -278849,7 +293509,9 @@ self: { ]; description = "Compile separate tex files with the same bibliography"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "tex-join-bib"; + broken = true; }) {}; "tex2txt" = callPackage @@ -278864,7 +293526,9 @@ self: { executableHaskellDepends = [ base containers deepseq parsec ]; description = "LaTeX to plain-text conversion"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "tex2txt"; + broken = true; }) {}; "texbuilder" = callPackage @@ -278885,7 +293549,9 @@ self: { ]; description = "View your latex output while editing"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "texbuilder"; + broken = true; }) {}; "texmath" = callPackage @@ -278975,6 +293641,8 @@ self: { ]; description = "Everything Data.Text related in one package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-and-plots" = callPackage @@ -278991,6 +293659,8 @@ self: { ]; description = "EDSL to create HTML documents with plots based on the C3.js library."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-ansi" = callPackage @@ -279019,6 +293689,8 @@ self: { ]; description = "ASCII string and character processing"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-binary" = callPackage @@ -279102,6 +293774,8 @@ self: { ]; description = "A text compression library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-containers" = callPackage @@ -279124,6 +293798,8 @@ self: { ]; description = "Memory-efficient string-indexed container types"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-conversions" = callPackage @@ -279214,6 +293890,8 @@ self: { testHaskellDepends = [ base hspec time ]; description = "Full-weight string formatting library, analog of Python's string.format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-format-simple" = callPackage @@ -279249,6 +293927,8 @@ self: { ]; description = "A generic, derivable, haskell pretty printer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-icu" = callPackage @@ -279293,6 +293973,8 @@ self: { ]; description = "Dealing with Strict Text in NFC normalization"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-icu-translit" = callPackage @@ -279311,6 +293993,8 @@ self: { ]; description = "ICU transliteration"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) icu;}; "text-iso8601" = callPackage @@ -279350,6 +294034,7 @@ self: { ]; description = "Json Quasiquatation for Haskell"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "text-latin1" = callPackage @@ -279400,6 +294085,8 @@ self: { testHaskellDepends = [ base hspec lens ]; description = "Lenses for operating over text"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-lips" = callPackage @@ -279437,6 +294124,7 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-handle text ]; description = "Encode and decode Text to/from ByteString using TextEncoding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "text-manipulate" = callPackage @@ -279467,6 +294155,8 @@ self: { ]; description = "A data structure for mapping metadata to text subsequences"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-metrics" = callPackage @@ -279500,6 +294190,8 @@ self: { ]; description = "Unicode-normalized text"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-offset" = callPackage @@ -279518,6 +294210,8 @@ self: { ]; description = "Library for converting between line/column and byte offset"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-plus" = callPackage @@ -279534,6 +294228,7 @@ self: { testHaskellDepends = [ base doctest HTF text ]; description = "Utils for text"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "text-position" = callPackage @@ -279548,6 +294243,8 @@ self: { testHaskellDepends = [ base QuickCheck regex-applicative ]; description = "Handling positions in text and position-tagging it"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-postgresql" = callPackage @@ -279627,6 +294324,8 @@ self: { libraryHaskellDepends = [ base containers mtl vector ]; description = "A Haskell implementation of the 1# Text Register Machine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-render" = callPackage @@ -279776,6 +294475,8 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion text ]; description = "Streaming decoding functions for UTF encodings. (deprecated)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-time" = callPackage @@ -279809,6 +294510,8 @@ self: { ]; description = "An efficient finite map from Text to values, based on bytestring-trie"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-utf7" = callPackage @@ -279826,6 +294529,8 @@ self: { ]; description = "UTF-7 encoding/decoding for Data.Text"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-utf8" = callPackage @@ -279850,6 +294555,8 @@ self: { ]; description = "An efficient packed UTF-8 backed Unicode text type"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-utils" = callPackage @@ -279878,6 +294585,7 @@ self: { ]; description = "Serialize Data to XML (strings)"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "text-xml-qq" = callPackage @@ -279889,6 +294597,8 @@ self: { libraryHaskellDepends = [ base parsec template-haskell xml ]; description = "Quasiquoter for xml. XML DSL in Haskell."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text-zipper" = callPackage @@ -279914,6 +294624,8 @@ self: { testHaskellDepends = [ base hspec text-zipper ]; description = "Monadic interface to the text-zipper package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "text1" = callPackage @@ -279932,6 +294644,8 @@ self: { ]; description = "Non-empty values of `Data.Text`."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "textPlot" = callPackage @@ -279972,6 +294686,7 @@ self: { executableHaskellDepends = [ base haskell98 process ]; description = "A simple Haskell program to provide tags for Haskell code completion in TextMate"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "textmatetags"; }) {}; @@ -279993,6 +294708,8 @@ self: { ]; description = "Unofficial Haskell SDK for Textocat API -- http://textocat.com"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "texts" = callPackage @@ -280015,6 +294732,8 @@ self: { libraryHaskellDepends = [ base bytestring text utf8-string ]; description = "Textual type class for data that represent text"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tf-random" = callPackage @@ -280050,6 +294769,8 @@ self: { libraryHaskellDepends = [ base template-haskell tfp ]; description = "Template-Haskell code for tfp"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tftp" = callPackage @@ -280074,7 +294795,9 @@ self: { ]; description = "A library for building tftp servers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tftp_upload"; + broken = true; }) {}; "tga" = callPackage @@ -280086,6 +294809,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Reading and writing of tga image files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "th-abstraction" = callPackage @@ -280136,6 +294861,7 @@ self: { ]; description = "Alpha equivalence for TH Exp"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "th-bang-compat" = callPackage @@ -280158,6 +294884,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "More convenient construction of TH ASTs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "th-cas" = callPackage @@ -280223,6 +294951,7 @@ self: { ]; description = "Test instance context"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "th-data-compat_0_1_1_1" = callPackage @@ -280303,6 +295032,8 @@ self: { libraryHaskellDepends = [ base constraints template-haskell ]; description = "Automatically discover available dictionaries at compile time"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "th-env" = callPackage @@ -280363,6 +295094,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "TH fold generator"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "th-format" = callPackage @@ -280379,6 +295112,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit text ]; description = "Template Haskell based support for format strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "th-inline-io-action" = callPackage @@ -280390,6 +295125,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Simple inline IO action into compiled code using TH"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "th-instance-reification" = callPackage @@ -280410,6 +295147,8 @@ self: { ]; description = "Fixed versions of instances reification functions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "th-instances" = callPackage @@ -280433,6 +295172,7 @@ self: { ]; description = "A place to collect orphan instances for Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "th-kinds" = callPackage @@ -280448,6 +295188,8 @@ self: { ]; description = "Automated kind inference in Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "th-kinds-fork" = callPackage @@ -280463,6 +295205,8 @@ self: { ]; description = "Automated kind inference in Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "th-lego" = callPackage @@ -280579,6 +295323,8 @@ self: { libraryHaskellDepends = [ base lens pretty template-haskell ]; description = "Simplify and render Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "th-printf" = callPackage @@ -280660,6 +295406,8 @@ self: { libraryHaskellDepends = [ base containers template-haskell ]; description = "Binding group analysis in Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "th-strict-compat" = callPackage @@ -280686,6 +295434,8 @@ self: { ]; description = "Typechecking in Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "th-test-utils" = callPackage @@ -280719,6 +295469,8 @@ self: { testHaskellDepends = [ base hspec template-haskell ]; description = "Provides a way to persist data from compile-time to runtime"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "th-traced" = callPackage @@ -280730,6 +295482,8 @@ self: { libraryHaskellDepends = [ base containers mtl template-haskell ]; description = "Tracing Q monad computation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "th-typegraph" = callPackage @@ -280757,6 +295511,7 @@ self: { ]; description = "Graph of the subtype relation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "th-utilities" = callPackage @@ -280802,7 +295557,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Give your dependencies stars on GitHub!"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "thank-you-stars"; + broken = true; }) {}; "the-snip" = callPackage @@ -280864,7 +295621,9 @@ self: { ]; description = "Haskell API bindings for http://themoviedb.org"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "tmdb"; + broken = true; }) {}; "themplate" = callPackage @@ -280912,6 +295671,8 @@ self: { ]; description = "All-in-one session handling for servant-based frontends"; license = "AGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "theoremquest" = callPackage @@ -280923,6 +295684,8 @@ self: { libraryHaskellDepends = [ base HTTP json utf8-string ]; description = "A common library for TheoremQuest, a theorem proving game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "theoremquest-client" = callPackage @@ -280936,6 +295699,7 @@ self: { executableHaskellDepends = [ base HTTP network theoremquest ]; description = "A simple client for the TheoremQuest theorem proving game"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tq"; }) {}; @@ -281025,7 +295789,9 @@ self: { libraryHaskellDepends = [ base pretty ]; description = "Typing Haskell In Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "thih"; + broken = true; }) {}; "thimk" = callPackage @@ -281044,6 +295810,7 @@ self: { ]; description = "Command-line spelling word suggestion tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "thock" = callPackage @@ -281071,6 +295838,8 @@ self: { ]; description = "A modern TUI typing game featuring online racing against friends"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "thorn" = callPackage @@ -281089,6 +295858,8 @@ self: { ]; description = "Datatype Manipulation with Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "thread-hierarchy" = callPackage @@ -281199,6 +295970,7 @@ self: { ]; description = "Manage concurrently operating threads without having to spark them"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "threadmanager" = callPackage @@ -281210,6 +295982,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "(deprecated in favor of 'threads') Simple thread management"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "threads" = callPackage @@ -281335,6 +296109,8 @@ self: { ]; description = "Composable algebraic editors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "threepenny-gui" = callPackage @@ -281375,7 +296151,9 @@ self: { executableHaskellDepends = [ base threepenny-gui ]; description = "Write simple nested context menus for threepenny-gui"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "threepenny-gui-contextmenu-exe"; + broken = true; }) {}; "threepenny-gui-flexbox" = callPackage @@ -281390,7 +296168,9 @@ self: { executableHaskellDepends = [ base threepenny-gui ]; description = "Flexbox layouts for Threepenny-gui"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "threepenny-flexbox-exe"; + broken = true; }) {}; "thrift" = callPackage @@ -281413,6 +296193,8 @@ self: { ]; description = "Haskell bindings for the Apache Thrift RPC system"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "thrist" = callPackage @@ -281452,6 +296234,8 @@ self: { ]; description = "Throttler between arbitrary IO producer and consumer functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "throttled" = callPackage @@ -281475,6 +296259,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "Loop over an action but throttle it to a certain rate"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "through-text" = callPackage @@ -281488,6 +296274,8 @@ self: { libraryHaskellDepends = [ base bytestring case-insensitive text ]; description = "Convert textual types through Text without needing O(n^2) instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "throwable-exceptions" = callPackage @@ -281506,6 +296294,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "throwable-exceptions gives the easy way to throw exceptions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "thumbnail" = callPackage @@ -281517,6 +296307,8 @@ self: { libraryHaskellDepends = [ base bytestring gd ]; description = "generate thumbnail image"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "thumbnail-plus" = callPackage @@ -281540,6 +296332,8 @@ self: { ]; description = "Generate thumbnails easily and safely"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "thumbnail-polish" = callPackage @@ -281556,6 +296350,7 @@ self: { ]; description = "Image thumbnail creation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "thyme" = callPackage @@ -281621,7 +296416,9 @@ self: { ]; description = "A desktop bar based on WebKit"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "tianbar"; + broken = true; }) {inherit (pkgs) gtk3; inherit (pkgs) webkitgtk;}; "tibetan-utils" = callPackage @@ -281654,6 +296451,7 @@ self: { executableHaskellDepends = [ base glade gtk haskell98 ]; description = "Useful if reading \"Why FP matters\" by John Hughes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tic-tac-toe"; }) {}; @@ -281691,7 +296489,9 @@ self: { testHaskellDepends = [ base QuickCheck text ]; description = "A basic implementation of a personal ticket management system"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "ticket-manager"; + broken = true; }) {}; "tickle" = callPackage @@ -281712,6 +296512,7 @@ self: { ]; description = "A port of @Data.Binary@"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tictactoe3d" = callPackage @@ -281723,6 +296524,8 @@ self: { libraryHaskellDepends = [ base tuples-homogenous-h98 vector ]; description = "3D Tic-Tac-Toe game"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tidal" = callPackage @@ -281777,6 +296580,8 @@ self: { ]; description = "Please ignore this package"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tidal-serial" = callPackage @@ -281790,6 +296595,7 @@ self: { ]; description = "Serial support for tidal"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "tidal-vis" = callPackage @@ -281822,6 +296628,8 @@ self: { libraryHaskellDepends = [ base containers mtl recursion-schemes ]; description = "\"Ties the knot\" on a given set of structures that reference each other by keys"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tiempo" = callPackage @@ -281833,6 +296641,8 @@ self: { libraryHaskellDepends = [ base deepseq time ]; description = "Specify time intervals in different units (secs, mins, hours, etc.)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tiger" = callPackage @@ -281849,7 +296659,9 @@ self: { ]; description = "Tiger Compiler of Universiteit Utrecht"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tiger"; + broken = true; }) {}; "tight-apply" = callPackage @@ -281877,6 +296689,8 @@ self: { ]; description = "Nice API for a Slackbot"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tighttp" = callPackage @@ -281895,6 +296709,7 @@ self: { ]; description = "Tiny and Incrementally-Growing HTTP library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tikzsd" = callPackage @@ -281915,7 +296730,9 @@ self: { ]; description = "A program for generating LaTeX code of string diagrams"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "tikzsd"; + broken = true; }) {}; "tile" = callPackage @@ -281958,6 +296775,7 @@ self: { executableToolDepends = [ happy ]; description = "The Timber Compiler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "timberc"; }) {}; @@ -282037,6 +296855,8 @@ self: { libraryHaskellDepends = [ base time ]; description = "Data instances for the time package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "time-exts" = callPackage @@ -282058,6 +296878,7 @@ self: { ]; description = "Yet another time library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "time-http" = callPackage @@ -282081,6 +296902,7 @@ self: { ]; description = "Parse and format HTTP/1.1 Date and Time strings"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; }) {}; "time-interval" = callPackage @@ -282103,6 +296925,7 @@ self: { libraryHaskellDepends = [ base base-io-access time ]; description = "IO Access for time"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "time-lens" = callPackage @@ -282148,6 +296971,8 @@ self: { testHaskellDepends = [ base hspec HUnit mtl time tz ]; description = "A library to mock the current time"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "time-manager" = callPackage @@ -282234,6 +297059,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Quasi-quoter for UTCTime times"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "time-quote" = callPackage @@ -282250,6 +297077,8 @@ self: { ]; description = "Quasi-quoters for dates and times"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "time-recurrence" = callPackage @@ -282267,6 +297096,8 @@ self: { ]; description = "Generate recurring dates"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "time-series" = callPackage @@ -282281,7 +297112,9 @@ self: { executableHaskellDepends = [ base ]; description = "Time series analysis"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "time-series"; + broken = true; }) {}; "time-series-lib" = callPackage @@ -282295,6 +297128,8 @@ self: { doHaddock = false; description = "Library for Time Series processing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "time-units" = callPackage @@ -282330,6 +297165,8 @@ self: { libraryHaskellDepends = [ base convertible parsec time ]; description = "Parse, format and convert W3C Date and Time"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "time-warp" = callPackage @@ -282367,6 +297204,7 @@ self: { ]; description = "Distributed systems execution emulation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "timecalc" = callPackage @@ -282379,7 +297217,9 @@ self: { isExecutable = true; executableHaskellDepends = [ base haskeline uu-parsinglib ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "timecalc"; + broken = true; }) {}; "timeconsole" = callPackage @@ -282530,6 +297370,8 @@ self: { time unordered-containers ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "timeout" = callPackage @@ -282546,6 +297388,8 @@ self: { ]; description = "Generalized sleep and timeout functions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "timeout-control" = callPackage @@ -282572,6 +297416,8 @@ self: { libraryHaskellDepends = [ base deepseq mtl parallel ]; description = "Runs a time-limited computation alowing it to return intermediate results"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "timeparsers" = callPackage @@ -282587,6 +297433,8 @@ self: { ]; description = "Attoparsec parsers for various Date/Time formats"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "timeplot" = callPackage @@ -282607,7 +297455,9 @@ self: { ]; description = "A tool for visualizing time series from log files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tplot"; + broken = true; }) {}; "timeprint" = callPackage @@ -282619,6 +297469,7 @@ self: { libraryHaskellDepends = [ base datetime ]; description = "Prints timestamps after each line evaluated"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "timer-wheel" = callPackage @@ -282708,6 +297559,8 @@ self: { ]; description = "Library for Time Series processing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "timespan" = callPackage @@ -282793,7 +297646,9 @@ self: { testHaskellDepends = [ base hspec microlens time ]; description = "Time utilities"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "timeutils"; + broken = true; }) {}; "timezone-detect" = callPackage @@ -282813,6 +297668,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Haskell bindings for the zone-detect C library; plus tz-aware utils"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "timezone-olson" = callPackage @@ -282876,6 +297733,7 @@ self: { timezone-series ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "timing-convenience" = callPackage @@ -282920,6 +297778,7 @@ self: { libraryToolDepends = [ proto-lens-protoc ]; description = "gRPC based SDK for Tinkoff Invest API V2"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "tintin" = callPackage @@ -282945,6 +297804,7 @@ self: { testHaskellDepends = [ base require ]; description = "A softer alternative to Haddock"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "tintin"; }) {}; @@ -282957,6 +297817,8 @@ self: { libraryHaskellDepends = [ async base time ]; description = "tiny no-brainer job scheduler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tinyMesh" = callPackage @@ -282972,6 +297834,7 @@ self: { ]; description = "TinyMesh - communicating with auto-meshing sensor network"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "tinyXml" = callPackage @@ -282996,7 +297859,9 @@ self: { ]; description = "A fast DOM parser for a subset of XML"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "validate"; + broken = true; }) {}; "tinyfiledialogs" = callPackage @@ -283020,6 +297885,8 @@ self: { libraryHaskellDepends = [ base bytestring entropy ]; description = "A secure URL-friendly string ID generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tinylog" = callPackage @@ -283037,6 +297904,8 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion ]; description = "Simplistic logging using fast-logger"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tinytemplate" = callPackage @@ -283049,6 +297918,8 @@ self: { testHaskellDepends = [ base QuickCheck text ]; description = "A tiny text templating library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tinytools" = callPackage @@ -283083,6 +297954,7 @@ self: { ]; description = "tinytools is a mono-space unicode diagram editor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tinytools-vty" = callPackage @@ -283127,6 +297999,7 @@ self: { ]; description = "tinytools-vty is a terminal based monospace unicode diagram editing tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tip-haskell-frontend" = callPackage @@ -283151,6 +298024,7 @@ self: { ]; description = "Convert from Haskell to Tip"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tip-ghc"; }) {}; @@ -283175,6 +298049,7 @@ self: { ]; description = "tons of inductive problems - support library and tools"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tip"; }) {}; @@ -283192,6 +298067,8 @@ self: { testHaskellDepends = [ aeson base hspec vector ]; description = "Navigating and editing JSON data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "titan" = callPackage @@ -283220,6 +298097,7 @@ self: { ]; description = "Testing Infrastructure for Temporal AbstractioNs - GUI to debug temporal programs"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "titan"; }) {}; @@ -283238,6 +298116,8 @@ self: { ]; description = "Testing Infrastructure for Temporal AbstractioNs - Interactive Yampa debugging layer"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "titan-record-yampa" = callPackage @@ -283249,6 +298129,8 @@ self: { libraryHaskellDepends = [ base Yampa ]; description = "Testing Infrastructure for Temporal AbstractioNs - Yampa record-and-replay layer"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "titlecase" = callPackage @@ -283284,7 +298166,9 @@ self: { testHaskellDepends = [ HUnit test-framework test-framework-hunit ]; description = "Simple Presentation Utility"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tkhs"; + broken = true; }) {}; "tkyprof" = callPackage @@ -283311,7 +298195,9 @@ self: { ]; description = "A web-based visualizer for GHC Profiling Reports"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tkyprof"; + broken = true; }) {}; "tld" = callPackage @@ -283368,6 +298254,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "A lexer generator"; license = "(Apache-2.0 OR MPL-2.0)"; + hydraPlatforms = lib.platforms.none; }) {}; "tlex-core" = callPackage @@ -283391,6 +298278,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "A lexer generator"; license = "(Apache-2.0 OR MPL-2.0)"; + hydraPlatforms = lib.platforms.none; }) {}; "tlex-debug" = callPackage @@ -283413,6 +298301,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Debug utilities for Tlex"; license = "(Apache-2.0 OR MPL-2.0)"; + hydraPlatforms = lib.platforms.none; }) {}; "tlex-encoding" = callPackage @@ -283435,6 +298324,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Encoding plugin for Tlex"; license = "(Apache-2.0 OR MPL-2.0)"; + hydraPlatforms = lib.platforms.none; }) {}; "tlex-th" = callPackage @@ -283458,6 +298348,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "TemplateHaskell plugin for Tlex"; license = "(Apache-2.0 OR MPL-2.0)"; + hydraPlatforms = lib.platforms.none; }) {}; "tls" = callPackage @@ -283535,6 +298426,8 @@ self: { ]; description = "Set of programs for TLS testing and debugging"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tls-extra" = callPackage @@ -283554,6 +298447,7 @@ self: { ]; description = "TLS extra default values and helpers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tls-session-manager" = callPackage @@ -283737,6 +298631,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Test a simple service with backends running on docker using tmp-proc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tmp-proc-postgres" = callPackage @@ -283860,6 +298756,8 @@ self: { ]; description = "Launch ZipKin in docker using tmp-proc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tmpl" = callPackage @@ -283875,6 +298773,7 @@ self: { ]; description = "simple executable for templating"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "tmpl"; }) {}; @@ -283898,6 +298797,7 @@ self: { ]; description = "A simple daily journal program"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; mainProgram = "tn"; }) {}; @@ -283943,6 +298843,8 @@ self: { ]; description = "A type class and some utilities for generating Haskell code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "to-string-class" = callPackage @@ -283956,6 +298858,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Converting string-like types to Strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "to-string-instances" = callPackage @@ -283967,6 +298871,7 @@ self: { libraryHaskellDepends = [ bytestring pretty text to-string-class ]; description = "Instances for the ToString class"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "toboggan" = callPackage @@ -283985,6 +298890,7 @@ self: { executableHaskellDepends = [ base ]; description = "Twitter bot generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "toboggan"; }) {}; @@ -284022,6 +298928,7 @@ self: { ]; description = "Easy-to-use TODOs manager"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "todos"; }) {}; @@ -284041,6 +298948,8 @@ self: { ]; description = "Reading and writing Haskell data from and to XML"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "toilet" = callPackage @@ -284058,7 +298967,9 @@ self: { ]; description = "Manage the toilet queue at the IMO"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "toilet"; + broken = true; }) {}; "token-bucket" = callPackage @@ -284094,7 +299005,9 @@ self: { ]; description = "Fast rate limiting using the token bucket algorithm (BSD)"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "token-limiter-extended-tests"; + broken = true; }) {}; "token-limiter-concurrent" = callPackage @@ -284137,7 +299050,9 @@ self: { text unordered-containers ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "token-search"; + broken = true; }) {}; "tokenify" = callPackage @@ -284149,6 +299064,8 @@ self: { libraryHaskellDepends = [ base containers text ]; description = "A regex lexer"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tokenize" = callPackage @@ -284182,6 +299099,8 @@ self: { ]; description = "Check uniqueness and tokenize safely"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tokenizer-monad" = callPackage @@ -284209,6 +299128,8 @@ self: { ]; description = "A variant of tokenizer-monad that supports streaming"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tokstyle" = callPackage @@ -284234,6 +299155,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "TokTok C code style checker"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "toktok" = callPackage @@ -284248,6 +299170,7 @@ self: { libraryHaskellDepends = [ base containers haskell98 ]; executableHaskellDepends = [ base bytestring gf iconv ]; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "tokyocabinet-haskell" = callPackage @@ -284266,6 +299189,8 @@ self: { testSystemDepends = [ tokyocabinet ]; description = "Haskell binding of Tokyo Cabinet"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) tokyocabinet;}; "tokyotyrant-haskell" = callPackage @@ -284280,6 +299205,8 @@ self: { description = "FFI bindings to libtokyotyrant"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) tokyocabinet; inherit (pkgs) tokyotyrant;}; "tomato-rubato-openal" = callPackage @@ -284309,6 +299236,8 @@ self: { attoparsec base bytestring containers old-locale time ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "toml-parser" = callPackage @@ -284416,6 +299345,7 @@ self: { ]; description = "Command-line tool to check syntax of TOML files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tomlcheck"; }) {}; @@ -284429,6 +299359,8 @@ self: { testHaskellDepends = [ base bytestring doctest Glob rio unliftio ]; description = "A standard library for Tonatona framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tonaparser" = callPackage @@ -284443,6 +299375,8 @@ self: { testHaskellDepends = [ base doctest envy Glob rio say tonatona ]; description = "Scalable way to pass runtime configurations for tonatona"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tonatona" = callPackage @@ -284455,6 +299389,7 @@ self: { testHaskellDepends = [ base doctest Glob rio tonaparser ]; description = "meta application framework"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "tonatona-google-server-api" = callPackage @@ -284477,6 +299412,7 @@ self: { ]; description = "tonatona plugin for google-server-api"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "tonatona-logger" = callPackage @@ -284489,6 +299425,7 @@ self: { testHaskellDepends = [ base doctest Glob rio tonaparser tonatona ]; description = "tonatona plugin for logging"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "tonatona-persistent-postgresql" = callPackage @@ -284509,6 +299446,7 @@ self: { ]; description = "tonatona plugin for accessing PostgreSQL database"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "tonatona-persistent-sqlite" = callPackage @@ -284529,6 +299467,7 @@ self: { ]; description = "tonatona plugin for accessing Sqlite database"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "tonatona-servant" = callPackage @@ -284552,6 +299491,7 @@ self: { ]; description = "tonatona plugin for servant"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "too-many-cells" = callPackage @@ -284597,6 +299537,7 @@ self: { executableHaskellDepends = [ base optparse-applicative ]; description = "Cluster single cells and analyze cell clade relationships"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "too-many-cells"; }) {}; @@ -284633,7 +299574,9 @@ self: { ]; description = "Manage the TODO entries in your code"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "toodles"; + broken = true; }) {}; "toolshed" = callPackage @@ -284675,6 +299618,7 @@ self: { ]; description = "Top (typed oriented protocol) API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "topaz" = callPackage @@ -284690,6 +299634,7 @@ self: { ]; description = "Extensible records library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tophat" = callPackage @@ -284724,7 +299669,9 @@ self: { ]; description = "OpenGL Arcade Game"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "topkata"; + broken = true; }) {}; "topograph" = callPackage @@ -284753,6 +299700,8 @@ self: { libraryHaskellDepends = [ base mtl parallel QuickCheck ]; description = "Simple unit test library (or framework)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "torrent" = callPackage @@ -284828,6 +299777,7 @@ self: { libraryHaskellDepends = [ base containers semiring-num ]; description = "Finitely represented total maps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "total-maps" = callPackage @@ -284844,6 +299794,8 @@ self: { ]; description = "Dense and sparse total maps"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "touched" = callPackage @@ -284858,7 +299810,9 @@ self: { executableHaskellDepends = [ base cmdargs ]; description = "Library (and cli) to execute a procedure on file change"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "touched"; + broken = true; }) {}; "tower" = callPackage @@ -284905,6 +299859,7 @@ self: { ]; description = "A Tox protocol implementation in Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "toxsave-convert"; }) {}; @@ -284931,6 +299886,7 @@ self: { ]; description = "Haskell bindings to the C reference implementation of Tox"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "groupbot"; }) {toxcore = null;}; @@ -284951,6 +299907,8 @@ self: { ]; description = "Client library for Toxiproxy: a TCP failure testing proxy"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "toysolver" = callPackage @@ -285006,6 +299964,7 @@ self: { ]; description = "Assorted decision procedures for SAT, SMT, Max-SAT, PB, MIP, etc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tpar" = callPackage @@ -285042,6 +300001,7 @@ self: { ]; description = "simple, parallel job scheduling"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tpar"; }) {}; @@ -285068,6 +300028,7 @@ self: { ]; description = "Applications for interacting with the Pushbullet API"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "tpdb" = callPackage @@ -285109,6 +300070,8 @@ self: { ]; description = "Parser and pretty printer for the TPTP language"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "trace" = callPackage @@ -285125,6 +300088,8 @@ self: { ]; description = "A monad transformer for tracing provenience of errors"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "trace-call" = callPackage @@ -285136,6 +300101,8 @@ self: { libraryHaskellDepends = [ base containers mtl ]; description = "functions for logging the arguments and results of function calls"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "trace-function-call" = callPackage @@ -285147,6 +300114,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Easy lightweight tracing of function arguments and results for ad hoc debugging"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "traced" = callPackage @@ -285158,6 +300127,8 @@ self: { libraryHaskellDepends = [ base containers mtl pretty ]; description = "Simple evaluation trace"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tracer" = callPackage @@ -285189,6 +300160,8 @@ self: { ]; description = "Visualize Haskell data structures as edge-labeled trees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tracing" = callPackage @@ -285247,7 +300220,9 @@ self: { testHaskellDepends = [ base directory hspec process ]; description = "Package to list all tracked and untracked existing files via Git"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "tracked-files"; + broken = true; }) {}; "tracker" = callPackage @@ -285259,6 +300234,8 @@ self: { libraryHaskellDepends = [ base containers glib ]; description = "Client library for Tracker metadata database, indexer and search tool"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "trackit" = callPackage @@ -285277,7 +300254,9 @@ self: { ]; description = "A command-line tool for live monitoring"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "trackit"; + broken = true; }) {}; "traction" = callPackage @@ -285299,6 +300278,8 @@ self: { ]; description = "Tools for postgresql-simple"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tracy" = callPackage @@ -285310,6 +300291,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Convenience wrappers for non-intrusive debug tracing"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "trade-journal" = callPackage @@ -285366,6 +300349,8 @@ self: { ]; description = "TrailDB bindings for Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {Judy = null; traildb = null;}; "trajectory" = callPackage @@ -285388,6 +300373,7 @@ self: { ]; description = "Tools and a library for working with Trajectory"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "trans-fx-core" = callPackage @@ -285399,6 +300385,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Monadic effect framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "trans-fx-data" = callPackage @@ -285410,6 +300398,7 @@ self: { libraryHaskellDepends = [ base trans-fx-core ]; description = "Monadic effect framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "trans-fx-io" = callPackage @@ -285422,6 +300411,7 @@ self: { testHaskellDepends = [ base time trans-fx-core ]; description = "Monadic effect framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "transaction" = callPackage @@ -285451,6 +300441,8 @@ self: { libraryHaskellDepends = [ base ListZipper MonadPrompt stm ]; description = "Transactional events, based on Concurrent ML semantics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "transf" = callPackage @@ -285469,7 +300461,9 @@ self: { ]; description = "Text transformer and interpreter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "transf"; + broken = true; }) {}; "transfer-db" = callPackage @@ -285498,6 +300492,7 @@ self: { ]; description = "ODBC database transfer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "transfer-db"; }) {}; @@ -285519,6 +300514,7 @@ self: { ]; description = "Generic representation of tree transformations"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "Benchmark"; }) {}; @@ -285576,6 +300572,8 @@ self: { libraryHaskellDepends = [ base mmorph transformers ]; description = "Bifunctors over monad transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "transformers-compat" = callPackage @@ -285598,6 +300596,8 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Arrow-like / category-like composition for transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "transformers-continue" = callPackage @@ -285627,6 +300627,7 @@ self: { ]; description = "Sensible conversions between some of the monad transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "transformers-eff" = callPackage @@ -285708,6 +300709,8 @@ self: { ]; description = "Ad-hoc type classes for lifting"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "transformers-runnable" = callPackage @@ -285719,6 +300722,8 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "A unified interface for the run operation of monad transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "transformers-supply" = callPackage @@ -285750,6 +300755,8 @@ self: { ]; description = "composing programs with multithreading, events and distributed computing"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "transient-universe" = callPackage @@ -285785,6 +300792,7 @@ self: { ]; description = "fully composable remote execution for the creation of distributed systems"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "transient-universe-tls" = callPackage @@ -285801,6 +300809,7 @@ self: { ]; description = "transient with secure communications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "translatable-intset" = callPackage @@ -285814,6 +300823,8 @@ self: { libraryHaskellDepends = [ base fingertree ]; description = "Integer sets with a constant time translate operation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "translate" = callPackage @@ -285826,6 +300837,8 @@ self: { libraryHaskellDepends = [ base curl json network utf8-string ]; description = "Haskell binding to Google's AJAX Language API for Translation and Detection"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "translate-cli" = callPackage @@ -285843,6 +300856,7 @@ self: { testHaskellDepends = [ base HUnit ]; description = "Translation cli tool"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "translate"; }) {}; @@ -285862,6 +300876,7 @@ self: { testHaskellDepends = [ base doctest ]; description = "Type Safe Web Routing"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "trasa-client" = callPackage @@ -285878,6 +300893,7 @@ self: { ]; description = "Type safe http requests"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "trasa-extra" = callPackage @@ -285895,6 +300911,7 @@ self: { ]; description = "Extra functions for trasa"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "trasa-form" = callPackage @@ -285913,6 +300930,7 @@ self: { ]; description = "generate forms using lucid, ditto and trasa"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "trasa-reflex" = callPackage @@ -285929,6 +300947,7 @@ self: { ]; description = "Reactive Type Safe Routing"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "trasa-server" = callPackage @@ -285945,6 +300964,7 @@ self: { ]; description = "Type safe web server"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "trasa-th" = callPackage @@ -285961,6 +300981,7 @@ self: { testHaskellDepends = [ base trasa ]; description = "Template Haskell to generate trasa routes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "traversal-template" = callPackage @@ -285976,6 +300997,7 @@ self: { benchmarkHaskellDepends = [ base gauge template-haskell util ]; description = "See README for more info"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "traverse-code" = callPackage @@ -285996,6 +301018,8 @@ self: { ]; description = "General data structure lifting for Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "traverse-with-class" = callPackage @@ -286027,6 +301051,8 @@ self: { ]; description = "A simple client implementation using Travis CI API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "travis-meta-yaml" = callPackage @@ -286056,7 +301082,9 @@ self: { ]; description = ".travis.yml preprocessor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "travis-meta-yaml"; + broken = true; }) {}; "travis-pogodi" = callPackage @@ -286090,7 +301118,9 @@ self: { ]; description = "A tool for finding haddocks"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "trawl"; + broken = true; }) {}; "traypoweroff" = callPackage @@ -286105,7 +301135,9 @@ self: { executableHaskellDepends = [ base gtk process ]; description = "Tray Icon application to PowerOff / Reboot computer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "traypoweroff"; + broken = true; }) {}; "treap" = callPackage @@ -286122,6 +301154,8 @@ self: { testHaskellDepends = [ base doctest Glob hspec hspec-core ]; description = "Efficient implementation of the implicit treap data structure"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tree-diff" = callPackage @@ -286174,6 +301208,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Non-Determinism Monad for Tree Search"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tree-render-text" = callPackage @@ -286185,6 +301221,8 @@ self: { libraryHaskellDepends = [ base boxes containers mtl ]; description = "Configurable text rendering of trees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tree-sitter" = callPackage @@ -286371,6 +301409,8 @@ self: { testHaskellDepends = [ base containers doctest mtl ]; description = "Functions and newtype wrappers for traversing Trees"; license = lib.licenses.cc0; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tree-view" = callPackage @@ -286417,6 +301457,8 @@ self: { ]; description = "A tree of Data.Map."; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "treemap-html" = callPackage @@ -286432,6 +301474,8 @@ self: { ]; description = "Generates HTML for Data.Tree as TreeMap"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "treemap-html-tools" = callPackage @@ -286451,6 +301495,7 @@ self: { doHaddock = false; description = "Treemap related commands for producing foldable TreeMap HTML"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "treersec" = callPackage @@ -286462,6 +301507,7 @@ self: { libraryHaskellDepends = [ base haste-compiler sneathlane-haste ]; description = "Structure Editing Combinators"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "treeseq" = callPackage @@ -286530,6 +301576,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "A PostgreSQL Database Migrator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "trek"; }) {}; @@ -286554,6 +301601,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "A PostgreSQL Database Migrator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "trek-lens" = callPackage @@ -286580,6 +301628,8 @@ self: { ]; description = "Library for polling Tremulous servers"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "trhsx" = callPackage @@ -286590,6 +301640,8 @@ self: { sha256 = "11jx2jf6vi7368ys39mz0ziy6xknbi0z87926n2y16am6k2h25k3"; description = "Deprecated"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "trial" = callPackage @@ -286649,6 +301701,7 @@ self: { ]; description = "triangulation of polygons"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "trie-simple" = callPackage @@ -286747,6 +301800,7 @@ self: { testHaskellDepends = [ base hspec protolude ]; description = "Trigger is a cross platform file system watcher for super fast build-and-restart workflows"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "trigger"; }) {}; @@ -286763,7 +301817,9 @@ self: { testHaskellDepends = [ base hspec ]; description = "A command-line tool for trimming whitespace"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "trim"; + broken = true; }) {}; "trimdent" = callPackage @@ -286793,6 +301849,7 @@ self: { executableHaskellDepends = [ base bio bytestring simpleargs ]; description = "Search for, annotate and trim poly-A tail"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "trimpolya"; }) {}; @@ -286809,6 +301866,8 @@ self: { ]; description = "A very simple triple store"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "triplesec" = callPackage @@ -286841,6 +301900,8 @@ self: { libraryHaskellDepends = [ base comonad distributive ]; description = "The trivial monad and comonad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "trivial-constraint" = callPackage @@ -286863,6 +301924,8 @@ self: { libraryHaskellDepends = [ base semiring-simple ]; description = "A library for tropical mathematics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tropical-geometry" = callPackage @@ -286938,6 +302001,7 @@ self: { testHaskellDepends = [ base hastache tasty tasty-hunit ]; description = "Haskell template code generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "trurl"; }) {}; @@ -286955,6 +302019,8 @@ self: { testHaskellDepends = [ base binary containers cropty merge text ]; description = "An implementation of a trust chain"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "truthful" = callPackage @@ -286990,6 +302056,8 @@ self: { libraryHaskellDepends = [ base containers mtl time transformers ]; description = "A Transaction Framework for Web Applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tsession-happstack" = callPackage @@ -287003,6 +302071,7 @@ self: { ]; description = "A Transaction Framework for Happstack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tsetchan" = callPackage @@ -287046,6 +302115,8 @@ self: { ]; description = "-"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tslogger" = callPackage @@ -287110,6 +302181,8 @@ self: { ]; description = "Parses U.S. federal Thrift Savings Plan PDF quarterly statements"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tst" = callPackage @@ -287141,7 +302214,9 @@ self: { ]; description = "Interacts with tesseract to ease reading of RAW Japanese manga"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tsuntsun"; + broken = true; }) {}; "tsv2csv" = callPackage @@ -287175,7 +302250,9 @@ self: { ]; description = "Template tsv into SQL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "tsvsql"; + broken = true; }) {}; "tsweb" = callPackage @@ -287204,6 +302281,7 @@ self: { ]; description = "An API binding Web.Spock to Database.Beam"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tsweb"; }) {}; @@ -287227,7 +302305,9 @@ self: { testHaskellDepends = [ base ]; description = "This is task management tool for yourself, that inspired by scrum"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ttask"; + broken = true; }) {}; "ttc" = callPackage @@ -287268,6 +302348,8 @@ self: { ]; description = "Extends hashtables so that entries added can be expired after a TTL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ttn" = callPackage @@ -287307,8 +302389,10 @@ self: { executableHaskellDepends = [ base text time ttn ]; description = "TheThingsNetwork client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ttnc"; maintainers = [ lib.maintainers.sorki ]; + broken = true; }) {}; "ttrie" = callPackage @@ -287361,7 +302445,9 @@ self: { ]; description = "Working with files for the Tiptoi® pen"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "tttool"; + broken = true; }) {}; "tubes" = callPackage @@ -287378,6 +302464,8 @@ self: { ]; description = "Write stream processing computations with side effects in a series of tubes"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tuntap" = callPackage @@ -287389,6 +302477,8 @@ self: { libraryHaskellDepends = [ base bytestring unix ]; description = "Interface to TUN/TAP drivers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tuntap-simple" = callPackage @@ -287402,6 +302492,7 @@ self: { libraryHaskellDepends = [ base ioctl ]; description = "A simple tun/tap library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tup-functor" = callPackage @@ -287416,6 +302507,7 @@ self: { executableHaskellDepends = [ base haskell-src-exts parsec2 ]; description = "Homogeneous tuples"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tuplepp"; }) {}; @@ -287455,6 +302547,8 @@ self: { ]; description = "Extra instances for the typeclasses in the tuple-append package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tuple-fields" = callPackage @@ -287482,6 +302576,7 @@ self: { libraryHaskellDepends = [ base combinat ]; description = "Enum instances for tuples where the digits increase with the same speed"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tuple-generic" = callPackage @@ -287504,6 +302599,7 @@ self: { libraryHaskellDepends = [ base HList OneTuple ]; description = "Functions to convert between tuples and HLists"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "tuple-lenses" = callPackage @@ -287515,6 +302611,8 @@ self: { libraryHaskellDepends = [ base lens template-haskell ]; description = "Stock FieldN combos and generators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tuple-morph" = callPackage @@ -287528,6 +302626,7 @@ self: { libraryHaskellDepends = [ base HList template-haskell ]; description = "Morph between tuples, or convert them from and to HLists"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "tuple-ops" = callPackage @@ -287539,6 +302638,7 @@ self: { libraryHaskellDepends = [ base type-combinators ]; description = "various operations on n-ary tuples via GHC.Generics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "tuple-sop" = callPackage @@ -287573,6 +302673,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Functor, Applicative and Monad for n-ary tuples"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tuples" = callPackage @@ -287625,6 +302727,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A simple simulator for Turing machines"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "turing-music" = callPackage @@ -287638,7 +302742,9 @@ self: { executableHaskellDepends = [ ALUT base ]; description = "Plays music generated by Turing machines with 5 states and 2 symbols"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "turing-music"; + broken = true; }) {}; "turingMachine" = callPackage @@ -287655,6 +302761,7 @@ self: { ]; description = "An implementation of Turing Machine and Automaton"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "turkish-deasciifier" = callPackage @@ -287740,7 +302847,9 @@ self: { testHaskellDepends = [ base HUnit parsec ]; description = "Collection of command line options and parsers for these options"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "tw" = callPackage @@ -287774,6 +302883,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Tiny web application framework for WAI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tweak" = callPackage @@ -287785,6 +302896,8 @@ self: { libraryHaskellDepends = [ base containers lens stm transformers ]; description = "A library for incremental computing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "twee" = callPackage @@ -287802,6 +302915,7 @@ self: { ]; description = "An equational theorem prover"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "twee"; }) {}; @@ -287848,6 +302962,7 @@ self: { benchmarkHaskellDepends = [ base bytestring criterion megaparsec ]; description = "Command-line tool for twitter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tweet"; }) {}; @@ -287877,6 +302992,7 @@ self: { ]; description = "Used as Lab Assignments Environment at the University of Twente"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "twentefp-eventloop-trees" = callPackage @@ -287888,6 +303004,7 @@ self: { libraryHaskellDepends = [ base eventloop ]; description = "Tree type and show functions for lab assignment of University of Twente. Contains RoseTree and RedBlackTree"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "twentefp-graphs" = callPackage @@ -287899,6 +303016,7 @@ self: { libraryHaskellDepends = [ base twentefp-eventloop-graphics ]; description = "Lab Assignments Environment at Univeriteit Twente"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "twentefp-number" = callPackage @@ -287924,6 +303042,7 @@ self: { ]; description = "RoseTree type and show functions for lab assignment of University of Twente"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "twentefp-trees" = callPackage @@ -287935,6 +303054,7 @@ self: { libraryHaskellDepends = [ base twentefp-eventloop-graphics ]; description = "Tree type and show functions for lab assignment of University of Twente. Contains RoseTree and ParseTree"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "twentefp-websockets" = callPackage @@ -287953,6 +303073,8 @@ self: { ]; description = "A fork of the popular websockets package. It is used for the practical assignments of the University of Twente. A sensible and clean way to write WebSocket-capable servers in Haskell."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "twentyseven" = callPackage @@ -287982,6 +303104,7 @@ self: { ]; description = "Rubik's cube solver"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "twentyseven"; }) {}; @@ -288008,6 +303131,7 @@ self: { testHaskellDepends = [ base ]; description = "They Work For You API Client Library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "twfy-api-client"; }) {}; @@ -288039,7 +303163,9 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "CLI twitter client"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "twhs"; + broken = true; }) {}; "twidge" = callPackage @@ -288060,6 +303186,7 @@ self: { ]; description = "Unix Command-Line Twitter and Identica Client"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "twidge"; }) {}; @@ -288072,6 +303199,7 @@ self: { libraryHaskellDepends = [ base containers haskell98 mtl ]; description = "STM library with safe irrevocable I/O and inconsistency repair"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "twilio" = callPackage @@ -288098,6 +303226,8 @@ self: { doCheck = false; description = "Twilio REST API library for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "twill" = callPackage @@ -288116,6 +303246,7 @@ self: { ]; description = "Twilio API interaction"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "twiml" = callPackage @@ -288133,6 +303264,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "TwiML library for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "twine" = callPackage @@ -288148,6 +303281,8 @@ self: { ]; description = "very simple template language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "twirl" = callPackage @@ -288172,6 +303307,7 @@ self: { description = "Simple 2D Game Engine"; license = lib.licenses.zlib; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; }) {}; @@ -288209,6 +303345,8 @@ self: { ]; description = "Simulator of twisty puzzles à la Rubik's Cube"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "twitch" = callPackage @@ -288229,6 +303367,8 @@ self: { ]; description = "A high level file watcher DSL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "twitchapi" = callPackage @@ -288249,6 +303389,8 @@ self: { ]; description = "Client access to Twitch.tv API endpoints"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "twitter" = callPackage @@ -288266,7 +303408,9 @@ self: { ]; description = "A Haskell-based CLI Twitter client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "twitter"; + broken = true; }) {}; "twitter-conduit" = callPackage @@ -288315,6 +303459,7 @@ self: { ]; description = "Twitter API package with enumerator interface and Streaming API support"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "twitter-feed" = callPackage @@ -288336,6 +303481,8 @@ self: { ]; description = "Client for fetching Twitter timeline via Oauth"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "twitter-types" = callPackage @@ -288387,6 +303534,8 @@ self: { ]; description = "Persistent transactions on top of STM"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "txt" = callPackage @@ -288405,6 +303554,7 @@ self: { testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; description = "Text"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "txt-sushi" = callPackage @@ -288447,6 +303597,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Deprecated in favor of eros"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ty" = callPackage @@ -288471,6 +303623,8 @@ self: { libraryHaskellDepends = [ base containers template-haskell ]; description = "Provide proof witnesses for closed type family evaluation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "typalyze" = callPackage @@ -288489,6 +303643,8 @@ self: { ]; description = "Analyzes Haskell source files for easy reference"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-aligned" = callPackage @@ -288513,6 +303669,7 @@ self: { testHaskellDepends = [ base hspec test-fixture ]; description = "Runtime type assertions for testing"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; }) {}; "type-booleans" = callPackage @@ -288539,6 +303696,7 @@ self: { ]; description = "Utilities for caching type families results. Sometimes complex type families take long time to compile, so it is proficient to cache them and use the final result without the need of re-computation."; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "type-cereal" = callPackage @@ -288555,6 +303713,7 @@ self: { ]; description = "Type-level serialization of type constructors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "type-combinators" = callPackage @@ -288568,6 +303727,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A collection of data types for type-level programming"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-combinators-quote" = callPackage @@ -288583,6 +303744,7 @@ self: { ]; description = "Quasiquoters for the 'type-combinators' package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "type-combinators-singletons" = callPackage @@ -288594,6 +303756,7 @@ self: { libraryHaskellDepends = [ base singletons type-combinators ]; description = "Interop between /type-combinators/ and /singletons/"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "type-compare" = callPackage @@ -288605,6 +303768,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Type-level Ord compatibility layer"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-digits" = callPackage @@ -288616,6 +303781,7 @@ self: { libraryHaskellDepends = [ base template-haskell type-spine ]; description = "Arbitrary-base type-level digits"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "type-eq" = callPackage @@ -288630,6 +303796,8 @@ self: { libraryToolDepends = [ cpphs ]; description = "Type equality evidence you can carry around"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-equality" = callPackage @@ -288687,6 +303855,8 @@ self: { testHaskellDepends = [ base doctest Glob ]; description = "Combinators for writing pretty type errors easily"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-fun" = callPackage @@ -288743,6 +303913,8 @@ self: { ]; description = "Queues with verified and unverified versions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-int" = callPackage @@ -288754,6 +303926,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Type Level 2s- and 16s- Complement Integers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-interpreter" = callPackage @@ -288766,6 +303940,8 @@ self: { testHaskellDepends = [ base template-haskell ]; description = "Interpreter for Template Haskell types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-iso" = callPackage @@ -288804,6 +303980,8 @@ self: { libraryHaskellDepends = [ base ]; description = "type-level binary search trees in haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-level-integers" = callPackage @@ -288876,6 +304054,8 @@ self: { ]; description = "High-level combinators for performing inductive operations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-level-natural-number-operations" = callPackage @@ -288887,6 +304067,8 @@ self: { libraryHaskellDepends = [ base type-level-natural-number ]; description = "Basic operations on type-level natural numbers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-level-numbers" = callPackage @@ -288912,6 +304094,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Type-level sets and finite maps (with value-level counterparts)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-level-tf" = callPackage @@ -288934,6 +304118,8 @@ self: { libraryHaskellDepends = [ base singletons ]; description = "Operations on type-level lists and tuples"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-map" = callPackage @@ -289009,6 +304195,8 @@ self: { testHaskellDepends = [ base type-of-html ]; description = "Optimize static parts of type-of-html"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-operators" = callPackage @@ -289022,6 +304210,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Various type-level operators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-ord" = callPackage @@ -289035,6 +304225,7 @@ self: { ]; description = "Type-level comparison operator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "type-ord-spine-cereal" = callPackage @@ -289050,6 +304241,7 @@ self: { ]; description = "Generic type-level comparison of types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "type-prelude" = callPackage @@ -289061,6 +304253,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Partial port of prelude to the type level. Requires GHC 7.6.1."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-reflection" = callPackage @@ -289098,6 +304292,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Type safe BST and AVL trees"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-sets" = callPackage @@ -289110,6 +304306,7 @@ self: { testHaskellDepends = [ base cmptype ]; description = "Type-level sets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "type-settheory" = callPackage @@ -289125,6 +304322,8 @@ self: { ]; description = "Sets and functions-as-relations in the type system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-spec" = callPackage @@ -289148,6 +304347,8 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "A spine-view on types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-structure" = callPackage @@ -289174,6 +304375,7 @@ self: { ]; description = "Type structure analysis"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "type-sub-th" = callPackage @@ -289198,6 +304400,7 @@ self: { ]; description = "Substitute types for other types with Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "type-tree" = callPackage @@ -289215,6 +304418,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "Tree representations of datatypes"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "type-unary" = callPackage @@ -289234,6 +304439,8 @@ self: { ]; description = "Type-level and typed unary natural numbers, inequality proofs, vectors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "typeable-mock" = callPackage @@ -289264,6 +304471,8 @@ self: { testHaskellDepends = [ base ]; description = "Automatic deriving of TypeableN instances with Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "typecheck-plugin-nat-simple" = callPackage @@ -289306,6 +304515,7 @@ self: { ]; description = "Admin console framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "typed-digits" = callPackage @@ -289323,6 +304533,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Digits, indexed by their base at the type level"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "typed-duration" = callPackage @@ -289358,6 +304570,8 @@ self: { ]; description = "Type safe string transformations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "typed-encoding-encoding" = callPackage @@ -289377,6 +304591,7 @@ self: { ]; description = "Bridge between encoding and typed-encoding packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "typed-process" = callPackage @@ -289417,7 +304632,9 @@ self: { executableHaskellDepends = [ base diagrams-lib text ]; description = "Typed and composable spreadsheets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.Gabriella439 ]; + broken = true; }) {}; "typed-streams" = callPackage @@ -289439,6 +304656,7 @@ self: { ]; description = "A stream based replacement for lists"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "typed-time" = callPackage @@ -289451,6 +304669,8 @@ self: { testHaskellDepends = [ base hspec hspec-core time ]; description = "A strongly typed way to handle time and date formats"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "typed-uuid" = callPackage @@ -289492,7 +304712,9 @@ self: { ]; description = "Language-independent type-safe communication"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "twirec"; + broken = true; }) {}; "typed-wire-utils" = callPackage @@ -289522,6 +304744,7 @@ self: { ]; description = "Typed frontend to TensorFlow and higher-order deep learning"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "typedquery" = callPackage @@ -289538,6 +304761,8 @@ self: { ]; description = "Parser for SQL augmented with types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "typehash" = callPackage @@ -289549,6 +304774,8 @@ self: { libraryHaskellDepends = [ base binary bytestring mtl pureMD5 syb ]; description = "Create a unique hash value for a type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "typelet" = callPackage @@ -289579,6 +304806,7 @@ self: { ]; description = "Useful type level operations (type families and related operators)"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "typelevel-rewrite-rules" = callPackage @@ -289595,6 +304823,8 @@ self: { testHaskellDepends = [ base ghc-prim vinyl ]; description = "Solve type equalities using custom type-level rewrite rules"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "typelevel-tensor" = callPackage @@ -289612,6 +304842,8 @@ self: { ]; description = "Tensors whose ranks and dimensions type-inferred and type-checked"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "typelits-printf" = callPackage @@ -289636,6 +304868,8 @@ self: { libraryHaskellDepends = [ base dependent-sum ]; description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "typenums" = callPackage @@ -289679,6 +304913,8 @@ self: { ]; description = "Lens-like interface for type level parameters; allows unboxed unboxed vectors and supercompilation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "typerep-map" = callPackage @@ -289703,6 +304939,8 @@ self: { doHaddock = false; description = "Efficient implementation of a dependent map with types as keys"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "types-compat" = callPackage @@ -289716,6 +304954,8 @@ self: { libraryHaskellDepends = [ base ]; description = "ghc-7.6/7.8 compatible GHC.TypeLits, Data.Typeable and Data.Proxy."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "typesafe-endian" = callPackage @@ -289748,6 +304988,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Type-safe transformations and purifications of PreCures (Japanese Battle Heroine)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "typescript-docs" = callPackage @@ -289767,6 +305008,7 @@ self: { ]; description = "A documentation generator for TypeScript Definition files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "typescript-docs"; }) {}; @@ -289798,7 +305040,9 @@ self: { executableHaskellDepends = [ base gl mtl sdl2 text ]; description = "Just let me draw nice text already"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "typograffiti"; + broken = true; }) {}; "typography-geometry" = callPackage @@ -289836,6 +305080,7 @@ self: { ]; description = "Typson Beam Integration"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "typson-core" = callPackage @@ -289851,6 +305096,8 @@ self: { ]; description = "Type-safe PostgreSQL JSON Querying"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "typson-esqueleto" = callPackage @@ -289875,6 +305122,7 @@ self: { ]; description = "Typson Esqueleto Integration"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "typson-selda" = callPackage @@ -289897,6 +305145,7 @@ self: { ]; description = "Typson Selda Integration"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "typst" = callPackage @@ -289956,6 +305205,8 @@ self: { ]; description = "Type derived JSON parsing using Aeson"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tz" = callPackage @@ -290047,6 +305298,7 @@ self: { testHaskellDepends = [ base bytestring either-unwrap hspec text ]; description = "Haskell Universal Two Factor helper toolbox library thing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "uAgda" = callPackage @@ -290066,7 +305318,9 @@ self: { ]; description = "A simplistic dependently-typed language with parametricity"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "uAgda"; + broken = true; }) {}; "ua-parser" = callPackage @@ -290127,6 +305381,7 @@ self: { testHaskellDepends = [ base hspec text ]; description = "Uber client for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "uberlast" = callPackage @@ -290138,6 +305393,8 @@ self: { libraryHaskellDepends = [ base lens tagged template-haskell ]; description = "Generate overloaded lenses from plain data declaration"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ucam-webauth" = callPackage @@ -290167,6 +305424,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "The Ucam-Webauth protocol, used by Raven"; license = "(BSD-3-Clause OR Apache-2.0)"; + hydraPlatforms = lib.platforms.none; }) {}; "ucam-webauth-types" = callPackage @@ -290188,6 +305446,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Types for the Ucam-Webauth protocol, as used by Raven"; license = "(BSD-3-Clause OR Apache-2.0)"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ucd" = callPackage @@ -290206,6 +305466,7 @@ self: { benchmarkHaskellDepends = [ base gauge ]; description = "Unicode Character Database — Predicates on characters specified by Unicode"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ucl" = callPackage @@ -290220,6 +305481,8 @@ self: { testHaskellDepends = [ base containers ]; description = "Datatype and parser for the Universal Configuration Language (UCL) using libucl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libucl;}; "uconv" = callPackage @@ -290232,6 +305495,8 @@ self: { librarySystemDepends = [ icu ]; description = "String encoding conversion with ICU"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) icu;}; "udbus" = callPackage @@ -290253,6 +305518,8 @@ self: { ]; description = "Small DBus implementation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "udbus-model" = callPackage @@ -290266,6 +305533,7 @@ self: { libraryHaskellDepends = [ base bytestring udbus xml ]; description = "Model API for udbus introspection and definitions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "udcode" = callPackage @@ -290307,6 +305575,8 @@ self: { ]; description = "Simple fire-and-forget conduit UDP wrappers"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "udp-streaming" = callPackage @@ -290320,6 +305590,8 @@ self: { ]; description = "Streaming to and from UDP socket"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ueberzug" = callPackage @@ -290332,6 +305604,8 @@ self: { testHaskellDepends = [ base ]; description = "Haskell bindings for ueberzug to display images in the terminal"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uglymemo" = callPackage @@ -290370,6 +305644,7 @@ self: { ]; description = "Part of UHC packaged as cabal/hackage installable library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "uhc-util" = callPackage @@ -290389,6 +305664,7 @@ self: { ]; description = "UHC utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "uhexdump" = callPackage @@ -290402,7 +305678,9 @@ self: { executableHaskellDepends = [ base bytestring split ]; description = "hex dumper for UTF-8 text"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "uhexdump"; + broken = true; }) {}; "uhttpc" = callPackage @@ -290427,7 +305705,9 @@ self: { ]; description = "Minimal HTTP client library optimized for benchmarking"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "uhttpc-bench"; + broken = true; }) {}; "ui-command" = callPackage @@ -290441,7 +305721,9 @@ self: { libraryHaskellDepends = [ base data-default mtl old-locale time ]; description = "A framework for friendly commandline programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ui-cmd-hello"; + broken = true; }) {}; "uid" = callPackage @@ -290468,6 +305750,7 @@ self: { libraryHaskellDepends = [ base bytestring mmsyn2 mmsyn5 vector ]; description = "A library to work with the basic Ukrainian phonetics and syllable segmentation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "ukrainian-phonetics-basic-array" = callPackage @@ -290498,6 +305781,8 @@ self: { ]; description = "A library to work with the basic Ukrainian phonetics and syllable segmentation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ukrainian-phonetics-common" = callPackage @@ -290569,6 +305854,7 @@ self: { ]; description = "A fast, cache-efficient, concurrent bloom filter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "unagi-chan" = callPackage @@ -290623,6 +305909,8 @@ self: { libraryHaskellDepends = [ base containers mtl ]; description = "Functional concurrency with unamb using a custom scheduler"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unbeliever" = callPackage @@ -290648,6 +305936,8 @@ self: { ]; description = "Opinionated Haskell Interoperability"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unbound" = callPackage @@ -290667,6 +305957,7 @@ self: { ]; description = "Generic support for programming with names and binders"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "unbound-generics" = callPackage @@ -290726,6 +306017,8 @@ self: { libraryHaskellDepends = [ base unbounded-delays units units-defs ]; description = "Thread delays and timeouts using proper time units"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unboxed" = callPackage @@ -290737,6 +306030,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "All the standard sum types but strict and unboxed as possible"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unboxed-containers" = callPackage @@ -290750,6 +306045,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Self-optimizing unboxed sets using view patterns and data families"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unboxed-ref" = callPackage @@ -290776,7 +306073,9 @@ self: { executableHaskellDepends = [ base vector ]; description = "A library for reference cells backed by unboxed-vectors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "unboxing-vector" = callPackage @@ -290819,7 +306118,9 @@ self: { executableHaskellDepends = [ base bytestring cmdargs ]; description = "Secure and resilient remote file storage utility"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "unbreak"; + broken = true; }) {}; "uncaught-exception" = callPackage @@ -290915,6 +306216,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Unfixing and recursion schemes for data types with binders"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unfoldable" = callPackage @@ -290999,6 +306302,7 @@ self: { libraryHaskellDepends = [ base containers uni-util ]; description = "uni events"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "uni-graphs" = callPackage @@ -291014,6 +306318,7 @@ self: { ]; description = "Graphs"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "uni-htk" = callPackage @@ -291030,6 +306335,7 @@ self: { ]; description = "Graphical User Interface for Haskell Programs"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "uni-posixutil" = callPackage @@ -291045,6 +306351,7 @@ self: { ]; description = "Posix utilities for the uniform workbench"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "uni-reactor" = callPackage @@ -291059,6 +306366,7 @@ self: { ]; description = "Reactors for the uniform workbench"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "uni-uDrawGraph" = callPackage @@ -291075,6 +306383,7 @@ self: { ]; description = "Graphs binding"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "uni-util" = callPackage @@ -291091,6 +306400,8 @@ self: { ]; description = "Utilities for the uniform workbench"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unicode" = callPackage @@ -291225,6 +306536,8 @@ self: { ]; description = "Unicode General Category Database"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unicode-names" = callPackage @@ -291250,6 +306563,7 @@ self: { librarySystemDepends = [ icu ]; description = "Unicode normalization using the ICU library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) icu;}; "unicode-prelude" = callPackage @@ -291261,6 +306575,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Unicode notation for some definitions in Prelude"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unicode-properties" = callPackage @@ -291295,6 +306611,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Unicode alternatives for common functions and operators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unicode-transforms" = callPackage @@ -291339,6 +306657,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Functions to work with unicode blocks more convenient"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unicoder" = callPackage @@ -291361,6 +306681,7 @@ self: { testHaskellDepends = [ base text ]; description = "Make writing in unicode easy"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "unicoder"; }) {}; @@ -291492,6 +306813,7 @@ self: { testHaskellDepends = [ attoparsec base bytestring Cabal ]; description = "Uniform IO over files, network, anything"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) openssl;}; "uniform-json" = callPackage @@ -291622,6 +306944,7 @@ self: { libraryHaskellDepends = [ base fsnotify twitch uniformBase ]; description = "uniform wrapper for watch"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "uniform-webserver" = callPackage @@ -291708,6 +307031,8 @@ self: { libraryHaskellDepends = [ base containers transformers ]; description = "Efficient union and equivalence testing of sets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "union-find-array" = callPackage @@ -291730,6 +307055,8 @@ self: { libraryHaskellDepends = [ base containers extensible ]; description = "Heterogeneous map by open unions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unionmount" = callPackage @@ -291794,6 +307121,8 @@ self: { ]; description = "UniProt-KB format parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uniq-deep" = callPackage @@ -291890,6 +307219,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Splittable Unique Identifier Supply"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uniquely-represented-sets" = callPackage @@ -291906,6 +307237,8 @@ self: { ]; benchmarkHaskellDepends = [ base criterion random ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uniqueness-periods" = callPackage @@ -291917,6 +307250,7 @@ self: { libraryHaskellDepends = [ base mmsyn6ukr vector ]; description = "Can be used to produce the 'uniquenessPeriods' function and related functionality"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "uniqueness-periods-general" = callPackage @@ -291928,6 +307262,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Can be used to produce the similar to 'String.Ukrainian.UniquenessPeriods' functions."; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uniqueness-periods-vector" = callPackage @@ -291939,6 +307275,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Generalization of the uniqueness-periods and uniqueness-periods-general packages functionality"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uniqueness-periods-vector-common" = callPackage @@ -291950,6 +307288,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Generalization of the dobutokO-poetry-general package functionality"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uniqueness-periods-vector-examples" = callPackage @@ -291981,6 +307321,7 @@ self: { ]; description = "Usage examples for the uniqueness-periods-vector series of packages"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "uniqueness-periods-vector-filters" = callPackage @@ -291992,6 +307333,7 @@ self: { libraryHaskellDepends = [ base mmsyn2 vector ]; description = "A library allows to change the structure of the 'RealFrac' function output"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "uniqueness-periods-vector-general" = callPackage @@ -292007,6 +307349,7 @@ self: { ]; description = "Some kind of the optimization approach to data inner structure"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "uniqueness-periods-vector-properties" = callPackage @@ -292026,6 +307369,7 @@ self: { ]; description = "Metrices for the maximum element for the uniqueness-periods-vector packages family"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "uniqueness-periods-vector-stats" = callPackage @@ -292093,6 +307437,8 @@ self: { ]; description = "Attoparsec parsers for the units package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "units-defs" = callPackage @@ -292133,6 +307479,8 @@ self: { testHaskellDepends = [ base ]; description = "An extendable library for type-safe computations including units"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unity-testresult-parser" = callPackage @@ -292167,6 +307515,8 @@ self: { libraryHaskellDepends = [ base text transformers ]; description = "A monad type class shared between web services"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unitym-servant" = callPackage @@ -292182,6 +307532,7 @@ self: { ]; description = "Implementaation of unitym for Servant servers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "unitym-yesod" = callPackage @@ -292193,6 +307544,7 @@ self: { libraryHaskellDepends = [ base unitym yesod ]; description = "Implementation of the unity monad for the Yesod framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "universal" = callPackage @@ -292212,6 +307564,7 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Universal"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "universal-binary" = callPackage @@ -292224,6 +307577,8 @@ self: { libraryHaskellDepends = [ base binary bytestring ]; description = "Parser for OS X Universal Binary format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "universe" = callPackage @@ -292240,6 +307595,7 @@ self: { ]; description = "A class for finite and recursively enumerable types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "universe-base" = callPackage @@ -292266,6 +307622,7 @@ self: { libraryHaskellDepends = [ base universe-some ]; description = "Universe instances for types from dependent-sum"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "universe-instances-base" = callPackage @@ -292279,6 +307636,8 @@ self: { libraryHaskellDepends = [ base universe-base ]; description = "Universe instances for types from the base package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "universe-instances-extended" = callPackage @@ -292309,6 +307668,8 @@ self: { libraryHaskellDepends = [ base universe-base ]; description = "Universe instances for types from the transformers and mtl packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "universe-reverse-instances" = callPackage @@ -292341,6 +307702,8 @@ self: { testHaskellDepends = [ base some template-haskell universe-base ]; description = "Universe instances for Some from some"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "universe-th" = callPackage @@ -292363,6 +307726,7 @@ self: { ]; description = "Construct a Dec's ancestor list"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "universum" = callPackage @@ -292465,6 +307829,7 @@ self: { libraryHaskellDepends = [ base foreign-var ]; description = "Comprehensive bindings to fcntl(2)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "unix-handle" = callPackage @@ -292476,6 +307841,8 @@ self: { libraryHaskellDepends = [ base unix ]; description = "POSIX operations on Handles"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unix-io-extra" = callPackage @@ -292525,6 +307892,8 @@ self: { ]; description = "Run processes on Unix systems, with a conduit interface (deprecated)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unix-pty-light" = callPackage @@ -292553,6 +307922,8 @@ self: { benchmarkHaskellDepends = [ base criterion dir-traverse ]; description = "Fast and flexible primitives for recursive file system IO on Posix systems"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unix-simple" = callPackage @@ -292634,6 +308005,8 @@ self: { ]; description = "Typeclass for monads that can be unlifted to arbitrary base monads"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unlift-stm" = callPackage @@ -292648,6 +308021,8 @@ self: { ]; description = "(un)lifted classes and functions for the STM monad"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unlifted" = callPackage @@ -292670,6 +308045,8 @@ self: { libraryHaskellDepends = [ base ghc-prim semigroups ]; description = "GHC Haskell lists of non-thunks (things of kind TYPE 'UnliftedRep)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unliftio" = callPackage @@ -292741,7 +308118,9 @@ self: { ]; description = "Fast and robust message queues for concurrent processes"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "unliftio-messagebox-memleak-test"; + broken = true; }) {}; "unliftio-path" = callPackage @@ -292811,6 +308190,8 @@ self: { ]; description = "A Library for the manipulation of images"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unmed2" = callPackage @@ -292868,6 +308249,8 @@ self: { ]; description = "Rematch support for unordered containers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unordered-graphs" = callPackage @@ -292883,6 +308266,8 @@ self: { ]; description = "Graph library using unordered-containers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unordered-intmap" = callPackage @@ -292899,6 +308284,8 @@ self: { ]; description = "A specialization of `HashMap Int v`"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unpack-funcs" = callPackage @@ -292914,6 +308301,8 @@ self: { ]; description = "Monad transformers that mirror worker-wrapper transformations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unpacked-containers" = callPackage @@ -292944,6 +308333,8 @@ self: { testHaskellDepends = [ base QuickCheck quickcheck-classes ]; description = "An unpacked either data type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unpacked-maybe" = callPackage @@ -292956,6 +308347,8 @@ self: { testHaskellDepends = [ base QuickCheck quickcheck-classes ]; description = "An unpacked maybe data type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unpacked-maybe-numeric" = callPackage @@ -292970,6 +308363,8 @@ self: { testHaskellDepends = [ base QuickCheck quickcheck-classes ]; description = "maybes of numeric values with fewer indirections"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unpacked-maybe-text" = callPackage @@ -292999,6 +308394,7 @@ self: { testHaskellDepends = [ base QuickCheck quickcheck-classes ]; description = "An unpacked these data type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "unpacked-validation" = callPackage @@ -293015,6 +308411,7 @@ self: { testHaskellDepends = [ base QuickCheck quickcheck-classes ]; description = "An unpacked validation data type"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "unparse-attoparsec" = callPackage @@ -293035,6 +308432,7 @@ self: { ]; description = "An attoparsec roundtrip"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "unroll-ghc-plugin" = callPackage @@ -293046,6 +308444,8 @@ self: { libraryHaskellDepends = [ base ghc ]; description = "Compiler plugin for loop unrolling"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unsafe" = callPackage @@ -293083,6 +308483,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Flexible access control for unsafe operations and instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unsafeperformst" = callPackage @@ -293106,6 +308508,8 @@ self: { libraryHaskellDepends = [ base ghc ]; description = "Unsatisfiable type class"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unscramble" = callPackage @@ -293124,6 +308528,7 @@ self: { ]; description = "Solve Boggle-like word games"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "unscramble"; }) {}; @@ -293143,6 +308548,8 @@ self: { ]; description = "An extension removing the sequentiality from monads"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "unusable-pkg" = callPackage @@ -293185,7 +308592,9 @@ self: { testHaskellDepends = [ base containers hspec text ]; description = "A command line tool to identify unused code"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "unused"; + broken = true; }) {}; "unwrapped-functors" = callPackage @@ -293214,6 +308623,8 @@ self: { testHaskellDepends = [ base tasty tasty-hunit ]; description = "Units of measure as a GHC type-checker plugin"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "up" = callPackage @@ -293231,6 +308642,7 @@ self: { ]; description = "Command-line tool to generate paths for moving upward in a file system"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "up"; }) {}; @@ -293346,6 +308758,8 @@ self: { ]; description = "Haskell client for Uploadcare"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uploadtest" = callPackage @@ -293368,6 +308782,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Binding to upskirt"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "urbit-airlock" = callPackage @@ -293384,6 +308800,7 @@ self: { ]; description = "Talk to Urbit from Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "urbit-api" = callPackage @@ -293400,6 +308817,7 @@ self: { ]; description = "Talk to Urbit from Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "urbit-hob" = callPackage @@ -293415,6 +308833,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "Hoon-style atom manipulation and printing functions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ureader" = callPackage @@ -293438,6 +308858,7 @@ self: { ]; description = "Minimalistic CLI RSS reader"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ureader"; }) {}; @@ -293459,6 +308880,7 @@ self: { ]; description = "Ur/Web static content generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "urembed"; }) {}; @@ -293471,6 +308893,8 @@ self: { libraryHaskellDepends = [ base parsec safe utf8-string ]; description = "Library for working with URIs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uri-bytestring" = callPackage @@ -293527,6 +308951,8 @@ self: { ]; description = "Read and write URIs (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uri-encode" = callPackage @@ -293564,6 +308990,8 @@ self: { ]; description = "A uri encoder to make your strings less readable"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uri-enumerator" = callPackage @@ -293580,6 +309008,7 @@ self: { ]; description = "Read and write URIs (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "uri-enumerator-file" = callPackage @@ -293598,6 +309027,7 @@ self: { ]; description = "uri-enumerator backend for the file scheme (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "uri-parse" = callPackage @@ -293614,6 +309044,8 @@ self: { testHaskellDepends = [ base data-default hspec lens ]; description = "A simple library for parsing and generating URIs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uri-template" = callPackage @@ -293628,7 +309060,9 @@ self: { executableHaskellDepends = [ base ]; description = "URI template library for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "main"; + broken = true; }) {}; "uri-templater" = callPackage @@ -293652,6 +309086,8 @@ self: { ]; description = "Parsing & Quasiquoting for RFC 6570 URI Templates"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "url" = callPackage @@ -293686,6 +309122,8 @@ self: { ]; description = "Memory efficient url type and parser"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "url-decoders" = callPackage @@ -293708,6 +309146,8 @@ self: { benchmarkHaskellDepends = [ criterion http-types rerebase ]; description = "Decoders for URL-encoding (aka Percent-encoding)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "url-generic" = callPackage @@ -293721,6 +309161,8 @@ self: { libraryHaskellDepends = [ base mtl syb ]; description = "Parse/format generic key/value URLs from record data types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "url-slug" = callPackage @@ -293753,7 +309195,9 @@ self: { ]; description = "Parallel link checker"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "urlcheck"; + broken = true; }) {}; "urldecode" = callPackage @@ -293767,7 +309211,9 @@ self: { executableHaskellDepends = [ base network ]; description = "Decode percent-encoded strings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "urldecode"; + broken = true; }) {}; "urldisp-happstack" = callPackage @@ -293779,6 +309225,8 @@ self: { libraryHaskellDepends = [ base bytestring happstack-server mtl ]; description = "Simple, declarative, expressive URL routing -- on happstack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "urlencoded" = callPackage @@ -293794,6 +309242,8 @@ self: { testHaskellDepends = [ base network network-uri QuickCheck ]; description = "Generate or process x-www-urlencoded data"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "urlpath" = callPackage @@ -293813,6 +309263,7 @@ self: { ]; description = "Painfully simple URL deployment"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "urn" = callPackage @@ -293825,6 +309276,8 @@ self: { testHaskellDepends = [ base hspec ]; description = "Universal Resource Names"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "urn-random" = callPackage @@ -293841,6 +309294,8 @@ self: { ]; description = "A package for updatable discrete distributions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "urxml" = callPackage @@ -293858,7 +309313,9 @@ self: { ]; description = "XML parser-printer supporting Ur/Web syntax extensions"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "urxml"; + broken = true; }) {}; "usa-holidays" = callPackage @@ -293885,6 +309342,7 @@ self: { ]; description = "Communicate with USB devices"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "usb-enumerator" = callPackage @@ -293901,6 +309359,7 @@ self: { ]; description = "Iteratee enumerators for the usb package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "usb-hid" = callPackage @@ -293914,6 +309373,7 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring usb ]; description = "Parser and request Library for USB HIDs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "usb-id-database" = callPackage @@ -293933,6 +309393,7 @@ self: { ]; description = "A database of USB identifiers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "usb-iteratee" = callPackage @@ -293949,6 +309410,7 @@ self: { ]; description = "Iteratee enumerators for the usb package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "usb-safe" = callPackage @@ -293965,6 +309427,7 @@ self: { ]; description = "Type-safe communication with USB devices"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "useragents" = callPackage @@ -293979,7 +309442,9 @@ self: { executableHaskellDepends = [ base random-fu text ]; description = "A collection of user agents"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "random-user-agent"; + broken = true; }) {}; "userid" = callPackage @@ -293995,6 +309460,8 @@ self: { ]; description = "The UserId type and useful instances for web development"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "users" = callPackage @@ -294029,6 +309496,7 @@ self: { ]; description = "A mysql-haskell backend for the users library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "users-persistent" = callPackage @@ -294049,6 +309517,8 @@ self: { ]; description = "A persistent backend for the users package"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "users-postgresql-simple" = callPackage @@ -294096,7 +309566,9 @@ self: { ]; description = "A pragmatic time and date library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.sternenseemann ]; + broken = true; }) {}; "utf" = callPackage @@ -294110,6 +309582,7 @@ self: { benchmarkHaskellDepends = [ base gauge ]; description = "UTF-8"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "utf8-conversions" = callPackage @@ -294128,6 +309601,8 @@ self: { ]; description = "A string conversion library that assumes utf8"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "utf8-env" = callPackage @@ -294167,7 +309642,9 @@ self: { libraryHaskellDepends = [ base utf8-string ]; description = "Variants of Prelude and System.IO with UTF8 text I/O operations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "utf8-test"; + broken = true; }) {}; "utf8-string" = callPackage @@ -294197,6 +309674,8 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "Constant-space UTF8 validator for ByteStrings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "util" = callPackage @@ -294210,6 +309689,8 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "util-exception" = callPackage @@ -294223,6 +309704,7 @@ self: { libraryHaskellDepends = [ base basic control lifted-base-tf util ]; description = "Exceptional utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "util-logict" = callPackage @@ -294236,6 +309718,8 @@ self: { benchmarkHaskellDepends = [ base gauge logict ]; description = "See README for more info"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "util-plus" = callPackage @@ -294252,6 +309736,8 @@ self: { testHaskellDepends = [ base containers HTF QuickCheck ]; description = "A collection of commonly used utils"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "util-primitive" = callPackage @@ -294265,6 +309751,8 @@ self: { libraryHaskellDepends = [ base primitive ]; description = "Primitive memory-related utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "util-primitive-control" = callPackage @@ -294281,6 +309769,7 @@ self: { testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; description = "Utilities for stateful primitive types and types based on them"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "util-universe" = callPackage @@ -294299,6 +309788,7 @@ self: { testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; description = "Utilities for universal types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "utility-ht" = callPackage @@ -294327,6 +309817,8 @@ self: { libraryHaskellDepends = [ ansi-terminal base ]; description = "Utilities for compiler construction: core functionality"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uu-cco-examples" = callPackage @@ -294340,6 +309832,7 @@ self: { executableHaskellDepends = [ base uu-cco uuagc uuagc-cabal ]; description = "Utilities for compiler construction: example programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "uu-cco-hut-parsing" = callPackage @@ -294351,6 +309844,7 @@ self: { libraryHaskellDepends = [ base uu-cco uulib ]; description = "Utilities for compiler construction: Feedback wrapper around parser in uulib"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "uu-cco-uu-parsinglib" = callPackage @@ -294362,6 +309856,7 @@ self: { libraryHaskellDepends = [ base ListLike uu-cco uu-parsinglib ]; description = "Utilities for compiler construction: Feedback wrapper around parser in uu-parsinglib"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "uu-interleaved" = callPackage @@ -294393,6 +309888,7 @@ self: { ]; description = "Parse command line options using uu-interleave and uu-parsinglib"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "uu-parsinglib" = callPackage @@ -294461,7 +309957,9 @@ self: { ]; description = "Attribute Grammar System of Universiteit Utrecht"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "uuagc-bootstrap"; + broken = true; }) {}; "uuagc-cabal" = callPackage @@ -294488,6 +309986,8 @@ self: { libraryHaskellDepends = [ base diagrams-lib SVGFonts ]; description = "Utility for drawing attribute grammar pictures with the diagrams package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uuagd" = callPackage @@ -294540,6 +310040,8 @@ self: { libraryHaskellDepends = [ aeson base text uuid ]; description = "Aeson types for UUID instances"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uuid-bytes" = callPackage @@ -294578,6 +310080,7 @@ self: { ]; description = "Reversable and secure encoding of object ids as uuids"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "uuid-le" = callPackage @@ -294664,7 +310167,9 @@ self: { testHaskellDepends = [ base Cabal HUnit text ]; description = "Tweak .cabal files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.berberman ]; + broken = true; }) {}; "uvector" = callPackage @@ -294678,6 +310183,8 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Fast unboxed arrays with a flexible interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uvector-algorithms" = callPackage @@ -294689,6 +310196,7 @@ self: { libraryHaskellDepends = [ base uvector ]; description = "Efficient algorithms for uvector unboxed arrays"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "uxadt" = callPackage @@ -294700,6 +310208,8 @@ self: { libraryHaskellDepends = [ base json MissingH mtl ]; description = "Cross-language extensible representation for algebraic data type instances"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "uzbl-with-source" = callPackage @@ -294727,6 +310237,7 @@ self: { ]; description = "interface to Video For Linux Two (V4L2)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "v4l2-examples" = callPackage @@ -294740,6 +310251,7 @@ self: { executableHaskellDepends = [ base GLUT v4l2 ]; description = "video for linux two examples"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vabal" = callPackage @@ -294761,6 +310273,7 @@ self: { testHaskellDepends = [ base process ]; description = "the cabal companion"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "vabal"; }) {}; @@ -294779,6 +310292,8 @@ self: { testHaskellDepends = [ base Cabal containers ]; description = "Core algorithms and datatypes used by vabal"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vacuum" = callPackage @@ -294790,6 +310305,8 @@ self: { libraryHaskellDepends = [ array base containers ghc-prim ]; description = "Graph representation of the GHC heap"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vacuum-cairo" = callPackage @@ -294806,6 +310323,7 @@ self: { ]; description = "Visualize live Haskell data structures using vacuum, graphviz and cairo"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vacuum-graphviz" = callPackage @@ -294817,6 +310335,7 @@ self: { libraryHaskellDepends = [ base filepath graphviz vacuum ]; description = "A library for transforming vacuum graphs into GraphViz output"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "vacuum-opengl" = callPackage @@ -294836,6 +310355,7 @@ self: { ]; description = "Visualize live Haskell data structures using vacuum, graphviz and OpenGL"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; mainProgram = "vacuum-opengl-server"; }) {}; @@ -294848,6 +310368,7 @@ self: { libraryHaskellDepends = [ base containers hubigraph vacuum ]; description = "Visualize Haskell data structures using vacuum and Ubigraph"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vado" = callPackage @@ -294871,6 +310392,8 @@ self: { ]; description = "Runs commands on remote machines using ssh"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "valid" = callPackage @@ -294882,6 +310405,7 @@ self: { libraryHaskellDepends = [ base util ]; description = "Type isomorphic to `Either` with `Applicative` instance which combines errors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "valid-names" = callPackage @@ -294893,6 +310417,8 @@ self: { libraryHaskellDepends = [ base containers MonadRandom ]; description = "Valid operator/module characters"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "valida" = callPackage @@ -294985,6 +310511,8 @@ self: { testHaskellDepends = [ base ]; description = "Type-level constraints on strings and other input"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "validation" = callPackage @@ -295053,6 +310581,8 @@ self: { ]; description = "A nice way to define field validations in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "validationt" = callPackage @@ -295083,6 +310613,8 @@ self: { testHaskellDepends = [ base containers doctest Glob hspec text ]; description = "Composable validations for your Haskell data types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "validity" = callPackage @@ -295161,6 +310693,8 @@ self: { libraryHaskellDepends = [ base network-uri validity ]; description = "Validity instances for URI"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "validity-path" = callPackage @@ -295293,6 +310827,8 @@ self: { libraryHaskellDepends = [ base ]; description = "A library for generating values without having to thread state"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vampire" = callPackage @@ -295315,7 +310851,9 @@ self: { ]; description = "Analyze and visualize expression trees"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "vampire"; + broken = true; }) {}; "var" = callPackage @@ -295333,6 +310871,8 @@ self: { benchmarkHaskellDepends = [ array base criterion deepseq ]; description = "Mutable variables and tuples"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "var-monad" = callPackage @@ -295362,6 +310902,8 @@ self: { ]; description = "Process mpileup output to identify significant differences"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "variable-media-field" = callPackage @@ -295373,6 +310915,8 @@ self: { libraryHaskellDepends = [ base text ]; description = "Simple type for representing one of several media types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "variable-media-field-dhall" = callPackage @@ -295384,6 +310928,7 @@ self: { libraryHaskellDepends = [ base dhall variable-media-field ]; description = "Dhall instances for VF"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "variable-media-field-optics" = callPackage @@ -295395,6 +310940,7 @@ self: { libraryHaskellDepends = [ base optics-th variable-media-field ]; description = "Optics for variable-media-field"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "variable-precision" = callPackage @@ -295411,6 +310957,7 @@ self: { ]; description = "variable-precision floating point"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "variables" = callPackage @@ -295423,6 +310970,8 @@ self: { testHaskellDepends = [ base hspec mtl QuickCheck stm ]; description = "Monads with variables, without deep magic"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "variadic" = callPackage @@ -295440,6 +310989,8 @@ self: { benchmarkHaskellDepends = [ base criterion mmorph mtl ]; description = "Abstractions for working with variadic functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "variadic-function" = callPackage @@ -295466,6 +311017,8 @@ self: { ]; description = "nominal value with possible variations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "varying" = callPackage @@ -295523,6 +311076,8 @@ self: { ]; description = "Client library for HashiCorp's Vault tool (via HTTP API)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vault-tool-server" = callPackage @@ -295542,6 +311097,7 @@ self: { ]; description = "Utility library for spawning a HashiCorp Vault process"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "vault-trans" = callPackage @@ -295558,6 +311114,7 @@ self: { ]; description = "A monad transformer for vault-tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vaultaire-common" = callPackage @@ -295581,6 +311138,7 @@ self: { ]; description = "Common types and instances for Vaultaire"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vcache" = callPackage @@ -295597,6 +311155,8 @@ self: { ]; description = "semi-transparent persistence for Haskell using LMDB, STM"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vcache-trie" = callPackage @@ -295612,6 +311172,7 @@ self: { ]; description = "patricia tries modeled above VCache"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vcard" = callPackage @@ -295625,6 +311186,7 @@ self: { ]; description = "A library for parsing/printing vCards from/to various formats"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; }) {}; "vcatt" = callPackage @@ -295639,7 +311201,9 @@ self: { executableHaskellDepends = [ base shelly text ]; description = "Recursively check that a directory is under version control"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "vcatt"; + broken = true; }) {}; "vcd" = callPackage @@ -295667,6 +311231,8 @@ self: { ]; description = "A package to parse VCF files inspired in similar python libraries"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vcs-ignore" = callPackage @@ -295738,6 +311304,7 @@ self: { ]; description = "GUI library for source code management systems"; license = "GPL"; + hydraPlatforms = lib.platforms.none; }) {}; "vcswrapper" = callPackage @@ -295761,7 +311328,9 @@ self: { ]; description = "Wrapper for source code management systems"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "vcswrapper"; + broken = true; }) {}; "vec" = callPackage @@ -295832,6 +311401,8 @@ self: { libraryHaskellDepends = [ base random ]; description = "A low-dimensional linear algebra library, operating on the Floating typeclass"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vect-floating-accelerate" = callPackage @@ -295845,6 +311416,7 @@ self: { libraryHaskellDepends = [ accelerate base vect-floating ]; description = "Accelerate instances for vect-floating types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vect-opengl" = callPackage @@ -295856,6 +311428,8 @@ self: { libraryHaskellDepends = [ base OpenGL vect ]; description = "OpenGL support for the `vect' low-dimensional linear algebra library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vector" = callPackage @@ -295988,6 +311562,8 @@ self: { testHaskellDepends = [ base directory QuickCheck random ]; description = "ByteStrings as type synonyms of Storable Vectors of Word8s"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vector-circular" = callPackage @@ -296006,6 +311582,8 @@ self: { testHaskellDepends = [ base hedgehog hedgehog-classes ]; description = "circular vectors"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vector-clock" = callPackage @@ -296025,6 +311603,8 @@ self: { ]; description = "Vector clocks for versioning message flows"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vector-conduit" = callPackage @@ -296043,6 +311623,8 @@ self: { ]; description = "Conduit utilities for vectors"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vector-doublezip" = callPackage @@ -296054,6 +311636,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "Some special functions to work with Vector (with zip)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vector-endian" = callPackage @@ -296068,6 +311652,8 @@ self: { doHaddock = false; description = "Storable vectors with cpu-independent representation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vector-extras" = callPackage @@ -296113,6 +311699,8 @@ self: { ]; description = "A binding to the fftw library for one-dimensional vectors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) fftw;}; "vector-functorlazy" = callPackage @@ -296127,6 +311715,8 @@ self: { ]; description = "vectors that perform the fmap operation in constant time"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vector-hashtables" = callPackage @@ -296160,6 +311750,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "A type-safe library for vectors whose elements can be of any type, or any type satisfying some constraints"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vector-instances" = callPackage @@ -296188,6 +311780,7 @@ self: { ]; description = "Instances of the Data.Collections classes for Data.Vector.*"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vector-mmap" = callPackage @@ -296242,6 +311835,8 @@ self: { libraryHaskellDepends = [ base mersenne-random-pure64 vector ]; description = "Generate vectors filled with high quality pseudorandom numbers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vector-read-instances" = callPackage @@ -296253,6 +311848,8 @@ self: { libraryHaskellDepends = [ base vector ]; description = "(deprecated) Read instances for 'Data.Vector'"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vector-rotcev" = callPackage @@ -296276,6 +311873,8 @@ self: { libraryHaskellDepends = [ base random vector ]; description = "Algorithms for vector shuffling"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vector-sized" = callPackage @@ -296319,6 +311918,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "vector-space operations for finite maps using Data.Map"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vector-space-opengl" = callPackage @@ -296336,6 +311937,8 @@ self: { ]; description = "Instances of vector-space classes for OpenGL types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vector-space-points" = callPackage @@ -296349,6 +311952,8 @@ self: { libraryHaskellDepends = [ base vector-space ]; description = "A type for points, as distinct from vectors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vector-split" = callPackage @@ -296376,6 +311981,8 @@ self: { libraryHaskellDepends = [ base primitive vector ]; description = "Statically checked sizes on Data.Vector"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vector-strategies" = callPackage @@ -296415,6 +312022,7 @@ self: { ]; description = "Text implementation based on unboxed char vector"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "vector-th-unbox" = callPackage @@ -296456,6 +312064,7 @@ self: { ]; description = "GIS Vector Tiles, as defined by Mapbox"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vega-view" = callPackage @@ -296475,7 +312084,9 @@ self: { ]; description = "Easily view Vega or Vega-Lite visualizations"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "vegaview"; + broken = true; }) {}; "velma" = callPackage @@ -296495,7 +312106,9 @@ self: { testHaskellDepends = [ base Cabal filepath hspec text ]; description = "Automatically add files to exposed-modules and other-modules"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "velma"; + broken = true; }) {}; "venzone" = callPackage @@ -296524,6 +312137,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "ASCII platform-adventure game"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "venzone"; }) {}; @@ -296536,6 +312150,8 @@ self: { libraryHaskellDepends = [ base regex-pcre ]; description = "Regular expressions made easy"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "verbosity" = callPackage @@ -296568,7 +312184,9 @@ self: { testHaskellDepends = [ base hspec ]; description = "Validation framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tutorial"; + broken = true; }) {}; "verdict-json" = callPackage @@ -296589,6 +312207,7 @@ self: { ]; description = "JSON instances and JSON Schema for verdict"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "verifiable-expressions" = callPackage @@ -296607,6 +312226,7 @@ self: { description = "An intermediate language for Hoare logic style verification"; license = lib.licenses.asl20; badPlatforms = [ "aarch64-linux" ]; + hydraPlatforms = lib.platforms.none; }) {}; "verify" = callPackage @@ -296629,7 +312249,9 @@ self: { ]; description = "A new Haskeleton package"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; mainProgram = "verify"; + broken = true; }) {}; "verilog" = callPackage @@ -296642,6 +312264,8 @@ self: { libraryToolDepends = [ alex happy ]; description = "Verilog preprocessor, parser, and AST"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "verismith" = callPackage @@ -296678,6 +312302,7 @@ self: { benchmarkHaskellDepends = [ base criterion lens ]; description = "Random verilog generation and simulator testing"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "verismith"; }) {}; @@ -296730,6 +312355,8 @@ self: { testHaskellDepends = [ aeson base bytestring hspec ]; description = "Type-safe data versioning"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "versioning-servant" = callPackage @@ -296750,6 +312377,7 @@ self: { ]; description = "Servant combinators for the versioning library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "versions" = callPackage @@ -296797,6 +312425,7 @@ self: { doHaddock = false; description = "Functor-parametric containers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vflow-types" = callPackage @@ -296817,6 +312446,7 @@ self: { ]; description = "types for ingesting vflow data with aeson"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vformat" = callPackage @@ -296837,6 +312467,8 @@ self: { ]; description = "A Python str.format() like formatter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vformat-aeson" = callPackage @@ -296859,6 +312491,7 @@ self: { ]; description = "Extend vformat to Aeson datatypes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vformat-time" = callPackage @@ -296873,6 +312506,7 @@ self: { testHaskellDepends = [ base time vformat ]; description = "Extend vformat to time datatypes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vfr-waypoints" = callPackage @@ -296894,6 +312528,7 @@ self: { ]; description = "VFR waypoints, as published in the AIP (ERSA)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "vfr-waypoints"; }) {}; @@ -296928,7 +312563,9 @@ self: { ]; description = "A pager for grep"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "vgrep"; + broken = true; }) {}; "vhd" = callPackage @@ -296954,6 +312591,8 @@ self: { ]; description = "Provides functions to inspect and manipulate virtual hard disk (VHD) files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vhdl" = callPackage @@ -296965,6 +312604,8 @@ self: { libraryHaskellDepends = [ base mtl pretty regex-posix ]; description = "VHDL AST and pretty printer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vicinity" = callPackage @@ -296980,6 +312621,8 @@ self: { base containers doctest QuickCheck quickcheck-classes ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "viewprof" = callPackage @@ -296998,7 +312641,9 @@ self: { ]; description = "Text-based interactive GHC .prof viewer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "viewprof"; + broken = true; }) {}; "views" = callPackage @@ -297010,6 +312655,8 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Views allow you to run a State monad on part of a state"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vigilance" = callPackage @@ -297050,6 +312697,7 @@ self: { ]; description = "An extensible dead-man's switch system"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "vimeta" = callPackage @@ -297076,6 +312724,7 @@ self: { ]; description = "Frontend for video metadata tagging tools"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "vimeta"; }) {}; @@ -297106,7 +312755,9 @@ self: { ]; description = "An MPD client with vim-like key bindings"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "vimus"; + broken = true; }) {inherit (pkgs) ncurses;}; "vintage-basic" = callPackage @@ -297127,7 +312778,9 @@ self: { testHaskellDepends = [ base ]; description = "Interpreter for microcomputer-era BASIC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "vintbas"; + broken = true; }) {}; "vinyl" = callPackage @@ -297167,6 +312820,7 @@ self: { ]; description = "Convert plain records to vinyl (and vice versa), generically"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vinyl-gl" = callPackage @@ -297204,6 +312858,8 @@ self: { testHaskellDepends = [ base hlint ]; description = "Provide json instances automagically to vinyl types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vinyl-loeb" = callPackage @@ -297226,6 +312882,8 @@ self: { libraryHaskellDepends = [ base vinyl ]; description = "Syntax sugar for vinyl records using overloaded labels"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vinyl-operational" = callPackage @@ -297240,6 +312898,7 @@ self: { ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vinyl-plus" = callPackage @@ -297259,6 +312918,8 @@ self: { testHaskellDepends = [ base doctest vinyl ]; description = "Vinyl records utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vinyl-utils" = callPackage @@ -297270,6 +312931,8 @@ self: { libraryHaskellDepends = [ base contravariant transformers vinyl ]; description = "Utilities for vinyl"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vinyl-vectors" = callPackage @@ -297288,6 +312951,8 @@ self: { ]; description = "Vectors for vinyl vectors"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "virthualenv" = callPackage @@ -297307,7 +312972,9 @@ self: { ]; description = "Virtual Haskell Environment builder"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "virthualenv"; + broken = true; }) {}; "visibility" = callPackage @@ -297319,6 +312986,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Simple computation of visibility polygons"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vision" = callPackage @@ -297340,6 +313009,7 @@ self: { ]; description = "An XMMS2 client"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "vision"; }) {}; @@ -297368,6 +313038,7 @@ self: { ]; description = "Visualize the graph-rewrite steps of a Haskell program"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "visual-graphrewrite"; }) {}; @@ -297387,7 +313058,9 @@ self: { ]; description = "Create a visual profile of a program's source code"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "visual-prof"; + broken = true; }) {}; "visualize-cbn" = callPackage @@ -297421,6 +313094,8 @@ self: { libraryHaskellDepends = [ base mtl profunctors ]; description = "Profunctor optics via the profunctor representation theorem"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vivid" = callPackage @@ -297489,6 +313164,8 @@ self: { ]; description = "Amazon Route53 DNS service plugin for the aws package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vk-posix-pty" = callPackage @@ -297528,6 +313205,7 @@ self: { libraryHaskellDepends = [ base random vector vector-fftw ]; description = "Phase vocoder"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "vocoder-audio" = callPackage @@ -297546,6 +313224,7 @@ self: { ]; description = "Phase vocoder for conduit-audio"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "vocoder-conduit" = callPackage @@ -297567,6 +313246,7 @@ self: { ]; description = "Phase vocoder for Conduit"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "vocoder-dunai" = callPackage @@ -297588,6 +313268,7 @@ self: { ]; description = "Phase vocoder for Dunai and Rhine"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "voicebase" = callPackage @@ -297612,6 +313293,7 @@ self: { testHaskellDepends = [ aeson base hspec roundtrip-aeson ]; description = "Upload audio files to voicebase to get a transcription"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "voicebase"; }) {}; @@ -297638,6 +313320,7 @@ self: { ]; description = "Reading of Vorbis comments from Ogg Vorbis files"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "vowpal-utils" = callPackage @@ -297649,6 +313332,8 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Vowpal Wabbit utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "voyeur" = callPackage @@ -297660,6 +313345,8 @@ self: { libraryHaskellDepends = [ base bytestring process utf8-string ]; description = "Haskell bindings for libvoyeur"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vp-tree" = callPackage @@ -297700,6 +313387,7 @@ self: { testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; description = "Priority queue based on vector"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vrpn" = callPackage @@ -297742,6 +313430,8 @@ self: { ]; description = "Vector and Text utilities"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vte" = callPackage @@ -297759,6 +313449,8 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the VTE library"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) vte;}; "vtegtk3" = callPackage @@ -297776,6 +313468,8 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the VTE library"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) vte;}; "vty_5_35_1" = callPackage @@ -297858,6 +313552,8 @@ self: { ]; description = "Examples programs using the vty library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "vty-menu" = callPackage @@ -297871,7 +313567,9 @@ self: { libraryHaskellDepends = [ base vty ]; description = "A lib for displaying a menu and getting a selection using VTY"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "vty-menu"; + broken = true; }) {}; "vty-ui" = callPackage @@ -297893,7 +313591,9 @@ self: { executableHaskellDepends = [ base QuickCheck random text vty ]; description = "An interactive terminal user interface library for Vty"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "vty-ui-tests"; + broken = true; }) {}; "vty-ui-extras" = callPackage @@ -297905,6 +313605,7 @@ self: { libraryHaskellDepends = [ base regex-base regex-pcre vty vty-ui ]; description = "Extra vty-ui functionality not included in the core library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "vulkan" = callPackage @@ -298000,6 +313701,7 @@ self: { ]; description = "JSON wrangling"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wacom-daemon" = callPackage @@ -298023,6 +313725,8 @@ self: { ]; description = "Manage Wacom tablet settings profiles, including Intuos Pro ring modes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "waddle" = callPackage @@ -298045,6 +313749,8 @@ self: { ]; description = "DOOM WAD file utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wahsp" = callPackage @@ -298065,6 +313771,7 @@ self: { ]; description = "A haskell binding of the Web Audio API ala blank-canvas"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wai" = callPackage @@ -298265,6 +313972,7 @@ self: { testHaskellDepends = [ base hspec stm ]; description = "A web server for the development of WAI compliant web applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "wai-devel"; }) {}; @@ -298293,6 +314001,7 @@ self: { libraryHaskellDepends = [ base text wai yesod-routes ]; description = "Nice wrapper around yesod-routes for use with WAI"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "wai-enforce-https" = callPackage @@ -298429,6 +314138,8 @@ self: { ]; description = "Git http-backend CGI App of WAI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-graceful" = callPackage @@ -298440,6 +314151,8 @@ self: { libraryHaskellDepends = [ base http-types mtl resourcet unix wai ]; description = "Graceful shutdown for WAI applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-handler-devel" = callPackage @@ -298460,6 +314173,8 @@ self: { executableHaskellDepends = [ cmdargs ]; description = "WAI server that automatically reloads code after modification. (deprecated)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-handler-fastcgi" = callPackage @@ -298472,6 +314187,8 @@ self: { librarySystemDepends = [ fcgi ]; description = "Wai handler to fastcgi"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) fcgi;}; "wai-handler-hal" = callPackage @@ -298496,6 +314213,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "Wrap WAI applications to run on AWS Lambda"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wai-handler-launch" = callPackage @@ -298523,6 +314241,8 @@ self: { libraryHaskellDepends = [ base bytestring wai wai-extra ]; description = "Wai handler to SCGI (deprecated)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-handler-snap" = callPackage @@ -298539,6 +314259,7 @@ self: { ]; description = "Web Application Interface handler using snap-server. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wai-handler-webkit" = callPackage @@ -298551,6 +314272,8 @@ self: { libraryPkgconfigDepends = [ QtWebKit ]; description = "Turn WAI applications into standalone GUIs using QtWebkit"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {QtWebKit = null;}; "wai-hastache" = callPackage @@ -298566,6 +314289,7 @@ self: { ]; description = "Nice wrapper around hastache for use with WAI"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "wai-hmac-auth" = callPackage @@ -298588,6 +314312,8 @@ self: { ]; description = "hmac authentication tools for WAI apps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-http2-extra" = callPackage @@ -298645,6 +314371,8 @@ self: { ]; description = "Lenses for WAI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-lite" = callPackage @@ -298660,6 +314388,8 @@ self: { ]; description = "DEPCRECATED (use package \"simple\" instead) A minimalist web framework for WAI web applications"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-log" = callPackage @@ -298716,7 +314446,9 @@ self: { ]; description = "Buffer requets before logging them"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "wai-logger-prefork" = callPackage @@ -298733,6 +314465,8 @@ self: { ]; description = "A logging system for preforked WAI apps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-make-assets" = callPackage @@ -298802,7 +314536,9 @@ self: { ]; description = "Authentication middleware that secures WAI application"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "wai-auth"; + broken = true; }) {}; "wai-middleware-bearer" = callPackage @@ -298845,6 +314581,7 @@ self: { ]; description = "WAI middleware for brotli compression"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "wai-middleware-brotli-server"; }) {}; @@ -298867,6 +314604,7 @@ self: { ]; description = "Caching middleware for WAI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wai-middleware-cache-redis" = callPackage @@ -298885,6 +314623,7 @@ self: { ]; description = "Redis backend for wai-middleware-cache"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wai-middleware-caching" = callPackage @@ -298947,6 +314686,8 @@ self: { ]; description = "Wai error catching middleware"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-middleware-clacks" = callPackage @@ -298990,6 +314731,7 @@ self: { ]; description = "Wai Middleware for Consul"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "wai-middleware-content-type" = callPackage @@ -299022,6 +314764,7 @@ self: { ]; description = "Route to different middlewares based on the incoming Accept header"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wai-middleware-crowd" = callPackage @@ -299053,7 +314796,9 @@ self: { ]; description = "Middleware and utilities for using Atlassian Crowd authentication"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "wai-crowd"; + broken = true; }) {}; "wai-middleware-delegate" = callPackage @@ -299081,6 +314826,8 @@ self: { ]; description = "WAI middleware that delegates handling of requests"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-middleware-delegate_0_1_4_0" = callPackage @@ -299111,6 +314858,7 @@ self: { description = "WAI middleware that delegates handling of requests"; license = lib.licenses.bsd3; hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-middleware-etag" = callPackage @@ -299128,6 +314876,8 @@ self: { ]; description = "WAI ETag middleware for static files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-middleware-gunzip" = callPackage @@ -299154,6 +314904,8 @@ self: { libraryHaskellDepends = [ base bytestring http-types wai ]; description = "cors and addHeaders for WAI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-middleware-hmac" = callPackage @@ -299196,6 +314948,8 @@ self: { ]; description = "WAI HMAC Authentication Middleware Client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-middleware-json-errors" = callPackage @@ -299254,6 +315008,8 @@ self: { ]; description = "WAI middleware for preprocessing static files"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-middleware-prometheus" = callPackage @@ -299287,6 +315043,7 @@ self: { ]; description = "Middleware that communicates to Rollbar"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wai-middleware-route" = callPackage @@ -299307,6 +315064,7 @@ self: { ]; description = "Wai dispatch middleware"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wai-middleware-slack-verify" = callPackage @@ -299373,6 +315131,8 @@ self: { ]; description = "WAI middleware that serves requests to static files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-middleware-static-embedded" = callPackage @@ -299432,6 +315192,8 @@ self: { ]; description = "WAI middleware for authenticating webhook payloads from Travis CI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-middleware-validation" = callPackage @@ -299453,6 +315215,7 @@ self: { ]; description = "WAI Middleware to validate the request and response bodies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wai-middleware-verbs" = callPackage @@ -299472,6 +315235,7 @@ self: { ]; description = "Route Wai middlewares based on HTTP verbs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wai-predicates" = callPackage @@ -299494,6 +315258,7 @@ self: { ]; description = "WAI request predicates"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "wai-problem-details" = callPackage @@ -299514,6 +315279,8 @@ self: { ]; description = "Problem details middleware for WAI"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-rate-limit" = callPackage @@ -299546,6 +315313,8 @@ self: { ]; description = "See README for more info"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-rate-limit-redis" = callPackage @@ -299563,6 +315332,8 @@ self: { ]; description = "Redis backend for rate limiting as WAI middleware"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-request-spec" = callPackage @@ -299581,6 +315352,8 @@ self: { ]; description = "Declarative request parsing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-responsible" = callPackage @@ -299592,6 +315365,8 @@ self: { libraryHaskellDepends = [ base bytestring http-types wai ]; description = "Response interface for WAI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-route" = callPackage @@ -299614,6 +315389,7 @@ self: { ]; description = "WAI middleware for path-based request routing with captures"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "wai-router" = callPackage @@ -299625,6 +315401,8 @@ self: { libraryHaskellDepends = [ base text wai ]; description = "Provides basic routing on URL paths for WAI"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-routes" = callPackage @@ -299649,6 +315427,8 @@ self: { ]; description = "Typesafe URLs for Wai applications"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-routing" = callPackage @@ -299675,6 +315455,7 @@ self: { ]; description = "Declarative routing for WAI"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "wai-saml2" = callPackage @@ -299701,6 +315482,8 @@ self: { ]; description = "SAML2 assertion validation as WAI middleware"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-secure-cookies" = callPackage @@ -299723,7 +315506,9 @@ self: { wai-extra ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "waicookie-genkey"; + broken = true; }) {}; "wai-session" = callPackage @@ -299757,6 +315542,7 @@ self: { ]; description = "An alternative session middleware for WAI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wai-session-clientsession" = callPackage @@ -299793,6 +315579,8 @@ self: { ]; description = "MySQL backed Wai session store"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-session-postgresql" = callPackage @@ -299815,6 +315603,8 @@ self: { ]; description = "PostgreSQL backed Wai session store"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-session-redis" = callPackage @@ -299840,7 +315630,9 @@ self: { ]; description = "Simple Redis backed wai-session backend"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "wai-session-redis-example-exe"; + broken = true; }) {}; "wai-session-tokyocabinet" = callPackage @@ -299857,6 +315649,7 @@ self: { ]; description = "Session store based on Tokyo Cabinet"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "wai-slack-middleware" = callPackage @@ -299888,6 +315681,8 @@ self: { ]; description = "A simple cache for serving static files in a WAI middleware"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-static-pages" = callPackage @@ -299931,6 +315726,7 @@ self: { ]; description = "Thrift transport layer for Wai"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "wai-throttler" = callPackage @@ -299946,6 +315742,8 @@ self: { ]; description = "Wai middleware for request throttling"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wai-token-bucket-ratelimiter" = callPackage @@ -299983,6 +315781,7 @@ self: { transformers wai wai-websockets websockets ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wai-util" = callPackage @@ -300046,6 +315845,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "A wrapping library for waitfree computation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "waitra" = callPackage @@ -300070,6 +315871,8 @@ self: { ]; description = "A very simple Wai router"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wakame" = callPackage @@ -300088,6 +315891,8 @@ self: { testToolDepends = [ tasty-discover ]; description = "Functions to manipulate records"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "waldo" = callPackage @@ -300120,6 +315925,7 @@ self: { ]; description = "A generator of comics based on some ascertainable data about the requester"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wallpaper" = callPackage @@ -300141,6 +315947,8 @@ self: { testHaskellDepends = [ base ]; description = "A library and executable for creating wallpaper, frieze, and rosette patterns"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "warc" = callPackage @@ -300167,7 +315975,9 @@ self: { ]; description = "A parser for the Web Archive (WARC) format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "warc-export"; + broken = true; }) {}; "warp" = callPackage @@ -300253,7 +316063,9 @@ self: { executableHaskellDepends = [ base ]; description = "Dynamic configurable warp HTTP server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "warpd"; + broken = true; }) {}; "warp-grpc" = callPackage @@ -300271,6 +316083,7 @@ self: { ]; description = "A minimal gRPC server on top of Warp"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "warp-quic" = callPackage @@ -300284,6 +316097,7 @@ self: { ]; description = "Warp based on QUIC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "warp-static" = callPackage @@ -300304,7 +316118,9 @@ self: { ]; description = "Static file server based on Warp and wai-app-static (deprecated)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "warp"; + broken = true; }) {}; "warp-systemd" = callPackage @@ -300321,7 +316137,9 @@ self: { executableHaskellDepends = [ base http-types wai warp ]; description = "Socket activation and other systemd integration for the Warp web server (WAI)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "warp-systemd-example"; + broken = true; }) {}; "warp-tls" = callPackage @@ -300396,6 +316214,7 @@ self: { ]; description = "Warp and Wai Library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "wasm" = callPackage @@ -300417,6 +316236,8 @@ self: { ]; description = "WebAssembly Language Toolkit and Interpreter"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "watchdog" = callPackage @@ -300444,6 +316265,8 @@ self: { ]; description = "Opinionated filesystem watcher"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "watchit" = callPackage @@ -300472,7 +316295,9 @@ self: { ]; description = "File change watching utility"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "watchit"; + broken = true; }) {}; "wavconvert" = callPackage @@ -300524,6 +316349,8 @@ self: { ]; description = "Wavefront OBJ loader"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wavefront-obj" = callPackage @@ -300542,6 +316369,8 @@ self: { testHaskellDepends = [ base hspec linear ]; description = "Wavefront .obj file loader"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wavesurfer" = callPackage @@ -300558,6 +316387,7 @@ self: { ]; description = "Parse WaveSurfer files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wavy" = callPackage @@ -300578,6 +316408,7 @@ self: { ]; description = "Process WAVE files in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wcwidth" = callPackage @@ -300627,6 +316458,8 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Mutable bag backed by weak pointers to each item"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "weather-api" = callPackage @@ -300643,6 +316476,8 @@ self: { ]; description = "Weather API implemented in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "weatherhs" = callPackage @@ -300664,6 +316499,7 @@ self: { ]; description = "Weather and related data info command-line tool"; license = lib.licenses.gpl3Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "weatherhs"; }) {}; @@ -300688,6 +316524,8 @@ self: { libraryHaskellDepends = [ base text ]; description = "Simple functions for CSS"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "web-encodings" = callPackage @@ -300705,6 +316543,8 @@ self: { ]; description = "Encapsulate multiple web encoding in a single package. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "web-fpco" = callPackage @@ -300720,6 +316560,7 @@ self: { ]; description = "Wrappers for web frameworks to ease usage with the FP Complete environment"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "web-inv-route" = callPackage @@ -300758,6 +316599,7 @@ self: { ]; description = "Bindings for the Mongrel2 web server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "web-output" = callPackage @@ -300776,6 +316618,8 @@ self: { ]; description = "Library to present content to an user via their browser"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "web-page" = callPackage @@ -300795,6 +316639,8 @@ self: { ]; description = "Monoidally construct web pages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "web-plugins" = callPackage @@ -300810,6 +316656,8 @@ self: { ]; description = "dynamic plugin system for web applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "web-push" = callPackage @@ -300831,6 +316679,8 @@ self: { ]; description = "Send messages using Web Push protocol"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "web-rep" = callPackage @@ -300951,6 +316801,8 @@ self: { libraryHaskellDepends = [ base path-pieces template-haskell text ]; description = "Define data types and parse/build functions for web-routes via a quasi-quoted DSL (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "web-routes-regular" = callPackage @@ -300962,6 +316814,7 @@ self: { libraryHaskellDepends = [ base parsec regular text web-routes ]; description = "portable, type-safe URL routing"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "web-routes-th" = callPackage @@ -300989,6 +316842,8 @@ self: { libraryHaskellDepends = [ base transformers web-routes ]; description = "Extends web-routes with some transformers instances for RouteT"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "web-routes-wai" = callPackage @@ -301023,6 +316878,7 @@ self: { benchmarkHaskellDepends = [ base criterion text ]; description = "simple routing library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "web3" = callPackage @@ -301037,6 +316893,7 @@ self: { ]; description = "Haskell Web3 library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "web3-bignum" = callPackage @@ -301057,6 +316914,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Fixed size big integers for Haskell Web3 library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "web3-crypto" = callPackage @@ -301080,6 +316938,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Cryptograhical primitives for Haskell Web3 library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "web3-ethereum" = callPackage @@ -301110,6 +316969,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Ethereum support for Haskell Web3 library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "web3-ipfs" = callPackage @@ -301127,6 +316987,8 @@ self: { ]; description = "IPFS support for Haskell Web3 library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "web3-polkadot" = callPackage @@ -301157,6 +317019,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Polkadot support for Haskell Web3 library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "web3-provider" = callPackage @@ -301173,6 +317036,7 @@ self: { ]; description = "Node connection provider for Haskell Web3 library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "web3-solidity" = callPackage @@ -301199,6 +317063,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "Solidity language for Haskell Web3 library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "webapi" = callPackage @@ -301225,6 +317090,8 @@ self: { ]; description = "WAI based library for web api"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "webapp" = callPackage @@ -301247,6 +317114,8 @@ self: { ]; description = "Haskell web app framework based on WAI & Warp"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "webauthn" = callPackage @@ -301277,6 +317146,8 @@ self: { ]; description = "Relying party (server) implementation of the WebAuthn 2 specification"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "webby" = callPackage @@ -301303,6 +317174,8 @@ self: { ]; description = "A super-simple web server framework"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "webcloud" = callPackage @@ -301319,7 +317192,9 @@ self: { executableHaskellDepends = [ base optparse-applicative ]; description = "Turn an optparse-applicative program into a CGI program!"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "testcloud"; + broken = true; }) {}; "webcrank" = callPackage @@ -301347,6 +317222,8 @@ self: { ]; description = "Webmachine inspired toolkit for building http applications and services"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "webcrank-dispatch" = callPackage @@ -301362,6 +317239,8 @@ self: { ]; description = "A simple request dispatcher"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "webcrank-wai" = callPackage @@ -301379,6 +317258,7 @@ self: { ]; description = "Build a WAI Application from Webcrank Resources"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "webdriver" = callPackage @@ -301425,6 +317305,8 @@ self: { ]; description = "Webdriver actions to assist with testing a webpage which uses Angular.Js"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "webdriver-snoy" = callPackage @@ -301451,6 +317333,8 @@ self: { testHaskellDepends = [ base parallel text ]; description = "a Haskell client for the Selenium WebDriver protocol (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "webdriver-w3c" = callPackage @@ -301486,6 +317370,7 @@ self: { ]; description = "Bindings to the WebDriver API"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "webex-teams-api" = callPackage @@ -301588,6 +317473,8 @@ self: { ]; description = "WebFinger client library"; license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "webgear-core" = callPackage @@ -301623,6 +317510,7 @@ self: { ]; description = "Composable, type-safe library to build HTTP API servers"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "webgear-server" = callPackage @@ -301648,6 +317536,7 @@ self: { ]; description = "Composable, type-safe library to build HTTP API servers"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; }) {}; "webidl" = callPackage @@ -301689,6 +317578,7 @@ self: { ]; description = "webfont generator"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "webify"; }) {}; @@ -301723,6 +317613,8 @@ self: { libraryPkgconfigDepends = [ webkit ]; description = "JavaScriptCore FFI from webkitgtk"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {webkit = null;}; "webkit2gtk3-javascriptcore" = callPackage @@ -301757,6 +317649,8 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the Webkit library"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) webkitgtk;}; "webkitgtk3-javascriptcore" = callPackage @@ -301792,6 +317686,8 @@ self: { ]; description = "Types and functions for working with Webmentions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "webp" = callPackage @@ -301851,6 +317747,7 @@ self: { ]; description = "HTTP server library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "webshow" = callPackage @@ -301870,7 +317767,9 @@ self: { ]; description = "Show programming language printed values in a web UI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "webshow"; + broken = true; }) {}; "websnap" = callPackage @@ -301962,6 +317861,7 @@ self: { ]; description = "Simple streaming RPC mechanism using WebSockets"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "websockets-simple" = callPackage @@ -301986,6 +317886,7 @@ self: { ]; description = "Composable websockets clients"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "websockets-simple-extra" = callPackage @@ -301996,6 +317897,7 @@ self: { sha256 = "1ckni1imxh4k1nxivvj9p1mffzvdmyjc20nas8b90dkkxblgnk1j"; libraryHaskellDepends = [ base mtl websockets-simple ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "websockets-snap" = callPackage @@ -302034,6 +317936,8 @@ self: { ]; description = "Functional reactive web framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wedding-announcement" = callPackage @@ -302203,6 +318107,7 @@ self: { ]; description = "A school-timetable problem-solver"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "weekdaze"; }) {}; @@ -302220,6 +318125,7 @@ self: { testHaskellDepends = [ base gamma tasty tasty-hunit ]; description = "Weierstrass Elliptic Functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "weigh" = callPackage @@ -302265,6 +318171,7 @@ self: { libraryHaskellDepends = [ base mtl semiring-num transformers ]; description = "Writer monad which uses semiring constraint"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "weighted-regexp" = callPackage @@ -302279,6 +318186,8 @@ self: { libraryToolDepends = [ happy ]; description = "Weighted Regular Expression Matcher"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "weighted-search" = callPackage @@ -302327,6 +318236,8 @@ self: { ]; description = "Haskell web framework (because Scotty had trouble yodeling)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wembley" = callPackage @@ -302369,7 +318280,9 @@ self: { ]; description = "A game engine for playing werewolf within an arbitrary chat client"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "werewolf"; + broken = true; }) {}; "werewolf-slack" = callPackage @@ -302389,6 +318302,7 @@ self: { ]; description = "A chat interface for playing werewolf in Slack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "werewolf-slack"; }) {}; @@ -302416,6 +318330,7 @@ self: { doHaddock = false; description = "WGPU"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wgpu-raw-hs" = callPackage @@ -302428,6 +318343,8 @@ self: { libraryPkgconfigDepends = [ SDL2 ]; description = "WGPU Raw"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) SDL2;}; "what4" = callPackage @@ -302471,6 +318388,7 @@ self: { ]; description = "Solver-agnostic symbolic values support for issuing queries"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "quickstart"; }) {}; @@ -302483,6 +318401,7 @@ self: { libraryHaskellDepends = [ base bson mongoDB mtl text Wheb ]; description = "MongoDB plugin for Wheb"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wheb-redis" = callPackage @@ -302494,6 +318413,7 @@ self: { libraryHaskellDepends = [ base bytestring hedis mtl text Wheb ]; description = "Redis connection for Wheb"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wheb-strapped" = callPackage @@ -302505,6 +318425,7 @@ self: { libraryHaskellDepends = [ base mtl StrappedTemplates text Wheb ]; description = "Strapped templates for Wheb"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "which" = callPackage @@ -302527,6 +318448,8 @@ self: { libraryHaskellDepends = [ base indents parsec ]; description = "Parser for the While language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "whim" = callPackage @@ -302557,6 +318480,8 @@ self: { libraryHaskellDepends = [ base parsec template-haskell ]; description = "Mustache templates with Template Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "whitespace" = callPackage @@ -302571,6 +318496,7 @@ self: { executableHaskellDepends = [ haskell98 random ]; description = "Whitespace, an esoteric programming language"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "wspace"; }) {}; @@ -302585,6 +318511,8 @@ self: { libraryHaskellDepends = [ base network network-uri split ]; description = "WHOIS client library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wholepixels" = callPackage @@ -302601,6 +318529,7 @@ self: { random-fu random-shuffle random-source relude temporary time ]; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; }) {}; "why3" = callPackage @@ -302619,6 +318548,8 @@ self: { libraryToolDepends = [ alex happy ]; description = "Haskell support for the Why3 input format"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wide-word" = callPackage @@ -302652,6 +318583,8 @@ self: { libraryHaskellDepends = [ base binary serialise wide-word ]; description = "Instances for wide-word"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wigner-symbols" = callPackage @@ -302700,6 +318633,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Scrape WikiCFP web site"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wikipedia4epub" = callPackage @@ -302719,6 +318654,7 @@ self: { ]; description = "Wikipedia EPUB E-Book construction from Firefox history"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "wiki4e-mkepub-subtree"; }) {}; @@ -302739,6 +318675,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Dynamic key binding framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wild-bind-indicator" = callPackage @@ -302756,6 +318694,7 @@ self: { ]; description = "Graphical indicator for WildBind"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wild-bind-task-x11" = callPackage @@ -302772,6 +318711,7 @@ self: { testHaskellDepends = [ base ]; description = "Task to install and export everything you need to use WildBind in X11"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wild-bind-x11" = callPackage @@ -302793,6 +318733,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "X11-specific implementation for WildBind"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "willow" = callPackage @@ -302817,6 +318758,8 @@ self: { ]; description = "An implementation of the web Document Object Model, and its rendering"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wilton-ffi" = callPackage @@ -302857,6 +318800,8 @@ self: { librarySystemDepends = [ dnsapi ]; description = "Domain Name Service (DNS) lookup via the /dnsapi.dll standard library"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {dnsapi = null;}; "window-utils" = callPackage @@ -302871,6 +318816,8 @@ self: { ]; description = "OS window icon/name utilities"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "windowslive" = callPackage @@ -302888,6 +318835,7 @@ self: { ]; description = "Implements Windows Live Web Authentication and Delegated Authentication"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "winerror" = callPackage @@ -302899,6 +318847,8 @@ self: { doHaddock = false; description = "Error handling for foreign calls to the Windows API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "winery" = callPackage @@ -302936,6 +318886,7 @@ self: { ]; description = "A compact, well-typed seralisation format for Haskell values"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "winery"; }) {}; @@ -302953,6 +318904,7 @@ self: { librarySystemDepends = [ kernel32 ws2_32 ]; description = "I/O library for Windows"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {kernel32 = null; ws2_32 = null;}; "wire-streams" = callPackage @@ -302978,6 +318930,7 @@ self: { ]; description = "Fast binary io-streams adapter"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wireguard-hs" = callPackage @@ -302996,6 +318949,8 @@ self: { ]; description = "API for Linux Kernel Wireguard device management"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wires" = callPackage @@ -303013,6 +318968,8 @@ self: { ]; description = "Functional reactive programming library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wiring" = callPackage @@ -303029,6 +318986,8 @@ self: { ]; description = "Wiring, promotion and demotion of types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wiringPi" = callPackage @@ -303202,7 +319161,9 @@ self: { executableHaskellDepends = [ base bytestring network unix ]; description = "A network server to show bottlenecks of GHC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "witty"; + broken = true; }) {}; "wizard" = callPackage @@ -303249,6 +319210,8 @@ self: { ]; description = "Parsec parsers and types for geographic data in well-known text (WKT) format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wkt-geom" = callPackage @@ -303272,6 +319235,8 @@ self: { ]; description = "A parser of WKT, WKB and eWKB"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wl-pprint" = callPackage @@ -303317,6 +319282,7 @@ self: { ]; description = "ANSI Terminal support with wl-pprint-extras"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wl-pprint-console" = callPackage @@ -303332,6 +319298,8 @@ self: { ]; description = "Wadler/Leijen pretty printer supporting colorful console output"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wl-pprint-extras" = callPackage @@ -303351,6 +319319,8 @@ self: { ]; description = "A free monad based on the Wadler/Leijen pretty printer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wl-pprint-terminfo" = callPackage @@ -303368,6 +319338,7 @@ self: { ]; description = "A color pretty printer with terminfo support"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wl-pprint-text" = callPackage @@ -303399,6 +319370,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "Haskell bindings for the wlc library"; license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) wlc;}; "wobsurv" = callPackage @@ -303434,6 +319406,7 @@ self: { ]; description = "A simple and highly performant HTTP file server"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "wobsurv"; }) {}; @@ -303446,6 +319419,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Convenient typeclass for defining arbitrary-index enums"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "woffex" = callPackage @@ -303461,7 +319436,9 @@ self: { ]; description = "Web Open Font Format (WOFF) unpacker"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "woffex"; + broken = true; }) {}; "wol" = callPackage @@ -303476,7 +319453,9 @@ self: { executableHaskellDepends = [ base ]; description = "Send a Wake on LAN Magic Packet"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "wol"; + broken = true; }) {}; "wolf" = callPackage @@ -303499,6 +319478,7 @@ self: { executableHaskellDepends = [ base optparse-generic ]; description = "Amazon Simple Workflow Service Wrapper"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "woot" = callPackage @@ -303529,6 +319509,7 @@ self: { testHaskellDepends = [ base smallcheck tasty tasty-smallcheck ]; description = "Words of arbitrary size"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "word-array" = callPackage @@ -303637,6 +319618,8 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "24-bit word and int types for GHC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "word2vec-model" = callPackage @@ -303664,6 +319647,8 @@ self: { ]; description = "Reading word2vec binary models"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "word8" = callPackage @@ -303695,6 +319680,8 @@ self: { ]; description = "Word8 set"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wordchoice" = callPackage @@ -303776,7 +319763,9 @@ self: { unordered-containers ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "wordify-exe"; + broken = true; }) {}; "wordlist" = callPackage @@ -303795,7 +319784,9 @@ self: { ]; description = "Command-line tool to get random words"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "wordlist"; + broken = true; }) {}; "wordn" = callPackage @@ -303816,6 +319807,8 @@ self: { doHaddock = false; description = "arbitrary bit size Words"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wordpass" = callPackage @@ -303838,7 +319831,9 @@ self: { ]; description = "Dictionary-based password generator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "wordpass"; + broken = true; }) {}; "wordpress-auth" = callPackage @@ -303885,7 +319880,9 @@ self: { executableHaskellDepends = [ base containers fclabels ]; description = "A word search solver library and executable"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "wordsearch"; + broken = true; }) {}; "wordsetdiff" = callPackage @@ -303919,7 +319916,9 @@ self: { executableHaskellDepends = [ base text ]; description = "A library for parsing a chat-based work hour reporting scheme"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "work-time"; + broken = true; }) {}; "workdays" = callPackage @@ -303932,6 +319931,8 @@ self: { testHaskellDepends = [ base containers doctest hspec ]; description = "Workday calculations"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "workflow-extra" = callPackage @@ -303954,6 +319955,7 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "Utilities (e.g. Googling the clipboard contents) for the `workflow` pacakge"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example-workflow-extra"; }) {}; @@ -303974,7 +319976,9 @@ self: { executableHaskellDepends = [ base ]; description = "a \"Desktop Workflow\" monad with Objective-C bindings"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "example"; + broken = true; }) {}; "workflow-pure" = callPackage @@ -303997,6 +320001,7 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq ]; description = "manipulate `workflow-types:Workflow`'s"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example-workflow-pure"; }) {}; @@ -304016,6 +320021,7 @@ self: { executableHaskellDepends = [ base ]; description = "Automate keyboard\\/mouse\\/clipboard\\/application interaction"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "example-workflow-types"; }) {}; @@ -304031,7 +320037,9 @@ self: { testHaskellDepends = [ base doctest hspec QuickCheck ]; description = "Automate keyboard/mouse/clipboard/application interaction"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "workflow-windows-example"; + broken = true; }) {}; "world-peace" = callPackage @@ -304079,7 +320087,9 @@ self: { ]; description = "Subscribe to a wiki's RSS feed and archive external links"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "wp-archivebot"; + broken = true; }) {}; "wrap" = callPackage @@ -304148,6 +320158,7 @@ self: { ]; description = "Lazy wrapper to HaXML, HXT, TagSoup via custom XML tree structure"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "wrecker" = callPackage @@ -304186,6 +320197,7 @@ self: { ]; description = "An HTTP Performance Benchmarker"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "wreck"; }) {}; @@ -304219,6 +320231,7 @@ self: { ]; description = "A web interface for Wrecker, the HTTP Performance Benchmarker"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "wrecker-ui"; }) {}; @@ -304312,6 +320325,8 @@ self: { ]; description = "HTTP/HTTPS response process"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wreq-patchable" = callPackage @@ -304350,6 +320365,8 @@ self: { ]; description = "An easy-to-use HTTP client library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wreq-sb" = callPackage @@ -304387,6 +320404,8 @@ self: { ]; description = "An easy-to-use HTTP client library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wreq-stringless" = callPackage @@ -304415,6 +320434,7 @@ self: { ]; description = "Colour space transformations and metrics"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "write-buffer-core" = callPackage @@ -304475,6 +320495,7 @@ self: { ]; description = "WriteT and RWST monad transformers (Reexport with all dependencies)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "writer-cps-lens" = callPackage @@ -304491,6 +320512,8 @@ self: { ]; description = "Lens instances for the stricter CPS WriterT and RWST"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "writer-cps-monads-tf" = callPackage @@ -304506,6 +320529,8 @@ self: { ]; description = "MonadWriter orphan instances for writer-cps-transformers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "writer-cps-morph" = callPackage @@ -304519,6 +320544,8 @@ self: { libraryHaskellDepends = [ base mmorph writer-cps-transformers ]; description = "MFunctor instance for CPS style WriterT and RWST"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "writer-cps-mtl" = callPackage @@ -304625,6 +320652,8 @@ self: { ]; description = "WSDL parsing in Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wsedit" = callPackage @@ -304642,7 +320671,9 @@ self: { ]; description = "A small tool to list, add and remove webseeds from a torrent file"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "wsedit"; + broken = true; }) {}; "wshterm" = callPackage @@ -304683,6 +320714,7 @@ self: { executableHaskellDepends = [ base ]; description = "WSJT-X UDP protocol"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "wsjtx-dump-udp"; }) {}; @@ -304745,6 +320777,8 @@ self: { libraryHaskellDepends = [ base old-locale time transformers ]; description = "Wojcik Tool Kit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wtk-gtk" = callPackage @@ -304760,6 +320794,7 @@ self: { ]; description = "GTK tools within Wojcik Tool Kit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wu-wei" = callPackage @@ -304775,6 +320810,7 @@ self: { ]; description = "Unimportant Unix adminstration tool"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "pao"; }) {}; @@ -304809,6 +320845,7 @@ self: { ]; description = "Basic objects and system code built on Wumpus-Core"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wumpus-core" = callPackage @@ -304822,6 +320859,8 @@ self: { libraryHaskellDepends = [ base containers time vector-space ]; description = "Pure Haskell PostScript and SVG generation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wumpus-drawing" = callPackage @@ -304837,6 +320876,7 @@ self: { ]; description = "High-level drawing objects built on Wumpus-Basic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wumpus-microprint" = callPackage @@ -304852,6 +320892,7 @@ self: { ]; description = "Microprints - \"greek-text\" pictures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wumpus-tree" = callPackage @@ -304868,6 +320909,7 @@ self: { ]; description = "Drawing trees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wuss" = callPackage @@ -304911,6 +320953,7 @@ self: { libraryHaskellDepends = [ base stm time wxcore ]; description = "wxHaskell"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {}; "wxAsteroids" = callPackage @@ -304925,6 +320968,7 @@ self: { executableHaskellDepends = [ base directory random wx wxcore ]; description = "Try to avoid the asteroids with your space ship"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "wxAsteroids"; }) {}; @@ -304940,6 +320984,7 @@ self: { executableHaskellDepends = [ base wx wxcore Yampa ]; description = "An implementation of Fruit using wxHaskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "paddle"; }) {}; @@ -304952,6 +320997,7 @@ self: { libraryHaskellDepends = [ base cubicbezier wx wxcore ]; description = "Simple zoomable canvas for wxHaskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "wxc" = callPackage @@ -304975,6 +321021,7 @@ self: { postPatch = "sed -i -e '/ldconfig inst_lib_dir/d' Setup.hs"; description = "wxHaskell C++ wrapper"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libGL; inherit (pkgs.xorg) libX11; inherit (pkgs) wxGTK;}; @@ -304995,6 +321042,7 @@ self: { libraryPkgconfigDepends = [ wxGTK ]; description = "wxHaskell core"; license = "unknown"; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) wxGTK;}; "wxdirect" = callPackage @@ -305012,7 +321060,9 @@ self: { ]; description = "helper tool for building wxHaskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "wxdirect"; + broken = true; }) {}; "wxhnotepad" = callPackage @@ -305027,6 +321077,7 @@ self: { executableHaskellDepends = [ base wx wxcore ]; description = "An example of how to implement a basic notepad with wxHaskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "wxhnotepad"; }) {}; @@ -305043,6 +321094,7 @@ self: { ]; description = "turtle like LOGO with wxHaskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "testTurtle"; }) {}; @@ -305083,6 +321135,7 @@ self: { ]; description = "An autoresponder for Dragon Go Server"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "wyvern"; }) {}; @@ -305100,6 +321153,8 @@ self: { ]; description = "A embedded DSL for manipulating DSP languages in Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "x11-xim" = callPackage @@ -305329,7 +321384,9 @@ self: { ]; description = "XChat"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "hsxchat"; + broken = true; }) {}; "xcp" = callPackage @@ -305345,6 +321402,8 @@ self: { ]; description = "Partial implementation of the XCP protocol with ethernet as transport layer"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xdcc" = callPackage @@ -305370,6 +321429,7 @@ self: { ]; description = "A wget-like utility for retrieving files from XDCC bots on IRC"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "xdcc"; }) {}; @@ -305489,6 +321549,8 @@ self: { libraryHaskellDepends = [ base bytestring cereal mtl network ]; description = "Xenstore client access"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xfconf" = callPackage @@ -305509,6 +321571,8 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "FFI bindings to xfconf"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {libxfconf = null;}; "xformat" = callPackage @@ -305521,6 +321585,8 @@ self: { testHaskellDepends = [ base ]; description = "Extensible, type-safe formatting with scanf- and printf-like functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xgboost-haskell" = callPackage @@ -305553,6 +321619,8 @@ self: { ]; description = "Replaces/Enhances Text.Regex"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xhb" = callPackage @@ -305571,6 +321639,8 @@ self: { ]; description = "X Haskell Bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xhb-atom-cache" = callPackage @@ -305586,6 +321656,7 @@ self: { ]; description = "Atom cache for XHB"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "xhb-ewmh" = callPackage @@ -305602,6 +321673,7 @@ self: { ]; description = "EWMH utilities for XHB"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; }) {}; "xhtml_3000_3_0_0" = callPackage @@ -305644,6 +321716,8 @@ self: { executableHaskellDepends = [ base directory process ]; description = "The Lava system for Xilinx FPGA design with layout combinators"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xine" = callPackage @@ -305658,6 +321732,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "Bindings to xine-lib"; license = "LGPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {libxine = null; xine = null;}; "xing-api" = callPackage @@ -305681,6 +321757,8 @@ self: { ]; description = "Wrapper for the XING API, v1"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xinput-conduit" = callPackage @@ -305720,6 +321798,8 @@ self: { benchmarkHaskellDepends = [ base random time vector ]; description = "Haskell bindings for libxkbcommon"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libxkbcommon;}; "xkcd" = callPackage @@ -305739,7 +321819,9 @@ self: { ]; description = "Downloads the most recent xkcd comic"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "xkcd"; + broken = true; }) {}; "xleb" = callPackage @@ -305755,6 +321837,8 @@ self: { libraryHaskellDepends = [ base containers mtl xml ]; description = "A simple monadic language for parsing XML structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xls" = callPackage @@ -305776,7 +321860,9 @@ self: { testHaskellDepends = [ base hspec ]; description = "Parse Microsoft Excel xls files (BIFF/Excel 97-2004)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "xls2csv"; + broken = true; }) {}; "xlsior" = callPackage @@ -305800,6 +321886,8 @@ self: { ]; description = "Streaming Excel file generation and parsing"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xlsx" = callPackage @@ -305849,6 +321937,8 @@ self: { testHaskellDepends = [ base ]; description = "Xlsx table cell value extraction utility"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xlsx-templater" = callPackage @@ -305867,7 +321957,9 @@ self: { ]; description = "Simple and incomplete Excel file templater"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "test"; + broken = true; }) {}; "xml" = callPackage @@ -305914,6 +322006,7 @@ self: { ]; description = "Parse XML catalog files (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "xml-conduit" = callPackage @@ -305957,6 +322050,8 @@ self: { ]; description = "Historical cursors & decoding on top of xml-conduit"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xml-conduit-microlens" = callPackage @@ -305996,6 +322091,8 @@ self: { ]; description = "Streaming XML parser based on conduits"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xml-conduit-selectors" = callPackage @@ -306015,6 +322112,8 @@ self: { ]; description = "jQuery-style CSS selectors for xml-conduit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xml-conduit-stylist" = callPackage @@ -306031,6 +322130,8 @@ self: { ]; description = "Bridge between xml-conduit/html-conduit and stylist"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xml-conduit-writer" = callPackage @@ -306070,6 +322171,7 @@ self: { ]; description = "Pure-Haskell utilities for dealing with XML with the enumerator package. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "xml-enumerator-combinators" = callPackage @@ -306087,6 +322189,7 @@ self: { ]; description = "Parser combinators for xml-enumerator and compatible XML parsers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "xml-extractors" = callPackage @@ -306147,6 +322250,8 @@ self: { ]; description = "Optics for xml-conduit and html-conduit"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xml-html-qq" = callPackage @@ -306211,6 +322316,7 @@ self: { ]; description = "Generate XML-isomorphic types"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "xml-lens" = callPackage @@ -306242,6 +322348,7 @@ self: { ]; description = "Monadic extensions to the xml package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "xml-optics" = callPackage @@ -306267,6 +322374,8 @@ self: { libraryHaskellDepends = [ base HaXml parsec ]; description = "Parsing XML with Parsec"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xml-parser" = callPackage @@ -306317,6 +322426,7 @@ self: { libraryHaskellDepends = [ base bytestring papillon simple-pipe ]; description = "XML parser which uses simple-pipe"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "xml-prettify" = callPackage @@ -306331,7 +322441,9 @@ self: { executableHaskellDepends = [ base cmdargs unix ]; description = "Pretty print XML"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "xml-prettify"; + broken = true; }) {}; "xml-prettify-text" = callPackage @@ -306355,7 +322467,9 @@ self: { benchmarkHaskellDepends = [ base gauge protolude ]; description = "XML pretty printer"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "xml-prettify"; + broken = true; }) {}; "xml-push" = callPackage @@ -306376,6 +322490,7 @@ self: { ]; description = "Push XML from/to client to/from server over XMPP or HTTP"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "xml-query" = callPackage @@ -306387,6 +322502,8 @@ self: { libraryHaskellDepends = [ base free text ]; description = "A parser-agnostic declarative API for querying XML-documents"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xml-query-xml-conduit" = callPackage @@ -306403,6 +322520,7 @@ self: { ]; description = "A binding for the \"xml-query\" and \"xml-conduit\" libraries"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "xml-query-xml-types" = callPackage @@ -306426,6 +322544,7 @@ self: { ]; description = "An interpreter of \"xml-query\" queries for the \"xml-types\" documents"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "xml-syntax" = callPackage @@ -306446,6 +322565,8 @@ self: { ]; description = "Parse XML from bytes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xml-to-json" = callPackage @@ -306467,7 +322588,9 @@ self: { executableHaskellDepends = [ base ]; description = "Library and command line tool for converting XML files to json"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "xml-to-json"; + broken = true; }) {}; "xml-to-json-fast" = callPackage @@ -306504,6 +322627,7 @@ self: { ]; description = "Typed XML encoding for an xml-conduit backend"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "xml-tydom-core" = callPackage @@ -306515,6 +322639,8 @@ self: { libraryHaskellDepends = [ base containers mtl QuickCheck text ]; description = "Typed XML encoding (core library)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xml-types" = callPackage @@ -306542,6 +322668,8 @@ self: { libraryPkgconfigDepends = [ xmlsec1 ]; description = "Verifying XML signatures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {xmlsec1 = null;}; "xml2html" = callPackage @@ -306582,7 +322710,9 @@ self: { ]; description = "translate xml to json"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "xml2json"; + broken = true; }) {}; "xml2x" = callPackage @@ -306601,6 +322731,7 @@ self: { ]; description = "Convert BLAST output in XML format to CSV or HTML"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "xml2x"; }) {}; @@ -306730,6 +322861,7 @@ self: { ]; description = "Show tv channels in the terminal"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "tv"; }) {}; @@ -306747,6 +322879,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "An XMMS2 client library"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "xmms2-client-glib" = callPackage @@ -306759,6 +322892,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "An XMMS2 client library — GLib integration"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "xmobar" = callPackage @@ -306859,7 +322993,9 @@ self: { ]; description = "A tiling window manager"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "xmonad"; + broken = true; }) {}; "xmonad-contrib" = callPackage @@ -306905,6 +323041,7 @@ self: { ]; description = "Third party extensions for xmonad"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "xmonad-contrib-gpl" = callPackage @@ -306916,6 +323053,8 @@ self: { libraryHaskellDepends = [ base mtl xmonad xmonad-contrib ]; description = "Third party extensions for xmonad"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xmonad-dbus" = callPackage @@ -306947,6 +323086,8 @@ self: { ]; description = "XMonad config entry point wrapper"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xmonad-eval" = callPackage @@ -306963,6 +323104,8 @@ self: { ]; description = "Module for evaluation Haskell expressions in the running xmonad instance"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xmonad-extras" = callPackage @@ -306996,6 +323139,8 @@ self: { libraryHaskellDepends = [ base gtk xmonad ]; description = "Workspaces screenshooting utility for XMonad"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xmonad-spotify" = callPackage @@ -307044,6 +323189,8 @@ self: { testHaskellDepends = [ base hspec xmonad ]; description = "Custom xmonad, which builds with stack or cabal"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xmonad-volume" = callPackage @@ -307073,6 +323220,8 @@ self: { libraryHaskellDepends = [ base magic mtl random unix xmonad ]; description = "xmonad wallpaper extension"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xmonad-windownames" = callPackage @@ -307088,6 +323237,8 @@ self: { ]; description = "A library to automatically put named windows into the DynamicLog"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xmpipe" = callPackage @@ -307104,6 +323255,7 @@ self: { ]; description = "XMPP implementation using simple-PIPE"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "xor" = callPackage @@ -307155,6 +323307,8 @@ self: { ]; description = "Simple implementation of xorshift+ PRNG"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xosd" = callPackage @@ -307184,6 +323338,7 @@ self: { ]; description = "text builder for xournal file format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "xournal-convert" = callPackage @@ -307205,6 +323360,7 @@ self: { executableHaskellDepends = [ base cmdargs ]; description = "convert utility for xoj files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "xournal-convert"; }) {}; @@ -307225,6 +323381,7 @@ self: { ]; description = "Xournal file parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "xournal-render" = callPackage @@ -307242,6 +323399,7 @@ self: { ]; description = "Xournal file renderer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "xournal-types" = callPackage @@ -307259,6 +323417,7 @@ self: { ]; description = "Data types for programs for xournal file format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "xpathdsv" = callPackage @@ -307314,6 +323473,7 @@ self: { ]; testToolDepends = [ tasty-discover ]; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "xrefcheck"; }) {}; @@ -307332,6 +323492,8 @@ self: { ]; description = "Cluster EST sequences"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xsd" = callPackage @@ -307347,6 +323509,8 @@ self: { ]; description = "XML Schema data structures"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xsha1" = callPackage @@ -307358,6 +323522,8 @@ self: { libraryHaskellDepends = [ base HUnit QuickCheck uniplate vector ]; description = "cryptanalysis of Blizzard's broken SHA-1 implementation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xslt" = callPackage @@ -307370,6 +323536,8 @@ self: { librarySystemDepends = [ xslt ]; description = "Binding to libxslt"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {xslt = null;}; "xss-sanitize" = callPackage @@ -307435,6 +323603,7 @@ self: { libraryHaskellDepends = [ base wx wxcore ]; description = "eXtended & Typed Controls for wxHaskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "xtest" = callPackage @@ -307479,6 +323648,8 @@ self: { ]; description = "A Haskell implementation of the xxHash algorithm"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "xxhash-ffi" = callPackage @@ -307515,7 +323686,9 @@ self: { ]; description = "#plaimi's all-encompassing bot"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "yolobot"; + broken = true; }) {}; "yabi" = callPackage @@ -307550,7 +323723,9 @@ self: { executableHaskellDepends = [ base containers mtl parsec ]; description = "Yet Another Brainfuck Interpreter"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "yabi"; + broken = true; }) {}; "yackage" = callPackage @@ -307574,6 +323749,8 @@ self: { ]; description = "Personal Hackage replacement for testing new packages"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yahoo-finance-api" = callPackage @@ -307595,6 +323772,8 @@ self: { ]; description = "Read quotes from Yahoo Finance API"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yahoo-finance-conduit" = callPackage @@ -307610,6 +323789,8 @@ self: { ]; description = "Streaming aproach to the yahoo finance api"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yahoo-prices" = callPackage @@ -307627,6 +323808,8 @@ self: { doHaddock = false; description = "A wrapper around Yahoo API for downloading market data"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yahoo-web-search" = callPackage @@ -307638,6 +323821,8 @@ self: { libraryHaskellDepends = [ base HTTP network xml ]; description = "Yahoo Web Search Services"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yajl" = callPackage @@ -307651,6 +323836,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "Bindings for YAJL, an event-based JSON implementation"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) yajl;}; "yajl-enumerator" = callPackage @@ -307666,6 +323853,7 @@ self: { ]; description = "Enumerator-based interface to YAJL, an event-based JSON implementation"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "yak" = callPackage @@ -307682,6 +323870,8 @@ self: { testHaskellDepends = [ base bytestring hspec ]; description = "A strongly typed IRC library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yall" = callPackage @@ -307693,6 +323883,8 @@ self: { libraryHaskellDepends = [ base categories transformers ]; description = "Lenses with a southern twang"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yam" = callPackage @@ -307726,6 +323918,7 @@ self: { ]; description = "A wrapper of servant"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yam-app" = callPackage @@ -307749,6 +323942,8 @@ self: { ]; description = "Yam App"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yam-config" = callPackage @@ -307765,6 +323960,8 @@ self: { ]; description = "Yam Configuation"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yam-datasource" = callPackage @@ -307782,6 +323979,7 @@ self: { ]; description = "Yam DataSource Middleware"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yam-job" = callPackage @@ -307792,6 +323990,7 @@ self: { sha256 = "0c6frqjf3xhd5bksaz6rvd6qbqbj15y441476dgj2asm2yd64895"; libraryHaskellDepends = [ base cron yam-app ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yam-logger" = callPackage @@ -307807,6 +324006,7 @@ self: { ]; description = "Yam Logger"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "yam-redis" = callPackage @@ -307823,6 +324023,7 @@ self: { ]; description = "Yam Redis Middleware"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yam-servant" = callPackage @@ -307839,6 +324040,7 @@ self: { servant-swagger-ui swagger2 text wai wai-extra warp yam-app yam-job ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yam-transaction" = callPackage @@ -307859,6 +324061,7 @@ self: { ]; description = "Yam transaction"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "yam-transaction-odbc" = callPackage @@ -307871,6 +324074,7 @@ self: { base containers persistent-odbc yam-app ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yam-transaction-postgresql" = callPackage @@ -307885,6 +324089,7 @@ self: { base containers persistent-postgresql unliftio-core yam-app ]; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yam-web" = callPackage @@ -307914,6 +324119,7 @@ self: { ]; description = "Yam Web"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "yam-web"; }) {}; @@ -307978,6 +324184,8 @@ self: { ]; description = "YAML parsing combinators for improved validation and error reporting"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yaml-config" = callPackage @@ -307999,6 +324207,8 @@ self: { ]; description = "Configuration management"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yaml-light" = callPackage @@ -308026,6 +324236,8 @@ self: { testHaskellDepends = [ base doctest ]; description = "Lens interface to yaml-light"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yaml-pretty-extras" = callPackage @@ -308038,6 +324250,8 @@ self: { testHaskellDepends = [ base hspec microlens-platform rio ]; description = "Extra functionality for pretty printing Yaml documents"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yaml-rpc" = callPackage @@ -308056,6 +324270,8 @@ self: { ]; description = "Simple library for network (HTTP REST-like) YAML RPC"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yaml-rpc-scotty" = callPackage @@ -308072,6 +324288,7 @@ self: { ]; description = "Scotty server backend for yaml-rpc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yaml-rpc-snap" = callPackage @@ -308088,6 +324305,7 @@ self: { ]; description = "Snap server backend for yaml-rpc"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yaml-streamly" = callPackage @@ -308121,6 +324339,7 @@ self: { ]; description = "Support for parsing and rendering YAML documents"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yaml-union" = callPackage @@ -308148,6 +324367,8 @@ self: { ]; description = "Read multiple yaml-files and override fields recursively"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yaml-unscrambler" = callPackage @@ -308210,7 +324431,9 @@ self: { ]; description = "Compares the keys from two yaml files"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "yamlkeysdiff"; + broken = true; }) {}; "yamlparse-applicative" = callPackage @@ -308262,7 +324485,9 @@ self: { ]; description = "Connects GLFW-b (GLFW 3+) with the Yampa FRP library"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "yampa-glfw-example"; + broken = true; }) {}; "yampa-gloss" = callPackage @@ -308311,6 +324536,8 @@ self: { ]; description = "Yampa and SDL2 made easy"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yampa-test" = callPackage @@ -308360,6 +324587,8 @@ self: { ]; description = "Bindings to Yandex translate API"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yaop" = callPackage @@ -308373,6 +324602,8 @@ self: { libraryHaskellDepends = [ base mtl template-haskell ]; description = "Yet another option parser"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yap" = callPackage @@ -308410,6 +324641,8 @@ self: { ]; description = "Yet Another Parser Builder (YAPB)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yarl" = callPackage @@ -308483,7 +324716,9 @@ self: { ]; description = "Convert yarn.lock files to nix expressions"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; maintainers = [ lib.maintainers.sternenseemann ]; + broken = true; }) {}; "yarr" = callPackage @@ -308500,6 +324735,8 @@ self: { ]; description = "Yet another array library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yarr-image-io" = callPackage @@ -308512,6 +324749,7 @@ self: { librarySystemDepends = [ libdevil ]; description = "Image IO for Yarr library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) libdevil;}; "yasi" = callPackage @@ -308552,6 +324790,8 @@ self: { ]; description = "Yet Another Template Engine"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yavie" = callPackage @@ -308571,6 +324811,7 @@ self: { executableHaskellDepends = [ base Cabal directory process ]; description = "yet another visual editor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "yavie"; }) {}; @@ -308618,6 +324859,8 @@ self: { ]; description = "Test suites for `yaya`"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yaya-unsafe" = callPackage @@ -308649,6 +324892,8 @@ self: { ]; description = "Test suites for `yaya-unsafe`"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ycextra" = callPackage @@ -308663,6 +324908,7 @@ self: { ]; description = "Additional utilities to work with Yhc Core"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yeamer" = callPackage @@ -308698,6 +324944,7 @@ self: { ]; description = "Yesod-based server for interactive presentation slides"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; }) {}; "yeganesh" = callPackage @@ -308741,6 +324988,8 @@ self: { ]; description = "A Yeller Client For Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yes-precure5-command" = callPackage @@ -308774,6 +325023,7 @@ self: { libraryHaskellDepends = [ base yeshql-core yeshql-hdbc ]; description = "YesQL-style SQL database abstraction (legacy compatibility wrapper)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "yeshql-core" = callPackage @@ -308813,6 +325063,8 @@ self: { ]; description = "YesQL-style SQL database abstraction (HDBC backend)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yeshql-postgresql-simple" = callPackage @@ -308834,6 +325086,8 @@ self: { ]; description = "YesQL-style SQL database abstraction (postgresql-simple backend)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod" = callPackage @@ -308870,6 +325124,7 @@ self: { ]; description = "Alert messages for the Yesod framework"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yesod-angular" = callPackage @@ -308886,6 +325141,8 @@ self: { ]; description = "Angular JS integratoin"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-angular-ui" = callPackage @@ -308905,6 +325162,8 @@ self: { ]; description = "Angular Helpers"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-articles" = callPackage @@ -308927,6 +325186,7 @@ self: { ]; description = "Automatically generate article previews for a yesod site"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yesod-auth" = callPackage @@ -308977,6 +325237,8 @@ self: { ]; description = "An account authentication plugin for Yesod"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-auth-account-fork" = callPackage @@ -309001,6 +325263,8 @@ self: { ]; description = "An account authentication plugin for Yesod"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-auth-basic" = callPackage @@ -309034,6 +325298,8 @@ self: { ]; description = "BCrypt salted and hashed passwords in a database as auth for yesod"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-auth-bcryptdb" = callPackage @@ -309050,6 +325316,8 @@ self: { ]; description = "Authentication plugin for Yesod"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-auth-deskcom" = callPackage @@ -309071,6 +325339,8 @@ self: { ]; description = "Desk.com remote authentication support for Yesod apps."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-auth-fb" = callPackage @@ -309088,6 +325358,8 @@ self: { ]; description = "Authentication backend for Yesod using Facebook"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-auth-hashdb" = callPackage @@ -309131,6 +325403,8 @@ self: { ]; description = "An account authentication plugin for yesod with encrypted token transfer"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-auth-kerberos" = callPackage @@ -309148,6 +325422,8 @@ self: { ]; description = "Kerberos Authentication for Yesod"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-auth-ldap" = callPackage @@ -309164,6 +325440,7 @@ self: { ]; description = "LDAP Authentication for Yesod"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yesod-auth-ldap-mediocre" = callPackage @@ -309179,6 +325456,8 @@ self: { ]; description = "Very simlple LDAP auth for yesod"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-auth-ldap-native" = callPackage @@ -309196,6 +325475,8 @@ self: { testHaskellDepends = [ base ]; description = "Yesod LDAP authentication plugin"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-auth-lti13" = callPackage @@ -309245,6 +325526,8 @@ self: { ]; description = "A plugin for Yesod to provide email-only authentication"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-auth-oauth" = callPackage @@ -309317,6 +325600,8 @@ self: { ]; description = "Provides PAM authentication module"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-auth-simple" = callPackage @@ -309375,6 +325660,8 @@ self: { ]; description = "Authentication plugin for Yesod using smbclient"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-auth-zendesk" = callPackage @@ -309393,6 +325680,8 @@ self: { ]; description = "Zendesk remote authentication support for Yesod apps"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-autoreload" = callPackage @@ -309459,6 +325748,8 @@ self: { ]; description = "Bootstrap widgets for yesod"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-colonnade" = callPackage @@ -309477,6 +325768,7 @@ self: { ]; description = "Helper functions for using yesod with colonnade"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yesod-comments" = callPackage @@ -309497,6 +325789,8 @@ self: { ]; description = "A generic comments interface for a Yesod application"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-content-pdf" = callPackage @@ -309518,6 +325812,8 @@ self: { ]; description = "PDF Content Type for Yesod"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-continuations" = callPackage @@ -309536,6 +325832,7 @@ self: { ]; description = "Continuations for Yesod"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "yesodContinuationsTest"; }) {}; @@ -309591,6 +325888,8 @@ self: { ]; description = "Generic administrative CRUD operations as a Yesod subsite"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-crud-persist" = callPackage @@ -309609,6 +325908,8 @@ self: { ]; description = "Flexible CRUD subsite usable with Yesod and Persistent"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-csp" = callPackage @@ -309630,6 +325931,8 @@ self: { ]; description = "Add CSP headers to Yesod apps"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-datatables" = callPackage @@ -309656,6 +325959,8 @@ self: { ]; description = "Yesod plugin for DataTables (jQuery grid plugin)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-default" = callPackage @@ -309693,7 +325998,9 @@ self: { ]; description = "DSL for generating Yesod subsite to manage an RDBMS;"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "yesod-dsl"; + broken = true; }) {}; "yesod-elements" = callPackage @@ -309745,6 +326052,7 @@ self: { executableSystemDepends = [ sqlite ]; description = "Example programs using the Yesod Web Framework. (deprecated)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) sqlite;}; "yesod-fast-devel" = callPackage @@ -309766,7 +326074,9 @@ self: { ]; description = "Fast live-reloading for yesod applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "yesod-fast-devel"; + broken = true; }) {}; "yesod-fay" = callPackage @@ -309786,6 +326096,7 @@ self: { ]; description = "Utilities for using the Fay Haskell-to-JS compiler with Yesod"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "yesod-fb" = callPackage @@ -309823,6 +326134,8 @@ self: { ]; description = "Automatic filter generator for Yesod"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-form" = callPackage @@ -309899,6 +326212,8 @@ self: { ]; description = "Extension for Yesod web framework to handle JSON requests as applicative forms"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-form-multi" = callPackage @@ -309931,6 +326246,8 @@ self: { ]; description = "Various rich-text WYSIWYG editors for Yesod forms"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-gitrepo" = callPackage @@ -309963,6 +326280,8 @@ self: { testHaskellDepends = [ base process template-haskell yesod-core ]; description = "A subsite for displaying git information"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-goodies" = callPackage @@ -309981,6 +326300,8 @@ self: { ]; description = "A collection of various small helpers useful in any yesod application"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-ip" = callPackage @@ -309999,6 +326320,8 @@ self: { ]; description = "Code for using the ip package with yesod"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-job-queue" = callPackage @@ -310020,6 +326343,8 @@ self: { testHaskellDepends = [ base ]; description = "Background jobs library for Yesod"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-json" = callPackage @@ -310048,6 +326373,8 @@ self: { ]; description = "Logging bridge between Yesod and Katip"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-links" = callPackage @@ -310061,6 +326388,8 @@ self: { libraryHaskellDepends = [ base text yesod-core ]; description = "A typeclass which simplifies creating link widgets throughout your site"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-lucid" = callPackage @@ -310072,6 +326401,8 @@ self: { libraryHaskellDepends = [ base lucid monads-tf text yesod-core ]; description = "Lucid support for Yesod"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-mangopay" = callPackage @@ -310091,6 +326422,7 @@ self: { ]; description = "Yesod library for MangoPay API access"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yesod-markdown" = callPackage @@ -310203,6 +326535,8 @@ self: { libraryHaskellDepends = [ base template-haskell yesod ]; description = "Pagination for Yesod sites"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-pagination" = callPackage @@ -310221,6 +326555,8 @@ self: { ]; description = "Pagination in Yesod"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-paginator" = callPackage @@ -310257,6 +326593,7 @@ self: { ]; description = "Yesod plugin to use PayPal with the paypal-rest-client library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "yesod-persistent" = callPackage @@ -310347,6 +326684,7 @@ self: { ]; description = "Meta package for Yesod (deprecated)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "yesod-pnotify" = callPackage @@ -310367,7 +326705,9 @@ self: { ]; description = "Yet another getMessage/setMessage using pnotify jquery plugins"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "sample"; + broken = true; }) {}; "yesod-pure" = callPackage @@ -310379,6 +326719,8 @@ self: { libraryHaskellDepends = [ base fast-logger text yesod yesod-core ]; description = "Yesod in pure Haskell: no Template Haskell or QuasiQuotes (deprecated)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-purescript" = callPackage @@ -310398,6 +326740,7 @@ self: { ]; description = "PureScript integration for Yesod"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "yesod-raml" = callPackage @@ -310421,6 +326764,8 @@ self: { ]; description = "RAML style route definitions for Yesod"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-raml-bin" = callPackage @@ -310443,6 +326788,7 @@ self: { ]; description = "The raml helper executable"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "yesod-raml-bin"; }) {}; @@ -310460,6 +326806,7 @@ self: { ]; description = "A html documentation generator library for RAML"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "yesod-raml-mock" = callPackage @@ -310483,6 +326830,7 @@ self: { ]; description = "A mock-handler generator library from RAML"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "yesod-recaptcha" = callPackage @@ -310501,6 +326849,8 @@ self: { ]; description = "Dead simple support for reCAPTCHA on Yesod applications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-recaptcha2" = callPackage @@ -310537,6 +326887,8 @@ self: { ]; description = "Efficient routing for Yesod. (deprecated)"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-routes-flow" = callPackage @@ -310575,6 +326927,7 @@ self: { ]; description = "generate TypeScript routes for Yesod"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "yesod-rst" = callPackage @@ -310591,6 +326944,8 @@ self: { ]; description = "Tools for using reStructuredText (RST) in a yesod application"; license = "GPL"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-s3" = callPackage @@ -310607,6 +326962,8 @@ self: { ]; description = "Simple Helper Library for using Amazon's Simple Storage Service (S3) with Yesod"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-sass" = callPackage @@ -310623,6 +326980,8 @@ self: { ]; description = "A simple quasiquoter to include sass code in yesod"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-session-redis" = callPackage @@ -310640,6 +326999,7 @@ self: { ]; description = "Redis-Powered Sessions for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yesod-sitemap" = callPackage @@ -310714,6 +327074,8 @@ self: { ]; description = "Yesod generators for embedding AngularJs code into yesod-static at compile time"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-static-remote" = callPackage @@ -310730,6 +327092,8 @@ self: { ]; testHaskellDepends = [ base yesod-static ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-static-streamly" = callPackage @@ -310755,6 +327119,8 @@ self: { ]; description = "A streamly-based library providing performance-focused alternatives for functionality found in yesod-static"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-table" = callPackage @@ -310825,6 +327191,8 @@ self: { ]; description = "Utility functions for testing JSON web services written in Yesod"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-text-markdown" = callPackage @@ -310841,6 +327209,8 @@ self: { ]; description = "Yesod support for Text.Markdown."; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-tls" = callPackage @@ -310857,6 +327227,8 @@ self: { ]; description = "Provides main functions using warp-tls for yesod projects"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-transloadit" = callPackage @@ -310880,6 +327252,8 @@ self: { ]; description = "Transloadit support for Yesod"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yesod-vend" = callPackage @@ -310901,7 +327275,9 @@ self: { ]; description = "Simple CRUD classes for easy view creation for Yesod"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "vend-test-user"; + broken = true; }) {}; "yesod-websockets" = callPackage @@ -310949,6 +327325,7 @@ self: { testHaskellDepends = [ base ]; description = "Initial project template from stack"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yet-another-logger" = callPackage @@ -310996,6 +327373,8 @@ self: { testHaskellDepends = [ base cryptonite hspec QuickCheck ]; description = "Executable specifications of composable cryptographic protocols"; license = lib.licenses.agpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yhccore" = callPackage @@ -311007,6 +327386,8 @@ self: { libraryHaskellDepends = [ base containers mtl pretty uniplate ]; description = "Yhc's Internal Core language"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yhseq" = callPackage @@ -311025,7 +327406,9 @@ self: { testToolDepends = [ hspec-discover ]; description = "Calculation of YH sequence system"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "yhseq"; + broken = true; }) {}; "yi" = callPackage @@ -311048,6 +327431,7 @@ self: { ]; description = "Yi editor"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; mainProgram = "yi"; }) {}; @@ -311067,6 +327451,7 @@ self: { ]; description = "Add-ons to Yi, the Haskell-Scriptable Editor"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "yi-core" = callPackage @@ -311099,6 +327484,7 @@ self: { benchmarkHaskellDepends = [ base criterion deepseq yi-rope ]; description = "Yi editor core library"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "yi-dynamic-configuration" = callPackage @@ -311115,6 +327501,7 @@ self: { ]; description = "Dynamic configuration support for Yi"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "yi-emacs-colours" = callPackage @@ -311126,6 +327513,7 @@ self: { libraryHaskellDepends = [ base containers split yi-language ]; description = "Simple mapping from colour names used in emacs to Color"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "yi-frontend-pango" = callPackage @@ -311145,6 +327533,7 @@ self: { ]; description = "Pango frontend for Yi editor"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "yi-frontend-vty" = callPackage @@ -311162,6 +327551,7 @@ self: { ]; description = "Vty frontend for Yi editor"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "yi-fuzzy-open" = callPackage @@ -311180,6 +327570,7 @@ self: { ]; description = "Fuzzy open plugin for yi"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "yi-gtk" = callPackage @@ -311207,6 +327598,7 @@ self: { ]; description = "Yi editor incremental reader"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "yi-keymap-cua" = callPackage @@ -311222,6 +327614,7 @@ self: { ]; description = "Cua keymap for Yi editor"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "yi-keymap-emacs" = callPackage @@ -311241,6 +327634,7 @@ self: { ]; description = "Emacs keymap for Yi editor"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "yi-keymap-vim" = callPackage @@ -311269,6 +327663,7 @@ self: { ]; description = "Vim keymap for Yi editor"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "yi-language" = callPackage @@ -311296,6 +327691,8 @@ self: { ]; description = "Collection of language-related Yi libraries"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yi-misc-modes" = callPackage @@ -311313,6 +327710,7 @@ self: { libraryToolDepends = [ alex ]; description = "Yi editor miscellaneous modes"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "yi-mode-haskell" = callPackage @@ -311330,6 +327728,7 @@ self: { libraryToolDepends = [ alex ]; description = "Yi editor haskell mode"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "yi-mode-javascript" = callPackage @@ -311350,6 +327749,7 @@ self: { libraryToolDepends = [ alex ]; description = "Yi editor javascript mode"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "yi-monokai" = callPackage @@ -311361,6 +327761,7 @@ self: { libraryHaskellDepends = [ base yi ]; description = "Monokai colour theme for the Yi text editor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yi-rope" = callPackage @@ -311400,6 +327801,7 @@ self: { ]; description = "Snippet support for yi"; license = lib.licenses.gpl2Only; + hydraPlatforms = lib.platforms.none; }) {}; "yi-solarized" = callPackage @@ -311411,6 +327813,7 @@ self: { libraryHaskellDepends = [ base yi ]; description = "Solarized colour theme for the Yi text editor"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "yi-spolsky" = callPackage @@ -311422,6 +327825,7 @@ self: { libraryHaskellDepends = [ base yi ]; description = "Spolsky colour theme for the Yi text editor"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "yi-vty" = callPackage @@ -311445,6 +327849,8 @@ self: { libraryHaskellDepends = [ base parsec process ]; description = "Haskell programming interface to Yices SMT solver"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yices-easy" = callPackage @@ -311518,6 +327924,7 @@ self: { executableHaskellDepends = [ hsConfigure ]; description = "CUI FTP client like 'ftp', 'ncftp'"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "yjftp"; }) {}; @@ -311532,6 +327939,7 @@ self: { libraryHaskellDepends = [ base directory ftphs mtl process unix ]; description = "CUI FTP client like 'ftp', 'ncftp'"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "yjftp-ni"; }) {}; @@ -311584,6 +327992,8 @@ self: { libraryHaskellDepends = [ base free mtl ]; description = "A truly tiny monadic parsing library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yoda" = callPackage @@ -311595,6 +328005,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Parser combinators for young padawans"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yoga" = callPackage @@ -311627,6 +328039,7 @@ self: { ]; description = "Generic Programming with Disbanded Data Types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "york-lava" = callPackage @@ -311638,6 +328051,7 @@ self: { libraryHaskellDepends = [ base containers haskell98 ]; description = "A library for digital circuit description"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "youtube" = callPackage @@ -311681,6 +328095,7 @@ self: { ]; description = "A YQL engine to execute Open Data Tables"; license = lib.licenses.bsd2; + hydraPlatforms = lib.platforms.none; mainProgram = "yql"; }) {}; @@ -311743,6 +328158,8 @@ self: { testHaskellDepends = [ base blaze-markup hspec yu-utils ]; description = "The core of Yu"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yu-launch" = callPackage @@ -311758,6 +328175,7 @@ self: { ]; description = "The launcher for Yu"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "yu-launch"; }) {}; @@ -311776,7 +328194,9 @@ self: { ]; description = "Tool for Yu"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "yu"; + broken = true; }) {}; "yu-utils" = callPackage @@ -311811,6 +328231,8 @@ self: { libraryHaskellDepends = [ base ]; description = "Grids defined by layout hints and implemented on top of Yahoo grids"; license = "unknown"; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yuuko" = callPackage @@ -311834,6 +328256,7 @@ self: { ]; description = "A transcendental HTML parser gently wrapping the HXT library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "yuuko"; }) {}; @@ -311885,6 +328308,8 @@ self: { ]; description = "Utilities for reading and writing Alteryx .yxdb files"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "z3" = callPackage @@ -311914,6 +328339,8 @@ self: { testHaskellDepends = [ base containers hspec z3 ]; description = "High-level assertion encoding to Z3 solver"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "z85" = callPackage @@ -311937,6 +328364,8 @@ self: { ]; description = "Implementation of the z85 binary codec"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zabt" = callPackage @@ -311949,6 +328378,8 @@ self: { testHaskellDepends = [ base tasty tasty-hspec ]; description = "Simple-minded abstract binding trees"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zalgo" = callPackage @@ -311978,7 +328409,9 @@ self: { ]; description = "A tool for checking how much work is done on group projects"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "zampolit"; + broken = true; }) {}; "zasni-gerna" = callPackage @@ -311990,6 +328423,7 @@ self: { libraryHaskellDepends = [ base papillon ]; description = "lojban parser (zasni gerna)"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "zbar" = callPackage @@ -312003,6 +328437,8 @@ self: { libraryToolDepends = [ c2hs ]; description = "zbar bindings in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) zbar;}; "zcache" = callPackage @@ -312099,6 +328535,8 @@ self: { ]; description = "Zendesk API for Haskell programming language"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zenhack-prelude" = callPackage @@ -312131,7 +328569,9 @@ self: { ]; description = "An automated proof system for Haskell programs"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "zeno"; + broken = true; }) {}; "zeolite-lang" = callPackage @@ -312158,6 +328598,8 @@ self: { doHaddock = false; description = "Zeolite is a statically-typed, general-purpose programming language"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zephyr" = callPackage @@ -312190,6 +328632,7 @@ self: { testToolDepends = [ purescript ]; description = "Zephyr, tree-shaking for the PureScript language"; license = lib.licenses.mpl20; + hydraPlatforms = lib.platforms.none; mainProgram = "zephyr"; }) {}; @@ -312209,6 +328652,7 @@ self: { testHaskellDepends = [ base directory process temporary ]; description = "Embedded programming in haskell using the Copilot stream DSL and Zephyr"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "zero" = callPackage @@ -312220,6 +328664,8 @@ self: { libraryHaskellDepends = [ base semigroups ]; description = "Semigroups with absorption"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zerobin" = callPackage @@ -312241,6 +328687,7 @@ self: { ]; description = "Post to 0bin services"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "zerobin"; }) {}; @@ -312260,6 +328707,8 @@ self: { ]; description = "Bindings to ZeroMQ 2.1.x"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) zeromq;}; "zeromq3-conduit" = callPackage @@ -312276,6 +328725,7 @@ self: { ]; description = "Conduit bindings for zeromq3-haskell"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; }) {}; "zeromq3-haskell" = callPackage @@ -312298,6 +328748,8 @@ self: { ]; description = "Bindings to ZeroMQ 3.x"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) zeromq;}; "zeromq4-clone-pattern" = callPackage @@ -312343,6 +328795,8 @@ self: { testHaskellDepends = [ base ]; description = "Conduit wrapper around zeromq4-haskell"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zeromq4-haskell" = callPackage @@ -312426,6 +328880,7 @@ self: { ]; description = "ZeroTH - remove unnecessary TH dependencies"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "zeroth"; }) {}; @@ -312451,7 +328906,9 @@ self: { testHaskellDepends = [ base ]; description = "Command-line utility for working with zettelkast files"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "zettelkast"; + broken = true; }) {}; "zeugma" = callPackage @@ -312492,6 +328949,8 @@ self: { ]; description = "zifter"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zifter-cabal" = callPackage @@ -312507,6 +328966,7 @@ self: { ]; description = "zifter-cabal"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "zifter-git" = callPackage @@ -312518,6 +328978,7 @@ self: { libraryHaskellDepends = [ base path process zifter ]; description = "zifter-git"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "zifter-google-java-format" = callPackage @@ -312533,6 +328994,7 @@ self: { ]; description = "zifter-google-java-format"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "zifter-hindent" = callPackage @@ -312548,6 +329010,7 @@ self: { ]; description = "zifter-hindent"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "zifter-hlint" = callPackage @@ -312562,6 +329025,7 @@ self: { ]; description = "zifter-hlint"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "zifter-stack" = callPackage @@ -312581,6 +329045,7 @@ self: { ]; description = "zifter-stack"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "zigbee-znet25" = callPackage @@ -312597,6 +329062,8 @@ self: { testHaskellDepends = [ base bytestring mtl QuickCheck random ]; description = "XBee ZNet 2.5 (ZigBee) wireless modem communications"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zigzag" = callPackage @@ -312769,6 +329236,8 @@ self: { ]; description = "Working with zip archives via conduits"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zip-stream" = callPackage @@ -312807,6 +329276,8 @@ self: { libraryHaskellDepends = [ base directory mtl process ]; description = "Create simple list editor interfaces"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zipkin" = callPackage @@ -312822,6 +329293,8 @@ self: { ]; description = "Zipkin-style request tracing monad"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zipper" = callPackage @@ -312833,6 +329306,7 @@ self: { libraryHaskellDepends = [ base multirec ]; description = "Generic zipper for families of recursive datatypes"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "zipper-extra" = callPackage @@ -312877,6 +329351,7 @@ self: { libraryHaskellDepends = [ base mtl yall ]; description = "A simple lens-based, generic, heterogenous, type-checked zipper library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ziptastic-client" = callPackage @@ -312898,6 +329373,7 @@ self: { ]; description = "A type-safe client for the Ziptastic API for doing forward and reverse geocoding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "ziptastic-core" = callPackage @@ -312917,6 +329393,8 @@ self: { ]; description = "Core Servant specification for the Ziptastic API for doing forward and reverse geocoding"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zlib" = callPackage @@ -312966,6 +329444,8 @@ self: { ]; description = "zlib compression bindings"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zlib-conduit" = callPackage @@ -312995,6 +329475,7 @@ self: { ]; description = "Enumerator interface for zlib compression"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "zlib-lens" = callPackage @@ -313006,6 +329487,8 @@ self: { libraryHaskellDepends = [ base bytestring profunctors zlib ]; description = "Lenses for zlib"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zm" = callPackage @@ -313028,6 +329511,7 @@ self: { ]; description = "Language independent, reproducible, absolute types"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "zmcat" = callPackage @@ -313042,6 +329526,7 @@ self: { executableHaskellDepends = [ base bytestring ]; description = "Command-line tool for ZeroMQ"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "zmcat"; }) {}; @@ -313071,6 +329556,8 @@ self: { ]; description = "Representing MIDI a simple score"; license = lib.licenses.lgpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zmqat" = callPackage @@ -313088,7 +329575,9 @@ self: { ]; description = "A socat-like tool for zeromq library"; license = "unknown"; + hydraPlatforms = lib.platforms.none; mainProgram = "zmqat"; + broken = true; }) {}; "zoneinfo" = callPackage @@ -313100,6 +329589,8 @@ self: { libraryHaskellDepends = [ base time ]; description = "ZoneInfo library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zoom" = callPackage @@ -313118,7 +329609,9 @@ self: { ]; description = "A rake/thor-like task runner written in Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "zoom"; + broken = true; }) {}; "zoom-cache" = callPackage @@ -313150,6 +329643,7 @@ self: { ]; description = "A streamable, seekable, zoomable cache file format"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "zoom-cache"; }) {}; @@ -313167,6 +329661,7 @@ self: { ]; description = "Library for zoom-cache PCM audio codecs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "zoom-cache-sndfile" = callPackage @@ -313186,6 +329681,7 @@ self: { ]; description = "Tools for generating zoom-cache-pcm files"; license = lib.licenses.lgpl21Only; + hydraPlatforms = lib.platforms.none; mainProgram = "zoom-cache-sndfile"; }) {}; @@ -313198,6 +329694,8 @@ self: { libraryHaskellDepends = [ base lens stm ]; description = "Zoom (~ Functor) and pairing (~ Applicative) for mutable references"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zoovisitor" = callPackage @@ -313280,6 +329778,8 @@ self: { ]; description = "Zero-Suppressed and Reduced Decision Diagrams"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zsh-battery" = callPackage @@ -313293,7 +329793,9 @@ self: { executableHaskellDepends = [ base directory filepath mtl ]; description = "Ascii bars representing battery status"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "zsh-battery"; + broken = true; }) {}; "zstd" = callPackage @@ -313328,6 +329830,8 @@ self: { testHaskellDepends = [ base containers mtl multiset ]; description = "Automated theorem prover for the Zsyntax biochemical calculus"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "ztail" = callPackage @@ -313346,7 +329850,9 @@ self: { ]; description = "Multi-file, colored, filtered log tailer"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "ztail"; + broken = true; }) {}; "ztar" = callPackage @@ -313408,6 +329914,7 @@ self: { testToolDepends = [ tasty-discover ]; description = "A lisp processor, An inline-lisp, in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "maru"; }) {}; @@ -313432,7 +329939,9 @@ self: { testHaskellDepends = [ aeson base bytestring tasty tasty-hunit ]; description = "A zuul client library"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; mainProgram = "zuul-cli"; + broken = true; }) {}; "zxcvbn-c" = callPackage @@ -313462,6 +329971,8 @@ self: { ]; description = "Password strength estimation based on zxcvbn"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zxcvbn-hs" = callPackage @@ -313517,6 +330028,8 @@ self: { ]; description = "Haskell language binding for the Zydis library, a x86/x86-64 disassembler"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "zyre2" = callPackage @@ -313539,7 +330052,9 @@ self: { testHaskellDepends = [ base bytestring containers inline-c text ]; description = "Haskell zyre bindings for reliable group messaging over local area networks"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "zyre-example-exe"; + broken = true; }) {inherit (pkgs) czmq; zyre = null;}; } From 00b0824635f1ab030234124d79af4fbea1d0053c Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 3 Sep 2023 21:39:04 +0200 Subject: [PATCH 049/346] maintainers/haskell/hydra-report.hs: allow disabling log requesting Since every failure in the jobset means one request to get the log when generating the list of newly broken packages, we need to add an option to disable log requesting in case a lot of new breakage needs to be entered. --- maintainers/scripts/haskell/hydra-report.hs | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/maintainers/scripts/haskell/hydra-report.hs b/maintainers/scripts/haskell/hydra-report.hs index 5f7e40a28bcd..3dbd66f2e4c2 100755 --- a/maintainers/scripts/haskell/hydra-report.hs +++ b/maintainers/scripts/haskell/hydra-report.hs @@ -151,15 +151,18 @@ data Build = Build } deriving (Generic, ToJSON, FromJSON, Show) +data RequestLogsFlag = RequestLogs | NoRequestLogs + main :: IO () main = do args <- getArgs case args of ["get-report"] -> getBuildReports ["ping-maintainers"] -> printMaintainerPing - ["mark-broken-list"] -> printMarkBrokenList + ["mark-broken-list", "--no-request-logs"] -> printMarkBrokenList NoRequestLogs + ["mark-broken-list"] -> printMarkBrokenList RequestLogs ["eval-info"] -> printEvalInfo - _ -> putStrLn "Usage: get-report | ping-maintainers | mark-broken-list | eval-info" + _ -> putStrLn "Usage: get-report | ping-maintainers | mark-broken-list [--no-request-logs] | eval-info" reportFileName :: IO FilePath reportFileName = getXdgDirectory XdgCache "haskell-updates-build-report.json" @@ -775,16 +778,20 @@ printMaintainerPing = do textBuildSummary = printBuildSummary eval fetchTime buildSum topBrokenRdeps Text.putStrLn textBuildSummary -printMarkBrokenList :: IO () -printMarkBrokenList = do +printMarkBrokenList :: RequestLogsFlag -> IO () +printMarkBrokenList reqLogs = do (_, fetchTime, buildReport) <- readBuildReports runReq defaultHttpConfig $ forM_ buildReport \build@Build{job, id} -> case (getBuildState build, Text.splitOn "." $ unJobName job) of (Failed, ["haskellPackages", name, "x86_64-linux"]) -> do - -- Fetch build log from hydra to figure out the cause of the error. - build_log <- ByteString.lines <$> hydraPlainQuery ["build", showT id, "nixlog", "1", "raw"] -- We use the last probable error cause found in the build log file. - let error_message = fromMaybe " failure " $ safeLast $ mapMaybe probableErrorCause build_log + error_message <- fromMaybe "failure" <$> + case reqLogs of + NoRequestLogs -> pure Nothing + RequestLogs -> do + -- Fetch build log from hydra to figure out the cause of the error. + build_log <- ByteString.lines <$> hydraPlainQuery ["build", showT id, "nixlog", "1", "raw"] + pure $ safeLast $ mapMaybe probableErrorCause build_log liftIO $ putStrLn $ " - " <> Text.unpack name <> " # " <> error_message <> " in job https://hydra.nixos.org/build/" <> show id <> " at " <> formatTime defaultTimeLocale "%Y-%m-%d" fetchTime _ -> pure () From 76dc15354424f88c38124d5467b18dd5476ecc40 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 3 Sep 2023 21:54:03 +0200 Subject: [PATCH 050/346] maintainers/haskell/hydra-report.hs: work around bulk status timeout This change adds a flag --slow to hydra-report.sh get-report which causes it to fetch the cheap evaluation overview endpoint (which only contains build ids and meta data). The gathered information is then used to request each build's status individually instead of in bulk which is very slow, but useful as a last resort if the bulk endpoint times out. --- maintainers/scripts/haskell/hydra-report.hs | 26 +++++++++++++++------ 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/maintainers/scripts/haskell/hydra-report.hs b/maintainers/scripts/haskell/hydra-report.hs index 3dbd66f2e4c2..68ba75452d43 100755 --- a/maintainers/scripts/haskell/hydra-report.hs +++ b/maintainers/scripts/haskell/hydra-report.hs @@ -30,7 +30,7 @@ Because step 1) is quite expensive and takes roughly ~5 minutes the result is ca {-# OPTIONS_GHC -Wall #-} {-# LANGUAGE DataKinds #-} -import Control.Monad (forM_, (<=<)) +import Control.Monad (forM_, forM, (<=<)) import Control.Monad.Trans (MonadIO (liftIO)) import Data.Aeson ( FromJSON, @@ -108,6 +108,7 @@ newtype JobsetEvalInputs = JobsetEvalInputs {nixpkgs :: Nixpkgs} data Eval = Eval { id :: Int , jobsetevalinputs :: JobsetEvalInputs + , builds :: Seq Int } deriving (Generic, ToJSON, FromJSON, Show) @@ -151,18 +152,20 @@ data Build = Build } deriving (Generic, ToJSON, FromJSON, Show) +data HydraSlownessWorkaroundFlag = HydraSlownessWorkaround | NoHydraSlownessWorkaround data RequestLogsFlag = RequestLogs | NoRequestLogs main :: IO () main = do args <- getArgs case args of - ["get-report"] -> getBuildReports + ["get-report", "--slow"] -> getBuildReports HydraSlownessWorkaround + ["get-report"] -> getBuildReports NoHydraSlownessWorkaround ["ping-maintainers"] -> printMaintainerPing ["mark-broken-list", "--no-request-logs"] -> printMarkBrokenList NoRequestLogs ["mark-broken-list"] -> printMarkBrokenList RequestLogs ["eval-info"] -> printEvalInfo - _ -> putStrLn "Usage: get-report | ping-maintainers | mark-broken-list [--no-request-logs] | eval-info" + _ -> putStrLn "Usage: get-report [--slow] | ping-maintainers | mark-broken-list [--no-request-logs] | eval-info" reportFileName :: IO FilePath reportFileName = getXdgDirectory XdgCache "haskell-updates-build-report.json" @@ -170,18 +173,27 @@ reportFileName = getXdgDirectory XdgCache "haskell-updates-build-report.json" showT :: Show a => a -> Text showT = Text.pack . show -getBuildReports :: IO () -getBuildReports = runReq defaultHttpConfig do +getBuildReports :: HydraSlownessWorkaroundFlag -> IO () +getBuildReports opt = runReq defaultHttpConfig do evalMay <- Seq.lookup 0 . evals <$> hydraJSONQuery mempty ["jobset", "nixpkgs", "haskell-updates", "evals"] eval@Eval{id} <- maybe (liftIO $ fail "No Evalution found") pure evalMay liftIO . putStrLn $ "Fetching evaluation " <> show id <> " from Hydra. This might take a few minutes..." - buildReports :: Seq Build <- hydraJSONQuery (responseTimeout 600000000) ["eval", showT id, "builds"] + buildReports <- getEvalBuilds opt id liftIO do fileName <- reportFileName putStrLn $ "Finished fetching all builds from Hydra, saving report as " <> fileName now <- getCurrentTime encodeFile fileName (eval, now, buildReports) +getEvalBuilds :: HydraSlownessWorkaroundFlag -> Int -> Req (Seq Build) +getEvalBuilds NoHydraSlownessWorkaround id = + hydraJSONQuery (responseTimeout 600000000) ["eval", showT id, "builds"] +getEvalBuilds HydraSlownessWorkaround id = do + Eval{builds} <- hydraJSONQuery mempty [ "eval", showT id ] + forM builds $ \buildId -> do + liftIO $ putStrLn $ "Querying build " <> show buildId + hydraJSONQuery mempty [ "build", showT buildId ] + hydraQuery :: HttpResponse a => Proxy a -> Option 'Https -> [Text] -> Req (HttpResponseBody a) hydraQuery responseType option query = responseBody @@ -190,7 +202,7 @@ hydraQuery responseType option query = (foldl' (/:) (https "hydra.nixos.org") query) NoReqBody responseType - (header "User-Agent" "hydra-report.hs/v1 (nixpkgs;maintainers/scripts/haskell)" <> option) + (header "User-Agent" "hydra-report.hs/v1 (nixpkgs;maintainers/scripts/haskell) pls fix https://github.com/NixOS/nixos-org-configurations/issues/270" <> option) hydraJSONQuery :: FromJSON a => Option 'Https -> [Text] -> Req a hydraJSONQuery = hydraQuery jsonResponse From 71cbb538a5b9cb6b69cea6f0c386f29b5f5a5f2e Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 3 Sep 2023 21:56:38 +0200 Subject: [PATCH 051/346] maintainers/haskell/hydra-report.hs: increase timeout to 15min This seems to be the server side Hydra timeout as well, so it makes sense waiting as long as Hydra will try to give a response. --- maintainers/scripts/haskell/hydra-report.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintainers/scripts/haskell/hydra-report.hs b/maintainers/scripts/haskell/hydra-report.hs index 68ba75452d43..0b8ca6bd1f46 100755 --- a/maintainers/scripts/haskell/hydra-report.hs +++ b/maintainers/scripts/haskell/hydra-report.hs @@ -187,7 +187,7 @@ getBuildReports opt = runReq defaultHttpConfig do getEvalBuilds :: HydraSlownessWorkaroundFlag -> Int -> Req (Seq Build) getEvalBuilds NoHydraSlownessWorkaround id = - hydraJSONQuery (responseTimeout 600000000) ["eval", showT id, "builds"] + hydraJSONQuery (responseTimeout 900000000) ["eval", showT id, "builds"] getEvalBuilds HydraSlownessWorkaround id = do Eval{builds} <- hydraJSONQuery mempty [ "eval", showT id ] forM builds $ \buildId -> do From 5a835f67429e95871a3502d6bfd7055754ca1508 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 3 Sep 2023 22:15:15 +0200 Subject: [PATCH 052/346] maintainers/haskell/mark-broken.sh: allow passing --no-request-logs This flag needs to be passed through to hydra-report.hs. --- maintainers/scripts/haskell/mark-broken.sh | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/maintainers/scripts/haskell/mark-broken.sh b/maintainers/scripts/haskell/mark-broken.sh index 2624311aac9d..9aa9433b8023 100755 --- a/maintainers/scripts/haskell/mark-broken.sh +++ b/maintainers/scripts/haskell/mark-broken.sh @@ -10,6 +10,24 @@ set -euo pipefail +do_commit=false +mark_broken_list_flags="" + +for arg in "$@"; do + case "$arg" in + --do-commit) + do_commit=true + ;; + --no-request-logs) + mark_broken_list_flags="$mark_broken_list_flags $arg" + ;; + *) + echo "$0: unknown flag: $arg" + exit 100 + ;; + esac +done + broken_config="pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml" tmpfile=$(mktemp) @@ -17,7 +35,7 @@ trap "rm ${tmpfile}" 0 echo "Remember that you need to manually run 'maintainers/scripts/haskell/hydra-report.hs get-report' sometime before running this script." echo "Generating a list of broken builds and displaying for manual confirmation ..." -maintainers/scripts/haskell/hydra-report.hs mark-broken-list | sort -i > "$tmpfile" +maintainers/scripts/haskell/hydra-report.hs mark-broken-list $mark_broken_list_flags | sort -i > "$tmpfile" $EDITOR "$tmpfile" @@ -34,7 +52,7 @@ clear="env -u HOME -u NIXPKGS_CONFIG" $clear maintainers/scripts/haskell/regenerate-hackage-packages.sh evalline=$(maintainers/scripts/haskell/hydra-report.hs eval-info) -if [[ "${1:-}" == "--do-commit" ]]; then +if $do_commit; then git add $broken_config git add pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml git add pkgs/development/haskell-modules/hackage-packages.nix From fdc5f7e0cb699e3033946144c99f9e6ecffa8824 Mon Sep 17 00:00:00 2001 From: Aidan Gauland Date: Fri, 1 Sep 2023 21:53:31 +1200 Subject: [PATCH 053/346] haskellPackages.twain: build against supported version of http2 --- .../haskell-modules/configuration-common.nix | 3 ++ .../configuration-hackage2nix/main.yaml | 1 + .../haskell-modules/hackage-packages.nix | 35 +++++++++++++++++++ 3 files changed, 39 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index fa82eb527533..ac38bb595595 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -309,6 +309,9 @@ self: super: { # defined as >= 3.1 && < 3.2, can be removed once pandoc gets bumped by Stackage. patat = super.patat.override { pandoc = self.pandoc_3_1_6_1; }; + # http2 also overridden in all-packages.nix for mailctl. + twain = super.twain.override { http2 = self.http2_3_0_3; }; + # The latest release on hackage has an upper bound on containers which # breaks the build, though it works with the version of containers present # and the upper bound doesn't exist in code anymore: diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml index 1af167f53538..bc319449dc6b 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml @@ -107,6 +107,7 @@ extra-packages: - hspec-discover < 2.8 # 2022-04-07: Needed for tasty-hspec 1.1.6 - hspec-meta < 2.8 # 2022-12-07: Needed for elmPackages.elm / hspec-discover - hspec-golden == 0.1.* # 2022-04-07: Needed for elm-format + - http2 < 3.3 # 2023-08-24: Needed for twain - immortal == 0.2.2.1 # required by Hasura 1.3.1, 2020-08-20 - language-docker == 11.0.0 # required by hadolint 2.12.0, 2022-11-16 - language-javascript == 0.7.0.0 # required by purescript diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 9f938591c9a0..6188c5770a69 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -152450,6 +152450,41 @@ self: { license = lib.licenses.bsd3; }) {}; + "http2_3_0_3" = callPackage + ({ mkDerivation, aeson, aeson-pretty, array, async, base + , base16-bytestring, bytestring, case-insensitive, containers + , cryptonite, directory, filepath, gauge, Glob, heaps, hspec + , hspec-discover, http-types, mwc-random, network + , network-byte-order, network-run, psqueues, stm, text + , time-manager, typed-process, unix-time, unordered-containers + , vector + }: + mkDerivation { + pname = "http2"; + version = "3.0.3"; + sha256 = "1kv99i3pnnx31xndlkaczrpd2j5mvzbqlfz1kaw6cwlwkdnl5bhv"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array async base bytestring case-insensitive containers http-types + network network-byte-order psqueues stm time-manager unix-time + ]; + testHaskellDepends = [ + aeson aeson-pretty async base base16-bytestring bytestring + cryptonite directory filepath Glob hspec http-types network + network-byte-order network-run text typed-process + unordered-containers vector + ]; + testToolDepends = [ hspec-discover ]; + benchmarkHaskellDepends = [ + array base bytestring case-insensitive containers gauge heaps + mwc-random network-byte-order psqueues stm + ]; + description = "HTTP/2 library"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + }) {}; + "http2" = callPackage ({ mkDerivation, aeson, aeson-pretty, array, async, base , base16-bytestring, bytestring, case-insensitive, containers From d28bfba5de8ad4a53f8b71ee18899818f9461d38 Mon Sep 17 00:00:00 2001 From: Aidan Gauland Date: Fri, 1 Sep 2023 21:54:14 +1200 Subject: [PATCH 054/346] mailctl: fix broken transitive dependency --- pkgs/top-level/all-packages.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d12a48a42f75..f41d73ed5e56 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2654,7 +2654,11 @@ with pkgs; mainsail = callPackage ../applications/misc/mainsail { }; # Does not build with default Haskell version because upstream uses a newer Cabal version. - mailctl = haskell.packages.ghc94.callPackage ../tools/networking/mailctl { }; + mailctl = (haskell.packages.ghc94.callPackage ../tools/networking/mailctl {}).overrideScope (final: prev: { + # Dependency twain requires an older version of http2, and we cannot mix + # versions of transitive dependencies. + http2 = final.http2_3_0_3; + }); mame = libsForQt5.callPackage ../applications/emulators/mame { }; From d215f3eb05223eec2e46948b4cb222e7d7e3ab7b Mon Sep 17 00:00:00 2001 From: Aidan Gauland Date: Sun, 3 Sep 2023 08:26:12 +1200 Subject: [PATCH 055/346] mailctl: use haskellPackages mailctl now builds against current haskellPackages, so the override is unneeded. --- pkgs/top-level/all-packages.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f41d73ed5e56..086ae2574b05 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2653,8 +2653,7 @@ with pkgs; mainsail = callPackage ../applications/misc/mainsail { }; - # Does not build with default Haskell version because upstream uses a newer Cabal version. - mailctl = (haskell.packages.ghc94.callPackage ../tools/networking/mailctl {}).overrideScope (final: prev: { + mailctl = (haskellPackages.callPackage ../tools/networking/mailctl {}).overrideScope (final: prev: { # Dependency twain requires an older version of http2, and we cannot mix # versions of transitive dependencies. http2 = final.http2_3_0_3; From a391e9469ae9291d7a5cdc106c0d7cae79bb70a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viorel-C=C4=83t=C4=83lin=20R=C4=83pi=C8=9Beanu?= Date: Mon, 4 Sep 2023 16:26:23 +0300 Subject: [PATCH 056/346] python3Packages.wikitextparser: init at 0.54.0 Add Python package wikitextparser. Homepage: https://github.com/5j9/wikitextparser Easily extract and/or manipulate templates, template parameters, parser functions, tables, external links, wikilinks, lists, etc. found in wikitexts. --- .../python-modules/wikitextparser/default.nix | 39 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 41 insertions(+) create mode 100644 pkgs/development/python-modules/wikitextparser/default.nix diff --git a/pkgs/development/python-modules/wikitextparser/default.nix b/pkgs/development/python-modules/wikitextparser/default.nix new file mode 100644 index 000000000000..b65f18b6c6ec --- /dev/null +++ b/pkgs/development/python-modules/wikitextparser/default.nix @@ -0,0 +1,39 @@ +{ buildPythonPackage +, fetchFromGitHub +, lib +, pytestCheckHook +, regex +, wcwidth +}: + +buildPythonPackage rec { + pname = "wikitextparser"; + version = "0.54.0"; + format = "pyproject"; + + src = fetchFromGitHub { + owner = "5j9"; + repo = "wikitextparser"; + rev = "v${version}"; + hash = "sha256-AGQfjUNxeleuTS200QMdZS8CSD2t4ah5NMm9TIYjVHk="; + }; + + propagatedBuildInputs = [ + wcwidth + regex + ]; + + nativeCheckInputs = [ + pytestCheckHook + ]; + + pythonImportsCheck = [ "wikitextparser" ]; + + meta = { + homepage = "https://github.com/5j9/wikitextparser"; + description = "A simple parsing tool for MediaWiki's wikitext markup"; + changelog = "https://github.com/5j9/wikitextparser/blob/v${version}/CHANGELOG.rst"; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ rapiteanu ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3c34eb74a62f..5e563a0faa5e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13776,6 +13776,8 @@ self: super: with self; { wikipedia = callPackage ../development/python-modules/wikipedia { }; + wikitextparser = callPackage ../development/python-modules/wikitextparser { }; + willow = callPackage ../development/python-modules/willow { }; winacl = callPackage ../development/python-modules/winacl { }; From 90fcbd21f67203adeb676ea694696c1c115adc18 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 5 Sep 2023 21:47:52 +0200 Subject: [PATCH 057/346] =?UTF-8?q?ocamlPackages.tar:=202.2.2=20=E2=86=92?= =?UTF-8?q?=202.5.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/tar/default.nix | 10 ++-------- pkgs/development/ocaml-modules/tar/unix.nix | 6 +++++- pkgs/top-level/ocaml-packages.nix | 4 +++- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pkgs/development/ocaml-modules/tar/default.nix b/pkgs/development/ocaml-modules/tar/default.nix index 031bd4d5b141..3a21fd21a0c3 100644 --- a/pkgs/development/ocaml-modules/tar/default.nix +++ b/pkgs/development/ocaml-modules/tar/default.nix @@ -2,20 +2,18 @@ , fetchurl , buildDunePackage , camlp-streams -, ppx_cstruct , cstruct , decompress }: buildDunePackage rec { pname = "tar"; - version = "2.2.2"; + version = "2.5.1"; src = fetchurl { url = "https://github.com/mirage/ocaml-tar/releases/download/v${version}/tar-${version}.tbz"; - hash = "sha256-Q+41LPFZFHi9sXKFV3F13FZZNO3KXRSElEmr+nH58Uw="; + hash = "sha256-00QPSIZnoFvhZEnDcdEDJUqhE0uKLxNMM2pUE8aMPfQ="; }; - duneVersion = "3"; minimalOCamlVersion = "4.08"; propagatedBuildInputs = [ @@ -24,10 +22,6 @@ buildDunePackage rec { decompress ]; - buildInputs = [ - ppx_cstruct - ]; - doCheck = true; meta = { diff --git a/pkgs/development/ocaml-modules/tar/unix.nix b/pkgs/development/ocaml-modules/tar/unix.nix index 9426a6aaf10f..92b5a9237f5d 100644 --- a/pkgs/development/ocaml-modules/tar/unix.nix +++ b/pkgs/development/ocaml-modules/tar/unix.nix @@ -3,12 +3,12 @@ , tar , cstruct-lwt , lwt +, git }: buildDunePackage rec { pname = "tar-unix"; inherit (tar) version src doCheck; - duneVersion = "3"; propagatedBuildInputs = [ tar @@ -16,6 +16,10 @@ buildDunePackage rec { lwt ]; + nativeCheckInputs = [ + git + ]; + meta = tar.meta // { description = "Decode and encode tar format files from Unix"; }; diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix index 64e3e12d7dba..85bf5a0f8160 100644 --- a/pkgs/top-level/ocaml-packages.nix +++ b/pkgs/top-level/ocaml-packages.nix @@ -1693,7 +1693,9 @@ let tar = callPackage ../development/ocaml-modules/tar { }; - tar-unix = callPackage ../development/ocaml-modules/tar/unix.nix { }; + tar-unix = callPackage ../development/ocaml-modules/tar/unix.nix { + inherit (pkgs) git; + }; tcpip = callPackage ../development/ocaml-modules/tcpip { }; From ac54dfcdf24d6969026f06ef963795094293f387 Mon Sep 17 00:00:00 2001 From: Tommy Bidne Date: Wed, 6 Sep 2023 09:22:15 +1200 Subject: [PATCH 058/346] haskellPackages.file-io: unbreak for ghc 9.6 --- pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix index d0efc39ae8f5..182a259df31c 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix @@ -79,6 +79,9 @@ self: super: { aeson = doJailbreak super.aeson; free = doJailbreak super.free; + # Requires filepath >= 1.4.100.0 <=> GHC >= 9.6 + file-io = unmarkBroken super.file-io; + # Too strict upper bound on template-haskell # https://github.com/mokus0/th-extras/pull/21 th-extras = doJailbreak super.th-extras; From ba46866a27b73de53c3a1b3ba9f402eea65ad429 Mon Sep 17 00:00:00 2001 From: maralorn Date: Wed, 6 Sep 2023 00:06:02 +0200 Subject: [PATCH 059/346] maintainers/scripts/haskell: Fix a typo --- maintainers/scripts/haskell/hydra-report.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintainers/scripts/haskell/hydra-report.hs b/maintainers/scripts/haskell/hydra-report.hs index 0b8ca6bd1f46..5573e5e5afc6 100755 --- a/maintainers/scripts/haskell/hydra-report.hs +++ b/maintainers/scripts/haskell/hydra-report.hs @@ -176,7 +176,7 @@ showT = Text.pack . show getBuildReports :: HydraSlownessWorkaroundFlag -> IO () getBuildReports opt = runReq defaultHttpConfig do evalMay <- Seq.lookup 0 . evals <$> hydraJSONQuery mempty ["jobset", "nixpkgs", "haskell-updates", "evals"] - eval@Eval{id} <- maybe (liftIO $ fail "No Evalution found") pure evalMay + eval@Eval{id} <- maybe (liftIO $ fail "No Evaluation found") pure evalMay liftIO . putStrLn $ "Fetching evaluation " <> show id <> " from Hydra. This might take a few minutes..." buildReports <- getEvalBuilds opt id liftIO do From 65d145e597c48d2ef59cff3ac885cb246657598f Mon Sep 17 00:00:00 2001 From: linuxissuper Date: Sun, 16 Apr 2023 14:35:58 +0200 Subject: [PATCH 060/346] dtool: init at 0.12.0 --- pkgs/tools/misc/dtool/default.nix | 33 +++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 pkgs/tools/misc/dtool/default.nix diff --git a/pkgs/tools/misc/dtool/default.nix b/pkgs/tools/misc/dtool/default.nix new file mode 100644 index 000000000000..26eb0ab9ed83 --- /dev/null +++ b/pkgs/tools/misc/dtool/default.nix @@ -0,0 +1,33 @@ +{ lib +, rustPlatform +, fetchFromGitHub +, stdenv +, darwin +}: + +rustPlatform.buildRustPackage rec { + pname = "dtool"; + version = "0.12.0"; + + src = fetchFromGitHub { + owner = "guoxbin"; + repo = "dtool"; + rev = "v${version}"; + hash = "sha256-m4H+ANwEbK6vGW3oIVZqnqvMiAKxNJf2TLIGh/G6AU4="; + }; + + cargoHash = "sha256-r8r3f4yKMQgjtB3j4qE7cqQL18nIqAGPO5RsFErqh2c="; + + buildInputs = lib.optionals stdenv.isDarwin [ + darwin.apple_sdk.frameworks.Security + ]; + + checkType = "debug"; + + meta = with lib; { + description = "A command-line tool collection to assist development written in RUST"; + homepage = "https://github.com/guoxbin/dtool"; + license = licenses.gpl3Only; + maintainers = with maintainers; [ linuxissuper ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 984455682234..cac67e15e333 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -42177,6 +42177,8 @@ with pkgs; isolate = callPackage ../tools/security/isolate { }; + dtool = callPackage ../tools/misc/dtool { }; + tremotesf = libsForQt5.callPackage ../applications/networking/p2p/tremotesf { }; reindeer = callPackage ../development/tools/reindeer { }; From df93f142cb12b8fc4f64dc0440ef0f9d0d721283 Mon Sep 17 00:00:00 2001 From: maralorn Date: Wed, 6 Sep 2023 20:06:44 +0200 Subject: [PATCH 061/346] haskellPackages: regenerate package set based on current config This commit has been generated by maintainers/scripts/haskell/regenerate-hackage-packages.sh --- .../haskell-modules/configuration-hackage2nix/broken.yaml | 1 - pkgs/development/haskell-modules/hackage-packages.nix | 2 -- 2 files changed, 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml index 256e713cda06..4de08d6e70a4 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml @@ -5535,7 +5535,6 @@ broken-packages: - turing-machines # failure in job https://hydra.nixos.org/build/233195604 at 2023-09-02 - turing-music # failure in job https://hydra.nixos.org/build/233203435 at 2023-09-02 - turtle-options # failure in job https://hydra.nixos.org/build/233255831 at 2023-09-02 - - twain # failure in job https://hydra.nixos.org/build/233200486 at 2023-09-02 - tweak # failure in job https://hydra.nixos.org/build/233211020 at 2023-09-02 - twentefp-websockets # failure in job https://hydra.nixos.org/build/233207022 at 2023-09-02 - twhs # failure in job https://hydra.nixos.org/build/233201182 at 2023-09-02 diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index d42025b8239c..2bb5dc999974 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -302918,8 +302918,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Tiny web application framework for WAI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tweak" = callPackage From 5049680bc864c579f7b5c854ab642b34a2783036 Mon Sep 17 00:00:00 2001 From: Anomalocaridid <29845794+Anomalocaridid@users.noreply.github.com> Date: Wed, 6 Sep 2023 22:15:32 -0400 Subject: [PATCH 062/346] nnn: add plugins, quitcd, and pcre and extra make flags build options --- pkgs/applications/file-managers/nnn/default.nix | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/file-managers/nnn/default.nix b/pkgs/applications/file-managers/nnn/default.nix index 6b7e8f9c6421..af4064abbec1 100644 --- a/pkgs/applications/file-managers/nnn/default.nix +++ b/pkgs/applications/file-managers/nnn/default.nix @@ -10,11 +10,14 @@ , readline , which , musl-fts +, pcre # options , conf ? null , withIcons ? false , withNerdIcons ? false , withEmojis ? false +, withPcre ? false +, extraMakeFlags ? [ ] }: # Mutually exclusive options @@ -44,7 +47,9 @@ stdenv.mkDerivation (finalAttrs: { preBuild = lib.optionalString (conf != null) "cp ${finalAttrs.configFile} src/nnn.h"; nativeBuildInputs = [ installShellFiles makeWrapper pkg-config ]; - buildInputs = [ readline ncurses ] ++ lib.optional stdenv.hostPlatform.isMusl musl-fts; + buildInputs = [ readline ncurses ] + ++ lib.optional stdenv.hostPlatform.isMusl musl-fts + ++ lib.optional withPcre pcre; env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isMusl "-I${musl-fts}/include"; NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isMusl "-lfts"; @@ -52,7 +57,9 @@ stdenv.mkDerivation (finalAttrs: { makeFlags = [ "PREFIX=$(out)" ] ++ lib.optionals withIcons [ "O_ICONS=1" ] ++ lib.optionals withNerdIcons [ "O_NERD=1" ] - ++ lib.optionals withEmojis [ "O_EMOJI=1" ]; + ++ lib.optionals withEmojis [ "O_EMOJI=1" ] + ++ lib.optionals withPcre [ "O_PCRE=1" ] + ++ extraMakeFlags; binPath = lib.makeBinPath [ file which ]; @@ -63,6 +70,9 @@ stdenv.mkDerivation (finalAttrs: { installShellCompletion --fish misc/auto-completion/fish/nnn.fish installShellCompletion --zsh misc/auto-completion/zsh/_nnn + cp -r plugins $out/share + cp -r misc/quitcd $out/share/quitcd + wrapProgram $out/bin/nnn --prefix PATH : "$binPath" ''; From bea05181f8188997e127709031cdd8db805944ce Mon Sep 17 00:00:00 2001 From: Vinny Meller Date: Wed, 6 Sep 2023 22:52:06 -0400 Subject: [PATCH 063/346] vimPlugins.nvim-remote-containers: init at 2023-08-01 --- pkgs/applications/editors/vim/plugins/generated.nix | 12 ++++++++++++ .../editors/vim/plugins/vim-plugin-names | 1 + 2 files changed, 13 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index 0a7759dde7ba..31bde17bbcab 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -7353,6 +7353,18 @@ final: prev: meta.homepage = "https://github.com/yorickpeterse/nvim-pqf/"; }; + nvim-remote-containers = buildVimPluginFrom2Nix { + pname = "nvim-remote-containers"; + version = "2023-08-01"; + src = fetchFromGitHub { + owner = "jamestthompson3"; + repo = "nvim-remote-containers"; + rev = "ac76b4b193962dfc0be872feeaf10756aea459e2"; + sha256 = "0ww40yw1fdlanl5wxisqn2c7qlagcn3nkxjafg3nbzd4spi5vg91"; + }; + meta.homepage = "https://github.com/jamestthompson3/nvim-remote-containers/"; + }; + nvim-rename-state = buildVimPluginFrom2Nix { pname = "nvim-rename-state"; version = "2023-01-30"; diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names index 4b9ad1d45e08..777d9b8da78f 100644 --- a/pkgs/applications/editors/vim/plugins/vim-plugin-names +++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names @@ -617,6 +617,7 @@ https://github.com/LhKipp/nvim-nu/,HEAD, https://github.com/ojroques/nvim-osc52/,, https://github.com/gennaro-tedesco/nvim-peekup/,, https://github.com/yorickpeterse/nvim-pqf/,HEAD, +https://github.com/jamestthompson3/nvim-remote-containers/,HEAD, https://github.com/olrtg/nvim-rename-state/,HEAD, https://github.com/petertriho/nvim-scrollbar/,HEAD, https://github.com/dstein64/nvim-scrollview/,, From 9dbc33baf5276e0beb2f71e20e9fa5399aabca3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 7 Sep 2023 22:27:22 -0700 Subject: [PATCH 064/346] igraph: 0.10.6 -> 0.10.7 Diff: https://github.com/igraph/igraph/compare/0.10.6...0.10.7 Changelog: https://github.com/igraph/igraph/blob/0.10.7/CHANGELOG.md --- pkgs/development/libraries/igraph/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/igraph/default.nix b/pkgs/development/libraries/igraph/default.nix index 69f25fd79c83..98637e49dd4a 100644 --- a/pkgs/development/libraries/igraph/default.nix +++ b/pkgs/development/libraries/igraph/default.nix @@ -26,13 +26,13 @@ assert (blas.isILP64 == lapack.isILP64 && stdenv.mkDerivation (finalAttrs: { pname = "igraph"; - version = "0.10.6"; + version = "0.10.7"; src = fetchFromGitHub { owner = "igraph"; repo = finalAttrs.pname; rev = finalAttrs.version; - hash = "sha256-HNc+xU7Gcv9BSpb2OgyG9tCbk/dfWw5Ix1c2gvFZklE="; + hash = "sha256-1ge5V9G2jmIWQE5TW7+6cXCV9viFkhcnjpYrLQVLrgg="; }; postPatch = '' From 490e9836480ecff91f5c0ad8c07630b9d90abe6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 7 Sep 2023 22:27:27 -0700 Subject: [PATCH 065/346] python310Packages.igraph: 0.10.6 -> 0.10.7 Diff: https://github.com/igraph/python-igraph/compare/refs/tags/0.10.6...0.10.7 Changelog: https://github.com/igraph/python-igraph/blob/refs/tags/0.10.7/CHANGELOG.md --- pkgs/development/python-modules/igraph/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/igraph/default.nix b/pkgs/development/python-modules/igraph/default.nix index 6f7f5d256202..3248ad1ed246 100644 --- a/pkgs/development/python-modules/igraph/default.nix +++ b/pkgs/development/python-modules/igraph/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "igraph"; - version = "0.10.6"; + version = "0.10.7"; disabled = pythonOlder "3.7"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "igraph"; repo = "python-igraph"; rev = "refs/tags/${version}"; - hash = "sha256-xdzk/gcHL/kFpZabdP7Cq4lUv0aEwpevgLJYqfb2KGY="; + hash = "sha256-BdMybNo2CiC0Yv9jfiFVuiwBRy4eMtz654JRvaPph9E="; }; postPatch = '' From fc58f1e42dcedce00fd0b47ee4d9266ea5d463b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 7 Sep 2023 22:30:24 -0700 Subject: [PATCH 066/346] igraph: add passthru.tests --- pkgs/development/libraries/igraph/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/libraries/igraph/default.nix b/pkgs/development/libraries/igraph/default.nix index 98637e49dd4a..dc49780b3290 100644 --- a/pkgs/development/libraries/igraph/default.nix +++ b/pkgs/development/libraries/igraph/default.nix @@ -92,6 +92,10 @@ stdenv.mkDerivation (finalAttrs: { install_name_tool -change libblas.dylib ${blas}/lib/libblas.dylib $out/lib/libigraph.dylib ''; + passthru.tests = { + python = python3.pkgs.igraph; + }; + meta = with lib; { description = "C library for complex network analysis and graph theory"; homepage = "https://igraph.org/"; From befdc3bbca1a3a5805b2de39afdf4226f1519592 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 8 Sep 2023 08:55:55 +0000 Subject: [PATCH 067/346] glooctl: 1.14.12 -> 1.15.4 --- pkgs/applications/networking/cluster/glooctl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/glooctl/default.nix b/pkgs/applications/networking/cluster/glooctl/default.nix index 4c69ffe92ea4..be6cef66b1bc 100644 --- a/pkgs/applications/networking/cluster/glooctl/default.nix +++ b/pkgs/applications/networking/cluster/glooctl/default.nix @@ -2,17 +2,17 @@ buildGoModule rec { pname = "glooctl"; - version = "1.14.12"; + version = "1.15.4"; src = fetchFromGitHub { owner = "solo-io"; repo = "gloo"; rev = "v${version}"; - hash = "sha256-0ZrR3y3bTXLCOgN+c96lEfNnT+GKXeEBHifM9jfWTBI="; + hash = "sha256-dQvvWlfCCc9QZFdOryX0bvLVdoBlhVMeP8MqQAYKua4="; }; subPackages = [ "projects/gloo/cli/cmd" ]; - vendorHash = "sha256-2DKRF68dNkFgSeGqI68j2knnGVfVxo0UvGD7YvPwx4M="; + vendorHash = "sha256-FU8Siea+oH4xtSVwGk/dcivS6eNpIkWZiZqQ3EX9dwI="; nativeBuildInputs = [ installShellFiles ]; From 7bd68a8bde33873eea657cd79d745615b6ae412d Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Thu, 7 Sep 2023 15:12:15 +0300 Subject: [PATCH 068/346] soapysdr: cleanup expression - Format it with nixpkgs-fmt. - Patch fixed upstream issue only once, using fetchpatch. - Use `lib.optionals` consistently. - Use `lib.pipe` to write `lndir` commands for postFixup. - Use `finalAttrs.version` as much as possible. - Use passthru.searchPath to expose it for other packages to use (like Gnuradio's wrapper). --- pkgs/applications/radio/soapysdr/default.nix | 97 +++++++++++-------- .../radio/soapysdr/fix-pkgconfig.patch | 14 --- 2 files changed, 57 insertions(+), 54 deletions(-) delete mode 100644 pkgs/applications/radio/soapysdr/fix-pkgconfig.patch diff --git a/pkgs/applications/radio/soapysdr/default.nix b/pkgs/applications/radio/soapysdr/default.nix index e11e2af401b9..7e0c01c2f5f7 100644 --- a/pkgs/applications/radio/soapysdr/default.nix +++ b/pkgs/applications/radio/soapysdr/default.nix @@ -1,66 +1,83 @@ -{ stdenv, lib, lndir, makeWrapper -, fetchFromGitHub, cmake -, libusb-compat-0_1, pkg-config +{ stdenv +, lib +, fetchFromGitHub +, fetchpatch +, cmake +, pkg-config +, makeWrapper +, libusb-compat-0_1 +, ncurses , usePython ? false , python ? null -, ncurses, swig2 -, extraPackages ? [] -, testers +, swig2 +, extraPackages ? [ ] , buildPackages +, testers }: -let - - version = "0.8.1"; - modulesVersion = with lib; versions.major version + "." + versions.minor version; - modulesPath = "lib/SoapySDR/modules" + modulesVersion; - extraPackagesSearchPath = lib.makeSearchPath modulesPath extraPackages; - -in stdenv.mkDerivation (finalAttrs: { +stdenv.mkDerivation (finalAttrs: { pname = "soapysdr"; - inherit version; + version = "0.8.1"; src = fetchFromGitHub { owner = "pothosware"; repo = "SoapySDR"; - rev = "soapy-sdr-${version}"; + rev = "soapy-sdr-${finalAttrs.version}"; sha256 = "19f2x0pkxvf9figa0pl6xqlcz8fblvqb19mcnj632p0l8vk6qdv2"; }; patches = [ - # see https://github.com/pothosware/SoapySDR/issues/352 for upstream issue - ./fix-pkgconfig.patch + # Fix for https://github.com/pothosware/SoapySDR/issues/352 + (fetchpatch { + url = "https://github.com/pothosware/SoapySDR/commit/10c05b3e52caaa421147d6b4623eccd3fc3be3f4.patch"; + hash = "sha256-D7so6NSZiU6SXbzns04Q4RjSZW0FJ+MYobvvVpVMjws="; + }) ]; - nativeBuildInputs = [ cmake makeWrapper pkg-config ]; - buildInputs = [ libusb-compat-0_1 ncurses ] - ++ lib.optionals usePython [ python swig2 ]; + nativeBuildInputs = [ + cmake + pkg-config + makeWrapper + ]; + buildInputs = [ + libusb-compat-0_1 + ncurses + ] ++ lib.optionals usePython [ + python + swig2 + ]; - propagatedBuildInputs = lib.optional usePython python.pkgs.numpy; + propagatedBuildInputs = lib.optionals usePython [ + python.pkgs.numpy + ]; cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" - ] ++ lib.optional usePython "-DUSE_PYTHON_CONFIG=ON"; + ] ++ lib.optionals usePython [ + "-DUSE_PYTHON_CONFIG=ON" + ]; - # https://github.com/pothosware/SoapySDR/issues/352 - postPatch = '' - substituteInPlace lib/SoapySDR.in.pc \ - --replace '$'{exec_prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@ \ - --replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@ - ''; - - postFixup = lib.optionalString (lib.length extraPackages != 0) '' + postFixup = lib.optionalString (extraPackages != [ ]) ( # Join all plugins via symlinking - for i in ${toString extraPackages}; do - ${buildPackages.xorg.lndir}/bin/lndir -silent $i $out - done - # Needed for at least the remote plugin server - for file in $out/bin/*; do - wrapProgram "$file" --prefix SOAPY_SDR_PLUGIN_PATH : ${lib.escapeShellArg extraPackagesSearchPath} - done - ''; + lib.pipe extraPackages [ + (map (pkg: '' + ${buildPackages.xorg.lndir}/bin/lndir -silent ${pkg} $out + '')) + lib.concatStrings + ] + '' + # Needed for at least the remote plugin server + for file in $out/bin/*; do + wrapProgram "$file" --prefix SOAPY_SDR_PLUGIN_PATH : ${lib.escapeShellArg ( + lib.makeSearchPath finalAttrs.passthru.searchPath extraPackages + )} + done + '' + ); - passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; + passthru = { + tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage; + searchPath = "lib/SoapySDR/modules${lib.versions.majorMinor finalAttrs.version}"; + }; meta = with lib; { homepage = "https://github.com/pothosware/SoapySDR"; diff --git a/pkgs/applications/radio/soapysdr/fix-pkgconfig.patch b/pkgs/applications/radio/soapysdr/fix-pkgconfig.patch deleted file mode 100644 index d4b15e3f99bc..000000000000 --- a/pkgs/applications/radio/soapysdr/fix-pkgconfig.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/lib/SoapySDR.in.pc b/lib/SoapySDR.in.pc -index a1ca698..fd2f4c0 100644 ---- a/lib/SoapySDR.in.pc -+++ b/lib/SoapySDR.in.pc -@@ -1,7 +1,5 @@ --prefix=@CMAKE_INSTALL_PREFIX@ --exec_prefix=${prefix} --libdir=${exec_prefix}/@CMAKE_INSTALL_LIBDIR@ --includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ -+libdir=@CMAKE_INSTALL_FULL_LIBDIR@ -+includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ - - Name: Soapy SDR - Description: Vendor and platform neutral SDR interface library. From 2bdd5de8915f045a55d24f9b019c86179bcc6783 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Fri, 8 Sep 2023 11:04:16 +0300 Subject: [PATCH 069/346] gnuradio: add support for soapysdr plugins in the wrapper --- pkgs/applications/radio/gnuradio/wrapper.nix | 25 ++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/pkgs/applications/radio/gnuradio/wrapper.nix b/pkgs/applications/radio/gnuradio/wrapper.nix index c38c89fc459b..ac08d17397fa 100644 --- a/pkgs/applications/radio/gnuradio/wrapper.nix +++ b/pkgs/applications/radio/gnuradio/wrapper.nix @@ -28,6 +28,27 @@ , extraPackages ? [] # For Adding additional python packaages , extraPythonPackages ? [] +, soapysdr # For it's passthru.searchPath +# soapysdr plugins we add by default. Ideally, we should have a +# soapysdrPackages = soapysdr.pkgs attribute set, but until now this wasn't +# crucial. +, soapyairspy +, soapyaudio +, soapybladerf +, soapyhackrf +, soapyremote +, soapyrtlsdr +, soapyuhd +# For adding / changing soapysdr packages, like soapsdr-with-plugins does +, extraSoapySdrPackages ? [ + soapyairspy + soapyaudio + soapybladerf + soapyhackrf + soapyremote + soapyrtlsdr + soapyuhd +] # Allow to add whatever you want to the wrapper , extraMakeWrapperArgs ? [] }: @@ -87,6 +108,10 @@ let ++ lib.optionals (extraPackages != []) [ "--prefix" "GRC_BLOCKS_PATH" ":" "${lib.makeSearchPath "share/gnuradio/grc/blocks" extraPackages}" ] + ++ lib.optionals (extraSoapySdrPackages != []) [ + "--prefix" "SOAPY_SDR_PLUGIN_PATH" ":" "${lib.makeSearchPath + soapysdr.passthru.searchPath extraSoapySdrPackages}" + ] ++ lib.optionals (unwrapped.hasFeature "gr-qtgui") # 3.7 builds with qt4 (if lib.versionAtLeast unwrapped.versionAttr.major "3.8" then From 159f903eb1c0e68a200c5a96ee05bf542fd15027 Mon Sep 17 00:00:00 2001 From: natsukium Date: Sat, 9 Sep 2023 13:04:08 +0900 Subject: [PATCH 070/346] google-cloud-sdk-gce: unpin the python version --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2e968cfc5e5a..f8b1438a276d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8719,7 +8719,7 @@ with pkgs; python = python3; }; google-cloud-sdk-gce = google-cloud-sdk.override { - python = python38; + python = python3; with-gce = true; }; From 20acd199f4202da863f290b50345d30c85db913c Mon Sep 17 00:00:00 2001 From: Florian Engel Date: Sat, 9 Sep 2023 08:19:22 +0200 Subject: [PATCH 071/346] nixos/adguardhome: Fix openFirewall When not setting `settings` and setting `openFirewall = true` evaluation would fail because it tries to access `settings.bind_port` while `settings == null` --- nixos/modules/services/networking/adguardhome.nix | 5 +++-- nixos/tests/adguardhome.nix | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/networking/adguardhome.nix b/nixos/modules/services/networking/adguardhome.nix index 1701e5b439c1..399d838ccc69 100644 --- a/nixos/modules/services/networking/adguardhome.nix +++ b/nixos/modules/services/networking/adguardhome.nix @@ -17,6 +17,7 @@ let text = builtins.toJSON cfg.settings; checkPhase = "${pkgs.adguardhome}/bin/adguardhome -c $out --check-config"; }; + defaultBindPort = 3000; in { @@ -86,7 +87,7 @@ in ''; }; bind_port = mkOption { - default = 3000; + default = defaultBindPort; type = port; description = lib.mdDoc '' Port to serve HTTP pages on. @@ -169,6 +170,6 @@ in }; }; - networking.firewall.allowedTCPPorts = mkIf cfg.openFirewall [ cfg.settings.bind_port ]; + networking.firewall.allowedTCPPorts = mkIf cfg.openFirewall [ cfg.settings.bind_port or defaultBindPort ]; }; } diff --git a/nixos/tests/adguardhome.nix b/nixos/tests/adguardhome.nix index 9f8ddc33f57e..a6f790b83f5f 100644 --- a/nixos/tests/adguardhome.nix +++ b/nixos/tests/adguardhome.nix @@ -7,7 +7,6 @@ emptyConf = { lib, ... }: { services.adguardhome = { enable = true; - settings = {}; }; }; From 5f714e9c4738093efa0d66bed995fcbc0b8915d0 Mon Sep 17 00:00:00 2001 From: Daniel Rolls Date: Sat, 9 Sep 2023 13:43:54 +0100 Subject: [PATCH 072/346] haskellPackages.byte-count-reader: add maintainer --- .../haskell-modules/configuration-hackage2nix/main.yaml | 1 + pkgs/development/haskell-modules/hackage-packages.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml index bc319449dc6b..1c9fcc0caf59 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml @@ -169,6 +169,7 @@ package-maintainers: - patat - svgcairo danielrolls: + - byte-count-reader - shellify domenkozar: - cachix diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 2bb5dc999974..7de128b98278 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -54708,6 +54708,7 @@ self: { ]; description = "Read strings describing a number of bytes like 2Kb and 0.5 MiB"; license = lib.licenses.gpl3Only; + maintainers = [ lib.maintainers.danielrolls ]; }) {}; "byte-order" = callPackage From dd4a28f97b9a6935c06b3f1f5b98144188318a89 Mon Sep 17 00:00:00 2001 From: Ludovico Piero Date: Sun, 10 Sep 2023 01:01:18 +1000 Subject: [PATCH 073/346] vscode: 1.81.1 -> 1.82.0 --- pkgs/applications/editors/vscode/vscode.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/editors/vscode/vscode.nix b/pkgs/applications/editors/vscode/vscode.nix index b1f0451cc174..8ff19be0b5a1 100644 --- a/pkgs/applications/editors/vscode/vscode.nix +++ b/pkgs/applications/editors/vscode/vscode.nix @@ -30,21 +30,21 @@ let archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz"; sha256 = { - x86_64-linux = "0j3lmyj77qalhn8hrgfg3zgw6jqv8rscfy16vhkl0ir2xnmb19jf"; - x86_64-darwin = "06dx8lhw1cqignv06pcjjv8v743kr8bck1iqgl1881jmqyhggi4f"; - aarch64-linux = "0nyd452wcp5qw2cx1zj89v4fgk3jvbk3hhiix9a0gv150q48vyfa"; - aarch64-darwin = "1yfbsfnkjbf99yl1dcflpyxppa9mhnxigyyplz0jaqgpwmhs2s0b"; - armv7l-linux = "1miz95rz2fdw7xplflnydzq57hnz894xg29mhpywwiib8kypfrm7"; + x86_64-linux = "1gqpsgg6fsfssn03213sn31qcb5xnfnn3hd5g8j2mxfd0dyjgyir"; + x86_64-darwin = "0h0mj3vdnwcdxk9cnss4v8mmcfhm1yknm1al8c2047wjsj8w4jmm"; + aarch64-linux = "0qrph1a0cbr7sqx0qv4v05himsphlpwd1lgyliwqxzl8yxka8nwv"; + aarch64-darwin = "0mjqy08v0idck7a05w8rinfccg7vn50z6b0jrvp2m5q2122c0rcc"; + armv7l-linux = "1gp29rzc2iyl7vw2hlfjn5770mfpa6n9vc3f776msdxwrsia6xg9"; }.${system} or throwSystem; in callPackage ./generic.nix rec { # Please backport all compatible updates to the stable release. # This is important for the extension ecosystem. - version = "1.81.1"; + version = "1.82.0"; pname = "vscode" + lib.optionalString isInsiders "-insiders"; # This is used for VS Code - Remote SSH test - rev = "6c3e3dba23e8fadc360aed75ce363ba185c49794"; + rev = "8b617bd08fd9e3fc94d14adb8d358b56e3f72314"; executableName = "code" + lib.optionalString isInsiders "-insiders"; longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders"; @@ -68,7 +68,7 @@ in src = fetchurl { name = "vscode-server-${rev}.tar.gz"; url = "https://update.code.visualstudio.com/commit:${rev}/server-linux-x64/stable"; - sha256 = "1xfyl81d5l2bl7k4vz4rnj84j1ijwv90sqgv9lnqzza2dfckfd6m"; + sha256 = "192af63q9nklgsai71bss2bisc4wip1gbzmlpdvcjpi1hkspab2v"; }; }; From a9aabffa44b36289e7cd2f3c340f4f2e2f733e16 Mon Sep 17 00:00:00 2001 From: Ludovico Piero Date: Sun, 10 Sep 2023 02:14:33 +1000 Subject: [PATCH 074/346] vscodium: 1.81.1.23222 -> 1.82.0.23250 --- pkgs/applications/editors/vscode/vscodium.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/editors/vscode/vscodium.nix b/pkgs/applications/editors/vscode/vscodium.nix index f714e709f69b..a5b3d65c06fe 100644 --- a/pkgs/applications/editors/vscode/vscodium.nix +++ b/pkgs/applications/editors/vscode/vscodium.nix @@ -15,11 +15,11 @@ let archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz"; sha256 = { - x86_64-linux = "0wx53ajjwil82s3nl6wvpdf01mh33yqasf1ia54s1rfzz10fa1m6"; - x86_64-darwin = "1avq0xlhsnxf6yfay1czi0rc0hy47ahj25rg07mzgb274p4x9q95"; - aarch64-linux = "1chdcy59w4zm27ga71iph7yqq88lv2rw73br1nmmjznbqgzk9lpc"; - aarch64-darwin = "140lrka50yqqd9dp9gb93jlc2zn2fjiq9palibwvgb14nzsb3x68"; - armv7l-linux = "0qf95nxy55f9m2z91fykwjgffj7wqvlqjn2d2xnfapa457v5lbir"; + x86_64-linux = "06d2m4g1y88jfnx5fhklm93b9arpg8kxb71ndy3jnliw3x9kgdbg"; + x86_64-darwin = "04y0fqqhjmasan5066xlw9gx5prnrmhnz40ysmhjbsqi4mv8l6ry"; + aarch64-linux = "1psz48a59dkqw4l7b49dnhp3q09d04d8k7spc5dcvcz3ghpgamal"; + aarch64-darwin = "0mrz6x4ccb23121fp8b6aqgh0xkl9yaj8wfyvkxh5vadmcqhx4l7"; + armv7l-linux = "186xxgk8hwxxa5lf799gkr7n046w5hjp5siz22jfwabsv3yr2573"; }.${system} or throwSystem; sourceRoot = lib.optionalString (!stdenv.isDarwin) "."; @@ -29,7 +29,7 @@ in # Please backport all compatible updates to the stable release. # This is important for the extension ecosystem. - version = "1.81.1.23222"; + version = "1.82.0.23250"; pname = "vscodium"; executableName = "codium"; From accf4fc5eef28746b0578543851314d7d49a4353 Mon Sep 17 00:00:00 2001 From: Ludovico Piero Date: Sun, 10 Sep 2023 02:19:27 +1000 Subject: [PATCH 075/346] vscodium: add ludovicopiero as maintainers --- pkgs/applications/editors/vscode/vscodium.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/vscode/vscodium.nix b/pkgs/applications/editors/vscode/vscodium.nix index a5b3d65c06fe..40049b889cd3 100644 --- a/pkgs/applications/editors/vscode/vscodium.nix +++ b/pkgs/applications/editors/vscode/vscodium.nix @@ -61,7 +61,7 @@ in downloadPage = "https://github.com/VSCodium/vscodium/releases"; license = licenses.mit; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ synthetica bobby285271 ]; + maintainers = with maintainers; [ synthetica bobby285271 ludovicopiero ]; mainProgram = "codium"; platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" "armv7l-linux" ]; }; From 83df91b7fcc4fc9b0d004027b269b701921f7ce5 Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Sat, 9 Sep 2023 12:59:20 -0400 Subject: [PATCH 076/346] haskellPackages.HDRUtils: don't distribute because transitively insecure --- .../haskell-modules/configuration-hackage2nix/main.yaml | 1 + pkgs/development/haskell-modules/hackage-packages.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml index 1c9fcc0caf59..f14958b4f090 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml @@ -841,6 +841,7 @@ dont-distribute-packages: # Packages that (transitively) depend on insecure packages - distributed-process-zookeeper # depends on hzk + - HDRUtils # depends on pfstools, which depends on imagemagick - hzk # depends on zookeeper_mt, which depends on openssl-1.1 - persistent-zookeper # depends on hzk - pocket-dns # depends on persistent-zookeeper diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 7de128b98278..06a15a3a0c03 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -8331,6 +8331,7 @@ self: { description = "Utilities for reading, manipulating, and writing HDR images"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; }) {inherit (pkgs) pfstools;}; "HERA" = callPackage From e85e701664208f353c65568b694a4e91d25c6553 Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Sat, 9 Sep 2023 13:06:20 -0400 Subject: [PATCH 077/346] haskellPackages.chalkboard: add darwin as bad platform --- .../haskell-modules/configuration-hackage2nix/main.yaml | 2 ++ pkgs/development/haskell-modules/hackage-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml index f14958b4f090..407cb2699ae8 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml @@ -577,6 +577,8 @@ unsupported-platforms: bustle: [ platforms.darwin ] # uses glibc-specific ptsname_r bytelog: [ platforms.darwin ] # due to posix-api camfort: [ aarch64-linux ] + chalkboard: [ platforms.darwin ] # depends on Codec-Image-DevIL + chalkboard-viewer: [ platforms.darwin ] # depends on chalkboard charsetdetect: [ aarch64-linux ] # not supported by vendored lib / not configured properly https://github.com/batterseapower/libcharsetdetect/issues/3 Codec-Image-DevIL: [ platforms.darwin ] # depends on mesa coinor-clp: [ aarch64-linux ] # aarch64-linux is not supported by required system dependency clp diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 06a15a3a0c03..4f13f30a65a2 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -61406,6 +61406,7 @@ self: { ]; description = "Combinators for building and processing 2D images"; license = lib.licenses.bsd3; + badPlatforms = lib.platforms.darwin; mainProgram = "chalkboard-server-1_9_0_16"; }) {}; @@ -61418,6 +61419,7 @@ self: { libraryHaskellDepends = [ array base chalkboard GLUT OpenGL time ]; description = "OpenGL based viewer for chalkboard rendered images"; license = lib.licenses.bsd3; + badPlatforms = lib.platforms.darwin; }) {}; "chalmers-lava2000" = callPackage From df41622d86ff444250f6baacadc50b00413b568e Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Sat, 9 Sep 2023 13:12:34 -0400 Subject: [PATCH 078/346] haskellPackages.gi-gtk-layer-shell: not supported on darwin --- .../haskell-modules/configuration-hackage2nix/main.yaml | 1 + pkgs/development/haskell-modules/hackage-packages.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml index 407cb2699ae8..ab795c6e2c45 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml @@ -595,6 +595,7 @@ unsupported-platforms: gi-dbusmenugtk3: [ platforms.darwin ] gi-dbusmenu: [ platforms.darwin ] gi-ggit: [ platforms.darwin ] + gi-gtk-layer-shell: [ platforms.darwin ] # depends on gtk-layer-shell which is not supported on darwin gi-ibus: [ platforms.darwin ] gi-javascriptcore: [ platforms.darwin ] # webkitgtk marked broken on darwin gi-ostree: [ platforms.darwin ] diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 4f13f30a65a2..341b072b950e 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -118530,6 +118530,7 @@ self: { libraryPkgconfigDepends = [ gtk-layer-shell ]; description = "gtk-layer-shell bindings"; license = lib.licenses.lgpl21Only; + badPlatforms = lib.platforms.darwin; }) {inherit (pkgs) gtk-layer-shell;}; "gi-gtkosxapplication" = callPackage From 3a5a22091e4c3ef127e212ab165dcbcdb9e3cbbc Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Sat, 9 Sep 2023 13:30:22 -0400 Subject: [PATCH 079/346] haskellPackages.hb3sum: only supported on x86 --- .../haskell-modules/configuration-hackage2nix/main.yaml | 2 +- pkgs/development/haskell-modules/hackage-packages.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml index ab795c6e2c45..a633ce262d6a 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml @@ -610,7 +610,6 @@ unsupported-platforms: gtk-sni-tray: [ platforms.darwin ] h-raylib: [ platforms.darwin ] # depends on mesa haskell-snake: [ platforms.darwin ] - hb3sum: [ aarch64-linux ] # depends on blake3, which is not supported on aarch64-linux hcwiid: [ platforms.darwin ] HDRUtils: [ platforms.darwin ] hidapi: [ platforms.darwin ] @@ -711,6 +710,7 @@ supported-platforms: gtk3-mac-integration: [ platforms.darwin ] halide-haskell: [ platforms.linux ] halide-JuicyPixels: [ platforms.linux ] + hb3sum: [ platforms.x86 ] # due to blake3 hommage-ds: [ platforms.windows ] hpapi: [ platforms.linux ] # limited by pkgs.papi hsignal: [ platforms.x86 ] # -msse2 diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 341b072b950e..49e94ec201eb 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -139832,7 +139832,7 @@ self: { executableHaskellDepends = [ base blake3 bytestring mmap ]; description = "A command line tool to compute BLAKE3 hashes"; license = lib.licenses.agpl3Only; - badPlatforms = [ "aarch64-linux" ]; + platforms = lib.platforms.x86; mainProgram = "hb3sum"; }) {}; From 62ba01c06e57e0e9386446f7326408728c08c8c8 Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Sat, 9 Sep 2023 13:38:35 -0400 Subject: [PATCH 080/346] haskellPackages.htune: supported platform is linux --- .../haskell-modules/configuration-hackage2nix/main.yaml | 1 + pkgs/development/haskell-modules/hackage-packages.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml index a633ce262d6a..0385486e8512 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml @@ -717,6 +717,7 @@ supported-platforms: HFuse: [ platforms.linux ] HQu: [ platforms.x86 ] # vendored C++ library needs i686/x86_64 hs-swisstable-hashtables-class: [ platforms.x86_64 ] # depends on swisstable, which Needs AVX2 + htune: [ platforms.linux ] # depends on alsa-pcm hw-prim-bits: [ platforms.x86 ] # x86 assembler inline-asm: [ platforms.x86 ] # x86 assembler keid-core: [ x86_64-linux ] # geomancy (only x86), vulkan (no i686, no darwin, …) diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 49e94ec201eb..3cdb64ed2f13 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -160816,6 +160816,7 @@ self: { executableHaskellDepends = [ alsa-pcm base carray fft gloss ]; description = "harmonic analyser and tuner for musical instruments"; license = lib.licenses.bsd3; + platforms = lib.platforms.linux; mainProgram = "htune"; }) {}; From f1e71e873e34e6b32f38552521f5c1b9fa45b4c0 Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Sat, 9 Sep 2023 13:50:28 -0400 Subject: [PATCH 081/346] haskellPackages.jobqueue: don't buisld becdue to transitive dep on openssl-1.1 --- .../haskell-modules/configuration-hackage2nix/main.yaml | 1 + pkgs/development/haskell-modules/hackage-packages.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml index 0385486e8512..341ecfebe6f8 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml @@ -847,6 +847,7 @@ dont-distribute-packages: - distributed-process-zookeeper # depends on hzk - HDRUtils # depends on pfstools, which depends on imagemagick - hzk # depends on zookeeper_mt, which depends on openssl-1.1 + - jobqueue # depends on hzk - persistent-zookeper # depends on hzk - pocket-dns # depends on persistent-zookeeper - zoovisitor # depends on zookeeper_mt, which depends on openssl-1.1 diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 3cdb64ed2f13..7eeb8c8bf3fc 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -172662,6 +172662,7 @@ self: { ]; description = "A job queue library"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; }) {}; "jobs-ui" = callPackage From 2ae3d9f78da50068ec6ba5af6101dcfd47472dc2 Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Sat, 9 Sep 2023 14:11:20 -0400 Subject: [PATCH 082/346] haskellPackages.persistent-zookeeper: fix misspelling --- .../haskell-modules/configuration-hackage2nix/main.yaml | 2 +- pkgs/development/haskell-modules/hackage-packages.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml index 341ecfebe6f8..37fff7f31eb1 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml @@ -848,6 +848,6 @@ dont-distribute-packages: - HDRUtils # depends on pfstools, which depends on imagemagick - hzk # depends on zookeeper_mt, which depends on openssl-1.1 - jobqueue # depends on hzk - - persistent-zookeper # depends on hzk + - persistent-zookeeper # depends on hzk - pocket-dns # depends on persistent-zookeeper - zoovisitor # depends on zookeeper_mt, which depends on openssl-1.1 diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 7eeb8c8bf3fc..9c463b4782ae 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -227075,6 +227075,7 @@ self: { ]; description = "Backend for persistent library using Zookeeper"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; }) {}; "persona" = callPackage From babe4ab799d2a48d8eb760e0ce035926283b7b45 Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Sat, 9 Sep 2023 14:52:02 -0400 Subject: [PATCH 083/346] haskellPackages.sdr: disable on darwin --- .../haskell-modules/configuration-hackage2nix/main.yaml | 1 + pkgs/development/haskell-modules/hackage-packages.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml index 37fff7f31eb1..ca42d1227d4e 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml @@ -663,6 +663,7 @@ unsupported-platforms: SDL-mpeg: [ platforms.darwin ] # depends on mesa sdl2-mixer: [ platforms.darwin ] sdl2-ttf: [ platforms.darwin ] + sdr: [ platforms.darwin ] # depends on rtlsdr sensei: [ platforms.darwin ] spade: [ platforms.darwin ] # depends on sdl2-mixer, which doesn't work on darwin synthesizer-alsa: [ platforms.darwin ] diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 9c463b4782ae..aa165d12071a 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -261093,6 +261093,7 @@ self: { description = "A software defined radio library"; license = lib.licenses.bsd3; platforms = lib.platforms.x86_64; + badPlatforms = lib.platforms.darwin; }) {}; "seacat" = callPackage From 01eec38f90306b0b68ba1c715c05244dcc2e5554 Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Sat, 9 Sep 2023 15:43:37 -0400 Subject: [PATCH 084/346] haskellPackages.tensorflow: mark broken --- .../haskell-modules/configuration-hackage2nix/broken.yaml | 4 ++++ pkgs/development/haskell-modules/hackage-packages.nix | 8 ++++++++ 2 files changed, 12 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml index 4de08d6e70a4..819ab211268b 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml @@ -5314,6 +5314,10 @@ broken-packages: - tempus # failure in job https://hydra.nixos.org/build/233245670 at 2023-09-02 - ten # failure in job https://hydra.nixos.org/build/233216705 at 2023-09-02 - tensor # failure in job https://hydra.nixos.org/build/233233707 at 2023-09-02 + - tensorflow # failure building python tensorflow dependency 2023-09-09 + - tensorflow-core-ops # failure building python tensorflow dependency 2023-09-09 + - tensorflow-logging # failure building python tensorflow dependency 2023-09-09 + - tensorflow-ops # failure building python tensorflow dependency 2023-09-09 - tensor-safe # failure in job https://hydra.nixos.org/build/233239719 at 2023-09-02 - termbox-bindings # failure in job https://hydra.nixos.org/build/233257579 at 2023-09-02 - termination-combinators # failure in job https://hydra.nixos.org/build/233202329 at 2023-09-02 diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index aa165d12071a..1c5fa2c930f2 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -292229,6 +292229,8 @@ self: { ]; description = "TensorFlow bindings"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) libtensorflow;}; "tensorflow-core-ops" = callPackage @@ -292249,6 +292251,8 @@ self: { ]; description = "Haskell wrappers for Core Tensorflow Ops"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tensorflow-logging" = callPackage @@ -292277,6 +292281,8 @@ self: { ]; description = "TensorBoard related functionality"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tensorflow-mnist" = callPackage @@ -292360,6 +292366,8 @@ self: { ]; description = "Friendly layer around TensorFlow bindings"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tensorflow-proto" = callPackage From 8bddf58c4aa5dbdd4b60b087aa30c32451ade21d Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sat, 9 Sep 2023 21:25:11 +0100 Subject: [PATCH 085/346] freetype: enable 64-bit API on 32-bit systems Without the change `pkgsi686Linux.fontconfig` test fails to find the font on filesystems with 64-bit inodes: fontconfig> FAIL: test-bz106632 This happens because `freetype` uses 32-bit `fstat()` API in builds/unix/ftsystem.c without explicit 64-bit bit switch on. --- pkgs/development/libraries/freetype/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/freetype/default.nix b/pkgs/development/libraries/freetype/default.nix index f4a81633f54b..6e6989d9304e 100644 --- a/pkgs/development/libraries/freetype/default.nix +++ b/pkgs/development/libraries/freetype/default.nix @@ -55,7 +55,8 @@ stdenv.mkDerivation (finalAttrs: { CC_BUILD = "${buildPackages.stdenv.cc}/bin/cc"; # The asm for armel is written with the 'asm' keyword. - CFLAGS = lib.optionalString stdenv.isAarch32 "-std=gnu99"; + CFLAGS = lib.optionalString stdenv.isAarch32 "-std=gnu99" + + lib.optionalString stdenv.hostPlatform.is32bit " -D_FILE_OFFSET_BITS=64"; enableParallelBuilding = true; From 59e48e33c4d17e189e1bf4f551f6c83fb8748f9d Mon Sep 17 00:00:00 2001 From: Gerg-L Date: Sat, 9 Sep 2023 17:24:43 -0400 Subject: [PATCH 086/346] nixos/direnv: remove persistDerivations --- nixos/modules/programs/direnv.nix | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/nixos/modules/programs/direnv.nix b/nixos/modules/programs/direnv.nix index 53717fae11a0..1a80cb202806 100644 --- a/nixos/modules/programs/direnv.nix +++ b/nixos/modules/programs/direnv.nix @@ -32,15 +32,6 @@ in { the hiding of direnv logging ''); - persistDerivations = - (lib.mkEnableOption (lib.mdDoc '' - setting keep-derivations and keep-outputs to true - to prevent shells from getting garbage collected - '')) - // { - default = true; - }; - loadInNixShell = lib.mkEnableOption (lib.mdDoc '' loading direnv in `nix-shell` `nix shell` or `nix develop` @@ -62,6 +53,10 @@ in { }; }; + imports = [ + (lib.mkRemovedOptionModule ["programs" "direnv" "persistDerivations"] "persistDerivations was removed as it is on longer necessary") + ]; + config = lib.mkIf cfg.enable { programs = { @@ -87,11 +82,6 @@ in { ''; }; - nix.settings = lib.mkIf cfg.persistDerivations { - keep-outputs = true; - keep-derivations = true; - }; - environment = { systemPackages = if cfg.loadInNixShell then [cfg.package] From 35fb13529ce3a22986d76948979bd4c6f0734a38 Mon Sep 17 00:00:00 2001 From: Andrew Fontaine Date: Sat, 9 Sep 2023 19:54:44 -0400 Subject: [PATCH 087/346] flyctl: 0.1.84 -> 0.1.90 Looks like the Go version required was bumped to 1.21, and quite a few changes: https://github.com/superfly/flyctl/compare/v0.1.84...v0.1.90 --- pkgs/development/web/flyctl/default.nix | 6 +++--- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/web/flyctl/default.nix b/pkgs/development/web/flyctl/default.nix index 7bc41ad694b3..8b720153226f 100644 --- a/pkgs/development/web/flyctl/default.nix +++ b/pkgs/development/web/flyctl/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "flyctl"; - version = "0.1.84"; + version = "0.1.90"; src = fetchFromGitHub { owner = "superfly"; repo = "flyctl"; rev = "v${version}"; - hash = "sha256-StcakZFJxHRY36xuxZm/W9xoEye4HRPfC4dtczeT7nk="; + hash = "sha256-dgfPhx2IJxkMji6nw+GSg1xHxyh3xjSr7KLdVv9PbUI="; }; - vendorHash = "sha256-cfgI/kJOtH1Ptd1MUHvt+e2ErU5wL+8Xm4cfQ64iAhc="; + vendorHash = "sha256-DnTjkv3lPUNB1WIQ2ncUaafdUP+y1t0UfaPfV4PW7VM="; subPackages = [ "." ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 57e8701d4265..1ffe8026ba6b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15780,7 +15780,7 @@ with pkgs; flasm = callPackage ../development/compilers/flasm { }; - flyctl = callPackage ../development/web/flyctl { }; + flyctl = callPackage ../development/web/flyctl { buildGoModule = buildGo121Module; }; fluidd = callPackage ../applications/misc/fluidd { }; From 58f1cd9922542bac8e15f2fe1660ba3159128830 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 10 Sep 2023 04:20:00 +0000 Subject: [PATCH 088/346] postgresqlPackages.pg_ivm: 1.5.1 -> 1.6 Diff: https://github.com/sraoss/pg_ivm/compare/v1.5.1...v1.6 --- pkgs/servers/sql/postgresql/ext/pg_ivm.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/sql/postgresql/ext/pg_ivm.nix b/pkgs/servers/sql/postgresql/ext/pg_ivm.nix index 1d9be6c5955b..61f9a89704a8 100644 --- a/pkgs/servers/sql/postgresql/ext/pg_ivm.nix +++ b/pkgs/servers/sql/postgresql/ext/pg_ivm.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "pg_ivm"; - version = "1.5.1"; + version = "1.6"; src = fetchFromGitHub { owner = "sraoss"; repo = pname; rev = "v${version}"; - hash = "sha256-AIH0BKk3y7F885IlC9pEyAubIgNSElpjU8nL6gl98FU="; + hash = "sha256-MAZsEPQu1AqI53h01M5bErc/MUJRauNPO9Hizig+2dc="; }; buildInputs = [ postgresql ]; From cda839e95ec8d98f49eae0fd03dd9aaa38afb8a1 Mon Sep 17 00:00:00 2001 From: zzzsyyy Date: Sun, 10 Sep 2023 17:33:10 +0800 Subject: [PATCH 089/346] linux_xanmod: 6.1.47 -> 6.1.52 --- pkgs/os-specific/linux/kernel/xanmod-kernels.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/xanmod-kernels.nix b/pkgs/os-specific/linux/kernel/xanmod-kernels.nix index 4a97d8f6ecf8..1e7b10f9db80 100644 --- a/pkgs/os-specific/linux/kernel/xanmod-kernels.nix +++ b/pkgs/os-specific/linux/kernel/xanmod-kernels.nix @@ -3,8 +3,8 @@ let # These names are how they are designated in https://xanmod.org. ltsVariant = { - version = "6.1.47"; - hash = "sha256-yF05EkQ/sAvmoNW2waxNJRGGB0gnL85fFdl6pc6U8Eo="; + version = "6.1.52"; + hash = "sha256-uzBmgrjNto2CwqkxdFCPeEPQnPSUZEO2pYMnKe8rCfY="; variant = "lts"; }; From 3f2f8de5efc8f2fd7bdaf200af7ad9f415977534 Mon Sep 17 00:00:00 2001 From: zzzsyyy Date: Sun, 10 Sep 2023 17:34:44 +0800 Subject: [PATCH 090/346] linux_xanmod_latest: 6.4.12 -> 6.4.15 --- pkgs/os-specific/linux/kernel/xanmod-kernels.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/xanmod-kernels.nix b/pkgs/os-specific/linux/kernel/xanmod-kernels.nix index 1e7b10f9db80..01144f5d4ef5 100644 --- a/pkgs/os-specific/linux/kernel/xanmod-kernels.nix +++ b/pkgs/os-specific/linux/kernel/xanmod-kernels.nix @@ -9,8 +9,8 @@ let }; mainVariant = { - version = "6.4.12"; - hash = "sha256-rvSQJb9MIOXkGEjHOPt3x+dqp1AysvQg7n5yYsg95fk="; + version = "6.4.15"; + hash = "sha256-WupJJMLqgHJ7FATwNyMwAHIUl9qj0lNH7wRYRBm0CAA="; variant = "main"; }; From f58c894e7c7b1640247e1e35a09c5d4ff0b9bb19 Mon Sep 17 00:00:00 2001 From: natsukium Date: Sun, 10 Sep 2023 19:52:35 +0900 Subject: [PATCH 091/346] python310Packages.langsmith: 0.0.24 -> 0.0.35 Diff: https://github.com/langchain-ai/langsmith-sdk/compare/refs/tags/v0.0.24...v0.0.35 Changelog: https://github.com/langchain-ai/langsmith-sdk/releases/tag/v0.0.35 --- pkgs/development/python-modules/langsmith/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/langsmith/default.nix b/pkgs/development/python-modules/langsmith/default.nix index eeae23611148..cdb89dc49121 100644 --- a/pkgs/development/python-modules/langsmith/default.nix +++ b/pkgs/development/python-modules/langsmith/default.nix @@ -1,6 +1,7 @@ { lib , buildPythonPackage , fetchFromGitHub +, freezegun , poetry-core , pydantic , pytest-asyncio @@ -11,7 +12,7 @@ buildPythonPackage rec { pname = "langsmith"; - version = "0.0.24"; + version = "0.0.35"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -20,7 +21,7 @@ buildPythonPackage rec { owner = "langchain-ai"; repo = "langsmith-sdk"; rev = "refs/tags/v${version}"; - hash = "sha256-Uv6zzSWs+Fvb0ztwgkbkZcaNJOFpt8pWh88HZHsTris="; + hash = "sha256-TR4vBsRImMLs7CTlBt1NHL+n65jXxBNbOY7wIlfFBfM="; }; sourceRoot = "${src.name}/python"; @@ -35,6 +36,7 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ + freezegun pytest-asyncio pytestCheckHook ]; From 31d343bbd0c586ca633d1a51fa41b02c217f4ccb Mon Sep 17 00:00:00 2001 From: natsukium Date: Sun, 10 Sep 2023 19:54:37 +0900 Subject: [PATCH 092/346] python310Packages.langchain: 0.0.268 -> 0.0.285 Diff: https://github.com/hwchase17/langchain/compare/refs/tags/v0.0.268...v0.0.285 Changelog: https://github.com/hwchase17/langchain/releases/tag/v0.0.285 --- pkgs/development/python-modules/langchain/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/langchain/default.nix b/pkgs/development/python-modules/langchain/default.nix index df04d5b4659c..865ce51b07db 100644 --- a/pkgs/development/python-modules/langchain/default.nix +++ b/pkgs/development/python-modules/langchain/default.nix @@ -43,6 +43,7 @@ , librosa , lxml , manifest-ml +, markdownify , neo4j , networkx , nlpcloud @@ -85,7 +86,7 @@ buildPythonPackage rec { pname = "langchain"; - version = "0.0.268"; + version = "0.0.285"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -94,7 +95,7 @@ buildPythonPackage rec { owner = "hwchase17"; repo = "langchain"; rev = "refs/tags/v${version}"; - hash = "sha256-x5cYtOY91JpW3vV7Q6JNNRoTFKGMu93TqBAhnhQ6pHE="; + hash = "sha256-3vOfwn8qvPd9dPRnsX14bVSLQQKHLPS5r15S8yAQFpw="; }; sourceRoot = "${src.name}/libs/langchain"; @@ -264,6 +265,7 @@ buildPythonPackage rec { nativeCheckInputs = [ freezegun + markdownify pandas pytest-asyncio pytest-mock From 36026496120235cd128fbda4f4a671b8f8f701f1 Mon Sep 17 00:00:00 2001 From: Nadir Ishiguro Date: Sun, 10 Sep 2023 20:39:23 +0200 Subject: [PATCH 093/346] rdiff-backup: 2.2.5 -> 2.2.6 https://github.com/rdiff-backup/rdiff-backup/releases/tag/v2.2.6 --- pkgs/tools/backup/rdiff-backup/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/backup/rdiff-backup/default.nix b/pkgs/tools/backup/rdiff-backup/default.nix index 654306f873b9..58605362f065 100644 --- a/pkgs/tools/backup/rdiff-backup/default.nix +++ b/pkgs/tools/backup/rdiff-backup/default.nix @@ -6,11 +6,11 @@ let in pypkgs.buildPythonApplication rec { pname = "rdiff-backup"; - version = "2.2.5"; + version = "2.2.6"; src = fetchPypi { inherit pname version; - sha256 = "sha256-huKCa3hOw+pO8YfZNu5fFSd0IsQHfvoBVu9n4xOeoI4="; + sha256 = "sha256-0HeDVyZrxlE7t/daRXCymySydgNIu/YHur/DpvCUWM8"; }; nativeBuildInputs = with pypkgs; [ setuptools-scm ]; From a3cb994e1b91beab5729b932c122c4a7a66cc50d Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 10 Sep 2023 19:29:38 -0400 Subject: [PATCH 094/346] symbolicator: init at 23.8.0 https://github.com/getsentry/symbolicator --- pkgs/by-name/sy/symbolicator/Cargo.lock | 5630 ++++++++++++++++++++++ pkgs/by-name/sy/symbolicator/package.nix | 62 + 2 files changed, 5692 insertions(+) create mode 100644 pkgs/by-name/sy/symbolicator/Cargo.lock create mode 100644 pkgs/by-name/sy/symbolicator/package.nix diff --git a/pkgs/by-name/sy/symbolicator/Cargo.lock b/pkgs/by-name/sy/symbolicator/Cargo.lock new file mode 100644 index 000000000000..d9aecbd9a9f2 --- /dev/null +++ b/pkgs/by-name/sy/symbolicator/Cargo.lock @@ -0,0 +1,5630 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "Inflector" +version = "0.11.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" +dependencies = [ + "lazy_static", + "regex", +] + +[[package]] +name = "addr2line" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + +[[package]] +name = "ahash" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" +dependencies = [ + "cfg-if", + "getrandom", + "once_cell", + "version_check", +] + +[[package]] +name = "aho-corasick" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86b8f9420f797f2d9e935edf629310eb938a0d839f984e25327f3c7eed22300c" +dependencies = [ + "memchr", +] + +[[package]] +name = "alloc-no-stdlib" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" + +[[package]] +name = "alloc-stdlib" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" +dependencies = [ + "alloc-no-stdlib", +] + +[[package]] +name = "android-tzdata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anstream" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is-terminal", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd" + +[[package]] +name = "anstyle-parse" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" +dependencies = [ + "windows-sys 0.48.0", +] + +[[package]] +name = "anstyle-wincon" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c677ab05e09154296dd37acecd46420c17b9713e8366facafa8fc0885167cf4c" +dependencies = [ + "anstyle", + "windows-sys 0.48.0", +] + +[[package]] +name = "anyhow" +version = "1.0.72" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854" +dependencies = [ + "backtrace", +] + +[[package]] +name = "apple-crash-report-parser" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc62d1d734597ddedd2ba0673780ee0a57b4de9a6e05f8731f2361d90b9c3e3" +dependencies = [ + "chrono", + "lazy_static", + "regex", + "uuid", +] + +[[package]] +name = "arc-swap" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" + +[[package]] +name = "arrayvec" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" + +[[package]] +name = "ast_node" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c09c69dffe06d222d072c878c3afe86eee2179806f20503faec97250268b4c24" +dependencies = [ + "pmutil", + "proc-macro2", + "quote", + "swc_macros_common", + "syn 2.0.28", +] + +[[package]] +name = "async-compression" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62b74f44609f0f91493e3082d3734d98497e094777144380ea4db9f9905dd5b6" +dependencies = [ + "brotli", + "flate2", + "futures-core", + "memchr", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "async-io" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" +dependencies = [ + "async-lock", + "autocfg", + "cfg-if", + "concurrent-queue", + "futures-lite", + "log", + "parking", + "polling", + "rustix 0.37.23", + "slab", + "socket2 0.4.9", + "waker-fn", +] + +[[package]] +name = "async-lock" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" +dependencies = [ + "event-listener", +] + +[[package]] +name = "async-trait" +version = "0.1.72" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc6dde6e4ed435a4c1ee4e73592f5ba9da2151af10076cc04858746af9352d09" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.28", +] + +[[package]] +name = "autocfg" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" + +[[package]] +name = "aws-config" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de3d533e0263bf453cc80af4c8bcc4d64e2aca293bd16f81633a36f1bf4a97cb" +dependencies = [ + "aws-credential-types", + "aws-http", + "aws-sdk-sso", + "aws-sdk-sts", + "aws-smithy-async", + "aws-smithy-client", + "aws-smithy-http", + "aws-smithy-http-tower", + "aws-smithy-json", + "aws-smithy-types", + "aws-types", + "bytes", + "fastrand 2.0.0", + "hex", + "http", + "hyper", + "ring", + "time 0.3.25", + "tokio", + "tower", + "tracing", + "zeroize", +] + +[[package]] +name = "aws-credential-types" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e4834ba01c5ad1ed9740aa222de62190e3c565d11ab7e72cc68314a258994567" +dependencies = [ + "aws-smithy-async", + "aws-smithy-types", + "fastrand 2.0.0", + "tokio", + "tracing", + "zeroize", +] + +[[package]] +name = "aws-http" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72badf9de83cc7d66b21b004f09241836823b8302afb25a24708769e576a8d8f" +dependencies = [ + "aws-credential-types", + "aws-smithy-http", + "aws-smithy-types", + "aws-types", + "bytes", + "http", + "http-body", + "lazy_static", + "percent-encoding", + "pin-project-lite", + "tracing", +] + +[[package]] +name = "aws-runtime" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf832f522111225c02547e1e1c28137e840e4b082399d93a236e4b29193a4667" +dependencies = [ + "aws-credential-types", + "aws-http", + "aws-sigv4", + "aws-smithy-async", + "aws-smithy-eventstream", + "aws-smithy-http", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "fastrand 2.0.0", + "http", + "percent-encoding", + "tracing", + "uuid", +] + +[[package]] +name = "aws-sdk-s3" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e30370b61599168d38190ad272bb91842cd81870a6ca035c05dd5726d22832c" +dependencies = [ + "aws-credential-types", + "aws-http", + "aws-runtime", + "aws-sigv4", + "aws-smithy-async", + "aws-smithy-checksums", + "aws-smithy-client", + "aws-smithy-eventstream", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-smithy-xml", + "aws-types", + "bytes", + "http", + "http-body", + "once_cell", + "percent-encoding", + "regex", + "tokio-stream", + "tracing", + "url", +] + +[[package]] +name = "aws-sdk-sso" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f41bf2c28d32dbb9894a8fcfcb148265d034d3f4a170552a47553a09de890895" +dependencies = [ + "aws-credential-types", + "aws-http", + "aws-runtime", + "aws-smithy-async", + "aws-smithy-client", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-types", + "bytes", + "http", + "regex", + "tokio-stream", + "tracing", +] + +[[package]] +name = "aws-sdk-sts" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79e21aa1a5b0853969a1ef96ccfaa8ff5d57c761549786a4d5f86c1902b2586a" +dependencies = [ + "aws-credential-types", + "aws-http", + "aws-runtime", + "aws-smithy-async", + "aws-smithy-client", + "aws-smithy-http", + "aws-smithy-json", + "aws-smithy-query", + "aws-smithy-runtime", + "aws-smithy-runtime-api", + "aws-smithy-types", + "aws-smithy-xml", + "aws-types", + "http", + "regex", + "tracing", +] + +[[package]] +name = "aws-sigv4" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2cb40a93429794065f41f0581734fc56a345f6a38d8e2e3c25c7448d930cd132" +dependencies = [ + "aws-smithy-eventstream", + "aws-smithy-http", + "bytes", + "form_urlencoded", + "hex", + "hmac", + "http", + "once_cell", + "percent-encoding", + "regex", + "sha2", + "time 0.3.25", + "tracing", +] + +[[package]] +name = "aws-smithy-async" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ee6d17d487c8b579423067718b3580c0908d0f01d7461813f94ec4323bad623" +dependencies = [ + "futures-util", + "pin-project-lite", + "tokio", + "tokio-stream", +] + +[[package]] +name = "aws-smithy-checksums" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d1849fd5916904513fb0862543b36f8faab43c07984dbc476132b7da1aed056" +dependencies = [ + "aws-smithy-http", + "aws-smithy-types", + "bytes", + "crc32c", + "crc32fast", + "hex", + "http", + "http-body", + "md-5", + "pin-project-lite", + "sha1", + "sha2", + "tracing", +] + +[[package]] +name = "aws-smithy-client" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bdbe0a3ad15283cc5f863a68cb6adc8e256e7c109c43c01bdd09be407219a1e9" +dependencies = [ + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-http-tower", + "aws-smithy-types", + "bytes", + "fastrand 2.0.0", + "http", + "http-body", + "hyper", + "hyper-rustls", + "lazy_static", + "pin-project-lite", + "rustls", + "tokio", + "tower", + "tracing", +] + +[[package]] +name = "aws-smithy-eventstream" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a56afef1aa766f512b4970b4c3150b9bf2df8035939723830df4b30267e2d7cb" +dependencies = [ + "aws-smithy-types", + "bytes", + "crc32fast", +] + +[[package]] +name = "aws-smithy-http" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34dc313472d727f5ef44fdda93e668ebfe17380c99dee512c403e3ca51863bb9" +dependencies = [ + "aws-smithy-eventstream", + "aws-smithy-types", + "bytes", + "bytes-utils", + "futures-core", + "http", + "http-body", + "hyper", + "once_cell", + "percent-encoding", + "pin-project-lite", + "pin-utils", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "aws-smithy-http-tower" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1dd50fca5a4ea4ec3771689ee93bf06b32de02a80af01ed93a8f8a4ed90e8483" +dependencies = [ + "aws-smithy-http", + "aws-smithy-types", + "bytes", + "http", + "http-body", + "pin-project-lite", + "tower", + "tracing", +] + +[[package]] +name = "aws-smithy-json" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3591dd7c2fe01ab8025e4847a0a0f6d0c2b2269714688ffb856f9cf6c6d465cf" +dependencies = [ + "aws-smithy-types", +] + +[[package]] +name = "aws-smithy-query" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbabb1145e65dd57ae72d91a2619d3f5fba40b68a5f40ba009c30571dfd60aff" +dependencies = [ + "aws-smithy-types", + "urlencoding", +] + +[[package]] +name = "aws-smithy-runtime" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3687fb838d4ad1c883b62eb59115bc9fb02c4f308aac49a7df89627067f6eb0d" +dependencies = [ + "aws-smithy-async", + "aws-smithy-client", + "aws-smithy-http", + "aws-smithy-runtime-api", + "aws-smithy-types", + "bytes", + "fastrand 2.0.0", + "http", + "http-body", + "once_cell", + "pin-project-lite", + "pin-utils", + "tokio", + "tracing", +] + +[[package]] +name = "aws-smithy-runtime-api" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cfbf1e5c2108b41f5ca607cde40dd5109fecc448f5d30c8e614b61f36dce704" +dependencies = [ + "aws-smithy-async", + "aws-smithy-http", + "aws-smithy-types", + "bytes", + "http", + "tokio", + "tracing", +] + +[[package]] +name = "aws-smithy-types" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eed0a94eefd845a2a78677f1b72f02fa75802d38f7f59be675add140279aa8bf" +dependencies = [ + "base64-simd", + "itoa", + "num-integer", + "ryu", + "serde", + "time 0.3.25", +] + +[[package]] +name = "aws-smithy-xml" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c88052c812f696143ad7ba729c63535209ff0e0f49e31a6d2b1205208ea6ea79" +dependencies = [ + "xmlparser", +] + +[[package]] +name = "aws-types" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6bceb8cf724ad057ad7f327d0d256d7147b3eac777b39849a26189e003dc9782" +dependencies = [ + "aws-credential-types", + "aws-smithy-async", + "aws-smithy-client", + "aws-smithy-http", + "aws-smithy-types", + "http", + "rustc_version 0.4.0", + "tracing", +] + +[[package]] +name = "axum" +version = "0.6.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf" +dependencies = [ + "async-trait", + "axum-core", + "bitflags 1.3.2", + "bytes", + "futures-util", + "http", + "http-body", + "hyper", + "itoa", + "matchit", + "memchr", + "mime", + "multer", + "percent-encoding", + "pin-project-lite", + "rustversion", + "serde", + "serde_json", + "serde_path_to_error", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tower", + "tower-layer", + "tower-service", +] + +[[package]] +name = "axum-core" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" +dependencies = [ + "async-trait", + "bytes", + "futures-util", + "http", + "http-body", + "mime", + "rustversion", + "tower-layer", + "tower-service", +] + +[[package]] +name = "axum-server" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "447f28c85900215cc1bea282f32d4a2f22d55c5a300afdfbc661c8d6a632e063" +dependencies = [ + "arc-swap", + "bytes", + "futures-util", + "http", + "http-body", + "hyper", + "pin-project-lite", + "rustls", + "rustls-pemfile", + "tokio", + "tokio-rustls", + "tower-service", +] + +[[package]] +name = "backtrace" +version = "0.3.68" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" +dependencies = [ + "addr2line", + "cc", + "cfg-if", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] + +[[package]] +name = "base64" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" + +[[package]] +name = "base64" +version = "0.21.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" + +[[package]] +name = "base64-simd" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195" +dependencies = [ + "outref", + "vsimd", +] + +[[package]] +name = "better_scoped_tls" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "794edcc9b3fb07bb4aecaa11f093fd45663b4feadb782d68303a2268bc2701de" +dependencies = [ + "scoped-tls", +] + +[[package]] +name = "binary-merge" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "597bb81c80a54b6a4381b23faba8d7774b144c94cbd1d6fe3f1329bd776554ab" + +[[package]] +name = "bindgen" +version = "0.66.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2b84e06fc203107bfbad243f4aba2af864eb7db3b1cf46ea0a023b0b433d2a7" +dependencies = [ + "bitflags 2.3.3", + "cexpr", + "clang-sys", + "lazy_static", + "lazycell", + "log", + "peeking_take_while", + "prettyplease", + "proc-macro2", + "quote", + "regex", + "rustc-hash", + "shlex", + "syn 2.0.28", + "which", +] + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42" + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "breakpad-symbols" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba1d08190a0784c68f8eb9f53e4ce78e85ae4f1aaf900a6b8a203ac8573ba488" +dependencies = [ + "async-trait", + "circular", + "debugid", + "minidump-common", + "nom", + "range-map", + "thiserror", + "tokio", + "tracing", +] + +[[package]] +name = "brotli" +version = "3.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor", +] + +[[package]] +name = "brotli-decompressor" +version = "2.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", +] + +[[package]] +name = "brownstone" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5839ee4f953e811bfdcf223f509cb2c6a3e1447959b0bff459405575bc17f22" +dependencies = [ + "arrayvec", +] + +[[package]] +name = "bumpalo" +version = "3.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" + +[[package]] +name = "bytecount" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c" + +[[package]] +name = "byteorder" +version = "1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" + +[[package]] +name = "bytes" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" + +[[package]] +name = "bytes-utils" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e47d3a8076e283f3acd27400535992edb3ba4b5bb72f8891ad8fbe7932a7d4b9" +dependencies = [ + "bytes", + "either", +] + +[[package]] +name = "bzip2" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" +dependencies = [ + "bzip2-sys", + "libc", +] + +[[package]] +name = "bzip2-sys" +version = "0.1.11+1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" +dependencies = [ + "cc", + "libc", + "pkg-config", +] + +[[package]] +name = "cadence" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f39286bc075b023101dccdb79456a1334221c768b8faede0c2aff7ed29a9482d" +dependencies = [ + "crossbeam-channel", +] + +[[package]] +name = "camino" +version = "1.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" +dependencies = [ + "serde", +] + +[[package]] +name = "cargo-platform" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2cfa25e60aea747ec7e1124f238816749faa93759c6ff5b31f1ccdda137f4479" +dependencies = [ + "serde", +] + +[[package]] +name = "cargo_metadata" +version = "0.14.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa" +dependencies = [ + "camino", + "cargo-platform", + "semver 1.0.18", + "serde", + "serde_json", +] + +[[package]] +name = "cc" +version = "1.0.82" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "305fe645edc1442a0fa8b6726ba61d422798d37a52e12eaecf4b022ebbb88f01" +dependencies = [ + "jobserver", + "libc", +] + +[[package]] +name = "cexpr" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" +dependencies = [ + "nom", +] + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "chrono" +version = "0.4.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" +dependencies = [ + "android-tzdata", + "iana-time-zone", + "js-sys", + "num-traits", + "serde", + "time 0.1.45", + "wasm-bindgen", + "winapi", +] + +[[package]] +name = "circular" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0fc239e0f6cb375d2402d48afb92f76f5404fd1df208a41930ec81eda078bea" + +[[package]] +name = "clang-sys" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" +dependencies = [ + "glob", + "libc", + "libloading", +] + +[[package]] +name = "clap" +version = "4.3.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c27cdf28c0f604ba3f512b0c9a409f8de8513e4816705deb0498b627e7c3a3fd" +dependencies = [ + "clap_builder", + "clap_derive", + "once_cell", +] + +[[package]] +name = "clap_builder" +version = "4.3.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08a9f1ab5e9f01a9b81f202e8562eb9a10de70abf9eaeac1be465c28b75aa4aa" +dependencies = [ + "anstream", + "anstyle", + "clap_lex", + "strsim", +] + +[[package]] +name = "clap_derive" +version = "4.3.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 2.0.28", +] + +[[package]] +name = "clap_lex" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" + +[[package]] +name = "cmake" +version = "0.1.50" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" +dependencies = [ + "cc", +] + +[[package]] +name = "colorchoice" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" + +[[package]] +name = "concurrent-queue" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "console" +version = "0.15.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" +dependencies = [ + "encode_unicode 0.3.6", + "lazy_static", + "libc", + "unicode-width", + "windows-sys 0.45.0", +] + +[[package]] +name = "core-foundation" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" + +[[package]] +name = "cpp_demangle" +version = "0.4.1" +source = "git+https://github.com/getsentry/cpp_demangle?branch=sentry-patches#88aad3dbf8964b002ab581d8d21f35b2c73895e9" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "cpufeatures" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" +dependencies = [ + "libc", +] + +[[package]] +name = "crc32c" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8f48d60e5b4d2c53d5c2b1d8a58c849a70ae5e5509b08a48d047e3b65714a74" +dependencies = [ + "rustc_version 0.4.0", +] + +[[package]] +name = "crc32fast" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" +dependencies = [ + "cfg-if", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" +dependencies = [ + "cfg-if", + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" +dependencies = [ + "autocfg", + "cfg-if", + "crossbeam-utils", + "memoffset", + "scopeguard", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossterm" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c36c10130df424b2f3552fcc2ddcd9b28a27b1e54b358b45874f88d1ca6888c" +dependencies = [ + "bitflags 1.3.2", + "crossterm_winapi", + "lazy_static", + "libc", + "mio 0.7.14", + "parking_lot 0.11.2", + "signal-hook", + "winapi", +] + +[[package]] +name = "crossterm_winapi" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0da8964ace4d3e4a044fd027919b2237000b24315a37c916f61809f1ff2140b9" +dependencies = [ + "winapi", +] + +[[package]] +name = "crypto-common" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "csv" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "626ae34994d3d8d668f4269922248239db4ae42d538b14c398b74a52208e8086" +dependencies = [ + "csv-core", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "csv-core" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" +dependencies = [ + "memchr", +] + +[[package]] +name = "custom_debug" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e89e0ae2c2a42be29595d05c50e3ce6096c0698a97e021c3289790f0750cc8e2" +dependencies = [ + "custom_debug_derive", +] + +[[package]] +name = "custom_debug_derive" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08a9f3941234c9f62ceaa2782974827749de9b0a8a6487275a278da068e1baf7" +dependencies = [ + "proc-macro2", + "syn 1.0.109", + "synstructure", +] + +[[package]] +name = "data-encoding" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" + +[[package]] +name = "data-url" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41b319d1b62ffbd002e057f36bebd1f42b9f97927c9577461d855f3513c4289f" + +[[package]] +name = "debugid" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" +dependencies = [ + "serde", + "uuid", +] + +[[package]] +name = "deranged" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7684a49fb1af197853ef7b2ee694bc1f5b4179556f1e5710e1760c5db6f5e929" +dependencies = [ + "serde", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "crypto-common", + "subtle", +] + +[[package]] +name = "dirs" +version = "5.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" +dependencies = [ + "dirs-sys", +] + +[[package]] +name = "dirs-next" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" +dependencies = [ + "cfg-if", + "dirs-sys-next", +] + +[[package]] +name = "dirs-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" +dependencies = [ + "libc", + "option-ext", + "redox_users", + "windows-sys 0.48.0", +] + +[[package]] +name = "dirs-sys-next" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" +dependencies = [ + "libc", + "redox_users", + "winapi", +] + +[[package]] +name = "dmsort" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0bc8fbe9441c17c9f46f75dfe27fa1ddb6c68a461ccaed0481419219d4f10d3" + +[[package]] +name = "either" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" + +[[package]] +name = "elementtree" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3efd4742acf458718a6456e0adf0b4d734d6b783e452bbf1ac36bf31f4085cb3" +dependencies = [ + "string_cache", +] + +[[package]] +name = "elsa" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "714f766f3556b44e7e4776ad133fcc3445a489517c25c704ace411bb14790194" +dependencies = [ + "stable_deref_trait", +] + +[[package]] +name = "encode_unicode" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" + +[[package]] +name = "encode_unicode" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" + +[[package]] +name = "encoding_rs" +version = "0.8.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "enum-as-inner" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "enum-primitive-derive" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c375b9c5eadb68d0a6efee2999fef292f45854c3444c86f09d8ab086ba942b0e" +dependencies = [ + "num-traits", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "equivalent" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" + +[[package]] +name = "errno" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" +dependencies = [ + "errno-dragonfly", + "libc", + "windows-sys 0.48.0", +] + +[[package]] +name = "errno-dragonfly" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" +dependencies = [ + "cc", + "libc", +] + +[[package]] +name = "error-chain" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc" +dependencies = [ + "version_check", +] + +[[package]] +name = "event-listener" +version = "2.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" + +[[package]] +name = "fallible-iterator" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" + +[[package]] +name = "fastrand" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" +dependencies = [ + "instant", +] + +[[package]] +name = "fastrand" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" + +[[package]] +name = "filetime" +version = "0.2.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall 0.3.5", + "windows-sys 0.48.0", +] + +[[package]] +name = "findshlibs" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64" +dependencies = [ + "cc", + "lazy_static", + "libc", + "winapi", +] + +[[package]] +name = "flate2" +version = "1.0.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + +[[package]] +name = "form_urlencoded" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "from_variant" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03ec5dc38ee19078d84a692b1c41181ff9f94331c76cee66ff0208c770b5e54f" +dependencies = [ + "pmutil", + "proc-macro2", + "swc_macros_common", + "syn 2.0.28", +] + +[[package]] +name = "futures" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" + +[[package]] +name = "futures-executor" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" + +[[package]] +name = "futures-lite" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" +dependencies = [ + "fastrand 1.9.0", + "futures-core", + "futures-io", + "memchr", + "parking", + "pin-project-lite", + "waker-fn", +] + +[[package]] +name = "futures-macro" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.28", +] + +[[package]] +name = "futures-sink" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" + +[[package]] +name = "futures-task" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" + +[[package]] +name = "futures-util" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", +] + +[[package]] +name = "gcp_auth" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d3b20d3058763d26d88e6e7a49998841e5296735b00dbfb064ff7cb142933dd" +dependencies = [ + "async-trait", + "base64 0.21.2", + "dirs-next", + "hyper", + "hyper-rustls", + "ring", + "rustls", + "rustls-pemfile", + "serde", + "serde_json", + "thiserror", + "time 0.3.25", + "tokio", + "tracing", + "tracing-futures", + "url", + "which", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.11.0+wasi-snapshot-preview1", +] + +[[package]] +name = "gimli" +version = "0.27.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" +dependencies = [ + "fallible-iterator", + "stable_deref_trait", +] + +[[package]] +name = "glob" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" + +[[package]] +name = "goblin" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d6b4de4a8eb6c46a8c77e1d3be942cb9a8bf073c22374578e5ba4b08ed0ff68" +dependencies = [ + "log", + "plain", + "scroll", +] + +[[package]] +name = "h2" +version = "0.3.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049" +dependencies = [ + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http", + "indexmap 1.9.3", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + +[[package]] +name = "hashbrown" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" + +[[package]] +name = "hermit-abi" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "hmac" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" +dependencies = [ + "digest", +] + +[[package]] +name = "hostname" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" +dependencies = [ + "libc", + "match_cfg", + "winapi", +] + +[[package]] +name = "http" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http-body" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" +dependencies = [ + "bytes", + "http", + "pin-project-lite", +] + +[[package]] +name = "http-range-header" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f" + +[[package]] +name = "httparse" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" + +[[package]] +name = "httpdate" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" + +[[package]] +name = "humantime" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" + +[[package]] +name = "humantime-serde" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c" +dependencies = [ + "humantime", + "serde", +] + +[[package]] +name = "hyper" +version = "0.14.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" +dependencies = [ + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "socket2 0.4.9", + "tokio", + "tower-service", + "tracing", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" +dependencies = [ + "futures-util", + "http", + "hyper", + "log", + "rustls", + "rustls-native-certs", + "tokio", + "tokio-rustls", +] + +[[package]] +name = "hyper-tls" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" +dependencies = [ + "bytes", + "hyper", + "native-tls", + "tokio", + "tokio-native-tls", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.57" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "wasm-bindgen", + "windows", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "idna" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" +dependencies = [ + "matches", + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "idna" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "if_chain" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed" + +[[package]] +name = "indent_write" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0cfe9645a18782869361d9c8732246be7b410ad4e919d3609ebabdac00ba12c3" + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown 0.12.3", +] + +[[package]] +name = "indexmap" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" +dependencies = [ + "equivalent", + "hashbrown 0.14.0", +] + +[[package]] +name = "inplace-vec-builder" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf64c2edc8226891a71f127587a2861b132d2b942310843814d5001d99a1d307" +dependencies = [ + "smallvec", +] + +[[package]] +name = "insta" +version = "1.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0770b0a3d4c70567f0d58331f3088b0e4c4f56c9b8d764efe654b4a5d46de3a" +dependencies = [ + "console", + "lazy_static", + "linked-hash-map", + "pest", + "pest_derive", + "serde", + "similar", + "yaml-rust", +] + +[[package]] +name = "instant" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "io-lifetimes" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" +dependencies = [ + "hermit-abi", + "libc", + "windows-sys 0.48.0", +] + +[[package]] +name = "ipconfig" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" +dependencies = [ + "socket2 0.5.3", + "widestring", + "windows-sys 0.48.0", + "winreg", +] + +[[package]] +name = "ipnet" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" + +[[package]] +name = "ipnetwork" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf466541e9d546596ee94f9f69590f89473455f88372423e0008fc1a7daf100e" +dependencies = [ + "serde", +] + +[[package]] +name = "is-macro" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4467ed1321b310c2625c5aa6c1b1ffc5de4d9e42668cf697a08fb033ee8265e" +dependencies = [ + "Inflector", + "pmutil", + "proc-macro2", + "quote", + "syn 2.0.28", +] + +[[package]] +name = "is-terminal" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" +dependencies = [ + "hermit-abi", + "rustix 0.38.8", + "windows-sys 0.48.0", +] + +[[package]] +name = "itertools" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" + +[[package]] +name = "jemalloc-sys" +version = "0.5.4+5.3.0-patched" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac6c1946e1cea1788cbfde01c993b52a10e2da07f4bac608228d1bed20bfebf2" +dependencies = [ + "cc", + "libc", +] + +[[package]] +name = "jemallocator" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0de374a9f8e63150e6f5e8a60cc14c668226d7a347d8aee1a45766e3c4dd3bc" +dependencies = [ + "jemalloc-sys", + "libc", +] + +[[package]] +name = "jobserver" +version = "0.1.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" +dependencies = [ + "libc", +] + +[[package]] +name = "joinery" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72167d68f5fce3b8655487b8038691a3c9984ee769590f93f2a631f4ad64e4f5" + +[[package]] +name = "js-source-scopes" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8da074711c234172331e301df3f78c7a3988e6e8fab0a128a1fb9ff235f384d" +dependencies = [ + "indexmap 1.9.3", + "sourcemap", + "swc_common", + "swc_ecma_parser", + "swc_ecma_visit", + "thiserror", + "tracing", +] + +[[package]] +name = "js-sys" +version = "0.3.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" +dependencies = [ + "wasm-bindgen", +] + +[[package]] +name = "jsonwebtoken" +version = "8.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378" +dependencies = [ + "base64 0.21.2", + "pem", + "ring", + "serde", + "serde_json", + "simple_asn1", +] + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "lazycell" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" + +[[package]] +name = "leb128" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67" + +[[package]] +name = "lexical" +version = "6.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6" +dependencies = [ + "lexical-core", +] + +[[package]] +name = "lexical-core" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46" +dependencies = [ + "lexical-parse-float", + "lexical-parse-integer", + "lexical-util", + "lexical-write-float", + "lexical-write-integer", +] + +[[package]] +name = "lexical-parse-float" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f" +dependencies = [ + "lexical-parse-integer", + "lexical-util", + "static_assertions", +] + +[[package]] +name = "lexical-parse-integer" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9" +dependencies = [ + "lexical-util", + "static_assertions", +] + +[[package]] +name = "lexical-util" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc" +dependencies = [ + "static_assertions", +] + +[[package]] +name = "lexical-write-float" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862" +dependencies = [ + "lexical-util", + "lexical-write-integer", + "static_assertions", +] + +[[package]] +name = "lexical-write-integer" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446" +dependencies = [ + "lexical-util", + "static_assertions", +] + +[[package]] +name = "libc" +version = "0.2.147" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" + +[[package]] +name = "libloading" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" +dependencies = [ + "cfg-if", + "winapi", +] + +[[package]] +name = "linked-hash-map" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" + +[[package]] +name = "linux-raw-sys" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" + +[[package]] +name = "linux-raw-sys" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" + +[[package]] +name = "lock_api" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" + +[[package]] +name = "lru-cache" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" +dependencies = [ + "linked-hash-map", +] + +[[package]] +name = "mach2" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d0d1830bcd151a6fc4aea1369af235b36c1528fe976b8ff678683c9995eade8" +dependencies = [ + "libc", +] + +[[package]] +name = "match_cfg" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" + +[[package]] +name = "matchers" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" +dependencies = [ + "regex-automata 0.1.10", +] + +[[package]] +name = "matches" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" + +[[package]] +name = "matchit" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed1202b2a6f884ae56f04cff409ab315c5ce26b5e58d7412e484f01fd52f52ef" + +[[package]] +name = "maybe-owned" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4" + +[[package]] +name = "md-5" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca" +dependencies = [ + "digest", +] + +[[package]] +name = "memchr" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" + +[[package]] +name = "memmap2" +version = "0.5.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" +dependencies = [ + "libc", +] + +[[package]] +name = "memoffset" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" +dependencies = [ + "autocfg", +] + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "mime_guess" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" +dependencies = [ + "mime", + "unicase", +] + +[[package]] +name = "minidump" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae58b2a19e3bac45c7fbf0dcd674534664a00c84ca103d6561b1bf678bd4c4ef" +dependencies = [ + "debugid", + "encoding_rs", + "memmap2", + "minidump-common", + "num-traits", + "range-map", + "scroll", + "thiserror", + "time 0.3.25", + "tracing", + "uuid", +] + +[[package]] +name = "minidump-common" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9114b15d86ee5e5c3e3b4d05821d17237adbf98c11dd07fc8f5a9b037a010ee5" +dependencies = [ + "bitflags 1.3.2", + "debugid", + "enum-primitive-derive", + "num-traits", + "range-map", + "scroll", + "smart-default", +] + +[[package]] +name = "minidump-processor" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ebfa889f81c8bd7e93b8754592ada37384dd2335f4fde46333ecc8d50769dcc" +dependencies = [ + "async-trait", + "breakpad-symbols", + "debugid", + "futures-util", + "memmap2", + "minidump", + "minidump-common", + "minidump-unwind", + "scroll", + "serde", + "serde_json", + "thiserror", + "tracing", + "yaxpeax-x86", +] + +[[package]] +name = "minidump-unwind" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7133c7cae61b2e7166cf386d6d17a8b4b33888871273b5cdfbed667b03539bd" +dependencies = [ + "async-trait", + "breakpad-symbols", + "minidump", + "minidump-common", + "scroll", + "tracing", +] + +[[package]] +name = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + +[[package]] +name = "miniz_oxide" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" +dependencies = [ + "adler", +] + +[[package]] +name = "mio" +version = "0.7.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc" +dependencies = [ + "libc", + "log", + "miow", + "ntapi", + "winapi", +] + +[[package]] +name = "mio" +version = "0.8.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" +dependencies = [ + "libc", + "wasi 0.11.0+wasi-snapshot-preview1", + "windows-sys 0.48.0", +] + +[[package]] +name = "miow" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21" +dependencies = [ + "winapi", +] + +[[package]] +name = "moka" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa6e72583bf6830c956235bff0d5afec8cf2952f579ebad18ae7821a917d950f" +dependencies = [ + "async-io", + "async-lock", + "crossbeam-channel", + "crossbeam-epoch", + "crossbeam-utils", + "futures-util", + "once_cell", + "parking_lot 0.12.1", + "quanta", + "rustc_version 0.4.0", + "scheduled-thread-pool", + "skeptic", + "smallvec", + "tagptr", + "thiserror", + "triomphe", + "uuid", +] + +[[package]] +name = "msvc-demangler" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfb67c6dd0fa9b00619c41c5700b6f92d5f418be49b45ddb9970fbd4569df3c8" +dependencies = [ + "bitflags 1.3.2", +] + +[[package]] +name = "multer" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01acbdc23469fd8fe07ab135923371d5f5a422fbf9c522158677c8eb15bc51c2" +dependencies = [ + "bytes", + "encoding_rs", + "futures-util", + "http", + "httparse", + "log", + "memchr", + "mime", + "spin 0.9.8", + "version_check", +] + +[[package]] +name = "native-tls" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" +dependencies = [ + "lazy_static", + "libc", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework", + "security-framework-sys", + "tempfile", +] + +[[package]] +name = "new_debug_unreachable" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" + +[[package]] +name = "nom" +version = "7.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" +dependencies = [ + "memchr", + "minimal-lexical", +] + +[[package]] +name = "nom-supreme" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2bd3ae6c901f1959588759ff51c95d24b491ecb9ff91aa9c2ef4acc5b1dcab27" +dependencies = [ + "brownstone", + "indent_write", + "joinery", + "memchr", + "nom", +] + +[[package]] +name = "ntapi" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f" +dependencies = [ + "winapi", +] + +[[package]] +name = "nu-ansi-term" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" +dependencies = [ + "overload", + "winapi", +] + +[[package]] +name = "num-bigint" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", + "serde", +] + +[[package]] +name = "num-integer" +version = "0.1.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" +dependencies = [ + "autocfg", + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num_cpus" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "num_threads" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" +dependencies = [ + "libc", +] + +[[package]] +name = "object" +version = "0.31.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" +dependencies = [ + "memchr", +] + +[[package]] +name = "once_cell" +version = "1.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" + +[[package]] +name = "openssl" +version = "0.10.56" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "729b745ad4a5575dd06a3e1af1414bd330ee561c01b3899eb584baeaa8def17e" +dependencies = [ + "bitflags 1.3.2", + "cfg-if", + "foreign-types", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.28", +] + +[[package]] +name = "openssl-probe" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" + +[[package]] +name = "openssl-sys" +version = "0.9.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "866b5f16f90776b9bb8dc1e1802ac6f0513de3a7a7465867bfbc563dc737faac" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] +name = "os_info" +version = "3.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "006e42d5b888366f1880eda20371fedde764ed2213dc8496f49622fa0c99cd5e" +dependencies = [ + "log", + "serde", + "winapi", +] + +[[package]] +name = "outref" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a" + +[[package]] +name = "overload" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" + +[[package]] +name = "parking" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" + +[[package]] +name = "parking_lot" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" +dependencies = [ + "instant", + "lock_api", + "parking_lot_core 0.8.6", +] + +[[package]] +name = "parking_lot" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +dependencies = [ + "lock_api", + "parking_lot_core 0.9.8", +] + +[[package]] +name = "parking_lot_core" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" +dependencies = [ + "cfg-if", + "instant", + "libc", + "redox_syscall 0.2.16", + "smallvec", + "winapi", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall 0.3.5", + "smallvec", + "windows-targets 0.48.1", +] + +[[package]] +name = "pdb" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82040a392923abe6279c00ab4aff62d5250d1c8555dc780e4b02783a7aa74863" +dependencies = [ + "fallible-iterator", + "scroll", + "uuid", +] + +[[package]] +name = "pdb-addr2line" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4e89a9f2f40b2389ba6da0814c8044bf942bece03dffa1514f84e3b525f4f9a" +dependencies = [ + "bitflags 1.3.2", + "elsa", + "maybe-owned", + "pdb", + "range-collections", + "thiserror", +] + +[[package]] +name = "peeking_take_while" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" + +[[package]] +name = "pem" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" +dependencies = [ + "base64 0.13.1", +] + +[[package]] +name = "percent-encoding" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" + +[[package]] +name = "pest" +version = "2.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1acb4a4365a13f749a93f1a094a7805e5cfa0955373a9de860d962eaa3a5fe5a" +dependencies = [ + "thiserror", + "ucd-trie", +] + +[[package]] +name = "pest_derive" +version = "2.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "666d00490d4ac815001da55838c500eafb0320019bbaa44444137c48b443a853" +dependencies = [ + "pest", + "pest_generator", +] + +[[package]] +name = "pest_generator" +version = "2.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68ca01446f50dbda87c1786af8770d535423fa8a53aec03b8f4e3d7eb10e0929" +dependencies = [ + "pest", + "pest_meta", + "proc-macro2", + "quote", + "syn 2.0.28", +] + +[[package]] +name = "pest_meta" +version = "2.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56af0a30af74d0445c0bf6d9d051c979b516a1a5af790d251daee76005420a48" +dependencies = [ + "once_cell", + "pest", + "sha2", +] + +[[package]] +name = "phf_generator" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" +dependencies = [ + "phf_shared", + "rand", +] + +[[package]] +name = "phf_shared" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" +dependencies = [ + "siphasher", +] + +[[package]] +name = "pin-project" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" +dependencies = [ + "pin-project-internal", +] + +[[package]] +name = "pin-project-internal" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.28", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "pkg-config" +version = "0.3.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" + +[[package]] +name = "plain" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" + +[[package]] +name = "pmutil" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52a40bc70c2c58040d2d8b167ba9a5ff59fc9dab7ad44771cfde3dcfde7a09c6" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.28", +] + +[[package]] +name = "polling" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" +dependencies = [ + "autocfg", + "bitflags 1.3.2", + "cfg-if", + "concurrent-queue", + "libc", + "log", + "pin-project-lite", + "windows-sys 0.48.0", +] + +[[package]] +name = "ppv-lite86" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" + +[[package]] +name = "precomputed-hash" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" + +[[package]] +name = "prettyplease" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c64d9ba0963cdcea2e1b2230fbae2bab30eb25a174be395c41e764bfb65dd62" +dependencies = [ + "proc-macro2", + "syn 2.0.28", +] + +[[package]] +name = "prettytable-rs" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eea25e07510aa6ab6547308ebe3c036016d162b8da920dbb079e3ba8acf3d95a" +dependencies = [ + "csv", + "encode_unicode 1.0.0", + "is-terminal", + "lazy_static", + "term", + "unicode-width", +] + +[[package]] +name = "proc-macro2" +version = "1.0.66" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "process-event" +version = "23.8.0" +dependencies = [ + "anyhow", + "clap", + "reqwest", + "serde", + "serde_json", + "symbolic-common", +] + +[[package]] +name = "psm" +version = "0.1.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" +dependencies = [ + "cc", +] + +[[package]] +name = "pulldown-cmark" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998" +dependencies = [ + "bitflags 1.3.2", + "memchr", + "unicase", +] + +[[package]] +name = "quanta" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab" +dependencies = [ + "crossbeam-utils", + "libc", + "mach2", + "once_cell", + "raw-cpuid", + "wasi 0.11.0+wasi-snapshot-preview1", + "web-sys", + "winapi", +] + +[[package]] +name = "quick-error" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" + +[[package]] +name = "quote" +version = "1.0.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom", +] + +[[package]] +name = "range-collections" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61fdfd79629e2b44a1d34b4d227957174cb858e6b86ee45fad114edbcfc903ab" +dependencies = [ + "binary-merge", + "inplace-vec-builder", + "smallvec", +] + +[[package]] +name = "range-map" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12a5a2d6c7039059af621472a4389be1215a816df61aa4d531cfe85264aee95f" +dependencies = [ + "num-traits", +] + +[[package]] +name = "raw-cpuid" +version = "10.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" +dependencies = [ + "bitflags 1.3.2", +] + +[[package]] +name = "rayon" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" +dependencies = [ + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-utils", + "num_cpus", +] + +[[package]] +name = "redox_syscall" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" +dependencies = [ + "bitflags 1.3.2", +] + +[[package]] +name = "redox_syscall" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" +dependencies = [ + "bitflags 1.3.2", +] + +[[package]] +name = "redox_users" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" +dependencies = [ + "getrandom", + "redox_syscall 0.2.16", + "thiserror", +] + +[[package]] +name = "regex" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata 0.3.6", + "regex-syntax 0.7.4", +] + +[[package]] +name = "regex-automata" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" +dependencies = [ + "regex-syntax 0.6.29", +] + +[[package]] +name = "regex-automata" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax 0.7.4", +] + +[[package]] +name = "regex-syntax" +version = "0.6.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" + +[[package]] +name = "regex-syntax" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" + +[[package]] +name = "reqwest" +version = "0.11.18" +source = "git+https://github.com/getsentry/reqwest?branch=restricted-connector#04ea4c720aca814c3f1de500b3e6fe3b0feeae4c" +dependencies = [ + "async-compression", + "base64 0.21.2", + "bytes", + "encoding_rs", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "hyper", + "hyper-tls", + "ipnet", + "js-sys", + "log", + "mime", + "mime_guess", + "native-tls", + "once_cell", + "percent-encoding", + "pin-project-lite", + "serde", + "serde_json", + "serde_urlencoded", + "tokio", + "tokio-native-tls", + "tokio-util", + "tower-service", + "trust-dns-resolver", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", + "winreg", +] + +[[package]] +name = "resolv-conf" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" +dependencies = [ + "hostname", + "quick-error", +] + +[[package]] +name = "ring" +version = "0.16.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" +dependencies = [ + "cc", + "libc", + "once_cell", + "spin 0.5.2", + "untrusted", + "web-sys", + "winapi", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" + +[[package]] +name = "rustc-hash" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" + +[[package]] +name = "rustc_version" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" +dependencies = [ + "semver 0.9.0", +] + +[[package]] +name = "rustc_version" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" +dependencies = [ + "semver 1.0.18", +] + +[[package]] +name = "rustix" +version = "0.37.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06" +dependencies = [ + "bitflags 1.3.2", + "errno", + "io-lifetimes", + "libc", + "linux-raw-sys 0.3.8", + "windows-sys 0.48.0", +] + +[[package]] +name = "rustix" +version = "0.38.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f" +dependencies = [ + "bitflags 2.3.3", + "errno", + "libc", + "linux-raw-sys 0.4.5", + "windows-sys 0.48.0", +] + +[[package]] +name = "rustls" +version = "0.21.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d1feddffcfcc0b33f5c6ce9a29e341e4cd59c3f78e7ee45f4a40c038b1d6cbb" +dependencies = [ + "log", + "ring", + "rustls-webpki", + "sct", +] + +[[package]] +name = "rustls-native-certs" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" +dependencies = [ + "openssl-probe", + "rustls-pemfile", + "schannel", + "security-framework", +] + +[[package]] +name = "rustls-pemfile" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" +dependencies = [ + "base64 0.21.2", +] + +[[package]] +name = "rustls-webpki" +version = "0.101.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "261e9e0888cba427c3316e6322805653c9425240b6fd96cee7cb671ab70ab8d0" +dependencies = [ + "ring", + "untrusted", +] + +[[package]] +name = "rustversion" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" + +[[package]] +name = "ryu" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" + +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "schannel" +version = "0.1.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" +dependencies = [ + "windows-sys 0.48.0", +] + +[[package]] +name = "scheduled-thread-pool" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19" +dependencies = [ + "parking_lot 0.12.1", +] + +[[package]] +name = "scoped-tls" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "scroll" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04c565b551bafbef4157586fa379538366e4385d42082f255bfd96e4fe8519da" +dependencies = [ + "scroll_derive", +] + +[[package]] +name = "scroll_derive" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1db149f81d46d2deba7cd3c50772474707729550221e69588478ebf9ada425ae" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.28", +] + +[[package]] +name = "sct" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" +dependencies = [ + "ring", + "untrusted", +] + +[[package]] +name = "security-framework" +version = "2.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" +dependencies = [ + "bitflags 1.3.2", + "core-foundation", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "semver" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" +dependencies = [ + "semver-parser", +] + +[[package]] +name = "semver" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" +dependencies = [ + "serde", +] + +[[package]] +name = "semver-parser" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" + +[[package]] +name = "sentry" +version = "0.31.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01b0ad16faa5d12372f914ed40d00bda21a6d1bdcc99264c5e5e1c9495cf3654" +dependencies = [ + "httpdate", + "native-tls", + "reqwest", + "sentry-anyhow", + "sentry-backtrace", + "sentry-contexts", + "sentry-core", + "sentry-debug-images", + "sentry-panic", + "sentry-tower", + "sentry-tracing", + "tokio", + "ureq", +] + +[[package]] +name = "sentry-anyhow" +version = "0.31.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f3a571f02f9982af445af829c4837fe4857568a431bd2bed9f7cf88de4a6c44" +dependencies = [ + "anyhow", + "sentry-backtrace", + "sentry-core", +] + +[[package]] +name = "sentry-backtrace" +version = "0.31.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11f2ee8f147bb5f22ac59b5c35754a759b9a6f6722402e2a14750b2a63fc59bd" +dependencies = [ + "backtrace", + "once_cell", + "regex", + "sentry-core", +] + +[[package]] +name = "sentry-contexts" +version = "0.31.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dcd133362c745151eeba0ac61e3ba8350f034e9fe7509877d08059fe1d7720c6" +dependencies = [ + "hostname", + "libc", + "os_info", + "rustc_version 0.4.0", + "sentry-core", + "uname", +] + +[[package]] +name = "sentry-core" +version = "0.31.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7163491708804a74446642ff2c80b3acd668d4b9e9f497f85621f3d250fd012b" +dependencies = [ + "once_cell", + "rand", + "sentry-types", + "serde", + "serde_json", +] + +[[package]] +name = "sentry-debug-images" +version = "0.31.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a5003d7ff08aa3b2b76994080b183e8cfa06c083e280737c9cee02ca1c70f5e" +dependencies = [ + "findshlibs", + "once_cell", + "sentry-core", +] + +[[package]] +name = "sentry-panic" +version = "0.31.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4dfe8371c9b2e126a8b64f6fefa54cef716ff2a50e63b5558a48b899265bccd" +dependencies = [ + "sentry-backtrace", + "sentry-core", +] + +[[package]] +name = "sentry-tower" +version = "0.31.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01c59d3325570b637cc844fef4e7cd9b3f997ffe4e5e83d5ccb85759c9df3bf2" +dependencies = [ + "http", + "pin-project", + "sentry-core", + "tower-layer", + "tower-service", + "url", +] + +[[package]] +name = "sentry-tracing" +version = "0.31.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5aca8b88978677a27ee1a91beafe4052306c474c06f582321fde72d2e2cc2f7f" +dependencies = [ + "sentry-backtrace", + "sentry-core", + "tracing-core", + "tracing-subscriber", +] + +[[package]] +name = "sentry-types" +version = "0.31.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e7a88e0c1922d19b3efee12a8215f6a8a806e442e665ada71cc222cab72985f" +dependencies = [ + "debugid", + "getrandom", + "hex", + "serde", + "serde_json", + "thiserror", + "time 0.3.25", + "url", + "uuid", +] + +[[package]] +name = "serde" +version = "1.0.183" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.183" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aafe972d60b0b9bee71a91b92fee2d4fb3c9d7e8f6b179aa99f27203d99a4816" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.28", +] + +[[package]] +name = "serde_json" +version = "1.0.104" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serde_path_to_error" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335" +dependencies = [ + "itoa", + "serde", +] + +[[package]] +name = "serde_spanned" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serde_yaml" +version = "0.9.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a49e178e4452f45cb61d0cd8cebc1b0fafd3e41929e996cef79aa3aca91f574" +dependencies = [ + "indexmap 2.0.0", + "itoa", + "ryu", + "serde", + "unsafe-libyaml", +] + +[[package]] +name = "sha-1" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "sha1" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "sha2" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "sharded-slab" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" +dependencies = [ + "lazy_static", +] + +[[package]] +name = "shlex" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" + +[[package]] +name = "signal-hook" +version = "0.1.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e31d442c16f047a671b5a71e2161d6e68814012b7f5379d269ebd915fac2729" +dependencies = [ + "libc", + "mio 0.7.14", + "signal-hook-registry", +] + +[[package]] +name = "signal-hook-registry" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" +dependencies = [ + "libc", +] + +[[package]] +name = "similar" +version = "2.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf" + +[[package]] +name = "simple_asn1" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" +dependencies = [ + "num-bigint", + "num-traits", + "thiserror", + "time 0.3.25", +] + +[[package]] +name = "siphasher" +version = "0.3.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" + +[[package]] +name = "skeptic" +version = "0.13.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8" +dependencies = [ + "bytecount", + "cargo_metadata", + "error-chain", + "glob", + "pulldown-cmark", + "tempfile", + "walkdir", +] + +[[package]] +name = "slab" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" +dependencies = [ + "autocfg", +] + +[[package]] +name = "smallvec" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" + +[[package]] +name = "smart-default" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "133659a15339456eeeb07572eb02a91c91e9815e9cbc89566944d2c8d3efdbf6" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "smartstring" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29" +dependencies = [ + "autocfg", + "static_assertions", + "version_check", +] + +[[package]] +name = "socket2" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" +dependencies = [ + "libc", + "winapi", +] + +[[package]] +name = "socket2" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" +dependencies = [ + "libc", + "windows-sys 0.48.0", +] + +[[package]] +name = "sourcemap" +version = "6.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e4cbf65ca7dc576cf50e21f8d0712d96d4fcfd797389744b7b222a85cdf5bd90" +dependencies = [ + "data-encoding", + "debugid", + "if_chain", + "rustc_version 0.2.3", + "serde", + "serde_json", + "unicode-id", + "url", +] + +[[package]] +name = "spin" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" + +[[package]] +name = "spin" +version = "0.9.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" + +[[package]] +name = "stable_deref_trait" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" + +[[package]] +name = "stacker" +version = "0.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" +dependencies = [ + "cc", + "cfg-if", + "libc", + "psm", + "winapi", +] + +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "string_cache" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" +dependencies = [ + "new_debug_unreachable", + "once_cell", + "parking_lot 0.12.1", + "phf_shared", + "precomputed-hash", + "serde", +] + +[[package]] +name = "string_cache_codegen" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" +dependencies = [ + "phf_generator", + "phf_shared", + "proc-macro2", + "quote", +] + +[[package]] +name = "string_enum" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fa4d4f81d7c05b9161f8de839975d3326328b8ba2831164b465524cc2f55252" +dependencies = [ + "pmutil", + "proc-macro2", + "quote", + "swc_macros_common", + "syn 2.0.28", +] + +[[package]] +name = "strsim" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" + +[[package]] +name = "subtle" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" + +[[package]] +name = "swc_atoms" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8066e17abb484602da673e2d35138ab32ce53f26368d9c92113510e1659220b" +dependencies = [ + "once_cell", + "rustc-hash", + "serde", + "string_cache", + "string_cache_codegen", + "triomphe", +] + +[[package]] +name = "swc_common" +version = "0.31.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e30cd01afa791b15263fcfe8f77ecbbd020ddef659f0f58d3c7b794ad65c1738" +dependencies = [ + "ahash", + "ast_node", + "better_scoped_tls", + "cfg-if", + "either", + "from_variant", + "new_debug_unreachable", + "num-bigint", + "once_cell", + "rustc-hash", + "serde", + "siphasher", + "string_cache", + "swc_atoms", + "swc_eq_ignore_macros", + "swc_visit", + "tracing", + "unicode-width", + "url", +] + +[[package]] +name = "swc_ecma_ast" +version = "0.106.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebf4d6804b1da4146c4c0359d129e3dd43568d321f69d7953d9abbca4ded76ba" +dependencies = [ + "bitflags 2.3.3", + "is-macro", + "num-bigint", + "scoped-tls", + "string_enum", + "swc_atoms", + "swc_common", + "unicode-id", +] + +[[package]] +name = "swc_ecma_parser" +version = "0.136.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45d40421c607d7a48334f78a9b24a5cbde1f36250f9986746ec082208d68b39f" +dependencies = [ + "either", + "lexical", + "num-bigint", + "serde", + "smallvec", + "smartstring", + "stacker", + "swc_atoms", + "swc_common", + "swc_ecma_ast", + "tracing", + "typed-arena", +] + +[[package]] +name = "swc_ecma_visit" +version = "0.92.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f61da6cac0ec3b7e62d367cfbd9e38e078a4601271891ad94f0dac5ff69f839" +dependencies = [ + "num-bigint", + "swc_atoms", + "swc_common", + "swc_ecma_ast", + "swc_visit", + "tracing", +] + +[[package]] +name = "swc_eq_ignore_macros" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05a95d367e228d52484c53336991fdcf47b6b553ef835d9159db4ba40efb0ee8" +dependencies = [ + "pmutil", + "proc-macro2", + "quote", + "syn 2.0.28", +] + +[[package]] +name = "swc_macros_common" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a273205ccb09b51fabe88c49f3b34c5a4631c4c00a16ae20e03111d6a42e832" +dependencies = [ + "pmutil", + "proc-macro2", + "quote", + "syn 2.0.28", +] + +[[package]] +name = "swc_visit" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e87c337fbb2d191bf371173dea6a957f01899adb8f189c6c31b122a6cfc98fc3" +dependencies = [ + "either", + "swc_visit_macros", +] + +[[package]] +name = "swc_visit_macros" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f322730fb82f3930a450ac24de8c98523af7d34ab8cb2f46bcb405839891a99" +dependencies = [ + "Inflector", + "pmutil", + "proc-macro2", + "quote", + "swc_macros_common", + "syn 2.0.28", +] + +[[package]] +name = "symbolic" +version = "12.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96f35e609846ed5924d00311809fdc22bfeebf0dfadfd33ec08bae7a8076aa7b" +dependencies = [ + "symbolic-cfi", + "symbolic-common", + "symbolic-debuginfo", + "symbolic-demangle", + "symbolic-il2cpp", + "symbolic-ppdb", + "symbolic-sourcemapcache", + "symbolic-symcache", +] + +[[package]] +name = "symbolic-cfi" +version = "12.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd11c720b3e9c407638d0b4f019b01892116229a1319adf0b60fa021eac4f4ed" +dependencies = [ + "symbolic-common", + "symbolic-debuginfo", + "thiserror", +] + +[[package]] +name = "symbolic-common" +version = "12.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "167a4ffd7c35c143fd1030aa3c2caf76ba42220bd5a6b5f4781896434723b8c3" +dependencies = [ + "debugid", + "memmap2", + "serde", + "stable_deref_trait", + "uuid", +] + +[[package]] +name = "symbolic-debuginfo" +version = "12.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "214a188b70f3e82f56d068096fa9953cc6082b58a949b56629f5eaa30ceb574b" +dependencies = [ + "debugid", + "dmsort", + "elementtree", + "elsa", + "fallible-iterator", + "flate2", + "gimli", + "goblin", + "lazy_static", + "nom", + "nom-supreme", + "once_cell", + "parking_lot 0.12.1", + "pdb-addr2line", + "regex", + "scroll", + "serde", + "serde_json", + "smallvec", + "symbolic-common", + "symbolic-ppdb", + "thiserror", + "wasmparser", + "zip", +] + +[[package]] +name = "symbolic-demangle" +version = "12.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e378c50e80686c1c5c205674e1f86a2858bec3d2a7dfdd690331a8a19330f293" +dependencies = [ + "cc", + "cpp_demangle", + "msvc-demangler", + "rustc-demangle", + "symbolic-common", +] + +[[package]] +name = "symbolic-il2cpp" +version = "12.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75befe8168a8079855ee1c275451fe9f408248a5e73d99da668c8f4eaf99199d" +dependencies = [ + "indexmap 1.9.3", + "serde_json", + "symbolic-common", + "symbolic-debuginfo", +] + +[[package]] +name = "symbolic-ppdb" +version = "12.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e1ce8734ea2f33b3b8f4a67d1fc58df295a0191f115eab60f9ac5cf7169129d" +dependencies = [ + "flate2", + "indexmap 1.9.3", + "serde", + "serde_json", + "symbolic-common", + "thiserror", + "uuid", + "watto", +] + +[[package]] +name = "symbolic-sourcemapcache" +version = "12.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2a596291f3582865299a1ef7162ea26fdd26d5c26e94c30766d42ca6eca1337" +dependencies = [ + "itertools", + "js-source-scopes", + "sourcemap", + "symbolic-common", + "thiserror", + "tracing", + "watto", +] + +[[package]] +name = "symbolic-symcache" +version = "12.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87f996fc4a38d97b9838a4de257c6d5359a2e9ccecc82d5a97b03e3b974f3082" +dependencies = [ + "indexmap 1.9.3", + "symbolic-common", + "symbolic-debuginfo", + "symbolic-il2cpp", + "thiserror", + "tracing", + "watto", +] + +[[package]] +name = "symbolicator" +version = "23.8.0" +dependencies = [ + "anyhow", + "axum", + "axum-server", + "clap", + "console", + "futures", + "hostname", + "insta", + "jemallocator", + "reqwest", + "sentry", + "serde", + "serde_json", + "symbolic", + "symbolicator-crash", + "symbolicator-service", + "symbolicator-sources", + "symbolicator-test", + "tempfile", + "thiserror", + "tokio", + "tokio-metrics", + "tokio-util", + "tower", + "tower-layer", + "tower-service", + "tracing", + "tracing-subscriber", + "url", + "uuid", +] + +[[package]] +name = "symbolicator-crash" +version = "23.8.0" +dependencies = [ + "bindgen", + "cmake", +] + +[[package]] +name = "symbolicator-service" +version = "23.8.0" +dependencies = [ + "anyhow", + "apple-crash-report-parser", + "async-trait", + "aws-config", + "aws-credential-types", + "aws-sdk-s3", + "aws-types", + "backtrace", + "cadence", + "chrono", + "data-url", + "filetime", + "flate2", + "futures", + "gcp_auth", + "humantime", + "humantime-serde", + "idna 0.4.0", + "insta", + "ipnetwork", + "jsonwebtoken", + "lazy_static", + "minidump", + "minidump-processor", + "minidump-unwind", + "moka", + "once_cell", + "parking_lot 0.12.1", + "rand", + "regex", + "reqwest", + "sentry", + "serde", + "serde_json", + "serde_yaml", + "sha-1", + "sha2", + "sourcemap", + "symbolic", + "symbolicator-sources", + "symbolicator-test", + "tempfile", + "test-assembler", + "thiserror", + "tokio", + "tokio-util", + "tracing", + "url", + "uuid", + "zip", + "zstd", +] + +[[package]] +name = "symbolicator-sources" +version = "23.8.0" +dependencies = [ + "anyhow", + "aws-types", + "glob", + "insta", + "lazy_static", + "serde", + "serde_yaml", + "symbolic", + "url", +] + +[[package]] +name = "symbolicator-stress" +version = "23.8.0" +dependencies = [ + "anyhow", + "clap", + "futures", + "humantime", + "serde", + "serde_json", + "serde_yaml", + "symbolicator-service", + "symbolicator-test", + "tempfile", + "tokio", + "tracing-subscriber", +] + +[[package]] +name = "symbolicator-test" +version = "23.8.0" +dependencies = [ + "axum", + "humantime", + "insta", + "regex", + "reqwest", + "serde", + "serde_json", + "symbolicator-sources", + "tempfile", + "tokio", + "tower-http", + "tracing-subscriber", +] + +[[package]] +name = "symbolicli" +version = "23.8.0" +dependencies = [ + "anyhow", + "clap", + "dirs", + "prettytable-rs", + "reqwest", + "serde", + "serde_json", + "serde_yaml", + "symbolic", + "symbolicator-service", + "symbolicator-sources", + "tempfile", + "tokio", + "toml", + "tracing", + "tracing-subscriber", + "url", +] + +[[package]] +name = "symsorter" +version = "23.8.0" +dependencies = [ + "anyhow", + "chrono", + "clap", + "console", + "lazy_static", + "rayon", + "regex", + "serde", + "serde_json", + "symbolic", + "walkdir", + "zip", + "zstd", +] + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04361975b3f5e348b2189d8dc55bc942f278b2d482a6a0365de5bdd62d351567" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" + +[[package]] +name = "synstructure" +version = "0.12.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", + "unicode-xid", +] + +[[package]] +name = "tagptr" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" + +[[package]] +name = "tempfile" +version = "3.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651" +dependencies = [ + "cfg-if", + "fastrand 2.0.0", + "redox_syscall 0.3.5", + "rustix 0.38.8", + "windows-sys 0.48.0", +] + +[[package]] +name = "term" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" +dependencies = [ + "dirs-next", + "rustversion", + "winapi", +] + +[[package]] +name = "test-assembler" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a6da51de149453f5c43fa67d5e73cccd75b3c5727a38a2f18c5f3c47f2db582" +dependencies = [ + "byteorder", +] + +[[package]] +name = "thiserror" +version = "1.0.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.28", +] + +[[package]] +name = "thread_local" +version = "1.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" +dependencies = [ + "cfg-if", + "once_cell", +] + +[[package]] +name = "time" +version = "0.1.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" +dependencies = [ + "libc", + "wasi 0.10.0+wasi-snapshot-preview1", + "winapi", +] + +[[package]] +name = "time" +version = "0.3.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0fdd63d58b18d663fbdf70e049f00a22c8e42be082203be7f26589213cd75ea" +dependencies = [ + "deranged", + "itoa", + "libc", + "num_threads", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" + +[[package]] +name = "time-macros" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb71511c991639bb078fd5bf97757e03914361c48100d52878b8e52b46fb92cd" +dependencies = [ + "time-core", +] + +[[package]] +name = "tinyvec" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d3ce25f50619af8b0aec2eb23deebe84249e19e2ddd393a6e16e3300a6dadfd" +dependencies = [ + "backtrace", + "bytes", + "libc", + "mio 0.8.8", + "num_cpus", + "pin-project-lite", + "socket2 0.5.3", + "tokio-macros", + "windows-sys 0.48.0", +] + +[[package]] +name = "tokio-macros" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.28", +] + +[[package]] +name = "tokio-metrics" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b60ac6224d622f71d0b80546558eedf8ff6c2d3817517a9d3ed87ce24fccf6a6" +dependencies = [ + "futures-util", + "pin-project-lite", + "tokio", + "tokio-stream", +] + +[[package]] +name = "tokio-native-tls" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" +dependencies = [ + "native-tls", + "tokio", +] + +[[package]] +name = "tokio-rustls" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" +dependencies = [ + "rustls", + "tokio", +] + +[[package]] +name = "tokio-stream" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" +dependencies = [ + "futures-core", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "tokio-util" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", + "tracing", +] + +[[package]] +name = "toml" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" +dependencies = [ + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit", +] + +[[package]] +name = "toml_datetime" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" +dependencies = [ + "serde", +] + +[[package]] +name = "toml_edit" +version = "0.19.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" +dependencies = [ + "indexmap 2.0.0", + "serde", + "serde_spanned", + "toml_datetime", + "winnow", +] + +[[package]] +name = "tower" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" +dependencies = [ + "futures-core", + "futures-util", + "pin-project", + "pin-project-lite", + "tokio", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower-http" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55ae70283aba8d2a8b411c695c437fe25b8b5e44e23e780662002fc72fb47a82" +dependencies = [ + "bitflags 2.3.3", + "bytes", + "futures-core", + "futures-util", + "http", + "http-body", + "http-range-header", + "httpdate", + "mime", + "mime_guess", + "percent-encoding", + "pin-project-lite", + "tokio", + "tokio-util", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower-layer" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" + +[[package]] +name = "tower-service" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" + +[[package]] +name = "tracing" +version = "0.1.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" +dependencies = [ + "cfg-if", + "log", + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.28", +] + +[[package]] +name = "tracing-core" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" +dependencies = [ + "once_cell", + "valuable", +] + +[[package]] +name = "tracing-futures" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" +dependencies = [ + "pin-project", + "tracing", +] + +[[package]] +name = "tracing-log" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" +dependencies = [ + "lazy_static", + "log", + "tracing-core", +] + +[[package]] +name = "tracing-serde" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1" +dependencies = [ + "serde", + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" +dependencies = [ + "matchers", + "nu-ansi-term", + "once_cell", + "regex", + "serde", + "serde_json", + "sharded-slab", + "smallvec", + "thread_local", + "time 0.3.25", + "tracing", + "tracing-core", + "tracing-log", + "tracing-serde", +] + +[[package]] +name = "triomphe" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee8098afad3fb0c54a9007aab6804558410503ad676d4633f9c2559a00ac0f" +dependencies = [ + "serde", + "stable_deref_trait", +] + +[[package]] +name = "trust-dns-proto" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f7f83d1e4a0e4358ac54c5c3681e5d7da5efc5a7a632c90bb6d6669ddd9bc26" +dependencies = [ + "async-trait", + "cfg-if", + "data-encoding", + "enum-as-inner", + "futures-channel", + "futures-io", + "futures-util", + "idna 0.2.3", + "ipnet", + "lazy_static", + "rand", + "smallvec", + "thiserror", + "tinyvec", + "tokio", + "tracing", + "url", +] + +[[package]] +name = "trust-dns-resolver" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aff21aa4dcefb0a1afbfac26deb0adc93888c7d295fb63ab273ef276ba2b7cfe" +dependencies = [ + "cfg-if", + "futures-util", + "ipconfig", + "lazy_static", + "lru-cache", + "parking_lot 0.12.1", + "resolv-conf", + "smallvec", + "thiserror", + "tokio", + "tracing", + "trust-dns-proto", +] + +[[package]] +name = "try-lock" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" + +[[package]] +name = "typed-arena" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" + +[[package]] +name = "typenum" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" + +[[package]] +name = "ucd-trie" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" + +[[package]] +name = "uname" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b72f89f0ca32e4db1c04e2a72f5345d59796d4866a1ee0609084569f73683dc8" +dependencies = [ + "libc", +] + +[[package]] +name = "unicase" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" +dependencies = [ + "version_check", +] + +[[package]] +name = "unicode-bidi" +version = "0.3.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" + +[[package]] +name = "unicode-id" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d70b6494226b36008c8366c288d77190b3fad2eb4c10533139c1c1f461127f1a" + +[[package]] +name = "unicode-ident" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" + +[[package]] +name = "unicode-normalization" +version = "0.1.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "unicode-width" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" + +[[package]] +name = "unicode-xid" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" + +[[package]] +name = "unsafe-libyaml" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa" + +[[package]] +name = "untrusted" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" + +[[package]] +name = "ureq" +version = "2.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b11c96ac7ee530603dcdf68ed1557050f374ce55a5a07193ebf8cbc9f8927e9" +dependencies = [ + "base64 0.21.2", + "log", + "native-tls", + "once_cell", + "url", +] + +[[package]] +name = "url" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" +dependencies = [ + "form_urlencoded", + "idna 0.4.0", + "percent-encoding", + "serde", +] + +[[package]] +name = "urlencoding" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" + +[[package]] +name = "utf8parse" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" + +[[package]] +name = "uuid" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" +dependencies = [ + "getrandom", + "serde", +] + +[[package]] +name = "valuable" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "version_check" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + +[[package]] +name = "vsimd" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64" + +[[package]] +name = "waker-fn" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" + +[[package]] +name = "walkdir" +version = "2.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" +dependencies = [ + "same-file", + "winapi-util", +] + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.10.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" + +[[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + +[[package]] +name = "wasm-bindgen" +version = "0.2.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" +dependencies = [ + "cfg-if", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" +dependencies = [ + "bumpalo", + "log", + "once_cell", + "proc-macro2", + "quote", + "syn 2.0.28", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.28", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" + +[[package]] +name = "wasm-split" +version = "23.8.0" +dependencies = [ + "anyhow", + "clap", + "hex", + "uuid", + "wasmbin", +] + +[[package]] +name = "wasm-streams" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7" +dependencies = [ + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "wasmbin" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13cb41ab290430997d8b30474677ba9924d4545f3bcddc8b318de8b8df274c52" +dependencies = [ + "custom_debug", + "leb128", + "once_cell", + "thiserror", + "wasmbin-derive", +] + +[[package]] +name = "wasmbin-derive" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d81164066a0c96c81c1faf881c8e1f055fd9e67bb6313b605c6c9a3dcf0ee0b" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", + "synstructure", + "thiserror", +] + +[[package]] +name = "wasmparser" +version = "0.102.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48134de3d7598219ab9eaf6b91b15d8e50d31da76b8519fe4ecfcec2cf35104b" +dependencies = [ + "indexmap 1.9.3", + "url", +] + +[[package]] +name = "watto" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6746b5315e417144282a047ebb82260d45c92d09bf653fa9ec975e3809be942b" +dependencies = [ + "leb128", + "thiserror", +] + +[[package]] +name = "web-sys" +version = "0.3.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "which" +version = "4.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" +dependencies = [ + "either", + "libc", + "once_cell", +] + +[[package]] +name = "widestring" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" +dependencies = [ + "winapi", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" +dependencies = [ + "windows-targets 0.48.1", +] + +[[package]] +name = "windows-sys" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" +dependencies = [ + "windows-targets 0.42.2", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.1", +] + +[[package]] +name = "windows-targets" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" +dependencies = [ + "windows_aarch64_gnullvm 0.42.2", + "windows_aarch64_msvc 0.42.2", + "windows_i686_gnu 0.42.2", + "windows_i686_msvc 0.42.2", + "windows_x86_64_gnu 0.42.2", + "windows_x86_64_gnullvm 0.42.2", + "windows_x86_64_msvc 0.42.2", +] + +[[package]] +name = "windows-targets" +version = "0.48.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" +dependencies = [ + "windows_aarch64_gnullvm 0.48.0", + "windows_aarch64_msvc 0.48.0", + "windows_i686_gnu 0.48.0", + "windows_i686_msvc 0.48.0", + "windows_x86_64_gnu 0.48.0", + "windows_x86_64_gnullvm 0.48.0", + "windows_x86_64_msvc 0.48.0", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" + +[[package]] +name = "windows_i686_gnu" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" + +[[package]] +name = "windows_i686_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" + +[[package]] +name = "winnow" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19f495880723d0999eb3500a9064d8dbcf836460b24c17df80ea7b5794053aac" +dependencies = [ + "memchr", +] + +[[package]] +name = "winreg" +version = "0.50.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" +dependencies = [ + "cfg-if", + "windows-sys 0.48.0", +] + +[[package]] +name = "xmlparser" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d25c75bf9ea12c4040a97f829154768bbbce366287e2dc044af160cd79a13fd" + +[[package]] +name = "yaml-rust" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" +dependencies = [ + "linked-hash-map", +] + +[[package]] +name = "yaxpeax-arch" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1ba5c2f163fa2f866c36750c6c931566c6d93231ae9410083b0738953b609d5" +dependencies = [ + "crossterm", + "num-traits", + "serde", + "serde_derive", +] + +[[package]] +name = "yaxpeax-x86" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "459ab06161ba99053d77dc66beb37ab4209da16cd01591dcc56e86643375cbde" +dependencies = [ + "cfg-if", + "num-traits", + "serde", + "serde_derive", + "yaxpeax-arch", +] + +[[package]] +name = "zeroize" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" + +[[package]] +name = "zip" +version = "0.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" +dependencies = [ + "byteorder", + "bzip2", + "crc32fast", + "crossbeam-utils", + "flate2", +] + +[[package]] +name = "zstd" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c" +dependencies = [ + "zstd-safe", +] + +[[package]] +name = "zstd-safe" +version = "6.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee98ffd0b48ee95e6c5168188e44a54550b1564d9d530ee21d5f0eaed1069581" +dependencies = [ + "libc", + "zstd-sys", +] + +[[package]] +name = "zstd-sys" +version = "2.0.8+zstd.1.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c" +dependencies = [ + "cc", + "libc", + "pkg-config", +] diff --git a/pkgs/by-name/sy/symbolicator/package.nix b/pkgs/by-name/sy/symbolicator/package.nix new file mode 100644 index 000000000000..d5934eac4574 --- /dev/null +++ b/pkgs/by-name/sy/symbolicator/package.nix @@ -0,0 +1,62 @@ +{ lib +, rustPlatform +, fetchFromGitHub +, pkg-config +, bzip2 +, openssl +, zstd +, stdenv +, darwin +}: + +rustPlatform.buildRustPackage rec { + pname = "symbolicator"; + version = "23.8.0"; + + src = fetchFromGitHub { + owner = "getsentry"; + repo = "symbolicator"; + rev = version; + hash = "sha256-cCorFBZLLVLp+j94MyXJMPE1GcmAkK8AZq6DHuTNYtA="; + fetchSubmodules = true; + }; + + cargoLock = { + lockFile = ./Cargo.lock; + outputHashes = { + "cpp_demangle-0.4.1" = "sha256-9QopX2TOJc8bZ+UlSOFdjoe8NTJLVGrykyFL732tE3A="; + "reqwest-0.11.18" = "sha256-t6fs2bbBfgcspCrGfWIFCYbYZ7GPcBWI0dy68YdklOQ="; + }; + }; + + nativeBuildInputs = [ + pkg-config + rustPlatform.bindgenHook + ]; + + buildInputs = [ + bzip2 + openssl + zstd + ] ++ lib.optionals stdenv.isDarwin [ + darwin.apple_sdk.frameworks.Security + ]; + + env = { + SYMBOLICATOR_GIT_VERSION = src.rev; + SYMBOLICATOR_RELEASE = version; + ZSTD_SYS_USE_PKG_CONFIG = true; + }; + + # tests require network access + doCheck = false; + + meta = with lib; { + description = "Native Symbolication as a Service"; + homepage = "https://getsentry.github.io/symbolicator/"; + changelog = "https://github.com/getsentry/symbolicator/blob/${src.rev}/CHANGELOG.md"; + license = licenses.mit; + maintainers = with maintainers; [ figsoda ]; + mainProgram = "symbolicator"; + }; +} From 728f977a2f9ba2976b72eefa1c2ef20f14107f90 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 10 Sep 2023 20:11:05 -0400 Subject: [PATCH 095/346] esbuild-config: init at 1.0.1 https://github.com/bpierre/esbuild-config --- pkgs/by-name/es/esbuild-config/package.nix | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/by-name/es/esbuild-config/package.nix diff --git a/pkgs/by-name/es/esbuild-config/package.nix b/pkgs/by-name/es/esbuild-config/package.nix new file mode 100644 index 000000000000..d68db5c89a47 --- /dev/null +++ b/pkgs/by-name/es/esbuild-config/package.nix @@ -0,0 +1,31 @@ +{ lib +, rustPlatform +, fetchFromGitHub +}: + +rustPlatform.buildRustPackage rec { + pname = "esbuild-config"; + version = "1.0.1"; + + src = fetchFromGitHub { + owner = "bpierre"; + repo = "esbuild-config"; + rev = "v${version}"; + hash = "sha256-u3LgecKfgPSN5xMyqBjeAn4/XswM3iEGbZ+JGrVF1Co="; + }; + + cargoHash = "sha256-Z7uYOjMNxsEmsEXDOIr1zIq4nCgHvHIqpRnRH037b8g="; + + # Cargo.lock is outdated + postConfigure = '' + cargo metadata --offline + ''; + + meta = with lib; { + description = "Config files for esbuild"; + homepage = "https://github.com/bpierre/esbuild-config"; + license = licenses.mit; + maintainers = with maintainers; [ figsoda ]; + mainProgram = "esbuild-config"; + }; +} From 576def8911f2f58c91bc50eac5e60f3a6c897bad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elizabeth=20Pa=C5=BA?= Date: Mon, 11 Sep 2023 10:52:51 +0200 Subject: [PATCH 096/346] black: 23.3.0 -> 23.9.1 --- pkgs/development/python-modules/black/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/black/default.nix b/pkgs/development/python-modules/black/default.nix index 6019db6c7d7e..76890aeda286 100644 --- a/pkgs/development/python-modules/black/default.nix +++ b/pkgs/development/python-modules/black/default.nix @@ -26,14 +26,14 @@ buildPythonPackage rec { pname = "black"; - version = "23.3.0"; + version = "23.9.1"; format = "pyproject"; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-HHuNYG5yikHqHMvXJkZ35JTofPYw45kmLO2S1KjayUA="; + hash = "sha256-JLaz/1xtnqCKiIj2l36uhY4fNA1yYM9W1wpJgjI2ti0="; }; nativeBuildInputs = [ @@ -50,7 +50,6 @@ buildPythonPackage rec { platformdirs ] ++ lib.optionals (pythonOlder "3.11") [ tomli - ] ++ lib.optionals (pythonOlder "3.10") [ typing-extensions ]; From 855b90470096230d6af54aa103e0c7cb70d6aa8c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 11 Sep 2023 09:19:09 +0000 Subject: [PATCH 097/346] python310Packages.aiohomekit: 3.0.2 -> 3.0.3 --- pkgs/development/python-modules/aiohomekit/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aiohomekit/default.nix b/pkgs/development/python-modules/aiohomekit/default.nix index e083abc1d7ea..afe7223f91f5 100644 --- a/pkgs/development/python-modules/aiohomekit/default.nix +++ b/pkgs/development/python-modules/aiohomekit/default.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { pname = "aiohomekit"; - version = "3.0.2"; + version = "3.0.3"; format = "pyproject"; disabled = pythonOlder "3.9"; @@ -28,7 +28,7 @@ buildPythonPackage rec { owner = "Jc2k"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-EE8+VoZ755wd8s3Gm0lziu+1r4rAFgdjEtqI0apoZ7E="; + hash = "sha256-6fNsiHddnsdjei0/wqx5ifWhM3bALlYG5Gli69+FmnM="; }; nativeBuildInputs = [ From aeed58aa1dcb179484b2815db26ec0a289e24f9a Mon Sep 17 00:00:00 2001 From: Sebastian Hyberts Date: Thu, 7 Sep 2023 12:47:09 +0200 Subject: [PATCH 098/346] lastpass-cli: 1.3.4 -> 1.3.6 --- pkgs/tools/security/lastpass-cli/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/lastpass-cli/default.nix b/pkgs/tools/security/lastpass-cli/default.nix index 9cc02e33d9bd..45333391de04 100644 --- a/pkgs/tools/security/lastpass-cli/default.nix +++ b/pkgs/tools/security/lastpass-cli/default.nix @@ -15,13 +15,13 @@ stdenv.mkDerivation rec { pname = "lastpass-cli"; - version = "1.3.4"; + version = "1.3.6"; src = fetchFromGitHub { owner = "lastpass"; repo = pname; rev = "v${version}"; - sha256 = "sha256-bPAENorvj48cyRpnMLmyENXlipSGhTLW+XVoyrPogTE="; + sha256 = "sha256-ntUBwZ0bVkkpvWK/jQBkLNpCYEDI14/ki0cLwYpEWXk="; }; patches = [ From 951b5238446327e6c1824982e2f376a313de9f93 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 11 Sep 2023 11:43:00 +0000 Subject: [PATCH 099/346] shellhub-agent: 0.12.4 -> 0.12.5 --- pkgs/applications/networking/shellhub-agent/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/shellhub-agent/default.nix b/pkgs/applications/networking/shellhub-agent/default.nix index 7e0ea7e81562..cfb35e526806 100644 --- a/pkgs/applications/networking/shellhub-agent/default.nix +++ b/pkgs/applications/networking/shellhub-agent/default.nix @@ -11,18 +11,18 @@ buildGoModule rec { pname = "shellhub-agent"; - version = "0.12.4"; + version = "0.12.5"; src = fetchFromGitHub { owner = "shellhub-io"; repo = "shellhub"; rev = "v${version}"; - hash = "sha256-OvXbc3feCatyubbRZlaiXvGP59ApyAS0b0Z6SeJsZnE="; + hash = "sha256-+2YYTnQDU9AkCjWvUEsddgu8GVJk0VUCMkEeWhW/u0w="; }; modRoot = "./agent"; - vendorHash = "sha256-qQRi4GeepRpYPhE5ftUj01tMCqBh5txbizfkVXmrgOQ="; + vendorHash = "sha256-lZ7W7YpigcVaLO9HoS5V379nyKHemRh9Z2NjlZbJcPg="; ldflags = [ "-s" "-w" "-X main.AgentVersion=v${version}" ]; From 7fc032e5951b69de22b923e5bf64b0ca34c5b3e3 Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Mon, 11 Sep 2023 07:45:57 -0400 Subject: [PATCH 100/346] haskellPackages.aeson_2_2_0_0: get compiling Originally from https://github.com/NixOS/nixpkgs/pull/254189 --- .../haskell-modules/configuration-common.nix | 5 +++++ .../configuration-hackage2nix/main.yaml | 1 + .../haskell-modules/hackage-packages.nix | 15 +++++++++++++++ 3 files changed, 21 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 3411f2156150..6df27eaf6c57 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -201,6 +201,11 @@ self: super: { }) ] super.aeson); + # aeson 2.2.0.0 requires th-abstraction >= 0.5 & < 0.6 + aeson_2_2_0_0 = super.aeson_2_2_0_0.overrideScope (hfinal: hprev: { + th-abstraction = hfinal.th-abstraction_0_5_0_0; + }); + # 2023-06-28: Test error: https://hydra.nixos.org/build/225565149 orbits = dontCheck super.orbits; diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml index ca42d1227d4e..030ed98a6406 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml @@ -128,6 +128,7 @@ extra-packages: - sbv == 7.13 # required for pkgs.petrinizer - stylish-haskell == 0.14.3.0 # 2022-09-19: needed for hls on ghc 8.8 - tasty-hspec == 1.1.6 # 2022-04-07: Needed for elm-format + - th-abstraction < 0.6 # 2023-09-11: needed for aeson-2.2.0.0 - vty == 5.35.1 # 2022-07-08: needed for glirc-2.39.0.1 - weeder == 2.2.* # 2022-02-21: preserve for GHC 8.10.7 - weeder == 2.3.* # 2022-05-31: preserve for GHC 9.0.2 diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 1c5fa2c930f2..62521b8869e2 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -294881,6 +294881,21 @@ self: { license = lib.licenses.isc; }) {}; + "th-abstraction_0_5_0_0" = callPackage + ({ mkDerivation, base, containers, ghc-prim, template-haskell }: + mkDerivation { + pname = "th-abstraction"; + version = "0.5.0.0"; + sha256 = "0r4ri85283i1jjhd94wa9nps6cd9a8mh6rr4ds1gb2hqnwxdqn42"; + libraryHaskellDepends = [ + base containers ghc-prim template-haskell + ]; + testHaskellDepends = [ base containers template-haskell ]; + description = "Nicer interface for reified information about data types"; + license = lib.licenses.isc; + hydraPlatforms = lib.platforms.none; + }) {}; + "th-abstraction_0_6_0_0" = callPackage ({ mkDerivation, base, containers, ghc-prim, template-haskell }: mkDerivation { From 426b738897e9cc314b34d09f53684f66894febd2 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Mon, 11 Sep 2023 10:22:06 -0400 Subject: [PATCH 101/346] keycloak: 22.0.1 -> 22.0.2 Diff: https://github.com/keycloak/keycloak/compare/22.0.1...22.0.2 --- pkgs/servers/keycloak/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/keycloak/default.nix b/pkgs/servers/keycloak/default.nix index 8a395d917caa..24d075d3b54d 100644 --- a/pkgs/servers/keycloak/default.nix +++ b/pkgs/servers/keycloak/default.nix @@ -18,11 +18,11 @@ let ''; in stdenv.mkDerivation rec { pname = "keycloak"; - version = "22.0.1"; + version = "22.0.2"; src = fetchzip { url = "https://github.com/keycloak/keycloak/releases/download/${version}/keycloak-${version}.zip"; - hash = "sha256-I0tmCcXqS1nfA7ZQd0qUsSWEUYvNa/caCZU8AYWSO7Y="; + hash = "sha256-6A+ow34S/QIYSztPAu7Uf7IzpLZK9Kbze0GTBsSvh3U="; }; nativeBuildInputs = [ makeWrapper jre ]; From e5aa6fd14dd016aead9f4e897b95d3ae536db805 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 11 Sep 2023 14:27:46 +0000 Subject: [PATCH 102/346] python310Packages.chispa: 0.8.3 -> 0.9.3 --- pkgs/development/python-modules/chispa/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/chispa/default.nix b/pkgs/development/python-modules/chispa/default.nix index 89accbd70ec5..352a27c515dc 100644 --- a/pkgs/development/python-modules/chispa/default.nix +++ b/pkgs/development/python-modules/chispa/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "chispa"; - version = "0.8.3"; + version = "0.9.3"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -16,8 +16,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "MrPowers"; repo = "chispa"; - rev = "v${version}"; - hash = "sha256-1ePx8VbU8pMd5EsZhFp6qyMptlUxpoCvJfuDm9xXOdc="; + rev = "refs/tags/v${version}"; + hash = "sha256-C+fodrQ7PztGzFHAi9SF+rkwtf4bdjDE2u0uORDXBbE="; }; nativeBuildInputs = [ From 9defdc50675d15b69c49745d7004d8492e777c28 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 11 Sep 2023 14:44:44 +0000 Subject: [PATCH 103/346] python310Packages.stanza: 1.5.0 -> 1.5.1 --- pkgs/development/python-modules/stanza/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/stanza/default.nix b/pkgs/development/python-modules/stanza/default.nix index 495dc2260809..0300f9c559d8 100644 --- a/pkgs/development/python-modules/stanza/default.nix +++ b/pkgs/development/python-modules/stanza/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "stanza"; - version = "1.5.0"; + version = "1.5.1"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "stanfordnlp"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-sFGAVavY16UQNJmW467+Ekojws59UMcAoCc1t9wWHM4="; + hash = "sha256-c7FaqI/8h6loLJJ9xOaJCyepWp+bc6IcqQlpGlW7u6g="; }; propagatedBuildInputs = [ From 633c705ec592b1c3b1c5cac157aa6de3e878a8f4 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 10 Sep 2023 20:15:15 -0400 Subject: [PATCH 104/346] unimap: init at 0.6.0 https://github.com/Edu4rdSHL/unimap --- pkgs/by-name/un/unimap/Cargo.lock | 1638 ++++++++++++++++++++++++++++ pkgs/by-name/un/unimap/package.nix | 60 + 2 files changed, 1698 insertions(+) create mode 100644 pkgs/by-name/un/unimap/Cargo.lock create mode 100644 pkgs/by-name/un/unimap/package.nix diff --git a/pkgs/by-name/un/unimap/Cargo.lock b/pkgs/by-name/un/unimap/Cargo.lock new file mode 100644 index 000000000000..e85e16360aad --- /dev/null +++ b/pkgs/by-name/un/unimap/Cargo.lock @@ -0,0 +1,1638 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "addr2line" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + +[[package]] +name = "aho-corasick" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6748e8def348ed4d14996fa801f4122cd763fff530258cdc03f64b25f89d3a5a" +dependencies = [ + "memchr", +] + +[[package]] +name = "android-tzdata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "ansi_term" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" +dependencies = [ + "winapi", +] + +[[package]] +name = "arrayref" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" + +[[package]] +name = "arrayvec" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" + +[[package]] +name = "async-trait" +version = "0.1.73" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.29", +] + +[[package]] +name = "atty" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" +dependencies = [ + "hermit-abi 0.1.19", + "libc", + "winapi", +] + +[[package]] +name = "autocfg" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" + +[[package]] +name = "backtrace" +version = "0.3.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" +dependencies = [ + "addr2line", + "cc", + "cfg-if", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] + +[[package]] +name = "base64" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" + +[[package]] +name = "blake2b_simd" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587" +dependencies = [ + "arrayref", + "arrayvec", + "constant_time_eq", +] + +[[package]] +name = "bumpalo" +version = "3.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" + +[[package]] +name = "byteorder" +version = "1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" + +[[package]] +name = "cc" +version = "1.0.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" +dependencies = [ + "libc", +] + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "chrono" +version = "0.4.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" +dependencies = [ + "android-tzdata", + "iana-time-zone", + "js-sys", + "num-traits 0.2.16", + "time", + "wasm-bindgen", + "winapi", +] + +[[package]] +name = "clap" +version = "2.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" +dependencies = [ + "ansi_term", + "atty", + "bitflags 1.3.2", + "strsim", + "textwrap", + "unicode-width", + "vec_map", + "yaml-rust 0.3.5", +] + +[[package]] +name = "colored" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6" +dependencies = [ + "is-terminal", + "lazy_static", + "windows-sys", +] + +[[package]] +name = "config" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b1b9d958c2b1368a663f05538fc1b5975adce1e19f435acceae987aceeeb369" +dependencies = [ + "lazy_static", + "nom", + "rust-ini", + "serde 1.0.186", + "serde-hjson", + "serde_json", + "toml", + "yaml-rust 0.4.5", +] + +[[package]] +name = "constant_time_eq" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" + +[[package]] +name = "core-foundation-sys" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" + +[[package]] +name = "crossbeam-channel" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" +dependencies = [ + "cfg-if", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" +dependencies = [ + "cfg-if", + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" +dependencies = [ + "autocfg", + "cfg-if", + "crossbeam-utils", + "memoffset", + "scopeguard", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "csv" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "626ae34994d3d8d668f4269922248239db4ae42d538b14c398b74a52208e8086" +dependencies = [ + "csv-core", + "itoa", + "ryu", + "serde 1.0.186", +] + +[[package]] +name = "csv-core" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" +dependencies = [ + "memchr", +] + +[[package]] +name = "data-encoding" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" + +[[package]] +name = "dirs" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901" +dependencies = [ + "libc", + "redox_users", + "winapi", +] + +[[package]] +name = "either" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" + +[[package]] +name = "encode_unicode" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" + +[[package]] +name = "enum-as-inner" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "570d109b813e904becc80d8d5da38376818a143348413f7149f1340fe04754d4" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "errno" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" +dependencies = [ + "errno-dragonfly", + "libc", + "windows-sys", +] + +[[package]] +name = "errno-dragonfly" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" +dependencies = [ + "cc", + "libc", +] + +[[package]] +name = "failure" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" +dependencies = [ + "backtrace", + "failure_derive", +] + +[[package]] +name = "failure_derive" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", + "synstructure", +] + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + +[[package]] +name = "form_urlencoded" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "futures-channel" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" +dependencies = [ + "futures-core", +] + +[[package]] +name = "futures-core" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" + +[[package]] +name = "futures-io" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" + +[[package]] +name = "futures-task" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" + +[[package]] +name = "futures-util" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" +dependencies = [ + "futures-core", + "futures-task", + "pin-project-lite", + "pin-utils", + "slab", +] + +[[package]] +name = "getrandom" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.9.0+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.11.0+wasi-snapshot-preview1", +] + +[[package]] +name = "gimli" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" + +[[package]] +name = "hermit-abi" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" +dependencies = [ + "libc", +] + +[[package]] +name = "hermit-abi" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" + +[[package]] +name = "hostname" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" +dependencies = [ + "libc", + "match_cfg", + "winapi", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.57" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "wasm-bindgen", + "windows", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "idna" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" +dependencies = [ + "matches", + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "idna" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "instant" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "ipconfig" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7" +dependencies = [ + "socket2 0.3.19", + "widestring", + "winapi", + "winreg", +] + +[[package]] +name = "ipnet" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" + +[[package]] +name = "is-terminal" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" +dependencies = [ + "hermit-abi 0.3.2", + "rustix", + "windows-sys", +] + +[[package]] +name = "itoa" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" + +[[package]] +name = "js-sys" +version = "0.3.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" +dependencies = [ + "wasm-bindgen", +] + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "lexical-core" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe" +dependencies = [ + "arrayvec", + "bitflags 1.3.2", + "cfg-if", + "ryu", + "static_assertions", +] + +[[package]] +name = "libc" +version = "0.2.147" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" + +[[package]] +name = "linked-hash-map" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" + +[[package]] +name = "linux-raw-sys" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" + +[[package]] +name = "lock_api" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" + +[[package]] +name = "lru-cache" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" +dependencies = [ + "linked-hash-map", +] + +[[package]] +name = "match_cfg" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" + +[[package]] +name = "matches" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" + +[[package]] +name = "memchr" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" + +[[package]] +name = "memoffset" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" +dependencies = [ + "autocfg", +] + +[[package]] +name = "miniz_oxide" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" +dependencies = [ + "adler", +] + +[[package]] +name = "mio" +version = "0.8.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" +dependencies = [ + "libc", + "wasi 0.11.0+wasi-snapshot-preview1", + "windows-sys", +] + +[[package]] +name = "nom" +version = "5.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08959a387a676302eebf4ddbcbc611da04285579f76f88ee0506c63b1a61dd4b" +dependencies = [ + "lexical-core", + "memchr", + "version_check", +] + +[[package]] +name = "num-traits" +version = "0.1.43" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31" +dependencies = [ + "num-traits 0.2.16", +] + +[[package]] +name = "num-traits" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num_cpus" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" +dependencies = [ + "hermit-abi 0.3.2", + "libc", +] + +[[package]] +name = "object" +version = "0.32.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ac5bbd07aea88c60a577a1ce218075ffd59208b2d7ca97adf9bfc5aeb21ebe" +dependencies = [ + "memchr", +] + +[[package]] +name = "once_cell" +version = "1.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" + +[[package]] +name = "openssl" +version = "0.10.56" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "729b745ad4a5575dd06a3e1af1414bd330ee561c01b3899eb584baeaa8def17e" +dependencies = [ + "bitflags 1.3.2", + "cfg-if", + "foreign-types", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.29", +] + +[[package]] +name = "openssl-src" +version = "111.27.0+1.1.1v" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06e8f197c82d7511c5b014030c9b1efeda40d7d5f99d23b4ceed3524a5e63f02" +dependencies = [ + "cc", +] + +[[package]] +name = "openssl-sys" +version = "0.9.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "866b5f16f90776b9bb8dc1e1802ac6f0513de3a7a7465867bfbc563dc737faac" +dependencies = [ + "cc", + "libc", + "openssl-src", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "parking_lot" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" +dependencies = [ + "instant", + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" +dependencies = [ + "cfg-if", + "instant", + "libc", + "redox_syscall 0.2.16", + "smallvec", + "winapi", +] + +[[package]] +name = "percent-encoding" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" + +[[package]] +name = "pin-project-lite" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "pkg-config" +version = "0.3.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" + +[[package]] +name = "ppv-lite86" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" + +[[package]] +name = "prettytable-rs" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fd04b170004fa2daccf418a7f8253aaf033c27760b5f225889024cf66d7ac2e" +dependencies = [ + "atty", + "csv", + "encode_unicode", + "lazy_static", + "term", + "unicode-width", +] + +[[package]] +name = "proc-macro2" +version = "1.0.66" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quick-error" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" + +[[package]] +name = "quote" +version = "1.0.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.10", +] + +[[package]] +name = "rayon" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" +dependencies = [ + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-utils", + "num_cpus", +] + +[[package]] +name = "redox_syscall" +version = "0.1.57" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" + +[[package]] +name = "redox_syscall" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" +dependencies = [ + "bitflags 1.3.2", +] + +[[package]] +name = "redox_users" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d" +dependencies = [ + "getrandom 0.1.16", + "redox_syscall 0.1.57", + "rust-argon2", +] + +[[package]] +name = "regex" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" + +[[package]] +name = "resolv-conf" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" +dependencies = [ + "hostname", + "quick-error", +] + +[[package]] +name = "rust-argon2" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb" +dependencies = [ + "base64", + "blake2b_simd", + "constant_time_eq", + "crossbeam-utils", +] + +[[package]] +name = "rust-ini" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e52c148ef37f8c375d49d5a73aa70713125b7f19095948a923f80afdeb22ec2" + +[[package]] +name = "rustc-demangle" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" + +[[package]] +name = "rustix" +version = "0.38.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f" +dependencies = [ + "bitflags 2.4.0", + "errno", + "libc", + "linux-raw-sys", + "windows-sys", +] + +[[package]] +name = "ryu" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "serde" +version = "0.8.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9dad3f759919b92c3068c696c15c3d17238234498bbdcc80f2c469606f948ac8" + +[[package]] +name = "serde" +version = "1.0.186" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f5db24220c009de9bd45e69fb2938f4b6d2df856aa9304ce377b3180f83b7c1" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde-hjson" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a3a4e0ea8a88553209f6cc6cfe8724ecad22e1acf372793c27d995290fe74f8" +dependencies = [ + "lazy_static", + "num-traits 0.1.43", + "regex", + "serde 0.8.23", +] + +[[package]] +name = "serde-xml-rs" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "65162e9059be2f6a3421ebbb4fef3e74b7d9e7c60c50a0e292c6239f19f1edfa" +dependencies = [ + "log", + "serde 1.0.186", + "thiserror", + "xml-rs", +] + +[[package]] +name = "serde_derive" +version = "1.0.186" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ad697f7e0b65af4983a4ce8f56ed5b357e8d3c36651bf6a7e13639c17b8e670" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.29", +] + +[[package]] +name = "serde_json" +version = "1.0.105" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" +dependencies = [ + "itoa", + "ryu", + "serde 1.0.186", +] + +[[package]] +name = "slab" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" +dependencies = [ + "autocfg", +] + +[[package]] +name = "smallvec" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" + +[[package]] +name = "socket2" +version = "0.3.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e" +dependencies = [ + "cfg-if", + "libc", + "winapi", +] + +[[package]] +name = "socket2" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" +dependencies = [ + "libc", + "windows-sys", +] + +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "strsim" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "synstructure" +version = "0.12.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", + "unicode-xid", +] + +[[package]] +name = "term" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edd106a334b7657c10b7c540a0106114feadeb4dc314513e97df481d5d966f42" +dependencies = [ + "byteorder", + "dirs", + "winapi", +] + +[[package]] +name = "textwrap" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" +dependencies = [ + "unicode-width", +] + +[[package]] +name = "thiserror" +version = "1.0.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.29", +] + +[[package]] +name = "time" +version = "0.1.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" +dependencies = [ + "libc", + "wasi 0.10.0+wasi-snapshot-preview1", + "winapi", +] + +[[package]] +name = "tinyvec" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.32.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" +dependencies = [ + "backtrace", + "libc", + "mio", + "num_cpus", + "pin-project-lite", + "socket2 0.5.3", + "windows-sys", +] + +[[package]] +name = "toml" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" +dependencies = [ + "serde 1.0.186", +] + +[[package]] +name = "trust-dns-proto" +version = "0.20.4" +source = "git+https://github.com/Findomain/trust-dns?branch=custombranch#f339a5e806bed9109ad205d2143d8b18701d2ab0" +dependencies = [ + "async-trait", + "cfg-if", + "data-encoding", + "enum-as-inner", + "futures-channel", + "futures-io", + "futures-util", + "idna 0.2.3", + "ipnet", + "lazy_static", + "log", + "rand", + "smallvec", + "thiserror", + "tinyvec", + "tokio", + "url", +] + +[[package]] +name = "trust-dns-resolver" +version = "0.20.4" +source = "git+https://github.com/Findomain/trust-dns?branch=custombranch#f339a5e806bed9109ad205d2143d8b18701d2ab0" +dependencies = [ + "cfg-if", + "futures-util", + "ipconfig", + "lazy_static", + "log", + "lru-cache", + "parking_lot", + "rand", + "resolv-conf", + "smallvec", + "thiserror", + "tokio", + "trust-dns-proto", +] + +[[package]] +name = "unicode-bidi" +version = "0.3.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" + +[[package]] +name = "unicode-ident" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" + +[[package]] +name = "unicode-normalization" +version = "0.1.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "unicode-width" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" + +[[package]] +name = "unicode-xid" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" + +[[package]] +name = "unimap" +version = "0.6.0" +dependencies = [ + "atty", + "chrono", + "clap", + "colored", + "config", + "failure", + "lazy_static", + "log", + "openssl", + "prettytable-rs", + "rand", + "rayon", + "serde 1.0.186", + "serde-xml-rs", + "serde_derive", + "trust-dns-resolver", + "winapi", +] + +[[package]] +name = "url" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" +dependencies = [ + "form_urlencoded", + "idna 0.4.0", + "percent-encoding", +] + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "vec_map" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" + +[[package]] +name = "version_check" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + +[[package]] +name = "wasi" +version = "0.9.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" + +[[package]] +name = "wasi" +version = "0.10.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" + +[[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + +[[package]] +name = "wasm-bindgen" +version = "0.2.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" +dependencies = [ + "cfg-if", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" +dependencies = [ + "bumpalo", + "log", + "once_cell", + "proc-macro2", + "quote", + "syn 2.0.29", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.29", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" + +[[package]] +name = "widestring" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "winreg" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9" +dependencies = [ + "winapi", +] + +[[package]] +name = "xml-rs" +version = "0.8.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47430998a7b5d499ccee752b41567bc3afc57e1327dc855b1a2aa44ce29b5fa1" + +[[package]] +name = "yaml-rust" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e66366e18dc58b46801afbf2ca7661a9f59cc8c5962c29892b6039b4f86fa992" + +[[package]] +name = "yaml-rust" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" +dependencies = [ + "linked-hash-map", +] diff --git a/pkgs/by-name/un/unimap/package.nix b/pkgs/by-name/un/unimap/package.nix new file mode 100644 index 000000000000..7563c1f50535 --- /dev/null +++ b/pkgs/by-name/un/unimap/package.nix @@ -0,0 +1,60 @@ +{ lib +, rustPlatform +, fetchFromGitHub +, installShellFiles +, makeBinaryWrapper +, stdenv +, pkg-config +, openssl +, nmap +}: + +rustPlatform.buildRustPackage rec { + pname = "unimap"; + version = "0.6.0"; + + src = fetchFromGitHub { + owner = "Edu4rdSHL"; + repo = "unimap"; + rev = version; + hash = "sha256-7UbzE5VXycjo7KNpPe2oqwyZDT4Vk8rQZ6HXT1q9Cw4="; + }; + + cargoLock = { + lockFile = ./Cargo.lock; + outputHashes = { + "trust-dns-proto-0.20.4" = "sha256-+oAjyyTXbKir8e5kn8CUmQy5qmzQ47ryvBBdZtzj1TY="; + }; + }; + + nativeBuildInputs = [ + installShellFiles + makeBinaryWrapper + ] ++ lib.optionals (stdenv.hostPlatform.isAarch && stdenv.isLinux) [ + pkg-config + ]; + + # only depends on openssl on aarch/arm linux + buildInputs = lib.optionals (stdenv.hostPlatform.isAarch && stdenv.isLinux) [ + openssl + ]; + + env = lib.optionalAttrs (stdenv.hostPlatform.isAarch && stdenv.isLinux) { + OPENSSL_NO_VENDOR = true; + }; + + postInstall = '' + installManPage unimap.1 + wrapProgram $out/bin/unimap \ + --prefix PATH : ${lib.makeBinPath [ nmap ]} + ''; + + meta = with lib; { + description = "Scan only once by IP address and reduce scan times with Nmap for large amounts of data"; + homepage = "https://github.com/Edu4rdSHL/unimap"; + changelog = "https://github.com/Edu4rdSHL/unimap/releases/tag/${src.rev}"; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ figsoda ]; + mainProgram = "unimap"; + }; +} From a94ba027ff10f1689361a5cbafeffc300e760570 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 10 Sep 2023 15:59:01 -0700 Subject: [PATCH 105/346] nest-cli: 9.4.2 -> 10.1.17 Diff: https://github.com/nestjs/nest-cli/compare/9.4.2...10.1.17 --- pkgs/development/tools/nest-cli/default.nix | 30 +- .../tools/nest-cli/package-lock.json | 15970 ---------------- 2 files changed, 20 insertions(+), 15980 deletions(-) delete mode 100644 pkgs/development/tools/nest-cli/package-lock.json diff --git a/pkgs/development/tools/nest-cli/default.nix b/pkgs/development/tools/nest-cli/default.nix index 5fc0c87dc55d..9fdb579b5426 100644 --- a/pkgs/development/tools/nest-cli/default.nix +++ b/pkgs/development/tools/nest-cli/default.nix @@ -1,32 +1,42 @@ { buildNpmPackage +, darwin , fetchFromGitHub , lib +, python3 +, stdenv }: buildNpmPackage rec { pname = "nest-cli"; - version = "9.4.2"; + version = "10.1.17"; src = fetchFromGitHub { owner = "nestjs"; repo = pname; rev = version; - hash = "sha256-9I6ez75byOPVKvX93Yv1qSM3JaWlmmvZCTjNB++cmw0="; + hash = "sha256-03GDrKjlvl3O3kJlbbyDYxtlfwLkZbvxC9gvP534zSY="; }; - # Generated a new package-lock.json by running `npm upgrade` - # The upstream lockfile is using an old version of `fsevents`, - # which does not build on Darwin - postPatch = '' - cp ${./package-lock.json} ./package-lock.json - ''; + npmDepsHash = "sha256-nZ9ant2c+15bRBikFcKZW8aiFqI3WC6hktSiBfnma/I="; - npmDepsHash = "sha256-QA2ZgbXiG84HuutJ2ZCGMrnqpwrPlHL/Bur7Pak8WcQ="; + env = { + npm_config_build_from_source = true; + }; + + nativeBuildInputs = [ + python3 + ]; + + buildInputs = lib.optionals stdenv.isDarwin [ + darwin.apple_sdk.frameworks.CoreServices + ]; meta = with lib; { - description = "CLI tool for Nest applications 🍹"; + description = "CLI tool for Nest applications"; homepage = "https://nestjs.com"; license = licenses.mit; + mainProgram = "nest"; maintainers = [ maintainers.ehllie ]; + broken = stdenv.isDarwin; # https://github.com/nestjs/nest-cli/pull/2281 }; } diff --git a/pkgs/development/tools/nest-cli/package-lock.json b/pkgs/development/tools/nest-cli/package-lock.json deleted file mode 100644 index 8549f322c936..000000000000 --- a/pkgs/development/tools/nest-cli/package-lock.json +++ /dev/null @@ -1,15970 +0,0 @@ -{ - "name": "@nestjs/cli", - "version": "9.4.2", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "@nestjs/cli", - "version": "9.4.2", - "license": "MIT", - "dependencies": { - "@angular-devkit/core": "15.2.6", - "@angular-devkit/schematics": "15.2.6", - "@angular-devkit/schematics-cli": "15.2.6", - "@nestjs/schematics": "^9.0.4", - "chalk": "4.1.2", - "chokidar": "3.5.3", - "cli-table3": "0.6.3", - "commander": "4.1.1", - "fork-ts-checker-webpack-plugin": "8.0.0", - "inquirer": "8.2.5", - "node-emoji": "1.11.0", - "ora": "5.4.1", - "os-name": "4.0.1", - "rimraf": "4.4.1", - "shelljs": "0.8.5", - "source-map-support": "0.5.21", - "tree-kill": "1.2.2", - "tsconfig-paths": "4.2.0", - "tsconfig-paths-webpack-plugin": "4.0.1", - "typescript": "4.9.5", - "webpack": "5.80.0", - "webpack-node-externals": "3.0.0" - }, - "bin": { - "nest": "bin/nest.js" - }, - "devDependencies": { - "@commitlint/cli": "17.6.1", - "@commitlint/config-angular": "17.6.1", - "@types/inquirer": "8.2.6", - "@types/jest": "29.5.1", - "@types/node": "18.16.0", - "@types/node-emoji": "1.8.2", - "@types/shelljs": "0.8.12", - "@types/webpack-node-externals": "3.0.0", - "@typescript-eslint/eslint-plugin": "5.59.0", - "@typescript-eslint/parser": "5.59.0", - "delete-empty": "3.0.0", - "eslint": "8.39.0", - "eslint-config-prettier": "8.8.0", - "gulp": "4.0.2", - "gulp-clean": "0.4.0", - "husky": "8.0.3", - "jest": "29.5.0", - "lint-staged": "13.2.1", - "prettier": "2.8.8", - "release-it": "15.10.1", - "ts-jest": "29.1.0", - "ts-loader": "9.4.2" - }, - "engines": { - "node": ">= 12.9.0" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "dev": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@angular-devkit/core": { - "version": "15.2.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-15.2.6.tgz", - "integrity": "sha512-YVTWZ+M+xNKdFX4EnY9QX49PZraawiaA0iTd2CUW8ZoTUvU7yOGMKZLSdz6aokTMRVfm0449wt6YL994ibOo1g==", - "dependencies": { - "ajv": "8.12.0", - "ajv-formats": "2.1.1", - "jsonc-parser": "3.2.0", - "rxjs": "6.6.7", - "source-map": "0.7.4" - }, - "engines": { - "node": "^14.20.0 || ^16.13.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" - }, - "peerDependencies": { - "chokidar": "^3.5.2" - }, - "peerDependenciesMeta": { - "chokidar": { - "optional": true - } - } - }, - "node_modules/@angular-devkit/schematics": { - "version": "15.2.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-15.2.6.tgz", - "integrity": "sha512-f7VgnAcok7AwR/DhX0ZWskB0rFBo/KsvtIUA2qZSrpKMf8eFiwu03dv/b2mI0vnf+1FBfIQzJvO0ww45zRp6dA==", - "dependencies": { - "@angular-devkit/core": "15.2.6", - "jsonc-parser": "3.2.0", - "magic-string": "0.29.0", - "ora": "5.4.1", - "rxjs": "6.6.7" - }, - "engines": { - "node": "^14.20.0 || ^16.13.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" - } - }, - "node_modules/@angular-devkit/schematics-cli": { - "version": "15.2.6", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics-cli/-/schematics-cli-15.2.6.tgz", - "integrity": "sha512-dkmJAvLmiXIX3uAY0a7GcnEvKNN/RKR5Q/ez4OQb+jaz+2/XbAiQVmTgZ5uwU2gYkFNLvG9ZCAaQdC4JJp9xaw==", - "dependencies": { - "@angular-devkit/core": "15.2.6", - "@angular-devkit/schematics": "15.2.6", - "ansi-colors": "4.1.3", - "inquirer": "8.2.4", - "symbol-observable": "4.0.0", - "yargs-parser": "21.1.1" - }, - "bin": { - "schematics": "bin/schematics.js" - }, - "engines": { - "node": "^14.20.0 || ^16.13.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" - } - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/inquirer": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", - "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", - "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/@angular-devkit/schematics-cli/node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", - "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", - "dependencies": { - "@babel/highlight": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.21.7", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.7.tgz", - "integrity": "sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.21.8", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz", - "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==", - "dev": true, - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.5", - "@babel/helper-compilation-targets": "^7.21.5", - "@babel/helper-module-transforms": "^7.21.5", - "@babel/helpers": "^7.21.5", - "@babel/parser": "^7.21.8", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/core/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, - "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/generator": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz", - "integrity": "sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==", - "dev": true, - "dependencies": { - "@babel/types": "^7.21.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz", - "integrity": "sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.21.5", - "@babel/helper-validator-option": "^7.21.0", - "browserslist": "^4.21.3", - "lru-cache": "^5.1.1", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz", - "integrity": "sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", - "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==", - "dev": true, - "dependencies": { - "@babel/template": "^7.20.7", - "@babel/types": "^7.21.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "dev": true, - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz", - "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.21.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz", - "integrity": "sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.21.5", - "@babel/helper-module-imports": "^7.21.4", - "@babel/helper-simple-access": "^7.21.5", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz", - "integrity": "sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz", - "integrity": "sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.21.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz", - "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", - "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz", - "integrity": "sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==", - "dev": true, - "dependencies": { - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/@babel/highlight/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/@babel/highlight/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/@babel/highlight/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/parser": { - "version": "7.21.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.8.tgz", - "integrity": "sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==", - "dev": true, - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz", - "integrity": "sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz", - "integrity": "sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz", - "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.5", - "@babel/helper-environment-visitor": "^7.21.5", - "@babel/helper-function-name": "^7.21.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.21.5", - "@babel/types": "^7.21.5", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse/node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/types": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz", - "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==", - "dev": true, - "dependencies": { - "@babel/helper-string-parser": "^7.21.5", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@bcoe/v8-coverage": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", - "dev": true - }, - "node_modules/@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", - "optional": true, - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/@commitlint/cli": { - "version": "17.6.1", - "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-17.6.1.tgz", - "integrity": "sha512-kCnDD9LE2ySiTnj/VPaxy4/oRayRcdv4aCuVxtoum8SxIU7OADHc0nJPQfheE8bHcs3zZdWzDMWltRosuT13bg==", - "dev": true, - "dependencies": { - "@commitlint/format": "^17.4.4", - "@commitlint/lint": "^17.6.1", - "@commitlint/load": "^17.5.0", - "@commitlint/read": "^17.5.1", - "@commitlint/types": "^17.4.4", - "execa": "^5.0.0", - "lodash.isfunction": "^3.0.9", - "resolve-from": "5.0.0", - "resolve-global": "1.0.0", - "yargs": "^17.0.0" - }, - "bin": { - "commitlint": "cli.js" - }, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/config-angular": { - "version": "17.6.1", - "resolved": "https://registry.npmjs.org/@commitlint/config-angular/-/config-angular-17.6.1.tgz", - "integrity": "sha512-6dOFX0AwdP+rrMGFe/X2u9n4GeM7oWf7WbbNohbwJeDkKStFG7RxA3RV9bUldovoS1qTS0f8NP3vjQbxSsOHJw==", - "dev": true, - "dependencies": { - "@commitlint/config-angular-type-enum": "^17.4.0" - }, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/config-angular-type-enum": { - "version": "17.4.0", - "resolved": "https://registry.npmjs.org/@commitlint/config-angular-type-enum/-/config-angular-type-enum-17.4.0.tgz", - "integrity": "sha512-qbmfOfVqQHMKfc6CxS0A9b7+EFsOyEBoh4+i8Qa05uk8YhT/zY1CeIXK5V3wwemMDcHUegyL/ZnwCvWD7g8GxA==", - "dev": true, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/config-validator": { - "version": "17.4.4", - "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-17.4.4.tgz", - "integrity": "sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg==", - "dev": true, - "dependencies": { - "@commitlint/types": "^17.4.4", - "ajv": "^8.11.0" - }, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/ensure": { - "version": "17.4.4", - "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-17.4.4.tgz", - "integrity": "sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g==", - "dev": true, - "dependencies": { - "@commitlint/types": "^17.4.4", - "lodash.camelcase": "^4.3.0", - "lodash.kebabcase": "^4.1.1", - "lodash.snakecase": "^4.1.1", - "lodash.startcase": "^4.4.0", - "lodash.upperfirst": "^4.3.1" - }, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/execute-rule": { - "version": "17.4.0", - "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-17.4.0.tgz", - "integrity": "sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==", - "dev": true, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/format": { - "version": "17.4.4", - "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-17.4.4.tgz", - "integrity": "sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ==", - "dev": true, - "dependencies": { - "@commitlint/types": "^17.4.4", - "chalk": "^4.1.0" - }, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/is-ignored": { - "version": "17.4.4", - "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.4.4.tgz", - "integrity": "sha512-Y3eo1SFJ2JQDik4rWkBC4tlRIxlXEFrRWxcyrzb1PUT2k3kZ/XGNuCDfk/u0bU2/yS0tOA/mTjFsV+C4qyACHw==", - "dev": true, - "dependencies": { - "@commitlint/types": "^17.4.4", - "semver": "7.3.8" - }, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/lint": { - "version": "17.6.1", - "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-17.6.1.tgz", - "integrity": "sha512-VARJ9kxH64isgwVnC+ABPafCYzqxpsWJIpDaTuI0gh8aX4GQ0i7cn9tvxtFNfJj4ER2BAJeWJ0vURdNYjK2RQQ==", - "dev": true, - "dependencies": { - "@commitlint/is-ignored": "^17.4.4", - "@commitlint/parse": "^17.4.4", - "@commitlint/rules": "^17.6.1", - "@commitlint/types": "^17.4.4" - }, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/load": { - "version": "17.5.0", - "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-17.5.0.tgz", - "integrity": "sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q==", - "dev": true, - "dependencies": { - "@commitlint/config-validator": "^17.4.4", - "@commitlint/execute-rule": "^17.4.0", - "@commitlint/resolve-extends": "^17.4.4", - "@commitlint/types": "^17.4.4", - "@types/node": "*", - "chalk": "^4.1.0", - "cosmiconfig": "^8.0.0", - "cosmiconfig-typescript-loader": "^4.0.0", - "lodash.isplainobject": "^4.0.6", - "lodash.merge": "^4.6.2", - "lodash.uniq": "^4.5.0", - "resolve-from": "^5.0.0", - "ts-node": "^10.8.1", - "typescript": "^4.6.4 || ^5.0.0" - }, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/message": { - "version": "17.4.2", - "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-17.4.2.tgz", - "integrity": "sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==", - "dev": true, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/parse": { - "version": "17.4.4", - "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-17.4.4.tgz", - "integrity": "sha512-EKzz4f49d3/OU0Fplog7nwz/lAfXMaDxtriidyGF9PtR+SRbgv4FhsfF310tKxs6EPj8Y+aWWuX3beN5s+yqGg==", - "dev": true, - "dependencies": { - "@commitlint/types": "^17.4.4", - "conventional-changelog-angular": "^5.0.11", - "conventional-commits-parser": "^3.2.2" - }, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/read": { - "version": "17.5.1", - "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-17.5.1.tgz", - "integrity": "sha512-7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg==", - "dev": true, - "dependencies": { - "@commitlint/top-level": "^17.4.0", - "@commitlint/types": "^17.4.4", - "fs-extra": "^11.0.0", - "git-raw-commits": "^2.0.11", - "minimist": "^1.2.6" - }, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/resolve-extends": { - "version": "17.4.4", - "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-17.4.4.tgz", - "integrity": "sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A==", - "dev": true, - "dependencies": { - "@commitlint/config-validator": "^17.4.4", - "@commitlint/types": "^17.4.4", - "import-fresh": "^3.0.0", - "lodash.mergewith": "^4.6.2", - "resolve-from": "^5.0.0", - "resolve-global": "^1.0.0" - }, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/rules": { - "version": "17.6.1", - "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-17.6.1.tgz", - "integrity": "sha512-lUdHw6lYQ1RywExXDdLOKxhpp6857/4c95Dc/1BikrHgdysVUXz26yV0vp1GL7Gv+avx9WqZWTIVB7pNouxlfw==", - "dev": true, - "dependencies": { - "@commitlint/ensure": "^17.4.4", - "@commitlint/message": "^17.4.2", - "@commitlint/to-lines": "^17.4.0", - "@commitlint/types": "^17.4.4", - "execa": "^5.0.0" - }, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/to-lines": { - "version": "17.4.0", - "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-17.4.0.tgz", - "integrity": "sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==", - "dev": true, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/top-level": { - "version": "17.4.0", - "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-17.4.0.tgz", - "integrity": "sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==", - "dev": true, - "dependencies": { - "find-up": "^5.0.0" - }, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@commitlint/types": { - "version": "17.4.4", - "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-17.4.4.tgz", - "integrity": "sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==", - "dev": true, - "dependencies": { - "chalk": "^4.1.0" - }, - "engines": { - "node": ">=v14" - } - }, - "node_modules/@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dev": true, - "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" - } - }, - "node_modules/@eslint-community/regexpp": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", - "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", - "dev": true, - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.2.tgz", - "integrity": "sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==", - "dev": true, - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.5.1", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/eslintrc/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/@eslint/js": { - "version": "8.39.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.39.0.tgz", - "integrity": "sha512-kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.8", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", - "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", - "dev": true, - "dependencies": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true - }, - "node_modules/@iarna/toml": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz", - "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==", - "dev": true - }, - "node_modules/@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - "dev": true, - "dependencies": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/console": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", - "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", - "dev": true, - "dependencies": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/core": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", - "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", - "dev": true, - "dependencies": { - "@jest/console": "^29.5.0", - "@jest/reporters": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.5.0", - "jest-config": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-resolve-dependencies": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "jest-watcher": "^29.5.0", - "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/@jest/environment": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", - "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", - "dev": true, - "dependencies": { - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-mock": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", - "dev": true, - "dependencies": { - "expect": "^29.5.0", - "jest-snapshot": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/expect-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", - "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", - "dev": true, - "dependencies": { - "jest-get-type": "^29.4.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/fake-timers": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", - "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", - "dev": true, - "dependencies": { - "@jest/types": "^29.5.0", - "@sinonjs/fake-timers": "^10.0.2", - "@types/node": "*", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/globals": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", - "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/types": "^29.5.0", - "jest-mock": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/reporters": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", - "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", - "dev": true, - "dependencies": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", - "slash": "^3.0.0", - "string-length": "^4.0.1", - "strip-ansi": "^6.0.0", - "v8-to-istanbul": "^9.0.1" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/@jest/schemas": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", - "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", - "dev": true, - "dependencies": { - "@sinclair/typebox": "^0.25.16" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/source-map": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", - "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", - "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.15", - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/test-result": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", - "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", - "dev": true, - "dependencies": { - "@jest/console": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/test-sequencer": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", - "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", - "dev": true, - "dependencies": { - "@jest/test-result": "^29.5.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/transform": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", - "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", - "dev": true, - "dependencies": { - "@babel/core": "^7.11.6", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^2.0.0", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "write-file-atomic": "^4.0.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/types": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", - "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", - "dev": true, - "dependencies": { - "@jest/schemas": "^29.4.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz", - "integrity": "sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", - "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - } - }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - }, - "node_modules/@nestjs/schematics": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/@nestjs/schematics/-/schematics-9.1.0.tgz", - "integrity": "sha512-/7CyMTnPJSK9/xD9CkCqwuHPOlHVlLC2RDnbdCJ7mIO07SdbBbY14msTqtYW9VRQtsjZPLh1GTChf7ryJUImwA==", - "dependencies": { - "@angular-devkit/core": "15.2.4", - "@angular-devkit/schematics": "15.2.4", - "jsonc-parser": "3.2.0", - "pluralize": "8.0.0" - }, - "peerDependencies": { - "typescript": ">=4.3.5" - } - }, - "node_modules/@nestjs/schematics/node_modules/@angular-devkit/core": { - "version": "15.2.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-15.2.4.tgz", - "integrity": "sha512-yl+0j1bMwJLKShsyCXw77tbJG8Sd21+itisPLL2MgEpLNAO252kr9zG4TLlFRJyKVftm2l1h78KjqvM5nbOXNg==", - "dependencies": { - "ajv": "8.12.0", - "ajv-formats": "2.1.1", - "jsonc-parser": "3.2.0", - "rxjs": "6.6.7", - "source-map": "0.7.4" - }, - "engines": { - "node": "^14.20.0 || ^16.13.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" - }, - "peerDependencies": { - "chokidar": "^3.5.2" - }, - "peerDependenciesMeta": { - "chokidar": { - "optional": true - } - } - }, - "node_modules/@nestjs/schematics/node_modules/@angular-devkit/schematics": { - "version": "15.2.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-15.2.4.tgz", - "integrity": "sha512-/W7/vvn59PAVLzhcvD4/N/E8RDhub8ny1A7I96LTRjC5o+yvVV16YJ4YJzolrRrIEN01KmLVQJ9A58VCaweMgw==", - "dependencies": { - "@angular-devkit/core": "15.2.4", - "jsonc-parser": "3.2.0", - "magic-string": "0.29.0", - "ora": "5.4.1", - "rxjs": "6.6.7" - }, - "engines": { - "node": "^14.20.0 || ^16.13.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@octokit/auth-token": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-3.0.3.tgz", - "integrity": "sha512-/aFM2M4HVDBT/jjDBa84sJniv1t9Gm/rLkalaz9htOm+L+8JMj1k9w0CkUdcxNyNxZPlTxKPVko+m1VlM58ZVA==", - "dev": true, - "dependencies": { - "@octokit/types": "^9.0.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@octokit/core": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.2.0.tgz", - "integrity": "sha512-AgvDRUg3COpR82P7PBdGZF/NNqGmtMq2NiPqeSsDIeCfYFOZ9gddqWNQHnFdEUf+YwOj4aZYmJnlPp7OXmDIDg==", - "dev": true, - "dependencies": { - "@octokit/auth-token": "^3.0.0", - "@octokit/graphql": "^5.0.0", - "@octokit/request": "^6.0.0", - "@octokit/request-error": "^3.0.0", - "@octokit/types": "^9.0.0", - "before-after-hook": "^2.2.0", - "universal-user-agent": "^6.0.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@octokit/endpoint": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.5.tgz", - "integrity": "sha512-LG4o4HMY1Xoaec87IqQ41TQ+glvIeTKqfjkCEmt5AIwDZJwQeVZFIEYXrYY6yLwK+pAScb9Gj4q+Nz2qSw1roA==", - "dev": true, - "dependencies": { - "@octokit/types": "^9.0.0", - "is-plain-object": "^5.0.0", - "universal-user-agent": "^6.0.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@octokit/graphql": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-5.0.5.tgz", - "integrity": "sha512-Qwfvh3xdqKtIznjX9lz2D458r7dJPP8l6r4GQkIdWQouZwHQK0mVT88uwiU2bdTU2OtT1uOlKpRciUWldpG0yQ==", - "dev": true, - "dependencies": { - "@octokit/request": "^6.0.0", - "@octokit/types": "^9.0.0", - "universal-user-agent": "^6.0.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@octokit/openapi-types": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-17.1.0.tgz", - "integrity": "sha512-rnI26BAITDZTo5vqFOmA7oX4xRd18rO+gcK4MiTpJmsRMxAw0JmevNjPsjpry1bb9SVNo56P/0kbiyXXa4QluA==", - "dev": true - }, - "node_modules/@octokit/plugin-paginate-rest": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.0.0.tgz", - "integrity": "sha512-Sq5VU1PfT6/JyuXPyt04KZNVsFOSBaYOAq2QRZUwzVlI10KFvcbUo8lR258AAQL1Et60b0WuVik+zOWKLuDZxw==", - "dev": true, - "dependencies": { - "@octokit/types": "^9.0.0" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "@octokit/core": ">=4" - } - }, - "node_modules/@octokit/plugin-request-log": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz", - "integrity": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==", - "dev": true, - "peerDependencies": { - "@octokit/core": ">=3" - } - }, - "node_modules/@octokit/plugin-rest-endpoint-methods": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.0.1.tgz", - "integrity": "sha512-pnCaLwZBudK5xCdrR823xHGNgqOzRnJ/mpC/76YPpNP7DybdsJtP7mdOwh+wYZxK5jqeQuhu59ogMI4NRlBUvA==", - "dev": true, - "dependencies": { - "@octokit/types": "^9.0.0", - "deprecation": "^2.3.1" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "@octokit/core": ">=3" - } - }, - "node_modules/@octokit/request": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-6.2.3.tgz", - "integrity": "sha512-TNAodj5yNzrrZ/VxP+H5HiYaZep0H3GU0O7PaF+fhDrt8FPrnkei9Aal/txsN/1P7V3CPiThG0tIvpPDYUsyAA==", - "dev": true, - "dependencies": { - "@octokit/endpoint": "^7.0.0", - "@octokit/request-error": "^3.0.0", - "@octokit/types": "^9.0.0", - "is-plain-object": "^5.0.0", - "node-fetch": "^2.6.7", - "universal-user-agent": "^6.0.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@octokit/request-error": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-3.0.3.tgz", - "integrity": "sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==", - "dev": true, - "dependencies": { - "@octokit/types": "^9.0.0", - "deprecation": "^2.0.0", - "once": "^1.4.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@octokit/request/node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dev": true, - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/@octokit/rest": { - "version": "19.0.7", - "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-19.0.7.tgz", - "integrity": "sha512-HRtSfjrWmWVNp2uAkEpQnuGMJsu/+dBr47dRc5QVgsCbnIc1+GFEaoKBWkYG+zjrsHpSqcAElMio+n10c0b5JA==", - "dev": true, - "dependencies": { - "@octokit/core": "^4.1.0", - "@octokit/plugin-paginate-rest": "^6.0.0", - "@octokit/plugin-request-log": "^1.0.4", - "@octokit/plugin-rest-endpoint-methods": "^7.0.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@octokit/types": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.2.0.tgz", - "integrity": "sha512-xySzJG4noWrIBFyMu4lg4tu9vAgNg9S0aoLRONhAEz6ueyi1evBzb40HitIosaYS4XOexphG305IVcLrIX/30g==", - "dev": true, - "dependencies": { - "@octokit/openapi-types": "^17.1.0" - } - }, - "node_modules/@pnpm/config.env-replace": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", - "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", - "dev": true, - "engines": { - "node": ">=12.22.0" - } - }, - "node_modules/@pnpm/network.ca-file": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", - "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", - "dev": true, - "dependencies": { - "graceful-fs": "4.2.10" - }, - "engines": { - "node": ">=12.22.0" - } - }, - "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true - }, - "node_modules/@pnpm/npm-conf": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.2.0.tgz", - "integrity": "sha512-roLI1ul/GwzwcfcVpZYPdrgW2W/drLriObl1h+yLF5syc8/5ULWw2ALbCHUWF+4YltIqA3xFSbG4IwyJz37e9g==", - "dev": true, - "dependencies": { - "@pnpm/config.env-replace": "^1.1.0", - "@pnpm/network.ca-file": "^1.0.1", - "config-chain": "^1.1.11" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", - "dev": true - }, - "node_modules/@sindresorhus/is": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.3.0.tgz", - "integrity": "sha512-CX6t4SYQ37lzxicAqsBtxA3OseeoVrh9cSJ5PFYam0GksYlupRfy1A+Q4aYD3zvcfECLc0zO2u+ZnR2UYKvCrw==", - "dev": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" - } - }, - "node_modules/@sinonjs/commons": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", - "integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==", - "dev": true, - "dependencies": { - "type-detect": "4.0.8" - } - }, - "node_modules/@sinonjs/fake-timers": { - "version": "10.0.2", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz", - "integrity": "sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==", - "dev": true, - "dependencies": { - "@sinonjs/commons": "^2.0.0" - } - }, - "node_modules/@szmarczak/http-timer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", - "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", - "dev": true, - "dependencies": { - "defer-to-connect": "^2.0.1" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "dev": true - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true - }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true - }, - "node_modules/@tsconfig/node16": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz", - "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==", - "dev": true - }, - "node_modules/@types/babel__core": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", - "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "node_modules/@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__traverse": { - "version": "7.18.5", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.5.tgz", - "integrity": "sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q==", - "dev": true, - "dependencies": { - "@babel/types": "^7.3.0" - } - }, - "node_modules/@types/eslint": { - "version": "8.37.0", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.37.0.tgz", - "integrity": "sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ==", - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "node_modules/@types/estree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", - "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==" - }, - "node_modules/@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", - "dev": true, - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "node_modules/@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", - "dev": true - }, - "node_modules/@types/inquirer": { - "version": "8.2.6", - "resolved": "https://registry.npmjs.org/@types/inquirer/-/inquirer-8.2.6.tgz", - "integrity": "sha512-3uT88kxg8lNzY8ay2ZjP44DKcRaTGztqeIvN2zHvhzIBH/uAPaL75aBtdNRKbA7xXoMbBt5kX0M00VKAnfOYlA==", - "dev": true, - "dependencies": { - "@types/through": "*", - "rxjs": "^7.2.0" - } - }, - "node_modules/@types/inquirer/node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "dev": true, - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", - "dev": true - }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "*" - } - }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-report": "*" - } - }, - "node_modules/@types/jest": { - "version": "29.5.1", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.1.tgz", - "integrity": "sha512-tEuVcHrpaixS36w7hpsfLBLpjtMRJUE09/MHXn923LOVojDwyC14cWcfc0rDs0VEfUyYmt/+iX1kxxp+gZMcaQ==", - "dev": true, - "dependencies": { - "expect": "^29.0.0", - "pretty-format": "^29.0.0" - } - }, - "node_modules/@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" - }, - "node_modules/@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true - }, - "node_modules/@types/minimist": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", - "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", - "dev": true - }, - "node_modules/@types/node": { - "version": "18.16.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.0.tgz", - "integrity": "sha512-BsAaKhB+7X+H4GnSjGhJG9Qi8Tw+inU9nJDwmD5CgOmBLEI6ArdhikpLX7DjbjDRDTbqZzU2LSQNZg8WGPiSZQ==" - }, - "node_modules/@types/node-emoji": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/@types/node-emoji/-/node-emoji-1.8.2.tgz", - "integrity": "sha512-PfF1qL/9veo8BSHLV84C9ORNr3lHSlnWJ6yU8OdNufoftajeWHTLVbGHvp2B7e7DPDS9gMs6cfeSsqo5rqSitg==", - "dev": true - }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", - "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", - "dev": true - }, - "node_modules/@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" - }, - "node_modules/@types/prettier": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", - "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==", - "dev": true - }, - "node_modules/@types/semver": { - "version": "7.3.13", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", - "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", - "dev": true - }, - "node_modules/@types/shelljs": { - "version": "0.8.12", - "resolved": "https://registry.npmjs.org/@types/shelljs/-/shelljs-0.8.12.tgz", - "integrity": "sha512-ZA8U81/gldY+rR5zl/7HSHrG2KDfEb3lzG6uCUDhW1DTQE9yC/VBQ45fXnXq8f3CgInfhZmjtdu/WOUlrXRQUg==", - "dev": true, - "dependencies": { - "@types/glob": "~7.2.0", - "@types/node": "*" - } - }, - "node_modules/@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", - "dev": true - }, - "node_modules/@types/through": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/through/-/through-0.0.30.tgz", - "integrity": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/webpack-node-externals": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz", - "integrity": "sha512-Z3ELJiH0aZjxkoymT2nrGSmCF/CYjiqC0bpv4/DWy9h7e6gP4B2qmKZFHJFermeF0SYURbSw0puddQl9dMMV0w==", - "dev": true, - "dependencies": { - "@types/node": "*", - "webpack": "^5" - } - }, - "node_modules/@types/yargs": { - "version": "17.0.24", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", - "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", - "dev": true - }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.0.tgz", - "integrity": "sha512-p0QgrEyrxAWBecR56gyn3wkG15TJdI//eetInP3zYRewDh0XS+DhB3VUAd3QqvziFsfaQIoIuZMxZRB7vXYaYw==", - "dev": true, - "dependencies": { - "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.59.0", - "@typescript-eslint/type-utils": "5.59.0", - "@typescript-eslint/utils": "5.59.0", - "debug": "^4.3.4", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.0.tgz", - "integrity": "sha512-qK9TZ70eJtjojSUMrrEwA9ZDQ4N0e/AuoOIgXuNBorXYcBDk397D2r5MIe1B3cok/oCtdNC5j+lUUpVB+Dpb+w==", - "dev": true, - "dependencies": { - "@typescript-eslint/scope-manager": "5.59.0", - "@typescript-eslint/types": "5.59.0", - "@typescript-eslint/typescript-estree": "5.59.0", - "debug": "^4.3.4" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.0.tgz", - "integrity": "sha512-tsoldKaMh7izN6BvkK6zRMINj4Z2d6gGhO2UsI8zGZY3XhLq1DndP3Ycjhi1JwdwPRwtLMW4EFPgpuKhbCGOvQ==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.59.0", - "@typescript-eslint/visitor-keys": "5.59.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.0.tgz", - "integrity": "sha512-d/B6VSWnZwu70kcKQSCqjcXpVH+7ABKH8P1KNn4K7j5PXXuycZTPXF44Nui0TEm6rbWGi8kc78xRgOC4n7xFgA==", - "dev": true, - "dependencies": { - "@typescript-eslint/typescript-estree": "5.59.0", - "@typescript-eslint/utils": "5.59.0", - "debug": "^4.3.4", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "*" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/types": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.0.tgz", - "integrity": "sha512-yR2h1NotF23xFFYKHZs17QJnB51J/s+ud4PYU4MqdZbzeNxpgUr05+dNeCN/bb6raslHvGdd6BFCkVhpPk/ZeA==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.0.tgz", - "integrity": "sha512-sUNnktjmI8DyGzPdZ8dRwW741zopGxltGs/SAPgGL/AAgDpiLsCFLcMNSpbfXfmnNeHmK9h3wGmCkGRGAoUZAg==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.59.0", - "@typescript-eslint/visitor-keys": "5.59.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/utils": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.0.tgz", - "integrity": "sha512-GGLFd+86drlHSvPgN/el6dRQNYYGOvRSDVydsUaQluwIW3HvbXuxyuD5JETvBt/9qGYe+lOrDk6gRrWOHb/FvA==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.0", - "@typescript-eslint/types": "5.59.0", - "@typescript-eslint/typescript-estree": "5.59.0", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.59.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.0.tgz", - "integrity": "sha512-qZ3iXxQhanchCeaExlKPV3gDQFxMUmU35xfd5eCXB6+kUw1TUAbIy2n7QIrwz9s98DQLzNWyHp61fY0da4ZcbA==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.59.0", - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.5.tgz", - "integrity": "sha512-LHY/GSAZZRpsNQH+/oHqhRQ5FT7eoULcBqgfyTB5nQHogFnK3/7QoN7dLnwSE/JkUAF0SrRuclT7ODqMFtWxxQ==", - "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.5", - "@webassemblyjs/helper-wasm-bytecode": "1.11.5" - } - }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.5.tgz", - "integrity": "sha512-1j1zTIC5EZOtCplMBG/IEwLtUojtwFVwdyVMbL/hwWqbzlQoJsWCOavrdnLkemwNoC/EOwtUFch3fuo+cbcXYQ==" - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.5.tgz", - "integrity": "sha512-L65bDPmfpY0+yFrsgz8b6LhXmbbs38OnwDCf6NpnMUYqa+ENfE5Dq9E42ny0qz/PdR0LJyq/T5YijPnU8AXEpA==" - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.5.tgz", - "integrity": "sha512-fDKo1gstwFFSfacIeH5KfwzjykIE6ldh1iH9Y/8YkAZrhmu4TctqYjSh7t0K2VyDSXOZJ1MLhht/k9IvYGcIxg==" - }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.5.tgz", - "integrity": "sha512-DhykHXM0ZABqfIGYNv93A5KKDw/+ywBFnuWybZZWcuzWHfbp21wUfRkbtz7dMGwGgT4iXjWuhRMA2Mzod6W4WA==", - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.5", - "@webassemblyjs/helper-api-error": "1.11.5", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.5.tgz", - "integrity": "sha512-oC4Qa0bNcqnjAowFn7MPCETQgDYytpsfvz4ujZz63Zu/a/v71HeCAAmZsgZ3YVKec3zSPYytG3/PrRCqbtcAvA==" - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.5.tgz", - "integrity": "sha512-uEoThA1LN2NA+K3B9wDo3yKlBfVtC6rh0i4/6hvbz071E8gTNZD/pT0MsBf7MeD6KbApMSkaAK0XeKyOZC7CIA==", - "dependencies": { - "@webassemblyjs/ast": "1.11.5", - "@webassemblyjs/helper-buffer": "1.11.5", - "@webassemblyjs/helper-wasm-bytecode": "1.11.5", - "@webassemblyjs/wasm-gen": "1.11.5" - } - }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.5.tgz", - "integrity": "sha512-37aGq6qVL8A8oPbPrSGMBcp38YZFXcHfiROflJn9jxSdSMMM5dS5P/9e2/TpaJuhE+wFrbukN2WI6Hw9MH5acg==", - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.5.tgz", - "integrity": "sha512-ajqrRSXaTJoPW+xmkfYN6l8VIeNnR4vBOTQO9HzR7IygoCcKWkICbKFbVTNMjMgMREqXEr0+2M6zukzM47ZUfQ==", - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.5.tgz", - "integrity": "sha512-WiOhulHKTZU5UPlRl53gHR8OxdGsSOxqfpqWeA2FmcwBMaoEdz6b2x2si3IwC9/fSPLfe8pBMRTHVMk5nlwnFQ==" - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.5.tgz", - "integrity": "sha512-C0p9D2fAu3Twwqvygvf42iGCQ4av8MFBLiTb+08SZ4cEdwzWx9QeAHDo1E2k+9s/0w1DM40oflJOpkZ8jW4HCQ==", - "dependencies": { - "@webassemblyjs/ast": "1.11.5", - "@webassemblyjs/helper-buffer": "1.11.5", - "@webassemblyjs/helper-wasm-bytecode": "1.11.5", - "@webassemblyjs/helper-wasm-section": "1.11.5", - "@webassemblyjs/wasm-gen": "1.11.5", - "@webassemblyjs/wasm-opt": "1.11.5", - "@webassemblyjs/wasm-parser": "1.11.5", - "@webassemblyjs/wast-printer": "1.11.5" - } - }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.5.tgz", - "integrity": "sha512-14vteRlRjxLK9eSyYFvw1K8Vv+iPdZU0Aebk3j6oB8TQiQYuO6hj9s4d7qf6f2HJr2khzvNldAFG13CgdkAIfA==", - "dependencies": { - "@webassemblyjs/ast": "1.11.5", - "@webassemblyjs/helper-wasm-bytecode": "1.11.5", - "@webassemblyjs/ieee754": "1.11.5", - "@webassemblyjs/leb128": "1.11.5", - "@webassemblyjs/utf8": "1.11.5" - } - }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.5.tgz", - "integrity": "sha512-tcKwlIXstBQgbKy1MlbDMlXaxpucn42eb17H29rawYLxm5+MsEmgPzeCP8B1Cl69hCice8LeKgZpRUAPtqYPgw==", - "dependencies": { - "@webassemblyjs/ast": "1.11.5", - "@webassemblyjs/helper-buffer": "1.11.5", - "@webassemblyjs/wasm-gen": "1.11.5", - "@webassemblyjs/wasm-parser": "1.11.5" - } - }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.5.tgz", - "integrity": "sha512-SVXUIwsLQlc8srSD7jejsfTU83g7pIGr2YYNb9oHdtldSxaOhvA5xwvIiWIfcX8PlSakgqMXsLpLfbbJ4cBYew==", - "dependencies": { - "@webassemblyjs/ast": "1.11.5", - "@webassemblyjs/helper-api-error": "1.11.5", - "@webassemblyjs/helper-wasm-bytecode": "1.11.5", - "@webassemblyjs/ieee754": "1.11.5", - "@webassemblyjs/leb128": "1.11.5", - "@webassemblyjs/utf8": "1.11.5" - } - }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.5.tgz", - "integrity": "sha512-f7Pq3wvg3GSPUPzR0F6bmI89Hdb+u9WXrSKc4v+N0aV0q6r42WoF92Jp2jEorBEBRoRNXgjp53nBniDXcqZYPA==", - "dependencies": { - "@webassemblyjs/ast": "1.11.5", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" - }, - "node_modules/acorn": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", - "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-import-assertions": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", - "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", - "peerDependencies": { - "acorn": "^8" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", - "dependencies": { - "ajv": "^8.0.0" - }, - "peerDependencies": { - "ajv": "^8.0.0" - }, - "peerDependenciesMeta": { - "ajv": { - "optional": true - } - } - }, - "node_modules/ansi-align": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", - "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", - "dev": true, - "dependencies": { - "string-width": "^4.1.0" - } - }, - "node_modules/ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "engines": { - "node": ">=6" - } - }, - "node_modules/ansi-cyan": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-cyan/-/ansi-cyan-0.1.1.tgz", - "integrity": "sha512-eCjan3AVo/SxZ0/MyIYRtkpxIu/H3xZN7URr1vXVrISxeyz8fUFz0FJziamK4sS8I+t35y4rHg1b2PklyBe/7A==", - "dev": true, - "dependencies": { - "ansi-wrap": "0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-escapes/node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-gray": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", - "integrity": "sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==", - "dev": true, - "dependencies": { - "ansi-wrap": "0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ansi-red": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", - "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", - "dev": true, - "dependencies": { - "ansi-wrap": "0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/ansi-wrap": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", - "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/append-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", - "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", - "dev": true, - "dependencies": { - "buffer-equal": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/archy": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", - "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", - "dev": true - }, - "node_modules/arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/arr-diff": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", - "integrity": "sha512-OQwDZUqYaQwyyhDJHThmzId8daf4/RFNLaeh3AevmSeZ5Y7ug4Ga/yKc6l6kTZOBW781rCj103ZuTh8GAsB3+Q==", - "dev": true, - "dependencies": { - "arr-flatten": "^1.0.1", - "array-slice": "^0.2.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-diff/node_modules/array-slice": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", - "integrity": "sha512-rlVfZW/1Ph2SNySXwR9QYkChp8EkOEiTMO5Vwx60usw04i4nWemkm9RXmQqgkQFaLHsqLuADvjp6IfgL9l2M8Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-filter": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", - "integrity": "sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==", - "dev": true, - "dependencies": { - "make-iterator": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", - "integrity": "sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==", - "dev": true, - "dependencies": { - "make-iterator": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-2.1.0.tgz", - "integrity": "sha512-t5db90jq+qdgk8aFnxEkjqta0B/GHrM1pxzuuZz2zWsOXc5nKu3t+76s/PQBA8FTcM/ipspIH9jWG4OxCBc2eA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", - "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-ify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", - "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", - "dev": true - }, - "node_modules/array-initial": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", - "integrity": "sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==", - "dev": true, - "dependencies": { - "array-slice": "^1.0.0", - "is-number": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-initial/node_modules/is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-last": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", - "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", - "dev": true, - "dependencies": { - "is-number": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-last/node_modules/is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-slice": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", - "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-sort": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", - "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", - "dev": true, - "dependencies": { - "default-compare": "^1.0.0", - "get-value": "^2.0.6", - "kind-of": "^5.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array.prototype.map": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/array.prototype.map/-/array.prototype.map-1.0.5.tgz", - "integrity": "sha512-gfaKntvwqYIuC7mLLyv2wzZIJqrRhn5PZ9EfFejSx6a78sV7iDsGpG9P+3oUPtm1Rerqm6nrKS4FYuTIvWfo3g==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-array-method-boxes-properly": "^1.0.0", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ast-types": { - "version": "0.13.4", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", - "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", - "dev": true, - "dependencies": { - "tslib": "^2.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/async-done": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", - "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.2", - "process-nextick-args": "^2.0.0", - "stream-exhaust": "^1.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/async-each": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", - "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ] - }, - "node_modules/async-retry": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", - "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", - "dev": true, - "dependencies": { - "retry": "0.13.1" - } - }, - "node_modules/async-settle": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", - "integrity": "sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==", - "dev": true, - "dependencies": { - "async-done": "^1.2.2" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "dev": true, - "bin": { - "atob": "bin/atob.js" - }, - "engines": { - "node": ">= 4.5.0" - } - }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/babel-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", - "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", - "dev": true, - "dependencies": { - "@jest/transform": "^29.5.0", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.5.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.8.0" - } - }, - "node_modules/babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-plugin-jest-hoist": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", - "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", - "dev": true, - "dependencies": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.1.14", - "@types/babel__traverse": "^7.0.6" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", - "dev": true, - "dependencies": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/babel-preset-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", - "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", - "dev": true, - "dependencies": { - "babel-plugin-jest-hoist": "^29.5.0", - "babel-preset-current-node-syntax": "^1.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/bach": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", - "integrity": "sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==", - "dev": true, - "dependencies": { - "arr-filter": "^1.1.1", - "arr-flatten": "^1.0.1", - "arr-map": "^2.0.0", - "array-each": "^1.0.0", - "array-initial": "^1.0.0", - "array-last": "^1.1.1", - "async-done": "^1.2.2", - "async-settle": "^1.0.0", - "now-and-later": "^2.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "node_modules/base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dev": true, - "dependencies": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/before-after-hook": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", - "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", - "dev": true - }, - "node_modules/big-integer": { - "version": "1.6.51", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", - "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "engines": { - "node": ">=8" - } - }, - "node_modules/bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "dev": true, - "optional": true, - "dependencies": { - "file-uri-to-path": "1.0.0" - } - }, - "node_modules/bindings/node_modules/file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "dev": true, - "optional": true - }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/boxen": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-7.0.2.tgz", - "integrity": "sha512-1Z4UJabXUP1/R9rLpoU3O2lEMnG3pPLAs/ZD2lF3t2q7qD5lM8rqbtnvtvm4N0wEyNlE+9yZVTVAGmd1V5jabg==", - "dev": true, - "dependencies": { - "ansi-align": "^3.0.1", - "camelcase": "^7.0.0", - "chalk": "^5.0.1", - "cli-boxes": "^3.0.0", - "string-width": "^5.1.2", - "type-fest": "^2.13.0", - "widest-line": "^4.0.1", - "wrap-ansi": "^8.0.1" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/boxen/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/boxen/node_modules/camelcase": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-7.0.1.tgz", - "integrity": "sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==", - "dev": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/chalk": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", - "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/boxen/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/boxen/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/boxen/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/bplist-parser": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", - "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", - "dev": true, - "dependencies": { - "big-integer": "^1.6.44" - }, - "engines": { - "node": ">= 5.10.0" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/bs-logger": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", - "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", - "dev": true, - "dependencies": { - "fast-json-stable-stringify": "2.x" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "dev": true, - "dependencies": { - "node-int64": "^0.4.0" - } - }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/buffer-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", - "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", - "dev": true, - "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - }, - "node_modules/bundle-name": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", - "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", - "dev": true, - "dependencies": { - "run-applescript": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "dev": true, - "dependencies": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cacheable-lookup": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", - "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", - "dev": true, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/cacheable-request": { - "version": "10.2.10", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.10.tgz", - "integrity": "sha512-v6WB+Epm/qO4Hdlio/sfUn69r5Shgh39SsE9DSd4bIezP0mblOlObI+I0kUEM7J0JFc+I7pSeMeYaOYtX1N/VQ==", - "dev": true, - "dependencies": { - "@types/http-cache-semantics": "^4.0.1", - "get-stream": "^6.0.1", - "http-cache-semantics": "^4.1.1", - "keyv": "^4.5.2", - "mimic-response": "^4.0.0", - "normalize-url": "^8.0.0", - "responselike": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase-keys": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", - "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", - "dev": true, - "dependencies": { - "camelcase": "^5.3.1", - "map-obj": "^4.0.0", - "quick-lru": "^4.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001482", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001482.tgz", - "integrity": "sha512-F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", - "engines": { - "node": ">=6.0" - } - }, - "node_modules/ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "engines": { - "node": ">=8" - } - }, - "node_modules/cjs-module-lexer": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", - "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", - "dev": true - }, - "node_modules/class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "dev": true, - "dependencies": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/cli-boxes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", - "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dependencies": { - "restore-cursor": "^3.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-spinners": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.0.tgz", - "integrity": "sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==", - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-table3": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", - "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", - "dependencies": { - "string-width": "^4.2.0" - }, - "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" - } - }, - "node_modules/cli-truncate": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", - "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", - "dev": true, - "dependencies": { - "slice-ansi": "^5.0.0", - "string-width": "^5.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-truncate/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/cli-truncate/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/cli-truncate/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-truncate/node_modules/strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "engines": { - "node": ">= 10" - } - }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", - "dev": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/clone-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", - "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/clone-stats": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", - "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", - "dev": true - }, - "node_modules/cloneable-readable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", - "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", - "dev": true, - "dependencies": { - "inherits": "^2.0.1", - "process-nextick-args": "^2.0.0", - "readable-stream": "^2.3.5" - } - }, - "node_modules/co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - "dev": true, - "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" - } - }, - "node_modules/code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", - "dev": true - }, - "node_modules/collection-map": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", - "integrity": "sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==", - "dev": true, - "dependencies": { - "arr-map": "^2.0.2", - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", - "dev": true, - "dependencies": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true, - "bin": { - "color-support": "bin.js" - } - }, - "node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "dev": true - }, - "node_modules/commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", - "engines": { - "node": ">= 6" - } - }, - "node_modules/compare-func": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", - "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", - "dev": true, - "dependencies": { - "array-ify": "^1.0.0", - "dot-prop": "^5.1.0" - } - }, - "node_modules/component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "dev": true - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "dev": true, - "engines": [ - "node >= 0.8" - ], - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "node_modules/config-chain": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", - "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", - "dev": true, - "dependencies": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" - } - }, - "node_modules/configstore": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz", - "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==", - "dev": true, - "dependencies": { - "dot-prop": "^6.0.1", - "graceful-fs": "^4.2.6", - "unique-string": "^3.0.0", - "write-file-atomic": "^3.0.3", - "xdg-basedir": "^5.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/yeoman/configstore?sponsor=1" - } - }, - "node_modules/configstore/node_modules/dot-prop": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz", - "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==", - "dev": true, - "dependencies": { - "is-obj": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/configstore/node_modules/write-file-atomic": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - }, - "node_modules/conventional-changelog-angular": { - "version": "5.0.13", - "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz", - "integrity": "sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==", - "dev": true, - "dependencies": { - "compare-func": "^2.0.0", - "q": "^1.5.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/conventional-commits-parser": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz", - "integrity": "sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==", - "dev": true, - "dependencies": { - "is-text-path": "^1.0.1", - "JSONStream": "^1.0.4", - "lodash": "^4.17.15", - "meow": "^8.0.0", - "split2": "^3.0.0", - "through2": "^4.0.0" - }, - "bin": { - "conventional-commits-parser": "cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - }, - "node_modules/copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/copy-props": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", - "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", - "dev": true, - "dependencies": { - "each-props": "^1.3.2", - "is-plain-object": "^5.0.0" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "node_modules/cosmiconfig": { - "version": "8.1.3", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.1.3.tgz", - "integrity": "sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==", - "dev": true, - "dependencies": { - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" - } - }, - "node_modules/cosmiconfig-typescript-loader": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.3.0.tgz", - "integrity": "sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==", - "dev": true, - "engines": { - "node": ">=12", - "npm": ">=6" - }, - "peerDependencies": { - "@types/node": "*", - "cosmiconfig": ">=7", - "ts-node": ">=10", - "typescript": ">=3" - } - }, - "node_modules/create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/crypto-random-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", - "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", - "dev": true, - "dependencies": { - "type-fest": "^1.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/crypto-random-string/node_modules/type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", - "dev": true, - "dependencies": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" - } - }, - "node_modules/dargs": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz", - "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/data-uri-to-buffer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", - "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", - "dev": true, - "engines": { - "node": ">= 12" - } - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decamelize-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", - "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", - "dev": true, - "dependencies": { - "decamelize": "^1.1.0", - "map-obj": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/decamelize-keys/node_modules/map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decode-uri-component": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", - "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", - "dev": true, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "dev": true, - "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/decompress-response/node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "dev": true - }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "dev": true, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/default-browser": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", - "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", - "dev": true, - "dependencies": { - "bundle-name": "^3.0.0", - "default-browser-id": "^3.0.0", - "execa": "^7.1.1", - "titleize": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser-id": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", - "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", - "dev": true, - "dependencies": { - "bplist-parser": "^0.2.0", - "untildify": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/execa": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", - "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/default-browser/node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "dev": true, - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/default-browser/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dev": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-compare": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", - "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", - "dev": true, - "dependencies": { - "kind-of": "^5.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/default-resolution": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", - "integrity": "sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", - "dependencies": { - "clone": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/defaults/node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/define-lazy-prop": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", - "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/define-properties": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", - "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", - "dev": true, - "dependencies": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/degenerator": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-3.0.4.tgz", - "integrity": "sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw==", - "dev": true, - "dependencies": { - "ast-types": "^0.13.2", - "escodegen": "^1.8.1", - "esprima": "^4.0.0", - "vm2": "^3.9.17" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/delete-empty": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/delete-empty/-/delete-empty-3.0.0.tgz", - "integrity": "sha512-ZUyiwo76W+DYnKsL3Kim6M/UOavPdBJgDYWOmuQhYaZvJH0AXAHbUNyEDtRbBra8wqqr686+63/0azfEk1ebUQ==", - "dev": true, - "dependencies": { - "ansi-colors": "^4.1.0", - "minimist": "^1.2.0", - "path-starts-with": "^2.0.0", - "rimraf": "^2.6.2" - }, - "bin": { - "delete-empty": "bin/cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/delete-empty/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/deprecation": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", - "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", - "dev": true - }, - "node_modules/detect-file": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", - "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true, - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/diff-sequences": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", - "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", - "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/dot-prop": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", - "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", - "dev": true, - "dependencies": { - "is-obj": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } - }, - "node_modules/each-props": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", - "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", - "dev": true, - "dependencies": { - "is-plain-object": "^2.0.1", - "object.defaults": "^1.1.0" - } - }, - "node_modules/each-props/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, - "node_modules/electron-to-chromium": { - "version": "1.4.380", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.380.tgz", - "integrity": "sha512-XKGdI4pWM78eLH2cbXJHiBnWUwFSzZM7XujsB6stDiGu9AeSqziedP6amNLpJzE3i0rLTcfAwdCTs5ecP5yeSg==" - }, - "node_modules/emittery": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", - "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" - } - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/enhanced-resolve": { - "version": "5.13.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.13.0.tgz", - "integrity": "sha512-eyV8f0y1+bzyfh8xAwW/WTSZpLbjhqc4ne9eGSH4Zo2ejdyiNG9pU6mf9DG8a7+Auk6MFTlNOT4Y2y/9k8GKVg==", - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/es-abstract": { - "version": "1.21.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", - "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", - "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.2.0", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.7", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-array-method-boxes-properly": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", - "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", - "dev": true - }, - "node_modules/es-get-iterator": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "is-arguments": "^1.1.1", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.7", - "isarray": "^2.0.5", - "stop-iteration-iterator": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-get-iterator/node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "node_modules/es-module-lexer": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", - "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es5-ext": { - "version": "0.10.62", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", - "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.3", - "next-tick": "^1.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", - "dev": true, - "dependencies": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" - } - }, - "node_modules/es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", - "dev": true, - "dependencies": { - "d": "^1.0.1", - "ext": "^1.1.2" - } - }, - "node_modules/es6-weak-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", - "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", - "dev": true, - "dependencies": { - "d": "1", - "es5-ext": "^0.10.46", - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.1" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-goat": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-4.0.0.tgz", - "integrity": "sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/escodegen": { - "version": "1.14.3", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", - "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", - "dev": true, - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=4.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/escodegen/node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "dev": true, - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/escodegen/node_modules/optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "dev": true, - "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/escodegen/node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/escodegen/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/escodegen/node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "dev": true, - "dependencies": { - "prelude-ls": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/eslint": { - "version": "8.39.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.39.0.tgz", - "integrity": "sha512-mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.4.0", - "@eslint/eslintrc": "^2.0.2", - "@eslint/js": "8.39.0", - "@humanwhocodes/config-array": "^0.11.8", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.0", - "eslint-visitor-keys": "^3.4.0", - "espree": "^9.5.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-sdsl": "^4.1.4", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-prettier": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz", - "integrity": "sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==", - "dev": true, - "bin": { - "eslint-config-prettier": "bin/cli.js" - }, - "peerDependencies": { - "eslint": ">=7.0.0" - } - }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz", - "integrity": "sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/eslint/node_modules/eslint-scope": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", - "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/eslint/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/eslint/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/espree": { - "version": "9.5.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.1.tgz", - "integrity": "sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==", - "dev": true, - "dependencies": { - "acorn": "^8.8.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esquery/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", - "dev": true, - "dependencies": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/expand-brackets/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/expand-tilde": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", - "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", - "dev": true, - "dependencies": { - "homedir-polyfill": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", - "dev": true, - "dependencies": { - "@jest/expect-utils": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/ext": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", - "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", - "dev": true, - "dependencies": { - "type": "^2.7.2" - } - }, - "node_modules/ext/node_modules/type": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", - "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", - "dev": true - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "node_modules/extend-shallow": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-1.1.4.tgz", - "integrity": "sha512-L7AGmkO6jhDkEBBGWlLtftA80Xq8DipnrRPr0pyi7GQLXkaq9JYA4xF4z6qnadIC6euiTDKco0cGSU9muw+WTw==", - "dev": true, - "dependencies": { - "kind-of": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extend-shallow/node_modules/kind-of": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz", - "integrity": "sha512-aUH6ElPnMGon2/YkxRIigV32MOpTVcoXQ1Oo8aYn40s+sJ3j+0gFZsT8HKDcxNy7Fi9zuquWtGaGAahOdv5p/g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "dependencies": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fancy-log": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", - "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", - "dev": true, - "dependencies": { - "ansi-gray": "^0.1.1", - "color-support": "^1.1.3", - "parse-node-version": "^1.0.0", - "time-stamp": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", - "dev": true, - "dependencies": { - "bser": "2.1.1" - } - }, - "node_modules/fetch-blob": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", - "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/jimmywarting" - }, - { - "type": "paypal", - "url": "https://paypal.me/jimmywarting" - } - ], - "dependencies": { - "node-domexception": "^1.0.0", - "web-streams-polyfill": "^3.0.3" - }, - "engines": { - "node": "^12.20 || >= 14.13" - } - }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/figures/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/file-uri-to-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-2.0.0.tgz", - "integrity": "sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/findup-sync": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", - "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", - "dev": true, - "dependencies": { - "detect-file": "^1.0.0", - "is-glob": "^4.0.0", - "micromatch": "^3.0.4", - "resolve-dir": "^1.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/findup-sync/node_modules/arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/braces/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/braces/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "dev": true, - "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/fill-range/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/fill-range/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/findup-sync/node_modules/to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "dev": true, - "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fined": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", - "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", - "dev": true, - "dependencies": { - "expand-tilde": "^2.0.2", - "is-plain-object": "^2.0.3", - "object.defaults": "^1.1.0", - "object.pick": "^1.2.0", - "parse-filepath": "^1.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/fined/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/flagged-respawn": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", - "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "dev": true, - "dependencies": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flat-cache/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true - }, - "node_modules/flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" - } - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/for-own": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", - "dev": true, - "dependencies": { - "for-in": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fork-ts-checker-webpack-plugin": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-8.0.0.tgz", - "integrity": "sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==", - "dependencies": { - "@babel/code-frame": "^7.16.7", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cosmiconfig": "^7.0.1", - "deepmerge": "^4.2.2", - "fs-extra": "^10.0.0", - "memfs": "^3.4.1", - "minimatch": "^3.0.4", - "node-abort-controller": "^3.0.1", - "schema-utils": "^3.1.1", - "semver": "^7.3.5", - "tapable": "^2.2.1" - }, - "engines": { - "node": ">=12.13.0", - "yarn": ">=1.0.0" - }, - "peerDependencies": { - "typescript": ">3.6.0", - "webpack": "^5.11.0" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "engines": { - "node": ">= 6" - } - }, - "node_modules/form-data-encoder": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", - "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", - "dev": true, - "engines": { - "node": ">= 14.17" - } - }, - "node_modules/formdata-polyfill": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", - "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", - "dev": true, - "dependencies": { - "fetch-blob": "^3.1.2" - }, - "engines": { - "node": ">=12.20.0" - } - }, - "node_modules/fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", - "dev": true, - "dependencies": { - "map-cache": "^0.2.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/fs-mkdirp-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", - "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.11", - "through2": "^2.0.3" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/fs-mkdirp-stream/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/fs-monkey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", - "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/ftp": { - "version": "0.3.10", - "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz", - "integrity": "sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==", - "dev": true, - "dependencies": { - "readable-stream": "1.1.x", - "xregexp": "2.0.0" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/ftp/node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", - "dev": true - }, - "node_modules/ftp/node_modules/readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "node_modules/ftp/node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", - "dev": true - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "node_modules/function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true, - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", - "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "dev": true, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-uri": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-3.0.2.tgz", - "integrity": "sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==", - "dev": true, - "dependencies": { - "@tootallnate/once": "1", - "data-uri-to-buffer": "3", - "debug": "4", - "file-uri-to-path": "2", - "fs-extra": "^8.1.0", - "ftp": "^0.3.10" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/get-uri/node_modules/data-uri-to-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", - "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/get-uri/node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/get-uri/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "dev": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/get-uri/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/git-raw-commits": { - "version": "2.0.11", - "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz", - "integrity": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==", - "dev": true, - "dependencies": { - "dargs": "^7.0.0", - "lodash": "^4.17.15", - "meow": "^8.0.0", - "split2": "^3.0.0", - "through2": "^4.0.0" - }, - "bin": { - "git-raw-commits": "cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/git-up": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz", - "integrity": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==", - "dev": true, - "dependencies": { - "is-ssh": "^1.4.0", - "parse-url": "^8.1.0" - } - }, - "node_modules/git-url-parse": { - "version": "13.1.0", - "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-13.1.0.tgz", - "integrity": "sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==", - "dev": true, - "dependencies": { - "git-up": "^7.0.0" - } - }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/glob-stream": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", - "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", - "dev": true, - "dependencies": { - "extend": "^3.0.0", - "glob": "^7.1.1", - "glob-parent": "^3.1.0", - "is-negated-glob": "^1.0.0", - "ordered-read-streams": "^1.0.0", - "pumpify": "^1.3.5", - "readable-stream": "^2.1.5", - "remove-trailing-separator": "^1.0.1", - "to-absolute-glob": "^2.0.0", - "unique-stream": "^2.0.2" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/glob-stream/node_modules/glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "dev": true, - "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - } - }, - "node_modules/glob-stream/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "node_modules/glob-watcher": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", - "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", - "dev": true, - "dependencies": { - "anymatch": "^2.0.0", - "async-done": "^1.2.0", - "chokidar": "^2.0.0", - "is-negated-glob": "^1.0.0", - "just-debounce": "^1.0.0", - "normalize-path": "^3.0.0", - "object.defaults": "^1.1.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/glob-watcher/node_modules/anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "dependencies": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "node_modules/glob-watcher/node_modules/anymatch/node_modules/normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "dev": true, - "dependencies": { - "remove-trailing-separator": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher/node_modules/arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher/node_modules/binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher/node_modules/braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher/node_modules/chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", - "dev": true, - "dependencies": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - }, - "optionalDependencies": { - "fsevents": "^1.2.7" - } - }, - "node_modules/glob-watcher/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher/node_modules/fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "dev": true, - "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher/node_modules/fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "deprecated": "The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "dependencies": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - }, - "engines": { - "node": ">= 4.0" - } - }, - "node_modules/glob-watcher/node_modules/glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "dev": true, - "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - } - }, - "node_modules/glob-watcher/node_modules/glob-parent/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher/node_modules/is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", - "dev": true, - "dependencies": { - "binary-extensions": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher/node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher/node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher/node_modules/micromatch/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher/node_modules/micromatch/node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher/node_modules/micromatch/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-watcher/node_modules/readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/glob-watcher/node_modules/to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "dev": true, - "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/global-dirs": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", - "integrity": "sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==", - "dev": true, - "dependencies": { - "ini": "^1.3.4" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", - "dev": true, - "dependencies": { - "global-prefix": "^1.0.1", - "is-windows": "^1.0.1", - "resolve-dir": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/global-prefix": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", - "dev": true, - "dependencies": { - "expand-tilde": "^2.0.2", - "homedir-polyfill": "^1.0.1", - "ini": "^1.3.4", - "is-windows": "^1.0.1", - "which": "^1.2.14" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, - "dependencies": { - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/glogg": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", - "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", - "dev": true, - "dependencies": { - "sparkles": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/got": { - "version": "12.6.0", - "resolved": "https://registry.npmjs.org/got/-/got-12.6.0.tgz", - "integrity": "sha512-WTcaQ963xV97MN3x0/CbAriXFZcXCfgxVp91I+Ze6pawQOa7SgzwSx2zIJJsX+kTajMnVs0xcFD1TxZKFqhdnQ==", - "dev": true, - "dependencies": { - "@sindresorhus/is": "^5.2.0", - "@szmarczak/http-timer": "^5.0.1", - "cacheable-lookup": "^7.0.0", - "cacheable-request": "^10.2.8", - "decompress-response": "^6.0.0", - "form-data-encoder": "^2.1.2", - "get-stream": "^6.0.1", - "http2-wrapper": "^2.1.10", - "lowercase-keys": "^3.0.0", - "p-cancelable": "^3.0.0", - "responselike": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "node_modules/grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true - }, - "node_modules/gulp": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", - "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", - "dev": true, - "dependencies": { - "glob-watcher": "^5.0.3", - "gulp-cli": "^2.2.0", - "undertaker": "^1.2.1", - "vinyl-fs": "^3.0.0" - }, - "bin": { - "gulp": "bin/gulp.js" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/gulp-clean": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/gulp-clean/-/gulp-clean-0.4.0.tgz", - "integrity": "sha512-DARK8rNMo4lHOFLGTiHEJdf19GuoBDHqGUaypz+fOhrvOs3iFO7ntdYtdpNxv+AzSJBx/JfypF0yEj9ks1IStQ==", - "dev": true, - "dependencies": { - "fancy-log": "^1.3.2", - "plugin-error": "^0.1.2", - "rimraf": "^2.6.2", - "through2": "^2.0.3", - "vinyl": "^2.1.0" - }, - "engines": { - "node": ">=0.9" - } - }, - "node_modules/gulp-clean/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/gulp-clean/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/gulp-cli": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", - "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", - "dev": true, - "dependencies": { - "ansi-colors": "^1.0.1", - "archy": "^1.0.0", - "array-sort": "^1.0.0", - "color-support": "^1.1.3", - "concat-stream": "^1.6.0", - "copy-props": "^2.0.1", - "fancy-log": "^1.3.2", - "gulplog": "^1.0.0", - "interpret": "^1.4.0", - "isobject": "^3.0.1", - "liftoff": "^3.1.0", - "matchdep": "^2.0.0", - "mute-stdout": "^1.0.0", - "pretty-hrtime": "^1.0.0", - "replace-homedir": "^1.0.0", - "semver-greatest-satisfied-range": "^1.1.0", - "v8flags": "^3.2.0", - "yargs": "^7.1.0" - }, - "bin": { - "gulp": "bin/gulp.js" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/gulp-cli/node_modules/ansi-colors": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", - "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", - "dev": true, - "dependencies": { - "ansi-wrap": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", - "dev": true, - "dependencies": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" - } - }, - "node_modules/gulp-cli/node_modules/find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", - "dev": true, - "dependencies": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", - "dev": true - }, - "node_modules/gulp-cli/node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/gulp-cli/node_modules/is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", - "dev": true, - "dependencies": { - "number-is-nan": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/gulp-cli/node_modules/path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", - "dev": true, - "dependencies": { - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", - "dev": true, - "dependencies": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", - "dev": true, - "dependencies": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/gulp-cli/node_modules/string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", - "dev": true, - "dependencies": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "dev": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", - "dev": true, - "dependencies": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/gulp-cli/node_modules/y18n": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", - "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", - "dev": true - }, - "node_modules/gulp-cli/node_modules/yargs": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz", - "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", - "dev": true, - "dependencies": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^5.0.1" - } - }, - "node_modules/gulp-cli/node_modules/yargs-parser": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", - "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", - "dev": true, - "dependencies": { - "camelcase": "^3.0.0", - "object.assign": "^4.1.0" - } - }, - "node_modules/gulplog": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", - "integrity": "sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==", - "dev": true, - "dependencies": { - "glogg": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/hard-rejection": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", - "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", - "dev": true, - "dependencies": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", - "dev": true, - "dependencies": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values/node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values/node_modules/kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-yarn": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-3.0.0.tgz", - "integrity": "sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/homedir-polyfill": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", - "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", - "dev": true, - "dependencies": { - "parse-passwd": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/hosted-git-info/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/hosted-git-info/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true - }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "dev": true, - "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/http2-wrapper": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.0.tgz", - "integrity": "sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==", - "dev": true, - "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.2.0" - }, - "engines": { - "node": ">=10.19.0" - } - }, - "node_modules/http2-wrapper/node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dev": true, - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/husky": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", - "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", - "dev": true, - "bin": { - "husky": "lib/bin.js" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/typicode" - } - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-fresh/node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "engines": { - "node": ">=4" - } - }, - "node_modules/import-lazy": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", - "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", - "dev": true, - "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, - "node_modules/inquirer": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", - "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", - "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/inquirer/node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/internal-slot": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", - "dev": true - }, - "node_modules/is-absolute": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", - "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", - "dev": true, - "dependencies": { - "is-relative": "^1.0.0", - "is-windows": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-ci": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", - "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", - "dev": true, - "dependencies": { - "ci-info": "^3.2.0" - }, - "bin": { - "is-ci": "bin.js" - } - }, - "node_modules/is-core-module": { - "version": "2.12.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", - "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-descriptor/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extendable/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", - "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-inside-container": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", - "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", - "dev": true, - "dependencies": { - "is-docker": "^3.0.0" - }, - "bin": { - "is-inside-container": "cli.js" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-installed-globally": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", - "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", - "dev": true, - "dependencies": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-installed-globally/node_modules/global-dirs": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", - "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", - "dev": true, - "dependencies": { - "ini": "2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-installed-globally/node_modules/ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-negated-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", - "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-npm": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-6.0.0.tgz", - "integrity": "sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-relative": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", - "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", - "dev": true, - "dependencies": { - "is-unc-path": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-ssh": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", - "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", - "dev": true, - "dependencies": { - "protocols": "^2.0.1" - } - }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-text-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", - "integrity": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==", - "dev": true, - "dependencies": { - "text-extensions": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true - }, - "node_modules/is-unc-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", - "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", - "dev": true, - "dependencies": { - "unc-path-regex": "^0.1.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", - "dev": true - }, - "node_modules/is-valid-glob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", - "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-wsl/node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-yarn-global": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.4.1.tgz", - "integrity": "sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/issue-parser": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-6.0.0.tgz", - "integrity": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==", - "dev": true, - "dependencies": { - "lodash.capitalize": "^4.2.1", - "lodash.escaperegexp": "^4.1.2", - "lodash.isplainobject": "^4.0.6", - "lodash.isstring": "^4.0.1", - "lodash.uniqby": "^4.7.0" - }, - "engines": { - "node": ">=10.13" - } - }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", - "dev": true, - "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", - "dev": true, - "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", - "dev": true, - "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-lib-source-maps/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/istanbul-reports": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", - "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", - "dev": true, - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/iterate-iterator": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/iterate-iterator/-/iterate-iterator-1.0.2.tgz", - "integrity": "sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/iterate-value": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/iterate-value/-/iterate-value-1.0.2.tgz", - "integrity": "sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==", - "dev": true, - "dependencies": { - "es-get-iterator": "^1.0.2", - "iterate-iterator": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", - "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", - "dev": true, - "dependencies": { - "@jest/core": "^29.5.0", - "@jest/types": "^29.5.0", - "import-local": "^3.0.2", - "jest-cli": "^29.5.0" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/jest-changed-files": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", - "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", - "dev": true, - "dependencies": { - "execa": "^5.0.0", - "p-limit": "^3.1.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-circus": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", - "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.5.0", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "p-limit": "^3.1.0", - "pretty-format": "^29.5.0", - "pure-rand": "^6.0.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-cli": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", - "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", - "dev": true, - "dependencies": { - "@jest/core": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "prompts": "^2.0.1", - "yargs": "^17.3.1" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/jest-config": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", - "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", - "dev": true, - "dependencies": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.5.0", - "@jest/types": "^29.5.0", - "babel-jest": "^29.5.0", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-circus": "^29.5.0", - "jest-environment-node": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@types/node": "*", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/jest-diff": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", - "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^29.4.3", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-docblock": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", - "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", - "dev": true, - "dependencies": { - "detect-newline": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-each": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", - "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", - "dev": true, - "dependencies": { - "@jest/types": "^29.5.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "jest-util": "^29.5.0", - "pretty-format": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-environment-node": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", - "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-get-type": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", - "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", - "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-haste-map": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", - "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", - "dev": true, - "dependencies": { - "@jest/types": "^29.5.0", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", - "micromatch": "^4.0.4", - "walker": "^1.0.8" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" - } - }, - "node_modules/jest-leak-detector": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", - "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", - "dev": true, - "dependencies": { - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-matcher-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", - "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-message-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", - "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.5.0", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-mock": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", - "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", - "dev": true, - "dependencies": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-util": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", - "dev": true, - "engines": { - "node": ">=6" - }, - "peerDependencies": { - "jest-resolve": "*" - }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } - } - }, - "node_modules/jest-regex-util": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", - "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", - "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-resolve": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", - "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "resolve": "^1.20.0", - "resolve.exports": "^2.0.0", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-resolve-dependencies": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", - "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", - "dev": true, - "dependencies": { - "jest-regex-util": "^29.4.3", - "jest-snapshot": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-runner": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", - "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", - "dev": true, - "dependencies": { - "@jest/console": "^29.5.0", - "@jest/environment": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.3", - "jest-environment-node": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-leak-detector": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-resolve": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-util": "^29.5.0", - "jest-watcher": "^29.5.0", - "jest-worker": "^29.5.0", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-runner/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jest-runner/node_modules/source-map-support": { - "version": "0.5.13", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", - "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/jest-runtime": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", - "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/globals": "^29.5.0", - "@jest/source-map": "^29.4.3", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-snapshot": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", - "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", - "dev": true, - "dependencies": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-jsx": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^29.5.0", - "graceful-fs": "^4.2.9", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "natural-compare": "^1.4.0", - "pretty-format": "^29.5.0", - "semver": "^7.3.5" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", - "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", - "dev": true, - "dependencies": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-validate": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", - "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", - "dev": true, - "dependencies": { - "@jest/types": "^29.5.0", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "leven": "^3.1.0", - "pretty-format": "^29.5.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-validate/node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-watcher": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", - "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", - "dev": true, - "dependencies": { - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "jest-util": "^29.5.0", - "string-length": "^4.0.1" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-worker": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", - "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", - "dev": true, - "dependencies": { - "@types/node": "*", - "jest-util": "^29.5.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/js-sdsl": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz", - "integrity": "sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/js-sdsl" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - }, - "node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsonparse": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", - "dev": true, - "engines": [ - "node >= 0.2.0" - ] - }, - "node_modules/JSONStream": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", - "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", - "dev": true, - "dependencies": { - "jsonparse": "^1.2.0", - "through": ">=2.2.7 <3" - }, - "bin": { - "JSONStream": "bin.js" - }, - "engines": { - "node": "*" - } - }, - "node_modules/just-debounce": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", - "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==", - "dev": true - }, - "node_modules/keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", - "dev": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/last-run": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", - "integrity": "sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==", - "dev": true, - "dependencies": { - "default-resolution": "^2.0.0", - "es6-weak-map": "^2.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/latest-version": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-7.0.0.tgz", - "integrity": "sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==", - "dev": true, - "dependencies": { - "package-json": "^8.1.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lazystream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", - "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", - "dev": true, - "dependencies": { - "readable-stream": "^2.0.5" - }, - "engines": { - "node": ">= 0.6.3" - } - }, - "node_modules/lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", - "dev": true, - "dependencies": { - "invert-kv": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/lead": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", - "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", - "dev": true, - "dependencies": { - "flush-write-stream": "^1.0.2" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/liftoff": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", - "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", - "dev": true, - "dependencies": { - "extend": "^3.0.0", - "findup-sync": "^3.0.0", - "fined": "^1.0.1", - "flagged-respawn": "^1.0.0", - "is-plain-object": "^2.0.4", - "object.map": "^1.0.0", - "rechoir": "^0.6.2", - "resolve": "^1.1.7" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/liftoff/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - }, - "node_modules/lint-staged": { - "version": "13.2.1", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.2.1.tgz", - "integrity": "sha512-8gfzinVXoPfga5Dz/ZOn8I2GOhf81Wvs+KwbEXQn/oWZAvCVS2PivrXfVbFJc93zD16uC0neS47RXHIjXKYZQw==", - "dev": true, - "dependencies": { - "chalk": "5.2.0", - "cli-truncate": "^3.1.0", - "commander": "^10.0.0", - "debug": "^4.3.4", - "execa": "^7.0.0", - "lilconfig": "2.1.0", - "listr2": "^5.0.7", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "object-inspect": "^1.12.3", - "pidtree": "^0.6.0", - "string-argv": "^0.3.1", - "yaml": "^2.2.1" - }, - "bin": { - "lint-staged": "bin/lint-staged.js" - }, - "engines": { - "node": "^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/lint-staged" - } - }, - "node_modules/lint-staged/node_modules/chalk": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", - "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", - "dev": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/lint-staged/node_modules/execa": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", - "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "dev": true, - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/lint-staged/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dev": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/listr2": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-5.0.8.tgz", - "integrity": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==", - "dev": true, - "dependencies": { - "cli-truncate": "^2.1.0", - "colorette": "^2.0.19", - "log-update": "^4.0.0", - "p-map": "^4.0.0", - "rfdc": "^1.3.0", - "rxjs": "^7.8.0", - "through": "^2.3.8", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": "^14.13.1 || >=16.0.0" - }, - "peerDependencies": { - "enquirer": ">= 2.3.0 < 3" - }, - "peerDependenciesMeta": { - "enquirer": { - "optional": true - } - } - }, - "node_modules/listr2/node_modules/cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", - "dev": true, - "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/listr2/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/listr2/node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "dev": true, - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/listr2/node_modules/slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/load-json-file/node_modules/parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", - "dev": true, - "dependencies": { - "error-ex": "^1.2.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/load-json-file/node_modules/strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", - "dev": true, - "dependencies": { - "is-utf8": "^0.2.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "engines": { - "node": ">=6.11.5" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "dev": true - }, - "node_modules/lodash.capitalize": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==", - "dev": true - }, - "node_modules/lodash.escaperegexp": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", - "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==", - "dev": true - }, - "node_modules/lodash.isfunction": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz", - "integrity": "sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==", - "dev": true - }, - "node_modules/lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", - "dev": true - }, - "node_modules/lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", - "dev": true - }, - "node_modules/lodash.kebabcase": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", - "integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==", - "dev": true - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", - "dev": true - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lodash.mergewith": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", - "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==", - "dev": true - }, - "node_modules/lodash.snakecase": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", - "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==", - "dev": true - }, - "node_modules/lodash.startcase": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.startcase/-/lodash.startcase-4.4.0.tgz", - "integrity": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==", - "dev": true - }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", - "dev": true - }, - "node_modules/lodash.uniqby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz", - "integrity": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==", - "dev": true - }, - "node_modules/lodash.upperfirst": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==", - "dev": true - }, - "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-update": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", - "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", - "dev": true, - "dependencies": { - "ansi-escapes": "^4.3.0", - "cli-cursor": "^3.1.0", - "slice-ansi": "^4.0.0", - "wrap-ansi": "^6.2.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-update/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/log-update/node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/log-update/node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/lowercase-keys": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", - "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/macos-release": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/macos-release/-/macos-release-2.5.1.tgz", - "integrity": "sha512-DXqXhEM7gW59OjZO8NIjBCz9AQ1BEMrfiOAl4AYByHCtVHRF4KoGNO8mqQeM8lRCtQe/UnJ4imO/d2HdkKsd+A==", - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/magic-string": { - "version": "0.29.0", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.29.0.tgz", - "integrity": "sha512-WcfidHrDjMY+eLjlU+8OvwREqHwpgCeKVBUpQ3OhYYuvfaYCUgcbuBzappNzZvg/v8onU3oQj+BYpkOJe9Iw4Q==", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.13" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "node_modules/make-iterator": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", - "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", - "dev": true, - "dependencies": { - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/make-iterator/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", - "dev": true, - "dependencies": { - "tmpl": "1.0.5" - } - }, - "node_modules/map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/map-obj": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", - "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", - "dev": true, - "dependencies": { - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", - "integrity": "sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==", - "dev": true, - "dependencies": { - "findup-sync": "^2.0.0", - "micromatch": "^3.0.4", - "resolve": "^1.4.0", - "stack-trace": "0.0.10" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/matchdep/node_modules/arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/braces/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/braces/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "dev": true, - "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/fill-range/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/fill-range/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/findup-sync": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", - "integrity": "sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==", - "dev": true, - "dependencies": { - "detect-file": "^1.0.0", - "is-glob": "^3.1.0", - "micromatch": "^3.0.4", - "resolve-dir": "^1.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/matchdep/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/matchdep/node_modules/to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "dev": true, - "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/memfs": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.1.tgz", - "integrity": "sha512-UWbFJKvj5k+nETdteFndTpYxdeTMox/ULeqX5k/dpaQJCCFmj5EeKv3dBcyO2xmkRAx2vppRu5dVG7SOtsGOzA==", - "dependencies": { - "fs-monkey": "^1.0.3" - }, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/meow": { - "version": "8.1.2", - "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", - "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", - "dev": true, - "dependencies": { - "@types/minimist": "^1.2.0", - "camelcase-keys": "^6.2.2", - "decamelize-keys": "^1.1.0", - "hard-rejection": "^2.1.0", - "minimist-options": "4.1.0", - "normalize-package-data": "^3.0.0", - "read-pkg-up": "^7.0.1", - "redent": "^3.0.0", - "trim-newlines": "^3.0.0", - "type-fest": "^0.18.0", - "yargs-parser": "^20.2.3" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/meow/node_modules/type-fest": { - "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/meow/node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/mimic-response": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", - "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minimist-options": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", - "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", - "dev": true, - "dependencies": { - "arrify": "^1.0.1", - "is-plain-obj": "^1.1.0", - "kind-of": "^6.0.3" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/minimist-options/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/minipass": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.2.8.tgz", - "integrity": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "dev": true, - "dependencies": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/mute-stdout": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", - "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" - }, - "node_modules/nan": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", - "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", - "dev": true, - "optional": true - }, - "node_modules/nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "dev": true, - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - }, - "node_modules/netmask": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", - "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", - "dev": true, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/new-github-release-url": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/new-github-release-url/-/new-github-release-url-2.0.0.tgz", - "integrity": "sha512-NHDDGYudnvRutt/VhKFlX26IotXe1w0cmkDm6JGquh5bz/bDTw0LufSmH/GxTjEdpHEO+bVKFTwdrcGa/9XlKQ==", - "dev": true, - "dependencies": { - "type-fest": "^2.5.1" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/new-github-release-url/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", - "dev": true - }, - "node_modules/node-abort-controller": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", - "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" - }, - "node_modules/node-domexception": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", - "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/jimmywarting" - }, - { - "type": "github", - "url": "https://paypal.me/jimmywarting" - } - ], - "engines": { - "node": ">=10.5.0" - } - }, - "node_modules/node-emoji": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz", - "integrity": "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==", - "dependencies": { - "lodash": "^4.17.21" - } - }, - "node_modules/node-fetch": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.1.tgz", - "integrity": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==", - "dev": true, - "dependencies": { - "data-uri-to-buffer": "^4.0.0", - "fetch-blob": "^3.1.4", - "formdata-polyfill": "^4.0.10" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/node-fetch" - } - }, - "node_modules/node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true - }, - "node_modules/node-releases": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", - "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" - }, - "node_modules/normalize-package-data": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", - "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", - "dev": true, - "dependencies": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-url": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz", - "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==", - "dev": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/now-and-later": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", - "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", - "dev": true, - "dependencies": { - "once": "^1.3.2" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", - "dev": true, - "dependencies": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", - "dev": true, - "dependencies": { - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.defaults": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", - "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", - "dev": true, - "dependencies": { - "array-each": "^1.0.1", - "array-slice": "^1.0.0", - "for-own": "^1.0.0", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.map": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", - "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", - "dev": true, - "dependencies": { - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.reduce": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", - "integrity": "sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==", - "dev": true, - "dependencies": { - "for-own": "^1.0.0", - "make-iterator": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/open": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", - "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", - "dev": true, - "dependencies": { - "default-browser": "^4.0.0", - "define-lazy-prop": "^3.0.0", - "is-inside-container": "^1.0.0", - "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "dev": true, - "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ordered-read-streams": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", - "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", - "dev": true, - "dependencies": { - "readable-stream": "^2.0.1" - } - }, - "node_modules/os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", - "dev": true, - "dependencies": { - "lcid": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/os-name": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/os-name/-/os-name-4.0.1.tgz", - "integrity": "sha512-xl9MAoU97MH1Xt5K9ERft2YfCAoaO6msy1OBA0ozxEC0x0TmIoE6K3QvgJMMZA9yKGLmHXNY/YZoDbiGDj4zYw==", - "dependencies": { - "macos-release": "^2.5.0", - "windows-release": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/p-cancelable": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", - "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", - "dev": true, - "engines": { - "node": ">=12.20" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/pac-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-5.0.0.tgz", - "integrity": "sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ==", - "dev": true, - "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4", - "get-uri": "3", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "5", - "pac-resolver": "^5.0.0", - "raw-body": "^2.2.0", - "socks-proxy-agent": "5" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/pac-resolver": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-5.0.1.tgz", - "integrity": "sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==", - "dev": true, - "dependencies": { - "degenerator": "^3.0.2", - "ip": "^1.1.5", - "netmask": "^2.0.2" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/package-json": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/package-json/-/package-json-8.1.0.tgz", - "integrity": "sha512-hySwcV8RAWeAfPsXb9/HGSPn8lwDnv6fabH+obUZKX169QknRkRhPxd1yMubpKDskLFATkl3jHpNtVtDPFA0Wg==", - "dev": true, - "dependencies": { - "got": "^12.1.0", - "registry-auth-token": "^5.0.1", - "registry-url": "^6.0.0", - "semver": "^7.3.7" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-filepath": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", - "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", - "dev": true, - "dependencies": { - "is-absolute": "^1.0.0", - "map-cache": "^0.2.0", - "path-root": "^0.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parse-node-version": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", - "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/parse-passwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/parse-path": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz", - "integrity": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==", - "dev": true, - "dependencies": { - "protocols": "^2.0.0" - } - }, - "node_modules/parse-url": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz", - "integrity": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==", - "dev": true, - "dependencies": { - "parse-path": "^7.0.0" - } - }, - "node_modules/pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", - "dev": true - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-root": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", - "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", - "dev": true, - "dependencies": { - "path-root-regex": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-root-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", - "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-scurry": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.7.0.tgz", - "integrity": "sha512-UkZUeDjczjYRE495+9thsgcVgsaCPkaw80slmfVFgllxY+IO8ubTsOpFVjDPROBqJdHfVPUFRHPBV/WciOVfWg==", - "dependencies": { - "lru-cache": "^9.0.0", - "minipass": "^5.0.0" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-9.1.1.tgz", - "integrity": "sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A==", - "engines": { - "node": "14 || >=16.14" - } - }, - "node_modules/path-scurry/node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-starts-with": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/path-starts-with/-/path-starts-with-2.0.0.tgz", - "integrity": "sha512-3UHTHbJz5+NLkPafFR+2ycJOjoc4WV2e9qCZCnm71zHiWaFrm1XniLVTkZXvaRgxr1xFh9JsTdicpH2yM03nLA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pidtree": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", - "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", - "dev": true, - "bin": { - "pidtree": "bin/pidtree.js" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", - "dev": true, - "dependencies": { - "pinkie": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/plugin-error": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-0.1.2.tgz", - "integrity": "sha512-WzZHcm4+GO34sjFMxQMqZbsz3xiNEgonCskQ9v+IroMmYgk/tas8dG+Hr2D6IbRPybZ12oWpzE/w3cGJ6FJzOw==", - "dev": true, - "dependencies": { - "ansi-cyan": "^0.1.1", - "ansi-red": "^0.1.1", - "arr-diff": "^1.0.1", - "arr-union": "^2.0.1", - "extend-shallow": "^1.1.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pluralize": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", - "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", - "dev": true, - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/pretty-format": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", - "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", - "dev": true, - "dependencies": { - "@jest/schemas": "^29.4.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/pretty-hrtime": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", - "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "node_modules/promise.allsettled": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/promise.allsettled/-/promise.allsettled-1.0.6.tgz", - "integrity": "sha512-22wJUOD3zswWFqgwjNHa1965LvqTX87WPu/lreY2KSd7SVcERfuZ4GfUaOnJNnvtoIv2yXT/W00YIGMetXtFXg==", - "dev": true, - "dependencies": { - "array.prototype.map": "^1.0.5", - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "iterate-value": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - "dev": true, - "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/proto-list": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", - "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", - "dev": true - }, - "node_modules/protocols": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", - "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==", - "dev": true - }, - "node_modules/proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-5.0.0.tgz", - "integrity": "sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g==", - "dev": true, - "dependencies": { - "agent-base": "^6.0.0", - "debug": "4", - "http-proxy-agent": "^4.0.0", - "https-proxy-agent": "^5.0.0", - "lru-cache": "^5.1.1", - "pac-proxy-agent": "^5.0.0", - "proxy-from-env": "^1.0.0", - "socks-proxy-agent": "^5.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "dev": true - }, - "node_modules/pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "dev": true, - "dependencies": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - } - }, - "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/pupa": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pupa/-/pupa-3.1.0.tgz", - "integrity": "sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==", - "dev": true, - "dependencies": { - "escape-goat": "^4.0.0" - }, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pure-rand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", - "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/dubzzz" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/fast-check" - } - ] - }, - "node_modules/q": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", - "dev": true, - "engines": { - "node": ">=0.6.0", - "teleport": ">=0.2.0" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/quick-lru": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", - "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - "dev": true, - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "dev": true, - "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "bin": { - "rc": "cli.js" - } - }, - "node_modules/rc/node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", - "dev": true - }, - "node_modules/read-pkg": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", - "dev": true, - "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", - "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", - "dev": true, - "dependencies": { - "find-up": "^4.1.0", - "read-pkg": "^5.2.0", - "type-fest": "^0.8.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg/node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/read-pkg/node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/read-pkg/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/read-pkg/node_modules/type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", - "dependencies": { - "resolve": "^1.1.6" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/redent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", - "dev": true, - "dependencies": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "dev": true, - "dependencies": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regex-not/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", - "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/registry-auth-token": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz", - "integrity": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==", - "dev": true, - "dependencies": { - "@pnpm/npm-conf": "^2.1.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/registry-url": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-6.0.1.tgz", - "integrity": "sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==", - "dev": true, - "dependencies": { - "rc": "1.2.8" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it": { - "version": "15.10.1", - "resolved": "https://registry.npmjs.org/release-it/-/release-it-15.10.1.tgz", - "integrity": "sha512-Wkk4aFHSo27vQwHIlcEy77lJwnQlh4UDQckc53gh5tKo7F22mAUEAe8SYQZJcFh7icdkf0OV70onhB1dDmeClA==", - "dev": true, - "dependencies": { - "@iarna/toml": "2.2.5", - "@octokit/rest": "19.0.7", - "async-retry": "1.3.3", - "chalk": "5.2.0", - "cosmiconfig": "8.1.3", - "execa": "7.1.1", - "git-url-parse": "13.1.0", - "globby": "13.1.3", - "got": "12.6.0", - "inquirer": "9.1.5", - "is-ci": "3.0.1", - "issue-parser": "6.0.0", - "lodash": "4.17.21", - "mime-types": "2.1.35", - "new-github-release-url": "2.0.0", - "node-fetch": "3.3.1", - "open": "9.1.0", - "ora": "6.3.0", - "os-name": "5.1.0", - "promise.allsettled": "1.0.6", - "proxy-agent": "5.0.0", - "semver": "7.3.8", - "shelljs": "0.8.5", - "update-notifier": "6.0.2", - "url-join": "5.0.0", - "wildcard-match": "5.1.2", - "yargs-parser": "21.1.1" - }, - "bin": { - "release-it": "bin/release-it.js" - }, - "engines": { - "node": ">=14.9" - } - }, - "node_modules/release-it/node_modules/ansi-escapes": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.0.tgz", - "integrity": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==", - "dev": true, - "dependencies": { - "type-fest": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/release-it/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/release-it/node_modules/chalk": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", - "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/release-it/node_modules/cli-cursor": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", - "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", - "dev": true, - "dependencies": { - "restore-cursor": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/cli-width": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.0.0.tgz", - "integrity": "sha512-ZksGS2xpa/bYkNzN3BAw1wEjsLV/ZKOf/CCrJ/QOBsxx6fOARIkwTutxp1XIOIohi6HKmOFjMoK/XaqDVUpEEw==", - "dev": true, - "engines": { - "node": ">= 12" - } - }, - "node_modules/release-it/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/release-it/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/execa": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", - "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/release-it/node_modules/figures": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-5.0.0.tgz", - "integrity": "sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==", - "dev": true, - "dependencies": { - "escape-string-regexp": "^5.0.0", - "is-unicode-supported": "^1.2.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/globby": { - "version": "13.1.3", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz", - "integrity": "sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==", - "dev": true, - "dependencies": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "dev": true, - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/release-it/node_modules/inquirer": { - "version": "9.1.5", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-9.1.5.tgz", - "integrity": "sha512-3ygAIh8gcZavV9bj6MTdYddG2zPSYswP808fKS46NOwlF0zZljVpnLCHODDqItWJDbDpLb3aouAxGaJbkxoppA==", - "dev": true, - "dependencies": { - "ansi-escapes": "^6.0.0", - "chalk": "^5.2.0", - "cli-cursor": "^4.0.0", - "cli-width": "^4.0.0", - "external-editor": "^3.0.3", - "figures": "^5.0.0", - "lodash": "^4.17.21", - "mute-stream": "1.0.0", - "ora": "^6.1.2", - "run-async": "^2.4.0", - "rxjs": "^7.8.0", - "string-width": "^5.1.2", - "strip-ansi": "^7.0.1", - "through": "^2.3.6", - "wrap-ansi": "^8.1.0" - }, - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/release-it/node_modules/is-interactive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", - "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/is-unicode-supported": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", - "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/log-symbols": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-5.1.0.tgz", - "integrity": "sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==", - "dev": true, - "dependencies": { - "chalk": "^5.0.0", - "is-unicode-supported": "^1.1.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/macos-release": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/macos-release/-/macos-release-3.1.0.tgz", - "integrity": "sha512-/M/R0gCDgM+Cv1IuBG1XGdfTFnMEG6PZeT+KGWHO/OG+imqmaD9CH5vHBTycEM3+Kc4uG2Il+tFAuUWLqQOeUA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/mute-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz", - "integrity": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/release-it/node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dev": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/ora": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/ora/-/ora-6.3.0.tgz", - "integrity": "sha512-1/D8uRFY0ay2kgBpmAwmSA404w4OoPVhHMqRqtjvrcK/dnzcEZxMJ+V4DUbyICu8IIVRclHcOf5wlD1tMY4GUQ==", - "dev": true, - "dependencies": { - "chalk": "^5.0.0", - "cli-cursor": "^4.0.0", - "cli-spinners": "^2.6.1", - "is-interactive": "^2.0.0", - "is-unicode-supported": "^1.1.0", - "log-symbols": "^5.1.0", - "stdin-discarder": "^0.1.0", - "strip-ansi": "^7.0.1", - "wcwidth": "^1.0.1" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/os-name": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/os-name/-/os-name-5.1.0.tgz", - "integrity": "sha512-YEIoAnM6zFmzw3PQ201gCVCIWbXNyKObGlVvpAVvraAeOHnlYVKFssbA/riRX5R40WA6kKrZ7Dr7dWzO3nKSeQ==", - "dev": true, - "dependencies": { - "macos-release": "^3.1.0", - "windows-release": "^5.0.1" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/restore-cursor": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", - "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", - "dev": true, - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/restore-cursor/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/release-it/node_modules/restore-cursor/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "dev": true, - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/release-it/node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/release-it/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/type-fest": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.9.0.tgz", - "integrity": "sha512-hR8JP2e8UiH7SME5JZjsobBlEiatFoxpzCP+R3ZeCo7kAaG1jXQE5X/buLzogM6GJu8le9Y4OcfNuIQX0rZskA==", - "dev": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/windows-release": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/windows-release/-/windows-release-5.1.0.tgz", - "integrity": "sha512-CddHecz5dt0ngTjGPP1uYr9Tjl4qq5rEKNk8UGb8XCdngNXI+GRYvqelD055FdiUgqODZz3R/5oZWYldPtXQpA==", - "dev": true, - "dependencies": { - "execa": "^5.1.1" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/windows-release/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/release-it/node_modules/windows-release/node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/release-it/node_modules/windows-release/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/windows-release/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/release-it/node_modules/windows-release/node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/release-it/node_modules/windows-release/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/windows-release/node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/release-it/node_modules/windows-release/node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/release-it/node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/remove-bom-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", - "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5", - "is-utf8": "^0.2.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/remove-bom-stream": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", - "integrity": "sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==", - "dev": true, - "dependencies": { - "remove-bom-buffer": "^3.0.0", - "safe-buffer": "^5.1.0", - "through2": "^2.0.3" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/remove-bom-stream/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", - "dev": true - }, - "node_modules/repeat-element": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", - "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", - "dev": true, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/replace-ext": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", - "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/replace-homedir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", - "integrity": "sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==", - "dev": true, - "dependencies": { - "homedir-polyfill": "^1.0.1", - "is-absolute": "^1.0.0", - "remove-trailing-separator": "^1.1.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", - "dev": true - }, - "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", - "dependencies": { - "is-core-module": "^2.11.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", - "dev": true - }, - "node_modules/resolve-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", - "dev": true, - "dependencies": { - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-dir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", - "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", - "dev": true, - "dependencies": { - "expand-tilde": "^2.0.0", - "global-modules": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-global": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/resolve-global/-/resolve-global-1.0.0.tgz", - "integrity": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==", - "dev": true, - "dependencies": { - "global-dirs": "^0.1.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-options": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", - "integrity": "sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==", - "dev": true, - "dependencies": { - "value-or-function": "^3.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", - "deprecated": "https://github.com/lydell/resolve-url#deprecated", - "dev": true - }, - "node_modules/resolve.exports": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", - "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/responselike": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz", - "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==", - "dev": true, - "dependencies": { - "lowercase-keys": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "dev": true, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/retry": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rfdc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", - "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", - "dev": true - }, - "node_modules/rimraf": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-4.4.1.tgz", - "integrity": "sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==", - "dependencies": { - "glob": "^9.2.0" - }, - "bin": { - "rimraf": "dist/cjs/src/bin.js" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rimraf/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/rimraf/node_modules/glob": { - "version": "9.3.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz", - "integrity": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==", - "dependencies": { - "fs.realpath": "^1.0.0", - "minimatch": "^8.0.2", - "minipass": "^4.2.4", - "path-scurry": "^1.6.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rimraf/node_modules/minimatch": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz", - "integrity": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/run-applescript": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", - "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", - "dev": true, - "dependencies": { - "execa": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/rxjs": { - "version": "6.6.7", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", - "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", - "dependencies": { - "tslib": "^1.9.0" - }, - "engines": { - "npm": ">=2.0.0" - } - }, - "node_modules/rxjs/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, - "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", - "dev": true, - "dependencies": { - "ret": "~0.1.10" - } - }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/schema-utils": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", - "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/schema-utils/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/schema-utils/node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/schema-utils/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz", - "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==", - "dev": true, - "dependencies": { - "semver": "^7.3.5" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semver-greatest-satisfied-range": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", - "integrity": "sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==", - "dev": true, - "dependencies": { - "sver-compat": "^1.5.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/semver/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true - }, - "node_modules/set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "dev": true, - "dependencies": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/set-value/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/set-value/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/set-value/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "engines": { - "node": ">=8" - } - }, - "node_modules/shelljs": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", - "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", - "dependencies": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - }, - "bin": { - "shjs": "bin/shjs" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - }, - "node_modules/sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/slice-ansi": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", - "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.0.0", - "is-fullwidth-code-point": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true, - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "dev": true, - "dependencies": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "dev": true, - "dependencies": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dev": true, - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "dev": true, - "dependencies": { - "kind-of": "^3.2.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-util/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/snapdragon/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/snapdragon/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", - "dev": true, - "dependencies": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" - }, - "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz", - "integrity": "sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==", - "dev": true, - "dependencies": { - "agent-base": "^6.0.2", - "debug": "4", - "socks": "^2.3.3" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/socks/node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "dev": true - }, - "node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/source-map-resolve": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", - "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", - "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", - "dev": true, - "dependencies": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-url": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", - "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", - "deprecated": "See https://github.com/lydell/source-map-url#deprecated", - "dev": true - }, - "node_modules/sparkles": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", - "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", - "dev": true, - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true - }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-license-ids": { - "version": "3.0.13", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", - "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", - "dev": true - }, - "node_modules/split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "dev": true, - "dependencies": { - "extend-shallow": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/split-string/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/split2": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", - "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", - "dev": true, - "dependencies": { - "readable-stream": "^3.0.0" - } - }, - "node_modules/split2/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "node_modules/stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/stack-utils": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", - "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", - "dev": true, - "dependencies": { - "escape-string-regexp": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/stack-utils/node_modules/escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", - "dev": true, - "dependencies": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dev": true, - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/stdin-discarder": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.1.0.tgz", - "integrity": "sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==", - "dev": true, - "dependencies": { - "bl": "^5.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/stdin-discarder/node_modules/bl": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-5.1.0.tgz", - "integrity": "sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==", - "dev": true, - "dependencies": { - "buffer": "^6.0.3", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/stdin-discarder/node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "node_modules/stdin-discarder/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/stop-iteration-iterator": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", - "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", - "dev": true, - "dependencies": { - "internal-slot": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/stream-exhaust": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", - "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", - "dev": true - }, - "node_modules/stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", - "dev": true - }, - "node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/string-argv": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", - "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", - "dev": true, - "engines": { - "node": ">=0.6.19" - } - }, - "node_modules/string-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", - "dev": true, - "dependencies": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/string.prototype.trim": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", - "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/strip-indent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", - "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", - "dev": true, - "dependencies": { - "min-indent": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/sver-compat": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", - "integrity": "sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==", - "dev": true, - "dependencies": { - "es6-iterator": "^2.0.1", - "es6-symbol": "^3.1.1" - } - }, - "node_modules/symbol-observable": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", - "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/terser": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.1.tgz", - "integrity": "sha512-hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw==", - "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.7", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.7.tgz", - "integrity": "sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.5" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } - } - }, - "node_modules/terser-webpack-plugin/node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/terser-webpack-plugin/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "node_modules/test-exclude": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", - "dev": true, - "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/text-extensions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", - "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", - "dev": true, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - }, - "node_modules/through2": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", - "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", - "dev": true, - "dependencies": { - "readable-stream": "3" - } - }, - "node_modules/through2-filter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", - "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", - "dev": true, - "dependencies": { - "through2": "~2.0.0", - "xtend": "~4.0.0" - } - }, - "node_modules/through2-filter/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/time-stamp": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", - "integrity": "sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/titleize": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", - "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/tmpl": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", - "dev": true - }, - "node_modules/to-absolute-glob": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", - "integrity": "sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==", - "dev": true, - "dependencies": { - "is-absolute": "^1.0.0", - "is-negated-glob": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", - "dev": true, - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-object-path/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dev": true, - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "dev": true, - "dependencies": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/to-regex/node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dev": true, - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-through": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", - "integrity": "sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==", - "dev": true, - "dependencies": { - "through2": "^2.0.3" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/to-through/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true - }, - "node_modules/tree-kill": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", - "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", - "bin": { - "tree-kill": "cli.js" - } - }, - "node_modules/trim-newlines": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", - "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ts-jest": { - "version": "29.1.0", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", - "integrity": "sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==", - "dev": true, - "dependencies": { - "bs-logger": "0.x", - "fast-json-stable-stringify": "2.x", - "jest-util": "^29.0.0", - "json5": "^2.2.3", - "lodash.memoize": "4.x", - "make-error": "1.x", - "semver": "7.x", - "yargs-parser": "^21.0.1" - }, - "bin": { - "ts-jest": "cli.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": ">=7.0.0-beta.0 <8", - "@jest/types": "^29.0.0", - "babel-jest": "^29.0.0", - "jest": "^29.0.0", - "typescript": ">=4.3 <6" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "@jest/types": { - "optional": true - }, - "babel-jest": { - "optional": true - }, - "esbuild": { - "optional": true - } - } - }, - "node_modules/ts-loader": { - "version": "9.4.2", - "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.2.tgz", - "integrity": "sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==", - "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.0.0", - "micromatch": "^4.0.0", - "semver": "^7.3.4" - }, - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "typescript": "*", - "webpack": "^5.0.0" - } - }, - "node_modules/ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", - "dev": true, - "dependencies": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "bin": { - "ts-node": "dist/bin.js", - "ts-node-cwd": "dist/bin-cwd.js", - "ts-node-esm": "dist/bin-esm.js", - "ts-node-script": "dist/bin-script.js", - "ts-node-transpile-only": "dist/bin-transpile.js", - "ts-script": "dist/bin-script-deprecated.js" - }, - "peerDependencies": { - "@swc/core": ">=1.2.50", - "@swc/wasm": ">=1.2.50", - "@types/node": "*", - "typescript": ">=2.7" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "@swc/wasm": { - "optional": true - } - } - }, - "node_modules/tsconfig-paths": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", - "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", - "dependencies": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tsconfig-paths-webpack-plugin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-4.0.1.tgz", - "integrity": "sha512-m5//KzLoKmqu2MVix+dgLKq70MnFi8YL8sdzQZ6DblmCdfuq/y3OqvJd5vMndg2KEVCOeNz8Es4WVZhYInteLw==", - "dependencies": { - "chalk": "^4.1.0", - "enhanced-resolve": "^5.7.0", - "tsconfig-paths": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/tsconfig-paths/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "dev": true, - "dependencies": { - "tslib": "^1.8.1" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - } - }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "node_modules/type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", - "dev": true - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", - "dev": true - }, - "node_modules/typedarray-to-buffer": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dev": true, - "dependencies": { - "is-typedarray": "^1.0.0" - } - }, - "node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/unc-path-regex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/undertaker": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz", - "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==", - "dev": true, - "dependencies": { - "arr-flatten": "^1.0.1", - "arr-map": "^2.0.0", - "bach": "^1.0.0", - "collection-map": "^1.0.0", - "es6-weak-map": "^2.0.1", - "fast-levenshtein": "^1.0.0", - "last-run": "^1.1.0", - "object.defaults": "^1.0.0", - "object.reduce": "^1.0.0", - "undertaker-registry": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/undertaker-registry": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", - "integrity": "sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/undertaker/node_modules/fast-levenshtein": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", - "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==", - "dev": true - }, - "node_modules/union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "dev": true, - "dependencies": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/union-value/node_modules/arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/union-value/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unique-stream": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", - "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", - "dev": true, - "dependencies": { - "json-stable-stringify-without-jsonify": "^1.0.1", - "through2-filter": "^3.0.0" - } - }, - "node_modules/unique-string": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", - "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", - "dev": true, - "dependencies": { - "crypto-random-string": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/universal-user-agent": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz", - "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==", - "dev": true - }, - "node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", - "dev": true, - "dependencies": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", - "dev": true, - "dependencies": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", - "dev": true, - "dependencies": { - "isarray": "1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/untildify": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", - "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "dev": true, - "engines": { - "node": ">=4", - "yarn": "*" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/update-notifier": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-6.0.2.tgz", - "integrity": "sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==", - "dev": true, - "dependencies": { - "boxen": "^7.0.0", - "chalk": "^5.0.1", - "configstore": "^6.0.0", - "has-yarn": "^3.0.0", - "import-lazy": "^4.0.0", - "is-ci": "^3.0.1", - "is-installed-globally": "^0.4.0", - "is-npm": "^6.0.0", - "is-yarn-global": "^0.4.0", - "latest-version": "^7.0.0", - "pupa": "^3.1.0", - "semver": "^7.3.7", - "semver-diff": "^4.0.0", - "xdg-basedir": "^5.1.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/yeoman/update-notifier?sponsor=1" - } - }, - "node_modules/update-notifier/node_modules/chalk": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", - "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", - "deprecated": "Please see https://github.com/lydell/urix#deprecated", - "dev": true - }, - "node_modules/url-join": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/url-join/-/url-join-5.0.0.tgz", - "integrity": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "node_modules/v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", - "dev": true - }, - "node_modules/v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", - "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" - }, - "engines": { - "node": ">=10.12.0" - } - }, - "node_modules/v8-to-istanbul/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, - "node_modules/v8flags": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", - "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", - "dev": true, - "dependencies": { - "homedir-polyfill": "^1.0.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "node_modules/value-or-function": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", - "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vinyl": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", - "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", - "dev": true, - "dependencies": { - "clone": "^2.1.1", - "clone-buffer": "^1.0.0", - "clone-stats": "^1.0.0", - "cloneable-readable": "^1.0.0", - "remove-trailing-separator": "^1.0.1", - "replace-ext": "^1.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vinyl-fs": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", - "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", - "dev": true, - "dependencies": { - "fs-mkdirp-stream": "^1.0.0", - "glob-stream": "^6.1.0", - "graceful-fs": "^4.0.0", - "is-valid-glob": "^1.0.0", - "lazystream": "^1.0.0", - "lead": "^1.0.0", - "object.assign": "^4.0.4", - "pumpify": "^1.3.5", - "readable-stream": "^2.3.3", - "remove-bom-buffer": "^3.0.0", - "remove-bom-stream": "^1.2.0", - "resolve-options": "^1.1.0", - "through2": "^2.0.0", - "to-through": "^2.0.0", - "value-or-function": "^3.0.0", - "vinyl": "^2.0.0", - "vinyl-sourcemap": "^1.1.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vinyl-fs/node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/vinyl-sourcemap": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", - "integrity": "sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==", - "dev": true, - "dependencies": { - "append-buffer": "^1.0.2", - "convert-source-map": "^1.5.0", - "graceful-fs": "^4.1.6", - "normalize-path": "^2.1.1", - "now-and-later": "^2.0.0", - "remove-bom-buffer": "^3.0.0", - "vinyl": "^2.0.0" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/vinyl-sourcemap/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, - "node_modules/vinyl-sourcemap/node_modules/normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "dev": true, - "dependencies": { - "remove-trailing-separator": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/vm2": { - "version": "3.9.17", - "resolved": "https://registry.npmjs.org/vm2/-/vm2-3.9.17.tgz", - "integrity": "sha512-AqwtCnZ/ERcX+AVj9vUsphY56YANXxRuqMb7GsDtAr0m0PcQX3u0Aj3KWiXM0YAHy7i6JEeHrwOnwXbGYgRpAw==", - "dev": true, - "dependencies": { - "acorn": "^8.7.0", - "acorn-walk": "^8.2.0" - }, - "bin": { - "vm2": "bin/vm2" - }, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/walker": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", - "dev": true, - "dependencies": { - "makeerror": "1.0.12" - } - }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", - "dependencies": { - "defaults": "^1.0.3" - } - }, - "node_modules/web-streams-polyfill": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", - "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true - }, - "node_modules/webpack": { - "version": "5.80.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.80.0.tgz", - "integrity": "sha512-OIMiq37XK1rWO8mH9ssfFKZsXg4n6klTEDL7S8/HqbAOBBaiy8ABvXvz0dDCXeEF9gqwxSvVk611zFPjS8hJxA==", - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.13.0", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.1.2", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-node-externals": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz", - "integrity": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dev": true, - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==", - "dev": true - }, - "node_modules/which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/widest-line": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz", - "integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==", - "dev": true, - "dependencies": { - "string-width": "^5.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/widest-line/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/widest-line/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/widest-line/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/widest-line/node_modules/strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/wildcard-match": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/wildcard-match/-/wildcard-match-5.1.2.tgz", - "integrity": "sha512-qNXwI591Z88c8bWxp+yjV60Ch4F8Riawe3iGxbzquhy8Xs9m+0+SLFBGb/0yCTIDElawtaImC37fYZ+dr32KqQ==", - "dev": true - }, - "node_modules/windows-release": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/windows-release/-/windows-release-4.0.0.tgz", - "integrity": "sha512-OxmV4wzDKB1x7AZaZgXMVsdJ1qER1ed83ZrTYd5Bwq2HfJVg3DJS8nqlAG4sMoJ7mu8cuRmLEYyU13BKwctRAg==", - "dependencies": { - "execa": "^4.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/windows-release/node_modules/execa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", - "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", - "dependencies": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/windows-release/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/windows-release/node_modules/human-signals": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", - "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", - "engines": { - "node": ">=8.12.0" - } - }, - "node_modules/windows-release/node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - }, - "node_modules/write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/xdg-basedir": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-5.1.0.tgz", - "integrity": "sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/xregexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz", - "integrity": "sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true, - "engines": { - "node": ">=0.4" - } - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - }, - "node_modules/yaml": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.2.2.tgz", - "integrity": "sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==", - "dev": true, - "engines": { - "node": ">= 14" - } - }, - "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "dev": true, - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "engines": { - "node": ">=12" - } - }, - "node_modules/yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - } -} From b76116f9bc98ee1925d7f1fbdc29c17bdf7630cd Mon Sep 17 00:00:00 2001 From: ajs124 Date: Mon, 11 Sep 2023 17:51:07 +0200 Subject: [PATCH 106/346] mariadb_104: remove depends on openssl_1_1, which is EOL --- pkgs/servers/sql/mariadb/default.nix | 18 +++++------------- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 1 - 3 files changed, 6 insertions(+), 14 deletions(-) diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index fae12db390f2..ea50fc371981 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -6,7 +6,7 @@ let # Native buildInputs components , bison, boost, cmake, fixDarwinDylibNames, flex, makeWrapper, pkg-config # Common components - , curl, libiconv, ncurses, openssl, openssl_1_1, pcre, pcre2 + , curl, libiconv, ncurses, openssl, pcre2 , libkrb5, libaio, liburing, systemd , CoreServices, cctools, perl , jemalloc, less, libedit @@ -44,14 +44,13 @@ let buildInputs = [ libiconv ncurses zlib + pcre2 + openssl + curl ] ++ lib.optionals stdenv.hostPlatform.isLinux ([ libkrb5 systemd ] ++ (if (lib.versionOlder version "10.6") then [ libaio ] else [ liburing ])) ++ lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices cctools perl libedit ] - ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ jemalloc ] - ++ (if (lib.versionOlder version "10.5") then [ pcre ] else [ pcre2 ]) - ++ (if (lib.versionOlder version "10.5") - then [ openssl_1_1 (curl.override { openssl = openssl_1_1; }) ] - else [ openssl curl ]); + ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ jemalloc ]; prePatch = '' sed -i 's,[^"]*/var/log,/var/log,g' storage/mroonga/vendor/groonga/CMakeLists.txt @@ -244,13 +243,6 @@ let in self: { # see https://mariadb.org/about/#maintenance-policy for EOLs - mariadb_104 = self.callPackage generic { - # Supported until 2024-06-18 - version = "10.4.31"; - hash = "sha256-Uqv1Q0xqQuCgSKY6uZo4mPt/yhWA+t16Yb0OnOm4UFQ="; - inherit (self.darwin) cctools; - inherit (self.darwin.apple_sdk.frameworks) CoreServices; - }; mariadb_105 = self.callPackage generic { # Supported until 2025-06-24 version = "10.5.22"; diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 0bb847ad0d86..db1319c6aeda 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1083,6 +1083,7 @@ mapAliases ({ manul = throw "manul has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-01 manpages = throw "'manpages' has been renamed to/replaced by 'man-pages'"; # Converted to throw 2022-02-22 marathon = throw "marathon has been removed from nixpkgs, as it's unmaintained"; # Added 2020-08-15 + mariadb_104 = throw "mariadb_104 has been removed from nixpkgs, please switch to another version like mariadb_106"; # Added 2023-09-11 mariadb_108 = throw "mariadb_108 has been removed from nixpkgs, please switch to another version like mariadb_1010"; # Added 2022-05-10 mariadb_109 = throw "mariadb_109 has been removed from nixpkgs, please switch to another version like mariadb_1010"; # Added 2022-05-10 mariadb-client = hiPrio mariadb.client; #added 2019.07.28 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7450ba835732..7d31357ac1bd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -27105,7 +27105,6 @@ with pkgs; mariadb-galera = callPackage ../servers/sql/mariadb/galera { }; inherit (import ../servers/sql/mariadb pkgs) - mariadb_104 mariadb_105 mariadb_106 mariadb_1010 From e895f7867b34bc0885d07c2baeda2fda6ce8492f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 11 Sep 2023 16:34:38 +0000 Subject: [PATCH 107/346] python310Packages.netutils: 1.5.0 -> 1.6.0 --- pkgs/development/python-modules/netutils/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/netutils/default.nix b/pkgs/development/python-modules/netutils/default.nix index bee05b436cdc..c1f43e64f8f0 100644 --- a/pkgs/development/python-modules/netutils/default.nix +++ b/pkgs/development/python-modules/netutils/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "netutils"; - version = "1.5.0"; + version = "1.6.0"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "networktocode"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-uUw48EBUpEUw+A8wxw3qXrnqmFWQzg/zb+8qAGRSlUw="; + hash = "sha256-ocajE7E4xIatEmv58/9gEpWF2plJdiZXjk6ajD2vTzw="; }; nativeBuildInputs = [ From cfaf1e6807950340a7bb62c847a2157aa9d28fce Mon Sep 17 00:00:00 2001 From: Artemis Everfree Date: Sun, 10 Sep 2023 06:16:59 -0700 Subject: [PATCH 108/346] schismtracker: 20220506 -> 20230906 Since the last version bump, schismtracker has migrated from SDL1 to SDL2. This is a change that improves audio options, video output quality, and allows mouse/keyboard capture under wayland. There's also various other fixes and improvements listed under https://github.com/schismtracker/schismtracker/releases , and an out-of-bounds memory access was fixed in some common rendering code that isn't mentioned in the release notes --- .../audio/schismtracker/default.nix | 18 ++++++++++++++---- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/audio/schismtracker/default.nix b/pkgs/applications/audio/schismtracker/default.nix index c491d8ef2468..6e6110fe22e4 100644 --- a/pkgs/applications/audio/schismtracker/default.nix +++ b/pkgs/applications/audio/schismtracker/default.nix @@ -4,18 +4,20 @@ , autoreconfHook , alsa-lib , python3 -, SDL +, SDL2 +, libXext +, Cocoa }: stdenv.mkDerivation rec { pname = "schismtracker"; - version = "20220506"; + version = "20230906"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; - sha256 = "sha256-fK0FBn9e7l1Y/A7taFlaoas6ZPREFhEmskVBqjda6q0="; + sha256 = "sha256-eW1sqfcAR3lutSyQKj7j1elkFTa8jfZqgrJYYAzMlzo="; }; configureFlags = [ "--enable-dependency-tracking" ] @@ -23,10 +25,18 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook python3 ]; - buildInputs = [ SDL ] ++ lib.optional stdenv.isLinux alsa-lib; + buildInputs = [ SDL2 ] + ++ lib.optionals stdenv.isLinux [ alsa-lib libXext ] + ++ lib.optionals stdenv.isDarwin [ Cocoa ]; enableParallelBuilding = true; + # Our Darwin SDL2 doesn't have a SDL2main to link against + preConfigure = lib.optionalString stdenv.isDarwin '' + substituteInPlace configure.ac \ + --replace '-lSDL2main' '-lSDL2' + ''; + meta = with lib; { description = "Music tracker application, free reimplementation of Impulse Tracker"; homepage = "http://schismtracker.org/"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dd8e187dba44..5b51c29882c5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -30726,7 +30726,9 @@ with pkgs; ptcollab = libsForQt5.callPackage ../applications/audio/ptcollab { }; - schismtracker = callPackage ../applications/audio/schismtracker { }; + schismtracker = callPackage ../applications/audio/schismtracker { + inherit (darwin.apple_sdk.frameworks) Cocoa; + }; jnetmap = callPackage ../applications/networking/jnetmap { }; From 463fb9db44da6391497b5d3d635f62a865ed60f7 Mon Sep 17 00:00:00 2001 From: hulr <> Date: Thu, 31 Aug 2023 22:57:01 +0200 Subject: [PATCH 109/346] setzer: 56 -> 59 --- pkgs/applications/editors/setzer/default.nix | 40 ++++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/pkgs/applications/editors/setzer/default.nix b/pkgs/applications/editors/setzer/default.nix index 6a0156eedbc3..55c98249dd36 100644 --- a/pkgs/applications/editors/setzer/default.nix +++ b/pkgs/applications/editors/setzer/default.nix @@ -6,27 +6,27 @@ , gettext , appstream , appstream-glib -, wrapGAppsHook +, wrapGAppsHook4 , desktop-file-utils , gobject-introspection -, gtksourceview4 -, gspell -, libhandy -, poppler_gi -, webkitgtk_4_1 -, librsvg +, gtk4 +, gtksourceview5 +, libadwaita , libportal +, librsvg +, poppler_gi +, webkitgtk_6_0 }: python3.pkgs.buildPythonApplication rec { pname = "setzer"; - version = "56"; + version = "59"; src = fetchFromGitHub { owner = "cvfosammmm"; repo = "Setzer"; rev = "v${version}"; - hash = "sha256-YCJu8EU+8RD09QNVT/RYF2ZJZ7cp+oawXThqTzg8ENQ="; + hash = "sha256-PmkEOOi30Fa8VXNmKPvp6UAaw74MID9uTaCzXs9vPpk="; }; format = "other"; @@ -37,28 +37,28 @@ python3.pkgs.buildPythonApplication rec { gettext appstream # for appstreamcli appstream-glib - wrapGAppsHook + wrapGAppsHook4 desktop-file-utils gobject-introspection ]; buildInputs = [ - gtksourceview4 - gspell - libhandy - poppler_gi - webkitgtk_4_1 - librsvg + gtk4 + gtksourceview5 + libadwaita libportal + librsvg + poppler_gi + webkitgtk_6_0 ]; propagatedBuildInputs = with python3.pkgs; [ + bibtexparser + pdfminer-six + pexpect + pycairo pygobject3 pyxdg - pdfminer-six - pycairo - pexpect - bibtexparser ]; checkPhase = '' From d13e942758a6a1571dee59b32fe3d60651626342 Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Sat, 9 Sep 2023 16:30:12 +0200 Subject: [PATCH 110/346] python3Packages.pymongo-inmemory: init at 0.3.0 --- .../pymongo-inmemory/default.nix | 65 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 67 insertions(+) create mode 100644 pkgs/development/python-modules/pymongo-inmemory/default.nix diff --git a/pkgs/development/python-modules/pymongo-inmemory/default.nix b/pkgs/development/python-modules/pymongo-inmemory/default.nix new file mode 100644 index 000000000000..98cbf453e554 --- /dev/null +++ b/pkgs/development/python-modules/pymongo-inmemory/default.nix @@ -0,0 +1,65 @@ +{ lib +, buildPythonPackage +, pythonOlder +, fetchFromGitHub +, fetchpatch +, poetry-core +, pymongo +, pytestCheckHook +}: + +buildPythonPackage rec { + pname = "pymongo-inmemory"; + version = "0.3.1"; + format = "pyproject"; + + disabled = pythonOlder "3.7"; + + src = fetchFromGitHub { + owner = "kaizendorks"; + repo = "pymongo_inmemory"; + rev = "refs/tags/v${version}"; + hash = "sha256-1v36cI6JjDZA/uJE85NSMNnoyKI1VCgDrymfnCkpVqU="; + }; + + postPatch = '' + # move cache location from nix store to home + substituteInPlace pymongo_inmemory/context.py \ + --replace \ + 'CACHE_FOLDER = path.join(path.dirname(__file__), "..", ".cache")' \ + 'CACHE_FOLDER = os.environ.get("XDG_CACHE_HOME", os.environ["HOME"] + "/.cache") + "/pymongo-inmemory"' + + # fix a broken assumption arising from the above fix + substituteInPlace pymongo_inmemory/_utils.py \ + --replace \ + 'os.mkdir(current_path)' \ + 'os.makedirs(current_path)' + ''; + + nativeBuildInputs = [ + poetry-core + ]; + + propagatedBuildInputs = [ + pymongo + ]; + + nativeCheckInputs = [ + pytestCheckHook + ]; + + preCheck = '' + export HOME="$(mktemp -d)" + ''; + + pythonImportsCheck = [ + "pymongo_inmemory" + ]; + + meta = { + homepage = "https://github.com/kaizendorks/pymongo_inmemory"; + description = "A mongo mocking library with an ephemeral MongoDB running in memory"; + maintainers = with lib.maintainers; [ pbsds ]; + license = lib.licenses.mit; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 22fecaea0e4a..f629c30fa769 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9492,6 +9492,8 @@ self: super: with self; { pymongo = callPackage ../development/python-modules/pymongo { }; + pymongo-inmemory = callPackage ../development/python-modules/pymongo-inmemory { }; + pymoo = callPackage ../development/python-modules/pymoo { }; pymorphy2 = callPackage ../development/python-modules/pymorphy2 { }; From 0996a248c55eefb4431f38dc54815eb6dc40fed9 Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Sat, 9 Sep 2023 16:30:53 +0200 Subject: [PATCH 111/346] python3Packages.cachier: init at 2.2.1 --- .../python-modules/cachier/default.nix | 87 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 89 insertions(+) create mode 100644 pkgs/development/python-modules/cachier/default.nix diff --git a/pkgs/development/python-modules/cachier/default.nix b/pkgs/development/python-modules/cachier/default.nix new file mode 100644 index 000000000000..2a1fe461d51c --- /dev/null +++ b/pkgs/development/python-modules/cachier/default.nix @@ -0,0 +1,87 @@ +{ lib +, buildPythonPackage +, pythonOlder +, fetchPypi +, pythonRelaxDepsHook +, setuptools +, watchdog +, portalocker +, pathtools +, pytestCheckHook +, pymongo +, dnspython +, pymongo-inmemory +, pandas +}: + +buildPythonPackage rec { + pname = "cachier"; + version = "2.2.1"; + format = "setuptools"; + + disabled = pythonOlder "3.8"; + + src = fetchPypi { + inherit pname version; + hash = "sha256-nm98LT87Z7yErKvIqMp93OEX9TDojqqtItgryHgSQJQ="; + }; + + pythonRemoveDeps = [ "setuptools" ]; + + nativeBuildInputs = [ + pythonRelaxDepsHook + setuptools + ]; + + propagatedBuildInputs = [ + watchdog + portalocker + pathtools + ]; + + preCheck = '' + substituteInPlace pytest.ini \ + --replace \ + "--cov" \ + "#--cov" + ''; + + nativeCheckInputs = [ + pytestCheckHook + pymongo + dnspython + pymongo-inmemory + pandas + ]; + + disabledTests = [ + # touches network + "test_mongetter_default_param" + "test_stale_after_applies_dynamically" + "test_next_time_applies_dynamically" + "test_wait_for_calc_" + "test_precache_value" + "test_ignore_self_in_methods" + "test_mongo_index_creation" + "test_mongo_core" + + # don't test formatting + "test_flake8" + ]; + + preBuild = '' + export HOME="$(mktemp -d)" + ''; + + pythonImportsCheck = [ + "cachier" + "cachier.scripts" + ]; + + meta = { + homepage = "https://github.com/python-cachier/cachier"; + description = "Persistent, stale-free, local and cross-machine caching for functions"; + maintainers = with lib.maintainers; [ pbsds ]; + license = lib.licenses.mit; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f629c30fa769..06b377a746c1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1691,6 +1691,8 @@ self: super: with self; { cacheyou = callPackage ../development/python-modules/cacheyou { }; + cachier = callPackage ../development/python-modules/cachier { }; + cachy = callPackage ../development/python-modules/cachy { }; cadquery = callPackage ../development/python-modules/cadquery { From 38c1400f67f6af73821d5be82f0ddab548e707e2 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 1 Jan 2023 23:43:00 +0000 Subject: [PATCH 112/346] dockerTools: use makeOverridable for buildImage family of functions this allows nix users to modify existing images without having to rely on container image inheritance mechanisms via fromImage --- pkgs/build-support/docker/default.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/build-support/docker/default.nix b/pkgs/build-support/docker/default.nix index 9f57804e957d..1ac0a69f7451 100644 --- a/pkgs/build-support/docker/default.nix +++ b/pkgs/build-support/docker/default.nix @@ -487,7 +487,7 @@ rec { ''; }; - buildLayeredImage = { name, ... }@args: + buildLayeredImage = lib.makeOverridable ({ name, ... }@args: let stream = streamLayeredImage args; in @@ -496,7 +496,8 @@ rec { inherit (stream) imageName; passthru = { inherit (stream) imageTag; }; nativeBuildInputs = [ pigz ]; - } "${stream} | pigz -nTR > $out"; + } "${stream} | pigz -nTR > $out" + ); # 1. extract the base image # 2. create the layer @@ -504,7 +505,7 @@ rec { # 4. compute the layer id # 5. put the layer in the image # 6. repack the image - buildImage = + buildImage = lib.makeOverridable ( args@{ # Image name. name @@ -751,7 +752,8 @@ rec { ''; in - checked result; + checked result + ); # Merge the tarballs of images built with buildImage into a single # tarball that contains all images. Running `docker load` on the resulting @@ -837,7 +839,7 @@ rec { }) ); - streamLayeredImage = + streamLayeredImage = lib.makeOverridable ( { # Image Name name @@ -1046,7 +1048,8 @@ rec { makeWrapper ${streamScript} $out --add-flags ${conf} ''; in - result; + result + ); # This function streams a docker image that behaves like a nix-shell for a derivation streamNixShellImage = From 680dfee1714545c59edcc8a7755755f5164f5307 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 10 Sep 2023 22:05:48 +0100 Subject: [PATCH 113/346] 23.11 release notes: add note on dockerTools & makeOverridable --- nixos/doc/manual/release-notes/rl-2311.section.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/doc/manual/release-notes/rl-2311.section.md b/nixos/doc/manual/release-notes/rl-2311.section.md index 307aeee6020a..952ccc9a5b06 100644 --- a/nixos/doc/manual/release-notes/rl-2311.section.md +++ b/nixos/doc/manual/release-notes/rl-2311.section.md @@ -249,6 +249,8 @@ The module update takes care of the new config syntax and the data itself (user - `programs.gnupg.agent.pinentryFlavor` is now set in `/etc/gnupg/gpg-agent.conf`, and will no longer take precedence over a `pinentry-program` set in `~/.gnupg/gpg-agent.conf`. +- `dockerTools.buildImage`, `dockerTools.buildLayeredImage` and `dockerTools.streamLayeredImage` now use `lib.makeOverridable` to allow `dockerTools`-based images to be customized more efficiently at the nix-level. + - `services.influxdb2` now supports doing an automatic initial setup and provisioning of users, organizations, buckets and authentication tokens, see [#249502](https://github.com/NixOS/nixpkgs/pull/249502) for more details. - `wrapHelm` now exposes `passthru.pluginsDir` which can be passed to `helmfile`. For convenience, a top-level package `helmfile-wrapped` has been added, which inherits `passthru.pluginsDir` from `kubernetes-helm-wrapped`. See [#217768](https://github.com/NixOS/nixpkgs/issues/217768) for details. From a677beb85044d75be0b6a793efd7d2aeb1d948d6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 11 Sep 2023 22:21:13 +0000 Subject: [PATCH 114/346] python310Packages.google-cloud-pubsub: 2.18.3 -> 2.18.4 --- .../python-modules/google-cloud-pubsub/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/google-cloud-pubsub/default.nix b/pkgs/development/python-modules/google-cloud-pubsub/default.nix index 79beffc5125d..943d55dab406 100644 --- a/pkgs/development/python-modules/google-cloud-pubsub/default.nix +++ b/pkgs/development/python-modules/google-cloud-pubsub/default.nix @@ -16,14 +16,14 @@ buildPythonPackage rec { pname = "google-cloud-pubsub"; - version = "2.18.3"; + version = "2.18.4"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-tAcSM55fgbegNbC+iyrpBmhKQWLhGaK5qzO8mUuhty8="; + hash = "sha256-Muth/UwdxshC9ZTWnZr6gFROOzJ6pkChZOtvsCAery0="; }; propagatedBuildInputs = [ From 0a176dfc4cea922d852a227c4f1c39f30b6eaf09 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 11 Sep 2023 23:41:02 +0000 Subject: [PATCH 115/346] libvirt: 9.6.0 -> 9.7.0 --- pkgs/development/libraries/libvirt/default.nix | 4 ++-- pkgs/development/python-modules/libvirt/default.nix | 4 ++-- pkgs/top-level/perl-packages.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index 9b63d4aa38e7..658a24b8d814 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -114,13 +114,13 @@ stdenv.mkDerivation rec { # NOTE: You must also bump: # # SysVirt in - version = "9.6.0"; + version = "9.7.0"; src = fetchFromGitLab { owner = pname; repo = pname; rev = "v${version}"; - sha256 = "sha256-dQr6bUaZOX1MN+MZxbsPqbv3bsyyWBM0SBYlSnV04K0="; + sha256 = "sha256-7huo2UsbNG/HG2dpdVT5qcJuFmYZE6Jdave8Gb1kHME="; fetchSubmodules = true; }; diff --git a/pkgs/development/python-modules/libvirt/default.nix b/pkgs/development/python-modules/libvirt/default.nix index 9c9509b559d8..abc87f9d787c 100644 --- a/pkgs/development/python-modules/libvirt/default.nix +++ b/pkgs/development/python-modules/libvirt/default.nix @@ -2,13 +2,13 @@ buildPythonPackage rec { pname = "libvirt"; - version = "9.6.0"; + version = "9.7.0"; src = fetchFromGitLab { owner = "libvirt"; repo = "libvirt-python"; rev = "v${version}"; - hash = "sha256-DIyvd13BeKP4HzgHz1FGUTau19MJgBKPiHnpK5nq0os="; + hash = "sha256-DFZPZx+jkxdNha+h50IXxl6wOwA1VjudRICgxD2V4+k="; }; nativeBuildInputs = [ pkg-config ]; diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index c16905e5eb9d..f960bf8bd59f 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -23064,12 +23064,12 @@ with self; { SysVirt = buildPerlModule rec { pname = "Sys-Virt"; - version = "9.4.0"; + version = "9.7.0"; src = fetchFromGitLab { owner = "libvirt"; repo = "libvirt-perl"; rev = "v${version}"; - hash = "sha256-3ER6kcUfNM5ULhN/MlOil4Rx3O84fLnIvH+Cb/oXTFM="; + hash = "sha256-tXXB6Gj27oFZv9WD4dXWdY55jDDLrGYbud4qoyjNe5A="; }; nativeBuildInputs = [ pkgs.pkg-config ]; buildInputs = [ pkgs.libvirt CPANChanges TestPod TestPodCoverage XMLXPath ]; From 0cc35e3eac146453fd153aa8cab38e56cb1b44f5 Mon Sep 17 00:00:00 2001 From: Danil Suetin Date: Mon, 11 Sep 2023 10:21:17 +0700 Subject: [PATCH 116/346] python3Packages.gps3: 0.33.3 -> 2017-11-01 --- pkgs/development/python-modules/gps3/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/gps3/default.nix b/pkgs/development/python-modules/gps3/default.nix index 76321182dcb6..95e1c136031e 100644 --- a/pkgs/development/python-modules/gps3/default.nix +++ b/pkgs/development/python-modules/gps3/default.nix @@ -5,13 +5,13 @@ buildPythonPackage rec { pname = "gps3"; - version = "0.33.3"; + version = "unstable-2017-11-01"; src = fetchFromGitHub { - owner = "onkelbeh"; + owner = "wadda"; repo = pname; - rev = version; - sha256 = "0a0qpk7d2b1cld58qcdn6bxrkil6ascs51af01dy4p83062h1hi6"; + rev = "91adcd7073b891b135b2a46d039ce2125cf09a09"; + hash = "sha256-sVK61l8YunKAGFTSAq/m5aUGFfnizwhqTYbdznBIKfk="; }; # Project has no tests @@ -20,7 +20,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python client for GPSD"; - homepage = "https://github.com/onkelbeh/gps3"; + homepage = "https://github.com/wadda/gps3"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; From 879ce8e7cf787bb8acee987bded27057d1b8ad13 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 12 Sep 2023 01:21:18 +0000 Subject: [PATCH 117/346] python310Packages.qutip: 4.7.2 -> 4.7.3 --- pkgs/development/python-modules/qutip/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/qutip/default.nix b/pkgs/development/python-modules/qutip/default.nix index 43f3b9d8cfa6..0b58eafa398d 100644 --- a/pkgs/development/python-modules/qutip/default.nix +++ b/pkgs/development/python-modules/qutip/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "qutip"; - version = "4.7.2"; + version = "4.7.3"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = pname; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-qItj+MSiFKBgRiz/1+AWsmMzdaQs6rFT1FWWHbReudY="; + hash = "sha256-cpzUHjZBpAbNEnYRuY1wUZouAEAgBaN9rWdxRSfI3bs="; }; nativeBuildInputs = [ From 476a4158be2a1ec7eb215fe561d9f01598b47c3e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 12 Sep 2023 02:44:55 +0000 Subject: [PATCH 118/346] python310Packages.textual: 0.35.1 -> 0.36.0 --- pkgs/development/python-modules/textual/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/textual/default.nix b/pkgs/development/python-modules/textual/default.nix index 23d332c4cbd1..72999fc61845 100644 --- a/pkgs/development/python-modules/textual/default.nix +++ b/pkgs/development/python-modules/textual/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { pname = "textual"; - version = "0.35.1"; + version = "0.36.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -31,7 +31,7 @@ buildPythonPackage rec { owner = "Textualize"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-WOYS1bovS6OGmFnJaxvEpqM3jRSzQg1M0vQGv1yfcnw="; + hash = "sha256-GH5GhXHA/6r3UNeM4YW+khyh1HnyUQBFcSNFaJwFz9c="; }; nativeBuildInputs = [ From 6195c0e8081b03fefa341b73fa5a0a8695b70fff Mon Sep 17 00:00:00 2001 From: Emily Trau Date: Mon, 11 Sep 2023 20:17:23 -0700 Subject: [PATCH 119/346] minimal-bootstrap.bash: add `bin/sh` symlink --- pkgs/os-specific/linux/minimal-bootstrap/bash/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/os-specific/linux/minimal-bootstrap/bash/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/bash/default.nix index 9c9682fdf9d5..dea5ad9f017f 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/bash/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/bash/default.nix @@ -95,4 +95,5 @@ bootBash.runCommand "${pname}-${version}" { # Install make install + ln -s bash $out/bin/sh '' From 04a90698aa2615d33eb5360a6cb4de3f1cf3571a Mon Sep 17 00:00:00 2001 From: Emily Trau Date: Mon, 11 Sep 2023 20:21:51 -0700 Subject: [PATCH 120/346] minimal-bootstrap.gawk-mes: rename from gawk --- pkgs/os-specific/linux/minimal-bootstrap/default.nix | 12 ++++++++++-- .../minimal-bootstrap/gawk/{default.nix => mes.nix} | 0 2 files changed, 10 insertions(+), 2 deletions(-) rename pkgs/os-specific/linux/minimal-bootstrap/gawk/{default.nix => mes.nix} (100%) diff --git a/pkgs/os-specific/linux/minimal-bootstrap/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/default.nix index 2a10a3395ba7..83bf415c24d6 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/default.nix @@ -19,6 +19,7 @@ lib.makeScope bootBash = bash_2_05; gcc = gcc2; glibc = glibc22; + gawk = gawk-mes; }; binutils = callPackage ./binutils { @@ -27,11 +28,13 @@ lib.makeScope binutils = binutils-mes; glibc = glibc22; sed = heirloom.sed; + gawk = gawk-mes; }; binutils-mes = callPackage ./binutils { bash = bash_2_05; tinycc = tinycc-mes; sed = heirloom.sed; + gawk = gawk-mes; mesBootstrap = true; }; @@ -46,15 +49,17 @@ lib.makeScope bash = bash_2_05; gcc = gcc2; glibc = glibc22; + gawk = gawk-mes; }; findutils = callPackage ./findutils { bash = bash_2_05; gcc = gcc2; glibc = glibc22; + gawk = gawk-mes; }; - gawk = callPackage ./gawk { + gawk-mes = callPackage ./gawk/mes.nix { bash = bash_2_05; tinycc = tinycc-mes; gnused = gnused-mes; @@ -76,11 +81,13 @@ lib.makeScope gcc46 = callPackage ./gcc/4.6.nix { gcc = gcc2; glibc = glibc22; + gawk = gawk-mes; }; inherit (callPackage ./glibc { bash = bash_2_05; gnused = gnused-mes; + gawk = gawk-mes; }) glibc22; gnugrep = callPackage ./gnugrep { @@ -140,6 +147,7 @@ lib.makeScope xz = callPackage ./xz { bash = bash_2_05; tinycc = tinycc-mes; + gawk = gawk-mes; inherit (heirloom) sed; }; @@ -153,7 +161,7 @@ lib.makeScope echo ${bzip2.tests.get-version} echo ${diffutils.tests.get-version} echo ${findutils.tests.get-version} - echo ${gawk.tests.get-version} + echo ${gawk-mes.tests.get-version} echo ${gcc2.tests.get-version} echo ${gcc2-mes.tests.get-version} echo ${gcc46.tests.get-version} diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gawk/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/gawk/mes.nix similarity index 100% rename from pkgs/os-specific/linux/minimal-bootstrap/gawk/default.nix rename to pkgs/os-specific/linux/minimal-bootstrap/gawk/mes.nix From 8dedcd8658f8e603eecc51bee93d90f8866f52ce Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 12 Sep 2023 03:40:22 +0000 Subject: [PATCH 121/346] python310Packages.hypothesmith: 0.2.3 -> 0.3.0 --- pkgs/development/python-modules/hypothesmith/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/hypothesmith/default.nix b/pkgs/development/python-modules/hypothesmith/default.nix index 61aae4e4f74e..a559d20ff625 100644 --- a/pkgs/development/python-modules/hypothesmith/default.nix +++ b/pkgs/development/python-modules/hypothesmith/default.nix @@ -11,11 +11,11 @@ buildPythonPackage rec { pname = "hypothesmith"; - version = "0.2.3"; + version = "0.3.0"; src = fetchPypi { inherit pname version; - hash = "sha256-vc6EXsmE5uP+0h5l0ugrjrxt5cpeuTZJ39dgNMWQakY="; + hash = "sha256-Uj2gTAY7hzko1sKO8WUGz2S/MXdwOYN+F+a73G4szNs="; }; patches = [ From 41edd7597449d8e49334871457d93f897b54fab2 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 12 Sep 2023 04:20:00 +0000 Subject: [PATCH 122/346] postgresqlPackages.plpgsql_check: 2.4.0 -> 2.5.0 Diff: https://github.com/okbob/plpgsql_check/compare/v2.4.0...v2.5.0 Changelog: https://github.com/okbob/plpgsql_check/releases/tag/v2.5.0 --- pkgs/servers/sql/postgresql/ext/plpgsql_check.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/sql/postgresql/ext/plpgsql_check.nix b/pkgs/servers/sql/postgresql/ext/plpgsql_check.nix index 8700a82ad823..83e456069267 100644 --- a/pkgs/servers/sql/postgresql/ext/plpgsql_check.nix +++ b/pkgs/servers/sql/postgresql/ext/plpgsql_check.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "plpgsql_check"; - version = "2.4.0"; + version = "2.5.0"; src = fetchFromGitHub { owner = "okbob"; repo = pname; rev = "v${version}"; - hash = "sha256-flRkPyHLc/cf+JQK04/Vl0I6ILx1GxWYMy9FnT9M//Q="; + hash = "sha256-6S1YG/4KGlgtTBrxh3p6eMd/aCovK/QME4f2z0YTUxc="; }; buildInputs = [ postgresql ]; From 2d857eae06decfe6eb25ac6df659dc51af0c44c7 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 12 Sep 2023 04:20:00 +0000 Subject: [PATCH 123/346] vault: fix build on darwin --- pkgs/tools/security/vault/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/security/vault/default.nix b/pkgs/tools/security/vault/default.nix index 19d525cc5883..b477407e35f8 100644 --- a/pkgs/tools/security/vault/default.nix +++ b/pkgs/tools/security/vault/default.nix @@ -15,7 +15,9 @@ buildGoModule rec { sha256 = "sha256-c3WoSowF1Z0E9L8DdfOeiluYJzVnzltujE3tKlrLvPQ="; }; - vendorHash = "sha256-2NUB9PLYZr4dnWpuYXkTTII4cRT79zLVU+C9z1GKDxk="; + vendorHash = "sha256-IUMBp+2TGtp55XnHo46aX7fYRUP/8+Vhe47KqR7zUws="; + + proxyVendor = true; subPackages = [ "." ]; From 468b748170ba8e9bc921272e7e3802cbb79ed1e7 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 12 Sep 2023 04:20:00 +0000 Subject: [PATCH 124/346] clamav: fix build on darwin --- pkgs/top-level/all-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e97e9ca1cf5b..a9c83619a028 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7131,8 +7131,8 @@ with pkgs; ckb-next = libsForQt5.callPackage ../tools/misc/ckb-next { }; - clamav = callPackage ../tools/security/clamav { - inherit (darwin.apple_sdk.frameworks) Foundation; + clamav = darwin.apple_sdk_11_0.callPackage ../tools/security/clamav { + inherit (darwin.apple_sdk_11_0.frameworks) Foundation; }; client-ip-echo = callPackage ../servers/misc/client-ip-echo { }; From 5a3d1bcb12edfeb665e41351163fd1628cb29c23 Mon Sep 17 00:00:00 2001 From: Emily Trau Date: Mon, 11 Sep 2023 21:44:03 -0700 Subject: [PATCH 125/346] minimal-bootstrap.gawk: init at 4.1.4 --- .../linux/minimal-bootstrap/default.nix | 8 +++ .../linux/minimal-bootstrap/gawk/common.nix | 11 +++ .../linux/minimal-bootstrap/gawk/default.nix | 68 +++++++++++++++++++ .../linux/minimal-bootstrap/gawk/mes.nix | 13 +--- 4 files changed, 90 insertions(+), 10 deletions(-) create mode 100644 pkgs/os-specific/linux/minimal-bootstrap/gawk/common.nix create mode 100644 pkgs/os-specific/linux/minimal-bootstrap/gawk/default.nix diff --git a/pkgs/os-specific/linux/minimal-bootstrap/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/default.nix index 83bf415c24d6..b8807eec0902 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/default.nix @@ -65,6 +65,13 @@ lib.makeScope gnused = gnused-mes; }; + gawk = callPackage ./gawk { + bash = bash_2_05; + gcc = gcc2; + glibc = glibc22; + bootGawk = gawk-mes; + }; + gcc2 = callPackage ./gcc/2.nix { bash = bash_2_05; gcc = gcc2-mes; @@ -162,6 +169,7 @@ lib.makeScope echo ${diffutils.tests.get-version} echo ${findutils.tests.get-version} echo ${gawk-mes.tests.get-version} + echo ${gawk.tests.get-version} echo ${gcc2.tests.get-version} echo ${gcc2-mes.tests.get-version} echo ${gcc46.tests.get-version} diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gawk/common.nix b/pkgs/os-specific/linux/minimal-bootstrap/gawk/common.nix new file mode 100644 index 000000000000..d95c66d86337 --- /dev/null +++ b/pkgs/os-specific/linux/minimal-bootstrap/gawk/common.nix @@ -0,0 +1,11 @@ +{ lib }: + +{ + meta = with lib; { + description = "GNU implementation of the Awk programming language"; + homepage = "https://www.gnu.org/software/gawk"; + license = licenses.gpl3Plus; + maintainers = teams.minimal-bootstrap.members; + platforms = platforms.unix; + }; +} diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gawk/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/gawk/default.nix new file mode 100644 index 000000000000..935414f21760 --- /dev/null +++ b/pkgs/os-specific/linux/minimal-bootstrap/gawk/default.nix @@ -0,0 +1,68 @@ +{ lib +, buildPlatform +, hostPlatform +, fetchurl +, bash +, gcc +, glibc +, binutils +, linux-headers +, gnumake +, gnugrep +, gnused +, gnutar +, gzip +, bootGawk +}: +let + inherit (import ./common.nix { inherit lib; }) meta; + pname = "gawk"; + # >= 4.2.0 fails to cleanly build. may be worth investigating in the future. + # for now this version is sufficient to build glibc 2.16 + version = "4.1.4"; + + src = fetchurl { + url = "mirror://gnu/gawk/gawk-${version}.tar.gz"; + sha256 = "0dadjkpyyizmyd0l098qps8lb39r0vrz3xl3hwz2cmjs5c70h0wc"; + }; +in +bash.runCommand "${pname}-${version}" { + inherit pname version meta; + + nativeBuildInputs = [ + gcc + binutils + gnumake + gnused + gnugrep + gnutar + gzip + bootGawk + ]; + + passthru.tests.get-version = result: + bash.runCommand "${pname}-get-version-${version}" {} '' + ${result}/bin/awk --version + mkdir $out + ''; +} '' + # Unpack + tar xzf ${src} + cd gawk-${version} + + # Configure + export C_INCLUDE_PATH="${glibc}/include:${linux-headers}/include" + export LIBRARY_PATH="${glibc}/lib" + export LIBS="-lc -lnss_files -lnss_dns -lresolv" + bash ./configure \ + --prefix=$out \ + --build=${buildPlatform.config} \ + --host=${hostPlatform.config} + + # Build + make gawk + + # Install + install -D gawk $out/bin/gawk + ln -s gawk $out/bin/awk +'' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gawk/mes.nix b/pkgs/os-specific/linux/minimal-bootstrap/gawk/mes.nix index d840a204416d..c14399309306 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gawk/mes.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gawk/mes.nix @@ -10,7 +10,8 @@ , gnugrep }: let - pname = "gawk"; + inherit (import ./common.nix { inherit lib; }) meta; + pname = "gawk-mes"; # >=3.1.x is incompatible with mes-libc version = "3.0.6"; @@ -25,7 +26,7 @@ let ]; in bash.runCommand "${pname}-${version}" { - inherit pname version; + inherit pname version meta; nativeBuildInputs = [ tinycc.compiler @@ -40,14 +41,6 @@ bash.runCommand "${pname}-${version}" { ${result}/bin/awk --version mkdir $out ''; - - meta = with lib; { - description = "GNU implementation of the Awk programming language"; - homepage = "https://www.gnu.org/software/gawk"; - license = licenses.gpl3Plus; - maintainers = teams.minimal-bootstrap.members; - platforms = platforms.unix; - }; } '' # Unpack ungz --file ${src} --output gawk.tar From 5845f8a7f004d84ce3990f9e92706fc577d406d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 11 Sep 2023 15:11:41 +0200 Subject: [PATCH 126/346] matrix-hook: init at 1.0.0 --- pkgs/by-name/ma/matrix-hook/package.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pkgs/by-name/ma/matrix-hook/package.nix diff --git a/pkgs/by-name/ma/matrix-hook/package.nix b/pkgs/by-name/ma/matrix-hook/package.nix new file mode 100644 index 000000000000..ed9093da9957 --- /dev/null +++ b/pkgs/by-name/ma/matrix-hook/package.nix @@ -0,0 +1,23 @@ +{ lib, buildGoModule, fetchFromGitHub }: + +buildGoModule rec { + pname = "matrix-hook"; + version = "1.0.0"; + src = fetchFromGitHub { + owner = "pinpox"; + repo = "matrix-hook"; + rev = "v${version}"; + hash = "sha256-YmDsibVlAWLEG5QcqDImVb6RJfrfW6zrFnOEMO3Zxcw="; + }; + vendorHash = "sha256-185Wz9IpJRBmunl+KGj/iy37YeszbT3UYzyk9V994oQ="; + postInstall = '' + install message.html.tmpl -Dt $out + ''; + + meta = with lib; { + description = "A simple webhook for matrix"; + homepage = "https://github.com/pinpox/matrix-hook"; + license = licenses.gpl3; + maintainers = with maintainers; [ pinpox mic92 zowoq ]; + }; +} From a056c7dd070e8a0fa7b90bfcb42b6806fa8af38a Mon Sep 17 00:00:00 2001 From: Emily Trau Date: Wed, 17 May 2023 12:12:58 +1000 Subject: [PATCH 127/346] minimal-bootstrap.stage0-posix: support x86_64-linux --- .../stage0-posix/bootstrap-sources.nix | 8 - .../stage0-posix/default.nix | 10 +- .../minimal-bootstrap/stage0-posix/hex0.nix | 28 ++- .../stage0-posix/kaem/default.nix | 3 +- .../stage0-posix/kaem/minimal.nix | 6 +- ...ge0-posix-x86.nix => mescc-tools-boot.nix} | 167 +++++++++--------- .../stage0-posix/mescc-tools-extra/build.kaem | 2 +- .../mescc-tools-extra/default.nix | 10 +- .../stage0-posix/mescc-tools/build.kaem | 100 +++++------ .../stage0-posix/mescc-tools/default.nix | 42 ++--- .../stage0-posix/platforms.nix | 29 +++ 11 files changed, 231 insertions(+), 174 deletions(-) rename pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/{stage0-posix-x86.nix => mescc-tools-boot.nix} (68%) create mode 100644 pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/platforms.nix diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/bootstrap-sources.nix b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/bootstrap-sources.nix index 82ee4d12386e..203b480326e9 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/bootstrap-sources.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/bootstrap-sources.nix @@ -9,14 +9,6 @@ rec { outputHashAlgo = "sha256"; outputHash = "sha256-FpMp7z+B3cR3LkQ+PooH/b1/NlxH8NHVJNWifaPWt4U="; - # This 256 byte seed is the only pre-compiled binary in the bootstrap chain. - hex0-seed = import { - name = "hex0-seed-${version}"; - url = "https://github.com/oriansj/bootstrap-seeds/raw/b1263ff14a17835f4d12539226208c426ced4fba/POSIX/x86/hex0-seed"; - hash = "sha256-QU3RPGy51W7M2xnfFY1IqruKzusrSLU+L190ztN6JW8="; - executable = true; - }; - /* Since `make-minimal-bootstrap-sources` requires nixpkgs and nix it will create a circular dependency if it is used in place of the diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/default.nix index c15223a43d48..9f3d61b92bc9 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/default.nix @@ -3,21 +3,23 @@ }: lib.makeScope newScope (self: with self; { - inherit (self.callPackage ./bootstrap-sources.nix {}) - version hex0-seed minimal-bootstrap-sources; + inherit (callPackage ./platforms.nix { }) platforms stage0Arch m2libcArch m2libcOS baseAddress; + + inherit (self.callPackage ./bootstrap-sources.nix {}) version minimal-bootstrap-sources; src = minimal-bootstrap-sources; m2libc = src + "/M2libc"; hex0 = callPackage ./hex0.nix { }; + inherit (self.hex0) hex0-seed; kaem = callPackage ./kaem { }; kaem-minimal = callPackage ./kaem/minimal.nix { }; - stage0-posix-x86 = callPackage ./stage0-posix-x86.nix { }; + mescc-tools-boot = callPackage ./mescc-tools-boot.nix { }; - inherit (self.stage0-posix-x86) blood-elf-0 hex2 kaem-unwrapped M1 M2; + inherit (self.mescc-tools-boot) blood-elf-0 hex2 kaem-unwrapped M1 M2; mescc-tools = callPackage ./mescc-tools { }; diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/hex0.nix b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/hex0.nix index b85b2f2cac14..996f2f33ea35 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/hex0.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/hex0.nix @@ -1,15 +1,33 @@ { lib , derivationWithMeta -, hex0-seed +, hostPlatform , src , version +, platforms +, stage0Arch }: + +let + hash = { + "x86" = "sha256-QU3RPGy51W7M2xnfFY1IqruKzusrSLU+L190ztN6JW8="; + "AMD64" = "sha256-RCgK9oZRDQUiWLVkcIBSR2HeoB+Bh0czthrpjFEkCaY="; + }.${stage0Arch} or (throw "Unsupported system: ${hostPlatform.system}"); + + # Pinned from https://github.com/oriansj/stage0-posix/commit/3189b5f325b7ef8b88e3edec7c1cde4fce73c76c + # This 256 byte seed is the only pre-compiled binary in the bootstrap chain. + hex0-seed = import { + name = "hex0-seed"; + url = "https://github.com/oriansj/bootstrap-seeds/raw/b1263ff14a17835f4d12539226208c426ced4fba/POSIX/${stage0Arch}/hex0-seed"; + executable = true; + inherit hash; + }; +in derivationWithMeta { inherit version; pname = "hex0"; builder = hex0-seed; args = [ - "${src}/x86/hex0_x86.hex0" + "${src}/${stage0Arch}/hex0_${stage0Arch}.hex0" (placeholder "out") ]; @@ -18,11 +36,13 @@ derivationWithMeta { homepage = "https://github.com/oriansj/stage0-posix"; license = licenses.gpl3Plus; maintainers = teams.minimal-bootstrap.members; - platforms = [ "i686-linux" ]; + inherit platforms; }; + passthru = { inherit hex0-seed; }; + # Ensure the untrusted hex0-seed binary produces a known-good hex0 outputHashMode = "recursive"; outputHashAlgo = "sha256"; - outputHash = "sha256-QU3RPGy51W7M2xnfFY1IqruKzusrSLU+L190ztN6JW8="; + outputHash = hash; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/kaem/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/kaem/default.nix index 77e9a8e8d63f..547790835c5d 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/kaem/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/kaem/default.nix @@ -6,6 +6,7 @@ , mescc-tools , mescc-tools-extra , version +, platforms }: # Once mescc-tools-extra is available we can install kaem at /bin/kaem @@ -46,6 +47,6 @@ derivationWithMeta { homepage = "https://github.com/oriansj/mescc-tools"; license = licenses.gpl3Plus; maintainers = teams.minimal-bootstrap.members; - platforms = [ "i686-linux" ]; + inherit platforms; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/kaem/minimal.nix b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/kaem/minimal.nix index 24fc77f8d345..ae31302894aa 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/kaem/minimal.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/kaem/minimal.nix @@ -3,13 +3,15 @@ , src , hex0 , version +, platforms +, stage0Arch }: derivationWithMeta { inherit version; pname = "kaem-minimal"; builder = hex0; args = [ - "${src}/x86/kaem-minimal.hex0" + "${src}/${stage0Arch}/kaem-minimal.hex0" (placeholder "out") ]; @@ -18,7 +20,7 @@ derivationWithMeta { homepage = "https://github.com/oriansj/stage0-posix"; license = licenses.gpl3Plus; maintainers = teams.minimal-bootstrap.members; - platforms = [ "i686-linux" ]; + inherit platforms; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/stage0-posix-x86.nix b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-boot.nix similarity index 68% rename from pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/stage0-posix-x86.nix rename to pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-boot.nix index bcb02537b916..65f0fb4c2ff1 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/stage0-posix-x86.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-boot.nix @@ -1,10 +1,3 @@ -# This is a translation of stage0-posix/stage0-posix/x86/mescc-tools-mini-kaem.kaem to nix -# https://github.com/oriansj/stage0-posix-x86/blob/56e6b8df3e95f4bc04f8b420a4cd8c82c70b9efa/mescc-tools-mini-kaem.kaem -# -# We have access to mini-kaem at this point but it doesn't support substituting -# environment variables. Without variables there's no way of passing in store inputs, -# or the $out path, other than as command line arguments directly - # Mes --- Maxwell Equations of Software # Copyright © 2017,2019 Jan Nieuwenhuizen # Copyright © 2017,2019 Jeremiah Orians @@ -24,19 +17,35 @@ # You should have received a copy of the GNU General Public License # along with Mes. If not, see . +# This is a translation of stage0-posix/stage0-posix/x86/mescc-tools-mini-kaem.kaem to nix +# https://github.com/oriansj/stage0-posix-x86/blob/56e6b8df3e95f4bc04f8b420a4cd8c82c70b9efa/mescc-tools-mini-kaem.kaem +# +# We have access to mini-kaem at this point but it doesn't support substituting +# environment variables. Without variables there's no way of passing in store inputs, +# or the $out path, other than as command line arguments directly + # Warning all binaries prior to the use of blood-elf will not be readable by # Objdump, you may need to use ndism or gdb to view the assembly in the binary. { lib , derivationWithMeta +, hostPlatform , hex0 , m2libc , src , version +, platforms +, stage0Arch +, m2libcArch +, baseAddress }: rec { out = placeholder "out"; + endianFlag = if hostPlatform.isLittleEndian then "--little-endian" else "--big-endian"; + + bloodFlags = lib.optional hostPlatform.is64bit "--64"; + run = pname: builder: args: derivationWithMeta { inherit pname version builder args; @@ -46,7 +55,7 @@ rec { homepage = "https://github.com/oriansj/stage0-posix"; license = licenses.gpl3Plus; maintainers = teams.minimal-bootstrap.members; - platforms = [ "i686-linux" ]; + inherit platforms; }; }; @@ -54,7 +63,7 @@ rec { # Phase-1 Build hex1 from hex0 # ################################ - hex1 = run "hex1" hex0 ["${src}/x86/hex1_x86.hex0" out]; + hex1 = run "hex1" hex0 ["${src}/${stage0Arch}/hex1_${stage0Arch}.hex0" out]; # hex1 adds support for single character labels and is available in various forms # in mescc-tools/x86_bootstrap to allow you various ways to verify correctness @@ -63,7 +72,7 @@ rec { # Phase-2 Build hex2 from hex1 # ################################ - hex2-0 = run "hex2" hex1 ["${src}/x86/hex2_x86.hex1" out]; + hex2-0 = run "hex2" hex1 ["${src}/${stage0Arch}/hex2_${stage0Arch}.hex1" out]; # hex2 adds support for long labels and absolute addresses thus allowing it # to function as an effective linker for later stages of the bootstrap @@ -74,7 +83,7 @@ rec { # Phase-2b Build catm from hex2 # ################################# - catm = run "catm" hex2-0 ["${src}/x86/catm_x86.hex2" out]; + catm = run "catm" hex2-0 ["${src}/${stage0Arch}/catm_${stage0Arch}.hex2" out]; # catm removes the need for cat or shell support for redirection by providing # equivalent functionality via catm output_file input1 input2 ... inputN @@ -83,27 +92,27 @@ rec { # Phase-3 Build M0 from hex2 # ############################## - M0_hex2 = run "M0.hex2" catm [out "${src}/x86/ELF-i386.hex2" "${src}/x86/M0_x86.hex2"]; + M0_hex2 = run "M0.hex2" catm [out "${m2libc}/${m2libcArch}/ELF-${m2libcArch}.hex2" "${src}/${stage0Arch}/M0_${stage0Arch}.hex2"]; M0 = run "M0" hex2-0 [M0_hex2 out]; # M0 is the architecture specific version of M1 and is by design single # architecture only and will be replaced by the C code version of M1 ################################ - # Phase-4 Build cc_x86 from M0 # + # Phase-4 Build cc_arch from M0 # ################################ - cc_x86-0_hex2 = run "cc_x86-0.hex2" M0 ["${src}/x86/cc_x86.M1" out]; - cc_x86-1_hex2 = run "cc_x86-1.hex2" catm [out "${src}/x86/ELF-i386.hex2" cc_x86-0_hex2]; - cc_x86 = run "cc_x86" hex2-0 [cc_x86-1_hex2 out]; + cc_arch-0_hex2 = run "cc_arch-0.hex2" M0 ["${src}/${stage0Arch}/cc_${m2libcArch}.M1" out]; + cc_arch-1_hex2 = run "cc_arch-1.hex2" catm [out "${m2libc}/${m2libcArch}/ELF-${m2libcArch}.hex2" cc_arch-0_hex2]; + cc_arch = run "cc_arch" hex2-0 [cc_arch-1_hex2 out]; - ####################################### - # Phase-5 Build M2-Planet from cc_x86 # - ####################################### + ######################################## + # Phase-5 Build M2-Planet from cc_arch # + ######################################## M2-0_c = run "M2-0.c" catm [ out - "${m2libc}/x86/linux/bootstrap.c" + "${m2libc}/${m2libcArch}/linux/bootstrap.c" "${src}/M2-Planet/cc.h" "${m2libc}/bootstrappable.c" "${src}/M2-Planet/cc_globals.c" @@ -114,10 +123,10 @@ rec { "${src}/M2-Planet/cc_macro.c" "${src}/M2-Planet/cc.c" ]; - M2-0_M1 = run "M2-0.M1" cc_x86 [M2-0_c out]; - M2-0-0_M1 = run "M2-0-0.M1" catm [out "${src}/x86/x86_defs.M1" "${src}/x86/libc-core.M1" M2-0_M1]; + M2-0_M1 = run "M2-0.M1" cc_arch [M2-0_c out]; + M2-0-0_M1 = run "M2-0-0.M1" catm [out "${m2libc}/${m2libcArch}/${m2libcArch}_defs.M1" "${m2libc}/${m2libcArch}/libc-core.M1" M2-0_M1]; M2-0_hex2 = run "M2-0.hex2" M0 [M2-0-0_M1 out]; - M2-0-0_hex2 = run "M2-0-0.hex2" catm [out "${src}/x86/ELF-i386.hex2" M2-0_hex2]; + M2-0-0_hex2 = run "M2-0-0.hex2" catm [out "${m2libc}/${m2libcArch}/ELF-${m2libcArch}.hex2" M2-0_hex2]; M2 = run "M2" hex2-0 [M2-0-0_hex2 out]; ############################################ @@ -125,8 +134,8 @@ rec { ############################################ blood-elf-0_M1 = run "blood-elf-0.M1" M2 [ - "--architecture" "x86" - "-f" "${m2libc}/x86/linux/bootstrap.c" + "--architecture" m2libcArch + "-f" "${m2libc}/${m2libcArch}/linux/bootstrap.c" "-f" "${m2libc}/bootstrappable.c" "-f" "${src}/mescc-tools/stringify.c" "-f" "${src}/mescc-tools/blood-elf.c" @@ -134,9 +143,9 @@ rec { "-o" out ]; - blood-elf-0-0_M1 = run "blood-elf-0-0.M1" catm [out "${m2libc}/x86/x86_defs.M1" "${m2libc}/x86/libc-core.M1" blood-elf-0_M1]; + blood-elf-0-0_M1 = run "blood-elf-0-0.M1" catm [out "${m2libc}/${m2libcArch}/${m2libcArch}_defs.M1" "${m2libc}/${m2libcArch}/libc-core.M1" blood-elf-0_M1]; blood-elf-0_hex2 = run "blood-elf-0.hex2" M0 [blood-elf-0-0_M1 out]; - blood-elf-0-0_hex2 = run "blood-elf-0-0.hex2" catm [out "${m2libc}/x86/ELF-x86.hex2" blood-elf-0_hex2]; + blood-elf-0-0_hex2 = run "blood-elf-0-0.hex2" catm [out "${m2libc}/${m2libcArch}/ELF-${m2libcArch}.hex2" blood-elf-0_hex2]; blood-elf-0 = run "blood-elf-0" hex2-0 [blood-elf-0-0_hex2 out]; # This is the last stage where the binaries will not have debug info @@ -147,8 +156,8 @@ rec { ##################################### M1-macro-0_M1 = run "M1-macro-0.M1" M2 [ - "--architecture" "x86" - "-f" "${m2libc}/x86/linux/bootstrap.c" + "--architecture" m2libcArch + "-f" "${m2libc}/${m2libcArch}/linux/bootstrap.c" "-f" "${m2libc}/bootstrappable.c" "-f" "${src}/mescc-tools/stringify.c" "-f" "${src}/mescc-tools/M1-macro.c" @@ -157,10 +166,10 @@ rec { "-o" out ]; - M1-macro-0-footer_M1 = run "M1-macro-0-footer.M1" blood-elf-0 ["-f" M1-macro-0_M1 "--little-endian" "-o" out]; - M1-macro-0-0_M1 = run "M1-macro-0-0.M1" catm [out "${m2libc}/x86/x86_defs.M1" "${m2libc}/x86/libc-core.M1" M1-macro-0_M1 M1-macro-0-footer_M1]; + M1-macro-0-footer_M1 = run "M1-macro-0-footer.M1" blood-elf-0 (bloodFlags ++ ["-f" M1-macro-0_M1 endianFlag "-o" out]); + M1-macro-0-0_M1 = run "M1-macro-0-0.M1" catm [out "${m2libc}/${m2libcArch}/${m2libcArch}_defs.M1" "${m2libc}/${m2libcArch}/libc-core.M1" M1-macro-0_M1 M1-macro-0-footer_M1]; M1-macro-0_hex2 = run "M1-macro-0.hex2" M0 [M1-macro-0-0_M1 out]; - M1-macro-0-0_hex2 = run "M1-macro-0-0.hex2" catm [out "${m2libc}/x86/ELF-x86-debug.hex2" M1-macro-0_hex2]; + M1-macro-0-0_hex2 = run "M1-macro-0-0.hex2" catm [out "${m2libc}/${m2libcArch}/ELF-${m2libcArch}-debug.hex2" M1-macro-0_hex2]; M1-0 = run "M1-0" hex2-0 [M1-macro-0-0_hex2 out]; # This is the last stage where catm will need to be used and the last stage where @@ -172,13 +181,13 @@ rec { ####################################### hex2_linker-0_M1 = run "hex2_linker-0.M1" M2 [ - "--architecture" "x86" + "--architecture" m2libcArch "-f" "${m2libc}/sys/types.h" "-f" "${m2libc}/stddef.h" - "-f" "${m2libc}/x86/linux/unistd.c" - "-f" "${m2libc}/x86/linux/fcntl.c" + "-f" "${m2libc}/${m2libcArch}/linux/unistd.c" + "-f" "${m2libc}/${m2libcArch}/linux/fcntl.c" "-f" "${m2libc}/fcntl.c" - "-f" "${m2libc}/x86/linux/sys/stat.c" + "-f" "${m2libc}/${m2libcArch}/linux/sys/stat.c" "-f" "${m2libc}/stdlib.c" "-f" "${m2libc}/stdio.h" "-f" "${m2libc}/stdio.c" @@ -191,19 +200,19 @@ rec { "-o" out ]; - hex2_linker-0-footer_M1 = run "hex2_linker-0-footer.M1" blood-elf-0 ["-f" hex2_linker-0_M1 "--little-endian" "-o" out]; + hex2_linker-0-footer_M1 = run "hex2_linker-0-footer.M1" blood-elf-0 (bloodFlags ++ ["-f" hex2_linker-0_M1 endianFlag "-o" out]); hex2_linker-0_hex2 = run "hex2_linker-0.hex2" M1-0 [ - "--architecture" "x86" - "--little-endian" - "-f" "${m2libc}/x86/x86_defs.M1" - "-f" "${m2libc}/x86/libc-full.M1" + "--architecture" m2libcArch + endianFlag + "-f" "${m2libc}/${m2libcArch}/${m2libcArch}_defs.M1" + "-f" "${m2libc}/${m2libcArch}/libc-full.M1" "-f" hex2_linker-0_M1 "-f" hex2_linker-0-footer_M1 "-o" out ]; - hex2_linker-0-0_hex2 = run "hex2_linker-0-0.hex2" catm [out "${m2libc}/x86/ELF-x86-debug.hex2" hex2_linker-0_hex2]; + hex2_linker-0-0_hex2 = run "hex2_linker-0-0.hex2" catm [out "${m2libc}/${m2libcArch}/ELF-${m2libcArch}-debug.hex2" hex2_linker-0_hex2]; hex2-1 = run "hex2-1" hex2-0 [hex2_linker-0-0_hex2 out]; @@ -215,12 +224,12 @@ rec { ################################### M1-macro-1_M1 = run "M1-macro-1.M1" M2 [ - "--architecture" "x86" + "--architecture" m2libcArch "-f" "${m2libc}/sys/types.h" "-f" "${m2libc}/stddef.h" - "-f" "${m2libc}/x86/linux/fcntl.c" + "-f" "${m2libc}/${m2libcArch}/linux/fcntl.c" "-f" "${m2libc}/fcntl.c" - "-f" "${m2libc}/x86/linux/unistd.c" + "-f" "${m2libc}/${m2libcArch}/linux/unistd.c" "-f" "${m2libc}/string.c" "-f" "${m2libc}/stdlib.c" "-f" "${m2libc}/stdio.h" @@ -232,23 +241,23 @@ rec { "-o" out ]; - M1-macro-1-footer_M1 = run "M1-macro-1-footer.M1" blood-elf-0 ["-f" M1-macro-1_M1 "--little-endian" "-o" out]; + M1-macro-1-footer_M1 = run "M1-macro-1-footer.M1" blood-elf-0 (bloodFlags ++ ["-f" M1-macro-1_M1 endianFlag "-o" out]); M1-macro-1_hex2 = run "M1-macro-1.hex2" M1-0 [ - "--architecture" "x86" - "--little-endian" - "-f" "${m2libc}/x86/x86_defs.M1" - "-f" "${m2libc}/x86/libc-full.M1" + "--architecture" m2libcArch + endianFlag + "-f" "${m2libc}/${m2libcArch}/${m2libcArch}_defs.M1" + "-f" "${m2libc}/${m2libcArch}/libc-full.M1" "-f" M1-macro-1_M1 "-f" M1-macro-1-footer_M1 "-o" out ]; M1 = run "M1" hex2-1 [ - "--architecture" "x86" - "--little-endian" - "--base-address" "0x8048000" - "-f" "${m2libc}/x86/ELF-x86-debug.hex2" + "--architecture" m2libcArch + endianFlag + "--base-address" baseAddress + "-f" "${m2libc}/${m2libcArch}/ELF-${m2libcArch}-debug.hex2" "-f" M1-macro-1_hex2 "-o" out ]; @@ -258,13 +267,13 @@ rec { ###################################### hex2_linker-2_M1 = run "hex2_linker-2.M1" M2 [ - "--architecture" "x86" + "--architecture" m2libcArch "-f" "${m2libc}/sys/types.h" "-f" "${m2libc}/stddef.h" - "-f" "${m2libc}/x86/linux/unistd.c" - "-f" "${m2libc}/x86/linux/fcntl.c" + "-f" "${m2libc}/${m2libcArch}/linux/unistd.c" + "-f" "${m2libc}/${m2libcArch}/linux/fcntl.c" "-f" "${m2libc}/fcntl.c" - "-f" "${m2libc}/x86/linux/sys/stat.c" + "-f" "${m2libc}/${m2libcArch}/linux/sys/stat.c" "-f" "${m2libc}/stdlib.c" "-f" "${m2libc}/stdio.h" "-f" "${m2libc}/stdio.c" @@ -277,23 +286,23 @@ rec { "-o" out ]; - hex2_linker-2-footer_M1 = run "hex2_linker-2-footer.M1" blood-elf-0 ["-f" hex2_linker-2_M1 "--little-endian" "-o" out]; + hex2_linker-2-footer_M1 = run "hex2_linker-2-footer.M1" blood-elf-0 (bloodFlags ++ ["-f" hex2_linker-2_M1 endianFlag "-o" out]); hex2_linker-2_hex2 = run "hex2_linker-2.hex2" M1 [ - "--architecture" "x86" - "--little-endian" - "-f" "${m2libc}/x86/x86_defs.M1" - "-f" "${m2libc}/x86/libc-full.M1" + "--architecture" m2libcArch + endianFlag + "-f" "${m2libc}/${m2libcArch}/${m2libcArch}_defs.M1" + "-f" "${m2libc}/${m2libcArch}/libc-full.M1" "-f" hex2_linker-2_M1 "-f" hex2_linker-2-footer_M1 "-o" out ]; hex2 = run "hex2" hex2-1 [ - "--architecture" "x86" - "--little-endian" - "--base-address" "0x8048000" - "-f" "${m2libc}/x86/ELF-x86-debug.hex2" + "--architecture" m2libcArch + endianFlag + "--base-address" baseAddress + "-f" "${m2libc}/${m2libcArch}/ELF-${m2libcArch}-debug.hex2" "-f" hex2_linker-2_hex2 "-o" out ]; @@ -303,12 +312,12 @@ rec { ###################################### kaem_M1 = run "kaem.M1" M2 [ - "--architecture" "x86" + "--architecture" m2libcArch "-f" "${m2libc}/sys/types.h" "-f" "${m2libc}/stddef.h" "-f" "${m2libc}/string.c" - "-f" "${m2libc}/x86/linux/unistd.c" - "-f" "${m2libc}/x86/linux/fcntl.c" + "-f" "${m2libc}/${m2libcArch}/linux/unistd.c" + "-f" "${m2libc}/${m2libcArch}/linux/fcntl.c" "-f" "${m2libc}/fcntl.c" "-f" "${m2libc}/stdlib.c" "-f" "${m2libc}/stdio.h" @@ -322,24 +331,24 @@ rec { "-o" out ]; - kaem-footer_M1 = run "kaem-footer.M1" blood-elf-0 ["-f" kaem_M1 "--little-endian" "-o" out]; + kaem-footer_M1 = run "kaem-footer.M1" blood-elf-0 (bloodFlags ++ ["-f" kaem_M1 endianFlag "-o" out]); kaem_hex2 = run "kaem.hex2" M1 [ - "--architecture" "x86" - "--little-endian" - "-f" "${m2libc}/x86/x86_defs.M1" - "-f" "${m2libc}/x86/libc-full.M1" + "--architecture" m2libcArch + endianFlag + "-f" "${m2libc}/${m2libcArch}/${m2libcArch}_defs.M1" + "-f" "${m2libc}/${m2libcArch}/libc-full.M1" "-f" kaem_M1 "-f" kaem-footer_M1 "-o" out ]; kaem-unwrapped = run "kaem-unwrapped" hex2 [ - "--architecture" "x86" - "--little-endian" - "-f" "${m2libc}/x86/ELF-x86-debug.hex2" + "--architecture" m2libcArch + endianFlag + "-f" "${m2libc}/${m2libcArch}/ELF-${m2libcArch}-debug.hex2" "-f" kaem_hex2 - "--base-address" "0x8048000" + "--base-address" baseAddress "-o" out ]; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-extra/build.kaem b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-extra/build.kaem index e50fc1c68474..fb27eccab830 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-extra/build.kaem +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-extra/build.kaem @@ -19,7 +19,7 @@ ## You should have received a copy of the GNU General Public License ## along with mescc-tools. If not, see . -alias CC="${mescc-tools}/bin/M2-Mesoplanet --operating-system ${OPERATING_SYSTEM} --architecture ${ARCH} -f" +alias CC="${mescc-tools}/bin/M2-Mesoplanet --operating-system ${m2libcOS} --architecture ${m2libcArch} -f" cd ${src}/mescc-tools-extra # Create output folder diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-extra/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-extra/default.nix index 425a10cfb35a..eee00491c446 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-extra/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools-extra/default.nix @@ -4,9 +4,12 @@ , mescc-tools , src , version +, platforms +, m2libcArch +, m2libcOS }: derivationWithMeta { - inherit version src mescc-tools; + inherit version src mescc-tools m2libcArch m2libcOS; pname = "mescc-tools-extra"; builder = kaem-unwrapped; args = [ @@ -16,14 +19,11 @@ derivationWithMeta { ./build.kaem ]; - ARCH = "x86"; - OPERATING_SYSTEM = "linux"; - meta = with lib; { description = "Collection of tools written for use in bootstrapping"; homepage = "https://github.com/oriansj/mescc-tools-extra"; license = licenses.gpl3Plus; maintainers = teams.minimal-bootstrap.members; - platforms = [ "i686-linux" ]; + inherit platforms; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools/build.kaem b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools/build.kaem index 3a7ae25fbd82..128ff360fd2c 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools/build.kaem +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools/build.kaem @@ -46,13 +46,13 @@ ${replace} \ # Phase-12 Build M2-Mesoplanet from M2-Planet # ############################################### -${M2} --architecture ${ARCH} \ +${M2} --architecture ${m2libcArch} \ -f ${m2libc}/sys/types.h \ -f ${m2libc}/stddef.h \ - -f ${m2libc}/${ARCH}/linux/fcntl.c \ + -f ${m2libc}/${m2libcArch}/linux/fcntl.c \ -f ${m2libc}/fcntl.c \ - -f ${m2libc}/${ARCH}/linux/unistd.c \ - -f ${m2libc}/${ARCH}/linux/sys/stat.c \ + -f ${m2libc}/${m2libcArch}/linux/unistd.c \ + -f ${m2libc}/${m2libcArch}/linux/sys/stat.c \ -f ${m2libc}/stdlib.c \ -f ${m2libc}/stdio.h \ -f ${m2libc}/stdio.c \ @@ -69,20 +69,20 @@ ${M2} --architecture ${ARCH} \ --debug \ -o ./M2-Mesoplanet-1.M1 -${blood-elf-0} ${ENDIAN_FLAG} ${BLOOD_FLAG} -f ./M2-Mesoplanet-1.M1 -o ./M2-Mesoplanet-1-footer.M1 +${blood-elf-0} ${endianFlag} ${bloodFlag} -f ./M2-Mesoplanet-1.M1 -o ./M2-Mesoplanet-1-footer.M1 -${M1} --architecture ${ARCH} \ - ${ENDIAN_FLAG} \ - -f ${m2libc}/${ARCH}/${ARCH}_defs.M1 \ - -f ${m2libc}/${ARCH}/libc-full.M1 \ +${M1} --architecture ${m2libcArch} \ + ${endianFlag} \ + -f ${m2libc}/${m2libcArch}/${m2libcArch}_defs.M1 \ + -f ${m2libc}/${m2libcArch}/libc-full.M1 \ -f ./M2-Mesoplanet-1.M1 \ -f ./M2-Mesoplanet-1-footer.M1 \ -o ./M2-Mesoplanet-1.hex2 -${hex2} --architecture ${ARCH} \ - ${ENDIAN_FLAG} \ - --base-address ${BASE_ADDRESS} \ - -f ${m2libc}/${ARCH}/ELF-${ARCH}-debug.hex2 \ +${hex2} --architecture ${m2libcArch} \ + ${endianFlag} \ + --base-address ${baseAddress} \ + -f ${m2libc}/${m2libcArch}/ELF-${m2libcArch}-debug.hex2 \ -f ./M2-Mesoplanet-1.hex2 \ -o ${out}/bin/M2-Mesoplanet @@ -90,12 +90,12 @@ ${hex2} --architecture ${ARCH} \ # Phase-13 Build final blood-elf from C sources # ################################################# -${M2} --architecture ${ARCH} \ +${M2} --architecture ${m2libcArch} \ -f ${m2libc}/sys/types.h \ -f ${m2libc}/stddef.h \ - -f ${m2libc}/${ARCH}/linux/fcntl.c \ + -f ${m2libc}/${m2libcArch}/linux/fcntl.c \ -f ${m2libc}/fcntl.c \ - -f ${m2libc}/${ARCH}/linux/unistd.c \ + -f ${m2libc}/${m2libcArch}/linux/unistd.c \ -f ${m2libc}/stdlib.c \ -f ${m2libc}/stdio.h \ -f ${m2libc}/stdio.c \ @@ -105,19 +105,20 @@ ${M2} --architecture ${ARCH} \ --debug \ -o ./blood-elf-1.M1 -${blood-elf-0} ${BLOOD_FLAG} ${ENDIAN_FLAG} -f ./blood-elf-1.M1 -o ./blood-elf-1-footer.M1 -${M1} --architecture ${ARCH} \ - ${ENDIAN_FLAG} \ - -f ${m2libc}/${ARCH}/${ARCH}_defs.M1 \ - -f ${m2libc}/${ARCH}/libc-full.M1 \ +${blood-elf-0} ${endianFlag} ${bloodFlag} -f ./blood-elf-1.M1 -o ./blood-elf-1-footer.M1 + +${M1} --architecture ${m2libcArch} \ + ${endianFlag} \ + -f ${m2libc}/${m2libcArch}/${m2libcArch}_defs.M1 \ + -f ${m2libc}/${m2libcArch}/libc-full.M1 \ -f ./blood-elf-1.M1 \ -f ./blood-elf-1-footer.M1 \ -o ./blood-elf-1.hex2 -${hex2} --architecture ${ARCH} \ - ${ENDIAN_FLAG} \ - --base-address ${BASE_ADDRESS} \ - -f ${m2libc}/${ARCH}/ELF-${ARCH}-debug.hex2 \ +${hex2} --architecture ${m2libcArch} \ + ${endianFlag} \ + --base-address ${baseAddress} \ + -f ${m2libc}/${m2libcArch}/ELF-${m2libcArch}-debug.hex2 \ -f ./blood-elf-1.hex2 \ -o ${out}/bin/blood-elf @@ -129,11 +130,11 @@ ${hex2} --architecture ${ARCH} \ # Phase-14 Build get_machine from C sources # ############################################# -${M2} --architecture ${ARCH} \ +${M2} --architecture ${m2libcArch} \ -f ${m2libc}/sys/types.h \ -f ${m2libc}/stddef.h \ - -f ${m2libc}/${ARCH}/linux/unistd.c \ - -f ${m2libc}/${ARCH}/linux/fcntl.c \ + -f ${m2libc}/${m2libcArch}/linux/unistd.c \ + -f ${m2libc}/${m2libcArch}/linux/fcntl.c \ -f ${m2libc}/fcntl.c \ -f ${m2libc}/stdlib.c \ -f ${m2libc}/stdio.h \ @@ -143,20 +144,20 @@ ${M2} --architecture ${ARCH} \ --debug \ -o get_machine.M1 -${out}/bin/blood-elf ${BLOOD_FLAG} ${ENDIAN_FLAG} -f ./get_machine.M1 -o ./get_machine-footer.M1 +${out}/bin/blood-elf ${endianFlag} ${bloodFlag} -f ./get_machine.M1 -o ./get_machine-footer.M1 -${M1} --architecture ${ARCH} \ - ${ENDIAN_FLAG} \ - -f ${m2libc}/${ARCH}/${ARCH}_defs.M1 \ - -f ${m2libc}/${ARCH}/libc-full.M1 \ +${M1} --architecture ${m2libcArch} \ + ${endianFlag} \ + -f ${m2libc}/${m2libcArch}/${m2libcArch}_defs.M1 \ + -f ${m2libc}/${m2libcArch}/libc-full.M1 \ -f ./get_machine.M1 \ -f ./get_machine-footer.M1 \ -o ./get_machine.hex2 -${hex2} --architecture ${ARCH} \ - ${ENDIAN_FLAG} \ - --base-address ${BASE_ADDRESS} \ - -f ${m2libc}/${ARCH}/ELF-${ARCH}-debug.hex2 \ +${hex2} --architecture ${m2libcArch} \ + ${endianFlag} \ + --base-address ${baseAddress} \ + -f ${m2libc}/${m2libcArch}/ELF-${m2libcArch}-debug.hex2 \ -f ./get_machine.hex2 \ -o ${out}/bin/get_machine @@ -164,11 +165,11 @@ ${hex2} --architecture ${ARCH} \ # Phase-15 Build M2-Planet from M2-Planet # ############################################ -${M2} --architecture ${ARCH} \ +${M2} --architecture ${m2libcArch} \ -f ${m2libc}/sys/types.h \ -f ${m2libc}/stddef.h \ - -f ${m2libc}/${ARCH}/linux/unistd.c \ - -f ${m2libc}/${ARCH}/linux/fcntl.c \ + -f ${m2libc}/${m2libcArch}/linux/unistd.c \ + -f ${m2libc}/${m2libcArch}/linux/fcntl.c \ -f ${m2libc}/fcntl.c \ -f ${m2libc}/stdlib.c \ -f ${m2libc}/stdio.h \ @@ -185,20 +186,19 @@ ${M2} --architecture ${ARCH} \ --debug \ -o ./M2-1.M1 -${out}/bin/blood-elf ${ENDIAN_FLAG} ${BLOOD_FLAG} -f ./M2-1.M1 -o ./M2-1-footer.M1 +${out}/bin/blood-elf ${endianFlag} ${bloodFlag} -f ./M2-1.M1 -o ./M2-1-footer.M1 -${M1} --architecture ${ARCH} \ - ${ENDIAN_FLAG} \ - -f ${m2libc}/${ARCH}/${ARCH}_defs.M1 \ - -f ${m2libc}/${ARCH}/libc-full.M1 \ +${M1} --architecture ${m2libcArch} \ + ${endianFlag} \ + -f ${m2libc}/${m2libcArch}/${m2libcArch}_defs.M1 \ + -f ${m2libc}/${m2libcArch}/libc-full.M1 \ -f ./M2-1.M1 \ -f ./M2-1-footer.M1 \ -o ./M2-1.hex2 -${hex2} --architecture ${ARCH} \ - ${ENDIAN_FLAG} \ - --base-address ${BASE_ADDRESS} \ - -f ${m2libc}/${ARCH}/ELF-${ARCH}-debug.hex2 \ +${hex2} --architecture ${m2libcArch} \ + ${endianFlag} \ + --base-address ${baseAddress} \ + -f ${m2libc}/${m2libcArch}/ELF-${m2libcArch}-debug.hex2 \ -f ./M2-1.hex2 \ -o ${out}/bin/M2-Planet - diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools/default.nix index c4aca823203d..4a9c734981e2 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/mescc-tools/default.nix @@ -1,5 +1,6 @@ { lib , derivationWithMeta +, hostPlatform , kaem-unwrapped , M1 , M2 @@ -8,13 +9,14 @@ , m2libc , src , version +, platforms +, m2libcArch +, baseAddress }: let - ARCH = "x86"; - BLOOD_FLAG = " "; - BASE_ADDRESS = "0x8048000"; - ENDIAN_FLAG = "--little-endian"; + endianFlag = if hostPlatform.isLittleEndian then "--little-endian" else "--big-endian"; + bloodFlag = if hostPlatform.is64bit then "--64" else " "; # We need a few tools from mescc-tools-extra to assemble the output folder buildMesccToolsExtraUtil = name: @@ -26,13 +28,13 @@ let "--strict" "--file" (builtins.toFile "build-${name}.kaem" '' - ''${M2} --architecture ''${ARCH} \ + ''${M2} --architecture ${m2libcArch} \ -f ''${m2libc}/sys/types.h \ -f ''${m2libc}/stddef.h \ - -f ''${m2libc}/''${ARCH}/linux/fcntl.c \ + -f ''${m2libc}/${m2libcArch}/linux/fcntl.c \ -f ''${m2libc}/fcntl.c \ - -f ''${m2libc}/''${ARCH}/linux/unistd.c \ - -f ''${m2libc}/''${ARCH}/linux/sys/stat.c \ + -f ''${m2libc}/${m2libcArch}/linux/unistd.c \ + -f ''${m2libc}/${m2libcArch}/linux/sys/stat.c \ -f ''${m2libc}/stdlib.c \ -f ''${m2libc}/stdio.h \ -f ''${m2libc}/stdio.c \ @@ -42,25 +44,25 @@ let --debug \ -o ${name}.M1 - ''${blood-elf-0} ''${ENDIAN_FLAG} -f ${name}.M1 -o ${name}-footer.M1 + ''${blood-elf-0} ${endianFlag} ${bloodFlag} -f ${name}.M1 -o ${name}-footer.M1 - ''${M1} --architecture ''${ARCH} \ - ''${ENDIAN_FLAG} \ - -f ''${m2libc}/''${ARCH}/''${ARCH}_defs.M1 \ - -f ''${m2libc}/''${ARCH}/libc-full.M1 \ + ''${M1} --architecture ${m2libcArch} \ + ${endianFlag} \ + -f ''${m2libc}/${m2libcArch}/${m2libcArch}_defs.M1 \ + -f ''${m2libc}/${m2libcArch}/libc-full.M1 \ -f ${name}.M1 \ -f ${name}-footer.M1 \ -o ${name}.hex2 - ''${hex2} --architecture ''${ARCH} \ - ''${ENDIAN_FLAG} \ - -f ''${m2libc}/''${ARCH}/ELF-''${ARCH}-debug.hex2 \ + ''${hex2} --architecture ${m2libcArch} \ + ${endianFlag} \ + -f ''${m2libc}/${m2libcArch}/ELF-${m2libcArch}-debug.hex2 \ -f ${name}.hex2 \ - --base-address ''${BASE_ADDRESS} \ + --base-address ${baseAddress} \ -o ''${out} '') ]; - inherit version M1 M2 blood-elf-0 hex2 m2libc src ARCH BLOOD_FLAG BASE_ADDRESS ENDIAN_FLAG; + inherit version M1 M2 blood-elf-0 hex2 m2libc src; }; mkdir = buildMesccToolsExtraUtil "mkdir"; cp = buildMesccToolsExtraUtil "cp"; @@ -76,13 +78,13 @@ derivationWithMeta { "--file" ./build.kaem ]; - inherit version M1 M2 blood-elf-0 hex2 mkdir cp chmod replace m2libc src ARCH BLOOD_FLAG BASE_ADDRESS ENDIAN_FLAG; + inherit version M1 M2 blood-elf-0 hex2 mkdir cp chmod replace m2libc src m2libcArch baseAddress bloodFlag endianFlag; meta = with lib; { description = "Collection of tools written for use in bootstrapping"; homepage = "https://github.com/oriansj/mescc-tools"; license = licenses.gpl3Plus; maintainers = teams.minimal-bootstrap.members; - platforms = [ "i686-linux" ]; + inherit platforms; }; } diff --git a/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/platforms.nix b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/platforms.nix new file mode 100644 index 000000000000..c68f7630f3db --- /dev/null +++ b/pkgs/os-specific/linux/minimal-bootstrap/stage0-posix/platforms.nix @@ -0,0 +1,29 @@ +# Platform specific constants +{ lib +, hostPlatform +}: + +rec { + # meta.platforms + platforms = [ + "i686-linux" + "x86_64-linux" + ]; + + # system arch as used within the stage0 project + stage0Arch = { + "i686-linux" = "x86"; + "x86_64-linux" = "AMD64"; + }.${hostPlatform.system} or (throw "Unsupported system: ${hostPlatform.system}"); + + # lower-case form is widely used by m2libc + m2libcArch = lib.toLower stage0Arch; + + # Passed to M2-Mesoplanet as --operating-system + m2libcOS = if hostPlatform.isLinux then "linux" else throw "Unsupported system: ${hostPlatform.system}"; + + baseAddress = { + "i686-linux" = "0x08048000"; + "x86_64-linux" = "0x00600000"; + }.${hostPlatform.system} or (throw "Unsupported system: ${hostPlatform.system}"); +} From fd61c0eee06c4cf1932fcda46a45f67488f824a0 Mon Sep 17 00:00:00 2001 From: Emily Trau Date: Wed, 17 May 2023 12:15:02 +1000 Subject: [PATCH 128/346] minimal-bootstrap.mes: remove unneeded platform flag --- pkgs/os-specific/linux/minimal-bootstrap/mes/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/os-specific/linux/minimal-bootstrap/mes/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/mes/default.nix index 04ab2fdbfaf0..0cf66c5bc230 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/mes/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/mes/default.nix @@ -222,7 +222,6 @@ let mkdir -p ''${out}/bin ${srcPost.bin}/bin/mes-m2 -e main ${srcPost.bin}/bin/mescc.scm -- \ - --base-address 0x08048000 \ -L ''${srcPrefix}/lib \ -L ${libs}/lib \ -lc \ From 461aa2d82fc8196ab979b560ead321d84593bcd2 Mon Sep 17 00:00:00 2001 From: Aidan Gauland Date: Tue, 12 Sep 2023 16:28:36 +1200 Subject: [PATCH 129/346] r2modman: pin to Electron 25 Electron 26 is causing many applications to display only a white screen/ window, making them unusable. Fixes #254624 --- pkgs/top-level/all-packages.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 53d61a6fb5a9..c1d9a9d9289f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -38427,7 +38427,10 @@ with pkgs; r2mod_cli = callPackage ../games/r2mod_cli { }; - r2modman = callPackage ../games/r2modman { }; + r2modman = callPackage ../games/r2modman { + # Electron 26 has regressions making applications unusable. + electron = electron_25; + }; racer = callPackage ../games/racer { }; From 363e9382a54b0cc2eec27638a7534adaaf063951 Mon Sep 17 00:00:00 2001 From: Aidan Gauland Date: Tue, 12 Sep 2023 17:00:52 +1200 Subject: [PATCH 130/346] r2modman: fix launching Steam games Patch r2modman to run "steam" instead of trying to directly run "steam.sh" from the user's home directory. This means it uses the NixOS wrapper script, which runs Steam in the necessary FHS environment. Fixes #240369 --- pkgs/games/r2modman/default.nix | 5 +++++ pkgs/games/r2modman/steam-launch-fix.patch | 21 +++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/games/r2modman/steam-launch-fix.patch diff --git a/pkgs/games/r2modman/default.nix b/pkgs/games/r2modman/default.nix index c7c8d6a10768..4e5096eb96f8 100644 --- a/pkgs/games/r2modman/default.nix +++ b/pkgs/games/r2modman/default.nix @@ -28,6 +28,11 @@ stdenv.mkDerivation rec { hash = "sha256-CXitb/b2tvTfrkFrFv4KP4WdmMg+1sDtC/s2u5ezDfI="; }; + patches = [ + # Make it possible to launch Steam games from r2modman. + ./steam-launch-fix.patch + ]; + nativeBuildInputs = [ yarn fixup_yarn_lock diff --git a/pkgs/games/r2modman/steam-launch-fix.patch b/pkgs/games/r2modman/steam-launch-fix.patch new file mode 100644 index 000000000000..4a52c8fdb359 --- /dev/null +++ b/pkgs/games/r2modman/steam-launch-fix.patch @@ -0,0 +1,21 @@ +diff --git a/src/r2mm/launching/runners/linux/SteamGameRunner_Linux.ts b/src/r2mm/launching/runners/linux/SteamGameRunner_Linux.ts +index ddee0e9..fc9ffca 100644 +--- a/src/r2mm/launching/runners/linux/SteamGameRunner_Linux.ts ++++ b/src/r2mm/launching/runners/linux/SteamGameRunner_Linux.ts +@@ -61,15 +61,9 @@ export default class SteamGameRunner_Linux extends GameRunnerProvider { + async start(game: Game, args: string): Promise { + + const settings = await ManagerSettings.getSingleton(game); +- const steamDir = await GameDirectoryResolverProvider.instance.getSteamDirectory(); +- if(steamDir instanceof R2Error) { +- return steamDir; +- } +- +- LoggerProvider.instance.Log(LogSeverity.INFO, `Steam directory is: ${steamDir}`); + + try { +- const cmd = `"${steamDir}/steam.sh" -applaunch ${game.activePlatform.storeIdentifier} ${args} ${settings.getContext().gameSpecific.launchParameters}`; ++ const cmd = `steam -applaunch ${game.activePlatform.storeIdentifier} ${args} ${settings.getContext().gameSpecific.launchParameters}`; + LoggerProvider.instance.Log(LogSeverity.INFO, `Running command: ${cmd}`); + await exec(cmd); + } catch(err) { From 2ca828aef3f057fe1030eac6ec0ba2632069d08b Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 12 Sep 2023 06:57:15 +0000 Subject: [PATCH 131/346] kubevpn: 1.1.36 -> 1.2.0 --- pkgs/applications/networking/cluster/kubevpn/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/kubevpn/default.nix b/pkgs/applications/networking/cluster/kubevpn/default.nix index 6f7810a0796d..ef12d8ae2e6d 100644 --- a/pkgs/applications/networking/cluster/kubevpn/default.nix +++ b/pkgs/applications/networking/cluster/kubevpn/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "kubevpn"; - version = "1.1.36"; + version = "1.2.0"; src = fetchFromGitHub { owner = "KubeNetworks"; repo = "kubevpn"; rev = "v${version}"; - sha256 = "sha256-wL6L94NNIPTYeUx+k78cFUdTMo9vIvzoKfXa2anCFQM="; + sha256 = "sha256-C/GXcINuAtDdSN5CdoN62zeYlT9L6cXDTDR9S3eMP4w="; }; vendorHash = "sha256-24mw5ku0pQX2QNQPA9E+wowS3y0J+oKiIxuyVGcgBro="; From 269d085c62f717ac4bb774a5b39808618ebc2bf0 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Tue, 12 Sep 2023 09:19:19 +0200 Subject: [PATCH 132/346] kotlin-language-server: 1.3.3 -> 1.3.5 --- .../language-servers/kotlin-language-server/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/language-servers/kotlin-language-server/default.nix b/pkgs/development/tools/language-servers/kotlin-language-server/default.nix index 7388ab694e01..790718125613 100644 --- a/pkgs/development/tools/language-servers/kotlin-language-server/default.nix +++ b/pkgs/development/tools/language-servers/kotlin-language-server/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { pname = "kotlin-language-server"; - version = "1.3.3"; + version = "1.3.5"; src = fetchzip { url = "https://github.com/fwcd/kotlin-language-server/releases/download/${version}/server.zip"; - hash = "sha256-m0AgPJ8KgzOxHPB33pgSFe7JQxidPkhDUga56LuaDBA="; + hash = "sha256-hoZDbhedauW1TK78rX37Gwn/6OWLXZzy8wKsUrbTmKI="; }; dontBuild = true; @@ -34,5 +34,6 @@ stdenv.mkDerivation rec { changelog = "https://github.com/fwcd/kotlin-language-server/blob/${version}/CHANGELOG.md"; license = lib.licenses.mit; platforms = lib.platforms.unix; + sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; }; } From 29b58cfaaecc826fb61d490b8ac44f2c4e7d7dc9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 12 Sep 2023 08:48:25 +0000 Subject: [PATCH 133/346] vbam: 2.1.6 -> 2.1.7 --- pkgs/applications/emulators/vbam/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/emulators/vbam/default.nix b/pkgs/applications/emulators/vbam/default.nix index 2b252f0f10de..f0cd38de8949 100644 --- a/pkgs/applications/emulators/vbam/default.nix +++ b/pkgs/applications/emulators/vbam/default.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation rec { pname = "visualboyadvance-m"; - version = "2.1.6"; + version = "2.1.7"; src = fetchFromGitHub { owner = "visualboyadvance-m"; repo = "visualboyadvance-m"; rev = "v${version}"; - sha256 = "1fph8phbswq6d9lgw1y1767wdp316w5hn5bws6h2dj75gvsqf221"; + sha256 = "sha256-XMb4+YPH1xgbiRC4vmooxALmjX2QURLWOGOwepdWI7o="; }; nativeBuildInputs = [ cmake pkg-config ]; From 7ccc63eaa280333805e2bc1941b59763dbb80ff5 Mon Sep 17 00:00:00 2001 From: Goldstein Date: Mon, 11 Sep 2023 20:37:11 +0300 Subject: [PATCH 134/346] cargo-rdme: init at 1.4.2 --- pkgs/by-name/ca/cargo-rdme/package.nix | 25 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 3 +++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/by-name/ca/cargo-rdme/package.nix diff --git a/pkgs/by-name/ca/cargo-rdme/package.nix b/pkgs/by-name/ca/cargo-rdme/package.nix new file mode 100644 index 000000000000..48ab5f4ba981 --- /dev/null +++ b/pkgs/by-name/ca/cargo-rdme/package.nix @@ -0,0 +1,25 @@ +{ lib, rustPlatform, fetchCrate, stdenv, Security }: + +rustPlatform.buildRustPackage rec { + pname = "cargo-rdme"; + version = "1.4.2"; + + src = fetchCrate { + inherit pname version; + hash = "sha256-ZveL/6iWxnEz13iHdTjDA4JT29CbvWjrIvblI65XuMM="; + }; + + buildInputs = lib.optionals stdenv.isDarwin [ + Security + ]; + + cargoHash = "sha256-8srwz5p9NY+ymDpqSvG68oIHibSurdtrjBkG6TrZO70="; + + meta = with lib; { + description = "Cargo command to create the README.md from your crate's documentation"; + homepage = "https://github.com/orium/cargo-rdme"; + changelog = "https://github.com/orium/cargo-rdme/blob/v${version}/release-notes.md"; + license = with licenses; [ mpl20 ]; + maintainers = with maintainers; [ GoldsteinE ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7450ba835732..1f356e54d570 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17319,6 +17319,9 @@ with pkgs; cargo-raze = callPackage ../development/tools/rust/cargo-raze { inherit (darwin.apple_sdk.frameworks) Security; }; + cargo-rdme = callPackage ../by-name/ca/cargo-rdme/package.nix { + inherit (darwin.apple_sdk.frameworks) Security; + }; cargo-readme = callPackage ../development/tools/rust/cargo-readme { }; cargo-risczero = callPackage ../development/tools/rust/cargo-risczero { }; cargo-run-bin = callPackage ../development/tools/rust/cargo-run-bin {}; From 49fa5fd4c28b602456f3a28f2c5d890b5c6ed950 Mon Sep 17 00:00:00 2001 From: Anton Mosich Date: Tue, 12 Sep 2023 12:03:02 +0200 Subject: [PATCH 135/346] minify: 2.12.8 -> 2.12.9 See https://github.com/tdewolff/minify/releases/tag/v2.12.9 --- pkgs/development/web/minify/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/web/minify/default.nix b/pkgs/development/web/minify/default.nix index 3e3d139bec4b..1c832bb456db 100644 --- a/pkgs/development/web/minify/default.nix +++ b/pkgs/development/web/minify/default.nix @@ -9,16 +9,16 @@ buildGoModule rec { pname = "minify"; - version = "2.12.8"; + version = "2.12.9"; src = fetchFromGitHub { owner = "tdewolff"; repo = pname; rev = "v${version}"; - hash = "sha256-5p1HWXx9kKKaiC0dTQDd1JpRDhKkDGdnDpuz+I0kgpo="; + hash = "sha256-+NBYn+gEsoclROnq2msNB4knviGn/XA9vNAuB0JZNek="; }; - vendorHash = "sha256-RBBCcqahIF1KjnK/Kxr0TZlRJirFffo9Dt40gNk5EQE="; + vendorHash = "sha256-/Pw7fHVXWsovxfyzkWfb6UiRDBmiua82667N4Scl5+A="; nativeBuildInputs = [ installShellFiles ]; @@ -46,5 +46,6 @@ buildGoModule rec { changelog = "https://github.com/tdewolff/minify/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ gaelreyrol ]; + mainProgram = "minify"; }; } From 4d666f0afac15102b244f25425d5bb4651f66598 Mon Sep 17 00:00:00 2001 From: Ellie Hermaszewska Date: Tue, 12 Sep 2023 18:24:32 +0800 Subject: [PATCH 136/346] vulkan-validation-layers: enable separateDebugInfo --- pkgs/development/tools/vulkan-validation-layers/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/tools/vulkan-validation-layers/default.nix b/pkgs/development/tools/vulkan-validation-layers/default.nix index 377f87b16453..754b2d4a5e0a 100644 --- a/pkgs/development/tools/vulkan-validation-layers/default.nix +++ b/pkgs/development/tools/vulkan-validation-layers/default.nix @@ -69,6 +69,8 @@ stdenv.mkDerivation rec { # available in Nix sandbox. Fails with VK_ERROR_INCOMPATIBLE_DRIVER. doCheck = false; + separateDebugInfo = true; + # Include absolute paths to layer libraries in their associated # layer definition json files. preFixup = '' From 9bcefc6c1b5335b44f9f35b80d4210f1e5814c16 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 12 Sep 2023 10:33:20 +0000 Subject: [PATCH 137/346] commonsCompress: 1.23.0 -> 1.24.0 --- pkgs/development/libraries/java/commons/compress/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/java/commons/compress/default.nix b/pkgs/development/libraries/java/commons/compress/default.nix index bda8a4c0dd1f..87dbd16d86c4 100644 --- a/pkgs/development/libraries/java/commons/compress/default.nix +++ b/pkgs/development/libraries/java/commons/compress/default.nix @@ -1,12 +1,12 @@ { lib, stdenv, fetchurl }: stdenv.mkDerivation rec { - version = "1.23.0"; + version = "1.24.0"; pname = "commons-compress"; src = fetchurl { url = "mirror://apache/commons/compress/binaries/${pname}-${version}-bin.tar.gz"; - sha256 = "sha256-m+7cc7h9xVXKlLBTTr2L91AFWDTN+hNSycxDNO0oBAI="; + sha256 = "sha256-VQzXg16rnrghsRY2H3NnGJ+0HEbz8/Num7Xlm9pEqqw="; }; installPhase = '' From 9b9c1f1d20601177a0bb5e7ad18e5f6fcfb7eee8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 12 Sep 2023 11:57:46 +0000 Subject: [PATCH 138/346] kubeone: 1.6.2 -> 1.7.0 --- pkgs/applications/networking/cluster/kubeone/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/kubeone/default.nix b/pkgs/applications/networking/cluster/kubeone/default.nix index 88176dd599ee..36fcf3dd2398 100644 --- a/pkgs/applications/networking/cluster/kubeone/default.nix +++ b/pkgs/applications/networking/cluster/kubeone/default.nix @@ -8,16 +8,16 @@ buildGoModule rec { pname = "kubeone"; - version = "1.6.2"; + version = "1.7.0"; src = fetchFromGitHub { owner = "kubermatic"; repo = "kubeone"; rev = "v${version}"; - hash = "sha256-dLpe3C1gMnEyajJFPawDlTchYKA8cAy2QUAae6+7QBQ="; + hash = "sha256-izUjiRQAdTpdk86s1lQwLfpHy4eJo3mGAgTwWfGkNAQ="; }; - vendorHash = "sha256-aCRrf/E4UVL6PwUPRRzLjD+MzL8gcNJrc2IgKKyIIHI="; + vendorHash = "sha256-AFyvTv1uVeq2KtRG6VToTBnX+8tHorDZPSturJhsrG4="; ldflags = [ "-s" From 651e743e2031b3a55f48a956cccef1f3afff40bb Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 12 Sep 2023 11:59:06 +0000 Subject: [PATCH 139/346] netmaker: 0.20.6 -> 0.21.0 --- pkgs/applications/networking/netmaker/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/netmaker/default.nix b/pkgs/applications/networking/netmaker/default.nix index 0c5755d134ab..fe90b8a81115 100644 --- a/pkgs/applications/networking/netmaker/default.nix +++ b/pkgs/applications/networking/netmaker/default.nix @@ -10,16 +10,16 @@ buildGoModule rec { pname = "netmaker"; - version = "0.20.6"; + version = "0.21.0"; src = fetchFromGitHub { owner = "gravitl"; repo = pname; rev = "v${version}"; - hash = "sha256-2NrqplVduDsaLGla1rzLGhX1YgZL6NBFFDVQRen7Pfk="; + hash = "sha256-RL0tGhtndahTezQFz/twyLh36h2RXFy7EUnPiLAxP4U="; }; - vendorHash = "sha256-TrVtUv1xlz3Wbw4RY4NAzWmPE8JVk+GqPveqvfTe8e4="; + vendorHash = "sha256-4Wxutkg9OdKs6B8z/P6JMgcE3cGS+6W4V7sKzVBwRJc="; inherit subPackages; From 335c5aba1b2a0a3c97a98e381d94bb0109d26836 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 12 Sep 2023 14:40:42 +0200 Subject: [PATCH 140/346] python310Packages.rope: 1.6.0 -> 1.9.0 --- pkgs/development/python-modules/rope/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/rope/default.nix b/pkgs/development/python-modules/rope/default.nix index 1168529eea68..c014314685b9 100644 --- a/pkgs/development/python-modules/rope/default.nix +++ b/pkgs/development/python-modules/rope/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "rope"; - version = "1.6.0"; + version = "1.9.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "python-rope"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-avNCti288dY9pl5AVTmUzZU/vb6WDkXEtELNlEi6L/o="; + hash = "sha256-j65C3x3anhH23D4kic5j++r/Ft0RqgZ/jFrNrNHVcXA="; }; nativeBuildInputs = [ From dfd065ece35cf29c160cac1e66c97ea0f08568ec Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 12 Sep 2023 08:49:36 -0400 Subject: [PATCH 141/346] snazy: 0.51.2 -> 0.51.3 Diff: https://github.com/chmouel/snazy/compare/0.51.2...0.51.3 Changelog: https://github.com/chmouel/snazy/releases/tag/0.51.3 --- pkgs/development/tools/snazy/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/snazy/default.nix b/pkgs/development/tools/snazy/default.nix index d7c5f4d7ceee..6367e05ab54d 100644 --- a/pkgs/development/tools/snazy/default.nix +++ b/pkgs/development/tools/snazy/default.nix @@ -7,24 +7,24 @@ rustPlatform.buildRustPackage rec { pname = "snazy"; - version = "0.51.2"; + version = "0.51.3"; src = fetchFromGitHub { owner = "chmouel"; repo = pname; rev = version; - hash = "sha256-k8dcALE5+5kqNKhmiLT0Ir8SRYOIp8eV3a/xYWrKpNw="; + hash = "sha256-YE11ypzOhRNjoi+X9Khp6qxqhD1f/hslr1t2cEeUTbs="; }; - cargoHash = "sha256-mBA2BhGeYR57UrqI1qtByTkTocMymjCWlWhh4+Ko8wY="; + cargoHash = "sha256-8oT9tdGeU/1mtgf470Ps4EwQmWxPhxAzmA8D30UG60o="; cargoPatches = [ # update Cargo.toml to fix the version - # https://github.com/chmouel/snazy/pull/178 + # https://github.com/chmouel/snazy/pull/217 (fetchpatch { name = "update-version-in-cargo-toml.patch"; - url = "https://github.com/chmouel/snazy/commit/4fd92c7336f51d032a0baf60fd5ab8c1056ad14f.patch"; - hash = "sha256-WT/HHB9HB+X/L5FZdvQAG8K7PrYHQD8F5aWQVaMJuIU="; + url = "https://github.com/chmouel/snazy/commit/199f560e12d07c07c240bc91e7f929831af2cc4d.patch"; + hash = "sha256-X1oi4Mf1m/k/HYYJvqIrN14JJSEPUmWJt9PhzLiyYUs="; }) ]; From b17290259837b1fd6674eb7eac5d95349acac7c4 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Mon, 11 Sep 2023 18:38:39 +0200 Subject: [PATCH 142/346] opencomposite: unstable-2023-07-02 -> unstable-2023-09-11 Signed-off-by: Sefa Eyeoglu --- .../cmake-use-find_package-where-needed.patch | 112 ------------------ .../libraries/opencomposite/default.nix | 16 +-- 2 files changed, 8 insertions(+), 120 deletions(-) delete mode 100644 pkgs/development/libraries/opencomposite/cmake-use-find_package-where-needed.patch diff --git a/pkgs/development/libraries/opencomposite/cmake-use-find_package-where-needed.patch b/pkgs/development/libraries/opencomposite/cmake-use-find_package-where-needed.patch deleted file mode 100644 index 6af49ff074f2..000000000000 --- a/pkgs/development/libraries/opencomposite/cmake-use-find_package-where-needed.patch +++ /dev/null @@ -1,112 +0,0 @@ -From 5430196765402655715f759e3de0166ad3fbe1fe Mon Sep 17 00:00:00 2001 -From: Sefa Eyeoglu -Date: Fri, 28 Jul 2023 12:26:58 +0200 -Subject: [PATCH] cmake: use find_package where needed - -Signed-off-by: Sefa Eyeoglu ---- - CMakeLists.txt | 62 ++++---------------------------------------------- - 1 file changed, 4 insertions(+), 58 deletions(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index bb3c49a..e9d6d56 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -98,66 +98,13 @@ endif () - # === OpenXR === - # Building CMake subprojects is a real pain (IMO), so just build this here - --set(XrDir libs/openxr-sdk) --set(XrDirLoader libs/openxr-sdk/src/loader) --set(XrDirCommon libs/openxr-sdk/src/common) --if (ANDROID) -- # Whatever consumes this library must then link to an OpenXR loader, such as the Oculus one -- add_library(OpenXR STATIC scripts/empty.c) # Doesn't do anything --else () --add_library(OpenXR STATIC -- ${XrDirLoader}/api_layer_interface.cpp -- ${XrDirLoader}/api_layer_interface.hpp -- ${XrDirLoader}/loader_core.cpp -- ${XrDirLoader}/loader_instance.cpp -- ${XrDirLoader}/loader_instance.hpp -- ${XrDirLoader}/loader_logger.cpp -- ${XrDirLoader}/loader_logger.hpp -- ${XrDirLoader}/loader_logger_recorders.cpp -- ${XrDirLoader}/loader_logger_recorders.hpp -- ${XrDirLoader}/manifest_file.cpp -- ${XrDirLoader}/manifest_file.hpp -- ${XrDirLoader}/runtime_interface.cpp -- ${XrDirLoader}/runtime_interface.hpp -- -- ${XrDirLoader}/xr_generated_loader.hpp -- ${XrDirLoader}/xr_generated_loader.cpp -- ${XrDir}/src/xr_generated_dispatch_table.h -- ${XrDir}/src/xr_generated_dispatch_table.c -- -- ${XrDirCommon}/filesystem_utils.cpp -- ${XrDirCommon}/object_info.cpp -- -- ${XrDir}/src/external/jsoncpp/src/lib_json/json_reader.cpp -- ${XrDir}/src/external/jsoncpp/src/lib_json/json_value.cpp -- ${XrDir}/src/external/jsoncpp/src/lib_json/json_writer.cpp --) --endif() --target_include_directories(OpenXR PRIVATE ${XrDirCommon} ${XrDir}/src ${XrDir}/src/external/jsoncpp/include) --target_include_directories(OpenXR PUBLIC ${XrDir}/include) --# Platform-dependent flags --if (WIN32) -- target_compile_definitions(OpenXR PRIVATE -DXR_OS_WINDOWS -DXR_USE_PLATFORM_WIN32 -- -DXR_USE_GRAPHICS_API_D3D11 -DXR_USE_GRAPHICS_API_D3D12 -DXR_USE_GRAPHICS_API_OPENGL) -- target_link_libraries(OpenXR PUBLIC advapi32 pathcch OpenGL32) --else() -- # TODO Turtle1331 should we include -DXR_USE_PLATFORM_(XLIB|XCB|WAYLAND) here? -- target_compile_definitions(OpenXR PRIVATE -DXR_OS_LINUX -- -DXR_USE_GRAPHICS_API_OPENGL -DXR_USE_GRAPHICS_API_VULKAN) -- target_link_libraries(OpenXR PUBLIC -ldl) --endif() --target_link_libraries(OpenXR PUBLIC Vulkan) -- --if (ANDROID) -- target_compile_definitions(OpenXR PUBLIC -DXR_USE_PLATFORM_ANDROID -DXR_USE_GRAPHICS_API_OPENGL_ES) --endif() -+find_package(OpenXR REQUIRED) - - # === glm === - # Since we used to use LibOVR's maths library, we need a replacement - # glm is an obvious choice - --add_library(glm INTERFACE) --target_include_directories(glm INTERFACE libs/glm) # No separate include directory :( -+find_package(glm REQUIRED) - - # === DrvOpenXR === - add_library(DrvOpenXR STATIC -@@ -189,7 +136,7 @@ add_library(DrvOpenXR STATIC - ) - target_include_directories(DrvOpenXR PUBLIC DrvOpenXR/pub ${CMAKE_BINARY_DIR}) - target_include_directories(DrvOpenXR PRIVATE DrvOpenXR OpenOVR) --target_link_libraries(DrvOpenXR PUBLIC OpenVR OpenXR glm) -+target_link_libraries(DrvOpenXR PUBLIC OpenVR OpenXR::openxr_loader glm::glm) - target_compile_definitions(DrvOpenXR PRIVATE ${GRAPHICS_API_SUPPORT_FLAGS} -D_CRT_SECURE_NO_WARNINGS) - source_group(Public REGULAR_EXPRESSION DrvOpenXR/pub/*) - -@@ -357,7 +304,7 @@ target_include_directories(OCCore PUBLIC OpenOVR ${CMAKE_BINARY_DIR}) # TODO ma - target_include_directories(OCCore PRIVATE BundledLibs OpenVRHeaders) - target_compile_definitions(OCCore PRIVATE ${GRAPHICS_API_SUPPORT_FLAGS}) - --target_link_libraries(OCCore OpenVR OpenXR Vulkan glm) -+target_link_libraries(OCCore OpenVR OpenXR::openxr_loader Vulkan glm::glm) - - if (NOT WIN32 AND NOT ANDROID) - find_package(OpenGL REQUIRED) # for glGetError() -@@ -411,7 +358,6 @@ endif () - if (WIN32) - else () - target_compile_options(DrvOpenXR PRIVATE -fPIC) -- target_compile_options(OpenXR PRIVATE -fPIC) - target_compile_options(OCCore PRIVATE -fPIC) - endif () - --- -2.41.0 - diff --git a/pkgs/development/libraries/opencomposite/default.nix b/pkgs/development/libraries/opencomposite/default.nix index a68e75b827bc..79b96bb9ae3d 100644 --- a/pkgs/development/libraries/opencomposite/default.nix +++ b/pkgs/development/libraries/opencomposite/default.nix @@ -15,20 +15,15 @@ stdenv.mkDerivation { pname = "opencomposite"; - version = "unstable-2023-07-02"; + version = "unstable-2023-09-11"; src = fetchFromGitLab { owner = "znixian"; repo = "OpenOVR"; - rev = "a59b16204a1ee61a59413667a516375071a113f0"; - hash = "sha256-JSVd/+A/WldP+A2vOOG4lbwb4QCE/PymEm4VbjUxWrw="; + rev = "cca18158a4b6921df54e84a3b23ff459f76a2bde"; + hash = "sha256-VREApt4juz283aJVLZoBbqg01PNs4XBxmpr/UIMlaK8="; }; - patches = [ - # Force OpenComposite to use our OpenXR and glm, instead of its Git submodules - ./cmake-use-find_package-where-needed.patch - ]; - nativeBuildInputs = [ cmake ]; @@ -43,6 +38,11 @@ stdenv.mkDerivation { xorg.libX11 ]; + cmakeFlags = [ + "-DUSE_SYSTEM_OPENXR=ON" + "-DUSE_SYSTEM_GLM=ON" + ]; + installPhase = '' runHook preInstall mkdir -p $out/lib/opencomposite From 1b39f39883beea219f192d1a8317c1f89b8ebfc0 Mon Sep 17 00:00:00 2001 From: Aaron Jheng Date: Tue, 12 Sep 2023 21:40:31 +0800 Subject: [PATCH 143/346] okteto: 2.19.2 -> 2.20.0 --- pkgs/development/tools/okteto/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/okteto/default.nix b/pkgs/development/tools/okteto/default.nix index 9459b5c196f2..efaa5dbc056e 100644 --- a/pkgs/development/tools/okteto/default.nix +++ b/pkgs/development/tools/okteto/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "okteto"; - version = "2.19.2"; + version = "2.20.0"; src = fetchFromGitHub { owner = "okteto"; repo = "okteto"; rev = version; - hash = "sha256-kzrjIsyHf/hUo4Axcg97CrIyjeexc2IZ4/bITuUR7NM="; + hash = "sha256-AeZ/pp7zWi8liDu247WXetXK/CurV0GUZ/isVdDF3yQ="; }; vendorHash = "sha256-u1oMX2ZplmDGx7ePfA5vKHUuDmWYVCJrYh2HQ23dTfU="; From 7f3a387e087e23ef475692b447d4971253788e65 Mon Sep 17 00:00:00 2001 From: willswats Date: Tue, 12 Sep 2023 14:58:18 +0100 Subject: [PATCH 144/346] hyprshade: v0.9.3 -> 0.12.1 --- .../window-managers/hyprwm/hyprshade/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/window-managers/hyprwm/hyprshade/default.nix b/pkgs/applications/window-managers/hyprwm/hyprshade/default.nix index 0a700a525739..ea24741ba516 100644 --- a/pkgs/applications/window-managers/hyprwm/hyprshade/default.nix +++ b/pkgs/applications/window-managers/hyprwm/hyprshade/default.nix @@ -1,25 +1,25 @@ { lib , buildPythonPackage , fetchFromGitHub -, pdm-backend +, hatchling , more-itertools , click }: buildPythonPackage rec { pname = "hyprshade"; - version = "0.9.3"; + version = "0.12.1"; format = "pyproject"; src = fetchFromGitHub { owner = "loqusion"; repo = "hyprshade"; - rev = "refs/tags/v${version}"; - hash = "sha256-ou072V9nZUqf5DEolkMQy979SjaZs4iOuoszw50k4Y8="; + rev = "refs/tags/${version}"; + hash = "sha256-xcFX1YApwEN40jPgRT0H/7SiODxXGYVTPUkSZ8OFIWs="; }; nativeBuildInputs = [ - pdm-backend + hatchling ]; propagatedBuildInputs = [ more-itertools click ]; From bdd31057ee358294ec4129c965f643441fbede4d Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 12 Sep 2023 10:17:39 -0400 Subject: [PATCH 145/346] expr: 1.15.1 -> 1.15.2 Diff: https://github.com/antonmedv/expr/compare/v1.15.1...v1.15.2 Changelog: https://github.com/antonmedv/expr/releases/tag/v1.15.2 --- pkgs/development/interpreters/expr/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/interpreters/expr/default.nix b/pkgs/development/interpreters/expr/default.nix index a037d306af13..dd5f26d60cfd 100644 --- a/pkgs/development/interpreters/expr/default.nix +++ b/pkgs/development/interpreters/expr/default.nix @@ -5,18 +5,18 @@ buildGoModule rec { pname = "expr"; - version = "1.15.1"; + version = "1.15.2"; src = fetchFromGitHub { owner = "antonmedv"; repo = "expr"; rev = "v${version}"; - hash = "sha256-ILa+PG2UU/qgLvcsEoC0rHIeQvKRMUfW60AT6wjApZg="; + hash = "sha256-cPgVpoixZKFVquT2XehVn+j288HWuWKeGeAaTKfoQs4="; }; sourceRoot = "${src.name}/repl"; - vendorHash = "sha256-jdf3MPix+nDr2X6se4I8SNMUCd/Ndr9PvJZgJEk+cL4="; + vendorHash = "sha256-bmWaSemyihr/zTQ1BE/dzCrCYdOWGzs3W3+kwrV5N0U="; ldflags = [ "-s" "-w" ]; From b82d963e7bc6a29e90b6a9a9dd70d6c068271e80 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Wed, 6 Sep 2023 10:19:25 +0200 Subject: [PATCH 146/346] yosys: 0.32 -> 0.33 https://github.com/YosysHQ/yosys/releases/tag/yosys-0.33 A patch needed to be adapted to fix this error on macOS: ``` + clang -std=c++11 -o yosys-always_full -I../.. always_full_tb.cc -lstdc++ In file included from always_full_tb.cc:1: In file included from ./yosys-always_full.cc:1: ../../backends/cxxrtl/cxxrtl.h:29:10: fatal error: 'cstddef' file not found #include ^~~~~~~~~ 1 error generated. make: *** [Makefile:885: test] Error 1 ``` --- pkgs/development/compilers/yosys/default.nix | 4 +-- .../compilers/yosys/fix-clang-build.patch | 28 +++++++++++++++++-- 2 files changed, 27 insertions(+), 5 deletions(-) diff --git a/pkgs/development/compilers/yosys/default.nix b/pkgs/development/compilers/yosys/default.nix index 6ce2cc9f162e..ae7a653d7473 100644 --- a/pkgs/development/compilers/yosys/default.nix +++ b/pkgs/development/compilers/yosys/default.nix @@ -71,13 +71,13 @@ let in stdenv.mkDerivation rec { pname = "yosys"; - version = "0.32"; + version = "0.33"; src = fetchFromGitHub { owner = "YosysHQ"; repo = "yosys"; rev = "${pname}-${version}"; - hash = "sha256-ER61pIvXNjV74A9LwxeXDXoQFkVgqjdI9KiYQyOobk8="; + hash = "sha256-3MsWF161pqqeAbmeTlkQY6UpU4pq1WT0XXK9yciwt0M="; }; enableParallelBuilding = true; diff --git a/pkgs/development/compilers/yosys/fix-clang-build.patch b/pkgs/development/compilers/yosys/fix-clang-build.patch index f44d60d7e6ec..e81ddefcd9cc 100644 --- a/pkgs/development/compilers/yosys/fix-clang-build.patch +++ b/pkgs/development/compilers/yosys/fix-clang-build.patch @@ -1,8 +1,8 @@ diff --git a/Makefile b/Makefile -index 86abc6958..a72f7b792 100644 +index fa95b7b70..4d15ed721 100644 --- a/Makefile +++ b/Makefile -@@ -187,7 +192,7 @@ endif +@@ -215,7 +215,7 @@ ABC_ARCHFLAGS += "-DABC_NO_RLIMIT" endif ifeq ($(CONFIG),clang) @@ -10,4 +10,26 @@ index 86abc6958..a72f7b792 100644 +CXX = clang++ LD = clang++ CXXFLAGS += -std=$(CXXSTD) -Os - ABCMKARGS += ARCHFLAGS="-DABC_USE_STDINT_H" + ABCMKARGS += ARCHFLAGS="-DABC_USE_STDINT_H -Wno-c++11-narrowing $(ABC_ARCHFLAGS)" +diff --git a/tests/fmt/run-test.sh b/tests/fmt/run-test.sh +index 914a72347..bc0b129d2 100644 +--- a/tests/fmt/run-test.sh ++++ b/tests/fmt/run-test.sh +@@ -51,7 +51,7 @@ test_cxxrtl () { + local subtest=$1; shift + + ../../yosys -p "read_verilog ${subtest}.v; proc; clean; write_cxxrtl -print-output std::cerr yosys-${subtest}.cc" +- ${CC:-gcc} -std=c++11 -o yosys-${subtest} -I../.. ${subtest}_tb.cc -lstdc++ ++ ${CXX:-gcc} -std=c++11 -o yosys-${subtest} -I../.. ${subtest}_tb.cc -lstdc++ + ./yosys-${subtest} 2>yosys-${subtest}.log + iverilog -o iverilog-${subtest} ${subtest}.v ${subtest}_tb.v + ./iverilog-${subtest} |grep -v '\$finish called' >iverilog-${subtest}.log +@@ -69,7 +69,7 @@ diff iverilog-always_full.log iverilog-always_full-1.log + + ../../yosys -p "read_verilog display_lm.v" >yosys-display_lm.log + ../../yosys -p "read_verilog display_lm.v; write_cxxrtl yosys-display_lm.cc" +-${CC:-gcc} -std=c++11 -o yosys-display_lm_cc -I../.. display_lm_tb.cc -lstdc++ ++${CXX:-gcc} -std=c++11 -o yosys-display_lm_cc -I../.. display_lm_tb.cc -lstdc++ + ./yosys-display_lm_cc >yosys-display_lm_cc.log + for log in yosys-display_lm.log yosys-display_lm_cc.log; do + grep "^%l: \\\\bot\$" "$log" From 6afdc8756b8b15eeae262da937cdc341a87064c7 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Tue, 12 Sep 2023 16:34:42 +0200 Subject: [PATCH 147/346] python3Packages.pytest-cid: 1.1.1 -> 1.1.2 https://github.com/ntninja/pytest-cid/releases/tag/v1.1.2 --- pkgs/development/python-modules/pytest-cid/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pytest-cid/default.nix b/pkgs/development/python-modules/pytest-cid/default.nix index c46d4409a4e3..29cf253fad2f 100644 --- a/pkgs/development/python-modules/pytest-cid/default.nix +++ b/pkgs/development/python-modules/pytest-cid/default.nix @@ -9,15 +9,15 @@ buildPythonPackage rec { pname = "pytest-cid"; - version = "1.1.1"; + version = "1.1.2"; format = "flit"; disabled = pythonOlder "3.5"; src = fetchFromGitHub { owner = "ntninja"; repo = pname; - rev = "1ff9ec43ac9eaf76352ea7e7a060cd081cb8b68a"; # Version has no git tag - hash = "sha256-H2RtMGYWukowTTfqZSx+hikxzkqw1v5bA4AfZfiVl8U="; + rev = "refs/tags/v${version}"; + hash = "sha256-dcL/i5+scmdXh7lfE8+32w9PdHWf+mkunJL1vpJ5+Co="; }; postPatch = '' From 5626174a094cf3cea94ad41062c21c9806c6cef8 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Wed, 30 Aug 2023 13:36:41 +0300 Subject: [PATCH 148/346] nixos/networkmanager: nixpkgs-fmt --- .../services/networking/networkmanager.nix | 86 ++++++++++--------- 1 file changed, 46 insertions(+), 40 deletions(-) diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix index e28f96f7a6d6..ed0ca1abe39b 100644 --- a/nixos/modules/services/networking/networkmanager.nix +++ b/nixos/modules/services/networking/networkmanager.nix @@ -5,7 +5,7 @@ with lib; let cfg = config.networking.networkmanager; - delegateWireless = config.networking.wireless.enable == true && cfg.unmanaged != []; + delegateWireless = config.networking.wireless.enable == true && cfg.unmanaged != [ ]; enableIwd = cfg.wifi.backend == "iwd"; @@ -40,7 +40,7 @@ let }) (mkSection "keyfile" { unmanaged-devices = - if cfg.unmanaged == [] then null + if cfg.unmanaged == [ ] then null else lib.concatStringsSep ";" cfg.unmanaged; }) (mkSection "logging" { @@ -103,7 +103,7 @@ let }; macAddressOpt = mkOption { - type = types.either types.str (types.enum ["permanent" "preserve" "random" "stable"]); + type = types.either types.str (types.enum [ "permanent" "preserve" "random" "stable" ]); default = "preserve"; example = "00:11:22:33:44:55"; description = lib.mdDoc '' @@ -126,7 +126,8 @@ let pkgs.wpa_supplicant ]; -in { +in +{ meta = { maintainers = teams.freedesktop.members; @@ -156,7 +157,7 @@ in { int str ])); - default = {}; + default = { }; description = lib.mdDoc '' Configuration for the [connection] section of NetworkManager.conf. Refer to @@ -186,7 +187,7 @@ in { unmanaged = mkOption { type = types.listOf types.str; - default = []; + default = [ ]; description = lib.mdDoc '' List of interfaces that will not be managed by NetworkManager. Interface name can be specified here, but if you need more fidelity, @@ -251,7 +252,7 @@ in { appendNameservers = mkOption { type = types.listOf types.str; - default = []; + default = [ ]; description = lib.mdDoc '' A list of name servers that should be appended to the ones configured in NetworkManager or received by DHCP. @@ -260,7 +261,7 @@ in { insertNameservers = mkOption { type = types.listOf types.str; - default = []; + default = [ ]; description = lib.mdDoc '' A list of name servers that should be inserted before the ones configured in NetworkManager or received by DHCP. @@ -336,21 +337,21 @@ in { }; }; }); - default = []; + default = [ ]; example = literalExpression '' - [ { - source = pkgs.writeText "upHook" ''' + [ { + source = pkgs.writeText "upHook" ''' - if [ "$2" != "up" ]; then - logger "exit: event $2 != up" - exit - fi + if [ "$2" != "up" ]; then + logger "exit: event $2 != up" + exit + fi - # coreutils and iproute are in PATH too - logger "Device $DEVICE_IFACE coming up" - '''; - type = "basic"; - } ]''; + # coreutils and iproute are in PATH too + logger "Device $DEVICE_IFACE coming up" + '''; + type = "basic"; + } ]''; description = lib.mdDoc '' A list of scripts which will be executed in response to network events. ''; @@ -387,7 +388,7 @@ in { [ "networking" "networkmanager" "packages" ] [ "networking" "networkmanager" "plugins" ]) (mkRenamedOptionModule [ "networking" "networkmanager" "useDnsmasq" ] [ "networking" "networkmanager" "dns" ]) - (mkRemovedOptionModule ["networking" "networkmanager" "dynamicHosts"] '' + (mkRemovedOptionModule [ "networking" "networkmanager" "dynamicHosts" ] '' This option was removed because allowing (multiple) regular users to override host entries affecting the whole system opens up a huge attack vector. There seem to be very rare cases where this might be useful. @@ -403,7 +404,8 @@ in { config = mkIf cfg.enable { assertions = [ - { assertion = config.networking.wireless.enable == true -> cfg.unmanaged != []; + { + assertion = config.networking.wireless.enable == true -> cfg.unmanaged != [ ]; message = '' You can not use networking.networkmanager with networking.wireless. Except if you mark some interfaces as unmanaged by NetworkManager. @@ -414,25 +416,29 @@ in { hardware.wirelessRegulatoryDatabase = true; environment.etc = { - "NetworkManager/NetworkManager.conf".source = configFile; - } - // builtins.listToAttrs (map (pkg: nameValuePair "NetworkManager/${pkg.networkManagerPlugin}" { + "NetworkManager/NetworkManager.conf".source = configFile; + } + // builtins.listToAttrs (map + (pkg: nameValuePair "NetworkManager/${pkg.networkManagerPlugin}" { source = "${pkg}/lib/NetworkManager/${pkg.networkManagerPlugin}"; - }) cfg.plugins) - // optionalAttrs cfg.enableFccUnlock - { - "ModemManager/fcc-unlock.d".source = - "${pkgs.modemmanager}/share/ModemManager/fcc-unlock.available.d/*"; - } - // optionalAttrs (cfg.appendNameservers != [] || cfg.insertNameservers != []) - { - "NetworkManager/dispatcher.d/02overridedns".source = overrideNameserversScript; - } - // listToAttrs (lib.imap1 (i: s: - { - name = "NetworkManager/dispatcher.d/${dispatcherTypesSubdirMap.${s.type}}03userscript${lib.fixedWidthNumber 4 i}"; - value = { mode = "0544"; inherit (s) source; }; - }) cfg.dispatcherScripts); + }) + cfg.plugins) + // optionalAttrs cfg.enableFccUnlock + { + "ModemManager/fcc-unlock.d".source = + "${pkgs.modemmanager}/share/ModemManager/fcc-unlock.available.d/*"; + } + // optionalAttrs (cfg.appendNameservers != [ ] || cfg.insertNameservers != [ ]) + { + "NetworkManager/dispatcher.d/02overridedns".source = overrideNameserversScript; + } + // listToAttrs (lib.imap1 + (i: s: + { + name = "NetworkManager/dispatcher.d/${dispatcherTypesSubdirMap.${s.type}}03userscript${lib.fixedWidthNumber 4 i}"; + value = { mode = "0544"; inherit (s) source; }; + }) + cfg.dispatcherScripts); environment.systemPackages = packages; From 0bfc763df22be1085ab2c5d953436e9c1b1da965 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Wed, 30 Aug 2023 13:27:35 +0300 Subject: [PATCH 149/346] nixos/modemmanager: enableFccUnlock -> enableBundledFccUnlockScripts PR #155414 introduced an option to support enabling the FCC unlock scripts that ModemManager provides, but since 1.18.4 doesn't execute anymore. However, this option is specifically only about the unlock scripts provided with ModemManager so far. Rename the option to make this more obvious. --- nixos/doc/manual/release-notes/rl-2205.section.md | 3 +-- nixos/modules/services/networking/networkmanager.nix | 8 +++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/nixos/doc/manual/release-notes/rl-2205.section.md b/nixos/doc/manual/release-notes/rl-2205.section.md index d4581fe9441c..6f5a807f478a 100644 --- a/nixos/doc/manual/release-notes/rl-2205.section.md +++ b/nixos/doc/manual/release-notes/rl-2205.section.md @@ -935,8 +935,7 @@ In addition to numerous new and upgraded packages, this release has the followin using the `pomerium-cli` command, you should now install the `pomerium-cli` package. -- The option - [services.networking.networkmanager.enableFccUnlock](#opt-networking.networkmanager.enableFccUnlock) +- The option `services.networking.networkmanager.enableFccUnlock` was added to support FCC unlock procedures. Since release 1.18.4, the ModemManager daemon no longer automatically performs the FCC unlock procedure by default. See [the docs](https://modemmanager.org/docs/modemmanager/fcc-unlock/) for more details. diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix index ed0ca1abe39b..f41a0b015348 100644 --- a/nixos/modules/services/networking/networkmanager.nix +++ b/nixos/modules/services/networking/networkmanager.nix @@ -370,11 +370,12 @@ in ''; }; - enableFccUnlock = mkOption { + enableBundledFccUnlockScripts = mkOption { type = types.bool; default = false; description = lib.mdDoc '' - Enable FCC unlock procedures. Since release 1.18.4, the ModemManager daemon no longer + Enable FCC unlock procedures shipped with ModemManager. + Since release 1.18.4, the ModemManager daemon no longer automatically performs the FCC unlock procedure by default. See [the docs](https://modemmanager.org/docs/modemmanager/fcc-unlock/) for more details. @@ -388,6 +389,7 @@ in [ "networking" "networkmanager" "packages" ] [ "networking" "networkmanager" "plugins" ]) (mkRenamedOptionModule [ "networking" "networkmanager" "useDnsmasq" ] [ "networking" "networkmanager" "dns" ]) + (mkRenamedOptionModule [ "networking" "networkmanager" "enableFccUnlock" ] [ "networking" "networkmanager" "enableBundledFccUnlockScripts" ]) (mkRemovedOptionModule [ "networking" "networkmanager" "dynamicHosts" ] '' This option was removed because allowing (multiple) regular users to override host entries affecting the whole system opens up a huge attack @@ -423,7 +425,7 @@ in source = "${pkg}/lib/NetworkManager/${pkg.networkManagerPlugin}"; }) cfg.plugins) - // optionalAttrs cfg.enableFccUnlock + // optionalAttrs cfg.enableBundledFccUnlockScripts { "ModemManager/fcc-unlock.d".source = "${pkgs.modemmanager}/share/ModemManager/fcc-unlock.available.d/*"; From 8606f6c8e182cb56e1c7c54fd6361f7ca1870be6 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Wed, 30 Aug 2023 10:34:12 +0300 Subject: [PATCH 150/346] nixos/modemmanager: support additional FCC unlock scripts This commit introduces a `networking.networkmanager.fccUnlockScripts` option, which allows specifying additional, usually vendor-provided unlock scripts. networking.networkmanager.enableBundledFccUnlockScripts is refactored to make use of the same mechanism internally. --- .../services/networking/networkmanager.nix | 41 ++++++++++++++++--- .../tools/networking/modemmanager/default.nix | 16 ++++++++ 2 files changed, 52 insertions(+), 5 deletions(-) diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix index f41a0b015348..04e43ba49e98 100644 --- a/nixos/modules/services/networking/networkmanager.nix +++ b/nixos/modules/services/networking/networkmanager.nix @@ -381,6 +381,27 @@ in for more details. ''; }; + + fccUnlockScripts = mkOption { + type = types.listOf (types.submodule { + options = { + id = mkOption { + type = types.str; + description = lib.mdDoc "vid:pid of either the PCI or USB vendor and product ID"; + }; + path = mkOption { + type = types.path; + description = lib.mdDoc "Path to the unlock script"; + }; + }; + }); + default = [ ]; + example = literalExpression ''[{ name = "03f0:4e1d"; script = "''${pkgs.modemmanager}/share/ModemManager/fcc-unlock.available.d/03f0:4e1d"; }]''; + description = lib.mdDoc '' + List of FCC unlock scripts to enable on the system, behaving as described in + https://modemmanager.org/docs/modemmanager/fcc-unlock/#integration-with-third-party-fcc-unlock-tools. + ''; + }; }; }; @@ -425,11 +446,11 @@ in source = "${pkg}/lib/NetworkManager/${pkg.networkManagerPlugin}"; }) cfg.plugins) - // optionalAttrs cfg.enableBundledFccUnlockScripts - { - "ModemManager/fcc-unlock.d".source = - "${pkgs.modemmanager}/share/ModemManager/fcc-unlock.available.d/*"; - } + // builtins.listToAttrs (map + (e: nameValuePair "ModemManager/fcc-unlock.d/${e.id}" { + source = e.path; + }) + cfg.fccUnlockScripts) // optionalAttrs (cfg.appendNameservers != [ ] || cfg.insertNameservers != [ ]) { "NetworkManager/dispatcher.d/02overridedns".source = overrideNameserversScript; @@ -518,6 +539,16 @@ in ]; } + # if cfg.enableBundledFccUnlockScripts is set, populate + # networking.networkmanager.fccUnlockScripts with the values from + # pkgs.modemmanager.passthru.fccUnlockScripts. + (mkIf cfg.enableBundledFccUnlockScripts { + networkmanager.fccUnlockScripts = lib.optionals cfg.enableBundledFccUnlockScripts + lib.mapAttrsToList + (id: path: { inherit id path; }) + pkgs.modemmanager.passthru.fccUnlockScripts; + }) + (mkIf cfg.enableStrongSwan { networkmanager.plugins = [ pkgs.networkmanager_strongswan ]; }) diff --git a/pkgs/tools/networking/modemmanager/default.nix b/pkgs/tools/networking/modemmanager/default.nix index d66c277f1dac..e9960f5494d3 100644 --- a/pkgs/tools/networking/modemmanager/default.nix +++ b/pkgs/tools/networking/modemmanager/default.nix @@ -12,6 +12,7 @@ , python3 , libmbim , libqmi +, modemmanager , systemd , bash-completion , meson @@ -93,6 +94,21 @@ stdenv.mkDerivation rec { ''; installCheckTarget = "check"; + passthru = { + # provided FCC unlock scripts. Used by the NixOS module system to symlink + # to them from /etc/ModemManager/fcc-unlock.d/…. + # Most of them actually symlink to a "common" unlock script + fccUnlockScripts = { + "03f0:4e1d" = "${modemmanager}/share/ModemManager/fcc-unlock.available.d/1199"; + "105b:e0ab" = "${modemmanager}/share/ModemManager/fcc-unlock.available.d/105b"; + "1199:9079" = "${modemmanager}/share/ModemManager/fcc-unlock.available.d/1199"; + "1eac:1001" = "${modemmanager}/share/ModemManager/fcc-unlock.available.d/1eac"; + "2c7c:030a" = "${modemmanager}/share/ModemManager/fcc-unlock.available.d/2c7c"; + "413c:81a3" = "${modemmanager}/share/ModemManager/fcc-unlock.available.d/1199"; + "413c:81a8" = "${modemmanager}/share/ModemManager/fcc-unlock.available.d/1199"; + }; + }; + meta = with lib; { description = "WWAN modem manager, part of NetworkManager"; homepage = "https://www.freedesktop.org/wiki/Software/ModemManager/"; From 938de2ab1d0eb7d398377ab77df5469da0467134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Tue, 12 Sep 2023 17:03:01 +0200 Subject: [PATCH 151/346] vimPlugins.vim-utils: execute check and doc generation in cross compilation when host can execute the arch --- pkgs/applications/editors/vim/plugins/vim-utils.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/vim/plugins/vim-utils.nix b/pkgs/applications/editors/vim/plugins/vim-utils.nix index 44ad9295e284..16317a5d0c66 100644 --- a/pkgs/applications/editors/vim/plugins/vim-utils.nix +++ b/pkgs/applications/editors/vim/plugins/vim-utils.nix @@ -418,7 +418,7 @@ rec { forceShare = [ "man" "info" ]; nativeBuildInputs = oldAttrs.nativeBuildInputs or [] - ++ lib.optionals (stdenv.hostPlatform == stdenv.buildPlatform) [ + ++ lib.optionals (stdenv.buildPlatform.canExecute stdenv.hostPlatform) [ vimCommandCheckHook vimGenDocHook # many neovim plugins keep using buildVimPlugin neovimRequireCheckHook From 03ceed74d4370801ea1832ac297f1b1220fdf855 Mon Sep 17 00:00:00 2001 From: networkException Date: Tue, 12 Sep 2023 17:22:36 +0200 Subject: [PATCH 152/346] ungoogled-chromium: 116.0.5845.179-1 -> 116.0.5845.187-1 https://chromereleases.googleblog.com/2023/09/stable-channel-update-for-desktop_11.html This update contains 1 security fix. CVEs: CVE-2023-4863 --- .../networking/browsers/chromium/upstream-info.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.nix b/pkgs/applications/networking/browsers/chromium/upstream-info.nix index 37cdef064d6c..4df0ee191517 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.nix +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.nix @@ -54,12 +54,12 @@ version = "2023-06-09"; }; ungoogled-patches = { - rev = "116.0.5845.179-1"; - sha256 = "0if5717w6211fbhqzgfrigy5q6yag7lj6ycdjpn1b5d0ryc97rnr"; + rev = "116.0.5845.187-1"; + sha256 = "0br5lms6mxg2mg8ix5mkb79bg6wk5f2hn0xy1xc7gk9h3rl58is1"; }; }; - sha256 = "09b0i48sr5ynlhpya4lwnhgp081q4lqd23cc5l59dsxzh5ivbycb"; - sha256bin64 = "1d49qcjh5mhfzqzjn4ilj23dpzd6nyl1pij5iv43dwxl8z2r3l3m"; - version = "116.0.5845.179"; + sha256 = "152lyrw8k36gbmf4fmfny4ajqh0523y5d48yrshbgwn5klmbhaji"; + sha256bin64 = "118sk39939d52srws2vgs1mfizpikswxh5ihd9x053vzn0aj8cfa"; + version = "116.0.5845.187"; }; } From 84d0c85afd552526f3a9cdb5504eb42a42b7ca9f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 12 Sep 2023 17:40:06 +0200 Subject: [PATCH 153/346] amass: 4.1.0 -> 4.2.0 Diff: https://github.com/OWASP/Amass/compare/refs/tags/v4.1.0...v4.2.0 Changelog: https://github.com/OWASP/Amass/releases/tag/v4.2.0 --- pkgs/tools/networking/amass/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/amass/default.nix b/pkgs/tools/networking/amass/default.nix index 92655b27eeb2..d65a38637fe9 100644 --- a/pkgs/tools/networking/amass/default.nix +++ b/pkgs/tools/networking/amass/default.nix @@ -5,16 +5,16 @@ buildGoModule rec { pname = "amass"; - version = "4.1.0"; + version = "4.2.0"; src = fetchFromGitHub { owner = "OWASP"; repo = "Amass"; rev = "refs/tags/v${version}"; - hash = "sha256-mNoz9kVW+fwmur6SGWcpH9XYCYxasZJM0Bu4Bd4XMek="; + hash = "sha256-lhvU2fUnjQ+D+EZDRircNg/np4Ynk+HzOBgxT1L8BaQ="; }; - vendorHash = "sha256-rX84qTlvPyDWVvHmpIVCP50yy+m+s/VtffORL+G/3kg="; + vendorHash = "sha256-PdFIWK4yBh8Bb9mzYdU2h7pDPK8FZMhu8meTd9snP48="; outputs = [ "out" From 22dc2c3a5504e8b07b5bc7b21e7839be7cf68142 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 12 Sep 2023 15:41:50 +0000 Subject: [PATCH 154/346] exploitdb: 2023-09-09 -> 2023-09-12 Diff: https://gitlab.com/exploit-database/exploitdb/-/compare/refs/tags/2023-09-09...2023-09-12 --- pkgs/tools/security/exploitdb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/exploitdb/default.nix b/pkgs/tools/security/exploitdb/default.nix index fc8088b9f969..6de4cbd7eff8 100644 --- a/pkgs/tools/security/exploitdb/default.nix +++ b/pkgs/tools/security/exploitdb/default.nix @@ -6,13 +6,13 @@ stdenv.mkDerivation rec { pname = "exploitdb"; - version = "2023-09-09"; + version = "2023-09-12"; src = fetchFromGitLab { owner = "exploit-database"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-AO8iuQZMipt7Va9FUmdT0wCcZhuKNU44jFL7MpVN3AM="; + hash = "sha256-XMOXBlCld1YXymRMOMIeQgszn8L6rMCZWPHlLtIAlRg="; }; nativeBuildInputs = [ From ef67e8474eeaddecde7fe398cc2c1d9633b751ee Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 12 Sep 2023 17:44:31 +0200 Subject: [PATCH 155/346] python311Packages.identify: 2.5.27 -> 2.5.28 Diff: https://github.com/pre-commit/identify/compare/refs/tags/v2.5.27...v2.5.28 --- pkgs/development/python-modules/identify/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/identify/default.nix b/pkgs/development/python-modules/identify/default.nix index bd8872d779c6..ffcd7ba3f01c 100644 --- a/pkgs/development/python-modules/identify/default.nix +++ b/pkgs/development/python-modules/identify/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "identify"; - version = "2.5.27"; + version = "2.5.28"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "pre-commit"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-qhYSKmHV2OGGUqfFbUiZkmUQrjSQ4I+ZX5C+D8sKj0g="; + hash = "sha256-pGSXXsA+gIIIZbnwa22EmizZT65MqZrWd3+o47VatBs="; }; nativeCheckInputs = [ From cf7bdf94863f5feabb0b76afd824fe9f74353d71 Mon Sep 17 00:00:00 2001 From: Wojciech Nawrocki Date: Tue, 12 Sep 2023 12:00:38 -0400 Subject: [PATCH 156/346] drat-trim: 2020-06-05 -> 2023-05-22 --- pkgs/applications/science/logic/drat-trim/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/science/logic/drat-trim/default.nix b/pkgs/applications/science/logic/drat-trim/default.nix index c58a29dc2894..8fb64d371ae2 100644 --- a/pkgs/applications/science/logic/drat-trim/default.nix +++ b/pkgs/applications/science/logic/drat-trim/default.nix @@ -1,14 +1,14 @@ { lib, stdenv, fetchFromGitHub }: stdenv.mkDerivation { - pname = "drat-trim-unstable"; - version = "2020-06-05"; + pname = "drat-trim"; + version = "2023-05-22"; src = fetchFromGitHub { owner = "marijnheule"; repo = "drat-trim"; - rev = "9afad0f7156a1e9c6ce19dce5d72cf1cb9a3ef27"; - sha256 = "1zq585igfaknwqbvv2cji744016zxadbvr0ifr5l6yq13m0vvn3b"; + rev = "2e5e29cb0019d5cfd547d4208dca1b3ec290349f"; + hash = "sha256-sV3A0f1TLSaTIdAtT6y8rU3ZS2UqEePJYSf3UySOlSA="; }; postPatch = '' From 7c1c01b516e5ca8783ffe98fc51870738dac8590 Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 12 Sep 2023 11:53:21 -0400 Subject: [PATCH 157/346] textplots: 0.8.3 -> 0.8.4 Diff: https://diff.rs/textplots/0.8.3/0.8.4 --- pkgs/tools/graphics/textplots/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/graphics/textplots/default.nix b/pkgs/tools/graphics/textplots/default.nix index 041a9fc59904..a423ca9f30e2 100644 --- a/pkgs/tools/graphics/textplots/default.nix +++ b/pkgs/tools/graphics/textplots/default.nix @@ -2,14 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "textplots"; - version = "0.8.3"; + version = "0.8.4"; src = fetchCrate { inherit pname version; - hash = "sha256-rYUo8A5jasGQb9CjW5u5kM7PIocq353R6v+Z7OhzVUg="; + hash = "sha256-DtDxD3b8idYOBcHKkLbOy6NUU0bjWzDySGoW8uOT4xc="; }; - cargoHash = "sha256-1Z+Og3n9/LUzfBoWNXjvNfuQByEq3vtXhGzi6X961w0="; + cargoHash = "sha256-tXqonC4qawS6eu9dPt/6/TVYCjTroG+9XikmYQHCLdA="; + + buildFeatures = [ "tool" ]; meta = with lib; { description = "Terminal plotting written in Rust"; From 6df0facb7f94d4662b5684f0588a855baeacb0c9 Mon Sep 17 00:00:00 2001 From: Adam Stephens Date: Tue, 12 Sep 2023 09:03:41 -0400 Subject: [PATCH 158/346] envoy: update broken deps hashes --- pkgs/servers/http/envoy/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/http/envoy/default.nix b/pkgs/servers/http/envoy/default.nix index bf79f5faf239..e5d56fbdd0df 100644 --- a/pkgs/servers/http/envoy/default.nix +++ b/pkgs/servers/http/envoy/default.nix @@ -80,8 +80,8 @@ buildBazelPackage rec { fetchAttrs = { sha256 = { - x86_64-linux = "sha256-KcTh6Fd1EUXcXByPSwMVy5J/6VSVGWBmHr8asS1/ffU="; - aarch64-linux = "sha256-v1T6/qfVapsNFQiB9vdZvxBZ3RoNO7MxgRh3s9dA+pQ="; + x86_64-linux = "sha256-+8MnbcFUyAE2122VA5olWAW8ZgjGweumRI62bxi9KOI="; + aarch64-linux = "sha256-4PH8rgsHxEwtx8RQGjLbAxHpLfWVqRLOvSX9sqQoy4Y="; }.${stdenv.system} or (throw "unsupported system ${stdenv.system}"); dontUseCmakeConfigure = true; dontUseGnConfigure = true; @@ -103,6 +103,9 @@ buildBazelPackage rec { rm -r $bazelOut/external/local_jdk rm -r $bazelOut/external/bazel_gazelle_go_repository_tools/bin + # Remove compiled python + find $bazelOut -name '*.pyc' -delete + # Remove Unix timestamps from go cache. rm -rf $bazelOut/external/bazel_gazelle_go_repository_cache/{gocache,pkg/mod/cache,pkg/sumdb} ''; From 8c75228eab5a7d5aed4b859c54b145cf1e0a0e32 Mon Sep 17 00:00:00 2001 From: pmenke Date: Tue, 12 Sep 2023 18:58:28 +0200 Subject: [PATCH 159/346] citrix_workspace: remove myself from maintainer list I'm no longer able to test new versions of this package, as I no longer have access to any citrix infrastructure. --- .../applications/networking/remote/citrix-workspace/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/remote/citrix-workspace/generic.nix b/pkgs/applications/networking/remote/citrix-workspace/generic.nix index cd5f21a15ed8..052369bfcc92 100644 --- a/pkgs/applications/networking/remote/citrix-workspace/generic.nix +++ b/pkgs/applications/networking/remote/citrix-workspace/generic.nix @@ -216,7 +216,7 @@ stdenv.mkDerivation rec { description = "Citrix Workspace"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; platforms = platforms.linux; - maintainers = with maintainers; [ pmenke michaeladler ]; + maintainers = with maintainers; [ michaeladler ]; inherit homepage; }; } From 0a178670a38856c75fe6b744690a02703063b6e2 Mon Sep 17 00:00:00 2001 From: Melvyn Date: Mon, 11 Sep 2023 19:42:40 -0700 Subject: [PATCH 160/346] gogdl: d2fa34b -> 89d15f1 Contains necessary fixes like Heroic-Games-Launcher/heroic-gogdl#37 and Heroic-Games-Launcher/heroic-gogdl#40 --- pkgs/games/gogdl/default.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/pkgs/games/gogdl/default.nix b/pkgs/games/gogdl/default.nix index a6b41e7bd645..d5b3d0a5a544 100644 --- a/pkgs/games/gogdl/default.nix +++ b/pkgs/games/gogdl/default.nix @@ -17,8 +17,8 @@ buildPythonApplication rec { src = fetchFromGitHub { owner = "Heroic-Games-Launcher"; repo = "heroic-gogdl"; - rev = "d2fa34bfba7beb2ecc0e3fc70a657f2c612c8a10"; - hash = "sha256-YCqtfY49lDg6sLrF/INOZVD9cMCwvejhySzUWrxHKAw="; + rev = "89d15f1593cc26f15a5f8f409bb623764c095d37"; + hash = "sha256-EECpXGVhcwihKB8fLObVvYzFD8uh7CxYKtFiGc0Jqbk="; }; disabled = pythonOlder "3.8"; @@ -28,13 +28,6 @@ buildPythonApplication rec { requests ]; - patches = [ - (fetchpatch { - url = "https://patch-diff.githubusercontent.com/raw/Heroic-Games-Launcher/heroic-gogdl/pull/37.patch"; - hash = "sha256-oZLetPoWzsEDrL0Bh89HB4hTn70FTh8aXj9mKGr4Dqw="; - }) - ]; - pythonImportsCheck = [ "gogdl" ]; meta = with lib; { From 68680589b13325bc81c730f802694f1bc61d6937 Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 12 Sep 2023 13:45:58 -0400 Subject: [PATCH 161/346] ruff: 0.0.288 -> 0.0.289 Diff: https://github.com/astral-sh/ruff/compare/v0.0.288...v0.0.289 Changelog: https://github.com/astral-sh/ruff/releases/tag/v0.0.289 --- pkgs/development/tools/ruff/Cargo.lock | 8 ++++---- pkgs/development/tools/ruff/default.nix | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/ruff/Cargo.lock b/pkgs/development/tools/ruff/Cargo.lock index d1dfed43081d..9eae7ab2982a 100644 --- a/pkgs/development/tools/ruff/Cargo.lock +++ b/pkgs/development/tools/ruff/Cargo.lock @@ -821,7 +821,7 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flake8-to-ruff" -version = "0.0.288" +version = "0.0.289" dependencies = [ "anyhow", "clap", @@ -2037,7 +2037,7 @@ dependencies = [ [[package]] name = "ruff" -version = "0.0.288" +version = "0.0.289" dependencies = [ "annotate-snippets 0.9.1", "anyhow", @@ -2135,7 +2135,7 @@ dependencies = [ [[package]] name = "ruff_cli" -version = "0.0.288" +version = "0.0.289" dependencies = [ "annotate-snippets 0.9.1", "anyhow", @@ -2183,6 +2183,7 @@ dependencies = [ "similar", "strum", "tempfile", + "test-case", "thiserror", "tikv-jemallocator", "tracing", @@ -2400,7 +2401,6 @@ dependencies = [ "ruff_text_size", "rustc-hash", "static_assertions", - "test-case", "tiny-keccak", "unicode-ident", "unicode_names2", diff --git a/pkgs/development/tools/ruff/default.nix b/pkgs/development/tools/ruff/default.nix index a5be19cc1720..8a2a04932ff4 100644 --- a/pkgs/development/tools/ruff/default.nix +++ b/pkgs/development/tools/ruff/default.nix @@ -10,13 +10,13 @@ rustPlatform.buildRustPackage rec { pname = "ruff"; - version = "0.0.288"; + version = "0.0.289"; src = fetchFromGitHub { owner = "astral-sh"; repo = pname; rev = "v${version}"; - hash = "sha256-rDzxGIDUIxK5n8uT0vSFGrp4wOm49KtY7xKRoLZhEF8="; + hash = "sha256-DBYE3UkA30bFqoTCgE7SBs25wJ6bPvY63e31LEPBK7c="; }; cargoLock = { From fc32dce2b2458f685852a389af4a6d9783460b59 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Tue, 12 Sep 2023 14:03:38 -0400 Subject: [PATCH 162/346] keycloak: 22.0.2 -> 22.0.3 Diff: https://github.com/keycloak/keycloak/compare/22.0.2...22.0.3 --- pkgs/servers/keycloak/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/keycloak/default.nix b/pkgs/servers/keycloak/default.nix index 24d075d3b54d..4fd7fe4a08c5 100644 --- a/pkgs/servers/keycloak/default.nix +++ b/pkgs/servers/keycloak/default.nix @@ -18,11 +18,11 @@ let ''; in stdenv.mkDerivation rec { pname = "keycloak"; - version = "22.0.2"; + version = "22.0.3"; src = fetchzip { url = "https://github.com/keycloak/keycloak/releases/download/${version}/keycloak-${version}.zip"; - hash = "sha256-6A+ow34S/QIYSztPAu7Uf7IzpLZK9Kbze0GTBsSvh3U="; + hash = "sha256-QDa5YPPi7JR8fd3jni8fjkwWH/PF023avVBENEwnbVA="; }; nativeBuildInputs = [ makeWrapper jre ]; From 771d87046a80358e6ce4755d09c50d59db37805f Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Tue, 12 Sep 2023 18:31:50 +0000 Subject: [PATCH 163/346] cryptsetup: make all programs optional (#254767) Some use cases (think appliances) call for veritysetup but not cryptsetup, and others (like NixOS) don't need veritysetup and usually not integritysetup. This is especially useful for pkgsStatic where each program contains a whole copy of the libraries it needs so is quite large. --- pkgs/os-specific/linux/cryptsetup/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/cryptsetup/default.nix b/pkgs/os-specific/linux/cryptsetup/default.nix index 5e9e6eca2694..fbff9a3363de 100644 --- a/pkgs/os-specific/linux/cryptsetup/default.nix +++ b/pkgs/os-specific/linux/cryptsetup/default.nix @@ -2,6 +2,9 @@ , openssl, libuuid, pkg-config, popt, nixosTests , libargon2, withInternalArgon2 ? false + # Programs enabled by default upstream are implicitly enabled unless + # manually set to false. +, programs ? {} # The release tarballs contain precomputed manpage files, so we don't need # to run asciidoctor on the man sources. By avoiding asciidoctor, we make # the bare NixOS build hash independent of changes to the ruby ecosystem, @@ -50,7 +53,7 @@ stdenv.mkDerivation rec { # support, because the path still gets included in the binary even # though it isn't used. "--with-luks2-external-tokens-path=/" - ]; + ] ++ (with lib; mapAttrsToList (flip enableFeature)) programs; nativeBuildInputs = [ pkg-config ] ++ lib.optionals rebuildMan [ asciidoctor ]; buildInputs = [ lvm2 json_c openssl libuuid popt ] ++ lib.optional (!withInternalArgon2) libargon2; From 8c297a3827b9eb0842ae7b32ee97dbd14971af39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Tue, 12 Sep 2023 16:24:06 +0200 Subject: [PATCH 164/346] openexr_3: 3.1.10 -> 3.2.0 --- pkgs/development/libraries/openexr/3.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/openexr/3.nix b/pkgs/development/libraries/openexr/3.nix index 1bd8e63d37f9..285feac66376 100644 --- a/pkgs/development/libraries/openexr/3.nix +++ b/pkgs/development/libraries/openexr/3.nix @@ -1,21 +1,21 @@ { lib , stdenv , fetchFromGitHub -, fetchpatch -, zlib , cmake , imath +, libdeflate +, pkg-config }: stdenv.mkDerivation rec { pname = "openexr"; - version = "3.1.10"; + version = "3.2.0"; src = fetchFromGitHub { owner = "AcademySoftwareFoundation"; repo = "openexr"; rev = "v${version}"; - sha256 = "sha256-8oV7Himk9AS2e2Z3OREE7KQgFIUysXwATlUN51dDe5M="; + hash = "sha256-cV+qgx3WzdotypgpZhVFxzdKAU2rNVw0KWSdkeN0gLk="; }; outputs = [ "bin" "dev" "out" "doc" ]; @@ -29,8 +29,8 @@ stdenv.mkDerivation rec { cmakeFlags = lib.optional stdenv.hostPlatform.isStatic "-DCMAKE_SKIP_RPATH=ON"; - nativeBuildInputs = [ cmake ]; - propagatedBuildInputs = [ imath zlib ]; + nativeBuildInputs = [ cmake pkg-config ]; + propagatedBuildInputs = [ imath libdeflate ]; # Without 'sse' enforcement tests fail on i686 as due to excessive precision as: # error reading back channel B pixel 21,-76 got -nan expected -nan From fc2cabf2bf46fd8f181f9d0dcbac4c8f7a47e08c Mon Sep 17 00:00:00 2001 From: Yureka Date: Tue, 12 Sep 2023 18:04:14 +0200 Subject: [PATCH 165/346] openexr_3: disable failing test on musl --- pkgs/development/libraries/openexr/3.nix | 6 ++++++ .../libraries/openexr/disable-iex-test.patch | 13 +++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 pkgs/development/libraries/openexr/disable-iex-test.patch diff --git a/pkgs/development/libraries/openexr/3.nix b/pkgs/development/libraries/openexr/3.nix index 285feac66376..a5ce27e270e4 100644 --- a/pkgs/development/libraries/openexr/3.nix +++ b/pkgs/development/libraries/openexr/3.nix @@ -20,6 +20,12 @@ stdenv.mkDerivation rec { outputs = [ "bin" "dev" "out" "doc" ]; + patches = + # Disable broken test on musl libc + # https://github.com/AcademySoftwareFoundation/openexr/issues/1556 + lib.optional stdenv.hostPlatform.isMusl ./disable-iex-test.patch + ; + # tests are determined to use /var/tmp on unix postPatch = '' cat <(find . -name tmpDir.h) <(echo src/test/OpenEXRCoreTest/main.cpp) | while read -r f ; do diff --git a/pkgs/development/libraries/openexr/disable-iex-test.patch b/pkgs/development/libraries/openexr/disable-iex-test.patch new file mode 100644 index 000000000000..f8fff65aceb4 --- /dev/null +++ b/pkgs/development/libraries/openexr/disable-iex-test.patch @@ -0,0 +1,13 @@ +diff --git a/src/test/CMakeLists.txt b/src/test/CMakeLists.txt +index 44d9185d..8ffcd2b2 100644 +--- a/src/test/CMakeLists.txt ++++ b/src/test/CMakeLists.txt +@@ -4,7 +4,7 @@ + # We require this to get object library link library support and + # combined python 2 + 3 support + +-add_subdirectory(IexTest) ++#add_subdirectory(IexTest) + add_subdirectory(OpenEXRCoreTest) + add_subdirectory(OpenEXRTest) + add_subdirectory(OpenEXRUtilTest) From 0f977cb725e757473f4add6aaa5de778f5d23699 Mon Sep 17 00:00:00 2001 From: ember <22817873+n0emis@users.noreply.github.com> Date: Tue, 12 Sep 2023 20:32:58 +0200 Subject: [PATCH 166/346] grocy: 4.0.2 -> 4.0.3 (#254776) --- pkgs/servers/grocy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/grocy/default.nix b/pkgs/servers/grocy/default.nix index 2899141b61b4..296aba9e1fb3 100644 --- a/pkgs/servers/grocy/default.nix +++ b/pkgs/servers/grocy/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "grocy"; - version = "4.0.2"; + version = "4.0.3"; src = fetchurl { url = "https://github.com/grocy/grocy/releases/download/v${version}/grocy_${version}.zip"; - sha256 = "sha256-ZhXfZKmfg8lSzEAGIj7LMIfvaHG1FY5j+/OpOCTxm3c="; + hash = "sha256-KBTsi634SolgA01eRthMuWx7DIF7rhvJSPxiHyuKSR8="; }; nativeBuildInputs = [ unzip ]; From 2e02245aecbe12e20517b656ff14dcbbc5df7c59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 12 Sep 2023 10:53:34 +0200 Subject: [PATCH 167/346] thunderbird-bin: 115.2.0 -> 115.2.1 https://www.thunderbird.net/en-US/thunderbird/115.2.1/releasenotes/ --- .../thunderbird-bin/release_sources.nix | 530 +++++++++--------- 1 file changed, 265 insertions(+), 265 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix index 85d03cf20317..3d1783e2df87 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix @@ -1,665 +1,665 @@ { - version = "115.2.0"; + version = "115.2.1"; sources = [ - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/af/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/af/thunderbird-115.2.1.tar.bz2"; locale = "af"; arch = "linux-x86_64"; - sha256 = "61aa266f12d70ed10d8d6ba410c0462f32ac6422600b72db04a3228ec0ccddc8"; + sha256 = "6ec790ea389d3aacb87ce92f4eea013c3c09906678f7e7be2d89197ea1c94644"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/ar/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/ar/thunderbird-115.2.1.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; - sha256 = "9c7c2ab86647eaebdf83997988d4c20a8d1c68d10951c7a200ce7a1ce8231ab6"; + sha256 = "bdb690846921d78fbc18e76834be7f75eb2530c95fb6bf3475b1b2014c7ed53b"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/ast/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/ast/thunderbird-115.2.1.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; - sha256 = "83196ba09454fb9dfde6d1ea53d8602cee4523664b8bfd475bef12dbc4f63887"; + sha256 = "0b358b5fd62e8a01af76be648d49cbcfe2688e811fbb074d0a5c9c2836707dbb"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/be/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/be/thunderbird-115.2.1.tar.bz2"; locale = "be"; arch = "linux-x86_64"; - sha256 = "312b8dc35dac42199722ec5e7e48bf1bd841668f3b2f3c22ebfb1ac81faade4e"; + sha256 = "c497f4b6793b6284b4a543757a972cb32bd0b719f4616aed114d775c0d87e82b"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/bg/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/bg/thunderbird-115.2.1.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; - sha256 = "7e6d404a54c30eedf3ef131b25cbc6da1bdb0eb76ce1537274531a9d049ba2d6"; + sha256 = "e5742af97828bd26a12d95bb776530a15bedac21ac3ca3539420ea86cdae7bec"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/br/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/br/thunderbird-115.2.1.tar.bz2"; locale = "br"; arch = "linux-x86_64"; - sha256 = "fdd7f5769a38e04d2a6e6b24a653f073306ac557d2500dcb331c006bc5e77e7b"; + sha256 = "4a67429467160111eb2ad764369ca47840fcd5edde69cd005468d490c514734e"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/ca/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/ca/thunderbird-115.2.1.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; - sha256 = "e64e76588c9616ac4a9a70d228e9aa43e295998b813e69271d4c1d623190308c"; + sha256 = "91c1e37ab9093230f09ff3cec1409bf1eaf4eacd679120307d360a8dbdfe82b0"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/cak/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/cak/thunderbird-115.2.1.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; - sha256 = "f0b0e11953ebdd1f0eb97db8dd5870a177ff4b573d8c5017a9c8efada2b25828"; + sha256 = "de2547de53b17451589ed4403ae494b4aac566d5e1066446c1c713c71484dabd"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/cs/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/cs/thunderbird-115.2.1.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; - sha256 = "4538729529c69372ecef07c067c04240d244ca7ff744d338cdc4701be536a70b"; + sha256 = "220d9281f262bc77abcfd1c24b14e872c9673c8e8ad708895a1556a41db70c0a"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/cy/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/cy/thunderbird-115.2.1.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; - sha256 = "580af713d4db3d8006dc00b74563c7bb9d394a82c6882d6ee8855f477e3d9277"; + sha256 = "80896fe06303e1001ceb9aefb8144205ea023dc7ce32e90b2c7b1f0e03331a7b"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/da/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/da/thunderbird-115.2.1.tar.bz2"; locale = "da"; arch = "linux-x86_64"; - sha256 = "0796930e9e85078dcfb9cfb41460777b2eda9a79d8befd08cc34a0a5ac054267"; + sha256 = "cea678e0ca28e77f58c86d2a117f5a5655b4287fbd482106c2a57aa165e79936"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/de/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/de/thunderbird-115.2.1.tar.bz2"; locale = "de"; arch = "linux-x86_64"; - sha256 = "66a476a74f29db86d4b233b750d0d68c9524c5442d66e700d9a6c6b8842b5118"; + sha256 = "eae1b45086b49401b06c14f583b1cd6202f020b947c704853abfbe26465841b8"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/dsb/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/dsb/thunderbird-115.2.1.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; - sha256 = "77ad1962c476d1ce1b084b8e6300cb240eef669a75fb9a14eed705111014b9d5"; + sha256 = "1bfccacdc02b717aa13a533349061f785c6b4549e670b17ed62cb6061e5d49a4"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/el/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/el/thunderbird-115.2.1.tar.bz2"; locale = "el"; arch = "linux-x86_64"; - sha256 = "5a851f0063ba85f071e676fc5ed61934aaf7bd16efe30986a4b302d21e7fd2ae"; + sha256 = "d49552c27e69a837b80ab1f43f933bb0110f94a247868b646396b2f608cd29ea"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/en-CA/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/en-CA/thunderbird-115.2.1.tar.bz2"; locale = "en-CA"; arch = "linux-x86_64"; - sha256 = "4862db55345da4bdd1c9d2ad26687d1329e7563f51ff97d2e158ac1144787c23"; + sha256 = "e57f4f4845e9835120c45d5e4bfed35b3cece1b1c9a00eaf0b242a6fca3f6c00"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/en-GB/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/en-GB/thunderbird-115.2.1.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; - sha256 = "7499e5af4e8247858023f32031a53ec9e6771bf7b5ededbed2b9e4bf5792eecb"; + sha256 = "86deb32983d72697bb8c5fa565845f77a428eb9c629fc06820c2100409193ec8"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/en-US/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/en-US/thunderbird-115.2.1.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; - sha256 = "7e6d8a85bb88c70e20110e400044f6286b6986196e811158932663c2525cdefb"; + sha256 = "48548474044abe48f1b6820ca50a2b675749c488079cdd1503bd7b9f47f6051c"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/es-AR/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/es-AR/thunderbird-115.2.1.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; - sha256 = "fdb51b5ab28fadbc3c2457169b5fb6559dd3705966039a7bcc4b68fa6a97c21c"; + sha256 = "974af79f910fb3699e7af2d48358eae6aac08353884e212a6a7245491b0269fd"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/es-ES/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/es-ES/thunderbird-115.2.1.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; - sha256 = "ca3966b2000359a0d00d5cc0b81d842ef91f5c24dc0ff46b72053775a1aa6b45"; + sha256 = "4b60facead7af5009a4954b8521c7a158594ee15c89b0e814ea4c7d33e7742ec"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/es-MX/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/es-MX/thunderbird-115.2.1.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; - sha256 = "bf4c9990e24f31a2551b3d9619c92421b8e4c2101135bcdeac8d37d289533763"; + sha256 = "747153c08c152417758d462fd42728ad4d9de0c854feda1d804fd34b31774e28"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/et/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/et/thunderbird-115.2.1.tar.bz2"; locale = "et"; arch = "linux-x86_64"; - sha256 = "7666cc462a32dd8dd2344d51418cd037223b028563c83c801d86ccbe32479311"; + sha256 = "53fe77007f0a854adf954776647eb0fb735c77b06206eb445ae4cf67e509ca08"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/eu/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/eu/thunderbird-115.2.1.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; - sha256 = "849a865167057f39ac52f23ac256f03daf48e822738d53f3bd8402451167b371"; + sha256 = "cad749208fe180b60f8547cb954f3a3a2f6d51b512c83f46b40746eedc63a8a6"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/fi/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/fi/thunderbird-115.2.1.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; - sha256 = "746391ea471db27c662064e81a2d552b299f92b70ef6866df5668df10d2d6db9"; + sha256 = "b99125795824bd70039f5980d96ca92f51e056f37de47ded35acfc92efe6211e"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/fr/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/fr/thunderbird-115.2.1.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; - sha256 = "ba1af10295023906c8c92de0518e95be2f6fa236e0ae1d6916aee7b2e105239b"; + sha256 = "aa4693b642cd707a04b67665cb07f628428ce25005f695d6014d0017ff7399a1"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/fy-NL/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/fy-NL/thunderbird-115.2.1.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; - sha256 = "4176e4a93c66d958d8ce62e9a9e942176ae708b3e4b727f2b60f300d66776818"; + sha256 = "8503e7f85f973b81c3626a0681224b884d4f162f1acdc244d86032b9ab7ef60b"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/ga-IE/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/ga-IE/thunderbird-115.2.1.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; - sha256 = "83c6b85d725d578d748fd93bc8d77453aaceb0576de3235522ebeb73bcc9e7e0"; + sha256 = "fe9ad8c381eb589bfe7a1e1e566c0753c4c40e58057b74896d93251c52774846"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/gd/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/gd/thunderbird-115.2.1.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; - sha256 = "cc46405104f7629b8ea6f4e22f21c5eff4e486f61e55f9e3f5b951571ebd850f"; + sha256 = "7da47060bcff9482022734422473f5cfc7ab6cb6d06394001b643e02ae847cf3"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/gl/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/gl/thunderbird-115.2.1.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; - sha256 = "3812756f77d734bd02272eef603d2f31a5a5bf1d3872244b9e50b7dd32cd640c"; + sha256 = "ff2aab5cac9e412b51eec3824dbfa91304f0ef11a799a523b2d004de9eb5c56d"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/he/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/he/thunderbird-115.2.1.tar.bz2"; locale = "he"; arch = "linux-x86_64"; - sha256 = "4ca416569452f5178d892b0191ea9a0fbcf62c015889d8eb3137c7010a7c5204"; + sha256 = "0315c9082a2fc8142d80fd5d9214df15b09439ce032c9b14b67e294937e85883"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/hr/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/hr/thunderbird-115.2.1.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; - sha256 = "68c46cb089eb49e026cf4465e3d68be735e98c7b9b95281b66c01c3b57daee9b"; + sha256 = "fc3a825581d3076686529053e82fd42c8e5ef424828d608d62d0c31ac45e0115"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/hsb/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/hsb/thunderbird-115.2.1.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; - sha256 = "77a8c524fbf8bb05c88446f5005fb0fa32fd76f1d34b9db7668452fad77cf9eb"; + sha256 = "0163507ddbba36493633ba57ff84cffd5bee36e1c1ed716b083a3e042a7d5999"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/hu/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/hu/thunderbird-115.2.1.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; - sha256 = "eb20883ecbf4546c1d8e8892a13c79e00dc14724b797a2c06ac01a1d755fc2d4"; + sha256 = "c44f49d00e3e03027f3fdf407613bc052346b47a899a905709bd415cd6b5616d"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/hy-AM/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/hy-AM/thunderbird-115.2.1.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; - sha256 = "9cc14fd4e3e842bc09e4c6c6e14c42741c4ed3d0cc4e5acbdd5339a268971321"; + sha256 = "0a95d0f1fb25e2d53cf6f622cff4950b9b2c08b755775ffeb9b9e0e02c8fd84b"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/id/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/id/thunderbird-115.2.1.tar.bz2"; locale = "id"; arch = "linux-x86_64"; - sha256 = "54403d78f24f9f1ce1195040963c36d0bac466f59956248607c8043d411fea62"; + sha256 = "f687ad0c797c23213e9d3f99ba598f82dd4412e85eb0056be68d35bca519ebef"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/is/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/is/thunderbird-115.2.1.tar.bz2"; locale = "is"; arch = "linux-x86_64"; - sha256 = "d4ed45ce1c2847002007ebe50edf59eda9bb6a286a76eb6ea38b8e90bc153c59"; + sha256 = "d3dfe00ead9922d045b7b16da29dfdbd33241df64cf229acaf9b336baf33d966"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/it/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/it/thunderbird-115.2.1.tar.bz2"; locale = "it"; arch = "linux-x86_64"; - sha256 = "228bd4f80238e30878adf3ba1a7c9c0675c10a6a7071b7c96debba7795c41997"; + sha256 = "ad6f0d910ec164069f3df453f7d505d79281955d2770511b7b2f5e537264e935"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/ja/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/ja/thunderbird-115.2.1.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; - sha256 = "1b7326713eacfd22a9b4f33db10a386bfcfbd9c2feda032c4631aeb2ff29db7f"; + sha256 = "0c73f8e985c1f5cad17dc743cb7896886e75daf6bfa06bd6dc45115f5972fc65"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/ka/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/ka/thunderbird-115.2.1.tar.bz2"; locale = "ka"; arch = "linux-x86_64"; - sha256 = "44adb3ec23783b2f7044d545eabaaa26b044d93ba3cae254c721cb6b5ce9c202"; + sha256 = "a03164ab8a35f690d06f2874e6f9d8a09aa1c08c2bd237760f7491f851f9c118"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/kab/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/kab/thunderbird-115.2.1.tar.bz2"; locale = "kab"; arch = "linux-x86_64"; - sha256 = "14f9341a7ec249556c0285743c6e2342bd7ef3428e5f67cbd137d9d48c176b44"; + sha256 = "221400b62e8114d50168cd90919dc86c7134f2817486bb79eb4306148a7f5d0a"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/kk/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/kk/thunderbird-115.2.1.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; - sha256 = "2d45332e97b17a1fa3f510d583e5d889052382eb3cc51b1c1aa795abdc15cbfe"; + sha256 = "2a71a2b04d17867ca11f14c4abe26080ea53fe292f9ef48652b3faade0d7dd10"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/ko/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/ko/thunderbird-115.2.1.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; - sha256 = "e5fffae30d11aa07f124eeaaf85fcefaa493d359aada79715de7bafa28c391e4"; + sha256 = "bcff9316fd5e0bffed71ef0e6700e0ed3ea889ed8378015225edbaa1d7a2d241"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/lt/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/lt/thunderbird-115.2.1.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; - sha256 = "7350008c0f6758d448100c910c08c70bdc3f2dc1d035917d98ea1621e811de49"; + sha256 = "15314e896b9b01771a85da9dbf00c8005ffc29cd998ad2173c4702817faf7257"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/lv/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/lv/thunderbird-115.2.1.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; - sha256 = "fbae2e41d30961d6eb0332ca4874e5051f376cccfc5bbc3d45c37a310a6e2c78"; + sha256 = "6443c684e6d9b94609585e24d69393923ac9022d6465b6075c02f0d13c575860"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/ms/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/ms/thunderbird-115.2.1.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; - sha256 = "acf35783614d2192096e9a56568405c1a317ed4a90ba1522a4b12b7a36b5f2b2"; + sha256 = "6ca9aa994e4783c9f4fea81e32e154e427698dd334ac46e0bf7a96c8fe4f2cab"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/nb-NO/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/nb-NO/thunderbird-115.2.1.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; - sha256 = "c1338953e49591abc7cc81c1e4ca75758a10d5c02af918a31cefb67361dcf9c2"; + sha256 = "ce379df01e38b254eb03fdb1b652abd4b0b3f4e233273b1d67e5d6e251fa57cf"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/nl/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/nl/thunderbird-115.2.1.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; - sha256 = "72dd0db24c331e38b90a0530bbd65308f44f503cfb91830b1f0aa76af343b1c6"; + sha256 = "17f72bc671926c1c1a30df4cfc221046c3b3678e7c6653dd704d4f1db72bcda4"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/nn-NO/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/nn-NO/thunderbird-115.2.1.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; - sha256 = "e7b454f994ef122993284ff341bcb1212fcf2c81cda207751b3a7ee2478c050f"; + sha256 = "2c2de12ce1a45f83ae2fafdf908364b8a7f69c63030b126d893df516f593cf3e"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/pa-IN/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/pa-IN/thunderbird-115.2.1.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; - sha256 = "57852e3458e5713777614cd82818b76a58bb229d2e56bf65c590bc7bd1e25e43"; + sha256 = "a5495c9469b0d2436b467133d2368754377aec509ce8d21749e58028a67a9815"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/pl/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/pl/thunderbird-115.2.1.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; - sha256 = "0848d4aca97ede2dd9f2ff3797d911d9bbeba56b0caf5ea8a31b27228cd36c2f"; + sha256 = "20f91a27f13c2e806308382bf19e8748e4c7a419b89a6e9738d277c077c8c34d"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/pt-BR/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/pt-BR/thunderbird-115.2.1.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; - sha256 = "6c6bd5d57ad2f4dc798c5e75025fc8a822e79568d3aeebc26e084c95c2d750fb"; + sha256 = "4303cedc8d80bfcfd6127271feccae6a2da8c18a53f839fbb1e0c4cb72d2fb79"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/pt-PT/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/pt-PT/thunderbird-115.2.1.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; - sha256 = "48c1c7035e7e8ae02ea9efc6539cc4262a285dff31c68bad7f1a4379f1e7ba96"; + sha256 = "c68eb14f000af4fe8cf6f18536f30713c69589ca0cb82c8fa439790181acf74f"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/rm/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/rm/thunderbird-115.2.1.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; - sha256 = "a2f69dd3668cbd3f77ed7bad7db7a75122a52373c1242045aa596acd59f06857"; + sha256 = "529a5c074528740afa763143889449324abc72195a2838440da4e392c2dc1c73"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/ro/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/ro/thunderbird-115.2.1.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; - sha256 = "b49bf0e671e9cde206be7efd42c8c92c036b1e8e399929e93a8025e7b8ea4548"; + sha256 = "166d54a779379219be0ffef97a7332acd25e9575ebfc66b0178d9c77d37679a9"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/ru/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/ru/thunderbird-115.2.1.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; - sha256 = "95863a9b7087def490ee0e9dc0a4a85bdf468ff65791d6910c9a7e663bdd671d"; + sha256 = "4e8f8bb50fa3d6f4c307398fa99839bd788751f7cc26353295440936c81824a4"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/sk/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/sk/thunderbird-115.2.1.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; - sha256 = "7bcf570eb4f912317c97fb2fbd1ef8cfa6923145f0ffac4932e75e7535f26010"; + sha256 = "874e16d287596fc666d949c438dcbcc8582bccc8003add0c9482636843ffed50"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/sl/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/sl/thunderbird-115.2.1.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; - sha256 = "8b829344a00fc046c35684258e64720d6b2543ba459025e73e26c72701237c49"; + sha256 = "93c789e5f3568ed79c22bf8371a2f9e7727411458c0ccb310d31904010d07936"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/sq/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/sq/thunderbird-115.2.1.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; - sha256 = "4a80b2459f96de051145c2c01310962b56605809a8dcd7aa559e1ebf3833831d"; + sha256 = "89ada58e070ae1d1bdd4047f4747c6773a3c8252a48bbf388afd9d129b63b7eb"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/sr/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/sr/thunderbird-115.2.1.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; - sha256 = "bcbdb38ee9838667080ebcca7b6a0ea27d4ca749d212d657bf6e5d1eb31cc841"; + sha256 = "54d54e961b0c809851d37a0b2b6ab2d7825ea8a88cccf62634db428d90cb9d9e"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/sv-SE/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/sv-SE/thunderbird-115.2.1.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; - sha256 = "31f5d267f66d2ac82739c0d3451e3733fa52cb7bbd9c42ea166507e93f1510b9"; + sha256 = "701106273782a6ff8ebba63cbc9dc1df05ae0c4b364cc82d616b3e048fabf8e7"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/th/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/th/thunderbird-115.2.1.tar.bz2"; locale = "th"; arch = "linux-x86_64"; - sha256 = "64855e9a737bad4506725bc27a4d3e58663b4a2492869a9aaebe1d0738b18aa0"; + sha256 = "a34d9c972c80a69b8cc192c935159da5a1e88c8c2e01b5cac01abe733f712225"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/tr/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/tr/thunderbird-115.2.1.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; - sha256 = "2564fc331c1f3bdbe9614cb32370bbb5b8d6ba3015af19fa938f9320e1b2ca1a"; + sha256 = "93fd8e3850cb40ed2ac0c993f55a452e3194dc6215d8c6ab43c7f3068f57cbc6"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/uk/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/uk/thunderbird-115.2.1.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; - sha256 = "9a751fe34659cbb237ac46b0d2a017dbe41f896024c396fb64101f165e487c6f"; + sha256 = "d9cfecd9aaf80b581e668b336a610f9ffda776f2cfd8e1978ffba537132791d6"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/uz/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/uz/thunderbird-115.2.1.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; - sha256 = "0667a84599c8db877d7a0e0e824b9d8e0e036848033edc2d70a766d5d107f8c9"; + sha256 = "359f77b6ed2568c8d9a10dbd456951e2a2b096236b427fd620066446be53d66a"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/vi/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/vi/thunderbird-115.2.1.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; - sha256 = "f53fb64857ce9bb471210850d79ce7f06d1bb0476739a1b279f95b1f64520dae"; + sha256 = "2e37b18097f59fce9534be9821bdc79a239974d467feabc48bde776805bab188"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/zh-CN/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/zh-CN/thunderbird-115.2.1.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; - sha256 = "6a79d33b99c4b7ec33824c02d9908827b499294e90722f250441c980aca7e6cc"; + sha256 = "49180a51d7026b31b1c14af7b8e815dc2b6623bd99b6c3411d18c1dca66add87"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-x86_64/zh-TW/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-x86_64/zh-TW/thunderbird-115.2.1.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; - sha256 = "5798c36bb002a6d9420713e42600690afa7cc1fea1d2df2c9a676108da51122c"; + sha256 = "b226e792329bae5ed8edc5466e90e72d11b43c7cfc54f2a8e53db9c63fd27fee"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/af/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/af/thunderbird-115.2.1.tar.bz2"; locale = "af"; arch = "linux-i686"; - sha256 = "91529d632a61d14d11935fddf65da701b936f6e8fe7b86da0b1df4621ebf3a87"; + sha256 = "fb3587f7848c53ee10d728c9c3040adef397e067369b31e501bea11b09d95fc4"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/ar/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/ar/thunderbird-115.2.1.tar.bz2"; locale = "ar"; arch = "linux-i686"; - sha256 = "e73a6b62f5b5087fc3e62288f622affecb2461766257fe43f8b7c1e064ffb4cb"; + sha256 = "13319f60bda98502f1fb406e1c56c4b2cae88641ce1c3d53898eb7badd4af68d"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/ast/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/ast/thunderbird-115.2.1.tar.bz2"; locale = "ast"; arch = "linux-i686"; - sha256 = "a664089e193128bf13f5e66dbd044247b934c0c7f05ae7d2504a6751ce9f31ed"; + sha256 = "f10a1a374e1c80de4543eaed5fd98d3e8d39e1b98857fdd87f1529b3a83dedaf"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/be/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/be/thunderbird-115.2.1.tar.bz2"; locale = "be"; arch = "linux-i686"; - sha256 = "a81e320d3614636eb0ed4b23694cd150f7fa1ae9a9fba7a345ffd3a4a7d7c05b"; + sha256 = "1511a9cf5d53dc8b6a838d4c953952a4509ea2263270a18b29c0c4df28c6600d"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/bg/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/bg/thunderbird-115.2.1.tar.bz2"; locale = "bg"; arch = "linux-i686"; - sha256 = "b6c1ca1a2abc4d66610f7a2c8c429adca3b709b828b2ea5da548a6e025571293"; + sha256 = "a4b33808d5341f0540d66937c079e353bc4a5c0c7c8b35e7bf66c1bdb8c20107"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/br/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/br/thunderbird-115.2.1.tar.bz2"; locale = "br"; arch = "linux-i686"; - sha256 = "ea39ef65c98c89fa0e537285fd063d1733e4c82384f69027825051f55ec14ced"; + sha256 = "0b1190344a4f4dcfb01fd64964ba8a2232dfd9227fb398e13b7baab4554a8b82"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/ca/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/ca/thunderbird-115.2.1.tar.bz2"; locale = "ca"; arch = "linux-i686"; - sha256 = "5b4c3444f5da5f5a3c66f27cb144cf1065290675eeb445a33f45dc3058d69f0b"; + sha256 = "4112b6ec01b39725499c30893a997442e52dbe7b1fad6cd64594d35317bcad18"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/cak/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/cak/thunderbird-115.2.1.tar.bz2"; locale = "cak"; arch = "linux-i686"; - sha256 = "042b483bb595cc9e4b4b676f50f4011d18be100a24dc5f11e9e92459a783c232"; + sha256 = "c3eae6316d335e32a17f71b0add30025cce22bdf0abe8edcb73b0eb0af2a17b6"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/cs/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/cs/thunderbird-115.2.1.tar.bz2"; locale = "cs"; arch = "linux-i686"; - sha256 = "aae95000a972a569192ad1ce3ba230b3f03d09f6d54414550f9c37da14390f84"; + sha256 = "f899c88f7cb5a110ed1ed5046c36310f2e17729cc05b4d95171bf62664df2ca0"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/cy/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/cy/thunderbird-115.2.1.tar.bz2"; locale = "cy"; arch = "linux-i686"; - sha256 = "eaca1be55346bff8449988f4da16c2a543211172e72f21e09ebc2d476e0bc045"; + sha256 = "844fbca12ab0f78de1b9429cfccaaa0271d947da07a8b0c6aed70aa6633b5524"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/da/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/da/thunderbird-115.2.1.tar.bz2"; locale = "da"; arch = "linux-i686"; - sha256 = "4de1cfeebf2e009aefa0da49ded961ee886c1cfb37812cb0d5272bea2329ec55"; + sha256 = "a59d61fc65a39f10091ff3cbe257a3b622d215d95209330d32e3ef97dd963be0"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/de/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/de/thunderbird-115.2.1.tar.bz2"; locale = "de"; arch = "linux-i686"; - sha256 = "3fdf99f3c5d6281b646ca83d83bef7b6d5f6f8e7ddca4524e035624f434ac861"; + sha256 = "ac42777c5bb9e1f7c7590717619740445850b63622f9d1af88c3d9843319d5ff"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/dsb/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/dsb/thunderbird-115.2.1.tar.bz2"; locale = "dsb"; arch = "linux-i686"; - sha256 = "1cfa9f74113be33f5621920cdb7d5a3b0986936a97af70c3ab8919f938992773"; + sha256 = "9febe2ce5ab23b3d8497d7cf2c5421a982d21869ac7fe0eab7335438cf3fb94b"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/el/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/el/thunderbird-115.2.1.tar.bz2"; locale = "el"; arch = "linux-i686"; - sha256 = "44b0bd6e4df10f1c954609d1e75736e03b7a4d55b1d13ed62f376c2c265c0b55"; + sha256 = "7d45f83c8c7e0ced8fa58df73eb14415363164330a654002c515c84319379532"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/en-CA/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/en-CA/thunderbird-115.2.1.tar.bz2"; locale = "en-CA"; arch = "linux-i686"; - sha256 = "06f9c43c5fe4d9fd1e33422930eaa23ab5b2b8588a1f9fc16233302f9442b251"; + sha256 = "9f8e56de6d247a252f8223b7c9429172962842fb0cd3eaa52f49d6e696dfddfe"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/en-GB/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/en-GB/thunderbird-115.2.1.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; - sha256 = "3cbbd48aab007524f210d6291dbf90e931fc8219b88ba8043792297b070dd6ec"; + sha256 = "d59b7ebb6909e93aca5fe399ac5b2ac233029226815c043f560866e10ea3545e"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/en-US/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/en-US/thunderbird-115.2.1.tar.bz2"; locale = "en-US"; arch = "linux-i686"; - sha256 = "ebdbad72644aafded6c91902020463b4857cb5c9c26d4e60413e3c5135c6b4a2"; + sha256 = "c89893ba01b8c640334f37db0e9e820b6ba325f53acdae02000065b59d101bfc"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/es-AR/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/es-AR/thunderbird-115.2.1.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; - sha256 = "bae033f12148a332a048ab49735c68f313b7234419e81c3073a00462b92a6e74"; + sha256 = "67d197d6ada39affc46f7c521919b5da03900440372d7abcc831bf15edb4d262"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/es-ES/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/es-ES/thunderbird-115.2.1.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; - sha256 = "518f78442eceaf9ff8f7928da764dbc9c083cfc65ef4b2bee6a68dc576d36b12"; + sha256 = "cbc292554f79d7305986b3c4f16d24dbe419124f3a8856e6d2867c58caf80eea"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/es-MX/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/es-MX/thunderbird-115.2.1.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; - sha256 = "2c5c4f0eef368950bb6717884f0c4cf9d7960d91ea1ecb7ccaec85b5e0d4e4cc"; + sha256 = "3824a6943995fa80ea4595c01c435564ef5376ed5fe907f0404c504debbfc440"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/et/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/et/thunderbird-115.2.1.tar.bz2"; locale = "et"; arch = "linux-i686"; - sha256 = "5d8dcdef1ac1065989423c63f1e2e5708f09307e08a6602b5a70cf2c36a16223"; + sha256 = "c72f92ee061195146aa35385ffe4b3b681171ba063b370486c7b135251451906"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/eu/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/eu/thunderbird-115.2.1.tar.bz2"; locale = "eu"; arch = "linux-i686"; - sha256 = "7c7667e0a64668288a1d26e6128b7b152ef3404c6e0762492e9b3f5e24727aa9"; + sha256 = "3455543dcde9a967ebe0dc87cd0596d117e908c0381b6199b9d9fb64d75e380e"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/fi/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/fi/thunderbird-115.2.1.tar.bz2"; locale = "fi"; arch = "linux-i686"; - sha256 = "425f2f5435bf0291f23399b3b328f36c71aaaff96cda4e8e2a5a2bba0a23496d"; + sha256 = "b5f18535ee98887b1e6b93024b91d77ff2d8ff59928c4c5b2904876c5dab7ad8"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/fr/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/fr/thunderbird-115.2.1.tar.bz2"; locale = "fr"; arch = "linux-i686"; - sha256 = "41de58dca0746dc3d287ea90f392c674bf5952850971099c7a9e386ed2519d0f"; + sha256 = "050c5358b73082fa114f99bdb9d54836b5975ded395765f106c927773745be08"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/fy-NL/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/fy-NL/thunderbird-115.2.1.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; - sha256 = "2643feb7e52f6682a2601bc662007ecc013f452c4aceb846bd32b0ebe957ca3f"; + sha256 = "f4ccecff5d4d010ac40af03dd76ec7871d2c0c283c6dc1681e1d5031689932ae"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/ga-IE/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/ga-IE/thunderbird-115.2.1.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; - sha256 = "b6685530788759744292aa55c8c916ed65dfd4d0d8f60d11498234b5331c5a98"; + sha256 = "e6fb715a504f7aba1de93242426865865f798407003cb2c079d1094da485d019"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/gd/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/gd/thunderbird-115.2.1.tar.bz2"; locale = "gd"; arch = "linux-i686"; - sha256 = "f85c93f45feb79d667c756c3b7a4b51c2c05d939e1a6217f97274e22cc1e900f"; + sha256 = "a20d5c75be76a003a468fe7ead078365e9677fbb43417ba477a436c21a449089"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/gl/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/gl/thunderbird-115.2.1.tar.bz2"; locale = "gl"; arch = "linux-i686"; - sha256 = "344599ba40698d94b5e0633ceb7e1e22b0e0d5bdc93c2ef87f8b4969cec0659d"; + sha256 = "0f75721665a6845a400bfc72ade60e0402c616f8b9ee7dbdbf3897685f783f64"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/he/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/he/thunderbird-115.2.1.tar.bz2"; locale = "he"; arch = "linux-i686"; - sha256 = "8316345181cf6396e1e4bde4e0b4690c925cb106334fd5bdd4a550f6bd5c4f6a"; + sha256 = "1afd6199288e0d7607cbac0b8d3e40a07654b3ea0b9e57ee97d8bbbf1eac2677"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/hr/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/hr/thunderbird-115.2.1.tar.bz2"; locale = "hr"; arch = "linux-i686"; - sha256 = "ab678d0cd79e6e8d10e2e5db8c947b796bed8d4069a42fd9d86f5a5b752ad111"; + sha256 = "b13dc3ecaff878dd98f4f92f82174865c3c0d7fd2f15fd076acda4c0d70f4f14"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/hsb/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/hsb/thunderbird-115.2.1.tar.bz2"; locale = "hsb"; arch = "linux-i686"; - sha256 = "4d87ef768342eab2ce83b55774a1cb7cb0605adb0607dbb66cd1fbeafad4f0fd"; + sha256 = "32268a1d36f4415ce049a0b5b2e991f2c37b54d8d81cc182d5b02729ceb2f726"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/hu/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/hu/thunderbird-115.2.1.tar.bz2"; locale = "hu"; arch = "linux-i686"; - sha256 = "96e8d4599fcf5ab4bcc178f372e3d84c9257f1e41d6e06b7975df9f4f6e8f178"; + sha256 = "967d072185910d87469ff7281a8fa3ad1892beeb27a86a318c72b1134a2ce924"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/hy-AM/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/hy-AM/thunderbird-115.2.1.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; - sha256 = "72788149439cb96e3321971a6e52dfc3884a337d7b4ff9c1ac0897e9566cd123"; + sha256 = "54eade63c8ba6e63e29e2aeafd198e16e0a9bcd8367ecaad955e73cf22002d4e"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/id/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/id/thunderbird-115.2.1.tar.bz2"; locale = "id"; arch = "linux-i686"; - sha256 = "4124a860406abb86ca017597aba9c90cea9e20b8955b3367b29113efd1a16421"; + sha256 = "b7d17f5cc4948b8050ab4f85b2dd88b02062018b0509a8e27ba6fe5acbaf341a"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/is/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/is/thunderbird-115.2.1.tar.bz2"; locale = "is"; arch = "linux-i686"; - sha256 = "2b08e55e0204e0f49db6c128d21ebfed7073c4f85a7b33926f0f38ee0cebdab7"; + sha256 = "08f74ad24fe7dd1d00ed601f515a6c82d1dfea7ffd5563f779f2e6ebd3f9190f"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/it/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/it/thunderbird-115.2.1.tar.bz2"; locale = "it"; arch = "linux-i686"; - sha256 = "ca719ce8f719740565c79c94053ab52a3a491bfbac2b117a39b9e2f13aca4df9"; + sha256 = "12cdb822aadfb11d79d601e31d5720f7774548235657fefdf18fa2207d369ad3"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/ja/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/ja/thunderbird-115.2.1.tar.bz2"; locale = "ja"; arch = "linux-i686"; - sha256 = "4765280d30df0da1c1f3b47f8470c96445c343e1a3f87eb963847baadc501803"; + sha256 = "3b00e0c2d3b9ab061c4de168d23695bfb6e49f1b8046f6754dc1077f86266a7e"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/ka/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/ka/thunderbird-115.2.1.tar.bz2"; locale = "ka"; arch = "linux-i686"; - sha256 = "828f764efb051f581987d98438bca3e7eb9279c14ecc65f3450632bef4b9b654"; + sha256 = "70393907a7eda66aab103a9f2706a294c59ee52e033fa87792329924be704867"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/kab/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/kab/thunderbird-115.2.1.tar.bz2"; locale = "kab"; arch = "linux-i686"; - sha256 = "76b77c92e347088fd1c1ae649d14dc019a9083b5ae08227204aad83da4b2a061"; + sha256 = "f04d2b5a1741b6b65b811a449dfc0339230f8f2637d08bf63f199cb7e99a906c"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/kk/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/kk/thunderbird-115.2.1.tar.bz2"; locale = "kk"; arch = "linux-i686"; - sha256 = "a0f745f0bc19834c2e75fc95c4614a78538d6278f79fdc75ea4fc15242764e9c"; + sha256 = "1f2d3a7294e0c8eedb91426a9ba8e2090d11831dec33370434bcfa14651f88e0"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/ko/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/ko/thunderbird-115.2.1.tar.bz2"; locale = "ko"; arch = "linux-i686"; - sha256 = "3c5a4289618c3e6747586891f5eb47cd69ffc5f6c5f49d154a463abe37440397"; + sha256 = "47489d0a9e881d72c743c1473f9eed91ecafe19cdb04a4540216d57a37bc2682"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/lt/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/lt/thunderbird-115.2.1.tar.bz2"; locale = "lt"; arch = "linux-i686"; - sha256 = "e731e745805b06d767998e8ac38eb39191a70236e7223e61148b6006bc81f58c"; + sha256 = "9eccde306860618c5aadf17653d52a69977769a72e673079353a7ad84565cce4"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/lv/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/lv/thunderbird-115.2.1.tar.bz2"; locale = "lv"; arch = "linux-i686"; - sha256 = "a1090f2be2a884b572ee6cf181a03088a5b0b529abf3af0c0b99f669210b6750"; + sha256 = "efac6139ebe47ff35c78ae395a0ff80537439634ba9aa335b570aaa5ba54004e"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/ms/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/ms/thunderbird-115.2.1.tar.bz2"; locale = "ms"; arch = "linux-i686"; - sha256 = "eb788a59057959d5cfee9742ad6583513b868957976f6c2d13a5520fff1bb5c5"; + sha256 = "d762e502c2781b99a4bdcddfd30b1e999399750f62bc2763b21116162adb32c1"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/nb-NO/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/nb-NO/thunderbird-115.2.1.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; - sha256 = "2112bdcb27163572c48621b5eb9a40688768b4c4951c52bf933269a4172599fb"; + sha256 = "f0712444626fc5a6401726060abf0e30178db0c534734eab9b60058f9244af67"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/nl/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/nl/thunderbird-115.2.1.tar.bz2"; locale = "nl"; arch = "linux-i686"; - sha256 = "b3d508660a044fceeb89832af32522b32eb1de88a34bb336a34bd24acb75c5bc"; + sha256 = "4e810fef142b55b598db29a22d9ef92dacb0fa123cc6ce88a160dd1109ad7209"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/nn-NO/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/nn-NO/thunderbird-115.2.1.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; - sha256 = "de84e54bd4bda94e7f930a47e34ab72b29bf8a43a6f0fdecc7464b1f3526d21a"; + sha256 = "8c9b298d607e2fef12f66461199f40bb6a4ee6757992b120adc510fe45d8361c"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/pa-IN/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/pa-IN/thunderbird-115.2.1.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; - sha256 = "3c05bce8ae30abeaa948b08bfa86dfd794a3b699b25240785ef61fcb65ec5699"; + sha256 = "fe8855b2f96dd55077d3e53fba76201fd2368cc0b9444f1a7f85c16654ea21a1"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/pl/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/pl/thunderbird-115.2.1.tar.bz2"; locale = "pl"; arch = "linux-i686"; - sha256 = "2d1aea7352155b7c739ff3073d790f2ae25e3362abc0232df76768510bb2d8f8"; + sha256 = "e9920c0f562a8cef6f56b51aa4cd030b376d6deb62fe4bf11e66cf9ce236b111"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/pt-BR/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/pt-BR/thunderbird-115.2.1.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; - sha256 = "dab4ed6ca4f17eeb6fca56e6b08623834ad08997a384f22321af70aaf701cbe0"; + sha256 = "f66aae8b75b0dd15ce5abac37e3de2fe83ce7924e55fc1c90283f8de07977d43"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/pt-PT/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/pt-PT/thunderbird-115.2.1.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; - sha256 = "b74bd8217c57fdce2d3dde440b467bd1066bb3b2dd320d6bb06b50ccf4795faf"; + sha256 = "8e9da0def94d0fc3b7687bbcd3748aa885b639f3e83e91fe6ea650227867da1f"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/rm/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/rm/thunderbird-115.2.1.tar.bz2"; locale = "rm"; arch = "linux-i686"; - sha256 = "85bc0641509778e489af7efcdefdf80f2fafa1f2179d4096feb63e62bfbf62e6"; + sha256 = "859662bca36ee2c4de55e2e0af726d7128aa44893d530ebdab5e333f4553e46d"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/ro/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/ro/thunderbird-115.2.1.tar.bz2"; locale = "ro"; arch = "linux-i686"; - sha256 = "6ed9b66c1c8de5932853dcbfd7c0eaa44414ce63beda065ca42424788e58a3fb"; + sha256 = "bb16aacc8b52072704a34e804e4d2e4994675eec30240f9b983f238f737a7a67"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/ru/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/ru/thunderbird-115.2.1.tar.bz2"; locale = "ru"; arch = "linux-i686"; - sha256 = "a243fabbb4adb1027e1368ce6f19a9e1955ee6f42f90658cc74be902c145b11e"; + sha256 = "78c2091a6a1f2273b65981b15c3ae0378f21d5765e1551c12512d3087c26ec7f"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/sk/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/sk/thunderbird-115.2.1.tar.bz2"; locale = "sk"; arch = "linux-i686"; - sha256 = "ed039d390a61dc3526f2c607a3260332a49db62d7e432a1fdca7fb8df58ad89e"; + sha256 = "594f9964622f0522b4f5b1243267d61bc5de5653bb142b6d3a764fcb1bac2be2"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/sl/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/sl/thunderbird-115.2.1.tar.bz2"; locale = "sl"; arch = "linux-i686"; - sha256 = "a0bf41738ae0d1eaaa965b7a47070f11dbc379b0f9955bc2419548b19b7b20e2"; + sha256 = "c3e24b9ba8ef644861d273800cb7aed8919e3c2f1b2a0efd5f1890e33e56c758"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/sq/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/sq/thunderbird-115.2.1.tar.bz2"; locale = "sq"; arch = "linux-i686"; - sha256 = "19c1ca545d4f74c2d0ca43db5d9a02bd62be29d70d671232657545cabcb18313"; + sha256 = "622d9491a1110aa2f11a3dc6d077e86457cf60a19453a0079b1ca3a286e868e1"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/sr/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/sr/thunderbird-115.2.1.tar.bz2"; locale = "sr"; arch = "linux-i686"; - sha256 = "7a9c408f6be3febb9607f6771694eee38eb466f433a49bd3f5e9c25b6f06cbf7"; + sha256 = "0596e88774c17abce15c323c0362f6389896df72918f49622df28608ea3b56f7"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/sv-SE/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/sv-SE/thunderbird-115.2.1.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; - sha256 = "3c0b95887d1fa43e062c8f8a4cae9da99b2b1a0dcee1a312be12316f85cdfb28"; + sha256 = "23cf02ad134bef3cc39768c7d6ce2ed6f87b747994088bdd3ca379a141582c22"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/th/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/th/thunderbird-115.2.1.tar.bz2"; locale = "th"; arch = "linux-i686"; - sha256 = "6bce19bc6ed566b129667bdac4e8f6c0252b3734167b99877512d08499d97610"; + sha256 = "60d8f78e48e10a36ea20fd5be8e5764d08ac9e36e5a987a219c84b87ab23493b"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/tr/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/tr/thunderbird-115.2.1.tar.bz2"; locale = "tr"; arch = "linux-i686"; - sha256 = "ce76f224193339efe0a60aed40ccdd2d0a88fdcd7bd612a181e5df3a96c42047"; + sha256 = "09aaaaed57d6103e24404fff59e6778e3f3ef69c023ecb662c1e6a4352a05ca7"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/uk/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/uk/thunderbird-115.2.1.tar.bz2"; locale = "uk"; arch = "linux-i686"; - sha256 = "3340a2dd8c0be2d65b9a0af4e6f296f3998e9ac091cc3cab6320437f246005df"; + sha256 = "a521e012e982119f868034bc7ce46932c3bc76141fc8ca1b0c2b2655b8bbaaa7"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/uz/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/uz/thunderbird-115.2.1.tar.bz2"; locale = "uz"; arch = "linux-i686"; - sha256 = "03cd2d1f842143a7740092ce9faf11d1865f6d5a60ea06ccc8383d654adbc1d4"; + sha256 = "6a8c808ee0ab90432d1e999a4f165819e37a0b9d842af35f59acd714be2d2992"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/vi/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/vi/thunderbird-115.2.1.tar.bz2"; locale = "vi"; arch = "linux-i686"; - sha256 = "575be01c9b893308a3503c1cff3301b0005cff7a63027208f396c4c573e7bb18"; + sha256 = "8c1ba2d937f48aca65d33d3dd9d0f3eda8f648b8c999d2d48328786a3c3e3b83"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/zh-CN/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/zh-CN/thunderbird-115.2.1.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; - sha256 = "ce246d95bad26cf9c48993e7ab40518947fee5874409244e1ff9d78c62199149"; + sha256 = "36bcd384a63637e94f85705815d2e814e8302df093b384837a066451f90b5001"; } - { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.0/linux-i686/zh-TW/thunderbird-115.2.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/thunderbird/releases/115.2.1/linux-i686/zh-TW/thunderbird-115.2.1.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; - sha256 = "595fa9fb117e4634dcd98ce259fd7c95d588753f67d32f1f75a09c667c12d9df"; + sha256 = "082b2eb7a452172102a762ce90d03e3d5a1171ff652a9d4e5a0ea84c6ded624e"; } ]; } From e449fffa1da1c3fe60273fb3891b850372947343 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 12 Sep 2023 10:53:34 +0200 Subject: [PATCH 168/346] thunderbird: 115.2.0 -> 115.2.1 https://www.thunderbird.net/en-US/thunderbird/115.2.1/releasenotes/ --- .../networking/mailreaders/thunderbird/packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/thunderbird/packages.nix b/pkgs/applications/networking/mailreaders/thunderbird/packages.nix index ea15f6331519..38396ce27c45 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird/packages.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird/packages.nix @@ -43,13 +43,13 @@ rec { thunderbird-115 = (buildMozillaMach rec { pname = "thunderbird"; - version = "115.2.0"; + version = "115.2.1"; application = "comm/mail"; applicationName = "Mozilla Thunderbird"; binaryName = pname; src = fetchurl { url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; - sha512 = "31a8b16164e3bab60b62642e1adc55b3d97fc4f20cf28207b1e599275eb5a207f60b173fd642e8c52a48e83894e2ab874cb8424c22c5c712afd7169084b0a2df"; + sha512 = "375c66efe9637c41e4758fdc7477b64fa700032fecc0e5e93fb6a4659c1ceee99b2c366e19beb96252e60dbbec78ec37433c3f70f7fcc0f305a927f95d753c05"; }; extraPatches = [ # The file to be patched is different from firefox's `no-buildconfig-ffx90.patch`. From 11bb7e38dce768118336f0162f864455a650b549 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 12 Sep 2023 18:19:50 +0200 Subject: [PATCH 169/346] firefox-unwrapped: 117.0 -> 117.0.1 https://www.mozilla.org/en-US/firefox/117.0.1/releasenotes/ https://www.mozilla.org/en-US/security/advisories/mfsa2023-40/ --- pkgs/applications/networking/browsers/firefox/packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/packages.nix b/pkgs/applications/networking/browsers/firefox/packages.nix index fe403a8396ea..e165b921bf6a 100644 --- a/pkgs/applications/networking/browsers/firefox/packages.nix +++ b/pkgs/applications/networking/browsers/firefox/packages.nix @@ -3,10 +3,10 @@ { firefox = buildMozillaMach rec { pname = "firefox"; - version = "117.0"; + version = "117.0.1"; src = fetchurl { url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; - sha512 = "4d2afa9bac9d0724fb3568f77a8103d75e90635802f47f2023127de07d70ff145fb0c19e6a4fd37bfe93a7bbb1ec506955c0d4fe3b07057561ebea82b8d6c8d2"; + sha512 = "1583b0ad3b3b17c59bfbfb3e416074766327d0b926ef4f6c6b1e3b2d7cf6a18dec592b7d17fab9493ba1506f3540a02277096d28616dd29b6e7b9e93905f2071"; }; meta = { From c28a5a1ce37ac5d7290265b25613da43dc00f268 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 12 Sep 2023 18:20:50 +0200 Subject: [PATCH 170/346] firefox-bin-unwrapped: 117.0 -> 117.0.1 https://www.mozilla.org/en-US/firefox/117.0.1/releasenotes/ https://www.mozilla.org/en-US/security/advisories/mfsa2023-40/ --- .../browsers/firefox-bin/release_sources.nix | 810 +++++++++--------- 1 file changed, 405 insertions(+), 405 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix index 593724eab0ad..042059c04462 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix @@ -1,1015 +1,1015 @@ { - version = "117.0"; + version = "117.0.1"; sources = [ - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ach/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ach/firefox-117.0.1.tar.bz2"; locale = "ach"; arch = "linux-x86_64"; - sha256 = "ba339edfe90506adad94365e48352f9cacede62b3bbf966b5e3238d96ca65a1c"; + sha256 = "bba2d74a558ff32c5e723708ab462cdd3af56aeccd06e5b4e842cd8a99f716e5"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/af/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/af/firefox-117.0.1.tar.bz2"; locale = "af"; arch = "linux-x86_64"; - sha256 = "68a4d1e61cf96631f96866f776f0585cc8d3148473637865eeea68097ac1c233"; + sha256 = "d7d3337e66a0cb6d63d669e7f9aa8a1afc970aeaa079dd206f2faea9d86f934c"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/an/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/an/firefox-117.0.1.tar.bz2"; locale = "an"; arch = "linux-x86_64"; - sha256 = "b2108af6595ce368e74435fca72c3df92474eaffb412d2cc16780f0c1dfb85f3"; + sha256 = "430c9a492de3dd9d0250901cb8e8ed675c6cf3e492f814a4e386d07998a2724f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ar/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ar/firefox-117.0.1.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; - sha256 = "9e746939ba9e9c98066ff26909fcd1460264b93aad375eab7b1c317808c31c10"; + sha256 = "8043636c3639d4803093eb1ff25a23a0a9e6b3746f06c03e0ac2ba5abeadfd55"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ast/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ast/firefox-117.0.1.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; - sha256 = "e537e1db57d5496713d7739c38bcb96cd2ba9e1701f9fe9bdde0970231e3e555"; + sha256 = "b628087eb248939b53f744937d9f8c07bc204c65915a019e7cfaecfe2f8548f3"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/az/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/az/firefox-117.0.1.tar.bz2"; locale = "az"; arch = "linux-x86_64"; - sha256 = "ebec326846890b984e65b7f295ca7649829927065f0804ce2e7f99d275c4cbbd"; + sha256 = "f9398fa0e7e8bd1146a2c28135aaaf785d6ea53e5795cd8aecb7d4df4fe744b0"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/be/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/be/firefox-117.0.1.tar.bz2"; locale = "be"; arch = "linux-x86_64"; - sha256 = "a079039278dc6ba9a74de9df3ef62c304e31fc8cbc81b452c2bdb5fbed7e62e1"; + sha256 = "d8645fdd9c897d46f1ef169dae1e89b70e31adc0df743dac2f06eb4c1783646d"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/bg/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/bg/firefox-117.0.1.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; - sha256 = "c5554f0bf2df6b0e4f7ae6b286952d8aff8623b6b510e6fcf87d077fce908e9d"; + sha256 = "6d5d684d096ea94b995c4fdca48dfdd423c7f3f203124ae39413ce301cca7e51"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/bn/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/bn/firefox-117.0.1.tar.bz2"; locale = "bn"; arch = "linux-x86_64"; - sha256 = "af70685bdc2fd1dd4c17906e83eb8ecf1c99c21c3c35f01ed2394e91a2b7d8d4"; + sha256 = "054b468d029161b2fcadddc470a200f7d908bde5ae0fe5e187d9b5a594ce703d"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/br/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/br/firefox-117.0.1.tar.bz2"; locale = "br"; arch = "linux-x86_64"; - sha256 = "0f6fd95ab160f54258b8a6fbb3ead7d16d6485317dacc344be7812ab150aec05"; + sha256 = "4d3c5fb7ec494ca2bd4e52ea62e73405121777d38a2a833b39e4eddc3f21adfc"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/bs/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/bs/firefox-117.0.1.tar.bz2"; locale = "bs"; arch = "linux-x86_64"; - sha256 = "8b22a3880f50d1c9a3ad568ade83b49264570a09d22383762b214e4bfa94251e"; + sha256 = "fb2d1bc9329f73b889ad2149f157be4fd9219e4d4d1b160a61562a527d1d610c"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ca-valencia/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ca-valencia/firefox-117.0.1.tar.bz2"; locale = "ca-valencia"; arch = "linux-x86_64"; - sha256 = "3dbe22f54b97fbfc1a534b366301d5794dffbe40ac4475aef9e5df14de8dfadc"; + sha256 = "bc263c2196669b93226eda1825b6f2350c6bcf91cffd40ab12d3bd1a3c8148fc"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ca/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ca/firefox-117.0.1.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; - sha256 = "89fbb8b9afaa866620df2e3488669ae0f2f9f1122d476e0f7357ef07e450fc04"; + sha256 = "15087bd5732537e640034b9c3a70efc3e73b8aed20444b3ad63bdb242cb0aabf"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/cak/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/cak/firefox-117.0.1.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; - sha256 = "fc202c9300700ad1935d785cc7c9d9a958e5c0012c786b4997ea0a66ab80890b"; + sha256 = "de6624dd9c6860d7ac3b03dc299b38e066babcae96187669f6df8257b42235a3"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/cs/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/cs/firefox-117.0.1.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; - sha256 = "791bbefbcb10787492bc926e30f6bf221729d2dc96fe96fa4b40502f93ab1755"; + sha256 = "d7bdd96c4c595d531cfc086553ab0704ec191e92ed54333f79a25d06bb8d6bec"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/cy/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/cy/firefox-117.0.1.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; - sha256 = "6e681b01a8ce92a783787e469d37acc35a45f6f5ec47ac5bb904b991a3c6356f"; + sha256 = "7390d9f3e59a12fb9c181f340dbaca2be199cbac8fcee58b3d791f298f19feb2"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/da/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/da/firefox-117.0.1.tar.bz2"; locale = "da"; arch = "linux-x86_64"; - sha256 = "275cd7f519f62da241602894830186bb9ea8ddc69938a455837802052c545b92"; + sha256 = "41275e9881e4a4a9a61aa148d2f762fa17de9d042fbad7d453b886841e684bc5"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/de/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/de/firefox-117.0.1.tar.bz2"; locale = "de"; arch = "linux-x86_64"; - sha256 = "824a8457425924385c9a80b6a90a2c42e2a20d94adeb208f8ef6221c333414c1"; + sha256 = "dc19cb1199dcd7a86a4948309a5a0b220745f8fd2cf7108688b7f800a8d47510"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/dsb/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/dsb/firefox-117.0.1.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; - sha256 = "c7d2edb01202b5cfcfdbb83cfbd5152130b9e6302e0e9489fb6787445d36f729"; + sha256 = "535994c82cd9aeb4b29658c0391c7264103cfaea0523db1cfcd649bd625f3402"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/el/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/el/firefox-117.0.1.tar.bz2"; locale = "el"; arch = "linux-x86_64"; - sha256 = "14a5f64f3aa2df6e54e53673c7bdac85603e43298df8f340a2cc97f67d211aba"; + sha256 = "8adbce720ef045f2a06ff61ac09e4ad36bd9b68c09544615ea4404104caf59c6"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/en-CA/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/en-CA/firefox-117.0.1.tar.bz2"; locale = "en-CA"; arch = "linux-x86_64"; - sha256 = "2384f12755ab5f69dce9c4ada082d8dd0453d35fc002640d17216a7747b712ae"; + sha256 = "11a0d2714181a0d6c3034e11b4d053826f48765baf495c050b0f983855230ba1"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/en-GB/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/en-GB/firefox-117.0.1.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; - sha256 = "e52382a04b005df50d4e20badb5f38f513b919076617a1509e5dfad54d5a621d"; + sha256 = "99d99376ace7f318e6a972ee14b05c51d43b5cb3431fdea03574a59d34e8c7bc"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/en-US/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/en-US/firefox-117.0.1.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; - sha256 = "5acf61aed42bbf43dff8fee90c55fd3bcecb1c710b86cdd2c380b5e4db7f3998"; + sha256 = "e70b282ed0b8ce42981675ca2bc9a69fbad23f31f71fbd700b52dcf79e57761c"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/eo/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/eo/firefox-117.0.1.tar.bz2"; locale = "eo"; arch = "linux-x86_64"; - sha256 = "421c46f3fd43795b1f26e1771ddb7d3bd83ae5391eaa0fcf478fccfcb9b329f4"; + sha256 = "abcde5b6fe8bd9e543729dd87dc99b1bb42013f1741b3ae4d20ab4dd64186572"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/es-AR/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/es-AR/firefox-117.0.1.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; - sha256 = "67692c6f7f84f69b1ce9289f56331759508708a3adba0ccc6348f258e4fe04ab"; + sha256 = "cd42590e111f426d607d3a18b1cd27c9b691c2d02800f747c8edbbab8f5e31f1"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/es-CL/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/es-CL/firefox-117.0.1.tar.bz2"; locale = "es-CL"; arch = "linux-x86_64"; - sha256 = "6b5d68b2fa9588344d9b8b55f7639ef6184af5bfade867a06ddb313770a3e8e9"; + sha256 = "e8986d426d4bb3a93ca8a084ddd2994c1f876f04c88c9143ce4d6758e3a29ec2"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/es-ES/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/es-ES/firefox-117.0.1.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; - sha256 = "d77b284beebc53ae3c8da363d92d80b3eee460d74535bf359ef7e125c8060f7b"; + sha256 = "29ed9a0a92684f013a86aa84bb2f897795895635fd96cc3cd6b977dbc36b5449"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/es-MX/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/es-MX/firefox-117.0.1.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; - sha256 = "d051dc510b90f98389caab730b3ab99241bfd7a48a60d149a43d1d119a4160ba"; + sha256 = "bcfed213881bd7d2a3fbc2f477d63fa17a614cdc6b6462d20d27ed447d5d58d0"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/et/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/et/firefox-117.0.1.tar.bz2"; locale = "et"; arch = "linux-x86_64"; - sha256 = "7c30e1ec5e390704c2cab143b56fdb436fc145dd8a7cf25e93ee5e50dc9ab6e7"; + sha256 = "d8be9ecdc37b2df6bb14e20030cc44c116d070f68886825ae84bac95b8d2040a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/eu/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/eu/firefox-117.0.1.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; - sha256 = "349c0bfc55ff295de59febc87574b706e9ed17d3bb08a5c1b12f79400c09ee76"; + sha256 = "59ad82bd51ca20192bb2e083a49e3af4ab5ef9851b05a3c553306a435ed22d38"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/fa/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/fa/firefox-117.0.1.tar.bz2"; locale = "fa"; arch = "linux-x86_64"; - sha256 = "a1ab529832e55971bbe74b478bd5d70135b8d30dd15c5a25347f882c4ea13cf9"; + sha256 = "78a469007c15a02379c5ab8883134e40f4d4ffe4a09b9169d4263cbbc98a64f3"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ff/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ff/firefox-117.0.1.tar.bz2"; locale = "ff"; arch = "linux-x86_64"; - sha256 = "9a612d2fd43c45bf7fd291f749e1ba96959ae76e1bf1597a2c088068e2b9db74"; + sha256 = "33d4f8bf75b61ae0480450385ec6a5a3370a011f82ec626b5805052111f000fe"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/fi/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/fi/firefox-117.0.1.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; - sha256 = "f0e3dfdc37025a7a34562f5f4cd23a768e29c2b33f2b40810ce4533a4e62fa43"; + sha256 = "b78e9c2dd1319225ee966c87eaf36deb8b7734642b7122bf89d3d9cd7a8b3efc"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/fr/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/fr/firefox-117.0.1.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; - sha256 = "6f6f09652ecca191a6faa2337e9a248d859422ebf30e54960cb92ecb79b67244"; + sha256 = "6087f7fb5d7d898f86feba4dd176aebef55b5cb83a79606f2587482d2113c908"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/fur/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/fur/firefox-117.0.1.tar.bz2"; locale = "fur"; arch = "linux-x86_64"; - sha256 = "69680d429a0c9bca5acf0b6f4e9958f86d11fde3bbb538cdb3a62a6fc3929ace"; + sha256 = "a76c39c67d956d1a5a399ad3a951e7ef85f873d4eeb4e0f0447e27482a8aab31"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/fy-NL/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/fy-NL/firefox-117.0.1.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; - sha256 = "a29e458c55e6b79c07c827027318a130875cc5b8553bebb34190bc77d33bed18"; + sha256 = "e6f2627ad2e47087e34fa2d7de27b28dfd859184cbe717f6ba3b1230753aac1f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ga-IE/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ga-IE/firefox-117.0.1.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; - sha256 = "6e50ea66bb380725bd3a097401ff5c97c9571bb0f24cbd0de84b9503c5d1ce8d"; + sha256 = "4cd79d5097fbe4c1b8da60fb7452ec040e6a7404be83af94b3fc7bc430af93ee"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/gd/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/gd/firefox-117.0.1.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; - sha256 = "2f535da6d17f7834ea17fc35951081ed3def42a743f8c5950bcaa6b80fa39b97"; + sha256 = "58ea0722146548b82498682813c3e9ae0aca7cefac15829eb6251df6a09cf989"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/gl/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/gl/firefox-117.0.1.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; - sha256 = "07dcb0f43931fb5b1f23e7a9e52f5ceb4a44e4080a7c360c9f54655be05056b4"; + sha256 = "bab03a33af0af44c76a6c45d441060a749bcf9795c35b7879996ca7c229ce9ed"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/gn/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/gn/firefox-117.0.1.tar.bz2"; locale = "gn"; arch = "linux-x86_64"; - sha256 = "84f7bbed98771bbe4437f71f28b189d9c0f7c47cb46bd0419d0ef4c6b695b7b7"; + sha256 = "c4ac97bb3e86ba34b0167a1a3370c36b092a0eef0d4d85a04411722fa97f9cfe"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/gu-IN/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/gu-IN/firefox-117.0.1.tar.bz2"; locale = "gu-IN"; arch = "linux-x86_64"; - sha256 = "6fecf690ae67aecf13195eb66904a8a55dc601e25dfe748475bda140a254effd"; + sha256 = "92f267e5e1470e142de0ad2b8679c9021425cea37c7de898f918548bbbe0b46d"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/he/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/he/firefox-117.0.1.tar.bz2"; locale = "he"; arch = "linux-x86_64"; - sha256 = "8ef5b4e043073212d0bc75a6e316c4e692a0babd3eb1940d21d1f67a9fbe0b90"; + sha256 = "773a53545da52e43d96c983842569ae1287494bd0e7363fff62b950fb454e542"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/hi-IN/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/hi-IN/firefox-117.0.1.tar.bz2"; locale = "hi-IN"; arch = "linux-x86_64"; - sha256 = "f1c6bc266eb7a22ea3bb2afccce42afba92eab09c62458833e167a8e985da770"; + sha256 = "403c66cb65fc2bb38f72d0483860e6667d5ac0235980b8b31404379908598f85"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/hr/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/hr/firefox-117.0.1.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; - sha256 = "8c80911342c34e5ba0b4b0460d63c767b71e71cb4804f2dc040aaf9111bff1cf"; + sha256 = "2048e4824d67d4e9b2b7b5517a6b7a5a3e10edd9893bdc59e78602ba7ba751c5"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/hsb/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/hsb/firefox-117.0.1.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; - sha256 = "8f4337c1758de07245a4c48c9113eb3081b374eda49918d166c8ef3e9562e551"; + sha256 = "64dfd241702dca4923608ca22494cc422c36a78afd8633cb1b38e1c0206339c8"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/hu/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/hu/firefox-117.0.1.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; - sha256 = "9b08cc9f4d09673ae5513dd0d55d22a8ce69d28e0a8c563a121b6067893d20df"; + sha256 = "f1dcc54e3b165ac6c9a5672427dbf07b3ce8a464174fd0561d31945a6da03c46"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/hy-AM/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/hy-AM/firefox-117.0.1.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; - sha256 = "4335c748bee81559628cc5e9ac3a2a4d0b4cb2811d24b7bd63dc263e20357b38"; + sha256 = "b7675399988090dca87e08815d80fc9c3626fc51323c60fd0c68f6e2b0317ebe"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ia/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ia/firefox-117.0.1.tar.bz2"; locale = "ia"; arch = "linux-x86_64"; - sha256 = "43d6ecd94ee29c68cf51aaad8e9f96ada1c5f7c7f9680cd52e7c22208bc166ba"; + sha256 = "aa7202913df0bcdc25df93ce730ca77521736668de2b057cd71f41888056dfc9"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/id/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/id/firefox-117.0.1.tar.bz2"; locale = "id"; arch = "linux-x86_64"; - sha256 = "2570cd7f7d78b0a79a6d0729853ce28c5b0347c8c9f5daf42d9698537133de05"; + sha256 = "f5b57f8b7f7e90c875a3905d12b18a6a50581756803f42cd5c161fdd8dcae278"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/is/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/is/firefox-117.0.1.tar.bz2"; locale = "is"; arch = "linux-x86_64"; - sha256 = "1836f0a1409e1ca54e3174cfd64dcf21500224322e0585bca208daae7e726a6b"; + sha256 = "3961d574adb39f68b608dcd45d1d9060e22ba06fc894c0a4fc91805780143b02"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/it/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/it/firefox-117.0.1.tar.bz2"; locale = "it"; arch = "linux-x86_64"; - sha256 = "23b776a40450bdad912688b1521edc4975f53d2a8b8419962f37ac0faa4d7fd3"; + sha256 = "2b5121470b5eca3b09e8cd59471a3aec55a416edc148f11227d283d27d2c11d1"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ja/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ja/firefox-117.0.1.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; - sha256 = "ca289fdd7b4627d04c3372248a8e67103b80b6cdcf3754c82f2d24e23556b23d"; + sha256 = "d0a500a53d93eb3d87fd5dfb9d47a2bf82dff267144477b9a279c346c0f3b012"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ka/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ka/firefox-117.0.1.tar.bz2"; locale = "ka"; arch = "linux-x86_64"; - sha256 = "f09dca2821c741b34150eb9bb4bc30c82f945b3602413785af5e267891a9c95f"; + sha256 = "76c533fdd82f6ef8f3f26372cf203f21a838174e948b48b2f89a3602af0eae50"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/kab/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/kab/firefox-117.0.1.tar.bz2"; locale = "kab"; arch = "linux-x86_64"; - sha256 = "4e94d1c175af3149d9abdf1eebd2c8ef3cf10d9bc376d9a51d37c576ffe76288"; + sha256 = "2e32c95bc2c92c4859f3cb93995e08ee3f345b90c31157b57b13ec8521ad2146"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/kk/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/kk/firefox-117.0.1.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; - sha256 = "978e71de4ec6a42f32befb162d1d118b259a8ddad7dcaeb7a60b396426738c09"; + sha256 = "17d7d5acd90c005e07660092aecb92601e0dfd227f44c460f4e5d7541704f81c"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/km/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/km/firefox-117.0.1.tar.bz2"; locale = "km"; arch = "linux-x86_64"; - sha256 = "c4a3315f466b7456cf98240005d184503da00daab21cc399e30e898b4b87439f"; + sha256 = "f14f332973af47ac3714b2822c88b55f9412a33935ec4d7a5d58b62cce13f8e7"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/kn/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/kn/firefox-117.0.1.tar.bz2"; locale = "kn"; arch = "linux-x86_64"; - sha256 = "83f9f16dbdcc023e98fa185477e6254b6f0a73afcf8aea3a1b0f610622b48daf"; + sha256 = "c32350aa7c40cbaf2092de7c3e25288f98f3917f933ca787ac16d948d0cb0d2f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ko/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ko/firefox-117.0.1.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; - sha256 = "15bbe93e5f482a99aaee858a53564c03bd4fba8aee6b9a572608b9b99a6e26dc"; + sha256 = "3e3fc8664a85319ec3c8694f0f69a943d3d72f7995dbf52a389a13a7869feba2"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/lij/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/lij/firefox-117.0.1.tar.bz2"; locale = "lij"; arch = "linux-x86_64"; - sha256 = "f05d436c0db51d756604057860b25d72cf13deb5bc11fb11d36764a3f1072533"; + sha256 = "fa5a4e03b3dd82255e33c531784691cb07c98c770445b4992700d11fcaeb7c0c"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/lt/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/lt/firefox-117.0.1.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; - sha256 = "36d640e943f18614ab56c7eeba2564cf632435c55e9cb3ccece5c58a638d26af"; + sha256 = "97bb3f0ce856fcd9526f0601280d5621902b4a123e10d2cb7438d2686694d7c4"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/lv/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/lv/firefox-117.0.1.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; - sha256 = "6e21fefadf6e98b4a37d8c905c9cc47203cec8f119da2f751e531cb6e3716abc"; + sha256 = "461ac23e44fa7ff9992134cba28abcdb6ace665590f9a6fde293398d4f1a97ff"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/mk/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/mk/firefox-117.0.1.tar.bz2"; locale = "mk"; arch = "linux-x86_64"; - sha256 = "29c5209581d5516e3c67cc4ecba04398f72f62882b51447acf8996b5a9df57ab"; + sha256 = "5231feaf4f03931150f3c8efbf76eebaf6b3989c9d9f2fba9a3c3ceb96378ad7"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/mr/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/mr/firefox-117.0.1.tar.bz2"; locale = "mr"; arch = "linux-x86_64"; - sha256 = "d9a9ad83fd16e54c825b8179cc5a3147903206b386a066a955ccc8caa2fc1cc2"; + sha256 = "fbea27c3f30006571efc5a04b36c7ff34fb6b5665d0cf05d05a7ece70063afcf"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ms/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ms/firefox-117.0.1.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; - sha256 = "a94b7ee6d40a0bcd0210cf215f2b51ace80b9ac36c920d3d381468cc273f7b1d"; + sha256 = "b210d2b88f9108880f41ef02c5c75529d53853828fc0aa26588d30c7e5dd4754"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/my/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/my/firefox-117.0.1.tar.bz2"; locale = "my"; arch = "linux-x86_64"; - sha256 = "3d861a4afdb4012bd446ee12b95035b4fcb97a228b269131a1d929f86806737c"; + sha256 = "260ecac1fea5671b769175cdf92b6c0be5f64d30a2cb71d9fb352d39db2e3439"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/nb-NO/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/nb-NO/firefox-117.0.1.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; - sha256 = "7c7ff7a9846a5a1866b4aa87a3c918ae7a78707541f1d9ea90c6be4531e3f344"; + sha256 = "b3795293e9684677c94dc442ede2d6bba309ba48ca79d7c8d1eed33d5d2854bf"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ne-NP/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ne-NP/firefox-117.0.1.tar.bz2"; locale = "ne-NP"; arch = "linux-x86_64"; - sha256 = "c2e6828921aaf7210214aa4bd70697e13db945650272e881b6f5bd62661f2958"; + sha256 = "53c2628a86d456d2954777072c0e6ac30d85b7714c8e3a95364955fc07270b99"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/nl/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/nl/firefox-117.0.1.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; - sha256 = "d51029ef457ee57ea4c1b2e5448ecfc1a525728221ede529319479833de83b53"; + sha256 = "c732de95a1e10e4fc1831d740e782d6a268bf0eb7196cd2ef4a549c0cbc3ab81"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/nn-NO/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/nn-NO/firefox-117.0.1.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; - sha256 = "dee1494ad94300ec6297000129cc8de512363b2bcbd77672e7beb7c73b9bf4b5"; + sha256 = "e2220c2548a9265beeaca69c9b9ab21ae238421d46a0b08cab11914986f89bd0"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/oc/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/oc/firefox-117.0.1.tar.bz2"; locale = "oc"; arch = "linux-x86_64"; - sha256 = "377661e87d74fbd40a7cfd8bc1e4363468a903d97ceae097b4536e4d2870e8a8"; + sha256 = "d4c85b3d2e87fa8699661e4ea8f2481bb05888d30c33a6e457f34c77da65cdec"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/pa-IN/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/pa-IN/firefox-117.0.1.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; - sha256 = "1eee815a8189be9e0b0a6d8212714ac37ed8ada82a5385e5e141a32b4b0a541f"; + sha256 = "f51d558b53650b2a9bb325081cdf1168ba3fbf7cb8668c8a5a8e99d0616c2f76"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/pl/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/pl/firefox-117.0.1.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; - sha256 = "50d1b273181efaf10fe3b458fccf80a2919b3b73d07782698f588cd48d908e47"; + sha256 = "76b5ab1b8aa4e82fb29ef152c103529cb15c06de0a256eb2decf7ab5476f42f5"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/pt-BR/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/pt-BR/firefox-117.0.1.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; - sha256 = "ef235f2929c562b939bdb9ced25024f9255acaf95b6ca3fb4790df48f18e1831"; + sha256 = "90447a08e0d1c707dedae731b5881415421391c1969db744bd65003cee7657a5"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/pt-PT/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/pt-PT/firefox-117.0.1.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; - sha256 = "c0f838c5f4e70667259ba099fb9551e75eb6021db15ef9ddee1a7712010b2e5a"; + sha256 = "017f6a56b39b8abbea5bf72a11ca2a0f6630956e234981206c96eece50147c69"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/rm/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/rm/firefox-117.0.1.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; - sha256 = "21ac133e35c4add62e0c31be77b54e30df030a95277baf69a7f3c3c972f0e597"; + sha256 = "64ad854a79bfd50a42a3ea405b93494ab4bc10525d811e66c2acd75a85e14834"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ro/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ro/firefox-117.0.1.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; - sha256 = "50546a2c85eefe780869a137131c718b69951136fd09984e3ba6e7057f30fac0"; + sha256 = "fb0336084d8e34fe2fd321eb3ad2256c2718442936e34b12479aea3d05edadbd"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ru/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ru/firefox-117.0.1.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; - sha256 = "585269c44dac578ef43eec09b480aa7c09e259e29df744ac258cb9456d0a15fe"; + sha256 = "763b3534433c0376a65f6c0e065d6dce05cbf03ca95fe51087cb82bdb8ddac87"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/sc/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/sc/firefox-117.0.1.tar.bz2"; locale = "sc"; arch = "linux-x86_64"; - sha256 = "2c7f0113adf1b0385707af29a6883b7c67bea9a36c61c03d3cf49315d152688e"; + sha256 = "1b352e4edf8ef5067cc1ddc230fb907f5246ea612898a0c4f0715442f2ac7f47"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/sco/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/sco/firefox-117.0.1.tar.bz2"; locale = "sco"; arch = "linux-x86_64"; - sha256 = "ff98add9434b31bf93f84d92bcd2e8d9b1f7c487487cb91f8f7fffcace384210"; + sha256 = "3fc7764ab6b13bdaab3f9a990ab7b2337500a24603b31ef65657c27705041783"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/si/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/si/firefox-117.0.1.tar.bz2"; locale = "si"; arch = "linux-x86_64"; - sha256 = "ba3bbd67c6f2a9e87b739e341d885362ad50db7543c131f8c87558489c524075"; + sha256 = "79255e4967614e18f11ddf3b32a5cf87058a01df12edc5f04671411796bd4844"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/sk/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/sk/firefox-117.0.1.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; - sha256 = "d2490a4d1a078fd4721ee2986644d9a4567cc0f5379401c89f21e4e9acbdeb88"; + sha256 = "8111813b6247526b6ab97aa212275f67a8b70556a7565541796cab9700dae295"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/sl/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/sl/firefox-117.0.1.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; - sha256 = "da6d8e459c8e0a3c069cc755e7804915f9d9bf3b9fda38abb0de5bd4db98b1bb"; + sha256 = "c79c7b15b0bb3fad4b2fcb4cfddd15a3a43e6469a56b8557240700c65c544a28"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/son/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/son/firefox-117.0.1.tar.bz2"; locale = "son"; arch = "linux-x86_64"; - sha256 = "2ff5b91d0462eb110cb6c362acca4a8738f490eb35245f213f7a9089639a8b02"; + sha256 = "c14447b86bd4b888db93ecae8f19e7e136365c6f8cf690a07cd5cdf74ea9e58d"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/sq/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/sq/firefox-117.0.1.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; - sha256 = "4f2e870b674404885cbb2edfc0f90834b2f1b93c199382f34871b9fcb4a17a31"; + sha256 = "2575be23194405bfdf20fc8363f81b148b02081f26231977bf6032007a235558"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/sr/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/sr/firefox-117.0.1.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; - sha256 = "02e9c7ea7d3b5a0ae605c9ffb2f3841405c90f001f1d17caecf4d28833670b51"; + sha256 = "018f214f645800c738edb612ac4ff8cc806b382a96a80b720cb5d87607574d44"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/sv-SE/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/sv-SE/firefox-117.0.1.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; - sha256 = "883369a674d0ee0fbd937ac75a42f88d5b71e6d97b8f005cdcb35e03a7f1cf2d"; + sha256 = "58d136a8a9e9dff6fc4a84a75055a73e90d2da68cc2676863985095691172332"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/szl/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/szl/firefox-117.0.1.tar.bz2"; locale = "szl"; arch = "linux-x86_64"; - sha256 = "0b8cf78918b879d1964a617540c9857722e9998b0304bfe27d4bdf3f22c4ef54"; + sha256 = "b1b76d0cc40f6f44f277db0b15e8877f54f137dd24614095273322b637367d10"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ta/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ta/firefox-117.0.1.tar.bz2"; locale = "ta"; arch = "linux-x86_64"; - sha256 = "e8f3e336b4a0905c1d994473df789272ae554d09cdd7417445c77666d15e508c"; + sha256 = "5efa32abf220da9c35d760bfb3bc46aba03b4f11733751821dcfc85b09ff58fa"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/te/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/te/firefox-117.0.1.tar.bz2"; locale = "te"; arch = "linux-x86_64"; - sha256 = "c238ebb852f0555635b9eecc0e7ad0a6a55a146d825e7f7b43fbc77932ea013d"; + sha256 = "a20aec40164aabfbac2e2215665f8bbf0f3719d0317b9975a6f094eeb7d665f4"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/tg/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/tg/firefox-117.0.1.tar.bz2"; locale = "tg"; arch = "linux-x86_64"; - sha256 = "5c143534fd474598d1f17adc1d039ff9dee700b52259a220525c58013039dba6"; + sha256 = "d7f8de05aa85b8a4a7312c6a217fa9ab6cb1765160dc0d45742bb2de9b6497b1"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/th/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/th/firefox-117.0.1.tar.bz2"; locale = "th"; arch = "linux-x86_64"; - sha256 = "d078fff21e93e853c5e20425201296d49eeb611718e8cd3e3fdd5e17badbeadf"; + sha256 = "1bcd53cbb98ab3089b1175cc808c9781033a792e786604c13343b2866d3516c0"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/tl/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/tl/firefox-117.0.1.tar.bz2"; locale = "tl"; arch = "linux-x86_64"; - sha256 = "cfdfc42d1ee4d1b7a14c481fa011615bd75e3b6e191e885e16c26d2023b6bdef"; + sha256 = "55d52bae09ea4093e1eff96585dfdd477f908f1071fabcfc1bcd13354b94de1a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/tr/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/tr/firefox-117.0.1.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; - sha256 = "e7bd9864c3948d94a3f1f8fe5267a0753fd370c47f8c9ad4656293f16379bac7"; + sha256 = "c57af5504418e23cde3402880be0d3797a186aa56954adfc2f3c0ed8942172ae"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/trs/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/trs/firefox-117.0.1.tar.bz2"; locale = "trs"; arch = "linux-x86_64"; - sha256 = "61bae6974e3e881b4225c47c936a8ea7e6cfe52ff3a5fb3e3ce6e476daff77b2"; + sha256 = "409208e0f3f3cd5e25297f5120fc933ba83dace1449546589a97e62ff0dc9537"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/uk/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/uk/firefox-117.0.1.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; - sha256 = "7d34bb234decfd013ccd284891e2d8708802434a298aae90c7c86992923618e0"; + sha256 = "df08ed863cd7d02e021953290ba609c8d00f63f8c03fa3c837ce0f6bdb121ddf"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/ur/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/ur/firefox-117.0.1.tar.bz2"; locale = "ur"; arch = "linux-x86_64"; - sha256 = "c299a7db9b01979f27c33e3e0ae50e76218b2122ee110a4f98931031f7f8ad0d"; + sha256 = "d549573c3571d0c20ddc6c3606d1a4784a6886a757943be423814f9f3e847061"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/uz/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/uz/firefox-117.0.1.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; - sha256 = "f52886bc99486aa184da795bd1df5a898c38f5fee5911fca1d6dfb6a48b87ea5"; + sha256 = "7a09b51b30f4152f14e84f4590772daafce02165e1d314b70447cf09985bbd13"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/vi/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/vi/firefox-117.0.1.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; - sha256 = "82611748a48e2b8a967d218197203a9f0bd6aa2958d0c269d78522433b6db2fd"; + sha256 = "cfe678b674c001b5818830be0eaf36cfa2b0ed31d005c4a559ecda2dac6fcae6"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/xh/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/xh/firefox-117.0.1.tar.bz2"; locale = "xh"; arch = "linux-x86_64"; - sha256 = "0eb889e0f9f0d3795c2b2c6a9d3e71e5726af05581d6b82ca881e855bbfc936a"; + sha256 = "1c7e9e390ddcd9e006f86a5f645546359fa73c1c0f04d3504085bbcf3c82d74d"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/zh-CN/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/zh-CN/firefox-117.0.1.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; - sha256 = "beb8c4be213c8454900ac492b3eb6f7f91b77b11501967dcf04bf6d0abfec65e"; + sha256 = "d7636801fd5fa862c7a211f21ec7666eaa30c75d8394ede2e471a6671a9de2f3"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-x86_64/zh-TW/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-x86_64/zh-TW/firefox-117.0.1.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; - sha256 = "d4c48f8253204f727863cf68a4d5d17a1e0e944a3a1925f055514e41805627d6"; + sha256 = "84786eb39341069a27ff31e4f99534bdc1e9d581f48f94234f90f0fe97c548c3"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ach/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ach/firefox-117.0.1.tar.bz2"; locale = "ach"; arch = "linux-i686"; - sha256 = "63f730355d053a296c12d629fd62e8e6a010af38c14a69b0c94ed24ab378ed40"; + sha256 = "ac3c882130b37750d3ab48d18443a140173220b14f6ece8de238677c7dd00d3f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/af/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/af/firefox-117.0.1.tar.bz2"; locale = "af"; arch = "linux-i686"; - sha256 = "8042745df4209233b2e89bdc51088680fe6a1d60fe8c8720fa694b6551ced760"; + sha256 = "bbbf07ae28faf976e4c4cbf87d5d0caf079087679958b43affa019ea8896bfad"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/an/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/an/firefox-117.0.1.tar.bz2"; locale = "an"; arch = "linux-i686"; - sha256 = "506d9cef6611de8c8c81f46ac98d4adb23b55d188ee89f707396f236cf108130"; + sha256 = "a82e2846b4ef077659f888d71ca415bf4918ab8f2841abb926ca8f86e6767b42"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ar/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ar/firefox-117.0.1.tar.bz2"; locale = "ar"; arch = "linux-i686"; - sha256 = "1b17bdd7dea213bfab27218d7b4af7e1d2be5f028d8f9c126b07b1786a6c6b30"; + sha256 = "107c2e66caef41e3f4e415f50842eaed1a1f02392f3514d60193b1cde6b0a340"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ast/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ast/firefox-117.0.1.tar.bz2"; locale = "ast"; arch = "linux-i686"; - sha256 = "b5cf6420715f4172777b066dac71574e2596644ba9cfbb2b971a32c1039f59bd"; + sha256 = "b5c862ad4b1072433eedc82f4df4c13fe7e85b88a19e5b4e1772df01a64db916"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/az/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/az/firefox-117.0.1.tar.bz2"; locale = "az"; arch = "linux-i686"; - sha256 = "7bbab0cf074e237bcc589c40bf94404bc6383b4bfca58a13f45a1b65b613120d"; + sha256 = "dd43d0cd1897863ed3a2df05af1bd00ca7332954fdd3672f67ba7098691b7b0f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/be/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/be/firefox-117.0.1.tar.bz2"; locale = "be"; arch = "linux-i686"; - sha256 = "0ae04813542d61afb9a02ee2e0b96d041302c2a23b2795621fd17af7793e42d7"; + sha256 = "9badec5971f42c054618c1f6b86df5771278b07a44d8a345271b2241e057c565"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/bg/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/bg/firefox-117.0.1.tar.bz2"; locale = "bg"; arch = "linux-i686"; - sha256 = "5bf7712c2219dae81f39a383cb22c9df86bfeefde0c93a019a8486acfe08d895"; + sha256 = "0499c5e2b00eaa6df5ed88f699811d8a4d59ab232489eaa49a8ec3912ef4e295"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/bn/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/bn/firefox-117.0.1.tar.bz2"; locale = "bn"; arch = "linux-i686"; - sha256 = "9f97f5774fb121a5dc9c5e3aa315d5a80de294abf28198614a8109af518d92ac"; + sha256 = "b65f718dbd3400e643f059e62cc46104e9ea6545f79906e81ee796758571a7c1"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/br/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/br/firefox-117.0.1.tar.bz2"; locale = "br"; arch = "linux-i686"; - sha256 = "201f511d3bc1b937486e46e5fdf782864333d5c7a1f74b8d82e54ed3fc96039e"; + sha256 = "b07c8981ce349ffab9c918dff7f14e11abbf47efed549085abafeb27c1d1ec74"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/bs/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/bs/firefox-117.0.1.tar.bz2"; locale = "bs"; arch = "linux-i686"; - sha256 = "669f142fe9a8b141e684c63162d2aa7447d086aac7540b16e1eff6472aba00c3"; + sha256 = "90bc7796ea5a98965f313fbfccf892293d1c853b40d3721be646d19ead56d730"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ca-valencia/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ca-valencia/firefox-117.0.1.tar.bz2"; locale = "ca-valencia"; arch = "linux-i686"; - sha256 = "2df53acfbf91c81173d94c3db22f1b9c44777942974e39e3c974fb571dc65489"; + sha256 = "c2af61e1b96a963afb0990c5604b25b9b8a5d4de3cdbbfaf0f146a710be7df8c"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ca/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ca/firefox-117.0.1.tar.bz2"; locale = "ca"; arch = "linux-i686"; - sha256 = "056bc74cc6c6b5d0991fd0c4942f3d43d71a8c45d472520b8abfd3b0d4759606"; + sha256 = "270a4cd83f9aa805348e40b77ed02858a78a72ffcbc11959e9abcaaceab8f969"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/cak/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/cak/firefox-117.0.1.tar.bz2"; locale = "cak"; arch = "linux-i686"; - sha256 = "34592640353a5d3817bf60696f7af8dd978dca89dbf46101a30b22df10a5a581"; + sha256 = "ea1ca329e0ff8309d24596ae2bacbb82e347626844e66aa39eb4c24b24a59b26"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/cs/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/cs/firefox-117.0.1.tar.bz2"; locale = "cs"; arch = "linux-i686"; - sha256 = "e9b0e3277980ac6249c8c8dc98a36f018f79231595967dcc78411a7602316ac5"; + sha256 = "9f4fa709af30679b779f2ccf5a59cb667fc6a94239f80b3503fda365b08da4c4"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/cy/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/cy/firefox-117.0.1.tar.bz2"; locale = "cy"; arch = "linux-i686"; - sha256 = "44fa3e6b7892959701fd0c59060f23ba02bc2dcc362c0a1dc408c42ba3a1fb8c"; + sha256 = "d9d32157acf6c3c0d32831b0f109c75bfb0e93e4805e8b84ed98fd79107254c6"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/da/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/da/firefox-117.0.1.tar.bz2"; locale = "da"; arch = "linux-i686"; - sha256 = "0bab3ca789229f64ca8525a2d6ee9895fb82b0ff3ead02b56f6ec75294b6867e"; + sha256 = "b462ffdf869d7fd924708f0118c1aeeed83147d7b6c0b9e8b7e157a45cffbdd5"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/de/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/de/firefox-117.0.1.tar.bz2"; locale = "de"; arch = "linux-i686"; - sha256 = "435652762e0a4d2f153479dadc3bb9e7d83cab9927fae6aa633d0d1b62a5d0c7"; + sha256 = "717ea34412ec90e31706e88a798907cd0d4da2f9a45c68965e11d451644ae503"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/dsb/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/dsb/firefox-117.0.1.tar.bz2"; locale = "dsb"; arch = "linux-i686"; - sha256 = "0a9b19faa91bec1eda97cc6c5c89c7e1b5aff3242e308e115b42d0b967fac877"; + sha256 = "1cda72a69e674ac5eecedc64718555a9522695d38093a338a38a895bb8d1c40a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/el/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/el/firefox-117.0.1.tar.bz2"; locale = "el"; arch = "linux-i686"; - sha256 = "554f3c44ccab94478d3dad5b500477b392bf2920b523682ad65535a501d54bff"; + sha256 = "3b36d85a9213e1286e4731be02ec0d4fd959c80aefd8f5cd462c7489a03cd728"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/en-CA/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/en-CA/firefox-117.0.1.tar.bz2"; locale = "en-CA"; arch = "linux-i686"; - sha256 = "38529cd8094b846dcd728c70da106cee019eda762f9344ed48f4823d4392ab81"; + sha256 = "57071ebf1838ed52fcf0406a9c92c03ad8d92710c71dcfce4aeccbcf92e69a34"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/en-GB/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/en-GB/firefox-117.0.1.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; - sha256 = "8ed5c45583f6fb11e8ef4b5927563e17671b7d6a364bbc90eb6957fc824bd700"; + sha256 = "c6bb0aabf88c16cde1c8e9cdc084b9392559992d4ac2632487f4e02e04fe645e"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/en-US/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/en-US/firefox-117.0.1.tar.bz2"; locale = "en-US"; arch = "linux-i686"; - sha256 = "a99a1e5501a2c3b05e55b7339e300fe89447a76d8419f9dc15efdbfdf600def9"; + sha256 = "946bfbddcbf7f373cf597191470cca704323081d40b79240a0deffc47da485e4"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/eo/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/eo/firefox-117.0.1.tar.bz2"; locale = "eo"; arch = "linux-i686"; - sha256 = "76b74e4a2381e5753dc7683c61cb196bd7de6ff0a21d3ef804bcdcdbfa5f87d4"; + sha256 = "e7a7d1d04818c5446c415cd42da9f9861729672ddef665745386bc8cd50a75df"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/es-AR/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/es-AR/firefox-117.0.1.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; - sha256 = "815026e2b2d50efdbc052cd533b0038bdabefe177a0bf81a6b9d36333c966370"; + sha256 = "9cd56ba61d04cd7fecbf870d51c71c3ee73fc40c95f58082cf63bce39bd52eff"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/es-CL/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/es-CL/firefox-117.0.1.tar.bz2"; locale = "es-CL"; arch = "linux-i686"; - sha256 = "b3ff6365d5e1578ad442bd6a20627ecf3c3ab56d2353c968563cbbfd1705c31f"; + sha256 = "4eb297d641094c32f60ffd97231276a40622cdff051a9d404392361eb1335350"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/es-ES/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/es-ES/firefox-117.0.1.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; - sha256 = "5e4bc98ec4a6fd08684343badcc520c5c0358cfc324c8467fae6350d4a2188d3"; + sha256 = "cd8b324ba4172d4674ef5a3dcca6578e69afd60c865620a14eb8133ca6b090a1"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/es-MX/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/es-MX/firefox-117.0.1.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; - sha256 = "34b8d2758b87623cf2cb5d731502a48df5877f48df837957804dcc08c17d5234"; + sha256 = "aca1e6539b860868136de21e7bca7a95294378b8322d66a02ab8799a6fc4c62a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/et/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/et/firefox-117.0.1.tar.bz2"; locale = "et"; arch = "linux-i686"; - sha256 = "db61bf64ef30eb690726636c16ad74eeac8783bb4b44fdeaa47afe9a4f11e85f"; + sha256 = "b3c1b1ec5b65326023e35841f255d7bdc01c962c7e25cf94cee4035c88b0e84a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/eu/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/eu/firefox-117.0.1.tar.bz2"; locale = "eu"; arch = "linux-i686"; - sha256 = "c05baa20264414aa557c7d984db52e85c3d68acefb46b793379a4bdb95277586"; + sha256 = "88129d6df309655acb54488aa58a38a36360396aeaeba1676ac5e487820e475a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/fa/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/fa/firefox-117.0.1.tar.bz2"; locale = "fa"; arch = "linux-i686"; - sha256 = "fe1a89f40c5d89e6d86d63123b25bd0f2fa9ea72df062c5f43ef69b8b1a229fe"; + sha256 = "abb3d073811dec8f9156832cbef0a2179df8b9247052dd6cfe3aefb12a1f1298"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ff/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ff/firefox-117.0.1.tar.bz2"; locale = "ff"; arch = "linux-i686"; - sha256 = "dedcaa19ff74b61c109fdda9cd19c3148ef22c6edad93dfe55a6c32c29342dfc"; + sha256 = "1ae27af807445715e9886e65362949487c39e27e934898af2b951c8c3b1ad23c"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/fi/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/fi/firefox-117.0.1.tar.bz2"; locale = "fi"; arch = "linux-i686"; - sha256 = "9fe5cf90fdfe977a411a0fdacc1e04aa32bff6b27234fbc449551f9785513c57"; + sha256 = "8e3822f6f36a3b29d7e8626417376c43c2fdb2eb0882a62bfb451d4e74e49d81"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/fr/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/fr/firefox-117.0.1.tar.bz2"; locale = "fr"; arch = "linux-i686"; - sha256 = "7781afd9813d151f0b38b1c6d2e8ac799eebecb77343602afe227dd7c4008162"; + sha256 = "baf787fd2881ffddd1d13045aa0b12ebd6f26e5d7a9b15f6d0178dd16e2f9c60"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/fur/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/fur/firefox-117.0.1.tar.bz2"; locale = "fur"; arch = "linux-i686"; - sha256 = "3999ba8f5e73d84fc9688d2b226a5668fb38876ac88802dfbc9a5d52299a8998"; + sha256 = "2da0f32811479ef389cd7594a375cdf0438c6126e142a93b4b9f456ea6124e88"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/fy-NL/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/fy-NL/firefox-117.0.1.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; - sha256 = "0d914c3f8b135549e4d1678099e2e3039523f90717182fedadeb0f14d4cbfa73"; + sha256 = "36b7670fc2417f732e62c129dacf9cccc3fd38bcac5ebc8354b4db69ed6357bc"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ga-IE/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ga-IE/firefox-117.0.1.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; - sha256 = "e145a5409b6863abeb3dd2dbe49e6df450bdf19d9292294efe3790ecab3931d2"; + sha256 = "865b29db4fda9589069b3a9b05c2d75850247cadf56faa816536383381292032"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/gd/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/gd/firefox-117.0.1.tar.bz2"; locale = "gd"; arch = "linux-i686"; - sha256 = "00cee41298de49bcdb40e6d480e696ef9ee8a5d7f68768248f911a81866d2a0b"; + sha256 = "2233ff73ea497ec7f8eb3db41289a8a488e21fb43966d2bd6ba3ec6f9bdcdf14"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/gl/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/gl/firefox-117.0.1.tar.bz2"; locale = "gl"; arch = "linux-i686"; - sha256 = "c41dfcc53beace1f84b3fe381e8b05691a0e975f08de3847e959c721d719ed7f"; + sha256 = "1c3fadb78c4b292302ccc545d9bdb7f3750517487db65e6955fb1d8a159215cb"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/gn/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/gn/firefox-117.0.1.tar.bz2"; locale = "gn"; arch = "linux-i686"; - sha256 = "a0e4b80f52ecf88931383dad75f04410d49c7452ab3139015cb036a8bea66c7a"; + sha256 = "e0d2c1859907c0385aa89d169c8bbe931484fca77ac28c27f4735e6d98b009bc"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/gu-IN/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/gu-IN/firefox-117.0.1.tar.bz2"; locale = "gu-IN"; arch = "linux-i686"; - sha256 = "fa3ba5312d246368e56eeaed68014ee7b18ff93542815ee48d0e994d7b14a091"; + sha256 = "fdba80a44f6a82df974894f59fbfab1dcefccd4e710c6377152f8fc025cac06c"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/he/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/he/firefox-117.0.1.tar.bz2"; locale = "he"; arch = "linux-i686"; - sha256 = "c11754138b53db3aff45adef0b52922f1aa938217881dc359583347352575d9f"; + sha256 = "e0d2571389cfdb8191ff2fc796bd062b60b6c56cf0a5d2897896130edba96519"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/hi-IN/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/hi-IN/firefox-117.0.1.tar.bz2"; locale = "hi-IN"; arch = "linux-i686"; - sha256 = "b78825a3108e53fe09e711cd70a6bb126322c0342f08effa06ee370b791dc7eb"; + sha256 = "2061872a3adca56a7c8369d44bd9612507c3ca83d0b463380b520ee9c88ad63d"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/hr/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/hr/firefox-117.0.1.tar.bz2"; locale = "hr"; arch = "linux-i686"; - sha256 = "8b4682dda8528f139f659065448e03a9a3da8e2447a77341b73f3114776a5567"; + sha256 = "7a1bb05e721957798a72f4703faa0a4b72481d9586566e7dfbb7ed01b4d80fd7"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/hsb/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/hsb/firefox-117.0.1.tar.bz2"; locale = "hsb"; arch = "linux-i686"; - sha256 = "7e0bc83e61fc1478e750e7fb87a33333c9aa8195fc14f257e01002d85d1426c1"; + sha256 = "b53c89601cd7afffd066f0737d03d5404b97e2edf6dfdb4255abb09d4b798e6b"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/hu/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/hu/firefox-117.0.1.tar.bz2"; locale = "hu"; arch = "linux-i686"; - sha256 = "d7799e2e7e030706d5331682b970539133ea703a4494f4a9a945b35de99d695a"; + sha256 = "e5e0a738474a14a22c637291f7071019a0cc8129164383277fe2d87b48df6b1e"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/hy-AM/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/hy-AM/firefox-117.0.1.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; - sha256 = "ec51f7bf2083e7290430d4655d7affcf67b0c8883252ca215a60e0ada4c84121"; + sha256 = "2acf47df4c1961b2eaafbbe169dc81fe717cc7568bdd70834e59ee607ab4d499"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ia/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ia/firefox-117.0.1.tar.bz2"; locale = "ia"; arch = "linux-i686"; - sha256 = "318b17e681dbbc5f17885e6df914f0b71f9a1a29c3eb47dc2aefaafab6d31c26"; + sha256 = "121a35d0584208dc36cad8633751314c518fd9160d36c487f4c22f80487c6d0a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/id/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/id/firefox-117.0.1.tar.bz2"; locale = "id"; arch = "linux-i686"; - sha256 = "0c3866f2f2ea2035f22e31f90268ab9f261e805c44ebe0c4f3ac7d06b79ac719"; + sha256 = "a63c847bfbfdbdb54f482bc526d217a3d9e62c6f7da224bcad490558c031177d"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/is/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/is/firefox-117.0.1.tar.bz2"; locale = "is"; arch = "linux-i686"; - sha256 = "1cbea5bd8f8dab7152bcf8899856e58fcca718620c925bd7568a0ddfdf9396f2"; + sha256 = "e87e76e9e2f4b3ae8a6b227a1411808b18a11891a8cbe835bacb0b99f0f3d348"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/it/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/it/firefox-117.0.1.tar.bz2"; locale = "it"; arch = "linux-i686"; - sha256 = "0316ca1cecf937437ac8c92afc8161dc0bfe7b8b2f6d6ad7b88ddfc7de2894cb"; + sha256 = "3204ce295752fa450b515431ad62b1a2506b77a5e2d8118f50a8c551cdf121ad"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ja/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ja/firefox-117.0.1.tar.bz2"; locale = "ja"; arch = "linux-i686"; - sha256 = "2c60375d29e62fbb6a0e6b7921399915288686f9f203647052222b94c928510a"; + sha256 = "50fc16576bbe98de00d63e8c79b0c41aaf0c013548bcd2222b911fcf1abab564"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ka/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ka/firefox-117.0.1.tar.bz2"; locale = "ka"; arch = "linux-i686"; - sha256 = "4c158e12ddc6e3a435cdba8a9ad169d652a78ae8f8c4becd1ef9fc9d28411cb3"; + sha256 = "839e73f97a4517a39484b190bc5419bec36d2065101400a489af1f4d6f2a32ef"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/kab/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/kab/firefox-117.0.1.tar.bz2"; locale = "kab"; arch = "linux-i686"; - sha256 = "92bf7ee0f5be60046cdfde38f589f7d6b51624c7827fef20a1bb03aa27ba6bcf"; + sha256 = "c2585304255fc4550510ae3e826745bcba0e586d1eb252675f5eb51ef8ace713"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/kk/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/kk/firefox-117.0.1.tar.bz2"; locale = "kk"; arch = "linux-i686"; - sha256 = "60b56e393e883ded0692f79bc888c1f189c57148bbfe97042ae22ce54eea01bc"; + sha256 = "f7ff22dc2094c824c9e2e1585f1d79236b301b0dbf862f93c0de47ade0c1df1f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/km/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/km/firefox-117.0.1.tar.bz2"; locale = "km"; arch = "linux-i686"; - sha256 = "8573db6eced732690444cfb6f85f6554412a1b2eaf8b7b65ac18e6af6d4cff12"; + sha256 = "65e6263a990c294acebcc61581ddb1e18c5068d59ded08b7d57a47eeb8c43486"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/kn/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/kn/firefox-117.0.1.tar.bz2"; locale = "kn"; arch = "linux-i686"; - sha256 = "aee78529c04857c7445edb2b5d836baac38d3826c87ba4c9f311e80d79d67097"; + sha256 = "f0d510b70df7a89b81e1eaee4aae39e958dabd59d03db569e79f33a7d56d799a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ko/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ko/firefox-117.0.1.tar.bz2"; locale = "ko"; arch = "linux-i686"; - sha256 = "123e1aa282424084ad905f1fc0a0de19ba8c180498a2c4c1b3ba74fb16895cb4"; + sha256 = "bc6741b5e0d7e712beea5e9a301dfaf9ff5d42c1050b43c0b354bb673242e207"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/lij/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/lij/firefox-117.0.1.tar.bz2"; locale = "lij"; arch = "linux-i686"; - sha256 = "3c3518eabdf13a0aa3028cb3e6b49e2bb168057e8241ef2c795a87fb4f8d42ec"; + sha256 = "b5767b9b389cc68dd9b4fc8d869dc2517d312ed9d6aa9ca190360b376807d9f3"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/lt/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/lt/firefox-117.0.1.tar.bz2"; locale = "lt"; arch = "linux-i686"; - sha256 = "6cc00344c97350556840672d743cad0db4eb711ee72c294fbcffe3f0172be1cb"; + sha256 = "7a0d7fb9a6969be6e4fc87aef20bea9c4c8359a9608e5a77f63bb2d4eb774182"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/lv/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/lv/firefox-117.0.1.tar.bz2"; locale = "lv"; arch = "linux-i686"; - sha256 = "f5383619da09e06d7441e2450aef8098ef5942b6ffa70c6bd1043dabac88ac79"; + sha256 = "9302a16902d942ec130dbfdbe2bd147bd5155f5ff575e23023378e76625ac3f2"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/mk/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/mk/firefox-117.0.1.tar.bz2"; locale = "mk"; arch = "linux-i686"; - sha256 = "993d3239e6c2fe7b0581aa31d889801d4d2cda035d64d49cacbf97e155da6c7b"; + sha256 = "f7adf51124738ab260edfa03f12b70644b5aa813460c91dd454af8f593d7806a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/mr/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/mr/firefox-117.0.1.tar.bz2"; locale = "mr"; arch = "linux-i686"; - sha256 = "0d8313a173b1faadd2d8655c3e3c96f31ad4e33f2da1d6e745ae024c27d148c1"; + sha256 = "7612235ad4d915d367d009c7d160bff107d4132b92b16d8e4d4f76f449e0eb4a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ms/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ms/firefox-117.0.1.tar.bz2"; locale = "ms"; arch = "linux-i686"; - sha256 = "c4a10c63535bb579554e7a190d36794e12aaeeff8039348a075c292ad8283eea"; + sha256 = "7bfcf302486c52310bc6c23cdf955b114d431153e46505e5ebf3abe45f1158c6"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/my/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/my/firefox-117.0.1.tar.bz2"; locale = "my"; arch = "linux-i686"; - sha256 = "303bbbe6668ce218da2762caad95fdd46d3f79cb88328dd31adfcc7d7892948e"; + sha256 = "3de439e7ec33d0a98cfe1f0d2b8a96a0350edadc2698474e2a7520ac9dc5e61f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/nb-NO/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/nb-NO/firefox-117.0.1.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; - sha256 = "613fdafcbaccc591fec8f8c90a0985082f81155b762c8d165d26d0c1b07ebc22"; + sha256 = "ec1eb9cfb49e6250e3ec1e7d2918a98389315075d7c5a71184605958984d08c7"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ne-NP/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ne-NP/firefox-117.0.1.tar.bz2"; locale = "ne-NP"; arch = "linux-i686"; - sha256 = "83515a8f02188477447a1c77095c2cb9a06db6d3b105628c00125382f4a5949b"; + sha256 = "bd7f0e873a22ee7c8539292b8731d27230160d2ba7a3de223cf357a468c6fa66"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/nl/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/nl/firefox-117.0.1.tar.bz2"; locale = "nl"; arch = "linux-i686"; - sha256 = "49266372294c136f49cb4f4c9522742189ae070ff55dc2aee0b81c6ab33f5848"; + sha256 = "37c3289c522d84a785af6afbd1af6d868506569566234a306775e996928e5552"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/nn-NO/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/nn-NO/firefox-117.0.1.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; - sha256 = "ed809cfd6ee41a4d1993782d13d0d31dec479ff8821315becfc7eb59c0d3b493"; + sha256 = "4d977db9e140b846be1562807fb9f4dc72020c25e93fc64428e819c1df1610dd"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/oc/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/oc/firefox-117.0.1.tar.bz2"; locale = "oc"; arch = "linux-i686"; - sha256 = "d90f5de260ea3dd216df4b4155915a142f2f7a549c3752a26616a1da98d20809"; + sha256 = "b642f568fbc00c7c12148e415eac9cae767c043e058c8c3c416cb8b83d8236b0"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/pa-IN/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/pa-IN/firefox-117.0.1.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; - sha256 = "81070ea2df8f438a5d13fe6197390437b7f9c7ecc838793aef01457a04192192"; + sha256 = "aaf14c69892fec4fbbf7b93cb01dba86eb26d744eca74e61753c15e06dd32d90"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/pl/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/pl/firefox-117.0.1.tar.bz2"; locale = "pl"; arch = "linux-i686"; - sha256 = "9ee8394cf179f7bed6fbf7afdc4acbe785a82f1f43dfeda08e2548fbb75942c5"; + sha256 = "8d7fb18457966adf7ee53459ba8c8faaad2806bb228d3b8acd37dae30b50161a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/pt-BR/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/pt-BR/firefox-117.0.1.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; - sha256 = "54ce03e1c8afd4ff0e36487257cb6333314dd932a9bbecb52bce425fafaa6f51"; + sha256 = "8a2c8ad808982f53b953f1b3fb34cd7e829b20d6fc298f7c734d0b6eb158634f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/pt-PT/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/pt-PT/firefox-117.0.1.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; - sha256 = "df5b054a04321036d1d4db31eff3fdac3f6af6eb0ce291a188a96617ac303ab8"; + sha256 = "73e82c20cf4302427f99c48be6ca10477a23e9e174d960b4267f4ee1d8486beb"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/rm/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/rm/firefox-117.0.1.tar.bz2"; locale = "rm"; arch = "linux-i686"; - sha256 = "485230109a4882924bbbc10f880ac0671e5e25c0a5854fd4f5b7112c3ef4f092"; + sha256 = "54ace8e61c0bd0788a42ac03c665aec1e65c963c30f2d26f39cae1257a5e6ef4"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ro/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ro/firefox-117.0.1.tar.bz2"; locale = "ro"; arch = "linux-i686"; - sha256 = "e25d9bafdc1b03b31d071377fac8028420d2c8ad31662087a98a84adad4db7dc"; + sha256 = "37c720f62c5c66f393d8344781db87b38cb4ed13089a8bc0ec45cef3e49b9672"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ru/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ru/firefox-117.0.1.tar.bz2"; locale = "ru"; arch = "linux-i686"; - sha256 = "5708f763806d13f28d2f74e198b94cc8390ccff7f416fc9e3a4159fd861d8976"; + sha256 = "554ab054c041c279a62ce29a84ca030ec7e2b19b8db7bc61e5f3e2b2dd5118bf"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/sc/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/sc/firefox-117.0.1.tar.bz2"; locale = "sc"; arch = "linux-i686"; - sha256 = "7d520f43e8a5b563dc021db11832707120d4e46a1714cec86130920dd525595f"; + sha256 = "a60581fac2fe16b2692a2e5ad5b625a93690c46ece6e25902193c3c7f5741b5a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/sco/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/sco/firefox-117.0.1.tar.bz2"; locale = "sco"; arch = "linux-i686"; - sha256 = "e1204a6558b3b6c82335a6b7e659febb51cd87ee40bb50a2acc763ec0507e45a"; + sha256 = "63312e044a3b619552a8fcb901952a905d7740c2622234d63802fc90111a7ade"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/si/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/si/firefox-117.0.1.tar.bz2"; locale = "si"; arch = "linux-i686"; - sha256 = "ba508fc9dcf2222d5ba908cde707ccc16a1d684d434171b54fe50a1da3c374e1"; + sha256 = "92d17e48142740d7d5e7e7ede07ad36ddeb82033a716e6532a54b4456a8e84a1"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/sk/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/sk/firefox-117.0.1.tar.bz2"; locale = "sk"; arch = "linux-i686"; - sha256 = "8d8ad5d45b1aa2858450adf4c3470f5070879134857f3fc5ca0fc11b3fb91064"; + sha256 = "e58b27edd6d1e92bdd3dcc4118e66e7ebd60c716b82e527796a4debfd07888f4"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/sl/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/sl/firefox-117.0.1.tar.bz2"; locale = "sl"; arch = "linux-i686"; - sha256 = "d3824ce47cb4cbc73e6035f85317ddb283905aeaf342b207d078bd4998da7cb7"; + sha256 = "ac0642523b0603114faf56fde13dc2ffba9c80e781c7003ef65bf95f6d19fa8b"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/son/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/son/firefox-117.0.1.tar.bz2"; locale = "son"; arch = "linux-i686"; - sha256 = "d602a8fce8e570b730ae7bddfcae9d7b14916669fb9f9715117bea6963d9b04f"; + sha256 = "bf1260296304692ed7cc09e8bf6aea61de8c3de7c01ca14d9a7ed98fed64d43d"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/sq/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/sq/firefox-117.0.1.tar.bz2"; locale = "sq"; arch = "linux-i686"; - sha256 = "83805acaa777999ebead094080cdc906ee1cf1223365daa954a889067b93bfbc"; + sha256 = "2379151ddaa60f60864834724be03b8893482979c2a9c627e48502e0d6a7c00b"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/sr/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/sr/firefox-117.0.1.tar.bz2"; locale = "sr"; arch = "linux-i686"; - sha256 = "d5f51487bea9fe43142702d91574a77b118d6c578f7d7c424e8620ffb96a9122"; + sha256 = "7e49e729e5bda8973d1e59c486f435bd4a65b37800210e2f99c09fbe40632deb"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/sv-SE/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/sv-SE/firefox-117.0.1.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; - sha256 = "5b4253c482e9f9163ee1f3f9c61c8a6bf1e2fe8b2e159c3eb67bb53bd6bd1a0c"; + sha256 = "94530cf755bf8e53354e687d57bd7ccd67a4c39b2985a75e6d8756b8e9fe2ee0"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/szl/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/szl/firefox-117.0.1.tar.bz2"; locale = "szl"; arch = "linux-i686"; - sha256 = "58320a930c0dc8953461df5de525d2004e8ea1a78d53d5b0e6f343f6eef23453"; + sha256 = "3cf2cf3a9dfc868c830d278c54a0d4634ee1ad3d7f2727a50a9fef3e4786309f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ta/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ta/firefox-117.0.1.tar.bz2"; locale = "ta"; arch = "linux-i686"; - sha256 = "71946e0d47fcccd3b211db7f4059f78f53a2c6490b324dc76b595bd40786d265"; + sha256 = "659f85d4e72aa14609e82a37df1048eb039ffb2ff5613273eed7a9b66ae29871"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/te/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/te/firefox-117.0.1.tar.bz2"; locale = "te"; arch = "linux-i686"; - sha256 = "6b6bff47af9f25be842f2b4fdd86db0ed74f5ca38754829e22d49384cb34ace3"; + sha256 = "e9f6025eefbb54340ef73849de76acb838bd31594667d53991fec1fe6a6052f9"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/tg/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/tg/firefox-117.0.1.tar.bz2"; locale = "tg"; arch = "linux-i686"; - sha256 = "fffbcfb98c9821b9e5a35cfcb8bedc63629be0a73229b1e91a7a6564e52662a8"; + sha256 = "9862028cad77ad49e30da59c5a436205466a86aefa3e10c685153394ffc48fc1"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/th/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/th/firefox-117.0.1.tar.bz2"; locale = "th"; arch = "linux-i686"; - sha256 = "c1af1171d3ff9f51ef019924571af07ed9c9783fe38d55f4ea47fadebc88b8b4"; + sha256 = "e0aedabb6452b8ab296b4c7ec4e8328108bdd73fd7dd2f34a3ba2febcccb6ff2"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/tl/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/tl/firefox-117.0.1.tar.bz2"; locale = "tl"; arch = "linux-i686"; - sha256 = "8f63c791f03cabd48a59e29f526579dd57d36e81c027d37c67e6ebac9a81e91d"; + sha256 = "e4abf5b13f05d3d6f5373fe178cdf53bc420a277549d5ab8d920ba541474ef1d"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/tr/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/tr/firefox-117.0.1.tar.bz2"; locale = "tr"; arch = "linux-i686"; - sha256 = "49b3840aa4365707d419d32c62d251931bf4901dc20746dccbaea192602d906b"; + sha256 = "80833c233a29bc6064b05f6ae0dd3484814ce8eac9af5b49e19313d47c965454"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/trs/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/trs/firefox-117.0.1.tar.bz2"; locale = "trs"; arch = "linux-i686"; - sha256 = "2ae400fd741b950481f3c8fa7d60e9880b978d05417c420ce0d93ad69fc2a55a"; + sha256 = "8f71e5b5660e5fc70728fb4c14d3bd4626c5198964eadd5866604367c444c183"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/uk/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/uk/firefox-117.0.1.tar.bz2"; locale = "uk"; arch = "linux-i686"; - sha256 = "ac78bf4e3f0993123e0ec6a2d0e84cdcf01eb4d65cca16457f0f63ea525d96ff"; + sha256 = "1f4b2710661432b2dcc40b9489c4609f1e6b60147d09e221e74558e2fa595c1f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/ur/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/ur/firefox-117.0.1.tar.bz2"; locale = "ur"; arch = "linux-i686"; - sha256 = "19c1784b567e663dec4c3774f3e01245127730bdd7b6e3799d8e0f321c778722"; + sha256 = "a6810d749716efe089b5ae67e52ff51e4368213648e64716b91da7806ac60e0c"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/uz/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/uz/firefox-117.0.1.tar.bz2"; locale = "uz"; arch = "linux-i686"; - sha256 = "01da3c7e35db35048ecea4a3363086a2637c39ad8e3401eed47dc3d3bca6696a"; + sha256 = "b02d490c4ad4d3c9148ab9fe9cc28b6484d540832a7850ff049d1f2748bf0d3d"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/vi/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/vi/firefox-117.0.1.tar.bz2"; locale = "vi"; arch = "linux-i686"; - sha256 = "cbb79c98cba0b5026def7f833471870247af98a32491845b61e892f837c1d192"; + sha256 = "65a7e90b36fa8b96972869c6e83c911cebb20b9de9ac91dadbe9048b0e5e8d5a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/xh/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/xh/firefox-117.0.1.tar.bz2"; locale = "xh"; arch = "linux-i686"; - sha256 = "9a509279d842e3b932a5a076ffa79b11918a2f8fcc2a6319d340fce24c2c6a89"; + sha256 = "ab05ae65b098462761b67409fbcb92cb1c480defc70b9771fe6de0be3ea0a2e5"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/zh-CN/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/zh-CN/firefox-117.0.1.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; - sha256 = "45caeece0c0bed2789225f5e3465a5f5ca0c85c47829c5cea1016fe2ca322e77"; + sha256 = "7fc5a43500f9b190937f72f3d0203489a43b805762c02d48ac0844975f03cabb"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0/linux-i686/zh-TW/firefox-117.0.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/117.0.1/linux-i686/zh-TW/firefox-117.0.1.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; - sha256 = "0e0646f7a8b5e4da54e1d5e7bcbe86dd025fea90b30bacb7662d6cfa65440b72"; + sha256 = "1a4c43ff0c176ede40b17275d2a5eea49e58711d228d1a34c3a15695786e23c1"; } ]; } From 5c31619d98e6d775b8afb16edd4f2b25db224f0e Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 12 Sep 2023 18:21:37 +0200 Subject: [PATCH 171/346] firefox-esr-115-unwrapped: 115.2.0esr -> 115.2.1esr https://www.mozilla.org/en-US/firefox/115.2.1/releasenotes/ https://www.mozilla.org/security/advisories/mfsa2023-40/ --- pkgs/applications/networking/browsers/firefox/packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/packages.nix b/pkgs/applications/networking/browsers/firefox/packages.nix index e165b921bf6a..987a65702c01 100644 --- a/pkgs/applications/networking/browsers/firefox/packages.nix +++ b/pkgs/applications/networking/browsers/firefox/packages.nix @@ -90,11 +90,11 @@ firefox-esr-115 = buildMozillaMach rec { pname = "firefox-esr-115"; - version = "115.2.0esr"; + version = "115.2.1esr"; applicationName = "Mozilla Firefox ESR"; src = fetchurl { url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; - sha512 = "df3b4efd9607e8eb4932717760c865eb31ac7a96246cb4385190c33316c9595e0793a1f3c45ebb9674a9ba4fce98d83f71b063bef09ef307d92d1cd78d30d812"; + sha512 = "5f9ff96996e3c482fa4d2e2861fdf14d2154bf0277d412bf9c9435204c7e2e2539ce7ef0891d8dafc74d5a12650a5ccd33d79547aa1bbb2c2a0972aaeb755edf"; }; meta = { From 367483fc34ae6c13b154980e3cc83da409f0390d Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 12 Sep 2023 18:22:46 +0200 Subject: [PATCH 172/346] firefox-beta-unwrapped: 117.0b9 -> 118.0b7 --- pkgs/applications/networking/browsers/firefox/packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/packages.nix b/pkgs/applications/networking/browsers/firefox/packages.nix index 987a65702c01..2096163bb68b 100644 --- a/pkgs/applications/networking/browsers/firefox/packages.nix +++ b/pkgs/applications/networking/browsers/firefox/packages.nix @@ -30,11 +30,11 @@ firefox-beta = buildMozillaMach rec { pname = "firefox-beta"; - version = "117.0b9"; + version = "118.0b7"; applicationName = "Mozilla Firefox Beta"; src = fetchurl { url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; - sha512 = "95e215f4280e177c3f763c6a8ab7ff56d6e0ca4aca2ac5eec8a3be7a461257e3aba236f3d122200e031d8e75ae2486779fb89d398defeefdb52589cb98a131b4"; + sha512 = "17dc6dbfe1c3085a7c85d53d7980660471253e64d081a01e59d0273b75c4000476bad31fe155c976a18c561c09c21ae9a95775c81bb99c5a53bea89f79b07cfb"; }; meta = { From 9a43d5fdb275c10a55455a5fb863af73a07c40d1 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 12 Sep 2023 18:23:17 +0200 Subject: [PATCH 173/346] firefox-devedition-unwrapped: 117.0b9 -> 118.0b7 --- pkgs/applications/networking/browsers/firefox/packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/packages.nix b/pkgs/applications/networking/browsers/firefox/packages.nix index 2096163bb68b..2d05c4699348 100644 --- a/pkgs/applications/networking/browsers/firefox/packages.nix +++ b/pkgs/applications/networking/browsers/firefox/packages.nix @@ -58,12 +58,12 @@ firefox-devedition = (buildMozillaMach rec { pname = "firefox-devedition"; - version = "117.0b9"; + version = "118.0b7"; applicationName = "Mozilla Firefox Developer Edition"; branding = "browser/branding/aurora"; src = fetchurl { url = "mirror://mozilla/devedition/releases/${version}/source/firefox-${version}.source.tar.xz"; - sha512 = "ab034e31467a7c9a57f5c32d486fb69a250d4293513babeeea8ff2042b0eac858be2c46c69469c700a7271f46a0c297ecdaa5ff651434adc8f9c157f80a97e43"; + sha512 = "636df06a41bba9909c50a1c433a6d14d42573cfa8ba28e57b87ed709fb06d81c1fcf4a24a8e1c794b6b7eb894a72e188d5e91bb46ce589a3438c8b75acb6e812"; }; meta = { From de29ab685f76de5b10a6794edf2bc04fbd94978d Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 12 Sep 2023 18:23:48 +0200 Subject: [PATCH 174/346] firefox-beta-bin-unwrapped: 117.0b9 -> 118.0b7 --- .../browsers/firefox-bin/beta_sources.nix | 810 +++++++++--------- 1 file changed, 405 insertions(+), 405 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix index d54896f48d11..bdbca6de93cb 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix @@ -1,1015 +1,1015 @@ { - version = "117.0b9"; + version = "118.0b7"; sources = [ - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ach/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ach/firefox-118.0b7.tar.bz2"; locale = "ach"; arch = "linux-x86_64"; - sha256 = "e19ea948b8cd242ad411cd5bd774810e444a1862acc4b182595761b76dc3e331"; + sha256 = "927b23d08eaa437a049ec0362cbc71667081abd82d91de8a0566a2844198d297"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/af/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/af/firefox-118.0b7.tar.bz2"; locale = "af"; arch = "linux-x86_64"; - sha256 = "26dcb5dc2d4c4cd02d49e09c0a7b4424ed30989a99a510289da3eb10258ebed9"; + sha256 = "9322442c685898838a374bf02b846539ef3bd314ee083cf58f43c995384e7aa8"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/an/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/an/firefox-118.0b7.tar.bz2"; locale = "an"; arch = "linux-x86_64"; - sha256 = "a6949c98003a34b2ead5d48f8b2d498dc9cfa98082fbb6aee8384fe806ed6ace"; + sha256 = "ca677646708f56f2544aa2f37f3354237366eedd2a6a4c9c8335d3efdd59dd95"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ar/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ar/firefox-118.0b7.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; - sha256 = "bc3b20d46348dec75b734f2d6c57c7a393d18a78bb0597ae5a8e02faadc67d40"; + sha256 = "a23ac96581616cfbca172b6f7e181b5ae6d6b6b08d16d976d711a18f17dc67b5"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ast/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ast/firefox-118.0b7.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; - sha256 = "e7f25756d30cd6dfe6b1b308435346d5cc7f033ff25b50251b6c2b604890b2fa"; + sha256 = "25ae05c3130a51a9a81686f175652873c5a2b10303315804567ccc9b97597d51"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/az/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/az/firefox-118.0b7.tar.bz2"; locale = "az"; arch = "linux-x86_64"; - sha256 = "6672ea753d7191a86fc91749669e33e1fc91f5630b921493849748ef0be2803a"; + sha256 = "bba681c4e24b1cdaa197d2f903ad630e29e56524831de08e4169cd81e09a8df4"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/be/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/be/firefox-118.0b7.tar.bz2"; locale = "be"; arch = "linux-x86_64"; - sha256 = "2d6cc0283f67dd2292442bdd5c561713c94cfa0b0c81b9344ac397b2b90a820d"; + sha256 = "52ad3bae8232c9d9b351226515453c217c6bcd7dac70e82874a168ca63bd01e1"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/bg/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/bg/firefox-118.0b7.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; - sha256 = "ec2fef76d9d9930645e4872811e511a2a359c0c5999da554bd7259706ab9d117"; + sha256 = "49bea19ff2c196f47bba2ed0634df1bed6ef1174fa811910a2ab16224adab0f5"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/bn/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/bn/firefox-118.0b7.tar.bz2"; locale = "bn"; arch = "linux-x86_64"; - sha256 = "425a0a430c9060a69362c7f30df9eb7f4a1190cf04e443d4753016a219ab2d59"; + sha256 = "41a886c10f0387378dedb39c039a55891d78068d1804eaea1da272a2f9159783"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/br/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/br/firefox-118.0b7.tar.bz2"; locale = "br"; arch = "linux-x86_64"; - sha256 = "d6d353aaac00ad97b668b31ff490b927d2280e43fc53efe72334c56ad3bcf8b3"; + sha256 = "b3a3131baadc9fe9cb556b5b9efcb63f118ce325576bbca01fd458e08b6d93af"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/bs/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/bs/firefox-118.0b7.tar.bz2"; locale = "bs"; arch = "linux-x86_64"; - sha256 = "57db2821c658971c5de8f882bd5396f83434983bb09aa7e66fb9f4b3b86c73d5"; + sha256 = "e2404cbdbe7d3a497093040560ce8cc1d47e3f077008d239dd619fe885f73693"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ca-valencia/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ca-valencia/firefox-118.0b7.tar.bz2"; locale = "ca-valencia"; arch = "linux-x86_64"; - sha256 = "22e17ff840c87b00a988890d80efe30ea6c0a120a1ae618cd9b60c1e586e9d2f"; + sha256 = "62ee15f6a28d31152c627efb998ae4c060afa93ed9bd396c58e2959cd6982b60"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ca/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ca/firefox-118.0b7.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; - sha256 = "d4ca47d7191503a04bf402a1c85214280454bcfaeda47e7482c90e38d1d78f76"; + sha256 = "00a58fee6e16d483b339a341167e5bf774c7317d11c997f6b0b5fe86e37b6020"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/cak/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/cak/firefox-118.0b7.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; - sha256 = "d239df72ca8af252b357ca19c4feda31e6dde67fb8421714b124e10831fc0623"; + sha256 = "97ba1d4daa2fbdee57f08cacf8f8258dc4877215d4ebbee20ed87ffa44cd18c4"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/cs/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/cs/firefox-118.0b7.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; - sha256 = "1f0e87b2611a8fee96a8b4e8bf2e83eab2f178b86a21ed319eb43397d296edb7"; + sha256 = "294c8d2a045793edce11e258715b8ca3b76305e93018b40267288deca26b2a21"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/cy/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/cy/firefox-118.0b7.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; - sha256 = "0142fc360c7ef75d5b5b607bab84f923d0b7608f1d0725798a1d26fc1af2cb8f"; + sha256 = "8be0c23ee3f46c5076a864ecb448fcf999c69eec1b7ccf56c14d4a0f127dddd6"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/da/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/da/firefox-118.0b7.tar.bz2"; locale = "da"; arch = "linux-x86_64"; - sha256 = "df492bd754486a93a65cf5ddba7af6bfeeaa4869a6fe66fb20815efbd31ba26e"; + sha256 = "05837b4fada24c35133f01e99538e45af42a52d3b1085d1493489e90c30d498a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/de/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/de/firefox-118.0b7.tar.bz2"; locale = "de"; arch = "linux-x86_64"; - sha256 = "aea983ca7af76798edaf37842a216310397e29741c4b29ae4792d23a4cb422d5"; + sha256 = "f6289b61cd8e85f6be27f98af4e12c81ce1839a9d73c04e80123a79ce8dc99a2"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/dsb/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/dsb/firefox-118.0b7.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; - sha256 = "b23f2bcc821ff15ce47818a8a1aec52882ebfa1498a471eabb1477a5c082e4f5"; + sha256 = "08f1e61ab9feaf4535f498cb8d24d4f143e8cbedc23e929b3450b80b6787a7fc"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/el/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/el/firefox-118.0b7.tar.bz2"; locale = "el"; arch = "linux-x86_64"; - sha256 = "abd14944865c96873b91a98bc8027de6f4b2a2c6e86ae900a0127b770560ef89"; + sha256 = "d067bfb568504bebcb23b564ece344422c07fb51f816939efc4174e38dc0b6a6"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/en-CA/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/en-CA/firefox-118.0b7.tar.bz2"; locale = "en-CA"; arch = "linux-x86_64"; - sha256 = "13fc57abc3ba40daebf7fcdcf52402ed28a99caa957b9061fa05902ac533caca"; + sha256 = "60c6723f39bb51b794f41f710ffbbf068b81ec4fe86d3c12609ded37a4c41c87"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/en-GB/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/en-GB/firefox-118.0b7.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; - sha256 = "8da8f64b7aad126abacdb467e7368fc2b71aa27c83d5a913183b8bd96c010fc3"; + sha256 = "2c923d118b83f80697529f02a375c3ab429f3932447a899e29f33535012371da"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/en-US/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/en-US/firefox-118.0b7.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; - sha256 = "318449489fce07793f3960bacaabb966610b1552985fe63355fdba710a258cdc"; + sha256 = "7996a74adba7ec91046d4fdac581908b44762159a05a2d6b4da21b225fa53758"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/eo/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/eo/firefox-118.0b7.tar.bz2"; locale = "eo"; arch = "linux-x86_64"; - sha256 = "c000198e0a032887a2827081d4577800697f1817bbda5adc7f00d8a3c58d2209"; + sha256 = "d10c9bdd4bc1977326b92a7d3f562529295a7117edaf669865ff58cfb33be77d"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/es-AR/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/es-AR/firefox-118.0b7.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; - sha256 = "e0cf69ccf6c390b5540ffa68e12022991650a738ac354643a1ea1ceadaefccdc"; + sha256 = "b8986038b0bb031c136e84d154f100447ebd92aca41ad4d96ed8d31be7703a39"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/es-CL/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/es-CL/firefox-118.0b7.tar.bz2"; locale = "es-CL"; arch = "linux-x86_64"; - sha256 = "bd8900e5ab75b92ccec495bd86953e9cc01f0143dcc753125c2257421542fa97"; + sha256 = "b006eafce9f1ed9cec4187abd85c4379e6e2e197a9a1e1dd77609a31f840232e"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/es-ES/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/es-ES/firefox-118.0b7.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; - sha256 = "c3722460d38a89ad2ae394ca7cb75ec60c099a0af823cf58cabf8e2cce471e5a"; + sha256 = "7824b476106a39f57329baa9a4b1c0edfd3504e00052328c357ce718e940a63e"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/es-MX/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/es-MX/firefox-118.0b7.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; - sha256 = "a7b20aeb2bda525ea6cf3c32658ec064f8a2ccdcf62062bae95955352008b2bf"; + sha256 = "e706368b446da3ecc6eda5e21b3b0df5def5d48507dc37e9963d2157f55f27eb"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/et/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/et/firefox-118.0b7.tar.bz2"; locale = "et"; arch = "linux-x86_64"; - sha256 = "e6d3bdf8af680f18e094ec2282b8de16a6723c9b9c1b1afc9a20dbb82053aded"; + sha256 = "0ec50e56ea2da57075415ee174caa1ebcf497624cd20cecc0f9924eb9878f823"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/eu/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/eu/firefox-118.0b7.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; - sha256 = "d00c4996c1880e2ebe5553426a6c9813d5b51117ab5f40ae0850eefa9a97f6a5"; + sha256 = "66ef55ce60e84677741d4cc25ac0198b7c15d0ee9cc7b1b92e9db7955b280951"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/fa/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/fa/firefox-118.0b7.tar.bz2"; locale = "fa"; arch = "linux-x86_64"; - sha256 = "8ca66ccfff7a34fb6af033254339f1fe52f06a8d575bb85ea6027df64a274eba"; + sha256 = "0ef498486ad9569d11d0e6c861b9669cf89dda47a62af33326d702c411aaa1d3"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ff/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ff/firefox-118.0b7.tar.bz2"; locale = "ff"; arch = "linux-x86_64"; - sha256 = "6f55156cb4d82b365b290283762eb281ae7f42d38acd7dda355b7edf1ac85fd5"; + sha256 = "693cd9947724b00f2e1a4bb6b361077af185f823d8bc7b8b0ea3a032a5af49b4"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/fi/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/fi/firefox-118.0b7.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; - sha256 = "c63eb46fb2c2ce816aabe3013ffa762bcb005535d0189954bebee3923145e411"; + sha256 = "889dc27c1bed74b67a1a58d530c13464bf8494a58c558e9c4105d892d3232a7e"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/fr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/fr/firefox-118.0b7.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; - sha256 = "8fe9a7ab288623437ad51c3321e57a6ef6e271be220efe2cb361d38d5c89bd11"; + sha256 = "a0ab2bf72fcc751d53566066799d50013245622304cf9197ec55a7c80d00a6f9"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/fur/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/fur/firefox-118.0b7.tar.bz2"; locale = "fur"; arch = "linux-x86_64"; - sha256 = "b2c551a6ab7706e80873cec526c142a38fcaef77b2394eb95e752fe912411f5b"; + sha256 = "5dce0c8b7122fff2f0773430995cc18345d55d9d0362cbc8380574a05f3a09bd"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/fy-NL/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/fy-NL/firefox-118.0b7.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; - sha256 = "4833ab76eca8f34d572f766e0979bfc041bd088c48b3c0c8cf6122d9cd67cb94"; + sha256 = "8e8f6a84d4077613b14a57bdd3e607f36624332b237e77a57dda6620fcb8de5f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ga-IE/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ga-IE/firefox-118.0b7.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; - sha256 = "7c6a59d29f4912809bb628ed5e287a28ba6ce1c04e118e65812474addbcbd124"; + sha256 = "383a71b75a9909066afbd69a3aaf8a5ae95a2a3c2f90a59e3028bb01e25c71b1"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/gd/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/gd/firefox-118.0b7.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; - sha256 = "336e2900b52f12a22e91c24d36982c6ac3de757a1389c0133b53aa9c75f0d17c"; + sha256 = "24141e0c75c5114ccde9c3853015bddb8799b12c3113bcd83fd707633ceff676"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/gl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/gl/firefox-118.0b7.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; - sha256 = "151b6931c9caadf0b2a4a5fb5e1ff5832da2d0eb19f044cfc7277b56d9a9f992"; + sha256 = "6e348e99f5d0dba196354db82ed99dc586d80d44c02f9136957a770d3bcb457b"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/gn/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/gn/firefox-118.0b7.tar.bz2"; locale = "gn"; arch = "linux-x86_64"; - sha256 = "0daa46c6f526255cb8e15646c4cfa00ded07c8bba7d35fc93c69c26ab100faaa"; + sha256 = "309d26d9786e1404381c981f355e8d79dfcc859ef55022f3e37746b9c008a32e"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/gu-IN/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/gu-IN/firefox-118.0b7.tar.bz2"; locale = "gu-IN"; arch = "linux-x86_64"; - sha256 = "511b4352928b907078b78160272144b33d1a25f2420eeee7d7e333ecb33782bc"; + sha256 = "e42300c6bbd770df2e5f6b5748f2877befccf24131bbd840f3f680041294a34f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/he/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/he/firefox-118.0b7.tar.bz2"; locale = "he"; arch = "linux-x86_64"; - sha256 = "4dbe8f5a912652a4a35bc121af8ba9e3bed841f92e5cac53a35734989d8a11fa"; + sha256 = "db1818b6595d68b48c50cd71f96d038d8f2c55d437869d19bf56c070ccdd98c2"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/hi-IN/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/hi-IN/firefox-118.0b7.tar.bz2"; locale = "hi-IN"; arch = "linux-x86_64"; - sha256 = "533196690a2f36ea24bcd01811df0b0063215ccd6f182e5a789207241f5288bf"; + sha256 = "18988ac38158a1f4432a0678ad7aaea667e154b77fa5198b4a9a5ade788232aa"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/hr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/hr/firefox-118.0b7.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; - sha256 = "1101aeaf1e6019604212b71efb3a8c2ca01f0e55f12c6991bdbe221c92cfb550"; + sha256 = "cd670853ceadaa6bb9206964f0938bbfba6ff84dd0b64294156ec4a3984ab299"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/hsb/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/hsb/firefox-118.0b7.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; - sha256 = "59b1ae8f709b056a0cf2f7f0ceb3d268e65627f8eca6755e2b823b3f29000e02"; + sha256 = "7c33568dc56bd19c6cf6f62270d15d7f6c59327e5ef8433cdb9681bb0ff7d3ac"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/hu/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/hu/firefox-118.0b7.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; - sha256 = "920b6321470afb3b41625422a070bf0ebbfec30c32872a7db3732895ffc088a0"; + sha256 = "73130c877c94a2e403cae994b310127561c6bdfef4afc53b631b6082c5a8b4a8"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/hy-AM/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/hy-AM/firefox-118.0b7.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; - sha256 = "6cf5e2afd6148ed1fe48d0e111d08e42791c0aaa8e9334a62b4c1fe98d9f7965"; + sha256 = "40d49f285f65ba8d1dd273f988860c0ce5dc1722cb8c050a9e870fdc98835434"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ia/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ia/firefox-118.0b7.tar.bz2"; locale = "ia"; arch = "linux-x86_64"; - sha256 = "6050b3e6832ed9562fd67a5e27fae4db09ca064e82096ca7c8cd0160940ca4cc"; + sha256 = "7856c687fd72302932ecaa8b3ebd2ae827fc0c2ac32ac4a6a0628b43b55fae93"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/id/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/id/firefox-118.0b7.tar.bz2"; locale = "id"; arch = "linux-x86_64"; - sha256 = "786f125d61952a0c0b95b7d5458400b2ad39f995f1f79af7883a49679e3f5097"; + sha256 = "39b46d47f8f9c009e0410a636048e301e7125513bfa07e7d2b26620f26f2f23b"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/is/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/is/firefox-118.0b7.tar.bz2"; locale = "is"; arch = "linux-x86_64"; - sha256 = "dcd8dc576286e95c8072660421a40683f602feebd15b8a960bf9e568fbc98e9e"; + sha256 = "6fa46f794998f34fe0a504a9aa9f515b8f9970337a88f9e2b32e2a6be4f5ec26"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/it/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/it/firefox-118.0b7.tar.bz2"; locale = "it"; arch = "linux-x86_64"; - sha256 = "6a5afd1e53aec3d7f64477962d255087dc0cd8229bbf533bfc28fd3f26f3b538"; + sha256 = "0c54af2d504e27d5274fd6f48cb8b310625747399bf1f3652cf2218c32f7e1f6"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ja/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ja/firefox-118.0b7.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; - sha256 = "1b6346961cf259d1e21ebf8e52606302ee79add217ab1d87906012be739dbd0f"; + sha256 = "64d06989961b531449e1dafd27ae952300ce13523a257154f3fecc0450677bbb"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ka/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ka/firefox-118.0b7.tar.bz2"; locale = "ka"; arch = "linux-x86_64"; - sha256 = "44341e828a8e7f68844e22edc26268dda43a0efea4eed337daebaf04da414a0f"; + sha256 = "8b0de70801dd1c98b2ecd7bded83e050f8c374ea13a65b804e29a53c39c1a4f3"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/kab/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/kab/firefox-118.0b7.tar.bz2"; locale = "kab"; arch = "linux-x86_64"; - sha256 = "918313481806004162514ef794fd8ce99761217c8132bc443f89810c581b41df"; + sha256 = "7eb96d67615f8dfd11bf8628e2a9cf54312217a790aab80c3c60067aff99cd02"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/kk/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/kk/firefox-118.0b7.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; - sha256 = "4644acb50984008a6efb97fc3493a8d01f14a8fb07d11a2a57ba19c85f620ca7"; + sha256 = "506c3ae8d62c7e744d2763295f7350601c7a2ec77c58f6579daebad49db32546"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/km/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/km/firefox-118.0b7.tar.bz2"; locale = "km"; arch = "linux-x86_64"; - sha256 = "95d0c82527b7480c1a63fe4c3522d7e3f10b837ca1cd2602c32294ab6e9e9857"; + sha256 = "7c953b3f7fe4714bbecfd3d37a335b30ef90fef40ca883128eb471f0ef337a68"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/kn/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/kn/firefox-118.0b7.tar.bz2"; locale = "kn"; arch = "linux-x86_64"; - sha256 = "9e3644c49c039ee7e51000925073ac0a907579a9f96ef31b9889f6198310b2a3"; + sha256 = "b6c834a8a57b2a5f0c01b41e305d3e655a84d19f9241a903121cbe9af0dea884"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ko/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ko/firefox-118.0b7.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; - sha256 = "7f3a933d16023cafefbb2414d28561001024000a27dad2057ced06b7fa937904"; + sha256 = "c3ccc27ac5e7c52dd558e703d944e3cc567c6863d75d536564a50318df93d8e4"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/lij/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/lij/firefox-118.0b7.tar.bz2"; locale = "lij"; arch = "linux-x86_64"; - sha256 = "9ed4026b6ad2d094790c0d33d74157e8ac3c83ffbdacd039077457dfc3262750"; + sha256 = "49bb895b55f211ca0302df2d0b7093bd0365cb7eda3a474b79cf3e7e6c0381a3"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/lt/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/lt/firefox-118.0b7.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; - sha256 = "071c312ecb952de23cb0ecb507f5542227a060d1f2bdfa516ec2036b8a9321ea"; + sha256 = "df926cba446cabe9bf2f3f5933ea881e865f0fa567a357557588455446e7619e"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/lv/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/lv/firefox-118.0b7.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; - sha256 = "de01d7b64f9dbd3608bcde1f5660e1a84514b9f34f67488e4776741abc0658f7"; + sha256 = "54e46c92fac0f33cfa59ea1e7be395f874a4c1cdefd1728e7dbdb4ca45732557"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/mk/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/mk/firefox-118.0b7.tar.bz2"; locale = "mk"; arch = "linux-x86_64"; - sha256 = "9a1214e5cf15c62dc4b1a3eef602930bdec4f9b986ea61efc44a02d7f2babf8d"; + sha256 = "e6b36e5a24381f8433d47890ac10ce687ebc29644e58db75fe597fa0b471495b"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/mr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/mr/firefox-118.0b7.tar.bz2"; locale = "mr"; arch = "linux-x86_64"; - sha256 = "b2f070d12485897eef0f09783cf32392ff35f50968bd10210838084a352f5d5f"; + sha256 = "32805a9ad156e5895f79d1347367cf58762256d92e11791ca5a24119aea01502"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ms/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ms/firefox-118.0b7.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; - sha256 = "7dc82e63bd47b2283a4a958970326cf81874c301252d0b60d54b8e514eeab4a0"; + sha256 = "ad3292010436f2c63bf6ab8bdbb157dff0a6ec7b1504fccf1c72ce5a663891e2"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/my/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/my/firefox-118.0b7.tar.bz2"; locale = "my"; arch = "linux-x86_64"; - sha256 = "c3155b4e73b576267acd36a115305072bfe45bea8fca50d2a13c5d8837ed0f25"; + sha256 = "42394f78559057c2d3c821af4c451b644d3ec700c0b5bccb27905be0ab97b5b7"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/nb-NO/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/nb-NO/firefox-118.0b7.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; - sha256 = "56a353649b5fd8f796bf6c3061c74d3e876b2e61524959b312837c0caf8c8145"; + sha256 = "8a7e8100f03d3e67666b87e070e88534add45173edd86a7b5a48a81d9ae7fdf0"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ne-NP/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ne-NP/firefox-118.0b7.tar.bz2"; locale = "ne-NP"; arch = "linux-x86_64"; - sha256 = "9feec9991aaec1277d38f72e007db1b011e7f780c24d591c34c4e0fea31de6d3"; + sha256 = "3c839076057b784dbae0f08c84a4236a8c8fa37f4ddd235aa30b6d9454ba38e3"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/nl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/nl/firefox-118.0b7.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; - sha256 = "9d8f33dcab64573e5f8940453af11d3979b9408e22746f890111994a8529ced7"; + sha256 = "3bbdbcc306b81d976fb4d28503884d0f7d8ea67ef89eafe9bde5c489360d1f3e"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/nn-NO/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/nn-NO/firefox-118.0b7.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; - sha256 = "8c7c4f3e098f6ba9a5dba1e851454d47591bd72fee8c98d1fa7ed6bbc86c1400"; + sha256 = "1257bb17eb1f1f00ae21529950095f0094b06f4bc78de703f889c497c5afdef4"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/oc/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/oc/firefox-118.0b7.tar.bz2"; locale = "oc"; arch = "linux-x86_64"; - sha256 = "085c5342330dcacd0365f2351301610f0c19a4db19e02909072bc05c2cd28780"; + sha256 = "b8e74c3f90f988ebe87f4eeda61b533373235eaea7b7147b65bc09e2b8a16ed7"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/pa-IN/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/pa-IN/firefox-118.0b7.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; - sha256 = "990f8a522cf945f2df0c5871c7ae5d85127dbf11b71eed729d29158bac758872"; + sha256 = "e1a542bab18fde992df779bc236ccc5d0cbb16247e5805fbdcd575e4bdb0be4a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/pl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/pl/firefox-118.0b7.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; - sha256 = "dd66208140c5d201edf9fe6f62aa25ab2e74bdf6ac436be879c7f5a6d5bc8e0d"; + sha256 = "6341bcaa8a7b670556514b5c315d11f5d47ca75f49731292dd4b482e33887718"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/pt-BR/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/pt-BR/firefox-118.0b7.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; - sha256 = "88df6ab659d04038a9a813d4aa643c0d682bdf15461a07852b9d14b81d1de726"; + sha256 = "44cfa500eb0518a4a183ce14c51e1be0bb2a2540dfc78aec5166ea3c2373618f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/pt-PT/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/pt-PT/firefox-118.0b7.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; - sha256 = "2cc07afba5589c53418ab2e1cdc7116e8981f836c603d593414eb8ed2a624a97"; + sha256 = "344c3c6e3f8382396ee305d07da5aafd8a5287951f2bd82f12be4ad5fb83de4c"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/rm/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/rm/firefox-118.0b7.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; - sha256 = "95b454d55cb97b9fcd1eaa6394ecb21bde84b54df71785e2a8f4857433c0f1c2"; + sha256 = "40e5bd2aedb9cf4b211742f9ba2d4ad884b90c7b3e99f58ea54503f179d6787b"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ro/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ro/firefox-118.0b7.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; - sha256 = "663f5c776fbdde59fd40ef66f632b37254d5f5ccc7ade3265ebe50add714c419"; + sha256 = "9390b9be83e0f3dc58bac8ca1729b6a40c520ca2d83a439807f7273fe11a42d3"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ru/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ru/firefox-118.0b7.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; - sha256 = "defadc275f951108a3d4f54a98acf9f8a3e9fac2dc60b4a27822dca3ff026146"; + sha256 = "e5b49b2e82b442f0727d0f7b5e88a8b914bdd0568eab41f42a0e2e6aab8e2928"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/sc/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/sc/firefox-118.0b7.tar.bz2"; locale = "sc"; arch = "linux-x86_64"; - sha256 = "90b937b1427bf9c0cc3951710769f7c68902c796fff6f0bad99994b232a6b3d0"; + sha256 = "9e3d2731965410ebc45285d27bf91a6dbd23e95e07c35833d2039f04c26a473a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/sco/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/sco/firefox-118.0b7.tar.bz2"; locale = "sco"; arch = "linux-x86_64"; - sha256 = "c78cb614a9e443ac6d452b308c83273703ddc1ba0c4c08032c58bab8fa7a18a1"; + sha256 = "cbd50a5ed50873e82a7a935087ddfe9413a6e181dcd1ebfb9432a19f135fb5f8"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/si/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/si/firefox-118.0b7.tar.bz2"; locale = "si"; arch = "linux-x86_64"; - sha256 = "f62980621795a23a21b9d0de359a854744e490fccd525318cd84aa30f1dac8e1"; + sha256 = "590a1aa198a00ae8047b1632bfc6e0f957f9e88b1174a15fea7d8e1d1df00030"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/sk/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/sk/firefox-118.0b7.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; - sha256 = "464634330b6dab468ea64b624f214fff0a495785f1af81c1a5ae41a15a8eea8a"; + sha256 = "245957967e87226272c27fa80a4a1655949d37af5d49bbf52add0a03f982574b"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/sl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/sl/firefox-118.0b7.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; - sha256 = "9567a4a34807de1ba8f7e7d73cb188aea25a229b03a517de43d4575534af9eb4"; + sha256 = "ad6401ad2be3991018e09be93ceddc2117382d0092a71d3b39b640dc581d1f03"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/son/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/son/firefox-118.0b7.tar.bz2"; locale = "son"; arch = "linux-x86_64"; - sha256 = "1071fc57edde0b198ee832fb20bd68af1f1a2b7b1189794058544d605e69543c"; + sha256 = "de57c4e28301968faae7a054ca600b327a438a737f10e4f73f6a832ff14bfaff"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/sq/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/sq/firefox-118.0b7.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; - sha256 = "2ebca99d9de5171d9531832028bf21a693aa7cabc4337f66f0000d265b4eb573"; + sha256 = "5c06005f2e104d49deff29a88b32118f1272642d1b251e7d0c8e0cd08525ebd6"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/sr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/sr/firefox-118.0b7.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; - sha256 = "15693037e1ceebd097c9065eeea1b9e2b428ac5abf6b101714dbbf0f92507ddf"; + sha256 = "72b8d904f2a3a72489a44b927c7691229f876e63c989ec508ad66401d8f6a0ba"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/sv-SE/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/sv-SE/firefox-118.0b7.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; - sha256 = "f711742d5da5526346c8bd602f5c9a6a7f15a91c21af19c1d975a13767d219e4"; + sha256 = "c46376ecfeb2f1da8cdeace918b2b59eb1528c4ac5e82afb26b42d4cc483e224"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/szl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/szl/firefox-118.0b7.tar.bz2"; locale = "szl"; arch = "linux-x86_64"; - sha256 = "c6af80c59df44c06178e61a08a6b41fd345d7274e0550fa389f324033e449011"; + sha256 = "a1aa2bce8ba89c2ed0e32713a987b9809ef7424fe2e76020862c1e0af3fe1ce9"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ta/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ta/firefox-118.0b7.tar.bz2"; locale = "ta"; arch = "linux-x86_64"; - sha256 = "2a3a34c2a5d43b7fc9f04d16dfc37719b70191de741bc6a7d389d3aac208e35e"; + sha256 = "0220a05ab3ef23cf5ed4e1638a2e0a9230415ce44f99ae9ff538261e045d6ac2"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/te/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/te/firefox-118.0b7.tar.bz2"; locale = "te"; arch = "linux-x86_64"; - sha256 = "c99fe648506427aafb5e2386ca0458b7dec75dcbae8741816462fed5b0e0f412"; + sha256 = "1b5bd39af85f42019688196cdd21b375c9112eb78c48043e28439d24f7a1f9d7"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/tg/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/tg/firefox-118.0b7.tar.bz2"; locale = "tg"; arch = "linux-x86_64"; - sha256 = "01a7b0ff8305552ee83ce875ad500b32da2460355ddb261d9c94da6a7b523e29"; + sha256 = "618f9570ea2384a67e29d67d8b6e1b97806ac32c6619b0ecb3d53a30490eeae0"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/th/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/th/firefox-118.0b7.tar.bz2"; locale = "th"; arch = "linux-x86_64"; - sha256 = "f5a27b14f9824f7bc00c48c08956bf5ded67ef69fe65fbc0cf72b31903935704"; + sha256 = "e1634d9ff6c5ff3588fd038bde05409ed805a55e0b44d2272b7057a2381103e3"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/tl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/tl/firefox-118.0b7.tar.bz2"; locale = "tl"; arch = "linux-x86_64"; - sha256 = "42f809dc08c2061b289f8e198f1b70eb6cc1ab9f54becbabfaf840096b72c888"; + sha256 = "fe6dade8035519339ab6b1238198a6e88705ea8b5ac0bdee169496e5a30bad2c"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/tr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/tr/firefox-118.0b7.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; - sha256 = "00b1b78a75eab4de06a50a435e4fad477ae39d72bbb7f17dacc58cc38a183f4b"; + sha256 = "ddb0b537342f718e9ef915766b6710c433ae5d595a00a3735b50081c245279c0"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/trs/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/trs/firefox-118.0b7.tar.bz2"; locale = "trs"; arch = "linux-x86_64"; - sha256 = "880738563209342f0be670ded2ad5ef202c87122af99fad224c81e1d72bbbd26"; + sha256 = "671d1f388b7d2aff287eca5ebb022b5931dc31362476479cde72db1bae88d34c"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/uk/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/uk/firefox-118.0b7.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; - sha256 = "c6918ec42a02d3c0e637e7152fc58bb3aa6b7e4d34ac5c460117dc5e7999d2f5"; + sha256 = "214799ee81c4160b92689bdf43cc88fb1429b5a96f5311df8118c94c133ee26a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/ur/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/ur/firefox-118.0b7.tar.bz2"; locale = "ur"; arch = "linux-x86_64"; - sha256 = "150a008ffeff354d7694299f24d56b253bc160910aedf2f47d8ce658938ca732"; + sha256 = "7b48f18e3ca3aef824f077185dbcf820254d3c8c28b5bd0f0d2d92950025573a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/uz/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/uz/firefox-118.0b7.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; - sha256 = "805f0838c1fc82e3ef03a3501917c33f1a6ec387f3f655750e3d332351648e26"; + sha256 = "fd8be16eac6c1968b28a09b761a2aac1b5372a651b62ad09712f334cd843ab1b"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/vi/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/vi/firefox-118.0b7.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; - sha256 = "661c19c3060f6f24570136a920ab35c0fc8f49c6f82a5699092e6e803a144727"; + sha256 = "787d8594fbdd3b1a50530ef4bc62e0c75c5d0db305ecaa95be0b9e8797bed558"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/xh/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/xh/firefox-118.0b7.tar.bz2"; locale = "xh"; arch = "linux-x86_64"; - sha256 = "1a647232be7f1eeebded132a5af28e3e3473042448c7a2a23e2ca883f5c8751e"; + sha256 = "aaf93061c1e64f44a18f85da8a6b492f8367309e7523b8886fc53c32d868e243"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/zh-CN/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/zh-CN/firefox-118.0b7.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; - sha256 = "c70b65fab3d62843bc77a5fd1554668cf6c76e49e2dbbcf0481bbcc0bf263ac6"; + sha256 = "bdcdc95c1848819594e5bd3547d577469b23ea6a7e81502ba51701d9bccae7f6"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-x86_64/zh-TW/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-x86_64/zh-TW/firefox-118.0b7.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; - sha256 = "c62cef8b756a586bff67fb8a5a62108204e81d4abbbfd2a06808f782c98364dc"; + sha256 = "7dbe3b05d06f475c13d2a42a282f2cdaa9fe34cdcd6d8865face2568a103148f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ach/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ach/firefox-118.0b7.tar.bz2"; locale = "ach"; arch = "linux-i686"; - sha256 = "5c90d0d750f67400806b456e7ac7c89db9d3479aacde7932393383b43ebd4eff"; + sha256 = "8f0bf83e63a419c8bed0ee8d072da47351b7343015c0be543ef2d86db13a5be7"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/af/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/af/firefox-118.0b7.tar.bz2"; locale = "af"; arch = "linux-i686"; - sha256 = "c26d852598dd754499d2b176811c7eb938e87a56700df35abc253fda7b0de957"; + sha256 = "cee8c6ab72ad2f21dde5b29bad562e9633d419ce6924617ae4df348d97a6fe6f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/an/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/an/firefox-118.0b7.tar.bz2"; locale = "an"; arch = "linux-i686"; - sha256 = "c9cc966e8a91a9fa8a76734d083b0a64baeee5af5041f634b946556eeeeade13"; + sha256 = "acf491172cd3fa0a23a84dec9064a2484bbf8bf20c7d98283d455185e5865360"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ar/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ar/firefox-118.0b7.tar.bz2"; locale = "ar"; arch = "linux-i686"; - sha256 = "cd59aa66c3f6fe037a462d3b481d34c6abf2208022eda66924fa28d86e5bbb3f"; + sha256 = "4d22e3f7c91a4f49cb8549784a92775922032c9371c737b460bef828d3953ea5"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ast/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ast/firefox-118.0b7.tar.bz2"; locale = "ast"; arch = "linux-i686"; - sha256 = "3b33848ee91074b8a5c3cf71a6fc78a9ebcf4aa2338b9d07c6b32dc9a0b1585f"; + sha256 = "ed0e30a41ca74ddd5bdbca9afb7d8d8f56d88899aa572ea86e41ee9d2bff0fa5"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/az/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/az/firefox-118.0b7.tar.bz2"; locale = "az"; arch = "linux-i686"; - sha256 = "e3f0765944bc564150b6d21ca0adb797c48fe738f35facc3758723f63fc80e6a"; + sha256 = "5c5a2b0a8cba6dabe1a653351659d3b693234534588e447593a795eba2bef701"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/be/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/be/firefox-118.0b7.tar.bz2"; locale = "be"; arch = "linux-i686"; - sha256 = "c1fa404a1c9136592459f040b63925e2f1248e1c26a6cb589201db7798808af5"; + sha256 = "61bf3424e44bc6671bc1d9c84084536539287a0f6384b9d8b93b307ac9675773"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/bg/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/bg/firefox-118.0b7.tar.bz2"; locale = "bg"; arch = "linux-i686"; - sha256 = "e18025153cdde0fa2b3463324da62d3369a209b1daa851a16b082842a5ef3050"; + sha256 = "7a6c2319c8f808125b356411036268e4d3e07057f71ac12f3c8a31479c0e4eab"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/bn/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/bn/firefox-118.0b7.tar.bz2"; locale = "bn"; arch = "linux-i686"; - sha256 = "1eaf39ce865bb9d8c05a5b93cb69326fc8c5911d38b36f11c4357cec094f810a"; + sha256 = "79a061ad747d3c22d2ca6be8704d803119a15435bdcab5ef27c5c02892787487"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/br/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/br/firefox-118.0b7.tar.bz2"; locale = "br"; arch = "linux-i686"; - sha256 = "693b6133f478f26822c4045dcb601ec2785fa8b3081ccdce915b5b20a7bfa138"; + sha256 = "72574d1c512186e9671b055e15ae124a4b1a42551d5f7182b382c3a333143483"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/bs/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/bs/firefox-118.0b7.tar.bz2"; locale = "bs"; arch = "linux-i686"; - sha256 = "bdf0e7ca85105c45b644b553f638646578ca3fe2266de6c2922e66eb60ad34b4"; + sha256 = "6022b703e87f4ff9f1618e3dcb28f116f73e93e9b32de2f50860990e0a726bef"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ca-valencia/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ca-valencia/firefox-118.0b7.tar.bz2"; locale = "ca-valencia"; arch = "linux-i686"; - sha256 = "9747432587571854fdf569ed3fa85af07ea4fa261d6875f5111fffb7b5ff91a4"; + sha256 = "c658f016edc5f846f280b53647116e40d4dc8dcbae2c006b3ec77a75300d8158"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ca/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ca/firefox-118.0b7.tar.bz2"; locale = "ca"; arch = "linux-i686"; - sha256 = "f0a3da2a340456120d7b2963c66e4b2b67c015cb686c2ce29c4accb1b78ee0fd"; + sha256 = "5310b514a5047f4f0ba7296b6a41c74ba6e64b33dde66d46fb0c77c17bd1a898"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/cak/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/cak/firefox-118.0b7.tar.bz2"; locale = "cak"; arch = "linux-i686"; - sha256 = "5687abecae8d7207a9da2d15f6593214dbf2735388d50507009c37380c34f4e0"; + sha256 = "fcf3b1f91df686192087119ff75a9e0c98fd43be07a3c07e6769ff4a8c9a728b"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/cs/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/cs/firefox-118.0b7.tar.bz2"; locale = "cs"; arch = "linux-i686"; - sha256 = "b85dd85baee3d80392d2d3c41b9c2e59217c41bdea7599fde4009cbb614bf8d2"; + sha256 = "a97a2105016c72ef8c756f321aeffb54d65dce043eba5c6cff0bc3d945022012"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/cy/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/cy/firefox-118.0b7.tar.bz2"; locale = "cy"; arch = "linux-i686"; - sha256 = "c82a87eb07e5b22ea4e04cac6171980f8e9e0bd1173360a5fd460f9c59f97e7c"; + sha256 = "90e2a6544cd0afc49192124590d4e652aeaf69c9d97abc43b5cb97adf9235166"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/da/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/da/firefox-118.0b7.tar.bz2"; locale = "da"; arch = "linux-i686"; - sha256 = "0bcedc1a63eb491d3c145e345bdf9739eb89f5a379da3bc6bd0e0fd713def755"; + sha256 = "3a1d11e555e1eca39fcd7d424f74d2f2f5e2f939570fc65edc502fc73860f9a7"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/de/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/de/firefox-118.0b7.tar.bz2"; locale = "de"; arch = "linux-i686"; - sha256 = "84f5d9125c8aa42236205a27ccc3ecd8bc2a5986bc2d167e7d83e575cc8994b1"; + sha256 = "a41181dbd72a5478d7853ef648fbde0ae221860fd012625491f7f88e4963c50f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/dsb/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/dsb/firefox-118.0b7.tar.bz2"; locale = "dsb"; arch = "linux-i686"; - sha256 = "de08ac4f7d33dff1e0f3df7004523599fda74758dd6ff5da1e26db6729d3594e"; + sha256 = "dbc5d17e8b48f0813ea6e03dfdfb590f7bf9c081191b2a376dec8887afb3b9e0"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/el/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/el/firefox-118.0b7.tar.bz2"; locale = "el"; arch = "linux-i686"; - sha256 = "89044e11cfa34cf638ef377349c1a5f8fb2f599255b28afa534694579bffc3d3"; + sha256 = "bd40bb516861c0d3638bfb7f74968f0bd132582bb4a2c9caca6f456e3ed1aa1a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/en-CA/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/en-CA/firefox-118.0b7.tar.bz2"; locale = "en-CA"; arch = "linux-i686"; - sha256 = "de1ce1469644abfaddbe6cc70eefd4dc2cb4233eea4607d812de0a98f4f8528a"; + sha256 = "c5be2a5a180a86e6decb039f9ec9805a871df2e7ed4208f222de9cc25d95d043"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/en-GB/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/en-GB/firefox-118.0b7.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; - sha256 = "7fdee1e5c4890c696f096af8e83e7b68c762e82bca1d712a91f2ed1f966a26e0"; + sha256 = "49553f8f0e12d9fc21fa4772804e97a76449f7d340d09a3242b7dc095d6a5832"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/en-US/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/en-US/firefox-118.0b7.tar.bz2"; locale = "en-US"; arch = "linux-i686"; - sha256 = "58d1d632b15533e2678c213b4177903cefbf3e6e0d8a82dfad68eb561a921ab8"; + sha256 = "3b0464248546834209c6c5d0156fc7c124860a0642da1d92e550a6075cc8e650"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/eo/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/eo/firefox-118.0b7.tar.bz2"; locale = "eo"; arch = "linux-i686"; - sha256 = "86f353aaf6ab03455797f937ac1b4d9c14bc91f504981a91e6adc665b4821c77"; + sha256 = "5d85c7033b9318f6069f98c22c364c161075278b0728aff3f853762709671cc2"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/es-AR/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/es-AR/firefox-118.0b7.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; - sha256 = "47b0cd3b502431647e42ad9f73734110c0077149a6cd4c3c3f24bc5ac46b0339"; + sha256 = "171140b394f30d53b28954c84ac0ea3fcda4efdb578f08e497245faedce7d2fb"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/es-CL/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/es-CL/firefox-118.0b7.tar.bz2"; locale = "es-CL"; arch = "linux-i686"; - sha256 = "625b765e79767e293a8096981e644cf7b12273b9e7ec89b00e13ad9559868b45"; + sha256 = "e5109568a762de7d63569d675dedfad11482c1af39f8baa9a279973804436116"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/es-ES/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/es-ES/firefox-118.0b7.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; - sha256 = "eb47eb4796d5e7e2c08219663734374803e806e2426d9beae51da1e9523241a4"; + sha256 = "c828143f1c67eb422329340a905bf418d8fce36e30580a2ecc810200de004fbd"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/es-MX/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/es-MX/firefox-118.0b7.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; - sha256 = "2d3d709781e59e33f2f357c66acafb202425b1f385b3f96350eaf0d10e8b5b73"; + sha256 = "0a0e374129d66c199321b07e9d8647da1d3332e7ab95a8f9fcf8004b8fc3f5a5"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/et/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/et/firefox-118.0b7.tar.bz2"; locale = "et"; arch = "linux-i686"; - sha256 = "37293408da739ab126456554c2b1f5f4592d54ac908df4a5eecdb21e3e76da24"; + sha256 = "1b9b726b892f7d5a92d6ec4de5dca3873ecdc7bcbd9e634a52c152944b370c3e"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/eu/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/eu/firefox-118.0b7.tar.bz2"; locale = "eu"; arch = "linux-i686"; - sha256 = "f7ec6720efb3684939ab5294b51273c1061cea70758bdeeccf9f7a5897ec49ac"; + sha256 = "e480a8524e6ebaaadc117de3d1a60208c4e5a77f860650e366c98c9df3e89345"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/fa/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/fa/firefox-118.0b7.tar.bz2"; locale = "fa"; arch = "linux-i686"; - sha256 = "366046846a3db12236f12beb9d3e65b7eb38120aace78b97af612ec77f126e6b"; + sha256 = "6e4d9eb29d7745b3a8217483c5a02b0ecfea89088c4a358574a0918d667d7e71"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ff/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ff/firefox-118.0b7.tar.bz2"; locale = "ff"; arch = "linux-i686"; - sha256 = "e79eef353f33602950d138045646678517e2712fff3d4f035504377b4abb2b01"; + sha256 = "c1bf681ba47a5ce93596364e285f659a84153d880dde59528e304005e11a7c18"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/fi/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/fi/firefox-118.0b7.tar.bz2"; locale = "fi"; arch = "linux-i686"; - sha256 = "89c006d566570c7f813c9bb95851a42df34145f50141811664935ab12386ad76"; + sha256 = "12ca7d5dea586ab75be655b19d9e70af759e1696fc9c8f47cc24c031060f27fb"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/fr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/fr/firefox-118.0b7.tar.bz2"; locale = "fr"; arch = "linux-i686"; - sha256 = "12ad529016b98695aa67dce231e0241e90afdf181a37fe0c09bc7e8087961191"; + sha256 = "84e9fcd7b14cb71e05924fc6d218cb3ea7fb99d60589c8f74de8b3133e947607"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/fur/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/fur/firefox-118.0b7.tar.bz2"; locale = "fur"; arch = "linux-i686"; - sha256 = "8f5bd635d630b7498ee2048f3bd3b856db8170eba2f39325615704b082dbdd2c"; + sha256 = "9dd5189d11a1fc7fbea7806f61ac0516d9603b324e6107ecc123e377d0a5d72e"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/fy-NL/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/fy-NL/firefox-118.0b7.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; - sha256 = "e8e3a85d5264baac074e03b6fd4eaf193d0a8760be516e832ee96bdeace69b63"; + sha256 = "7a1398de7189ed0377237c0b59cd49e6a74724d6a59d7bbe725fbfb698e718c7"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ga-IE/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ga-IE/firefox-118.0b7.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; - sha256 = "010ad07be68bd6e248f2175960d464b4afb9435ed292926913e0669cf4acea83"; + sha256 = "5299ad001b12338f06c7b283b82d12099b7bb779e8a36d6b6d01933a14899ca1"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/gd/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/gd/firefox-118.0b7.tar.bz2"; locale = "gd"; arch = "linux-i686"; - sha256 = "4fb60fc01d44a1f5d07dc605a3e2f509d6e04a52ae60dcda4204510a05a0e7db"; + sha256 = "f8d14859bfd28b837457bbe0f04a6625d67b087e7d7167d24c37d816df5998cf"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/gl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/gl/firefox-118.0b7.tar.bz2"; locale = "gl"; arch = "linux-i686"; - sha256 = "30c2748a1a1a9c0d695f9731b2e0b88656753917ff21f0989e5eacf7f16a50a4"; + sha256 = "5d0ba4487832b885013dea9649c3f364376e2885c1a8894e94fce071885eccae"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/gn/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/gn/firefox-118.0b7.tar.bz2"; locale = "gn"; arch = "linux-i686"; - sha256 = "b357efa2c9b2ca390c07874f55e658fcf590195a3d8d213763bc41118d808a73"; + sha256 = "9d8343f108b3dd4574b0f2c037f38b89da0101e64c4839a5b780b78a66a49afb"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/gu-IN/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/gu-IN/firefox-118.0b7.tar.bz2"; locale = "gu-IN"; arch = "linux-i686"; - sha256 = "94b57adcf74e60b9504957dc79491438d05db42665a9267970a62b527c31daef"; + sha256 = "fad3fde6ed19a666c140d30f1c0cd9b3dc0506cdc8d368b5568147fb5a0488a9"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/he/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/he/firefox-118.0b7.tar.bz2"; locale = "he"; arch = "linux-i686"; - sha256 = "5f857d71ea34eded7046d05e8925c70ff78c3bbd63f95a3dc57f553ff7a2a327"; + sha256 = "ecd9d157c0de8595d728cb16c17e666a386e343a2b090ac7f7ebf1fc8c7edf3a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/hi-IN/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/hi-IN/firefox-118.0b7.tar.bz2"; locale = "hi-IN"; arch = "linux-i686"; - sha256 = "f17dfc782b4c466b9f6e07723f47a594f6e33dedf0f67ca86974c8072a15afe2"; + sha256 = "f4a06610af8fe577e6805af2b7137df0537b652a0206c3aaeb17e5f95aa10778"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/hr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/hr/firefox-118.0b7.tar.bz2"; locale = "hr"; arch = "linux-i686"; - sha256 = "b769235d59d395382738c0ca1a59a3ed226ab188bc282b3559cd02927a789560"; + sha256 = "4fd6a69a70c970462f95867da9320555b05143820276fd169aab4d7e7a1ade1a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/hsb/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/hsb/firefox-118.0b7.tar.bz2"; locale = "hsb"; arch = "linux-i686"; - sha256 = "6ac11eddcf3d07769655991329de80c35a3c055d817eb8a40ff9d93f144c400c"; + sha256 = "3d5563af77c23d73428cc946edc64293c22e50217b36af4be403c86516c77c6b"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/hu/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/hu/firefox-118.0b7.tar.bz2"; locale = "hu"; arch = "linux-i686"; - sha256 = "c7e9e814e2c654a12e603678b4f122fc9c527397b2ef92195ec5d1aa685a2105"; + sha256 = "8db603b623d3a0ddec27aba053e216cc1b8e0099f90fe847ce7983f25ffbf88a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/hy-AM/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/hy-AM/firefox-118.0b7.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; - sha256 = "160c24b4f6c70f6b2734f60aaa9a3b5e6e7c7b027dccdd07b26034a8ba6f416d"; + sha256 = "d29bb7e51635f1fc3ebb30bf54668bc38c7ff2871755b933ba4bda3444bbad11"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ia/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ia/firefox-118.0b7.tar.bz2"; locale = "ia"; arch = "linux-i686"; - sha256 = "deb0385dc55ca21299d18d962cfcd9f8f080515ef6cef9fd49136be9abd980c8"; + sha256 = "17d976e7cc746187e61ffba1d103e9c86fda529c4e93db047a4a6130253fc540"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/id/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/id/firefox-118.0b7.tar.bz2"; locale = "id"; arch = "linux-i686"; - sha256 = "c55427ada9fed0527473332e0453651bc95b9c3ff01f80cddc60db494f15c327"; + sha256 = "94ca91cf7f2cc2fcdbaaa32967a3c59ac886c7d1cd85da09f1ada15d44093eb7"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/is/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/is/firefox-118.0b7.tar.bz2"; locale = "is"; arch = "linux-i686"; - sha256 = "35c26425b469176ea82d396affef4fe01a6f0ca83ed0da06805adcb08c8224b5"; + sha256 = "ae2e3a6a571111eba79cc4c7e9e233c4c88cfdfd5dafabe97b2f15293f4045d3"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/it/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/it/firefox-118.0b7.tar.bz2"; locale = "it"; arch = "linux-i686"; - sha256 = "8285fe9ed2bf62285dbfd73b60017121d30de703537b1cac628c6ac87bfd6bd3"; + sha256 = "5f7755f535b02aa19310d669a4bd7501060d765f9b9709c8cdeaf0eecc5fed0e"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ja/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ja/firefox-118.0b7.tar.bz2"; locale = "ja"; arch = "linux-i686"; - sha256 = "96577f9739f088a578f3bf2ed11081d934af0fef10e418f1bbbb1d0f5dafb6a6"; + sha256 = "6108396998632ca17d07c6a3682e12ec000e058453a85cc925a476b3c97effcf"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ka/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ka/firefox-118.0b7.tar.bz2"; locale = "ka"; arch = "linux-i686"; - sha256 = "d2379e384dc20e016fce79f597536f07dc2a9580a07541b7cf3e90a543450bbb"; + sha256 = "feffdd08f43e54df69fd2a449f0cf9c3c760c783132afd67cfb2362716714b2c"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/kab/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/kab/firefox-118.0b7.tar.bz2"; locale = "kab"; arch = "linux-i686"; - sha256 = "58a599362176a82081236256a3b9c696d400b7360593b8bf12c8d6f577ee283a"; + sha256 = "1064382ea33189da63fc5266a3e137c65e920f1790416dcf9ac25134f01c6031"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/kk/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/kk/firefox-118.0b7.tar.bz2"; locale = "kk"; arch = "linux-i686"; - sha256 = "a6b316a0574499525e0a1f8f555b5d6b0e6914eb36a1d5c5bb9a509ec7b01379"; + sha256 = "2a8a3f0590225d08f62a586444ff04fa845df295ce4b00badfbe384269d8af74"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/km/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/km/firefox-118.0b7.tar.bz2"; locale = "km"; arch = "linux-i686"; - sha256 = "4a0c1e0c84166bf9e0e9ae51c36d80f3d279d0782b2e039945b1b1107c7b1cba"; + sha256 = "2110d9f3abd88d003e3a282bc16a0625831754679d85d17884397b4bb35e4736"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/kn/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/kn/firefox-118.0b7.tar.bz2"; locale = "kn"; arch = "linux-i686"; - sha256 = "aa515bd95233fb91fa83b7b2bb55c08692be440e499793122152d574eaa656e7"; + sha256 = "e693ef17e93c1a93d2de62b95a91429d4995beacddc814324265b9e4f03ace5d"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ko/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ko/firefox-118.0b7.tar.bz2"; locale = "ko"; arch = "linux-i686"; - sha256 = "b9c055253b93adf7f88d47e91a680e34b32c51dcf49b3be675be085876d90adb"; + sha256 = "0a15daa9a92dbbc41c26fdf9ee2d16ea3c172059d1279aa503cf15d827be3035"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/lij/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/lij/firefox-118.0b7.tar.bz2"; locale = "lij"; arch = "linux-i686"; - sha256 = "6b26a71a8dedea573eaccf3a5c12a8c690a8845f7c0b56e252c20fafea45c04b"; + sha256 = "a17b17a01b481eca2791be69c9fd36805579a03acf4c81bb1b9c487a521997d7"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/lt/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/lt/firefox-118.0b7.tar.bz2"; locale = "lt"; arch = "linux-i686"; - sha256 = "35f54ba4ebb1a10861ceb7a1db3e7aa6075342827f28533859bca3747fb0551c"; + sha256 = "3eb0dbf192e1794eec93705411fff05bb6750c6b3997733e5b1233166fe5f81d"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/lv/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/lv/firefox-118.0b7.tar.bz2"; locale = "lv"; arch = "linux-i686"; - sha256 = "4643aa3a4b3bc74d3e0408995935c98fe634bf670cbe99e6ae9c9700a26bd427"; + sha256 = "11142bce2c3ee62564b6912acc5a752170a5d15f95b57f3f8ce4d0b03cdfbc39"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/mk/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/mk/firefox-118.0b7.tar.bz2"; locale = "mk"; arch = "linux-i686"; - sha256 = "bb8331098d6e06366e1166bda8a089d134e8a11486960c58ac727cf198618299"; + sha256 = "0673029c2f79a1fa9a8924bab670f01e70b9874fc5277676b9e3aa7aa4317b30"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/mr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/mr/firefox-118.0b7.tar.bz2"; locale = "mr"; arch = "linux-i686"; - sha256 = "a4a68222f139b68bf31a8841baa458ea7d97feea5f80afaa14e56d62315e1ff5"; + sha256 = "7bd30775280530d16ca4a72c36e4b22c0dd2a290af1e005f64f1a09c7e3aad8b"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ms/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ms/firefox-118.0b7.tar.bz2"; locale = "ms"; arch = "linux-i686"; - sha256 = "a432772632fbbdfe931cf0643d54623e9931be79b222f59b95edd5985c76a961"; + sha256 = "faf9e70e5db3bb57b996767ad0c604bfa8f01bfc898c73a24eb14f9b91f8d763"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/my/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/my/firefox-118.0b7.tar.bz2"; locale = "my"; arch = "linux-i686"; - sha256 = "77544b859b002853e0ff63800d5f814b3c4197c8df28c2043f927befbd9f7b1c"; + sha256 = "89dfb392d236b25f7f654915a58a60a1b4d5c6528bb1aa15acd8eb6aeeea204f"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/nb-NO/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/nb-NO/firefox-118.0b7.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; - sha256 = "1dd7b77253f5ec1f4b0b6df962066d592aeff3748f4d31893fa63d11f69854ff"; + sha256 = "5cd920a199628568e5f89957f36862dd675844ef3e49098b90edb3b5a33759e2"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ne-NP/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ne-NP/firefox-118.0b7.tar.bz2"; locale = "ne-NP"; arch = "linux-i686"; - sha256 = "d81107dc42a31cdd2f49eb6b7e71a81da52eeed5ee95a845e845f749186eadd3"; + sha256 = "d86fa39aa8df975836cde229e4ffbaf27bb3bf32a80125c823fced889268207a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/nl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/nl/firefox-118.0b7.tar.bz2"; locale = "nl"; arch = "linux-i686"; - sha256 = "192a5483786f909f37d7fb3439e732fccfb15d8e648494412c337711bc86edbb"; + sha256 = "085275fda30e08b38d6916a697d16bae261fc2b2d60503e5d5d28f67037c7365"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/nn-NO/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/nn-NO/firefox-118.0b7.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; - sha256 = "270bced4faeb668641a3a2167b97a9c85ca306ca6de118e85a690ea9a964d4cc"; + sha256 = "f6a42642f05cb76db30985699f85a8d9694ccda9111fb3b39071e7a3df3d7109"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/oc/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/oc/firefox-118.0b7.tar.bz2"; locale = "oc"; arch = "linux-i686"; - sha256 = "3d923f09900ae889254cd512bb4805716c90ea8c3c6c084fb8519a31180e44d6"; + sha256 = "e565ef61f42880aa74b69b30205659bd62107883acfaa766a09c1159e8f4c7d5"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/pa-IN/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/pa-IN/firefox-118.0b7.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; - sha256 = "68bb169e4a79614ae8b4bb7e6cb2c1e06261b45c74b8c18ad85c51aef00dea8d"; + sha256 = "cf4ec497ca0b652f5ffa20d99d9b683a692bfe216d0cc149712847008866a1ff"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/pl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/pl/firefox-118.0b7.tar.bz2"; locale = "pl"; arch = "linux-i686"; - sha256 = "553c21f022f59e4b29d4049bb47fc4366a2608e3af2da9ebbd7823c10688d949"; + sha256 = "b404312d5739d2890fc8cab024f179425a9bdbd8282b1967e11f2aa53d4108b3"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/pt-BR/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/pt-BR/firefox-118.0b7.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; - sha256 = "4390eb3bb00c7cfdaa74868caabd7098678e01e650a2e01b98d14eb2f6fd2672"; + sha256 = "283fa4854695dc4fa15c6978b4a67d6a46537fb7f55ad0d6c6aaa9f18cb4425d"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/pt-PT/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/pt-PT/firefox-118.0b7.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; - sha256 = "c827a674d6e90fe4c607c320bd45aba0e01f8834be8c0d1bb04d6f188dea839c"; + sha256 = "d4b7785471fc23ab98238dc54400824a9028b5d324db5f7f2cec1cf9c15a2df3"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/rm/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/rm/firefox-118.0b7.tar.bz2"; locale = "rm"; arch = "linux-i686"; - sha256 = "2fdfbd2c213e3b42757b5c6ba52f94b14b7e54433ac4d69143b9fc5b45c9fc11"; + sha256 = "3f6dacda10276174390f7f3abaf0ee339e02e3ce5a4ed5da40955eb8880ceca3"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ro/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ro/firefox-118.0b7.tar.bz2"; locale = "ro"; arch = "linux-i686"; - sha256 = "b8593278a414a159a594eff6752d6ad19a945229538f1f0760f0bb5ffbc47ef0"; + sha256 = "3e2fc1208c1da1901a30c2796e6ddacea6d54cb5ce3e1b8800743d65d07e7390"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ru/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ru/firefox-118.0b7.tar.bz2"; locale = "ru"; arch = "linux-i686"; - sha256 = "91ac0d575d69bcb5f58f5cf1c2353d37434272c588443d63498ad823ad149ef9"; + sha256 = "8e338dd7062f472aeda5f6611dd47149b62006fd4b27b8193c1ec2cad27caec7"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/sc/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/sc/firefox-118.0b7.tar.bz2"; locale = "sc"; arch = "linux-i686"; - sha256 = "72b10e52652153215373b27e20192cee2a5e11db7492effb6805e55e36b1bfe2"; + sha256 = "5f9361a0838717154820bc8879383998768e0c4b79a6be844df1c51e152fad79"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/sco/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/sco/firefox-118.0b7.tar.bz2"; locale = "sco"; arch = "linux-i686"; - sha256 = "2cce0e614f7c07396c579a6eb1020bc100795ed2ef3927f984296e316fdab87b"; + sha256 = "657fb3b29d4f152645c05358211e6633b0157e3ec1a42d74d7315ae7dabc93d7"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/si/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/si/firefox-118.0b7.tar.bz2"; locale = "si"; arch = "linux-i686"; - sha256 = "49eabec274b3eb580dfa313039b32f82ed2bedc00f2c664b671eb81a72de1a60"; + sha256 = "7e3881d270c75de0dec6422c503b8e487b3be8a515295b319b899aa40983bac6"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/sk/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/sk/firefox-118.0b7.tar.bz2"; locale = "sk"; arch = "linux-i686"; - sha256 = "76d89b309e48b09d7d2002154d09e6556a75269a358478baf858fd13a1014103"; + sha256 = "81b0e900cc1264c33121bca1f8cfcb0ec450e79cf714b0b9463908eee278fc5e"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/sl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/sl/firefox-118.0b7.tar.bz2"; locale = "sl"; arch = "linux-i686"; - sha256 = "09c6896cedc90f2c14d04bfb8febf5d3a7c6138382271e66ce0747c540f5cd5c"; + sha256 = "fbc4ff8940350b2c05573bb40113fb2dc69ab389800ffd952d149d826dd38bfe"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/son/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/son/firefox-118.0b7.tar.bz2"; locale = "son"; arch = "linux-i686"; - sha256 = "eece37277fe17989133ee8ae720134944e5abea01334bc3f83630bd718680996"; + sha256 = "a8368270c1d738c4b39036f141706836f60ffabebd5dd88a4c1bdec1edd139e5"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/sq/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/sq/firefox-118.0b7.tar.bz2"; locale = "sq"; arch = "linux-i686"; - sha256 = "6370928c6c3b6a041a1ae471ec5d4c8c1667c098b17c412f9e839419494126d7"; + sha256 = "6b04b0b4e0a1dd20619270082f328f844dab73d24354d7ebdd1c34f91cc03234"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/sr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/sr/firefox-118.0b7.tar.bz2"; locale = "sr"; arch = "linux-i686"; - sha256 = "22352689f78718d7d83fda53bc674542136d09df0177b2737d086a274236e73f"; + sha256 = "5143ff6e451e6310ea1f4e6662a348bf701494c0637e6bcc2ffd76ee29b5dd65"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/sv-SE/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/sv-SE/firefox-118.0b7.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; - sha256 = "ef740b6453424c5d81d0c3819542dfe6510d9a7f2936d3297a01652e1aeecad7"; + sha256 = "ccbed1769cfef251aa069f2a737b9c7e1243d77d6f7aa31bd10ccdbf387f56a8"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/szl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/szl/firefox-118.0b7.tar.bz2"; locale = "szl"; arch = "linux-i686"; - sha256 = "a7109f1df7da2cd8e9c6396ec9041c3462b36463edfccaecb3a3988abae6811e"; + sha256 = "18abb72373e3299f1346ef2814267be81b0173c1dde15130072fc8d57307d12c"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ta/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ta/firefox-118.0b7.tar.bz2"; locale = "ta"; arch = "linux-i686"; - sha256 = "9a48cc5d627bd5b95bfc5fa08612d1c94bce6da4e97068608e85a174199655c6"; + sha256 = "36ce9bc6b36125c0bc66e1927d371f38284430d04bc259429d4884d0ebd2de7a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/te/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/te/firefox-118.0b7.tar.bz2"; locale = "te"; arch = "linux-i686"; - sha256 = "c3ef17c7110fe78026dff63bc54c07fc48d45578360ff52a7833a60e5ad0de90"; + sha256 = "62497be732163fa63f2b2083c7ad85affcad24eb07a209e68803293e86baf2c6"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/tg/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/tg/firefox-118.0b7.tar.bz2"; locale = "tg"; arch = "linux-i686"; - sha256 = "65c2fe6a3ae06e6fdd115bfb1cbc2cb7a3cf6e5ef8861ef84112b54df2bef89e"; + sha256 = "3169f4c4c6834de4c78f430a23eaa21d8748e63eadc357a7da45baf5851dc98b"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/th/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/th/firefox-118.0b7.tar.bz2"; locale = "th"; arch = "linux-i686"; - sha256 = "97e4dac1d57c6a6b7e607289dd1c209accdfbc9dbd9ad51a1db2c7fa62bb61c0"; + sha256 = "eb55b37f5490d09b37d871d8a0894cd14a006faa90bae451ca5e01d424151076"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/tl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/tl/firefox-118.0b7.tar.bz2"; locale = "tl"; arch = "linux-i686"; - sha256 = "1d4ad0df7750760d86d5bba1f0fee32b29bfb53f5ea85cb3b026539e1ca1e407"; + sha256 = "d02506e39da67f9c25206a1cd15df9ec202e66912048c56658a93c293fc8461b"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/tr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/tr/firefox-118.0b7.tar.bz2"; locale = "tr"; arch = "linux-i686"; - sha256 = "6c294b1c9a94c3298a858c8e1e4dfe9756ece4a62da6c17fe260ff9535643c66"; + sha256 = "70746104bdf0d3364aa8c1b2706d1893dba09a3f4b61ddc4eeeb153d8093304d"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/trs/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/trs/firefox-118.0b7.tar.bz2"; locale = "trs"; arch = "linux-i686"; - sha256 = "813d3a8960c21ea741e07e09ef5a7ce2884b997cd2792ce99654d7d26fea744c"; + sha256 = "317f6b8b6d6c5bb61fae7ed9243862c2418800f5459b2fa79515fdf6d1bf298a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/uk/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/uk/firefox-118.0b7.tar.bz2"; locale = "uk"; arch = "linux-i686"; - sha256 = "044a7e998a68fafb2b6a405ca9484cd59bf92304e39b5cb743ac28da21951bd4"; + sha256 = "9cbde7254aec1b26876e03142f42fbf8fb30af0fcb5ddb9fa69362b00548bca6"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/ur/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/ur/firefox-118.0b7.tar.bz2"; locale = "ur"; arch = "linux-i686"; - sha256 = "37ce5d2766192b85256440ff9695229600f4c74976be1f9dea2ec58c0325e466"; + sha256 = "ab7de96d231b73c6dfd03f9729df424a960a2a9a7151280f6817c0484fe8c46a"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/uz/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/uz/firefox-118.0b7.tar.bz2"; locale = "uz"; arch = "linux-i686"; - sha256 = "f9914ab518c95bc82844442c023c791f81696dc1da2709a519452d3ece3b7153"; + sha256 = "a108c40647beb9ee78b2094474dee047ca1c726cd8978e8e6834332e2e0d265d"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/vi/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/vi/firefox-118.0b7.tar.bz2"; locale = "vi"; arch = "linux-i686"; - sha256 = "f1ade8da7617109b58abe55385d9ed914a284f7c0418dafb3d8f427c7d0341af"; + sha256 = "091a67704565a30faf3ffa051117f4ee7b2eeae2f10f96323d4ef1043b249cf4"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/xh/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/xh/firefox-118.0b7.tar.bz2"; locale = "xh"; arch = "linux-i686"; - sha256 = "7b4076d6f0c143c0157338060a6b7c0106923f622e3dde365b751a9b6b267d56"; + sha256 = "2ab81a491bb54c7db4cb88b5d570e551f0eee83238cedf5490093c141d0736f5"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/zh-CN/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/zh-CN/firefox-118.0b7.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; - sha256 = "a3c75bf49a0648999eb7ac3b1ce18a8962e30a04a1f41a708e336109f28292dc"; + sha256 = "597dbd8ea1e2825180a5d304cfe2da4b2fe589a2cad0ed397a41af952363ce06"; } - { url = "https://archive.mozilla.org/pub/firefox/releases/117.0b9/linux-i686/zh-TW/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/firefox/releases/118.0b7/linux-i686/zh-TW/firefox-118.0b7.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; - sha256 = "b308d0fb15d417935c08c316f9a52abac322c406453ee3a51b1a2bcda9b3396d"; + sha256 = "5b78bcc6772f1d52c31cba38930c98e6dd5be71a92cd0bb81408a35bd98b77f9"; } ]; } From 97c0e63b42c238be6f7b79a56d8b8d599fa87c90 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 12 Sep 2023 18:24:29 +0200 Subject: [PATCH 175/346] firefox-devedition-bin-unwrapped: 117.0b9 -> 118.0b7 --- .../firefox-bin/devedition_sources.nix | 810 +++++++++--------- 1 file changed, 405 insertions(+), 405 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix index b71073e29537..592956b31b3e 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix @@ -1,1015 +1,1015 @@ { - version = "117.0b9"; + version = "118.0b7"; sources = [ - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ach/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ach/firefox-118.0b7.tar.bz2"; locale = "ach"; arch = "linux-x86_64"; - sha256 = "a05e8d7c4ac2ba7709f86bad79fa2d55fa04c8026f852362a3b88675f8bccf9d"; + sha256 = "bffe259ec02ebcd73cb03f33f2e2a05bbb2cbe17c93ec9dad4d59f49fb0849d9"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/af/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/af/firefox-118.0b7.tar.bz2"; locale = "af"; arch = "linux-x86_64"; - sha256 = "3b1258411512831755c138804cde9c74b94b9e86ca9dfa95cfa51f204e7a5889"; + sha256 = "a3a77dcb1ac033603f1bfaf57f9996aa45845735b0649b2b9c6d2cc6920bf892"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/an/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/an/firefox-118.0b7.tar.bz2"; locale = "an"; arch = "linux-x86_64"; - sha256 = "520e33edb226844fe90acbd6726933764e23af775535434083ac2b7d5bb807b1"; + sha256 = "0084396a59769fea84609e038817724356a36843e519c97d4c8f5349711a65cb"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ar/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ar/firefox-118.0b7.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; - sha256 = "ce37a0cc69e421b497c3c5174326faf59b69830b5ccf9e1d30d0dfdeb8d6aa87"; + sha256 = "e1549a1230c45fc7081abc1122acb23a5d0508fa0512337a2d3fdb2bdbf2e550"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ast/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ast/firefox-118.0b7.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; - sha256 = "7c5418e4ee9316461916b6054d5c5243d99e0aaac14bee6869d792e38087b1df"; + sha256 = "4b758754e7041ed1ef17a3c482638678427a9cabe8f1272e74ece404ab5f9d7d"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/az/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/az/firefox-118.0b7.tar.bz2"; locale = "az"; arch = "linux-x86_64"; - sha256 = "e24a7fc828605c0fdbc95de172cbcb1e829ed24f84b7149cb0f552ae24b5fb47"; + sha256 = "ad848a6c1943cce84da4e52add2b5aa7705ef406b07317760084dfcc6c2ae2ff"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/be/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/be/firefox-118.0b7.tar.bz2"; locale = "be"; arch = "linux-x86_64"; - sha256 = "fa6ba8d88cdc63ae31bbe49edc7a7f25dbe2217e4b62efcf0e2c1dee8707f811"; + sha256 = "69e3035141a8c1654fdc38f4beb392cb927e2d5da3b1ad4f17e693d3d10593b8"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/bg/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/bg/firefox-118.0b7.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; - sha256 = "2fe4352c99cf5986bff999d49791734726b347a7fd2d160a4729ad4902b76f87"; + sha256 = "3e7f6d2f43a0f039827ac87d976c0676ab7a708a5f4b47438478008a5c0503ce"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/bn/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/bn/firefox-118.0b7.tar.bz2"; locale = "bn"; arch = "linux-x86_64"; - sha256 = "a85b8f5c506568dac29dc432b8010f14e5ca2bfdf4808d0687236c00df58345b"; + sha256 = "039ab59cb37a129487382ccd8582c0f86c3570c88ea3445e46033d16a3762c2a"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/br/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/br/firefox-118.0b7.tar.bz2"; locale = "br"; arch = "linux-x86_64"; - sha256 = "a59ae8a5668717889bc337c3baa060e5841b6f50a4ff7e319647efd01eeab53b"; + sha256 = "3258e92a8c7fb91a40daa19aae8daa11ecb9c3f69d764d06efb6e9decf146e92"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/bs/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/bs/firefox-118.0b7.tar.bz2"; locale = "bs"; arch = "linux-x86_64"; - sha256 = "5cdc0c4069414feb436e1bf19a4a22fe88d49efcda59ca0a079e806b6a2027b2"; + sha256 = "a8f1da89124be4aa08f4bbfd02d40eea3104a9f268c33de8d6980ea251bc240a"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ca-valencia/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ca-valencia/firefox-118.0b7.tar.bz2"; locale = "ca-valencia"; arch = "linux-x86_64"; - sha256 = "7bb772c8d07b6b4a835667f5f65b2fc532ae0f2e11852a49b8722abf908e690e"; + sha256 = "5453b8b8d451445ef766d6faf0274d6b135d64be0b8e0259975302d5456e6988"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ca/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ca/firefox-118.0b7.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; - sha256 = "fe3c2ec58d4c8da121345cdd7d4f84551b07e3e61938c186162e311760945537"; + sha256 = "a78ffe3524d4660ac9e668f17d287410f764e5ebc3d0d09d814831746cbc6c1e"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/cak/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/cak/firefox-118.0b7.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; - sha256 = "106371eb4fa550a65e9f0abf40d33b3020b9b6062e236cb5d6b8be1e33275e91"; + sha256 = "1f2f5a97b5c3c6688e6873229cef7d177ee5f67e84eab62e2ec9d6f2c8df5a89"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/cs/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/cs/firefox-118.0b7.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; - sha256 = "96650d5e0ec7dd19a10af6652801575e96cf257efbe666500de651b63c4dae04"; + sha256 = "6e1dad1f167557bc4cdff4528da5336b76f994049583122f7fa3317f6be74103"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/cy/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/cy/firefox-118.0b7.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; - sha256 = "4351e6f0b4aad524e7faa72c0c416d0385728f0d740aab9e1c4297579f7fe008"; + sha256 = "8c62f04e61381c903e17427afad1b99f5444ce96ca5b2abf62dd5b6b5f3ade79"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/da/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/da/firefox-118.0b7.tar.bz2"; locale = "da"; arch = "linux-x86_64"; - sha256 = "517091c000e25dec2a808f8dfacfc292d7371c1ba2e528d555ea8a70bcad6355"; + sha256 = "6cc46fa3cbd9f90338ec17a597b7f0e26a3959b4cf2c9f3d00e5c9814cc006f6"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/de/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/de/firefox-118.0b7.tar.bz2"; locale = "de"; arch = "linux-x86_64"; - sha256 = "4c1cefaae4ef0bd242914dd0082b45f28051d78569b46fadff22af8b6870b046"; + sha256 = "3428a9fd65bf7819c11592d1426e44fd011d90dcb673354f747fe96948717797"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/dsb/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/dsb/firefox-118.0b7.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; - sha256 = "0a72c2e1f2e9e5855994fa258f277608c71800cd2f69dfeed364ecbe32c0897f"; + sha256 = "392abb42a7e61e2cd52ab3ba9d517f4e92f68a29df34ba400d12141a75a48a1c"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/el/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/el/firefox-118.0b7.tar.bz2"; locale = "el"; arch = "linux-x86_64"; - sha256 = "3e7e9d2b85067bcc67942888de5e86d63ada60e4fd0fe913bde1a33f7674b5f0"; + sha256 = "5e275168c88bfc4f73d06d046fe8c93f131340147f15422f8ac9a2ae2b04c45b"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/en-CA/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/en-CA/firefox-118.0b7.tar.bz2"; locale = "en-CA"; arch = "linux-x86_64"; - sha256 = "08b8f21d3294b5d96f789e1d028d7ca60f1270f3fc4b6b388e1cdb18d24e7746"; + sha256 = "7ac75754580ab171efab99b03a8de187f88d062829b9906432db7b34ba63cbf8"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/en-GB/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/en-GB/firefox-118.0b7.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; - sha256 = "274bad3906d5bdcd11a4680bdbc4148c04d804391b800c7441f5887e994e6d32"; + sha256 = "079956fd83c6ef2e4b9144593d72f9c0ed3e8d7c70a4090ad7cd8ba767b0c7d4"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/en-US/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/en-US/firefox-118.0b7.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; - sha256 = "d0ba03601f16c6349f991354f69988e20fc0b0036d642b317d3a7902b3315903"; + sha256 = "f19d6ecb9b84d5c30976408393d5517547301f58ee1b5a8aeb0b969db8cf83a1"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/eo/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/eo/firefox-118.0b7.tar.bz2"; locale = "eo"; arch = "linux-x86_64"; - sha256 = "adc182390ad0dde83460d2d5376ed2c66dfb961173b17667893c1847b064f353"; + sha256 = "84a0c01b543e4c5c6531e01713dfe26973f0b85051f58eb89dfa30a3612b3d01"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/es-AR/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/es-AR/firefox-118.0b7.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; - sha256 = "fe57b4abd1c8846b718a4be9dd8df54c77497583d8de94c9634cc2a244910f70"; + sha256 = "0c35a85eed2029f4384e280170f858f3f2bcdbf2e19e772e053d8d03acd36ff6"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/es-CL/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/es-CL/firefox-118.0b7.tar.bz2"; locale = "es-CL"; arch = "linux-x86_64"; - sha256 = "8b5aedb7fd2133d9d7febc0db5139e796d7fc1f3b9d3e6c9cba8dd8bb4f0eed5"; + sha256 = "678917a730a80dfb98215146cc27e28a6a1a058c8274dcbf315917c1f11fb316"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/es-ES/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/es-ES/firefox-118.0b7.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; - sha256 = "1fe3c540d64f7e7f37cc6757b418948b4e61424952622cdd7a963fafc493051a"; + sha256 = "c3921596aba3045c8616bfb9de61afb1e547e9005219716a526291f7c5387cb8"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/es-MX/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/es-MX/firefox-118.0b7.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; - sha256 = "dbc925dbc82c59e9db70d9ef90155b2e133d9fff46a716fd5d4bd5ae4666a000"; + sha256 = "07dc10cc64b2e1c4fc3119d8ddbae3dfa203f1f03659537ea84516044ce45f48"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/et/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/et/firefox-118.0b7.tar.bz2"; locale = "et"; arch = "linux-x86_64"; - sha256 = "a590e5e00a34572784849b24cbff105b4f7ab31e727580038c23b9b48ac803bd"; + sha256 = "5d7e5c5e1a170cd4851af61865d6c9d53fa53ca37eb3bdcd697d94abc5b30d36"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/eu/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/eu/firefox-118.0b7.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; - sha256 = "0464610926f3ca8feab26a72c9cd14baeadc24fe3c90bc965b382b04ae1d5aab"; + sha256 = "bab68930e2affe0d199ad166c981f4b4379127a061aff615bb9d22210de3dcaf"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/fa/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/fa/firefox-118.0b7.tar.bz2"; locale = "fa"; arch = "linux-x86_64"; - sha256 = "24a45e458727f929f00ebab88b9d90264f038059a9ee283f8a346e63c7ff4219"; + sha256 = "ad9890a1ffce8f6fd9646fe792f4c2b73fac74f0f62ded729ca61cecb0beba58"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ff/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ff/firefox-118.0b7.tar.bz2"; locale = "ff"; arch = "linux-x86_64"; - sha256 = "3b6c8ee5bdc770d7ce042cd6c678c8099fd5a7215fbb37b9d1cbe4e7336f89e5"; + sha256 = "d6d746a93a1dd22afbd8b8f0d494cce782791ff3ab9c679d1fd8562892b4717c"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/fi/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/fi/firefox-118.0b7.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; - sha256 = "8e927e605be834728c951a0d30bcd3dd0d58cd1ce91e2264d31a1c7437ac6d86"; + sha256 = "2a4f99747b0ad812e8e03d83693d9978d48602a96f709eb603579757046692e3"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/fr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/fr/firefox-118.0b7.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; - sha256 = "5b00363817f3a85b631abbc6248454c1ec3991da71bec1a48d2e647338f4da4e"; + sha256 = "2630befc8b6132ed4eab14b863cc0fb82befd27d6796a8fe5b0b331e682d8fb1"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/fur/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/fur/firefox-118.0b7.tar.bz2"; locale = "fur"; arch = "linux-x86_64"; - sha256 = "90b067c1eb05862ac6d0695c58ad55f709c30fd957f0676dc06763a94ca84519"; + sha256 = "8b9ac1c405eb852892293c00b3a23ba5c2ad620229e5c24789cad61147cd951f"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/fy-NL/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/fy-NL/firefox-118.0b7.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; - sha256 = "773a0fd6330e56760ce3b52e127dc79498f34c09cbe4333c626207db9cc8c329"; + sha256 = "fa4d2fd2aa403c5432e300b61246296f339163e2562f279407e9b0b3302eb3bb"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ga-IE/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ga-IE/firefox-118.0b7.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; - sha256 = "a6093b940c63d74765654b9d8290e5627814889cc8694267f4e34f506a35d9b1"; + sha256 = "c0007e2711a193ddd00a0f4eaeea44a2b4f8c026096622152d1a34a482faf221"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/gd/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/gd/firefox-118.0b7.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; - sha256 = "a3ec4e217fc22f29945c617278f103fff6291e410f7cd9646a3ab483859a5937"; + sha256 = "ff05b1dd402a14ba18c1da2d3a0180e9585828704654133b76416730f9554382"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/gl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/gl/firefox-118.0b7.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; - sha256 = "a7555e3bf2a6c8cdf4c753064562c850387d63ff5bc1d87ab90d35c777a72db6"; + sha256 = "a7e5ff0e28e448d472cde39135e54529532803b220a628110d0ffc551d0f5c88"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/gn/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/gn/firefox-118.0b7.tar.bz2"; locale = "gn"; arch = "linux-x86_64"; - sha256 = "ad94b64291d210511fc82c9d9bb671eaf71817c507eaddcdc01ace63f9703ead"; + sha256 = "bee3a181cc39405c3a5b64b74ee657f64d1ae1eecaf5819905cadaecd5b9fde9"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/gu-IN/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/gu-IN/firefox-118.0b7.tar.bz2"; locale = "gu-IN"; arch = "linux-x86_64"; - sha256 = "92fea9860c496f56ede9d35f7a8428670a6f1092b888f6f6f6d7a414262d394f"; + sha256 = "19c67ce93792cd1e4d0126680b05444f243f71daf03927f39e1d2e5b9b98d795"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/he/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/he/firefox-118.0b7.tar.bz2"; locale = "he"; arch = "linux-x86_64"; - sha256 = "6fb7841c3e6050e45287497f9b1dc5d9c9bd5846300a1d79fde681d0b0cdeba4"; + sha256 = "11ab5f497b794ece806afa446e57b29fd988e852f3e3492b9034e7e5669f507a"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/hi-IN/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/hi-IN/firefox-118.0b7.tar.bz2"; locale = "hi-IN"; arch = "linux-x86_64"; - sha256 = "b587d4aff15b3fa1e46dce1e683e61b820e64184b6797adfa3a3ca541ee0ad31"; + sha256 = "11ee3bc1a061d0a49fa60ae277ad75e81c2f06d6a7a479a3ee2a2efbf59ae83b"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/hr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/hr/firefox-118.0b7.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; - sha256 = "165b8c1b499de61c71dbc3a009223f780ac7a71bc89d93546aca6f4ccf799c1c"; + sha256 = "95a2438fcbebe1259cf713397937bfe6d2f628af82926be32ad98fb1ecca0545"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/hsb/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/hsb/firefox-118.0b7.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; - sha256 = "28a640fc48ec6c495b41d8279ed78cf9fa559b7b29f5dd205f06b18544833152"; + sha256 = "36be28e7ff0f6d60a3b1c7be03276568a56d4f8fe02733373ed5bb8f45b11ac7"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/hu/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/hu/firefox-118.0b7.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; - sha256 = "cf22e4fc4f6e130832ccf8ad36e63199edf838042aae75a4451c75cb68e89043"; + sha256 = "9891a1aa8e3d7ef46b150c40fbbac6e18b3290d5f94b4b302a57fecfb10b3398"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/hy-AM/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/hy-AM/firefox-118.0b7.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; - sha256 = "921840ca7c725751b02813ab6ef44bab9e48e2b391d7006a5b5f343e9d6c8539"; + sha256 = "778ad472d48ec0f815374f63c738af821efdf14c7f8b5bd7a4dd553be52e7c83"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ia/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ia/firefox-118.0b7.tar.bz2"; locale = "ia"; arch = "linux-x86_64"; - sha256 = "6c3a7e708233d73baf8bd36d10e1115b233042229a05909cc9ddacfb75043d65"; + sha256 = "5dc4f74683e73b56d9c85b55c3a5f83eb9e82850f040b0695be849431d6d50ae"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/id/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/id/firefox-118.0b7.tar.bz2"; locale = "id"; arch = "linux-x86_64"; - sha256 = "c00d83fd3b6eb748973773daa14aafad88d9e684f1b6fe0773be1115b4631dd2"; + sha256 = "5559b1aeaafbda0de8d9fe2d451aa353125e5513dadca9ac4e6988b345f4caa3"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/is/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/is/firefox-118.0b7.tar.bz2"; locale = "is"; arch = "linux-x86_64"; - sha256 = "920627a49392ae31a8ffa0f86358f4f30166a1caaa99668bd42a03c47e645e1c"; + sha256 = "f8a0dc723a238c001c6d5ad689fc211948103542fbfb2df51913a08f1dde8a10"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/it/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/it/firefox-118.0b7.tar.bz2"; locale = "it"; arch = "linux-x86_64"; - sha256 = "e0c9d7fc3f18d16272bc3c395c8562bf9696780f3ec221ecfe6c6ff29fbad6fd"; + sha256 = "fe89ccb370b1f34051f6e16626f8066515611475b0eee8d04a67880f7fcf60ca"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ja/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ja/firefox-118.0b7.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; - sha256 = "71bcc5464de07d8bf87fee95d4f9836dac24d83d8c5b65ab4daa224a70b382ce"; + sha256 = "862ad0d21a699180a0088f28c6fc809b2299ce303a8578b1a2cbdb6bb9d39341"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ka/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ka/firefox-118.0b7.tar.bz2"; locale = "ka"; arch = "linux-x86_64"; - sha256 = "8e871cc321edf8aa24e1a9572b43b17355b68af5b3b29a772bed8945376856bc"; + sha256 = "97e632850dcdcf1b91870e8ebc33c34e1bb4a2bf237f18fbadc2a6b8b343fbd7"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/kab/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/kab/firefox-118.0b7.tar.bz2"; locale = "kab"; arch = "linux-x86_64"; - sha256 = "a98c1916ebf08f2f24778e650b8c58f0018278eb10d9b6aa333274e320dc3fbe"; + sha256 = "7f8e5d63a8ec6a0ef12d38ca0eee1825cc65d71184d1ae04e2ec7e8e27918424"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/kk/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/kk/firefox-118.0b7.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; - sha256 = "9e2b909d7f238c324cb9d3bb36f72228f0741238d4fdb5cc83fe0742bcfe72f7"; + sha256 = "7261bfcc56175ae19546f43fe9ab1af8a073d8f737de21b63a4154acd61d0215"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/km/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/km/firefox-118.0b7.tar.bz2"; locale = "km"; arch = "linux-x86_64"; - sha256 = "5e0a31efe09445cda5c78440aa63c979d4585aa17712f3622c495ba05dae9f42"; + sha256 = "bee098ede3eecd0d4e3f2cdf986ed0308c898e4d26db779749c2498c3473fea3"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/kn/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/kn/firefox-118.0b7.tar.bz2"; locale = "kn"; arch = "linux-x86_64"; - sha256 = "c0dc8e5df23dbf308b128866b8937fdf6788fb61476cdcd84dc898be3d9c9043"; + sha256 = "146ec0fbd0dfdfee163720e68d20d54537485fd0af5e7dd52109dfeb9134242e"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ko/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ko/firefox-118.0b7.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; - sha256 = "cd6f081960c57d76c76729f4d070c5f47eef5a3f73c60f28f63d7ffc5f244686"; + sha256 = "463290f984148c4979386d52ef7d90daa34d253389f60d4ceaca0e015624f9d6"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/lij/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/lij/firefox-118.0b7.tar.bz2"; locale = "lij"; arch = "linux-x86_64"; - sha256 = "8fc6f8bb808a0eec15064c0b3d4b5e8d6b75258fe04dc55a6c3405ae1e78e371"; + sha256 = "f8384752acdbf6a6c1a4addf0b51aaeeaa94a27e3f4259c5767b42511234a87c"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/lt/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/lt/firefox-118.0b7.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; - sha256 = "8852c6317c6b83e0c9a6b0739ca1e6e05fde6a5be71f496218407e2427b6481a"; + sha256 = "1291708184156d282c39ea56817b4d2dd500ef9a35a32efa839ea9cc611e86ae"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/lv/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/lv/firefox-118.0b7.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; - sha256 = "193e5dabd2374bc3364c3b0661d132bdbcdcf3ac7914a2e6cbfdcb715092749f"; + sha256 = "4d680588a0025d49c24930f02c2d5596ab5380c3a474ee29412d2cdaf8ad4b2c"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/mk/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/mk/firefox-118.0b7.tar.bz2"; locale = "mk"; arch = "linux-x86_64"; - sha256 = "e301e7e0cb5e97fad6c6cc5992b70291fec9005bfa37bfd885677c0935672bdd"; + sha256 = "73bf936d8a4b68ad42583f6ad0993814490ffd236b68b9f40b61705e28de6b0d"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/mr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/mr/firefox-118.0b7.tar.bz2"; locale = "mr"; arch = "linux-x86_64"; - sha256 = "7f9816f994b13264c8dfb4819d90f883a3ffd2e55d87bb2341ea47090435f561"; + sha256 = "114814f3c76a254afc10fb1157e68fed75c49c18b1dc2ee5365174749aa042cd"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ms/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ms/firefox-118.0b7.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; - sha256 = "949a5bd903d01dcdfbec4f7b5e674c217b38ab11e4f293fc0e5403e5f2eb580b"; + sha256 = "1687b81ccc409bf785b6196c3836437384a8e8d7e1408230c94fef9b20826a73"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/my/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/my/firefox-118.0b7.tar.bz2"; locale = "my"; arch = "linux-x86_64"; - sha256 = "746cc180733769f0a1d70e39d812658c5754b043a2a3dd71fd7f07dfc542e5e2"; + sha256 = "e17b0aa8a85f9c77d3cbb7adf1e654be269832eee2e38ea92acced3b5721b68c"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/nb-NO/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/nb-NO/firefox-118.0b7.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; - sha256 = "7e4d60c5856e12918245bd3d3e24b792d70ad7f0fb403a4af0e330572efc56cf"; + sha256 = "3607e70e5998b2005296a0fade5178f12f4fd3a8600c3d638823537be4941d60"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ne-NP/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ne-NP/firefox-118.0b7.tar.bz2"; locale = "ne-NP"; arch = "linux-x86_64"; - sha256 = "daa08affd6a94d67ae7ecf49fae4c9ed35d6c167c6192e0b32bf6af7b35e0142"; + sha256 = "0d81a8917a54ddbfe86523d429ac91f41cfcf5e36272fa182df5c95a68175d20"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/nl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/nl/firefox-118.0b7.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; - sha256 = "ae44267233200c9a891ed8dc088acc00391193f1236d4e55e4c1adcb95fcdbfc"; + sha256 = "7bc7fcccc812fbd51fac484781ecae3f66ccb1e69ea58a8a343cb3b1aef69ba1"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/nn-NO/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/nn-NO/firefox-118.0b7.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; - sha256 = "4f6b021503024dcf933fa349ccfea80991a944c63a7974f04c4b291963d89d58"; + sha256 = "2a49dd8f0d9176282218bb257218a685a737dba1f46d6307def47ea1644dadf8"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/oc/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/oc/firefox-118.0b7.tar.bz2"; locale = "oc"; arch = "linux-x86_64"; - sha256 = "3bc6ac2c2425fa800f92abf930427e53a87829db6fd2c48c1dead0dc595991a0"; + sha256 = "49245cba684997eda67c3beec35d232ceec5676d1600c03ebe68fb82834de469"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/pa-IN/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/pa-IN/firefox-118.0b7.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; - sha256 = "f48a937bc0d474bda0ae847e71b268db5b44bbdaff8b5fbfd4ba26b87d0f696c"; + sha256 = "1cf32aa5f4f67b9eb542caa1f766aa20d70ccba4dbcd779e4b52bc8f6dc091df"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/pl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/pl/firefox-118.0b7.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; - sha256 = "b45951ea4392c79e3f1155edab9a25033ad88056b0be8d9abbfade82f6e2c602"; + sha256 = "9ab7c72868141aa407755da27ea2a85b3ff3e03d7cc812ed81139f7a873ce099"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/pt-BR/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/pt-BR/firefox-118.0b7.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; - sha256 = "4ded2fa1e286328ed7fea5df199fa057c43512a6b898a3a1fc1b4e28d68a08ad"; + sha256 = "c71eae58cddaef324a8224545317857c256b991fafb55988b7971d61cdffce70"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/pt-PT/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/pt-PT/firefox-118.0b7.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; - sha256 = "e8e734c42d0bb5b7f9c62397f06297c644abf935c67c8d8018d3b8d6106b7597"; + sha256 = "fad23ca6786117f255e77d0c62b6206f5d814a71d781279f4569e1407088646b"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/rm/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/rm/firefox-118.0b7.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; - sha256 = "97d8965cae380edfb161922bd707f444f88318b4eb2bd5db454ec768e938584b"; + sha256 = "46daa204122c71839f6ca9382f60440367f2913ebc6a922ba37b70d0d14a87f1"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ro/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ro/firefox-118.0b7.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; - sha256 = "4efee22083a84e9cc6a3c1e8d5d6bc4e424b03cbad825a6430cde8470fb71ba7"; + sha256 = "58b694236851a63e8102209a8eaa3875f3e5493fcd0dd6cfe44125ec75c8e6c2"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ru/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ru/firefox-118.0b7.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; - sha256 = "1cc0c130f1ebc14a586043ba4266c0e6883607c6925ac3a9cff242034cc98194"; + sha256 = "df21fd9e11cd3de45701078481c3b864eb934aa191f891a98c5d4cf01793a984"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/sc/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/sc/firefox-118.0b7.tar.bz2"; locale = "sc"; arch = "linux-x86_64"; - sha256 = "ab47fcdea50c2084843e71e1288da5a634265620937b7cbfb37446cc997c7be6"; + sha256 = "1988c3c9590a0c7dc0e61bba6b64b9061188c7eae3a7e6ac199ef7753a779967"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/sco/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/sco/firefox-118.0b7.tar.bz2"; locale = "sco"; arch = "linux-x86_64"; - sha256 = "e69aa7eb524209e09738bd1998942a9e211e3a636d72fceb93ed7f8d611c2c19"; + sha256 = "2a7d77d05e959826b3b3e35cda4fdffa991a7890004c6994cc2484626e94e098"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/si/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/si/firefox-118.0b7.tar.bz2"; locale = "si"; arch = "linux-x86_64"; - sha256 = "fd00b955435fb9db50da8e557d44528ed77649e1e5d01a46371b15d0cc06015b"; + sha256 = "b1ebe8fe269e04741dd475c6108d24bd05b93370f8133c4ac988e9dcce0aed58"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/sk/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/sk/firefox-118.0b7.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; - sha256 = "d3572a09925894a5db8d0e0355eea0f5d7d80486ecbcfb6dbd3428fb3ae108a9"; + sha256 = "acf1e11a33a91f170e2b5428e8c5151b9830a762d4183c3e2d170976706d23b0"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/sl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/sl/firefox-118.0b7.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; - sha256 = "2b13df059fdce5c7703d38860337067ec12bb60de46c17b918544229bad4fb79"; + sha256 = "1d2eecb13627d16fe5a6a52f7f42024dc70c6aa403ec2d9e8d2ffa1229ccf7ed"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/son/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/son/firefox-118.0b7.tar.bz2"; locale = "son"; arch = "linux-x86_64"; - sha256 = "8b138de11e610bafd104388682fecaf1b757fde9f0723cbed221eb13b8a45929"; + sha256 = "13cf3bf391ec9c8fad80fc1f4f91c3982fd765934a93e72183b794f808399289"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/sq/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/sq/firefox-118.0b7.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; - sha256 = "5d3ce0a801f94c895c26db40683c24cd659ef796bdb018abeee4bb8c4651e290"; + sha256 = "2406f8ef9276a8454e6c09061832d4ff6d4d7f079c5dd92f5c3492a9f9c417b7"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/sr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/sr/firefox-118.0b7.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; - sha256 = "50cf4330c28250286356258701ba4c17fa65dd768672e32a2b479d810b0624f6"; + sha256 = "35ca7c519b9dfb6e15dd1b6cdd2dce49abe62fb5d340f385a14d7a71cdb70209"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/sv-SE/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/sv-SE/firefox-118.0b7.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; - sha256 = "15eb734be384c56c79ac0502f2ea5529d3b0e5170097668a21ca275761b6fd07"; + sha256 = "5406b96f9d74ccf54f91301e151735061c47af2c79eed28187f99070b4c03d55"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/szl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/szl/firefox-118.0b7.tar.bz2"; locale = "szl"; arch = "linux-x86_64"; - sha256 = "9b43a26ddc4524df0224c3e223a2d4c5b27bb6851a6ae3999923cd9a4cff8cd2"; + sha256 = "449b773dd5bccd1e303e0d13410590da86615cf3187ebe2052093465a5322ca4"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ta/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ta/firefox-118.0b7.tar.bz2"; locale = "ta"; arch = "linux-x86_64"; - sha256 = "d62f870d8de4087ea2b87568dad650b746a536f53a5bd18c4311f1a38f6d9cae"; + sha256 = "b6c4e60a8b3be55ce52d2f0073ee1b9b614a28bd4a88fcc5a40acb8adcd1e412"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/te/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/te/firefox-118.0b7.tar.bz2"; locale = "te"; arch = "linux-x86_64"; - sha256 = "b51489576b5b6f5f06698d83488f243dba1c57cfa2d0298212daa04fb772aefb"; + sha256 = "a0e27acb8faf3a51bca39fe00d3350a5504f9e60430f6e8d897a7642856ac5ac"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/tg/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/tg/firefox-118.0b7.tar.bz2"; locale = "tg"; arch = "linux-x86_64"; - sha256 = "b21a78eb57e1ff5a794c9ce2f6d0a79c9f652229594c734550896ff12844a5f1"; + sha256 = "c71a6338511dcc8a1d7e8b8d49a9c7f76bd843f8845b79f3b983f4f602c25c38"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/th/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/th/firefox-118.0b7.tar.bz2"; locale = "th"; arch = "linux-x86_64"; - sha256 = "7317578f86feaad2e12c3fa0264ea504f1dffd2e7bee89245262981e4cac9aa3"; + sha256 = "78d22db0dc7f2f22a4a835ed91a5e1f1838ce56fa0534f6fc1b9419f53f6785c"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/tl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/tl/firefox-118.0b7.tar.bz2"; locale = "tl"; arch = "linux-x86_64"; - sha256 = "2196dfc037f028f948169f29d7ef986a6174dc5aadbcfacd215b5544ec9b4322"; + sha256 = "9d33f8f8512d1e12e7ecceccb2297747c6b3689d233829e2a55b7dbbbe5fc62c"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/tr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/tr/firefox-118.0b7.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; - sha256 = "4bfe6c3ca0b935c5b4bd06d2ac036d30442f8a830dd491a50ec543ca9bedb207"; + sha256 = "a938105d7a28786d0d362388f382ae1ff739cfb2f36576af091a684f278f574c"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/trs/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/trs/firefox-118.0b7.tar.bz2"; locale = "trs"; arch = "linux-x86_64"; - sha256 = "3afa72d5a94324667295b95493d017784e8296603721f69c417126be3a8fdfbb"; + sha256 = "af67047db80fcce2faf016543b54ea8494e72e57785378aeba926ba52a4ee6f7"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/uk/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/uk/firefox-118.0b7.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; - sha256 = "36af5b04934df268eb4a081f37e1e331237c0c7c35c897371355cf1d6f026f89"; + sha256 = "d359e7d6fa886268758cf0e06aa9915fa0249446fb6abde154e4bfd048cec689"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/ur/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/ur/firefox-118.0b7.tar.bz2"; locale = "ur"; arch = "linux-x86_64"; - sha256 = "879f300baa247f8b7ea4980e50f8101dcacc7755af58bf432f5b40160095eba8"; + sha256 = "996f33d66d6a81fd4b566830e8f0d175758d1f30cb6bcddd7310815f687da1d6"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/uz/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/uz/firefox-118.0b7.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; - sha256 = "3b0a876a11f2650357411a4f1314968ff49840a8d160160ea2d55e96ecd71733"; + sha256 = "5ba98e76e8b6aab631d33aa20dad4684c17117938be6fdf67889e8d797cd9dbf"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/vi/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/vi/firefox-118.0b7.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; - sha256 = "926af924d94fd15993a6c8560121d25ce849ff0960041f6f096f35a9f270f9a7"; + sha256 = "230baa377ffac4a49d3445624bc54cf01186dd6da1c0b823d6224c5dba1be8e7"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/xh/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/xh/firefox-118.0b7.tar.bz2"; locale = "xh"; arch = "linux-x86_64"; - sha256 = "e3a07b3739083c6f038650f5190c9c17b40ed72fed1a06f63fb4620ed7761bbd"; + sha256 = "41dd2d2c66fc9766011ea1a53a8aee6e69b8502fb3cdb623b5d6395c5a8b23b0"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/zh-CN/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/zh-CN/firefox-118.0b7.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; - sha256 = "ddc9b1e9a1feb0a1ae1c78ee03caa99bb5a87490b3fe412307a7a35a8a45f712"; + sha256 = "640681c6cfe69917584b1e0a046cf1009909376ab77d569c072f42dfd0d0f7b5"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-x86_64/zh-TW/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-x86_64/zh-TW/firefox-118.0b7.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; - sha256 = "c8cfa47cb882d4f54f8db09fe056f0e705746c6dc7cb1c30200995b71a28cf25"; + sha256 = "905e49d23e23c0841b5cbe5561c1d7ff6dff341113541b06cb8ecdb16ea53c3b"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ach/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ach/firefox-118.0b7.tar.bz2"; locale = "ach"; arch = "linux-i686"; - sha256 = "d411dd4cce5a702868bfe7468c46f427c01eedf633d62a1542fe3ca2d06463e2"; + sha256 = "9633a049b8d2f253707733880c727179029e10c1e24b3643e664f0ca42658eb7"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/af/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/af/firefox-118.0b7.tar.bz2"; locale = "af"; arch = "linux-i686"; - sha256 = "d786873bad30fdc423b506d6581336ff3c9854158f8acb1c3fbc322e9d115e26"; + sha256 = "3251d74dc8420bdf8517364d9df7a6c1b3002e05842d18d60145ae4ccae93a6e"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/an/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/an/firefox-118.0b7.tar.bz2"; locale = "an"; arch = "linux-i686"; - sha256 = "6fd981d7e5ef3112940dd4f984b8ab84edc9ed72d72b057d8f933a77dd093a22"; + sha256 = "fc2a1260aa0610cf1c96cf148c73eb88e1681cabc61f80e053de37416123daa6"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ar/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ar/firefox-118.0b7.tar.bz2"; locale = "ar"; arch = "linux-i686"; - sha256 = "ae2faf4344ae5f2f363126299fff17ee76b1f88a9592a072ba73107b116ca925"; + sha256 = "941932017d5458a5a8fbda9c7b0407c8f631d466cfe1c87b93a284dba5a650d6"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ast/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ast/firefox-118.0b7.tar.bz2"; locale = "ast"; arch = "linux-i686"; - sha256 = "82d0b00c6ca5b7790a539686d8cb9c866b67db28d975d0f44b31c55e1e818193"; + sha256 = "bdc5630c66e1747515493022c4ac261eb4f2dac39ad0550f3aaecb46228f6a7f"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/az/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/az/firefox-118.0b7.tar.bz2"; locale = "az"; arch = "linux-i686"; - sha256 = "7b58c2ffa66572dd037a6323938de32a5b75cb32e94f7a4eef536d3731f3ffef"; + sha256 = "4a585ac0143472b3895a3376874cd5b4392cf15a28e434a77c42eec8be964919"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/be/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/be/firefox-118.0b7.tar.bz2"; locale = "be"; arch = "linux-i686"; - sha256 = "31cd031897af7a01b934ac7edbcd6893f223ffdaa29b72e91bf686928c7d46ac"; + sha256 = "9e1f94032707f67dae705c379d0faa0d56259051361348067c55467ee2b7469c"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/bg/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/bg/firefox-118.0b7.tar.bz2"; locale = "bg"; arch = "linux-i686"; - sha256 = "e515f32360645cfe094c1494b00608f5a12a916271825afbede760354a590389"; + sha256 = "5926851a524e6c3c20ead0bba45afb0baf5b71ed27e1b1e0aa8dd1c6d2f14279"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/bn/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/bn/firefox-118.0b7.tar.bz2"; locale = "bn"; arch = "linux-i686"; - sha256 = "f00831ad05d8911ea3d21a977eff4636c253e66971dc8669fc1349e5ef754ac7"; + sha256 = "bc62000310cba275d136593420f25b19816d35feee9a07f290769684b8a583e4"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/br/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/br/firefox-118.0b7.tar.bz2"; locale = "br"; arch = "linux-i686"; - sha256 = "9c8d76f1f7bb0a0a6ba04b8c42677d4bf640f4fe5d38dfeed6cb035cdb36de46"; + sha256 = "514636d4bb4c4a396a17656f34be24092f5ac39bf8db2fda4bd68f064455927a"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/bs/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/bs/firefox-118.0b7.tar.bz2"; locale = "bs"; arch = "linux-i686"; - sha256 = "fb1f353d0ffbb9c99d5f35e094c24f5736bfe9459566ecd767645c74d0d1bb11"; + sha256 = "301cec1f1ffaa4d8e4d9b3182b47279d6ad486bb94f07d3c719806889e67c80a"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ca-valencia/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ca-valencia/firefox-118.0b7.tar.bz2"; locale = "ca-valencia"; arch = "linux-i686"; - sha256 = "0b0127d2dbadc7f917b55afd12cd9789ae7fb106a09d2dcb5ac58aa08bfe2468"; + sha256 = "8d73f703c989bc902ef04e5ce8d437b77dda97be5edc3fae9a351e79b385cbfa"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ca/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ca/firefox-118.0b7.tar.bz2"; locale = "ca"; arch = "linux-i686"; - sha256 = "fa7a1e8136c84966b9dd6c16632a354f4b7c8abe69a392f20b9b10dcc54769f9"; + sha256 = "5be1cbb2c161516f64fbeb3e4da10f74de8371b8d3d21f4eb37723c3df983ef6"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/cak/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/cak/firefox-118.0b7.tar.bz2"; locale = "cak"; arch = "linux-i686"; - sha256 = "33a31b7806e74d4446a2427eb36f07c79771555f630232f1ce461e47d573c8a7"; + sha256 = "9754d9ad11fe7a1c19230557749be15cd6b4e9b0efd335c8a6eb8b8f923e66fe"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/cs/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/cs/firefox-118.0b7.tar.bz2"; locale = "cs"; arch = "linux-i686"; - sha256 = "aab3fd8b4af6a5c5241ba7f93b2968b7eebf01081dd1624b10b9d85e2c7d8bed"; + sha256 = "762b156fe91b707ea6299c1601dbd088c61b46320609832680353b82f6add5a8"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/cy/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/cy/firefox-118.0b7.tar.bz2"; locale = "cy"; arch = "linux-i686"; - sha256 = "2c861b38ed625da782cbfda073ba07e7f1f0fd769365ff4bc7e700f2e3bae80b"; + sha256 = "b33855067a575bb32ef723ef7b43f977853d7cd1f9f5ceb8d2e1cd3e8a841b41"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/da/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/da/firefox-118.0b7.tar.bz2"; locale = "da"; arch = "linux-i686"; - sha256 = "a741b50e639c95cd036a3f21661d76e8f2fe5834b4299a983d941e45bf997bb1"; + sha256 = "37b30760440da74accdc5bab08e11f1ee9471cd227c3622d42c9a10b24634cb2"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/de/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/de/firefox-118.0b7.tar.bz2"; locale = "de"; arch = "linux-i686"; - sha256 = "990934a27097cd590dc01938c76286d45f4f4bfa1d3db4b0adc68964d3ce7e2c"; + sha256 = "a86d701ba9b407d37c6fd7d680f84e68cf8a19347b1b79b0329a43d7e7379daf"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/dsb/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/dsb/firefox-118.0b7.tar.bz2"; locale = "dsb"; arch = "linux-i686"; - sha256 = "6c99d7f0d2f304f887c9fabef713b506615132ee6bfc8c9a7bab21d76c8c304a"; + sha256 = "05d1c8d93159c30ff0b39651aa3e197a4645f6f0c5f6174ff6bef17088122ee6"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/el/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/el/firefox-118.0b7.tar.bz2"; locale = "el"; arch = "linux-i686"; - sha256 = "67050027147c8415849d7d962609711e01fccd8470ec909fb1ca0242e7427674"; + sha256 = "8d89693b19854bc7337d9789e8e539e65e9535f5c0cfcaa79aadb797614ebdf2"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/en-CA/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/en-CA/firefox-118.0b7.tar.bz2"; locale = "en-CA"; arch = "linux-i686"; - sha256 = "dddbec23c2eeee997b7fd34b96da015b62d1af6a7bc5c815944d21c1fdcc2ae7"; + sha256 = "99a5408dd195096e7d4a0b5929aaec2bf223693a241a183b69b9d5b4e9b4b0e8"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/en-GB/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/en-GB/firefox-118.0b7.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; - sha256 = "05120716f45936ab2bd8ced130f66c8350f8d799f33883645eb45011ec92741a"; + sha256 = "d031be511019267d5e8a6f0d101d3c3d33f3f6a2f6d5c4b6275f41fa24e3cb41"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/en-US/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/en-US/firefox-118.0b7.tar.bz2"; locale = "en-US"; arch = "linux-i686"; - sha256 = "93c68950808dfcf21a252d923cad1a0f877995d7b2f54f4563be735bbba627b3"; + sha256 = "2a495ed8cb7ccba98c4bdb4242b1e595bd66c2e4f11784f8464e5b942f52ea7c"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/eo/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/eo/firefox-118.0b7.tar.bz2"; locale = "eo"; arch = "linux-i686"; - sha256 = "e36a6dd3a3c9df62aa252141e1cd0af3baa7256ac720b26546bc221feef4d399"; + sha256 = "bd6c98a9592072253d1dad19d08907cdfc6ba3a8f61405117438799d5d49af25"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/es-AR/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/es-AR/firefox-118.0b7.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; - sha256 = "92d3b5e2fbf140439890505a12da03a727de14490553b6aae53dbb5191f5c244"; + sha256 = "ce6a2094592cafb11980f4d539338d7775e6e5f4fcfb4ded0e8d8765a0bdecc7"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/es-CL/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/es-CL/firefox-118.0b7.tar.bz2"; locale = "es-CL"; arch = "linux-i686"; - sha256 = "32b57533484707d84ec85ecd0d4402de0567354c642f0644fb4ac28ececaebd8"; + sha256 = "3aa19af8a08ca42f66f105e26a77526cabb58cdf3ca44bfbaccdabaff69ef2d4"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/es-ES/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/es-ES/firefox-118.0b7.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; - sha256 = "54063c5a38f05900314edc1a28e6027a3390be4e7ff0fd5309921510e1109204"; + sha256 = "4c94a9a6df88eca71e3ef9bc70a8fbf48e3eea77c15bbe3517969d426063138f"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/es-MX/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/es-MX/firefox-118.0b7.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; - sha256 = "68b018798a31fe7b9b517e3e9defc0b3e044943453abb2349f2f34e0cb0c15fb"; + sha256 = "0b33cd4dfd653a03cc9a3fcf21ae8f4b4c0179d6c85d6751bdd93c1f718f20c8"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/et/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/et/firefox-118.0b7.tar.bz2"; locale = "et"; arch = "linux-i686"; - sha256 = "417571e9a48ed57a07cc900a783e6e5cb8cf60cdbdf87a5ac207f89691f9769b"; + sha256 = "2a457ac6e5c61ab30ef3f5b3fac87717d20425b209af517013d884245714b50c"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/eu/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/eu/firefox-118.0b7.tar.bz2"; locale = "eu"; arch = "linux-i686"; - sha256 = "1e819724f54f222080d9e2992bddde4acac7a0d170d51782a74b0aeff7277494"; + sha256 = "2857d6330c20c1189976ce0a9068fa6a73d636434e7096944487be8a215f25fc"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/fa/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/fa/firefox-118.0b7.tar.bz2"; locale = "fa"; arch = "linux-i686"; - sha256 = "0309a793dea404e71cda07efbf2b9187ae9bf2eb26221e122260a062626bc2fa"; + sha256 = "227a742ef75dfb9782f88a9306ce38dbe7e4f89f08ce96fcdcae545bc78c70c8"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ff/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ff/firefox-118.0b7.tar.bz2"; locale = "ff"; arch = "linux-i686"; - sha256 = "fd128469008d6056602697ef9b38e31d001369fce49932415532e3c76fb12100"; + sha256 = "be826fe8eaadc70dcfda4f9fbd1890c1813dbcd0015fe0a482e88f40a983a43a"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/fi/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/fi/firefox-118.0b7.tar.bz2"; locale = "fi"; arch = "linux-i686"; - sha256 = "bd5cc2c03863125085bda6d0861dbad78ea31bf8124810d94362420f4d1e3dfe"; + sha256 = "879d74b0cd6283f8bf03ecaf4fd58010cc42cab4932b893f2d3b5577ed8edd40"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/fr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/fr/firefox-118.0b7.tar.bz2"; locale = "fr"; arch = "linux-i686"; - sha256 = "6bf2becb00e08706f1ad3f4f145a09498b1ae35bffbf0d59ccb55521f194d08b"; + sha256 = "3ffcc6d94a8f794c2542b712d279f8dbce45155d77bfc8f9f8874f47e4ac4584"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/fur/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/fur/firefox-118.0b7.tar.bz2"; locale = "fur"; arch = "linux-i686"; - sha256 = "446e430f012b6ca8a98f03d13d5b53dc7daef276046881c1e9497b3709b33ef0"; + sha256 = "68fae2f583c232033b919e8fab9e67e19f605cf78dc7f600ad969fe8e4998cde"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/fy-NL/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/fy-NL/firefox-118.0b7.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; - sha256 = "e0c01a1437cda877328f5c874e2e4ab9d6dd65659af61bac94a8bbbd5836c6e4"; + sha256 = "f82ee7bc53c092e1843ed79489219aa0911ca074d797e8ddc91455df272c679d"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ga-IE/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ga-IE/firefox-118.0b7.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; - sha256 = "631a65cc5551ecf81a3d3f712463b7986707536ff4cb301ac2cb560c38081e5d"; + sha256 = "23e750ef417a773b5287f4600ba3f75fca361e1afb3f88feec61f66c22abdfeb"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/gd/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/gd/firefox-118.0b7.tar.bz2"; locale = "gd"; arch = "linux-i686"; - sha256 = "c4c0818a440820dce72387a20030a2aaed17355418456b698471359ac6b426b6"; + sha256 = "923540dae77062d701079ab16c7635e0006f456435df7418a42511bf1eb4bedf"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/gl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/gl/firefox-118.0b7.tar.bz2"; locale = "gl"; arch = "linux-i686"; - sha256 = "8ab363cd7ddd0a284081d229b2255aaa5d858e20a5fbaae16dbf8cf71282bda5"; + sha256 = "831ff917cd21189b853082493e9a3c6d9ffec886fe88bd263fc689b0a02a6739"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/gn/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/gn/firefox-118.0b7.tar.bz2"; locale = "gn"; arch = "linux-i686"; - sha256 = "51c057a1878bc91e2fba0c6f5ed0b50b3e87deebe3a50ccd4c119b0c58cff6a9"; + sha256 = "3834316b88593b717347fa7630c636d30938308a670f1a278f299d35d37ef41e"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/gu-IN/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/gu-IN/firefox-118.0b7.tar.bz2"; locale = "gu-IN"; arch = "linux-i686"; - sha256 = "61168e8593d01ae12cf944ac45c9867ec7793c98003a0ebe0563825d2b087e59"; + sha256 = "13c5c2c66e5a6f0e323e906beecea615646e32971a0c334615b59a46d2a93ba8"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/he/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/he/firefox-118.0b7.tar.bz2"; locale = "he"; arch = "linux-i686"; - sha256 = "7bb73e1d5f82b407275c22dbf21f2ecb79ad7b795001a6e1c1f14e2bc9c50918"; + sha256 = "d0795b682b78ce839316feb482e5436f9b8a71adbfa47fc061b3648264bcbcb9"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/hi-IN/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/hi-IN/firefox-118.0b7.tar.bz2"; locale = "hi-IN"; arch = "linux-i686"; - sha256 = "0f85fcea31720a4e0aa6309fc04828eba8aa87b4f30629ae540fac15d81da6d7"; + sha256 = "e650eba50b0be7ba68cb514fd90eda6dc1ef4413876115b011cda5c82ef3068e"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/hr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/hr/firefox-118.0b7.tar.bz2"; locale = "hr"; arch = "linux-i686"; - sha256 = "a95dc868d67fee91f1e15ab968621ccd21e6a031bf514f8524517fef817a239a"; + sha256 = "4482eef7da94a3547da7bb405d731e4e09aacd9c30fee478e7fa9018b91a2c1c"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/hsb/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/hsb/firefox-118.0b7.tar.bz2"; locale = "hsb"; arch = "linux-i686"; - sha256 = "d73d5b07ba38b710c10fb46e317ea38ef056a174d86391ac2be54389cea9fef5"; + sha256 = "b09437a8da426106cdc04eb9176a0b58d7f5b2311ed8581dc906ed32d816c2e7"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/hu/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/hu/firefox-118.0b7.tar.bz2"; locale = "hu"; arch = "linux-i686"; - sha256 = "161bc7fd3e133cd5ec67448eff91c5ced82af88248cae62253245dceed77858d"; + sha256 = "ae50cdbefaf60709e58c8eca5cbfa1ac28a7756e29c93d356eddf19f9a9987c5"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/hy-AM/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/hy-AM/firefox-118.0b7.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; - sha256 = "b8814ff41601b8caa937ae9bc097da03b315bee15abc3d72ea3bc95469853e17"; + sha256 = "a5b1ef342efa242b13bfc2399aa968cfb47532ed7688a23128f0b6645f70f68c"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ia/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ia/firefox-118.0b7.tar.bz2"; locale = "ia"; arch = "linux-i686"; - sha256 = "8c149dedbe3c958389f2587e248c29876862aa694c6d3d6250fdf6be2e74097d"; + sha256 = "b1810106de12f03347e7a71082ca9b269f24c12bfbe446e1abd27c534199a115"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/id/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/id/firefox-118.0b7.tar.bz2"; locale = "id"; arch = "linux-i686"; - sha256 = "c220ad070a631ebc3418669e0b488e250c72a49bddde03c6f0d9df73de4ebebe"; + sha256 = "574948125c2b198fd70764186552009a9f7b9fca915eca580f523fe9631d90ca"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/is/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/is/firefox-118.0b7.tar.bz2"; locale = "is"; arch = "linux-i686"; - sha256 = "cba9ad177caf1da9a6713f81daa66507ea855c3f2d03d72c39a810edfffd538a"; + sha256 = "6f5476ef3f91795a27f3dedec74c9003bc1b9dd970df553de570534fed62b240"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/it/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/it/firefox-118.0b7.tar.bz2"; locale = "it"; arch = "linux-i686"; - sha256 = "537be1852a91e5596567f0b8ad21547c2099a6dcf73782cc71ee7bc138fb7741"; + sha256 = "a6321b3d4050eb44911b350b84723be56456229db4d39ec33ed1f46c60ab65dd"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ja/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ja/firefox-118.0b7.tar.bz2"; locale = "ja"; arch = "linux-i686"; - sha256 = "7184c38e887b2893078a30ad242f49a1737c11184fc45d25427baad5c05f60b3"; + sha256 = "f0a5d5aec34440623cf6eae3bb8e5949add154d64cd0fb79997b18843e1e5de3"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ka/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ka/firefox-118.0b7.tar.bz2"; locale = "ka"; arch = "linux-i686"; - sha256 = "cc072c919d3d3401828d57e34f393aa47110dc207a3c42dd0ab60c9173ff35e5"; + sha256 = "e91a320772255b8d4d9c87e4af7dae4e32e7652dc56b1f2c89e1f64be272953e"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/kab/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/kab/firefox-118.0b7.tar.bz2"; locale = "kab"; arch = "linux-i686"; - sha256 = "ef2e248ec97667f45148624ba926827a12ac0e5b1381a9ad0c1fb3ada71627f3"; + sha256 = "1a404dbb0d32a60e0660dfb15c8f88db537b61ec33b9e5dde3002cb7b172d5c3"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/kk/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/kk/firefox-118.0b7.tar.bz2"; locale = "kk"; arch = "linux-i686"; - sha256 = "3ac6a2e5e5670396d94f5e5ba22a44165fea2cae55e3724159002869aa713da0"; + sha256 = "cace0a95a9c8399d43b59d4cd7866c035234c02e781733aaa442bcde603f604e"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/km/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/km/firefox-118.0b7.tar.bz2"; locale = "km"; arch = "linux-i686"; - sha256 = "cfd1497a2900aae71f2be4042ee98f5bb8cb9d95548851efe9d70f0655274d7e"; + sha256 = "1e1cf638b00f981bc66d8d22d0dde2304f7ae26336e8d15b2e5d014ee8e378db"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/kn/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/kn/firefox-118.0b7.tar.bz2"; locale = "kn"; arch = "linux-i686"; - sha256 = "8e35b3d4f63b7c86787f8818403f59176ed71dcf19925cfc8462cbbff5d21ee6"; + sha256 = "ec83eeb38bef604d831f0dbb17f94110e3b8e864834c8c821869da70f8e2301d"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ko/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ko/firefox-118.0b7.tar.bz2"; locale = "ko"; arch = "linux-i686"; - sha256 = "a90dca409d744f0f89ba66fd688ba6743fb67b6e9f8274091b40f53b44e06d4c"; + sha256 = "e83bb1eaee4bc44a35a2af7e825574e33ae02eaad3d2e322b2d70404cd486cf3"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/lij/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/lij/firefox-118.0b7.tar.bz2"; locale = "lij"; arch = "linux-i686"; - sha256 = "546792fab19da50e494a42a0e741e11a36140573b31f132e8dbaaa461bc75973"; + sha256 = "5664a928d14d55ba3d6262f7a25ee5f2f82285fd4167d0f5467c9e161876f8bb"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/lt/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/lt/firefox-118.0b7.tar.bz2"; locale = "lt"; arch = "linux-i686"; - sha256 = "4e45247f439f3c97915b6d8693c39ac210638d7091bcd1bc5e8045ad4439db97"; + sha256 = "bf712487aaf12169ea5f413e9df6b1af497e296a2ab6ae2ff0cbfc352f0beffe"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/lv/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/lv/firefox-118.0b7.tar.bz2"; locale = "lv"; arch = "linux-i686"; - sha256 = "d8849a63c242c064ec82b21993ddfeebb3f3db2f5e3d087772fe8b05562d56fb"; + sha256 = "acca2056b657f12e5c8e7a967bbc761ec9eee3620e4ff42497cb50a7e9a7aa32"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/mk/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/mk/firefox-118.0b7.tar.bz2"; locale = "mk"; arch = "linux-i686"; - sha256 = "d9b8a70413397a10cc0abd6e8b4417e408fcb1bac9099dc95b513bbd82fd08c4"; + sha256 = "4e3dcf5237b968cfa26f2250f1965798df65f8a50a1feaa384267831233c7667"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/mr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/mr/firefox-118.0b7.tar.bz2"; locale = "mr"; arch = "linux-i686"; - sha256 = "c65b08a0e49cb805e81fb2db302c4a838b2d48a91ed525a58fa9238efcc28426"; + sha256 = "f0ac9d3f8c7aea5d54bcb1cbceccd8615491f70d983ea5a67cfb0b74a3d15b50"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ms/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ms/firefox-118.0b7.tar.bz2"; locale = "ms"; arch = "linux-i686"; - sha256 = "f39b0dffb1a82d40ebcf6f8af43acce04d4f095fa8ba141f12268337653c5208"; + sha256 = "a287cf7b32bc0573004f86f633ff59aed74d952f6c5ad449b562320f8966e30a"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/my/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/my/firefox-118.0b7.tar.bz2"; locale = "my"; arch = "linux-i686"; - sha256 = "8a2e90894cea13c53aa6648c60d4353f3c9382d23d2d0a3f830b5e39e6da0218"; + sha256 = "bb749df1e2b05c6f067d435cabd782bfd98097af0d3d7af172c93f8991968de3"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/nb-NO/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/nb-NO/firefox-118.0b7.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; - sha256 = "8741f3e6e266843da63cbdba6d885837f68f4df50d0754877554f2d993eaa143"; + sha256 = "9532e4b6cd5cd3ee988a9b2a3264291f06077a29e825196503284a58d8ad93c2"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ne-NP/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ne-NP/firefox-118.0b7.tar.bz2"; locale = "ne-NP"; arch = "linux-i686"; - sha256 = "609d50347e15f6b4e81ba61701b818505737de916093a0ce0084492a2f02d3ad"; + sha256 = "20aae83f9cadc647d0eb57497f8df9cbbc50617b527a94f902e516c08b0455f2"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/nl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/nl/firefox-118.0b7.tar.bz2"; locale = "nl"; arch = "linux-i686"; - sha256 = "116d00aeafcc49fa14364a5f8dbbb7e289720be0b9f4df8c1eff437f10e28239"; + sha256 = "4139dc73ab90c9480e09da05497be9242c502a9ecd770faf64153e73a4bed4e1"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/nn-NO/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/nn-NO/firefox-118.0b7.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; - sha256 = "a3a48c1bde0cd164002901ceefc4b333d000f65ab49f49818860f9db6476a6c6"; + sha256 = "df4bda9a5a3ce620557fb92e7197787de99f0ae6cc266cad71d41edd23ad9521"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/oc/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/oc/firefox-118.0b7.tar.bz2"; locale = "oc"; arch = "linux-i686"; - sha256 = "bf9cc26d2a539b65a634be0228e11aee28c9f7f304bcfd57f45f1ee445468c20"; + sha256 = "379b7ed95cef9cf3c687b59122d24212ae6b446734298fcde29d75bf0f3466b2"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/pa-IN/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/pa-IN/firefox-118.0b7.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; - sha256 = "8c8c6bc0110f8c2d316bbf7f34374afeeb774c895773d53285de059ffc9b0258"; + sha256 = "8e5aaad334b214490f5be7fc18c5116d701eae8d20c5c91cd612aa11040bc7fd"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/pl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/pl/firefox-118.0b7.tar.bz2"; locale = "pl"; arch = "linux-i686"; - sha256 = "8f25f5d420cd4bc5e900fa377696e781619e76bc5b7e2953a2947eb94a75a52a"; + sha256 = "17988519e291b209034e53f91f7ab9c7ef4a08f45a9ef5c6eece5bf88a70767e"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/pt-BR/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/pt-BR/firefox-118.0b7.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; - sha256 = "311cba231371248853349d69c5013ba7758bf894fea12837f5a3a8e77e9b1bf8"; + sha256 = "fb4472de8f2668a32466edd77b75b410f4219b61a68a61051e2d2180bd8d0af5"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/pt-PT/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/pt-PT/firefox-118.0b7.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; - sha256 = "c414d6a806377f5db39b1988d836e2345bfc221c3d244859922c1d4023e780c8"; + sha256 = "2f22ee66d88a309079ec97b48402201e98dcacebedbeaf77f78bbb6202f9fdef"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/rm/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/rm/firefox-118.0b7.tar.bz2"; locale = "rm"; arch = "linux-i686"; - sha256 = "3dd5da7607276a1b83fb0c1806fd863e7689382b9659b343bbf2b29a3025c1fa"; + sha256 = "998e667c673fcefd90b70bb23282d73b531c1f59177396626c05d183dd76516b"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ro/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ro/firefox-118.0b7.tar.bz2"; locale = "ro"; arch = "linux-i686"; - sha256 = "1100dd252d13146d1a2f94b805042f72c3b960fc4641df4967df5ca2dcbe4660"; + sha256 = "b872473b0767f161a8f374dcf0271657ee103adc8914147e1e709d0231c576db"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ru/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ru/firefox-118.0b7.tar.bz2"; locale = "ru"; arch = "linux-i686"; - sha256 = "f95a1de532dad35c2f44cf6a1a21edde2d4720359d8998232c146ed61edc83f9"; + sha256 = "c3d0dce516fe7b8948329d78b3883d9f816619208260e10dbaec17fbf1939161"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/sc/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/sc/firefox-118.0b7.tar.bz2"; locale = "sc"; arch = "linux-i686"; - sha256 = "9b05809411f85ecc97181a0bdb6ee09893c9eb826636efd1037ddb56e4b5ec02"; + sha256 = "02445ef45b2a0d63793c1b350f8333fb02cab27cd71e70d38c8d3a44e3baef4c"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/sco/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/sco/firefox-118.0b7.tar.bz2"; locale = "sco"; arch = "linux-i686"; - sha256 = "79de8599410868f2b49b266a6391aa2f1d850f6ce07c1a457eaf223f73f2483f"; + sha256 = "06cc48f568cdb9365671d8f3293e2ad14e863fdef6278ca333dc1868eef7e188"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/si/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/si/firefox-118.0b7.tar.bz2"; locale = "si"; arch = "linux-i686"; - sha256 = "fb9b35a62c7be6e23b485e3cf19a2a82d9cc9b5978df494062ac229e3984df61"; + sha256 = "49a403ab64c2a0fea35b788bb8859622617f8ab88c77d7130afbe78f404e675d"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/sk/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/sk/firefox-118.0b7.tar.bz2"; locale = "sk"; arch = "linux-i686"; - sha256 = "98756a1606095822517ac859deb7445e233eb4a8eba8e22945a342ffb8cc7abb"; + sha256 = "166dee822a0e0e570da721aa7e0ef5b5e5872b32b8a7c78499e66e7963c97fa1"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/sl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/sl/firefox-118.0b7.tar.bz2"; locale = "sl"; arch = "linux-i686"; - sha256 = "6dd6d7d3efc832a9fec1698ce6387297a402fc626319e2a72260917e437d4efa"; + sha256 = "c942eba98ce7dd18024f507972c59b295e0ddb1aeb466feba59b194177ddb812"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/son/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/son/firefox-118.0b7.tar.bz2"; locale = "son"; arch = "linux-i686"; - sha256 = "5283f5c53f26401a921b0554a28b62818fb3cb6c6227350099caf9f2063258b5"; + sha256 = "70bac7040a9668c4772d4d358806b690739861c9cfa4d6bf13d7a2dca8da9d54"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/sq/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/sq/firefox-118.0b7.tar.bz2"; locale = "sq"; arch = "linux-i686"; - sha256 = "ec881eb32eee79311ef7d82cd1769955e4d47c733e41d29f4a9eda7ada06c26b"; + sha256 = "caec4cd469e5369c9ce63f70bbf6bf6ccead4dcc441e597a17ca3980600b39c3"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/sr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/sr/firefox-118.0b7.tar.bz2"; locale = "sr"; arch = "linux-i686"; - sha256 = "69d8bd816a7a1e6c5655ad2dbd32b2a1148883c8f44bdc7c920f2ab2aeb87f8d"; + sha256 = "8c858dd723cdd40222a9bae607d3e69e7ea2e29387229f63f3cfab072edfb23f"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/sv-SE/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/sv-SE/firefox-118.0b7.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; - sha256 = "72a08300897cb493943805dfde08d20b95bcbc78751916e00adb4c3001d4db0e"; + sha256 = "9bcc32c209cbc2eb42779780b2feace9360189c09f92b98a9dae1c41f6c2c58a"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/szl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/szl/firefox-118.0b7.tar.bz2"; locale = "szl"; arch = "linux-i686"; - sha256 = "5a7aa7e98426007860e6598e5b371291bab9bfa1335ca72c617d8a2c461ccf7a"; + sha256 = "ab35cde3c2c58519684e00471f8864f77a321295dbb1234ed998f9dbbcb812b3"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ta/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ta/firefox-118.0b7.tar.bz2"; locale = "ta"; arch = "linux-i686"; - sha256 = "09f930b46704e1d862a0a7a7a6f7c63b3331aad448da5b122c6d63cc8d118e21"; + sha256 = "45a6819e56a1e25cc4600a96212c56d07876c0d2d65a2f074bbd5f8c9396197f"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/te/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/te/firefox-118.0b7.tar.bz2"; locale = "te"; arch = "linux-i686"; - sha256 = "76fa6b1ecb83360394da3f080aee664c7f4213e2f7eaacc878b959d242d21e48"; + sha256 = "c7783001fd024680b923b9bbb474254c61f9409674c0c933a0d732ee657c2053"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/tg/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/tg/firefox-118.0b7.tar.bz2"; locale = "tg"; arch = "linux-i686"; - sha256 = "364627d0ca91937715edc4988d8c27e4dce20c8553e3a44abaa9d768f89d0426"; + sha256 = "da49d9da6390d6a484d0afe80d615ee126f365cb1138ae7759632233032d3df6"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/th/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/th/firefox-118.0b7.tar.bz2"; locale = "th"; arch = "linux-i686"; - sha256 = "74d5562c865b0e8a5bf440be02cfd8188f66364979479daafb54e4831cac72e5"; + sha256 = "387ab0c1e87ff02baa8a92ff1f5d54248ebadf027b4a8b9d97b4917667129b5f"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/tl/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/tl/firefox-118.0b7.tar.bz2"; locale = "tl"; arch = "linux-i686"; - sha256 = "b043ee7a54be66e768c082fad308d1de5c5874c292b25e995eba950d0d4c1fe5"; + sha256 = "fe82cd264a7afc608c3e98e3f835650fdfeb2d1820d856e0cdd3447ea40cc2c0"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/tr/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/tr/firefox-118.0b7.tar.bz2"; locale = "tr"; arch = "linux-i686"; - sha256 = "80963bc5abbb4636c49523e7dd672f0c51d09774365d52725267d2304174a04a"; + sha256 = "dba4c080cc88205193237b58bc5d63b4976dfeb9ecba568c7ba163185322d3ab"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/trs/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/trs/firefox-118.0b7.tar.bz2"; locale = "trs"; arch = "linux-i686"; - sha256 = "111d4c03145ea20da1f1d0ca4efd9191b26162e74b05ceef44f4cf169cdb07f6"; + sha256 = "34b9c9e4f103b4380de3881c4b72f90429af228cd4c233b7499b2fcf4866d160"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/uk/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/uk/firefox-118.0b7.tar.bz2"; locale = "uk"; arch = "linux-i686"; - sha256 = "9eec67a8023816ba052204e1271698576c5cef3f8a6ab8c5bfae359f92f45b08"; + sha256 = "4f1c6c7d372d1933d6c049f5d810c3d18f0e6b32ac6be5bcfbabcead5cf9bc91"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/ur/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/ur/firefox-118.0b7.tar.bz2"; locale = "ur"; arch = "linux-i686"; - sha256 = "287d3f83ecf740c143e6d473dc0f16fd70f39b293c03ab43a1ac5bae2b5d8cb1"; + sha256 = "7122ab00ade326711ebb2056e2c64e2beb5979f8143d785700e9e6489f434882"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/uz/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/uz/firefox-118.0b7.tar.bz2"; locale = "uz"; arch = "linux-i686"; - sha256 = "1187f50b549451140aa9831b8f152c552e6a6024634f3d91816f29fb3b01c953"; + sha256 = "bf294c84c1fd874149a04a1668e4410d082bc7548969c09eb40916f7d3f7e99b"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/vi/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/vi/firefox-118.0b7.tar.bz2"; locale = "vi"; arch = "linux-i686"; - sha256 = "5f65a5d6ebb013941e40b66e353da7fa7714937b260165893c49e353a5a5431c"; + sha256 = "1d8c6b2c363b97eba622fc0f81f544a2612054aeb472b77b3dc0a425c80776b8"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/xh/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/xh/firefox-118.0b7.tar.bz2"; locale = "xh"; arch = "linux-i686"; - sha256 = "2f41986351c886fc47305743d6b89fdc31d80da17a10b827572b73a5da39ba91"; + sha256 = "2756e0adb64baa641673808007ebae2c1e35a20f729d84f73d0846c3e16b25f5"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/zh-CN/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/zh-CN/firefox-118.0b7.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; - sha256 = "36e350b60a34a8a727d739e5a1cfaed9881530544eadcf5b4dc1bd9ec28e25de"; + sha256 = "27d1abe983b46ffbf5589edeccfb8702457176b6cd69ec898321351df3e13723"; } - { url = "https://archive.mozilla.org/pub/devedition/releases/117.0b9/linux-i686/zh-TW/firefox-117.0b9.tar.bz2"; + { url = "https://archive.mozilla.org/pub/devedition/releases/118.0b7/linux-i686/zh-TW/firefox-118.0b7.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; - sha256 = "886872206dd40b418eefaf2e2613bbef93e920dbe380322ef6d2500dbd98088f"; + sha256 = "5143ebf2a461c386cc3c2e8bc8983c4813878c13df57b57052411e8880f36834"; } ]; } From 2f2b46aae3a3a29ea7ad80a925cb6f6eadd92a68 Mon Sep 17 00:00:00 2001 From: Tim Kleinschmidt Date: Tue, 12 Sep 2023 08:48:32 +0200 Subject: [PATCH 176/346] vscode-extensions.charliermarsh.ruff: 2023.34.0 -> 2023.38.0 --- pkgs/applications/editors/vscode/extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index 1d4f7b0c8eb5..a53d0fee446e 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -700,8 +700,8 @@ let mktplcRef = { name = "ruff"; publisher = "charliermarsh"; - version = "2023.34.0"; - sha256 = "sha256-KOntjiE+n1yf9047XDldGg2pT+zknI/aEg6h71LwEB8="; + version = "2023.38.0"; + sha256 = "sha256-Gcw+X8e8MrTflotHUwkrdP/DD/6AX/kEgtRiqvqyqRM="; }; meta = { license = lib.licenses.mit; From 244ceba5eef02968550174965e50fb477c024075 Mon Sep 17 00:00:00 2001 From: Jacob Moody Date: Tue, 12 Sep 2023 13:43:40 -0500 Subject: [PATCH 177/346] cava: enable pipewire support by default --- pkgs/applications/audio/cava/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/cava/default.nix b/pkgs/applications/audio/cava/default.nix index 3acc83d6a65e..af3d35e0b91f 100644 --- a/pkgs/applications/audio/cava/default.nix +++ b/pkgs/applications/audio/cava/default.nix @@ -13,7 +13,7 @@ , SDL2 , libGL , withSDL2 ? false -, withPipewire ? false +, withPipewire ? true }: stdenv.mkDerivation rec { From 8c55974f89208f7b8958325a656d626a48611ecd Mon Sep 17 00:00:00 2001 From: Wojciech Nawrocki Date: Tue, 12 Sep 2023 14:52:16 -0400 Subject: [PATCH 178/346] Update pkgs/applications/science/logic/drat-trim/default.nix Co-authored-by: Weijia Wang <9713184+wegank@users.noreply.github.com> --- pkgs/applications/science/logic/drat-trim/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/science/logic/drat-trim/default.nix b/pkgs/applications/science/logic/drat-trim/default.nix index 8fb64d371ae2..78d810e19be2 100644 --- a/pkgs/applications/science/logic/drat-trim/default.nix +++ b/pkgs/applications/science/logic/drat-trim/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { src = fetchFromGitHub { owner = "marijnheule"; repo = "drat-trim"; - rev = "2e5e29cb0019d5cfd547d4208dca1b3ec290349f"; + rev = "refs/tags/v05.22.2023"; hash = "sha256-sV3A0f1TLSaTIdAtT6y8rU3ZS2UqEePJYSf3UySOlSA="; }; From 9b70a329a0edff34c8ba5865370c749d8e1ba63c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 12 Sep 2023 21:23:05 +0200 Subject: [PATCH 179/346] checkov: 2.4.30 -> 2.4.33 Diff: https://github.com/bridgecrewio/checkov/compare/refs/tags/2.4.30...2.4.33 Changelog: https://github.com/bridgecrewio/checkov/releases/tag/2.4.33 --- pkgs/development/tools/analysis/checkov/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/checkov/default.nix b/pkgs/development/tools/analysis/checkov/default.nix index be3a9b163b69..8db11d836e89 100644 --- a/pkgs/development/tools/analysis/checkov/default.nix +++ b/pkgs/development/tools/analysis/checkov/default.nix @@ -22,14 +22,14 @@ with py.pkgs; buildPythonApplication rec { pname = "checkov"; - version = "2.4.30"; + version = "2.4.33"; format = "setuptools"; src = fetchFromGitHub { owner = "bridgecrewio"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-sMNyeVaHdKI3IEN0/UR5XM72zDvMzyVAFMMcauan9J4="; + hash = "sha256-lbJlv1D3PvZlvjawkItBt9STdMMJwC5QQAYdUG0HjTI="; }; patches = [ From eef9879d74f1c2d8f688ed72252b770add62bc0a Mon Sep 17 00:00:00 2001 From: Yureka Date: Tue, 12 Sep 2023 18:09:14 +0200 Subject: [PATCH 180/346] clickhouse: 23.3.10.5 -> 23.3.13.6 --- pkgs/servers/clickhouse/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/clickhouse/default.nix b/pkgs/servers/clickhouse/default.nix index c5d5298a1619..959b16ceac42 100644 --- a/pkgs/servers/clickhouse/default.nix +++ b/pkgs/servers/clickhouse/default.nix @@ -28,7 +28,7 @@ let else llvmPackages.stdenv).mkDerivation; in mkDerivation rec { pname = "clickhouse"; - version = "23.3.10.5"; + version = "23.3.13.6"; src = fetchFromGitHub rec { owner = "ClickHouse"; @@ -36,7 +36,7 @@ in mkDerivation rec { rev = "v${version}-lts"; fetchSubmodules = true; name = "clickhouse-${rev}.tar.gz"; - hash = "sha256-xvmZOJqXrGToQRoEl+4AL9ewUhNdKGZFnCdBnSlB+tk="; + hash = "sha256-ryUjXN8UNGmkZTkqNHotB4C2E1MHZhx2teqXrlp5ySQ="; postFetch = '' # delete files that make the source too big rm -rf $out/contrib/llvm-project/llvm/test From da073295d0c20e4f264e6a348d8ab1bdfb4a4d33 Mon Sep 17 00:00:00 2001 From: Johann Wagner Date: Tue, 12 Sep 2023 21:54:10 +0200 Subject: [PATCH 181/346] testers.testVersion: Fix usage of hyphens within the version argument --- pkgs/build-support/testers/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/testers/default.nix b/pkgs/build-support/testers/default.nix index 3ff52ed0178c..fc10597e3e12 100644 --- a/pkgs/build-support/testers/default.nix +++ b/pkgs/build-support/testers/default.nix @@ -61,7 +61,7 @@ version ? package.version, }: runCommand "${package.name}-test-version" { nativeBuildInputs = [ package ]; meta.timeout = 60; } '' if output=$(${command} 2>&1); then - if grep -Fw "${version}" - <<< "$output"; then + if grep -Fw -- "${version}" - <<< "$output"; then touch $out else echo "Version string '${version}' not found!" >&2 From f84fcfd04b4b49ed790ace5e595773c18f7ac963 Mon Sep 17 00:00:00 2001 From: clerie Date: Sun, 10 Sep 2023 20:26:57 +0200 Subject: [PATCH 182/346] python311Packages.mcuuid: init at 1.1.0 --- .../python-modules/mcuuid/default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/python-modules/mcuuid/default.nix diff --git a/pkgs/development/python-modules/mcuuid/default.nix b/pkgs/development/python-modules/mcuuid/default.nix new file mode 100644 index 000000000000..39236f792be7 --- /dev/null +++ b/pkgs/development/python-modules/mcuuid/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, requests +}: + +buildPythonPackage rec { + pname = "mcuuid"; + version = "1.1.0"; + format = "setuptools"; + + src = fetchFromGitHub { + owner = "clerie"; + repo = "mcuuid"; + rev = "refs/tags/${version}"; + hash = "sha256-YwM7CdZVXpUXKXUzFL3AtoDhekLDIvZ/q8taLsHihNk="; + }; + + propagatedBuildInputs = [ + requests + ]; + + # upstream code does not provide tests + doCheck = false; + + pythonImportsCheck = [ + "mcuuid" + ]; + + meta = with lib; { + description = "Getting Minecraft player information from Mojang API"; + homepage = "https://github.com/clerie/mcuuid"; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ clerie ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 23f07eb89d48..4f362319764b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6498,6 +6498,8 @@ self: super: with self; { mcstatus = callPackage ../development/python-modules/mcstatus { }; + mcuuid = callPackage ../development/python-modules/mcuuid { }; + md-toc = callPackage ../development/python-modules/md-toc { }; mdx-truly-sane-lists = callPackage ../development/python-modules/mdx-truly-sane-lists { }; From 74699ea7612d4841ea12ec00bc371a02f17f0679 Mon Sep 17 00:00:00 2001 From: Weathercold Date: Tue, 12 Sep 2023 16:13:12 -0400 Subject: [PATCH 183/346] maintainers: update Weathercold's email --- maintainers/maintainer-list.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index d3e1dbf64287..af83ebcff050 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -18390,7 +18390,7 @@ }; weathercold = { name = "Weathercold"; - email = "weathercold.scr@gmail.com"; + email = "weathercold.scr@proton.me"; matrix = "@weathercold:matrix.org"; github = "Weathercold"; githubId = 49368953; From f30217bdeec1e638cdefd102924d96306512a7b3 Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 12 Sep 2023 16:22:31 -0400 Subject: [PATCH 184/346] lact: 0.4.3 -> 0.4.4 Diff: https://github.com/ilya-zlobintsev/LACT/compare/v0.4.3...v0.4.4 --- pkgs/tools/system/lact/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/system/lact/default.nix b/pkgs/tools/system/lact/default.nix index 7f50718c8ba6..e91326972949 100644 --- a/pkgs/tools/system/lact/default.nix +++ b/pkgs/tools/system/lact/default.nix @@ -13,16 +13,16 @@ rustPlatform.buildRustPackage rec { pname = "lact"; - version = "0.4.3"; + version = "0.4.4"; src = fetchFromGitHub { owner = "ilya-zlobintsev"; repo = "LACT"; rev = "v${version}"; - hash = "sha256-zSQqR5AxdqcSwgapSwXYn/36F6SQna8+RS6UTQJySrg="; + hash = "sha256-5tFXwx76KudojKnynCB+cnHcClB/JJD+9ugwxHG5xy4="; }; - cargoHash = "sha256-DDBYfafLg2fH+HsC5VZzVyRCyVSwcMydUGBe7NQRwEk="; + cargoHash = "sha256-QnJmczOep9XtPoNolrO2DSj+g6qLLowd4rgWQilnV+U="; nativeBuildInputs = [ pkg-config From 9dc3d26337e11dff97e221f846763f9a04477a04 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Tue, 12 Sep 2023 22:22:49 +0200 Subject: [PATCH 185/346] electron: 26.1.0 -> 26.2.1 (CVE-2023-4863, #254798) (#254816) --- pkgs/development/tools/electron/binary/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/tools/electron/binary/default.nix b/pkgs/development/tools/electron/binary/default.nix index eafa67cf3372..6b8a6d5a796b 100644 --- a/pkgs/development/tools/electron/binary/default.nix +++ b/pkgs/development/tools/electron/binary/default.nix @@ -178,12 +178,12 @@ rec { headers = "1v7ap1v520hhghw358k41aahpnaif54qbg6a9dwgmg1di0qwn735"; }; - electron_26-bin = mkElectron "26.1.0" { - armv7l-linux = "4a4a6587bddce4554657f40fd9d39645ede03a375a1c42455c9b8d556698e5f5"; - aarch64-linux = "1ed0996a06e97f5c23ceb8ae767873915c432c0aca5ffd4b37ab5fb1002d9d65"; - x86_64-linux = "de78aed71ce17395675a29dcd20c1370473713eb234143dd0fa3e4c5a39504eb"; - x86_64-darwin = "39a336baca218058011f39c4fa9a4275348ec7f411789262799d23c9669060d9"; - aarch64-darwin = "f39aafcf480ef581161d3dc0b89a91c556dcaed45927ee0b612368016afe7b89"; - headers = "134iqsjg6b80jwywccrhkhlrk6vj12d1nmfqbvlcl0d6cyqw6hys"; + electron_26-bin = mkElectron "26.2.1" { + armv7l-linux = "27469331e1b19f732f67e4b3ae01bba527b2744e31efec1ef76748c45fe7f262"; + aarch64-linux = "fe634b9095120d5b5d2c389ca016c378d1c3ba4f49b33912f9a6d8eb46f76163"; + x86_64-linux = "be4ca43f4dbc82cacb4c48a04f3c4589fd560a80a77dbb9bdf6c81721c0064df"; + x86_64-darwin = "007413187793c94cd248f52d3e00e2d95ed73b7a3b2c5a618f22eba7af94cd1a"; + aarch64-darwin = "4e095994525a0e97e897aad9c1940c8160ce2c9aaf7b6792f31720abc3e04ee6"; + headers = "02z604nzcm8iw29s5lsgjlzwn666h3ikxpdfjg2h0mffm82d0wfk"; }; } From 5d3ca06db30c6c2d089ce72bc3d87e50c7231249 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Tue, 12 Sep 2023 22:57:31 +0200 Subject: [PATCH 186/346] nixos/modemmanager: remove enableBundledFccUnlockScripts option This removes the networking.networkmanager.enableBundledFccUnlockScripts option, and updates the release notes. --- .../manual/release-notes/rl-2311.section.md | 2 ++ .../services/networking/networkmanager.nix | 30 +++++-------------- .../tools/networking/modemmanager/default.nix | 16 ---------- 3 files changed, 9 insertions(+), 39 deletions(-) diff --git a/nixos/doc/manual/release-notes/rl-2311.section.md b/nixos/doc/manual/release-notes/rl-2311.section.md index a2041db2a874..c9cb67fc3246 100644 --- a/nixos/doc/manual/release-notes/rl-2311.section.md +++ b/nixos/doc/manual/release-notes/rl-2311.section.md @@ -187,6 +187,8 @@ - Emacs macport version 29 was introduced. +- The option `services.networking.networkmanager.enableFccUnlock` was removed in favor of `networking.networkmanager.fccUnlockScripts`, which allows specifying unlock scripts explicitly. The previous option simply did enable all unlock scripts bundled with ModemManager, which is risky, and didn't allow using vendor-provided unlock scripts at all. + - The `html-proofer` package has been updated from major version 3 to major version 5, which includes [breaking changes](https://github.com/gjtorikian/html-proofer/blob/v5.0.8/UPGRADING.md). - `kratos` has been updated from 0.10.1 to the first stable version 1.0.0, please read the [0.10.1 to 0.11.0](https://github.com/ory/kratos/releases/tag/v0.11.0), [0.11.0 to 0.11.1](https://github.com/ory/kratos/releases/tag/v0.11.1), [0.11.1 to 0.13.0](https://github.com/ory/kratos/releases/tag/v0.13.0) and [0.13.0 to 1.0.0](https://github.com/ory/kratos/releases/tag/v1.0.0) upgrade guides. The most notable breaking change is the introduction of one-time passwords (`code`) and update of the default recovery strategy from `link` to `code`. diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix index 04e43ba49e98..6bc46a9a90e4 100644 --- a/nixos/modules/services/networking/networkmanager.nix +++ b/nixos/modules/services/networking/networkmanager.nix @@ -370,18 +370,6 @@ in ''; }; - enableBundledFccUnlockScripts = mkOption { - type = types.bool; - default = false; - description = lib.mdDoc '' - Enable FCC unlock procedures shipped with ModemManager. - Since release 1.18.4, the ModemManager daemon no longer - automatically performs the FCC unlock procedure by default. See - [the docs](https://modemmanager.org/docs/modemmanager/fcc-unlock/) - for more details. - ''; - }; - fccUnlockScripts = mkOption { type = types.listOf (types.submodule { options = { @@ -410,7 +398,13 @@ in [ "networking" "networkmanager" "packages" ] [ "networking" "networkmanager" "plugins" ]) (mkRenamedOptionModule [ "networking" "networkmanager" "useDnsmasq" ] [ "networking" "networkmanager" "dns" ]) - (mkRenamedOptionModule [ "networking" "networkmanager" "enableFccUnlock" ] [ "networking" "networkmanager" "enableBundledFccUnlockScripts" ]) + (mkRemovedOptionModule [ "networking" "networkmanager" "enableFccUnlock" ] '' + This option was removed, because using bundled FCC unlock scripts is risky, + might conflict with vendor-provided unlock scripts, and should + be a conscious decision on a per-device basis. + Instead it's recommended to use the + `networking.networkmanager.fccUnlockScripts` option. + '') (mkRemovedOptionModule [ "networking" "networkmanager" "dynamicHosts" ] '' This option was removed because allowing (multiple) regular users to override host entries affecting the whole system opens up a huge attack @@ -539,16 +533,6 @@ in ]; } - # if cfg.enableBundledFccUnlockScripts is set, populate - # networking.networkmanager.fccUnlockScripts with the values from - # pkgs.modemmanager.passthru.fccUnlockScripts. - (mkIf cfg.enableBundledFccUnlockScripts { - networkmanager.fccUnlockScripts = lib.optionals cfg.enableBundledFccUnlockScripts - lib.mapAttrsToList - (id: path: { inherit id path; }) - pkgs.modemmanager.passthru.fccUnlockScripts; - }) - (mkIf cfg.enableStrongSwan { networkmanager.plugins = [ pkgs.networkmanager_strongswan ]; }) diff --git a/pkgs/tools/networking/modemmanager/default.nix b/pkgs/tools/networking/modemmanager/default.nix index e9960f5494d3..d66c277f1dac 100644 --- a/pkgs/tools/networking/modemmanager/default.nix +++ b/pkgs/tools/networking/modemmanager/default.nix @@ -12,7 +12,6 @@ , python3 , libmbim , libqmi -, modemmanager , systemd , bash-completion , meson @@ -94,21 +93,6 @@ stdenv.mkDerivation rec { ''; installCheckTarget = "check"; - passthru = { - # provided FCC unlock scripts. Used by the NixOS module system to symlink - # to them from /etc/ModemManager/fcc-unlock.d/…. - # Most of them actually symlink to a "common" unlock script - fccUnlockScripts = { - "03f0:4e1d" = "${modemmanager}/share/ModemManager/fcc-unlock.available.d/1199"; - "105b:e0ab" = "${modemmanager}/share/ModemManager/fcc-unlock.available.d/105b"; - "1199:9079" = "${modemmanager}/share/ModemManager/fcc-unlock.available.d/1199"; - "1eac:1001" = "${modemmanager}/share/ModemManager/fcc-unlock.available.d/1eac"; - "2c7c:030a" = "${modemmanager}/share/ModemManager/fcc-unlock.available.d/2c7c"; - "413c:81a3" = "${modemmanager}/share/ModemManager/fcc-unlock.available.d/1199"; - "413c:81a8" = "${modemmanager}/share/ModemManager/fcc-unlock.available.d/1199"; - }; - }; - meta = with lib; { description = "WWAN modem manager, part of NetworkManager"; homepage = "https://www.freedesktop.org/wiki/Software/ModemManager/"; From a60936606cd5a58782f6a380a958410b16ebcfdc Mon Sep 17 00:00:00 2001 From: Michael Hanley Date: Tue, 12 Sep 2023 18:00:21 -0400 Subject: [PATCH 187/346] trust-dns: 0.22.1 -> 0.23.0 --- nixos/modules/services/networking/trust-dns.nix | 5 ++--- pkgs/servers/dns/trust-dns/default.nix | 6 +++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/nixos/modules/services/networking/trust-dns.nix b/nixos/modules/services/networking/trust-dns.nix index a3b4d12479b4..4196d124a2ab 100644 --- a/nixos/modules/services/networking/trust-dns.nix +++ b/nixos/modules/services/networking/trust-dns.nix @@ -1,5 +1,4 @@ { config, lib, pkgs, ... }: - let cfg = config.services.trust-dns; toml = pkgs.formats.toml { }; @@ -55,7 +54,7 @@ in defaultText = "pkgs.trust-dns"; description = mdDoc '' Trust-dns package to use. - Only `bin/named` need be provided: the other trust-dns utilities (client and resolver) are not needed. + Only `bin/trust-dns` need be provided: the other trust-dns utilities (client and resolver) are not needed. ''; }; quiet = mkOption { @@ -136,7 +135,7 @@ in flags = (lib.optional cfg.debug "--debug") ++ (lib.optional cfg.quiet "--quiet"); flagsStr = builtins.concatStringsSep " " flags; in '' - ${cfg.package}/bin/named --config ${configFile} ${flagsStr} + ${cfg.package}/bin/trust-dns --config ${configFile} ${flagsStr} ''; Type = "simple"; Restart = "on-failure"; diff --git a/pkgs/servers/dns/trust-dns/default.nix b/pkgs/servers/dns/trust-dns/default.nix index 58ab66357834..88280cf51877 100644 --- a/pkgs/servers/dns/trust-dns/default.nix +++ b/pkgs/servers/dns/trust-dns/default.nix @@ -7,15 +7,15 @@ rustPlatform.buildRustPackage rec { pname = "trust-dns"; - version = "0.22.1"; + version = "0.23.0"; src = fetchFromGitHub { owner = "bluejekyll"; repo = "trust-dns"; rev = "v${version}"; - sha256 = "sha256-YjwzU/mYKiHL2xB/oczkP/4i5XYIvSNyqDLmmrRQPhM="; + sha256 = "sha256-CfFEhZEk1Z7VG0n8EvyQwHvZIOEES5GKpm5tMeqhRVY="; }; - cargoHash = "sha256-uAmszVOlRttmn6b3Rv2Y5ZuP3qBIVjIFJ42BJro+K8s="; + cargoHash = "sha256-jmow/jtdbuKFovXWA5xbgM67iJmkwP35hiOivIJ5JdM="; buildInputs = [ openssl ]; nativeBuildInputs = [ pkg-config ]; From 6db923bc55897ce3e2e3ecaa27c2c535ee61acac Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Tue, 12 Sep 2023 18:21:33 -0400 Subject: [PATCH 188/346] python310Packages.uproot: 5.0.10 -> 5.0.11 (#248585) --- pkgs/development/python-modules/uproot/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/uproot/default.nix b/pkgs/development/python-modules/uproot/default.nix index e0fb91744851..1e5de05abe49 100644 --- a/pkgs/development/python-modules/uproot/default.nix +++ b/pkgs/development/python-modules/uproot/default.nix @@ -1,6 +1,7 @@ { lib , buildPythonPackage , fetchFromGitHub +, fetchpatch , pythonOlder , awkward , hatchling @@ -17,7 +18,7 @@ buildPythonPackage rec { pname = "uproot"; - version = "5.0.10"; + version = "5.0.11"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -26,7 +27,7 @@ buildPythonPackage rec { owner = "scikit-hep"; repo = "uproot5"; rev = "refs/tags/v${version}"; - hash = "sha256-xLyb0isWQro6RlIT7a4IBkB+m0/fF55CRLrYgi5WLrM="; + hash = "sha256-qp1iffElJSAwqaycelnILBzeW8kG7Yy0R1bjMumW8UU="; }; nativeBuildInputs = [ @@ -67,6 +68,8 @@ buildPythonPackage rec { "tests/test_0066-fix-http-fallback-freeze.py" "tests/test_0088-read-with-http.py" "tests/test_0220-contiguous-byte-ranges-in-http.py" + "tests/test_0916-read-from-s3.py" + "tests/test_0930-expressions-in-pandas.py" ]; pythonImportsCheck = [ From 9bd104c94d99360dc569653929d06e30ff083aa4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 12 Sep 2023 23:09:04 +0000 Subject: [PATCH 189/346] ugs: 2.0.18 -> 2.0.20 --- pkgs/tools/misc/ugs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/ugs/default.nix b/pkgs/tools/misc/ugs/default.nix index 4350c23ac773..61a124faaa1b 100644 --- a/pkgs/tools/misc/ugs/default.nix +++ b/pkgs/tools/misc/ugs/default.nix @@ -18,11 +18,11 @@ let in stdenv.mkDerivation rec { pname = "ugs"; - version = "2.0.18"; + version = "2.0.20"; src = fetchzip { url = "https://github.com/winder/Universal-G-Code-Sender/releases/download/v${version}/UniversalGcodeSender.zip"; - hash = "sha256-NaEDG3dmpPRwfVvwYJQXqpCcAkRPeQ1EcKoa0xKeDFA="; + hash = "sha256-EPB7irROvFSGeo8XwOGoN9OLcIVJIDUySJ4DLomZPgM="; }; dontUnpack = true; From 090c650fafafbc484f217a321b6eb5bd7419f68a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 12 Sep 2023 23:29:29 +0000 Subject: [PATCH 190/346] pulumictl: 0.0.43 -> 0.0.44 --- pkgs/development/tools/pulumictl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/pulumictl/default.nix b/pkgs/development/tools/pulumictl/default.nix index fc0361be4c24..3528d689df2f 100644 --- a/pkgs/development/tools/pulumictl/default.nix +++ b/pkgs/development/tools/pulumictl/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "pulumictl"; - version = "0.0.43"; + version = "0.0.44"; src = fetchFromGitHub { owner = "pulumi"; repo = "pulumictl"; rev = "v${version}"; - sha256 = "sha256-iz0ahzR0+CpNZSLbR9zyIRS5k3y1GYbh7BPif9I6n4k="; + sha256 = "sha256-7Q+1shNZ18BZ6W6CslwUZhX0LtxPdTXOSNH5VhBHFxE="; }; - vendorHash = "sha256-WzfTS68YIpoZYbm6i0USxXyEyR4px+hrNRbsCTXdJsk="; + vendorHash = "sha256-XOgHvOaHExazQfsu1brYDq1o2fUh6dZeJlpVhCQX9ns="; ldflags = [ "-s" "-w" "-X=github.com/pulumi/pulumictl/pkg/version.Version=${src.rev}" From 50414cd27846dd8ca59267dc95fb5830c0eb0635 Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 12 Sep 2023 19:56:31 -0400 Subject: [PATCH 191/346] ttop: 1.2.4 -> 1.2.5 Diff: https://github.com/inv2004/ttop/compare/v1.2.4...v1.2.5 Changelog: https://github.com/inv2004/ttop/releases/tag/v1.2.5 --- pkgs/tools/system/ttop/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/ttop/default.nix b/pkgs/tools/system/ttop/default.nix index d36d49252206..b108638ca7a9 100644 --- a/pkgs/tools/system/ttop/default.nix +++ b/pkgs/tools/system/ttop/default.nix @@ -2,14 +2,14 @@ nimPackages.buildNimPackage (finalAttrs: { pname = "ttop"; - version = "1.2.4"; + version = "1.2.5"; nimBinOnly = true; src = fetchFromGitHub { owner = "inv2004"; repo = "ttop"; rev = "v${finalAttrs.version}"; - hash = "sha256-kOYgqFKZ0TC54o6tQaxGA1i12sU8Mg9bEwbGoZiBZ0Y="; + hash = "sha256-GMGGkpBX+pmZ+TSDRs2N3H4Bwa3oXSDo9vM192js7Ww="; }; buildInputs = with nimPackages; [ asciigraph illwill jsony parsetoml zippy ]; From 1dd61a3ea53c131e4194f2e5fc7d0c9da4a9d994 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 00:11:49 +0000 Subject: [PATCH 192/346] cbmc: 5.90.0 -> 5.91.0 --- pkgs/applications/science/logic/cbmc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/logic/cbmc/default.nix b/pkgs/applications/science/logic/cbmc/default.nix index 9cc88ca7081d..6a878735bb3d 100644 --- a/pkgs/applications/science/logic/cbmc/default.nix +++ b/pkgs/applications/science/logic/cbmc/default.nix @@ -13,13 +13,13 @@ stdenv.mkDerivation rec { pname = "cbmc"; - version = "5.90.0"; + version = "5.91.0"; src = fetchFromGitHub { owner = "diffblue"; repo = pname; rev = "${pname}-${version}"; - sha256 = "sha256-c6Ms/IStmKug5nz37TzjeexkY3YfWaUqEKIC2viMK9g="; + sha256 = "sha256-7DzhGEDS9T6WIjGoxOw9Gf/q+tYNFJDPbQUBV3tbn/I="; }; nativeBuildInputs = [ From e70d7232dc9f7bb041a8861996b499d95370e02b Mon Sep 17 00:00:00 2001 From: OTABI Tomoya Date: Wed, 13 Sep 2023 09:15:17 +0900 Subject: [PATCH 193/346] python310Packages.hypothesmith: add `meta.changelog`, `format` and `disabled` --- pkgs/development/python-modules/hypothesmith/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/hypothesmith/default.nix b/pkgs/development/python-modules/hypothesmith/default.nix index a559d20ff625..d6ce47e38050 100644 --- a/pkgs/development/python-modules/hypothesmith/default.nix +++ b/pkgs/development/python-modules/hypothesmith/default.nix @@ -7,11 +7,15 @@ , parso , pytestCheckHook , pytest-xdist +, pythonOlder }: buildPythonPackage rec { pname = "hypothesmith"; version = "0.3.0"; + format = "setuptools"; + + disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; @@ -56,6 +60,7 @@ buildPythonPackage rec { meta = with lib; { description = "Hypothesis strategies for generating Python programs, something like CSmith"; homepage = "https://github.com/Zac-HD/hypothesmith"; + changelog = "https://github.com/Zac-HD/hypothesmith/blob/master/CHANGELOG.md"; license = licenses.mpl20; maintainers = with maintainers; [ ]; }; From 68ba51782b7f6b8b494081052d6a9590ac04112a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 00:33:32 +0000 Subject: [PATCH 194/346] prometheus-redis-exporter: 1.53.0 -> 1.54.0 --- pkgs/servers/monitoring/prometheus/redis-exporter.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/monitoring/prometheus/redis-exporter.nix b/pkgs/servers/monitoring/prometheus/redis-exporter.nix index 76a83f4f42eb..dac1e8a97056 100644 --- a/pkgs/servers/monitoring/prometheus/redis-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/redis-exporter.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "redis_exporter"; - version = "1.53.0"; + version = "1.54.0"; src = fetchFromGitHub { owner = "oliver006"; repo = "redis_exporter"; rev = "v${version}"; - sha256 = "sha256-KeHWflzwSxWaplAPtqof7NGJ9SH4mnjRAffhP/Dth5I="; + sha256 = "sha256-EIkMxmaugAPPeJfAA9HBbPp59bVHvgP0ZdUy0xhrrlY="; }; vendorHash = "sha256-it69pime0RAhhu/qlRFGediemMllGhA3srHpGcUet7k="; From 68b852f4dac0ed81f5556d7673df483cf8dd2842 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 12 Sep 2023 17:31:19 -0700 Subject: [PATCH 195/346] python310Packages.python-rapidjson: 1.10 -> 1.11 Changelog: https://github.com/python-rapidjson/python-rapidjson/blob/v1.11/CHANGES.rst --- .../python-modules/python-rapidjson/default.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/python-rapidjson/default.nix b/pkgs/development/python-modules/python-rapidjson/default.nix index 8ac9281c31a1..3a44ee54a2f3 100644 --- a/pkgs/development/python-modules/python-rapidjson/default.nix +++ b/pkgs/development/python-modules/python-rapidjson/default.nix @@ -2,7 +2,6 @@ , buildPythonPackage , fetchFromGitHub , fetchpatch -, fetchPypi , pythonOlder , rapidjson , pytestCheckHook @@ -16,8 +15,8 @@ let src = fetchFromGitHub { owner = "Tencent"; repo = "rapidjson"; - rev = "083f359f5c36198accc2b9360ce1e32a333231d9"; - hash = "sha256-8O5KwZcvoEkpE+O0Twn2CKHjV2AYh8qnSaBofoWEBs8="; + rev = "5e17dbed34eef33af8f3e734820b5dc547a2a3aa"; + hash = "sha256-CTy42X6P6+Gz4WbJ3tCpAw3qqlJ+mU1PaWW9LGG+6nU="; }; patches = [ (fetchpatch { @@ -30,15 +29,17 @@ let cmakeFlags = old.cmakeFlags ++ [ "-DCMAKE_CTEST_ARGUMENTS=-E;valgrind_unittest" ]; }); in buildPythonPackage rec { - version = "1.10"; + version = "1.11"; pname = "python-rapidjson"; disabled = pythonOlder "3.7"; format = "setuptools"; - src = fetchPypi { - inherit pname version; - hash = "sha256-rP7L9e25HscqIKEl3n9WuML2Fh7/TGU4LI7mokhNNUA="; + src = fetchFromGitHub { + owner = "python-rapidjson"; + repo = "python-rapidjson"; + rev = "refs/tags/v${version}"; + hash = "sha256-Jnnr4MCopx2YJTqbHqSCzPBzUl0T8SqcznRGSI14d2Q="; }; setupPyBuildFlags = [ @@ -55,7 +56,7 @@ in buildPythonPackage rec { ]; meta = with lib; { - changelog = "https://github.com/python-rapidjson/python-rapidjson/blob/v${version}/CHANGES.rst"; + changelog = "https://github.com/python-rapidjson/python-rapidjson/blob/${src.rev}/CHANGES.rst"; homepage = "https://github.com/python-rapidjson/python-rapidjson"; description = "Python wrapper around rapidjson"; license = licenses.mit; From 27ef92fb74f5594af32e676228c1c349992863ab Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 12 Sep 2023 11:43:16 +0000 Subject: [PATCH 196/346] ppsspp-sdl: 1.15.4 -> 1.16 --- pkgs/applications/emulators/ppsspp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/emulators/ppsspp/default.nix b/pkgs/applications/emulators/ppsspp/default.nix index 64a33bf5fec0..3fb0de1bf9ff 100644 --- a/pkgs/applications/emulators/ppsspp/default.nix +++ b/pkgs/applications/emulators/ppsspp/default.nix @@ -34,14 +34,14 @@ stdenv.mkDerivation (finalAttrs: { + lib.optionalString enableQt "-qt" + lib.optionalString (!enableQt) "-sdl" + lib.optionalString forceWayland "-wayland"; - version = "1.15.4"; + version = "1.16"; src = fetchFromGitHub { owner = "hrydgard"; repo = "ppsspp"; rev = "v${finalAttrs.version}"; fetchSubmodules = true; - sha256 = "sha256-D94PLJfWalLk2kbS0PEHTMDdWxZW4YXwp3VQDHNZlRU="; + sha256 = "sha256-41FAInCMmgO4vxzpFKVZtITs8piQLJgBJBbGVKEd97o="; }; postPatch = '' From 02825475950a764dc4f6611dc52c0bc1f35952e6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 01:01:47 +0000 Subject: [PATCH 197/346] nixpacks: 1.13.0 -> 1.14.0 --- pkgs/applications/virtualization/nixpacks/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/virtualization/nixpacks/default.nix b/pkgs/applications/virtualization/nixpacks/default.nix index 513da2279614..ca097adac773 100644 --- a/pkgs/applications/virtualization/nixpacks/default.nix +++ b/pkgs/applications/virtualization/nixpacks/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "nixpacks"; - version = "1.13.0"; + version = "1.14.0"; src = fetchFromGitHub { owner = "railwayapp"; repo = pname; rev = "v${version}"; - sha256 = "sha256-xUQpo9KqKXKz1nT+eqmIX1domBHGsFO1DQoR/lDdncM="; + sha256 = "sha256-Rt65BXrDFne7bT26yQLVMNwwgN8JAmXLrGx/BLlInkI="; }; - cargoHash = "sha256-6OuDZzX7mCc8LiC808eu1fa1OspA5+Yk5h3VxusgFDU="; + cargoHash = "sha256-dZbLLxvkJzApl9+MwbZRJQXFzMHOfbikwEZs9wFKZHQ="; # skip test due FHS dependency doCheck = false; From 9c521769676b4520eab8e38500118b22d4acaecb Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 01:12:51 +0000 Subject: [PATCH 198/346] minesweep-rs: 6.0.29 -> 6.0.31 --- pkgs/games/minesweep-rs/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/games/minesweep-rs/default.nix b/pkgs/games/minesweep-rs/default.nix index 59f4f057fc04..a448597d9b1e 100644 --- a/pkgs/games/minesweep-rs/default.nix +++ b/pkgs/games/minesweep-rs/default.nix @@ -5,16 +5,16 @@ rustPlatform.buildRustPackage rec { pname = "minesweep-rs"; - version = "6.0.29"; + version = "6.0.31"; src = fetchFromGitHub { owner = "cpcloud"; repo = pname; rev = "v${version}"; - hash = "sha256-PgZ9fL+g2X3CddPVD/JRrIFbw7GS73ELD3EhhR9BAUc="; + hash = "sha256-1jC2tudU5epMOzDR//yjSLNe+5nWzqhWDD2Zxdn5+F4="; }; - cargoHash = "sha256-c06TfslXGAshR1HXz6PCI26DMpFsb6OrzQ38p4RgsAw="; + cargoHash = "sha256-qH464zNpI/Y5SXplTwhPu9TjbqfExQYs/Lh75lPUoh4="; meta = with lib; { description = "Sweep some mines for fun, and probably not for profit"; From 68e240bfd4fa0458f301b00c07db3b6e6f8a5fa4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 01:23:31 +0000 Subject: [PATCH 199/346] grafana-dash-n-grab: 0.4.5 -> 0.5.0 --- pkgs/servers/monitoring/grafana-dash-n-grab/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/monitoring/grafana-dash-n-grab/default.nix b/pkgs/servers/monitoring/grafana-dash-n-grab/default.nix index 658e872db7dc..ab3082a0de1b 100644 --- a/pkgs/servers/monitoring/grafana-dash-n-grab/default.nix +++ b/pkgs/servers/monitoring/grafana-dash-n-grab/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "grafana-dash-n-grab"; - version = "0.4.5"; + version = "0.5.0"; src = fetchFromGitHub { rev = "v${version}"; owner = "esnet"; repo = "gdg"; - sha256 = "sha256-Vn/kaSSe0rvS38HqXw7P2ZMQDCC4K8WSRdO0pdMLuhk="; + sha256 = "sha256-GQJBAjlxjEeNZrYzb/XP83+xma8LLzemKFqxlrDOP64="; }; - vendorHash = "sha256-2qEOVAbEEgGK83n4TSK0tksecETkJuCIqN9x6vfAimI="; + vendorHash = "sha256-7KP/j5WQowxUM+6jeC2GEycrC12sSbQYxcuXmD9j7M8="; ldflags = [ "-s" From e21ce4a4f72b3b2b7eec0fb039b8dc5bd7c8e786 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 12 Sep 2023 18:39:57 -0700 Subject: [PATCH 200/346] haste-server: use buildNpmPackage --- pkgs/servers/haste-server/default.nix | 50 +- .../servers/haste-server/node-composition.nix | 17 - pkgs/servers/haste-server/node-deps.nix | 1561 ----------------- pkgs/servers/haste-server/node-env.nix | 686 -------- pkgs/servers/haste-server/update.sh | 28 - 5 files changed, 12 insertions(+), 2330 deletions(-) delete mode 100644 pkgs/servers/haste-server/node-composition.nix delete mode 100644 pkgs/servers/haste-server/node-deps.nix delete mode 100644 pkgs/servers/haste-server/node-env.nix delete mode 100755 pkgs/servers/haste-server/update.sh diff --git a/pkgs/servers/haste-server/default.nix b/pkgs/servers/haste-server/default.nix index f1281cffb437..30c98f298d41 100644 --- a/pkgs/servers/haste-server/default.nix +++ b/pkgs/servers/haste-server/default.nix @@ -1,65 +1,39 @@ { lib , nixosTests -, stdenv +, buildNpmPackage , fetchFromGitHub -, makeWrapper -, nodejs_18 -, pkgs }: -let - nodejs = nodejs_18; -in -stdenv.mkDerivation rec { +buildNpmPackage rec { pname = "haste-server"; - version = "b52b394bad909ddf151073987671e843540d91d6"; + version = "unstable-2023-03-06"; src = fetchFromGitHub { owner = "toptal"; repo = "haste-server"; - rev = version; + rev = "b52b394bad909ddf151073987671e843540d91d6"; hash = "sha256-AVoz5MY5gNxQrHtDMPbQ85IjmHii1v6C2OXpEQj9zC8="; }; - nativeBuildInputs = [ - nodejs - makeWrapper - ]; + npmDepsHash = "sha256-FEuqKbblAts0WTnGI9H9bRBOwPvkahltra1zl3sMPJs="; - installPhase = - let - nodeDependencies = ((import ./node-composition.nix { - inherit pkgs nodejs; - inherit (stdenv.hostPlatform) system; - }).nodeDependencies.override (old: { - # access to path '/nix/store/...-source' is forbidden in restricted mode - src = src; - dontNpmInstall = true; - })); - in - '' - runHook postInstall + dontNpmBuild = true; - mkdir -p $out/share - cp -ra . $out/share/haste-server - ln -s ${nodeDependencies}/lib/node_modules $out/share/haste-server/node_modules - makeWrapper ${nodejs}/bin/node $out/bin/haste-server \ - --add-flags $out/share/haste-server/server.js - - runHook postBuild - ''; + postInstall = '' + install -Dt "$out/share/haste-server" about.md + ''; passthru = { tests = { inherit (nixosTests) haste-server; }; - updateScript = ./update.sh; }; meta = with lib; { - description = "open source pastebin written in node.js"; - homepage = "https://www.toptal.com/developers/hastebin/about.md"; + description = "Open source pastebin written in Node.js"; + homepage = "https://github.com/toptal/haste-server"; license = licenses.mit; + mainProgram = "haste-server"; maintainers = with maintainers; [ mkg20001 ]; }; } diff --git a/pkgs/servers/haste-server/node-composition.nix b/pkgs/servers/haste-server/node-composition.nix deleted file mode 100644 index 5fb8e7ba5692..000000000000 --- a/pkgs/servers/haste-server/node-composition.nix +++ /dev/null @@ -1,17 +0,0 @@ -# This file has been generated by node2nix 1.11.1. Do not edit! - -{pkgs ? import { - inherit system; - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs_14"}: - -let - nodeEnv = import ./node-env.nix { - inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript; - inherit pkgs nodejs; - libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; - }; -in -import ./node-deps.nix { - inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit; - inherit nodeEnv; -} diff --git a/pkgs/servers/haste-server/node-deps.nix b/pkgs/servers/haste-server/node-deps.nix deleted file mode 100644 index 2c8e11bb9247..000000000000 --- a/pkgs/servers/haste-server/node-deps.nix +++ /dev/null @@ -1,1561 +0,0 @@ -# This file has been generated by node2nix 1.11.1. Do not edit! - -{nodeEnv, fetchurl, fetchgit, nix-gitignore, stdenv, lib, globalBuildInputs ? []}: - -let - sources = { - "@ungap/promise-all-settled-1.1.2" = { - name = "_at_ungap_slash_promise-all-settled"; - packageName = "@ungap/promise-all-settled"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz"; - sha512 = "sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q=="; - }; - }; - "ansi-colors-4.1.1" = { - name = "ansi-colors"; - packageName = "ansi-colors"; - version = "4.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz"; - sha512 = "JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA=="; - }; - }; - "ansi-regex-3.0.1" = { - name = "ansi-regex"; - packageName = "ansi-regex"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz"; - sha512 = "+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw=="; - }; - }; - "ansi-regex-5.0.1" = { - name = "ansi-regex"; - packageName = "ansi-regex"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"; - sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; - }; - }; - "ansi-styles-4.3.0" = { - name = "ansi-styles"; - packageName = "ansi-styles"; - version = "4.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"; - sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; - }; - }; - "anymatch-3.1.3" = { - name = "anymatch"; - packageName = "anymatch"; - version = "3.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz"; - sha512 = "KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw=="; - }; - }; - "argparse-2.0.1" = { - name = "argparse"; - packageName = "argparse"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"; - sha512 = "8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="; - }; - }; - "async-2.6.4" = { - name = "async"; - packageName = "async"; - version = "2.6.4"; - src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-2.6.4.tgz"; - sha512 = "mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA=="; - }; - }; - "async-cache-1.1.0" = { - name = "async-cache"; - packageName = "async-cache"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/async-cache/-/async-cache-1.1.0.tgz"; - sha512 = "YDQc4vBn5NFhY6g6HhVshyi3Fy9+SQ5ePnE7JLDJn1DoL+i7ER+vMwtTNOYk9leZkYMnOwpBCWqyLDPw8Aig8g=="; - }; - }; - "balanced-match-1.0.2" = { - name = "balanced-match"; - packageName = "balanced-match"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"; - sha512 = "3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="; - }; - }; - "base64-js-1.5.1" = { - name = "base64-js"; - packageName = "base64-js"; - version = "1.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"; - sha512 = "AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="; - }; - }; - "binary-extensions-2.2.0" = { - name = "binary-extensions"; - packageName = "binary-extensions"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"; - sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="; - }; - }; - "bl-4.1.0" = { - name = "bl"; - packageName = "bl"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"; - sha512 = "1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="; - }; - }; - "brace-expansion-1.1.11" = { - name = "brace-expansion"; - packageName = "brace-expansion"; - version = "1.1.11"; - src = fetchurl { - url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"; - sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; - }; - }; - "braces-3.0.2" = { - name = "braces"; - packageName = "braces"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"; - sha512 = "b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="; - }; - }; - "browser-stdout-1.3.1" = { - name = "browser-stdout"; - packageName = "browser-stdout"; - version = "1.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz"; - sha512 = "qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw=="; - }; - }; - "buffer-5.7.1" = { - name = "buffer"; - packageName = "buffer"; - version = "5.7.1"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz"; - sha512 = "EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="; - }; - }; - "buffer-writer-2.0.0" = { - name = "buffer-writer"; - packageName = "buffer-writer"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer-writer/-/buffer-writer-2.0.0.tgz"; - sha512 = "a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw=="; - }; - }; - "busboy-0.2.4" = { - name = "busboy"; - packageName = "busboy"; - version = "0.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/busboy/-/busboy-0.2.4.tgz"; - sha512 = "hm0XN2dlecinlYSaB1TmSmuOaFlf6TKl0ITjqlszN+4O8z2eNwjUX3ak38dIXa7Pi7wme62QE7Wi2lC5L5Pu5A=="; - }; - }; - "camelcase-6.3.0" = { - name = "camelcase"; - packageName = "camelcase"; - version = "6.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz"; - sha512 = "Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="; - }; - }; - "chalk-4.1.2" = { - name = "chalk"; - packageName = "chalk"; - version = "4.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"; - sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="; - }; - }; - "chokidar-3.5.1" = { - name = "chokidar"; - packageName = "chokidar"; - version = "3.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz"; - sha512 = "9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw=="; - }; - }; - "cliui-7.0.4" = { - name = "cliui"; - packageName = "cliui"; - version = "7.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz"; - sha512 = "OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ=="; - }; - }; - "color-convert-2.0.1" = { - name = "color-convert"; - packageName = "color-convert"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"; - sha512 = "RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="; - }; - }; - "color-name-1.1.4" = { - name = "color-name"; - packageName = "color-name"; - version = "1.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"; - sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; - }; - }; - "colors-1.0.3" = { - name = "colors"; - packageName = "colors"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz"; - sha512 = "pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw=="; - }; - }; - "commander-2.11.0" = { - name = "commander"; - packageName = "commander"; - version = "2.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz"; - sha512 = "b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ=="; - }; - }; - "concat-map-0.0.1" = { - name = "concat-map"; - packageName = "concat-map"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; - sha512 = "/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="; - }; - }; - "connect-3.7.0" = { - name = "connect"; - packageName = "connect"; - version = "3.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz"; - sha512 = "ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ=="; - }; - }; - "connect-ratelimit-0.0.7" = { - name = "connect-ratelimit"; - packageName = "connect-ratelimit"; - version = "0.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/connect-ratelimit/-/connect-ratelimit-0.0.7.tgz"; - sha512 = "jFZp1le7Wow92pe6RU6GvyYp3PrXUEyVJxYyzYuf0tpmvpBnTAkARQL39IbSRoioRzQUBhxqEwvSQ7ClYSfGIQ=="; - }; - }; - "connect-route-0.1.5" = { - name = "connect-route"; - packageName = "connect-route"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/connect-route/-/connect-route-0.1.5.tgz"; - sha512 = "6OZGYeoKS7zzhCAGP+Du7WYjP4geK3ii0sZlS+Oqx+ANFPcS5t/jDJr9BuhgN9qPz1ld8iahiPxNrgJyHeZ3cw=="; - }; - }; - "core-util-is-1.0.3" = { - name = "core-util-is"; - packageName = "core-util-is"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"; - sha512 = "ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="; - }; - }; - "cycle-1.0.3" = { - name = "cycle"; - packageName = "cycle"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz"; - sha512 = "TVF6svNzeQCOpjCqsy0/CSy8VgObG3wXusJ73xW2GbG5rGx7lC8zxDSURicsXI2UsGdi2L0QNRCi745/wUDvsA=="; - }; - }; - "debug-2.6.9" = { - name = "debug"; - packageName = "debug"; - version = "2.6.9"; - src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"; - sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; - }; - }; - "debug-4.3.1" = { - name = "debug"; - packageName = "debug"; - version = "4.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz"; - sha512 = "doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ=="; - }; - }; - "decamelize-4.0.0" = { - name = "decamelize"; - packageName = "decamelize"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz"; - sha512 = "9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ=="; - }; - }; - "dicer-0.2.3" = { - name = "dicer"; - packageName = "dicer"; - version = "0.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/dicer/-/dicer-0.2.3.tgz"; - sha512 = "QcKKVGYt+ZKHOoX/Ph26ua7vVMlFtPjAejtktv9/IDsfm9x3+5sVZ+H6SIS+ACWoIaJ8cPm4W4ibhiwdLDqhIA=="; - }; - }; - "diff-5.0.0" = { - name = "diff"; - packageName = "diff"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz"; - sha512 = "/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w=="; - }; - }; - "ee-first-1.1.1" = { - name = "ee-first"; - packageName = "ee-first"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"; - sha512 = "WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="; - }; - }; - "emoji-regex-8.0.0" = { - name = "emoji-regex"; - packageName = "emoji-regex"; - version = "8.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"; - sha512 = "MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="; - }; - }; - "encodeurl-1.0.2" = { - name = "encodeurl"; - packageName = "encodeurl"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"; - sha512 = "TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="; - }; - }; - "escalade-3.1.1" = { - name = "escalade"; - packageName = "escalade"; - version = "3.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"; - sha512 = "k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="; - }; - }; - "escape-html-1.0.3" = { - name = "escape-html"; - packageName = "escape-html"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"; - sha512 = "NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="; - }; - }; - "escape-string-regexp-4.0.0" = { - name = "escape-string-regexp"; - packageName = "escape-string-regexp"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"; - sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="; - }; - }; - "eyes-0.1.8" = { - name = "eyes"; - packageName = "eyes"; - version = "0.1.8"; - src = fetchurl { - url = "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz"; - sha512 = "GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ=="; - }; - }; - "fd-0.0.3" = { - name = "fd"; - packageName = "fd"; - version = "0.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/fd/-/fd-0.0.3.tgz"; - sha512 = "iAHrIslQb3U68OcMSP0kkNWabp7sSN6d2TBSb2JO3gcLJVDd4owr/hKM4SFJovFOUeeXeItjYgouEDTMWiVAnA=="; - }; - }; - "fill-range-7.0.1" = { - name = "fill-range"; - packageName = "fill-range"; - version = "7.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"; - sha512 = "qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ=="; - }; - }; - "finalhandler-1.1.2" = { - name = "finalhandler"; - packageName = "finalhandler"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz"; - sha512 = "aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="; - }; - }; - "find-up-5.0.0" = { - name = "find-up"; - packageName = "find-up"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz"; - sha512 = "78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="; - }; - }; - "flat-5.0.2" = { - name = "flat"; - packageName = "flat"; - version = "5.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz"; - sha512 = "b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ=="; - }; - }; - "fs.realpath-1.0.0" = { - name = "fs.realpath"; - packageName = "fs.realpath"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"; - sha512 = "OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="; - }; - }; - "fsevents-2.3.2" = { - name = "fsevents"; - packageName = "fsevents"; - version = "2.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"; - sha512 = "xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="; - }; - }; - "get-caller-file-2.0.5" = { - name = "get-caller-file"; - packageName = "get-caller-file"; - version = "2.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"; - sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; - }; - }; - "glob-7.1.6" = { - name = "glob"; - packageName = "glob"; - version = "7.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz"; - sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA=="; - }; - }; - "glob-parent-5.1.2" = { - name = "glob-parent"; - packageName = "glob-parent"; - version = "5.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"; - sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="; - }; - }; - "graceful-fs-4.2.10" = { - name = "graceful-fs"; - packageName = "graceful-fs"; - version = "4.2.10"; - src = fetchurl { - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz"; - sha512 = "9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="; - }; - }; - "growl-1.10.5" = { - name = "growl"; - packageName = "growl"; - version = "1.10.5"; - src = fetchurl { - url = "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz"; - sha512 = "qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA=="; - }; - }; - "has-flag-4.0.0" = { - name = "has-flag"; - packageName = "has-flag"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"; - sha512 = "EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="; - }; - }; - "he-1.2.0" = { - name = "he"; - packageName = "he"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/he/-/he-1.2.0.tgz"; - sha512 = "F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="; - }; - }; - "ieee754-1.2.1" = { - name = "ieee754"; - packageName = "ieee754"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz"; - sha512 = "dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="; - }; - }; - "inflight-1.0.6" = { - name = "inflight"; - packageName = "inflight"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"; - sha512 = "k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="; - }; - }; - "inherits-2.0.4" = { - name = "inherits"; - packageName = "inherits"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"; - sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; - }; - }; - "is-binary-path-2.1.0" = { - name = "is-binary-path"; - packageName = "is-binary-path"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz"; - sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; - }; - }; - "is-extglob-2.1.1" = { - name = "is-extglob"; - packageName = "is-extglob"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"; - sha512 = "SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="; - }; - }; - "is-fullwidth-code-point-2.0.0" = { - name = "is-fullwidth-code-point"; - packageName = "is-fullwidth-code-point"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; - sha512 = "VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w=="; - }; - }; - "is-fullwidth-code-point-3.0.0" = { - name = "is-fullwidth-code-point"; - packageName = "is-fullwidth-code-point"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"; - sha512 = "zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="; - }; - }; - "is-glob-4.0.3" = { - name = "is-glob"; - packageName = "is-glob"; - version = "4.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"; - sha512 = "xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="; - }; - }; - "is-number-7.0.0" = { - name = "is-number"; - packageName = "is-number"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"; - sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; - }; - }; - "is-plain-obj-2.1.0" = { - name = "is-plain-obj"; - packageName = "is-plain-obj"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz"; - sha512 = "YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA=="; - }; - }; - "isarray-0.0.1" = { - name = "isarray"; - packageName = "isarray"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"; - sha512 = "D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ=="; - }; - }; - "isexe-2.0.0" = { - name = "isexe"; - packageName = "isexe"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"; - sha512 = "RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="; - }; - }; - "isstream-0.1.2" = { - name = "isstream"; - packageName = "isstream"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"; - sha512 = "Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g=="; - }; - }; - "js-yaml-4.0.0" = { - name = "js-yaml"; - packageName = "js-yaml"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-4.0.0.tgz"; - sha512 = "pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q=="; - }; - }; - "locate-path-6.0.0" = { - name = "locate-path"; - packageName = "locate-path"; - version = "6.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"; - sha512 = "iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="; - }; - }; - "lodash-4.17.21" = { - name = "lodash"; - packageName = "lodash"; - version = "4.17.21"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"; - sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="; - }; - }; - "log-symbols-4.0.0" = { - name = "log-symbols"; - packageName = "log-symbols"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz"; - sha512 = "FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA=="; - }; - }; - "lru-cache-4.1.5" = { - name = "lru-cache"; - packageName = "lru-cache"; - version = "4.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz"; - sha512 = "sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g=="; - }; - }; - "mime-2.6.0" = { - name = "mime"; - packageName = "mime"; - version = "2.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz"; - sha512 = "USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg=="; - }; - }; - "minimatch-3.0.4" = { - name = "minimatch"; - packageName = "minimatch"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; - sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; - }; - }; - "mocha-8.4.0" = { - name = "mocha"; - packageName = "mocha"; - version = "8.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mocha/-/mocha-8.4.0.tgz"; - sha512 = "hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ=="; - }; - }; - "ms-2.0.0" = { - name = "ms"; - packageName = "ms"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"; - sha512 = "Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="; - }; - }; - "ms-2.1.2" = { - name = "ms"; - packageName = "ms"; - version = "2.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"; - sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; - }; - }; - "ms-2.1.3" = { - name = "ms"; - packageName = "ms"; - version = "2.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"; - sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; - }; - }; - "nanoid-3.1.20" = { - name = "nanoid"; - packageName = "nanoid"; - version = "3.1.20"; - src = fetchurl { - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz"; - sha512 = "a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw=="; - }; - }; - "negotiator-0.6.3" = { - name = "negotiator"; - packageName = "negotiator"; - version = "0.6.3"; - src = fetchurl { - url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz"; - sha512 = "+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="; - }; - }; - "normalize-path-3.0.0" = { - name = "normalize-path"; - packageName = "normalize-path"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"; - sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="; - }; - }; - "on-finished-2.3.0" = { - name = "on-finished"; - packageName = "on-finished"; - version = "2.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz"; - sha512 = "ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww=="; - }; - }; - "once-1.4.0" = { - name = "once"; - packageName = "once"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; - sha512 = "lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="; - }; - }; - "p-limit-3.1.0" = { - name = "p-limit"; - packageName = "p-limit"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"; - sha512 = "TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="; - }; - }; - "p-locate-5.0.0" = { - name = "p-locate"; - packageName = "p-locate"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz"; - sha512 = "LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="; - }; - }; - "packet-reader-1.0.0" = { - name = "packet-reader"; - packageName = "packet-reader"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/packet-reader/-/packet-reader-1.0.0.tgz"; - sha512 = "HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ=="; - }; - }; - "parseurl-1.3.3" = { - name = "parseurl"; - packageName = "parseurl"; - version = "1.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz"; - sha512 = "CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="; - }; - }; - "path-exists-4.0.0" = { - name = "path-exists"; - packageName = "path-exists"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"; - sha512 = "ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="; - }; - }; - "path-is-absolute-1.0.1" = { - name = "path-is-absolute"; - packageName = "path-is-absolute"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; - sha512 = "AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="; - }; - }; - "pg-8.10.0" = { - name = "pg"; - packageName = "pg"; - version = "8.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pg/-/pg-8.10.0.tgz"; - sha512 = "ke7o7qSTMb47iwzOSaZMfeR7xToFdkE71ifIipOAAaLIM0DYzfOAXlgFFmYUIE2BcJtvnVlGCID84ZzCegE8CQ=="; - }; - }; - "pg-connection-string-2.5.0" = { - name = "pg-connection-string"; - packageName = "pg-connection-string"; - version = "2.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.5.0.tgz"; - sha512 = "r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ=="; - }; - }; - "pg-int8-1.0.1" = { - name = "pg-int8"; - packageName = "pg-int8"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz"; - sha512 = "WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw=="; - }; - }; - "pg-pool-3.6.0" = { - name = "pg-pool"; - packageName = "pg-pool"; - version = "3.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.0.tgz"; - sha512 = "clFRf2ksqd+F497kWFyM21tMjeikn60oGDmqMT8UBrynEwVEX/5R5xd2sdvdo1cZCFlguORNpVuqxIj+aK4cfQ=="; - }; - }; - "pg-protocol-1.6.0" = { - name = "pg-protocol"; - packageName = "pg-protocol"; - version = "1.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.0.tgz"; - sha512 = "M+PDm637OY5WM307051+bsDia5Xej6d9IR4GwJse1qA1DIhiKlksvrneZOYQq42OM+spubpcNYEo2FcKQrDk+Q=="; - }; - }; - "pg-types-2.2.0" = { - name = "pg-types"; - packageName = "pg-types"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz"; - sha512 = "qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA=="; - }; - }; - "pgpass-1.0.5" = { - name = "pgpass"; - packageName = "pgpass"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz"; - sha512 = "FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug=="; - }; - }; - "picomatch-2.3.1" = { - name = "picomatch"; - packageName = "picomatch"; - version = "2.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"; - sha512 = "JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="; - }; - }; - "postgres-array-2.0.0" = { - name = "postgres-array"; - packageName = "postgres-array"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz"; - sha512 = "VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA=="; - }; - }; - "postgres-bytea-1.0.0" = { - name = "postgres-bytea"; - packageName = "postgres-bytea"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz"; - sha512 = "xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w=="; - }; - }; - "postgres-date-1.0.7" = { - name = "postgres-date"; - packageName = "postgres-date"; - version = "1.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz"; - sha512 = "suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q=="; - }; - }; - "postgres-interval-1.2.0" = { - name = "postgres-interval"; - packageName = "postgres-interval"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz"; - sha512 = "9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ=="; - }; - }; - "pseudomap-1.0.2" = { - name = "pseudomap"; - packageName = "pseudomap"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"; - sha512 = "b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ=="; - }; - }; - "randombytes-2.1.0" = { - name = "randombytes"; - packageName = "randombytes"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz"; - sha512 = "vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ=="; - }; - }; - "readable-stream-1.1.14" = { - name = "readable-stream"; - packageName = "readable-stream"; - version = "1.1.14"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz"; - sha512 = "+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ=="; - }; - }; - "readable-stream-3.6.1" = { - name = "readable-stream"; - packageName = "readable-stream"; - version = "3.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.1.tgz"; - sha512 = "+rQmrWMYGA90yenhTYsLWAsLsqVC8osOw6PKE1HDYiO0gdPeKe/xDHNzIAIn4C91YQ6oenEhfYqqc1883qHbjQ=="; - }; - }; - "readdirp-3.5.0" = { - name = "readdirp"; - packageName = "readdirp"; - version = "3.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz"; - sha512 = "cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ=="; - }; - }; - "redis-0.8.1" = { - name = "redis"; - packageName = "redis"; - version = "0.8.1"; - src = fetchurl { - url = "https://registry.npmjs.org/redis/-/redis-0.8.1.tgz"; - sha512 = "XiXVEcXsJ6N71BAltCQ5vDOPhWeFyIaOqInVpXnRghK0WAc7ZPwXEjX6rkBCrlsnX6gXOPvsUvAzb5KhvajbiQ=="; - }; - }; - "redis-url-0.1.0" = { - name = "redis-url"; - packageName = "redis-url"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/redis-url/-/redis-url-0.1.0.tgz"; - sha512 = "LVc0kybiwS2FY0uhe7Pjs4hGqHE+ygI3v7WQu+Qmr3acJ5atGid6vc98e2S9FoyIwfAekGWRwBFoRHxJnqW0Qw=="; - }; - }; - "require-directory-2.1.1" = { - name = "require-directory"; - packageName = "require-directory"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"; - sha512 = "fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="; - }; - }; - "safe-buffer-5.2.1" = { - name = "safe-buffer"; - packageName = "safe-buffer"; - version = "5.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"; - sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; - }; - }; - "serialize-javascript-5.0.1" = { - name = "serialize-javascript"; - packageName = "serialize-javascript"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz"; - sha512 = "SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA=="; - }; - }; - "source-map-0.6.1" = { - name = "source-map"; - packageName = "source-map"; - version = "0.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"; - sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="; - }; - }; - "split2-4.1.0" = { - name = "split2"; - packageName = "split2"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/split2/-/split2-4.1.0.tgz"; - sha512 = "VBiJxFkxiXRlUIeyMQi8s4hgvKCSjtknJv/LVYbrgALPwf5zSKmEwV9Lst25AkvMDnvxODugjdl6KZgwKM1WYQ=="; - }; - }; - "st-2.0.0" = { - name = "st"; - packageName = "st"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/st/-/st-2.0.0.tgz"; - sha512 = "drN+aGYnrZPNYIymmNwIY7LXYJ8MqsqXj4fMRue3FOgGMdGjSX10fhJ3qx0sVQPhcWxhEaN4U/eWM4O4dbYNAw=="; - }; - }; - "stack-trace-0.0.10" = { - name = "stack-trace"; - packageName = "stack-trace"; - version = "0.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz"; - sha512 = "KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg=="; - }; - }; - "statuses-1.5.0" = { - name = "statuses"; - packageName = "statuses"; - version = "1.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz"; - sha512 = "OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA=="; - }; - }; - "streamsearch-0.1.2" = { - name = "streamsearch"; - packageName = "streamsearch"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz"; - sha512 = "jos8u++JKm0ARcSUTAZXOVC0mSox7Bhn6sBgty73P1f3JGf7yG2clTbBNHUdde/kdvP2FESam+vM6l8jBrNxHA=="; - }; - }; - "string-width-2.1.1" = { - name = "string-width"; - packageName = "string-width"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"; - sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw=="; - }; - }; - "string-width-4.2.3" = { - name = "string-width"; - packageName = "string-width"; - version = "4.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"; - sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; - }; - }; - "string_decoder-0.10.31" = { - name = "string_decoder"; - packageName = "string_decoder"; - version = "0.10.31"; - src = fetchurl { - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"; - sha512 = "ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ=="; - }; - }; - "string_decoder-1.3.0" = { - name = "string_decoder"; - packageName = "string_decoder"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"; - sha512 = "hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="; - }; - }; - "strip-ansi-4.0.0" = { - name = "strip-ansi"; - packageName = "strip-ansi"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz"; - sha512 = "4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow=="; - }; - }; - "strip-ansi-6.0.1" = { - name = "strip-ansi"; - packageName = "strip-ansi"; - version = "6.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"; - sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; - }; - }; - "strip-json-comments-3.1.1" = { - name = "strip-json-comments"; - packageName = "strip-json-comments"; - version = "3.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"; - sha512 = "6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="; - }; - }; - "supports-color-7.2.0" = { - name = "supports-color"; - packageName = "supports-color"; - version = "7.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"; - sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="; - }; - }; - "supports-color-8.1.1" = { - name = "supports-color"; - packageName = "supports-color"; - version = "8.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz"; - sha512 = "MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="; - }; - }; - "to-regex-range-5.0.1" = { - name = "to-regex-range"; - packageName = "to-regex-range"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"; - sha512 = "65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="; - }; - }; - "uglify-js-3.1.6" = { - name = "uglify-js"; - packageName = "uglify-js"; - version = "3.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.1.6.tgz"; - sha512 = "/rseyxEKEVMBo8279lqpoJgD6C/i/CIi+9TJDvWmb+Xo6mqMKwjA8Io3IMHlcXQzj99feR6zrN8m3wqqvm/nYA=="; - }; - }; - "unpipe-1.0.0" = { - name = "unpipe"; - packageName = "unpipe"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"; - sha512 = "pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ=="; - }; - }; - "util-deprecate-1.0.2" = { - name = "util-deprecate"; - packageName = "util-deprecate"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; - sha512 = "EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="; - }; - }; - "utils-merge-1.0.1" = { - name = "utils-merge"; - packageName = "utils-merge"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"; - sha512 = "pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA=="; - }; - }; - "which-2.0.2" = { - name = "which"; - packageName = "which"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/which/-/which-2.0.2.tgz"; - sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="; - }; - }; - "wide-align-1.1.3" = { - name = "wide-align"; - packageName = "wide-align"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz"; - sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA=="; - }; - }; - "winston-2.4.7" = { - name = "winston"; - packageName = "winston"; - version = "2.4.7"; - src = fetchurl { - url = "https://registry.npmjs.org/winston/-/winston-2.4.7.tgz"; - sha512 = "vLB4BqzCKDnnZH9PHGoS2ycawueX4HLqENXQitvFHczhgW2vFpSOn31LZtVr1KU8YTw7DS4tM+cqyovxo8taVg=="; - }; - }; - "workerpool-6.1.0" = { - name = "workerpool"; - packageName = "workerpool"; - version = "6.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/workerpool/-/workerpool-6.1.0.tgz"; - sha512 = "toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg=="; - }; - }; - "wrap-ansi-7.0.0" = { - name = "wrap-ansi"; - packageName = "wrap-ansi"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"; - sha512 = "YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="; - }; - }; - "wrappy-1.0.2" = { - name = "wrappy"; - packageName = "wrappy"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"; - sha512 = "l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="; - }; - }; - "xtend-4.0.2" = { - name = "xtend"; - packageName = "xtend"; - version = "4.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"; - sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; - }; - }; - "y18n-5.0.8" = { - name = "y18n"; - packageName = "y18n"; - version = "5.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz"; - sha512 = "0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="; - }; - }; - "yallist-2.1.2" = { - name = "yallist"; - packageName = "yallist"; - version = "2.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"; - sha512 = "ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A=="; - }; - }; - "yargs-16.2.0" = { - name = "yargs"; - packageName = "yargs"; - version = "16.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz"; - sha512 = "D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw=="; - }; - }; - "yargs-parser-20.2.4" = { - name = "yargs-parser"; - packageName = "yargs-parser"; - version = "20.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz"; - sha512 = "WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA=="; - }; - }; - "yargs-unparser-2.0.0" = { - name = "yargs-unparser"; - packageName = "yargs-unparser"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz"; - sha512 = "7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA=="; - }; - }; - "yocto-queue-0.1.0" = { - name = "yocto-queue"; - packageName = "yocto-queue"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz"; - sha512 = "rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="; - }; - }; - }; - args = { - name = "haste"; - packageName = "haste"; - version = "0.1.0"; - src = ../../../../../../../../../nix/store/v45nw2igqcjw58j7ns9xrqj6f6n3jafd-source; - dependencies = [ - sources."@ungap/promise-all-settled-1.1.2" - sources."ansi-colors-4.1.1" - sources."ansi-regex-3.0.1" - sources."ansi-styles-4.3.0" - sources."anymatch-3.1.3" - sources."argparse-2.0.1" - sources."async-2.6.4" - sources."async-cache-1.1.0" - sources."balanced-match-1.0.2" - sources."base64-js-1.5.1" - sources."binary-extensions-2.2.0" - (sources."bl-4.1.0" // { - dependencies = [ - sources."readable-stream-3.6.1" - sources."string_decoder-1.3.0" - ]; - }) - sources."brace-expansion-1.1.11" - sources."braces-3.0.2" - sources."browser-stdout-1.3.1" - sources."buffer-5.7.1" - sources."buffer-writer-2.0.0" - sources."busboy-0.2.4" - sources."camelcase-6.3.0" - (sources."chalk-4.1.2" // { - dependencies = [ - sources."supports-color-7.2.0" - ]; - }) - sources."chokidar-3.5.1" - (sources."cliui-7.0.4" // { - dependencies = [ - sources."ansi-regex-5.0.1" - sources."is-fullwidth-code-point-3.0.0" - sources."string-width-4.2.3" - sources."strip-ansi-6.0.1" - ]; - }) - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."colors-1.0.3" - sources."commander-2.11.0" - sources."concat-map-0.0.1" - sources."connect-3.7.0" - sources."connect-ratelimit-0.0.7" - sources."connect-route-0.1.5" - sources."core-util-is-1.0.3" - sources."cycle-1.0.3" - sources."debug-2.6.9" - sources."decamelize-4.0.0" - sources."dicer-0.2.3" - sources."diff-5.0.0" - sources."ee-first-1.1.1" - sources."emoji-regex-8.0.0" - sources."encodeurl-1.0.2" - sources."escalade-3.1.1" - sources."escape-html-1.0.3" - sources."escape-string-regexp-4.0.0" - sources."eyes-0.1.8" - sources."fd-0.0.3" - sources."fill-range-7.0.1" - sources."finalhandler-1.1.2" - sources."find-up-5.0.0" - sources."flat-5.0.2" - sources."fs.realpath-1.0.0" - sources."fsevents-2.3.2" - sources."get-caller-file-2.0.5" - sources."glob-7.1.6" - sources."glob-parent-5.1.2" - sources."graceful-fs-4.2.10" - sources."growl-1.10.5" - sources."has-flag-4.0.0" - sources."he-1.2.0" - sources."ieee754-1.2.1" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."is-binary-path-2.1.0" - sources."is-extglob-2.1.1" - sources."is-fullwidth-code-point-2.0.0" - sources."is-glob-4.0.3" - sources."is-number-7.0.0" - sources."is-plain-obj-2.1.0" - sources."isarray-0.0.1" - sources."isexe-2.0.0" - sources."isstream-0.1.2" - sources."js-yaml-4.0.0" - sources."locate-path-6.0.0" - sources."lodash-4.17.21" - sources."log-symbols-4.0.0" - sources."lru-cache-4.1.5" - sources."mime-2.6.0" - sources."minimatch-3.0.4" - (sources."mocha-8.4.0" // { - dependencies = [ - (sources."debug-4.3.1" // { - dependencies = [ - sources."ms-2.1.2" - ]; - }) - sources."ms-2.1.3" - ]; - }) - sources."ms-2.0.0" - sources."nanoid-3.1.20" - sources."negotiator-0.6.3" - sources."normalize-path-3.0.0" - sources."on-finished-2.3.0" - sources."once-1.4.0" - sources."p-limit-3.1.0" - sources."p-locate-5.0.0" - sources."packet-reader-1.0.0" - sources."parseurl-1.3.3" - sources."path-exists-4.0.0" - sources."path-is-absolute-1.0.1" - sources."pg-8.10.0" - sources."pg-connection-string-2.5.0" - sources."pg-int8-1.0.1" - sources."pg-pool-3.6.0" - sources."pg-protocol-1.6.0" - sources."pg-types-2.2.0" - sources."pgpass-1.0.5" - sources."picomatch-2.3.1" - sources."postgres-array-2.0.0" - sources."postgres-bytea-1.0.0" - sources."postgres-date-1.0.7" - sources."postgres-interval-1.2.0" - sources."pseudomap-1.0.2" - sources."randombytes-2.1.0" - sources."readable-stream-1.1.14" - sources."readdirp-3.5.0" - sources."redis-0.8.1" - sources."redis-url-0.1.0" - sources."require-directory-2.1.1" - sources."safe-buffer-5.2.1" - sources."serialize-javascript-5.0.1" - sources."source-map-0.6.1" - sources."split2-4.1.0" - sources."st-2.0.0" - sources."stack-trace-0.0.10" - sources."statuses-1.5.0" - sources."streamsearch-0.1.2" - sources."string-width-2.1.1" - sources."string_decoder-0.10.31" - sources."strip-ansi-4.0.0" - sources."strip-json-comments-3.1.1" - sources."supports-color-8.1.1" - sources."to-regex-range-5.0.1" - sources."uglify-js-3.1.6" - sources."unpipe-1.0.0" - sources."util-deprecate-1.0.2" - sources."utils-merge-1.0.1" - sources."which-2.0.2" - sources."wide-align-1.1.3" - sources."winston-2.4.7" - sources."workerpool-6.1.0" - (sources."wrap-ansi-7.0.0" // { - dependencies = [ - sources."ansi-regex-5.0.1" - sources."is-fullwidth-code-point-3.0.0" - sources."string-width-4.2.3" - sources."strip-ansi-6.0.1" - ]; - }) - sources."wrappy-1.0.2" - sources."xtend-4.0.2" - sources."y18n-5.0.8" - sources."yallist-2.1.2" - (sources."yargs-16.2.0" // { - dependencies = [ - sources."ansi-regex-5.0.1" - sources."is-fullwidth-code-point-3.0.0" - sources."string-width-4.2.3" - sources."strip-ansi-6.0.1" - ]; - }) - sources."yargs-parser-20.2.4" - sources."yargs-unparser-2.0.0" - sources."yocto-queue-0.1.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Private Pastebin Server"; - }; - production = false; - bypassCache = true; - reconstructLock = true; - }; -in -{ - args = args; - sources = sources; - tarball = nodeEnv.buildNodeSourceDist args; - package = nodeEnv.buildNodePackage args; - shell = nodeEnv.buildNodeShell args; - nodeDependencies = nodeEnv.buildNodeDependencies (lib.overrideExisting args { - src = stdenv.mkDerivation { - name = args.name + "-package-json"; - src = nix-gitignore.gitignoreSourcePure [ - "*" - "!package.json" - "!package-lock.json" - ] args.src; - dontBuild = true; - installPhase = "mkdir -p $out; cp -r ./* $out;"; - }; - }); -} diff --git a/pkgs/servers/haste-server/node-env.nix b/pkgs/servers/haste-server/node-env.nix deleted file mode 100644 index 5dad9ec63d47..000000000000 --- a/pkgs/servers/haste-server/node-env.nix +++ /dev/null @@ -1,686 +0,0 @@ -# This file originates from node2nix - -{lib, stdenv, nodejs, python2, pkgs, libtool, runCommand, writeTextFile, writeShellScript}: - -let - # Workaround to cope with utillinux in Nixpkgs 20.09 and util-linux in Nixpkgs master - utillinux = if pkgs ? utillinux then pkgs.utillinux else pkgs.util-linux; - - python = if nodejs ? python then nodejs.python else python2; - - # Create a tar wrapper that filters all the 'Ignoring unknown extended header keyword' noise - tarWrapper = runCommand "tarWrapper" {} '' - mkdir -p $out/bin - - cat > $out/bin/tar <> $out/nix-support/hydra-build-products - ''; - }; - - # Common shell logic - installPackage = writeShellScript "install-package" '' - installPackage() { - local packageName=$1 src=$2 - - local strippedName - - local DIR=$PWD - cd $TMPDIR - - unpackFile $src - - # Make the base dir in which the target dependency resides first - mkdir -p "$(dirname "$DIR/$packageName")" - - if [ -f "$src" ] - then - # Figure out what directory has been unpacked - packageDir="$(find . -maxdepth 1 -type d | tail -1)" - - # Restore write permissions to make building work - find "$packageDir" -type d -exec chmod u+x {} \; - chmod -R u+w "$packageDir" - - # Move the extracted tarball into the output folder - mv "$packageDir" "$DIR/$packageName" - elif [ -d "$src" ] - then - # Get a stripped name (without hash) of the source directory. - # On old nixpkgs it's already set internally. - if [ -z "$strippedName" ] - then - strippedName="$(stripHash $src)" - fi - - # Restore write permissions to make building work - chmod -R u+w "$strippedName" - - # Move the extracted directory into the output folder - mv "$strippedName" "$DIR/$packageName" - fi - - # Change to the package directory to install dependencies - cd "$DIR/$packageName" - } - ''; - - # Bundle the dependencies of the package - # - # Only include dependencies if they don't exist. They may also be bundled in the package. - includeDependencies = {dependencies}: - lib.optionalString (dependencies != []) ( - '' - mkdir -p node_modules - cd node_modules - '' - + (lib.concatMapStrings (dependency: - '' - if [ ! -e "${dependency.packageName}" ]; then - ${composePackage dependency} - fi - '' - ) dependencies) - + '' - cd .. - '' - ); - - # Recursively composes the dependencies of a package - composePackage = { name, packageName, src, dependencies ? [], ... }@args: - builtins.addErrorContext "while evaluating node package '${packageName}'" '' - installPackage "${packageName}" "${src}" - ${includeDependencies { inherit dependencies; }} - cd .. - ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} - ''; - - pinpointDependencies = {dependencies, production}: - let - pinpointDependenciesFromPackageJSON = writeTextFile { - name = "pinpointDependencies.js"; - text = '' - var fs = require('fs'); - var path = require('path'); - - function resolveDependencyVersion(location, name) { - if(location == process.env['NIX_STORE']) { - return null; - } else { - var dependencyPackageJSON = path.join(location, "node_modules", name, "package.json"); - - if(fs.existsSync(dependencyPackageJSON)) { - var dependencyPackageObj = JSON.parse(fs.readFileSync(dependencyPackageJSON)); - - if(dependencyPackageObj.name == name) { - return dependencyPackageObj.version; - } - } else { - return resolveDependencyVersion(path.resolve(location, ".."), name); - } - } - } - - function replaceDependencies(dependencies) { - if(typeof dependencies == "object" && dependencies !== null) { - for(var dependency in dependencies) { - var resolvedVersion = resolveDependencyVersion(process.cwd(), dependency); - - if(resolvedVersion === null) { - process.stderr.write("WARNING: cannot pinpoint dependency: "+dependency+", context: "+process.cwd()+"\n"); - } else { - dependencies[dependency] = resolvedVersion; - } - } - } - } - - /* Read the package.json configuration */ - var packageObj = JSON.parse(fs.readFileSync('./package.json')); - - /* Pinpoint all dependencies */ - replaceDependencies(packageObj.dependencies); - if(process.argv[2] == "development") { - replaceDependencies(packageObj.devDependencies); - } - else { - packageObj.devDependencies = {}; - } - replaceDependencies(packageObj.optionalDependencies); - replaceDependencies(packageObj.peerDependencies); - - /* Write the fixed package.json file */ - fs.writeFileSync("package.json", JSON.stringify(packageObj, null, 2)); - ''; - }; - in - '' - node ${pinpointDependenciesFromPackageJSON} ${if production then "production" else "development"} - - ${lib.optionalString (dependencies != []) - '' - if [ -d node_modules ] - then - cd node_modules - ${lib.concatMapStrings (dependency: pinpointDependenciesOfPackage dependency) dependencies} - cd .. - fi - ''} - ''; - - # Recursively traverses all dependencies of a package and pinpoints all - # dependencies in the package.json file to the versions that are actually - # being used. - - pinpointDependenciesOfPackage = { packageName, dependencies ? [], production ? true, ... }@args: - '' - if [ -d "${packageName}" ] - then - cd "${packageName}" - ${pinpointDependencies { inherit dependencies production; }} - cd .. - ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} - fi - ''; - - # Extract the Node.js source code which is used to compile packages with - # native bindings - nodeSources = runCommand "node-sources" {} '' - tar --no-same-owner --no-same-permissions -xf ${nodejs.src} - mv node-* $out - ''; - - # Script that adds _integrity fields to all package.json files to prevent NPM from consulting the cache (that is empty) - addIntegrityFieldsScript = writeTextFile { - name = "addintegrityfields.js"; - text = '' - var fs = require('fs'); - var path = require('path'); - - function augmentDependencies(baseDir, dependencies) { - for(var dependencyName in dependencies) { - var dependency = dependencies[dependencyName]; - - // Open package.json and augment metadata fields - var packageJSONDir = path.join(baseDir, "node_modules", dependencyName); - var packageJSONPath = path.join(packageJSONDir, "package.json"); - - if(fs.existsSync(packageJSONPath)) { // Only augment packages that exist. Sometimes we may have production installs in which development dependencies can be ignored - console.log("Adding metadata fields to: "+packageJSONPath); - var packageObj = JSON.parse(fs.readFileSync(packageJSONPath)); - - if(dependency.integrity) { - packageObj["_integrity"] = dependency.integrity; - } else { - packageObj["_integrity"] = "sha1-000000000000000000000000000="; // When no _integrity string has been provided (e.g. by Git dependencies), add a dummy one. It does not seem to harm and it bypasses downloads. - } - - if(dependency.resolved) { - packageObj["_resolved"] = dependency.resolved; // Adopt the resolved property if one has been provided - } else { - packageObj["_resolved"] = dependency.version; // Set the resolved version to the version identifier. This prevents NPM from cloning Git repositories. - } - - if(dependency.from !== undefined) { // Adopt from property if one has been provided - packageObj["_from"] = dependency.from; - } - - fs.writeFileSync(packageJSONPath, JSON.stringify(packageObj, null, 2)); - } - - // Augment transitive dependencies - if(dependency.dependencies !== undefined) { - augmentDependencies(packageJSONDir, dependency.dependencies); - } - } - } - - if(fs.existsSync("./package-lock.json")) { - var packageLock = JSON.parse(fs.readFileSync("./package-lock.json")); - - if(![1, 2].includes(packageLock.lockfileVersion)) { - process.stderr.write("Sorry, I only understand lock file versions 1 and 2!\n"); - process.exit(1); - } - - if(packageLock.dependencies !== undefined) { - augmentDependencies(".", packageLock.dependencies); - } - } - ''; - }; - - # Reconstructs a package-lock file from the node_modules/ folder structure and package.json files with dummy sha1 hashes - reconstructPackageLock = writeTextFile { - name = "reconstructpackagelock.js"; - text = '' - var fs = require('fs'); - var path = require('path'); - - var packageObj = JSON.parse(fs.readFileSync("package.json")); - - var lockObj = { - name: packageObj.name, - version: packageObj.version, - lockfileVersion: 2, - requires: true, - packages: { - "": { - name: packageObj.name, - version: packageObj.version, - license: packageObj.license, - bin: packageObj.bin, - dependencies: packageObj.dependencies, - engines: packageObj.engines, - optionalDependencies: packageObj.optionalDependencies - } - }, - dependencies: {} - }; - - function augmentPackageJSON(filePath, packages, dependencies) { - var packageJSON = path.join(filePath, "package.json"); - if(fs.existsSync(packageJSON)) { - var packageObj = JSON.parse(fs.readFileSync(packageJSON)); - packages[filePath] = { - version: packageObj.version, - integrity: "sha1-000000000000000000000000000=", - dependencies: packageObj.dependencies, - engines: packageObj.engines, - optionalDependencies: packageObj.optionalDependencies - }; - dependencies[packageObj.name] = { - version: packageObj.version, - integrity: "sha1-000000000000000000000000000=", - dependencies: {} - }; - processDependencies(path.join(filePath, "node_modules"), packages, dependencies[packageObj.name].dependencies); - } - } - - function processDependencies(dir, packages, dependencies) { - if(fs.existsSync(dir)) { - var files = fs.readdirSync(dir); - - files.forEach(function(entry) { - var filePath = path.join(dir, entry); - var stats = fs.statSync(filePath); - - if(stats.isDirectory()) { - if(entry.substr(0, 1) == "@") { - // When we encounter a namespace folder, augment all packages belonging to the scope - var pkgFiles = fs.readdirSync(filePath); - - pkgFiles.forEach(function(entry) { - if(stats.isDirectory()) { - var pkgFilePath = path.join(filePath, entry); - augmentPackageJSON(pkgFilePath, packages, dependencies); - } - }); - } else { - augmentPackageJSON(filePath, packages, dependencies); - } - } - }); - } - } - - processDependencies("node_modules", lockObj.packages, lockObj.dependencies); - - fs.writeFileSync("package-lock.json", JSON.stringify(lockObj, null, 2)); - ''; - }; - - # Script that links bins defined in package.json to the node_modules bin directory - # NPM does not do this for top-level packages itself anymore as of v7 - linkBinsScript = writeTextFile { - name = "linkbins.js"; - text = '' - var fs = require('fs'); - var path = require('path'); - - var packageObj = JSON.parse(fs.readFileSync("package.json")); - - var nodeModules = Array(packageObj.name.split("/").length).fill("..").join(path.sep); - - if(packageObj.bin !== undefined) { - fs.mkdirSync(path.join(nodeModules, ".bin")) - - if(typeof packageObj.bin == "object") { - Object.keys(packageObj.bin).forEach(function(exe) { - if(fs.existsSync(packageObj.bin[exe])) { - console.log("linking bin '" + exe + "'"); - fs.symlinkSync( - path.join("..", packageObj.name, packageObj.bin[exe]), - path.join(nodeModules, ".bin", exe) - ); - } - else { - console.log("skipping non-existent bin '" + exe + "'"); - } - }) - } - else { - if(fs.existsSync(packageObj.bin)) { - console.log("linking bin '" + packageObj.bin + "'"); - fs.symlinkSync( - path.join("..", packageObj.name, packageObj.bin), - path.join(nodeModules, ".bin", packageObj.name.split("/").pop()) - ); - } - else { - console.log("skipping non-existent bin '" + packageObj.bin + "'"); - } - } - } - else if(packageObj.directories !== undefined && packageObj.directories.bin !== undefined) { - fs.mkdirSync(path.join(nodeModules, ".bin")) - - fs.readdirSync(packageObj.directories.bin).forEach(function(exe) { - if(fs.existsSync(path.join(packageObj.directories.bin, exe))) { - console.log("linking bin '" + exe + "'"); - fs.symlinkSync( - path.join("..", packageObj.name, packageObj.directories.bin, exe), - path.join(nodeModules, ".bin", exe) - ); - } - else { - console.log("skipping non-existent bin '" + exe + "'"); - } - }) - } - ''; - }; - - prepareAndInvokeNPM = {packageName, bypassCache, reconstructLock, npmFlags, production}: - let - forceOfflineFlag = if bypassCache then "--offline" else "--registry http://www.example.com"; - in - '' - # Pinpoint the versions of all dependencies to the ones that are actually being used - echo "pinpointing versions of dependencies..." - source $pinpointDependenciesScriptPath - - # Patch the shebangs of the bundled modules to prevent them from - # calling executables outside the Nix store as much as possible - patchShebangs . - - # Deploy the Node.js package by running npm install. Since the - # dependencies have been provided already by ourselves, it should not - # attempt to install them again, which is good, because we want to make - # it Nix's responsibility. If it needs to install any dependencies - # anyway (e.g. because the dependency parameters are - # incomplete/incorrect), it fails. - # - # The other responsibilities of NPM are kept -- version checks, build - # steps, postprocessing etc. - - export HOME=$TMPDIR - cd "${packageName}" - runHook preRebuild - - ${lib.optionalString bypassCache '' - ${lib.optionalString reconstructLock '' - if [ -f package-lock.json ] - then - echo "WARNING: Reconstruct lock option enabled, but a lock file already exists!" - echo "This will most likely result in version mismatches! We will remove the lock file and regenerate it!" - rm package-lock.json - else - echo "No package-lock.json file found, reconstructing..." - fi - - node ${reconstructPackageLock} - ''} - - node ${addIntegrityFieldsScript} - ''} - - npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${lib.optionalString production "--production"} rebuild - - runHook postRebuild - - if [ "''${dontNpmInstall-}" != "1" ] - then - # NPM tries to download packages even when they already exist if npm-shrinkwrap is used. - rm -f npm-shrinkwrap.json - - npm ${forceOfflineFlag} --nodedir=${nodeSources} --no-bin-links --ignore-scripts ${npmFlags} ${lib.optionalString production "--production"} install - fi - - # Link executables defined in package.json - node ${linkBinsScript} - ''; - - # Builds and composes an NPM package including all its dependencies - buildNodePackage = - { name - , packageName - , version ? null - , dependencies ? [] - , buildInputs ? [] - , production ? true - , npmFlags ? "" - , dontNpmInstall ? false - , bypassCache ? false - , reconstructLock ? false - , preRebuild ? "" - , dontStrip ? true - , unpackPhase ? "true" - , buildPhase ? "true" - , meta ? {} - , ... }@args: - - let - extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" "meta" ]; - in - stdenv.mkDerivation ({ - name = "${name}${if version == null then "" else "-${version}"}"; - buildInputs = [ tarWrapper python nodejs ] - ++ lib.optional (stdenv.isLinux) utillinux - ++ lib.optional (stdenv.isDarwin) libtool - ++ buildInputs; - - inherit nodejs; - - inherit dontStrip; # Stripping may fail a build for some package deployments - inherit dontNpmInstall preRebuild unpackPhase buildPhase; - - compositionScript = composePackage args; - pinpointDependenciesScript = pinpointDependenciesOfPackage args; - - passAsFile = [ "compositionScript" "pinpointDependenciesScript" ]; - - installPhase = '' - source ${installPackage} - - # Create and enter a root node_modules/ folder - mkdir -p $out/lib/node_modules - cd $out/lib/node_modules - - # Compose the package and all its dependencies - source $compositionScriptPath - - ${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }} - - # Create symlink to the deployed executable folder, if applicable - if [ -d "$out/lib/node_modules/.bin" ] - then - ln -s $out/lib/node_modules/.bin $out/bin - - # Patch the shebang lines of all the executables - ls $out/bin/* | while read i - do - file="$(readlink -f "$i")" - chmod u+rwx "$file" - patchShebangs "$file" - done - fi - - # Create symlinks to the deployed manual page folders, if applicable - if [ -d "$out/lib/node_modules/${packageName}/man" ] - then - mkdir -p $out/share - for dir in "$out/lib/node_modules/${packageName}/man/"* - do - mkdir -p $out/share/man/$(basename "$dir") - for page in "$dir"/* - do - ln -s $page $out/share/man/$(basename "$dir") - done - done - fi - - # Run post install hook, if provided - runHook postInstall - ''; - - meta = { - # default to Node.js' platforms - platforms = nodejs.meta.platforms; - } // meta; - } // extraArgs); - - # Builds a node environment (a node_modules folder and a set of binaries) - buildNodeDependencies = - { name - , packageName - , version ? null - , src - , dependencies ? [] - , buildInputs ? [] - , production ? true - , npmFlags ? "" - , dontNpmInstall ? false - , bypassCache ? false - , reconstructLock ? false - , dontStrip ? true - , unpackPhase ? "true" - , buildPhase ? "true" - , ... }@args: - - let - extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" ]; - in - stdenv.mkDerivation ({ - name = "node-dependencies-${name}${if version == null then "" else "-${version}"}"; - - buildInputs = [ tarWrapper python nodejs ] - ++ lib.optional (stdenv.isLinux) utillinux - ++ lib.optional (stdenv.isDarwin) libtool - ++ buildInputs; - - inherit dontStrip; # Stripping may fail a build for some package deployments - inherit dontNpmInstall unpackPhase buildPhase; - - includeScript = includeDependencies { inherit dependencies; }; - pinpointDependenciesScript = pinpointDependenciesOfPackage args; - - passAsFile = [ "includeScript" "pinpointDependenciesScript" ]; - - installPhase = '' - source ${installPackage} - - mkdir -p $out/${packageName} - cd $out/${packageName} - - source $includeScriptPath - - # Create fake package.json to make the npm commands work properly - cp ${src}/package.json . - chmod 644 package.json - ${lib.optionalString bypassCache '' - if [ -f ${src}/package-lock.json ] - then - cp ${src}/package-lock.json . - chmod 644 package-lock.json - fi - ''} - - # Go to the parent folder to make sure that all packages are pinpointed - cd .. - ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} - - ${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }} - - # Expose the executables that were installed - cd .. - ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} - - mv ${packageName} lib - ln -s $out/lib/node_modules/.bin $out/bin - ''; - } // extraArgs); - - # Builds a development shell - buildNodeShell = - { name - , packageName - , version ? null - , src - , dependencies ? [] - , buildInputs ? [] - , production ? true - , npmFlags ? "" - , dontNpmInstall ? false - , bypassCache ? false - , reconstructLock ? false - , dontStrip ? true - , unpackPhase ? "true" - , buildPhase ? "true" - , ... }@args: - - let - nodeDependencies = buildNodeDependencies args; - extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "unpackPhase" "buildPhase" ]; - in - stdenv.mkDerivation ({ - name = "node-shell-${name}${if version == null then "" else "-${version}"}"; - - buildInputs = [ python nodejs ] ++ lib.optional (stdenv.isLinux) utillinux ++ buildInputs; - buildCommand = '' - mkdir -p $out/bin - cat > $out/bin/shell < Date: Wed, 13 Sep 2023 01:44:15 +0000 Subject: [PATCH 201/346] netbird: 0.22.7 -> 0.23.1 --- pkgs/tools/networking/netbird/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/netbird/default.nix b/pkgs/tools/networking/netbird/default.nix index 97a53e882c70..6e90bd64a433 100644 --- a/pkgs/tools/networking/netbird/default.nix +++ b/pkgs/tools/networking/netbird/default.nix @@ -30,13 +30,13 @@ let in buildGoModule rec { pname = "netbird"; - version = "0.22.7"; + version = "0.23.1"; src = fetchFromGitHub { owner = "netbirdio"; repo = pname; rev = "v${version}"; - sha256 = "sha256-2Xvpalizazhkp8aYPYY5Er9I6dkL8AKnrjpIU44o2WM="; + sha256 = "sha256-YCCkVNFRFoHkBGZ67VHOrw/hxMrwi3lkdbHwMCLE6Hg="; }; vendorHash = "sha256-CwozOBAPFSsa1XzDOHBgmFSwGiNekWT8t7KGR2KOOX4="; From 10ebbd01d368366c7c8b70a74ff361801e2fb93c Mon Sep 17 00:00:00 2001 From: Aaron Jheng Date: Wed, 13 Sep 2023 09:49:16 +0800 Subject: [PATCH 202/346] cargo-deps: 1.5.0 -> 1.5.1 --- pkgs/development/tools/rust/cargo-deps/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/rust/cargo-deps/default.nix b/pkgs/development/tools/rust/cargo-deps/default.nix index 67e33406b6ce..0cbba27cf15f 100644 --- a/pkgs/development/tools/rust/cargo-deps/default.nix +++ b/pkgs/development/tools/rust/cargo-deps/default.nix @@ -2,14 +2,14 @@ rustPlatform.buildRustPackage rec { pname = "cargo-deps"; - version = "1.5.0"; + version = "1.5.1"; src = fetchCrate { inherit pname version; - sha256 = "sha256-0zK1qwu+awZGd9hgH2WRrzJMzwpI830Lh//P0wVp6Js="; + hash = "sha256-qnSHG4AhBrleYKZ4SJ4AwHdJyiidj8NTeSSphBRo7gg="; }; - cargoSha256 = "sha256-ZPQIt+TL1OKX3Ch4A17eAELjaSTo2uk+X6YWFAXvWJA="; + cargoHash = "sha256-dpCbFA9AZmIFPx69tw0CqHF+lVw7uhUlwAeVX1+lIK8="; meta = with lib; { description = "Cargo subcommand for building dependency graphs of Rust projects"; From 7e9b7705d720e6664e07c1b97bf6dd63978e3e3a Mon Sep 17 00:00:00 2001 From: Aaron Jheng Date: Wed, 13 Sep 2023 09:55:26 +0800 Subject: [PATCH 203/346] cargo-fund: 0.2.2 -> 0.2.3 --- pkgs/development/tools/rust/cargo-fund/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/rust/cargo-fund/default.nix b/pkgs/development/tools/rust/cargo-fund/default.nix index d5fbb47f7bb4..54a04f29a012 100644 --- a/pkgs/development/tools/rust/cargo-fund/default.nix +++ b/pkgs/development/tools/rust/cargo-fund/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "cargo-fund"; - version = "0.2.2"; + version = "0.2.3"; src = fetchFromGitHub { owner = "acfoltzer"; repo = pname; rev = version; - sha256 = "sha256-hUTBDC2XU82jc9TbyCYVKgWxrKG/OIc1a+fEdj5566M="; + hash = "sha256-8mnCwWwReNH9s/gbxIhe7XdJRIA6BSUKm5jzykU5qMU="; }; - cargoSha256 = "sha256-cU/X+oNTMjUSODkdm+P+vVLmBJlkeQ9WTJGvQmUOQKw="; + cargoHash = "sha256-J4AylYE4RTRPTUz5Hek7D34q9HjlFnrc/z/ax0i6lPQ="; # The tests need a GitHub API token. doCheck = false; From 7e81eaf9f4104ed5007da156588e7348f34ba7ad Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 02:16:19 +0000 Subject: [PATCH 204/346] glab: 1.31.0 -> 1.32.0 --- pkgs/applications/version-management/glab/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/version-management/glab/default.nix b/pkgs/applications/version-management/glab/default.nix index 797b508e13c5..5d3ca3373a50 100644 --- a/pkgs/applications/version-management/glab/default.nix +++ b/pkgs/applications/version-management/glab/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "glab"; - version = "1.31.0"; + version = "1.32.0"; src = fetchFromGitLab { owner = "gitlab-org"; repo = "cli"; rev = "v${version}"; - hash = "sha256-K7yGRuIfYEqs4ziystxLMK+dYUZoyGlBJAmx2qmY08Q="; + hash = "sha256-7XFekLlWcifqGJL6IIONpixdMAyGBJJmqo+l6RKCfC8="; }; - vendorHash = "sha256-WfzN70HHLatBuV+GW2VC+5laR3rBfDOqPydyxMSmL3s="; + vendorHash = "sha256-HiU6Kx/du8QLNKUDsSMm349msxSxyNRppxadtIpglBg="; ldflags = [ "-s" From ca48abbeabdd462da0c9c71287d8f0d59321944f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 02:44:19 +0000 Subject: [PATCH 205/346] python310Packages.pytesseract: 0.3.11 -> 0.3.12 --- pkgs/development/python-modules/pytesseract/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pytesseract/default.nix b/pkgs/development/python-modules/pytesseract/default.nix index c1bfd320119b..1d77af888020 100644 --- a/pkgs/development/python-modules/pytesseract/default.nix +++ b/pkgs/development/python-modules/pytesseract/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "pytesseract"; - version = "0.3.11"; + version = "0.3.12"; format = "pyproject"; src = fetchFromGitHub { owner = "madmaze"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-8obU1QFlboQnFjb3JUkVG+tt0wDlRffVH/PBmN1r3dk="; + hash = "sha256-19eLgcvmEFGiyu6v/EzLG8w+jFQL/5rbfDaiQqAGq5g="; }; patches = [ From 6b7e9987fc8ec47d0834dd867861824702b77a95 Mon Sep 17 00:00:00 2001 From: Abdirahman Osman Date: Tue, 12 Sep 2023 22:16:11 -0500 Subject: [PATCH 206/346] maintainers: add abdiramen --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index d3e1dbf64287..cc4250e0b436 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -301,6 +301,12 @@ githubId = 1174810; name = "Nikolay Amiantov"; }; + abdiramen = { + email = "abdirahman.osmanthus@gmail.com"; + github = "Abdiramen"; + githubId = 15805292; + name = "Abdirahman Osman"; + }; abhi18av = { email = "abhi18av@gmail.com"; github = "abhi18av"; From 003682eac6d277101dcb3cb261668ab21693c5ce Mon Sep 17 00:00:00 2001 From: nyanotech Date: Tue, 12 Sep 2023 20:21:02 -0700 Subject: [PATCH 207/346] ansible-lint: 6.18.0 -> 6.19.0 --- pkgs/tools/admin/ansible/lint.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/admin/ansible/lint.nix b/pkgs/tools/admin/ansible/lint.nix index c28892bc8260..617c600c55ce 100644 --- a/pkgs/tools/admin/ansible/lint.nix +++ b/pkgs/tools/admin/ansible/lint.nix @@ -6,12 +6,12 @@ python3.pkgs.buildPythonApplication rec { pname = "ansible-lint"; - version = "6.18.0"; + version = "6.19.0"; format = "pyproject"; src = fetchPypi { inherit pname version; - hash = "sha256-VHRO5/j9DsOAUfC23yFTUjk5o5HuS7SPCIW1/N2C+bk="; + hash = "sha256-JsOqEkljatkIRJ7yBL4KBDpa8R6jvUWUnI5KaA8hfn4="; }; postPatch = '' From 3bca3c1ae35141ffe1c85ecec8560e2aa90375e3 Mon Sep 17 00:00:00 2001 From: natsukium Date: Mon, 4 Sep 2023 21:48:28 +0900 Subject: [PATCH 208/346] python310Packages.optuna: 3.1.0 -> 3.3.0 Diff: https://github.com/optuna/optuna/compare/refs/tags/v3.1.0...v3.3.0 Changelog: https://github.com/optuna/optuna/releases/tag/refs/tags/v3.3.0 --- .../python-modules/optuna/default.nix | 171 +++++++++++------- 1 file changed, 109 insertions(+), 62 deletions(-) diff --git a/pkgs/development/python-modules/optuna/default.nix b/pkgs/development/python-modules/optuna/default.nix index e9e60f8c9fbc..8e987ce32158 100644 --- a/pkgs/development/python-modules/optuna/default.nix +++ b/pkgs/development/python-modules/optuna/default.nix @@ -1,92 +1,139 @@ { lib , buildPythonPackage , fetchFromGitHub -, pytest -, mock -, bokeh -, plotly -, chainer -, xgboost -, mpi4py -, lightgbm -, keras -, mxnet -, scikit-optimize -, tensorflow -, cma -, sqlalchemy -, numpy -, scipy -, six -, cliff -, colorlog -, pandas -, alembic -, tqdm -, typing +, pytestCheckHook , pythonOlder -, isPy27 +, alembic +, boto3 +, botorch +, catboost +, cma +, cmaes +, colorlog +, distributed +, fakeredis +, fastai +, lightgbm +, matplotlib +, mlflow +, moto +, numpy +, packaging +, pandas +, plotly +, pytest-xdist +, pytorch-lightning +, pyyaml +, redis +, scikit-learn +, scikit-optimize +, scipy +, setuptools +, shap +, sqlalchemy +, tensorflow +, torch +, torchaudio +, torchvision +, tqdm +, wandb +, wheel +, xgboost }: buildPythonPackage rec { pname = "optuna"; - version = "3.1.0"; - disabled = isPy27; + version = "3.3.0"; + format = "pyproject"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "optuna"; - repo = pname; + repo = "optuna"; rev = "refs/tags/v${version}"; - hash = "sha256-dNS3LEWP/Ul1z60iZirFEX30Frc5ZFQLNTgUkT9vLNQ="; + hash = "sha256-uHv8uEJOQO1+AeNSxBtnCt6gDQHLT1RToF4hfolVVX0="; }; - nativeCheckInputs = [ - pytest - mock - bokeh - plotly - chainer - xgboost - mpi4py - lightgbm - keras - mxnet - scikit-optimize - tensorflow - cma + nativeBuildInputs = [ + setuptools + wheel ]; propagatedBuildInputs = [ - sqlalchemy - numpy - scipy - six - cliff - colorlog - pandas alembic + cmaes + colorlog + numpy + packaging + sqlalchemy tqdm - ] ++ lib.optionals (pythonOlder "3.5") [ - typing + pyyaml ]; - configurePhase = lib.optionalString (! pythonOlder "3.5") '' - substituteInPlace setup.py \ - --replace "'typing'," "" + passthru.optional-dependencies = { + integration = [ + botorch + catboost + cma + distributed + fastai + lightgbm + mlflow + pandas + # pytorch-ignite + pytorch-lightning + scikit-learn + scikit-optimize + shap + tensorflow + torch + torchaudio + torchvision + wandb + xgboost + ]; + optional = [ + boto3 + botorch + matplotlib + pandas + plotly + redis + scikit-learn + ]; + }; + + preCheck = '' + export PATH=$out/bin:$PATH ''; - checkPhase = '' - pytest --ignore tests/test_cli.py \ - --ignore tests/integration_tests/test_chainermn.py \ - --ignore tests/integration_tests/test_pytorch_lightning.py \ - --ignore tests/integration_tests/test_pytorch_ignite.py \ - --ignore tests/integration_tests/test_fastai.py - ''; + nativeCheckInputs = [ + fakeredis + moto + pytest-xdist + pytestCheckHook + scipy + ] ++ fakeredis.optional-dependencies.lua + ++ passthru.optional-dependencies.optional; + + pytestFlagsArray = [ + "-m 'not integration'" + ]; + + disabledTestPaths = [ + # require unpackaged kaleido and building it is a bit difficult + "tests/visualization_tests" + ]; + + pythonImportsCheck = [ + "optuna" + ]; meta = with lib; { - broken = true; # Dashboard broken, other build failures. description = "A hyperparameter optimization framework"; homepage = "https://optuna.org/"; + changelog = "https://github.com/optuna/optuna/releases/tag/${src.rev}"; license = licenses.mit; maintainers = [ ]; }; From 9c57351cd2b2c0fb408f673d65678296f1c0142e Mon Sep 17 00:00:00 2001 From: natsukium Date: Wed, 13 Sep 2023 12:26:13 +0900 Subject: [PATCH 209/346] python310Packages.optuna: add natsukium as maintainer --- pkgs/development/python-modules/optuna/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/optuna/default.nix b/pkgs/development/python-modules/optuna/default.nix index 8e987ce32158..f3b41af02096 100644 --- a/pkgs/development/python-modules/optuna/default.nix +++ b/pkgs/development/python-modules/optuna/default.nix @@ -135,6 +135,6 @@ buildPythonPackage rec { homepage = "https://optuna.org/"; changelog = "https://github.com/optuna/optuna/releases/tag/${src.rev}"; license = licenses.mit; - maintainers = [ ]; + maintainers = with maintainers; [ natsukium ]; }; } From ba63dd7b38f443406e4e0cde82a253dd63cb20c6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 03:31:17 +0000 Subject: [PATCH 210/346] python310Packages.vispy: 0.13.0 -> 0.14.0 --- pkgs/development/python-modules/vispy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/vispy/default.nix b/pkgs/development/python-modules/vispy/default.nix index c30a9c07d5ee..67c34776ff1a 100644 --- a/pkgs/development/python-modules/vispy/default.nix +++ b/pkgs/development/python-modules/vispy/default.nix @@ -17,14 +17,14 @@ buildPythonPackage rec { pname = "vispy"; - version = "0.13.0"; + version = "0.14.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-tZ97z2UoyRS8ps60rZWZhMZgS+o0ZjASpyq4itiInq8="; + hash = "sha256-3vcn528rZd7YhmSoPaUN2peWOWHBbxOk2FCr3UWTD5Q="; }; patches = [ From 6d643df41ec1c4731714300a76b973f0063eb834 Mon Sep 17 00:00:00 2001 From: chayleaf Date: Tue, 28 Feb 2023 22:04:09 +0700 Subject: [PATCH 211/346] maubot: init at 0.4.1 --- ...llow-building-plugins-from-nix-store.patch | 13 ++ pkgs/tools/networking/maubot/default.nix | 137 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + pkgs/top-level/python-packages.nix | 2 + 4 files changed, 154 insertions(+) create mode 100644 pkgs/tools/networking/maubot/allow-building-plugins-from-nix-store.patch create mode 100644 pkgs/tools/networking/maubot/default.nix diff --git a/pkgs/tools/networking/maubot/allow-building-plugins-from-nix-store.patch b/pkgs/tools/networking/maubot/allow-building-plugins-from-nix-store.patch new file mode 100644 index 000000000000..1df88b92aa51 --- /dev/null +++ b/pkgs/tools/networking/maubot/allow-building-plugins-from-nix-store.patch @@ -0,0 +1,13 @@ +diff --git a/maubot/cli/commands/build.py b/maubot/cli/commands/build.py +index ec3ac26..4de85f2 100644 +--- a/maubot/cli/commands/build.py ++++ b/maubot/cli/commands/build.py +@@ -84,7 +84,7 @@ def read_output_path(output: str, meta: PluginMeta) -> str | None: + + + def write_plugin(meta: PluginMeta, output: str | IO) -> None: +- with zipfile.ZipFile(output, "w") as zip: ++ with zipfile.ZipFile(output, "w", strict_timestamps=False) as zip: + meta_dump = BytesIO() + yaml.dump(meta.serialize(), meta_dump) + zip.writestr("maubot.yaml", meta_dump.getvalue()) diff --git a/pkgs/tools/networking/maubot/default.nix b/pkgs/tools/networking/maubot/default.nix new file mode 100644 index 000000000000..4242ffcf9984 --- /dev/null +++ b/pkgs/tools/networking/maubot/default.nix @@ -0,0 +1,137 @@ +{ lib +, fetchPypi +, fetchpatch +, runCommand +, python3 +, encryptionSupport ? true +}: + +let + python = python3.override { + packageOverrides = final: prev: { + # aiosqlite>=0.16,<0.19 + aiosqlite = prev.aiosqlite.overridePythonAttrs (old: rec { + version = "0.18.0"; + src = old.src.override { + rev = "refs/tags/v${version}"; + hash = "sha256-yPGSKqjOz1EY5/V0oKz2EiZ90q2O4TINoXdxHuB7Gqk="; + }; + }); + # mautrix>=0.19.8,<0.20 + mautrix = prev.mautrix.overridePythonAttrs (old: rec { + version = "0.19.16"; + disabled = final.pythonOlder "3.8"; + checkInputs = old.checkInputs ++ [ final.sqlalchemy ]; + SQLALCHEMY_SILENCE_UBER_WARNING = true; + src = old.src.override { + rev = "refs/tags/v${version}"; + hash = "sha256-aZlc4+J5Q+N9qEzGUMhsYguPdUy+E5I06wrjVyqvVDk="; + }; + }); + # mautrix has a runtime error with new ruamel-yaml since 0.17.22 changed the interface + ruamel-yaml = prev.ruamel-yaml.overridePythonAttrs (prev: rec { + version = "0.17.21"; + src = prev.src.override { + version = version; + hash = "sha256-i3zml6LyEnUqNcGsQURx3BbEJMlXO+SSa1b/P10jt68="; + }; + }); + # SQLAlchemy>=1,<1.4 + # SQLAlchemy 2.0's derivation is very different, so don't override, just write it from scratch + # (see https://github.com/NixOS/nixpkgs/blob/65dbed73949e4c0207e75dcc7271b29f9e457670/pkgs/development/python-modules/sqlalchemy/default.nix) + sqlalchemy = final.buildPythonPackage rec { + pname = "SQLAlchemy"; + version = "1.3.24"; + + src = fetchPypi { + inherit pname version; + sha256 = "sha256-67t3fL+TEjWbiXv4G6ANrg9ctp+6KhgmXcwYpvXvdRk="; + }; + + postInstall = '' + sed -e 's:--max-worker-restart=5::g' -i setup.cfg + ''; + + # tests are pretty annoying to set up for this version, and these dependency overrides are already long enough + doCheck = false; + }; + }; + }; + + maubot = python.pkgs.buildPythonPackage rec { + pname = "maubot"; + version = "0.4.1"; + disabled = python.pythonOlder "3.8"; + + src = fetchPypi { + inherit pname version; + sha256 = "sha256-Ro2PPgF8818F8JewPZ3AlbfWFNNHKTZkQq+1zpm3kk4="; + }; + + patches = [ + # add entry point - https://github.com/maubot/maubot/pull/146 + (fetchpatch { + url = "https://github.com/maubot/maubot/commit/283f0a3ed5dfae13062b6f0fd153fbdc477f4381.patch"; + sha256 = "0yn5357z346qzy5v5g124mgiah1xsi9yyfq42zg028c8paiw8s8x"; + }) + # allow running "mbc build" in a nix derivation + ./allow-building-plugins-from-nix-store.patch + ]; + + propagatedBuildInputs = with python.pkgs; [ + # requirements.txt + mautrix + aiohttp + yarl + sqlalchemy + asyncpg + aiosqlite + commonmark + ruamel-yaml + attrs + bcrypt + packaging + click + colorama + questionary + jinja2 + ] + # optional-requirements.txt + ++ lib.optionals encryptionSupport [ + python-olm + pycryptodome + unpaddedbase64 + ]; + + postInstall = '' + rm $out/example-config.yaml + ''; + + passthru.tests = { + simple = runCommand "${pname}-tests" { } '' + ${maubot}/bin/mbc --help > $out + ''; + }; + + # Setuptools is trying to do python -m maubot test + dontUseSetuptoolsCheck = true; + + pythonImportsCheck = [ + "maubot" + ]; + + meta = with lib; { + description = "A plugin-based Matrix bot system written in Python"; + homepage = "https://maubot.xyz/"; + changelog = "https://github.com/maubot/maubot/blob/v${version}/CHANGELOG.md"; + license = licenses.agpl3Plus; + # Presumably, people running "nix run nixpkgs#maubot" will want to run the tool + # for interacting with Maubot rather than Maubot itself, which should be used as + # a NixOS module. + mainProgram = "mbc"; + maintainers = with maintainers; [ chayleaf ]; + }; + }; + +in +maubot diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 79384397c0a4..40c653820e0a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10029,6 +10029,8 @@ with pkgs; matrix-hookshot = callPackage ../servers/matrix-synapse/matrix-hookshot { }; + maubot = with python3Packages; toPythonApplication maubot; + mautrix-discord = callPackage ../servers/mautrix-discord { }; mautrix-facebook = callPackage ../servers/mautrix-facebook { }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7f22f9ded896..f9d7373d7b3b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6485,6 +6485,8 @@ self: super: with self; { mattermostdriver = callPackage ../development/python-modules/mattermostdriver { }; + maubot = callPackage ../tools/networking/maubot { }; + mautrix = callPackage ../development/python-modules/mautrix { }; mautrix-appservice = self.mautrix; # alias 2019-12-28 From 8dac2c361f6060656d1a47e453ad1257a05e680d Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 13 Sep 2023 04:20:00 +0000 Subject: [PATCH 212/346] llhttp: use finalAttrs pattern --- pkgs/development/libraries/llhttp/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/llhttp/default.nix b/pkgs/development/libraries/llhttp/default.nix index 11bc220aeeaf..c8b5ca89fa2e 100644 --- a/pkgs/development/libraries/llhttp/default.nix +++ b/pkgs/development/libraries/llhttp/default.nix @@ -1,13 +1,13 @@ { lib, stdenv, fetchFromGitHub, cmake }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "llhttp"; version = "9.1.0"; src = fetchFromGitHub { owner = "nodejs"; repo = "llhttp"; - rev = "release/v${version}"; + rev = "release/v${finalAttrs.version}"; hash = "sha256-DWRo9mVpmty/Ec+pKqPTZqwOlYJD+SmddwEui7P/694="; }; @@ -22,9 +22,9 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Port of http_parser to llparse"; homepage = "https://llhttp.org/"; - changelog = "https://github.com/nodejs/llhttp/releases/tag/${src.rev}"; + changelog = "https://github.com/nodejs/llhttp/releases/tag/release/v${finalAttrs.version}"; license = licenses.mit; maintainers = [ maintainers.marsam ]; platforms = platforms.all; }; -} +}) From 7e45ae85d3e4f5a93f4c2c23efab8f11f2835a6d Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 13 Sep 2023 04:20:00 +0000 Subject: [PATCH 213/346] glab: install manpage --- pkgs/applications/version-management/glab/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/version-management/glab/default.nix b/pkgs/applications/version-management/glab/default.nix index 5d3ca3373a50..962c37aa3943 100644 --- a/pkgs/applications/version-management/glab/default.nix +++ b/pkgs/applications/version-management/glab/default.nix @@ -29,6 +29,8 @@ buildGoModule rec { nativeBuildInputs = [ installShellFiles ]; postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) '' + make manpage + installManPage share/man/man1/* installShellCompletion --cmd glab \ --bash <($out/bin/glab completion -s bash) \ --fish <($out/bin/glab completion -s fish) \ From 9bb89d58c0515c7fdbde9e99651f0961c586b67d Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 13 Sep 2023 04:20:00 +0000 Subject: [PATCH 214/346] llhttp: add pkg-config tester --- pkgs/development/libraries/llhttp/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/llhttp/default.nix b/pkgs/development/libraries/llhttp/default.nix index c8b5ca89fa2e..39f06104033e 100644 --- a/pkgs/development/libraries/llhttp/default.nix +++ b/pkgs/development/libraries/llhttp/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchFromGitHub, cmake }: +{ lib, stdenv, fetchFromGitHub, cmake, testers }: stdenv.mkDerivation (finalAttrs: { pname = "llhttp"; @@ -19,11 +19,16 @@ stdenv.mkDerivation (finalAttrs: { "-DBUILD_STATIC_LIBS=ON" ]; + passthru.tests.pkg-config = testers.hasPkgConfigModules { + package = finalAttrs.finalPackage; + }; + meta = with lib; { description = "Port of http_parser to llparse"; homepage = "https://llhttp.org/"; changelog = "https://github.com/nodejs/llhttp/releases/tag/release/v${finalAttrs.version}"; license = licenses.mit; + pkgConfigModules = [ "libllhttp" ]; maintainers = [ maintainers.marsam ]; platforms = platforms.all; }; From ec74ab7a2e5df60aeb124743e4979e57b7145914 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 13 Sep 2023 04:20:00 +0000 Subject: [PATCH 215/346] llhttp: 9.0.1 -> 9.1.0 Diff: https://github.com/nodejs/llhttp/compare/release/v9.0.1...v9.1.0 Changelog: https://github.com/nodejs/llhttp/releases/tag/release/v9.1.0 --- pkgs/development/libraries/llhttp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/llhttp/default.nix b/pkgs/development/libraries/llhttp/default.nix index 413e70ee26af..11bc220aeeaf 100644 --- a/pkgs/development/libraries/llhttp/default.nix +++ b/pkgs/development/libraries/llhttp/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "llhttp"; - version = "9.0.1"; + version = "9.1.0"; src = fetchFromGitHub { owner = "nodejs"; repo = "llhttp"; rev = "release/v${version}"; - hash = "sha256-cXqc6/lQUhp9GV8msXsPokd6OGSczvz8uAXkM16GEE0="; + hash = "sha256-DWRo9mVpmty/Ec+pKqPTZqwOlYJD+SmddwEui7P/694="; }; nativeBuildInputs = [ From c2b07ef0f4619936d69a0377357e1638b968a3bf Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 13 Sep 2023 04:20:00 +0000 Subject: [PATCH 216/346] glab: add changelog to meta --- pkgs/applications/version-management/glab/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/version-management/glab/default.nix b/pkgs/applications/version-management/glab/default.nix index 962c37aa3943..d0e6a1018ad9 100644 --- a/pkgs/applications/version-management/glab/default.nix +++ b/pkgs/applications/version-management/glab/default.nix @@ -41,6 +41,7 @@ buildGoModule rec { description = "GitLab CLI tool bringing GitLab to your command line"; license = licenses.mit; homepage = "https://gitlab.com/gitlab-org/cli"; + changelog = "https://gitlab.com/gitlab-org/cli/-/releases/v${version}"; maintainers = with maintainers; [ freezeboy ]; }; } From 79de0c0200be08bcfac634c8f86bb37d76f31d1e Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 13 Sep 2023 04:20:00 +0000 Subject: [PATCH 217/346] llhttp: 9.1.0 -> 9.1.2 Diff: https://github.com/nodejs/llhttp/compare/release/v9.1.0...release/v9.1.2 Changelog: https://github.com/nodejs/llhttp/releases/tag/release/v9.1.2 --- pkgs/development/libraries/llhttp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/llhttp/default.nix b/pkgs/development/libraries/llhttp/default.nix index 39f06104033e..8aac286c80ac 100644 --- a/pkgs/development/libraries/llhttp/default.nix +++ b/pkgs/development/libraries/llhttp/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "llhttp"; - version = "9.1.0"; + version = "9.1.2"; src = fetchFromGitHub { owner = "nodejs"; repo = "llhttp"; rev = "release/v${finalAttrs.version}"; - hash = "sha256-DWRo9mVpmty/Ec+pKqPTZqwOlYJD+SmddwEui7P/694="; + hash = "sha256-kW6u9ETZJcJBh150chfE3SEwFpT7evZ0cqz8caM7fbQ="; }; nativeBuildInputs = [ From d4063e0330ec9f68037d4dbdd12aec3376e679ba Mon Sep 17 00:00:00 2001 From: Ivan Trubach Date: Tue, 12 Sep 2023 16:55:32 +0300 Subject: [PATCH 218/346] pkgs/top-level: use lib.systems.equals for crossSystem Fixes otherwise equivalent systems being treated as different by packages that compare `stdenv.*Platform`s using `==` operator. --- pkgs/test/default.nix | 2 ++ pkgs/test/top-level/default.nix | 47 +++++++++++++++++++++++++++++++++ pkgs/top-level/default.nix | 16 +++++++++-- 3 files changed, 63 insertions(+), 2 deletions(-) create mode 100644 pkgs/test/top-level/default.nix diff --git a/pkgs/test/default.nix b/pkgs/test/default.nix index b914ec26ae00..05d8ee61e9a5 100644 --- a/pkgs/test/default.nix +++ b/pkgs/test/default.nix @@ -94,6 +94,8 @@ with pkgs; config = callPackage ./config.nix { }; + top-level = callPackage ./top-level { }; + haskell = callPackage ./haskell { }; hooks = callPackage ./hooks { }; diff --git a/pkgs/test/top-level/default.nix b/pkgs/test/top-level/default.nix new file mode 100644 index 000000000000..fdb9fe09a88b --- /dev/null +++ b/pkgs/test/top-level/default.nix @@ -0,0 +1,47 @@ +{ lib, pkgs, ... }: +let + nixpkgsFun = import ../../top-level; +in +lib.recurseIntoAttrs { + platformEquality = + let + configsLocal = [ + # crossSystem is implicitly set to localSystem. + { + localSystem = { system = "x86_64-linux"; }; + } + { + localSystem = { system = "aarch64-linux"; }; + crossSystem = null; + } + # Both systems explicitly set to the same string. + { + localSystem = { system = "x86_64-linux"; }; + crossSystem = { system = "x86_64-linux"; }; + } + # Vendor and ABI inferred from system double. + { + localSystem = { system = "aarch64-linux"; }; + crossSystem = { config = "aarch64-unknown-linux-gnu"; }; + } + ]; + configsCross = [ + # GNU is inferred from double, but config explicitly requests musl. + { + localSystem = { system = "aarch64-linux"; }; + crossSystem = { config = "aarch64-unknown-linux-musl"; }; + } + # Cross-compile from AArch64 to x86-64. + { + localSystem = { system = "aarch64-linux"; }; + crossSystem = { system = "x86_64-unknown-linux-gnu"; }; + } + ]; + + pkgsLocal = map nixpkgsFun configsLocal; + pkgsCross = map nixpkgsFun configsCross; + in + assert lib.all (p: p.buildPlatform == p.hostPlatform) pkgsLocal; + assert lib.all (p: p.buildPlatform != p.hostPlatform) pkgsCross; + pkgs.emptyFile; +} diff --git a/pkgs/top-level/default.nix b/pkgs/top-level/default.nix index ba00e78ce2e6..5c224802d5bf 100644 --- a/pkgs/top-level/default.nix +++ b/pkgs/top-level/default.nix @@ -61,10 +61,22 @@ in let localSystem = lib.systems.elaborate args.localSystem; # Condition preserves sharing which in turn affects equality. + # + # See `lib.systems.equals` documentation for more details. + # + # Note that it is generally not possible to compare systems as given in + # parameters, e.g. if systems are initialized as + # + # localSystem = { system = "x86_64-linux"; }; + # crossSystem = { config = "x86_64-unknown-linux-gnu"; }; + # + # Both systems are semantically equivalent as the same vendor and ABI are + # inferred from the system double in `localSystem`. crossSystem = - if crossSystem0 == null || crossSystem0 == args.localSystem + let system = lib.systems.elaborate crossSystem0; in + if crossSystem0 == null || lib.systems.equals system localSystem then localSystem - else lib.systems.elaborate crossSystem0; + else system; # Allow both: # { /* the config */ } and From 49a30d52cd3a80b5c6691aa2bf2b218d2f12e4fd Mon Sep 17 00:00:00 2001 From: kashw2 Date: Wed, 13 Sep 2023 14:48:35 +1000 Subject: [PATCH 219/346] scryer-prolog: 0.9.1 -> 0.9.2 --- .../compilers/scryer-prolog/Cargo.lock | 1693 +++++++++-------- .../compilers/scryer-prolog/default.nix | 7 +- 2 files changed, 932 insertions(+), 768 deletions(-) diff --git a/pkgs/development/compilers/scryer-prolog/Cargo.lock b/pkgs/development/compilers/scryer-prolog/Cargo.lock index 05e549112a72..b3f169927332 100644 --- a/pkgs/development/compilers/scryer-prolog/Cargo.lock +++ b/pkgs/development/compilers/scryer-prolog/Cargo.lock @@ -2,6 +2,27 @@ # It is not intended for manual editing. version = 3 +[[package]] +name = "addr2line" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + +[[package]] +name = "android-tzdata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" + [[package]] name = "android_system_properties" version = "0.1.5" @@ -31,15 +52,6 @@ dependencies = [ "wait-timeout", ] -[[package]] -name = "autocfg" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78" -dependencies = [ - "autocfg 1.1.0", -] - [[package]] name = "autocfg" version = "1.1.0" @@ -47,10 +59,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] -name = "az" -version = "1.2.1" +name = "backtrace" +version = "0.3.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b7e4c2464d97fe331d41de9d5db0def0a96f4d823b8b32a2efd503578988973" +checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" +dependencies = [ + "addr2line", + "cc", + "cfg-if", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] [[package]] name = "base64" @@ -58,6 +79,12 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" +[[package]] +name = "base64" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "414dcefbc63d77c526a76b3afcf6fbb9b5e2791c19c3aa2297733208750c6e53" + [[package]] name = "bit-set" version = "0.5.3" @@ -79,6 +106,24 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" +[[package]] +name = "bitflags" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" + +[[package]] +name = "bitvec" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" +dependencies = [ + "funty", + "radium", + "tap", + "wyz", +] + [[package]] name = "blake2" version = "0.8.1" @@ -93,11 +138,11 @@ dependencies = [ [[package]] name = "blake2" -version = "0.10.4" +version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9cf849ee05b2ee5fba5e36f97ff8ec2533916700fc0758d40d92136a42f3388" +checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" dependencies = [ - "digest 0.10.5", + "digest 0.10.7", ] [[package]] @@ -114,11 +159,11 @@ dependencies = [ [[package]] name = "block-buffer" -version = "0.10.3" +version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" dependencies = [ - "generic-array 0.14.6", + "generic-array 0.14.7", ] [[package]] @@ -143,9 +188,9 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.11.1" +version = "3.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" +checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" [[package]] name = "byte-tools" @@ -161,15 +206,18 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" [[package]] name = "bytes" -version = "1.2.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" +checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" [[package]] name = "cc" -version = "1.0.76" +version = "1.0.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f" +checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" +dependencies = [ + "libc", +] [[package]] name = "cfg-if" @@ -179,13 +227,13 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chrono" -version = "0.4.22" +version = "0.4.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1" +checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" dependencies = [ + "android-tzdata", "iana-time-zone", "js-sys", - "num-integer", "num-traits", "time", "wasm-bindgen", @@ -194,34 +242,15 @@ dependencies = [ [[package]] name = "clipboard-win" -version = "4.4.2" +version = "4.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4ab1b92798304eedc095b53942963240037c0516452cb11aeba709d420b2219" +checksum = "7191c27c2357d9b7ef96baac1773290d4ca63b24205b82a3fd8a0637afcf0362" dependencies = [ "error-code", "str-buf", "winapi", ] -[[package]] -name = "cloudabi" -version = "0.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" -dependencies = [ - "bitflags", -] - -[[package]] -name = "codespan-reporting" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" -dependencies = [ - "termcolor", - "unicode-width", -] - [[package]] name = "core-foundation" version = "0.9.3" @@ -234,9 +263,9 @@ dependencies = [ [[package]] name = "core-foundation-sys" -version = "0.8.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" +checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" [[package]] name = "cpu-time" @@ -250,9 +279,9 @@ dependencies = [ [[package]] name = "cpufeatures" -version = "0.2.5" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" +checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" dependencies = [ "libc", ] @@ -263,7 +292,7 @@ version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0ebde6a9dd5e331cd6c6f48253254d117642c31653baa475e394657c59c1f7d" dependencies = [ - "bitflags", + "bitflags 1.3.2", "crossterm_winapi", "libc", "mio 0.7.14", @@ -284,13 +313,14 @@ dependencies = [ [[package]] name = "crrl" -version = "0.2.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2db40892a506901e4e8281f00e42687df82d1d3448cb0289ae9183a60cb42ec1" +checksum = "b083214486dae00f49a2f21f32fc8bbc333d6048601bc89203a8ab92bfa691f0" dependencies = [ - "blake2 0.10.4", - "rand_core 0.6.4", + "blake2 0.10.6", + "rand_core", "sha2", + "sha3 0.10.8", ] [[package]] @@ -299,7 +329,7 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" dependencies = [ - "generic-array 0.14.6", + "generic-array 0.14.7", "typenum", ] @@ -315,56 +345,103 @@ dependencies = [ [[package]] name = "ctrlc" -version = "3.2.3" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d91974fbbe88ec1df0c24a4f00f99583667a7e2e6272b2b92d294d81e462173" +checksum = "2a011bbe2c35ce9c1f143b7af6f94f29a167beb4cd1d29e6740ce836f723120e" dependencies = [ - "nix 0.25.0", - "winapi", + "nix", + "windows-sys", ] [[package]] -name = "cxx" -version = "1.0.81" +name = "dashmap" +version = "5.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97abf9f0eca9e52b7f81b945524e76710e6cb2366aead23b7d4fbf72e281f888" +checksum = "edd72493923899c6f10c641bdbdeddc7183d6396641d99c1a0d1597f37f92e28" dependencies = [ - "cc", - "cxxbridge-flags", - "cxxbridge-macro", - "link-cplusplus", -] - -[[package]] -name = "cxx-build" -version = "1.0.81" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cc32cc5fea1d894b77d269ddb9f192110069a8a9c1f1d441195fba90553dea3" -dependencies = [ - "cc", - "codespan-reporting", + "cfg-if", + "hashbrown 0.14.0", + "lock_api", "once_cell", - "proc-macro2 1.0.47", - "quote 1.0.21", - "scratch", - "syn 1.0.103", + "parking_lot_core 0.9.8", ] [[package]] -name = "cxxbridge-flags" -version = "1.0.81" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ca220e4794c934dc6b1207c3b42856ad4c302f2df1712e9f8d2eec5afaacf1f" +name = "dashu" +version = "0.3.1" +source = "git+https://github.com/coasys/dashu.git#f9342190be9062630124e666b001077bb5f02f23" +dependencies = [ + "dashu-base", + "dashu-float", + "dashu-int", + "dashu-macros", + "dashu-ratio", +] [[package]] -name = "cxxbridge-macro" -version = "1.0.81" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b846f081361125bfc8dc9d3940c84e1fd83ba54bbca7b17cd29483c828be0704" +name = "dashu-base" +version = "0.3.1" +source = "git+https://github.com/coasys/dashu.git#f9342190be9062630124e666b001077bb5f02f23" + +[[package]] +name = "dashu-float" +version = "0.3.2" +source = "git+https://github.com/coasys/dashu.git#f9342190be9062630124e666b001077bb5f02f23" dependencies = [ - "proc-macro2 1.0.47", - "quote 1.0.21", - "syn 1.0.103", + "dashu-base", + "dashu-int", + "num-order", + "num-traits", + "static_assertions", +] + +[[package]] +name = "dashu-int" +version = "0.3.1" +source = "git+https://github.com/coasys/dashu.git#f9342190be9062630124e666b001077bb5f02f23" +dependencies = [ + "cfg-if", + "dashu-base", + "num-modular 0.5.2", + "num-order", + "num-traits", + "static_assertions", +] + +[[package]] +name = "dashu-macros" +version = "0.3.1" +source = "git+https://github.com/coasys/dashu.git#f9342190be9062630124e666b001077bb5f02f23" +dependencies = [ + "dashu-base", + "dashu-float", + "dashu-int", + "dashu-ratio", + "proc-macro2", + "quote", +] + +[[package]] +name = "dashu-ratio" +version = "0.3.2" +source = "git+https://github.com/coasys/dashu.git#f9342190be9062630124e666b001077bb5f02f23" +dependencies = [ + "dashu-base", + "dashu-float", + "dashu-int", + "num-order", + "num-traits", +] + +[[package]] +name = "derive_deref" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dcdbcee2d9941369faba772587a565f4f534e42cb8d17e5295871de730163b2b" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] @@ -384,13 +461,13 @@ dependencies = [ [[package]] name = "digest" -version = "0.10.5" +version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ - "block-buffer 0.10.3", + "block-buffer 0.10.4", "crypto-common", - "subtle 2.4.1", + "subtle 2.5.0", ] [[package]] @@ -427,19 +504,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" [[package]] -name = "ed25519" -version = "1.5.2" +name = "either" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e9c280362032ea4203659fc489832d0204ef09f247a0506f170dafcac08c369" -dependencies = [ - "signature", -] +checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" [[package]] -name = "either" -version = "1.8.0" +name = "encoding_rs" +version = "0.8.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" +checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" +dependencies = [ + "cfg-if", +] [[package]] name = "endian-type" @@ -449,13 +526,13 @@ checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d" [[package]] name = "errno" -version = "0.2.8" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" +checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" dependencies = [ "errno-dragonfly", "libc", - "winapi", + "windows-sys", ] [[package]] @@ -480,22 +557,19 @@ dependencies = [ [[package]] name = "fastrand" -version = "1.8.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" -dependencies = [ - "instant", -] +checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" [[package]] name = "fd-lock" -version = "3.0.8" +version = "3.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb21c69b9fea5e15dbc1049e4b77145dd0ba1c84019c488102de0dc4ea4b0a27" +checksum = "ef033ed5e9bad94e55838ca0ca906db0e043f517adda0c8b79c7a8c66c93c1b5" dependencies = [ "cfg-if", "rustix", - "windows-sys 0.42.0", + "windows-sys", ] [[package]] @@ -520,10 +594,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] -name = "fuchsia-cprng" -version = "0.1.1" +name = "form_urlencoded" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" +checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "funty" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" [[package]] name = "futf" @@ -537,9 +620,9 @@ dependencies = [ [[package]] name = "futures" -version = "0.3.25" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0" +checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" dependencies = [ "futures-channel", "futures-core", @@ -552,9 +635,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.25" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed" +checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" dependencies = [ "futures-core", "futures-sink", @@ -562,15 +645,15 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.25" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac" +checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" [[package]] name = "futures-executor" -version = "0.3.25" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2" +checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" dependencies = [ "futures-core", "futures-task", @@ -579,38 +662,38 @@ dependencies = [ [[package]] name = "futures-io" -version = "0.3.25" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb" +checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" [[package]] name = "futures-macro" -version = "0.3.25" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d" +checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" dependencies = [ - "proc-macro2 1.0.47", - "quote 1.0.21", - "syn 1.0.103", + "proc-macro2", + "quote", + "syn 2.0.29", ] [[package]] name = "futures-sink" -version = "0.3.25" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9" +checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" [[package]] name = "futures-task" -version = "0.3.25" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea" +checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" [[package]] name = "futures-util" -version = "0.3.25" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6" +checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" dependencies = [ "futures-channel", "futures-core", @@ -644,9 +727,9 @@ dependencies = [ [[package]] name = "generic-array" -version = "0.14.6" +version = "0.14.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" dependencies = [ "typenum", "version_check", @@ -654,15 +737,23 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.8" +version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" +checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" dependencies = [ "cfg-if", + "js-sys", "libc", "wasi 0.11.0+wasi-snapshot-preview1", + "wasm-bindgen", ] +[[package]] +name = "gimli" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" + [[package]] name = "git-version" version = "0.3.5" @@ -680,26 +771,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe69f1cbdb6e28af2bac214e943b99ce8a0a06b447d15d3e61161b0423139f3f" dependencies = [ "proc-macro-hack", - "proc-macro2 1.0.47", - "quote 1.0.21", - "syn 1.0.103", -] - -[[package]] -name = "gmp-mpfr-sys" -version = "1.4.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea3f42dadb6c75f122e9aa87e757ef11d4282f664c9f2e6476a9c2c8970f9d19" -dependencies = [ - "libc", - "winapi", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] name = "h2" -version = "0.3.15" +version = "0.3.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4" +checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" dependencies = [ "bytes", "fnv", @@ -720,6 +801,12 @@ version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +[[package]] +name = "hashbrown" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" + [[package]] name = "heck" version = "0.3.3" @@ -731,11 +818,17 @@ dependencies = [ [[package]] name = "hermit-abi" -version = "0.1.19" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" +checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" + +[[package]] +name = "home" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" dependencies = [ - "libc", + "windows-sys", ] [[package]] @@ -751,23 +844,23 @@ dependencies = [ [[package]] name = "html5ever" -version = "0.23.0" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ce65ac8028cf5a287a7dbf6c4e0a6cf2dcf022ed5b167a81bae66ebf599a8b7" +checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" dependencies = [ "log", "mac", "markup5ever", - "proc-macro2 0.4.30", - "quote 0.6.13", - "syn 0.15.44", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] name = "http" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" +checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" dependencies = [ "bytes", "fnv", @@ -785,6 +878,29 @@ dependencies = [ "pin-project-lite", ] +[[package]] +name = "http-body" +version = "1.0.0-rc.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "951dfc2e32ac02d67c90c0d65bd27009a635dc9b381a2cc7d284ab01e3a0150d" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.0-rc.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08ef12f041acdd397010e5fb6433270c147d3b8b2d0a840cd7fff8e531dca5c8" +dependencies = [ + "bytes", + "futures-util", + "http", + "http-body 1.0.0-rc.2", + "pin-project-lite", +] + [[package]] name = "httparse" version = "1.8.0" @@ -793,15 +909,15 @@ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" [[package]] name = "httpdate" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "hyper" -version = "0.14.23" +version = "0.14.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c" +checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" dependencies = [ "bytes", "futures-channel", @@ -809,18 +925,40 @@ dependencies = [ "futures-util", "h2", "http", - "http-body", + "http-body 0.4.5", "httparse", "httpdate", "itoa", "pin-project-lite", - "socket2", + "socket2 0.4.9", "tokio", "tower-service", "tracing", "want", ] +[[package]] +name = "hyper" +version = "1.0.0-rc.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b75264b2003a3913f118d35c586e535293b3e22e41f074930762929d071e092" +dependencies = [ + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "h2", + "http", + "http-body 1.0.0-rc.2", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "tokio", + "tracing", + "want", +] + [[package]] name = "hyper-tls" version = "0.5.0" @@ -828,7 +966,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" dependencies = [ "bytes", - "hyper", + "hyper 0.14.27", "native-tls", "tokio", "tokio-native-tls", @@ -836,36 +974,45 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.53" +version = "0.1.57" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" +checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "winapi", + "windows", ] [[package]] name = "iana-time-zone-haiku" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" dependencies = [ - "cxx", - "cxx-build", + "cc", +] + +[[package]] +name = "idna" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" +dependencies = [ + "unicode-bidi", + "unicode-normalization", ] [[package]] name = "indexmap" -version = "1.9.1" +version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ - "autocfg 1.1.0", - "hashbrown", + "autocfg", + "hashbrown 0.12.3", ] [[package]] @@ -878,14 +1025,10 @@ dependencies = [ ] [[package]] -name = "io-lifetimes" -version = "1.0.1" +name = "ipnet" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7d367024b3f3414d8e01f437f704f41a9f64ab36f9067fa73e526ad4c763c87" -dependencies = [ - "libc", - "windows-sys 0.42.0", -] +checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" [[package]] name = "itertools" @@ -898,24 +1041,27 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.4" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc" +checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" [[package]] name = "js-sys" -version = "0.3.60" +version = "0.3.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" +checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" dependencies = [ "wasm-bindgen", ] [[package]] name = "keccak" -version = "0.1.2" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9b7d56ba4a8344d6be9729995e6b06f928af29998cdf79fe390cbf6b1fee838" +checksum = "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940" +dependencies = [ + "cpufeatures", +] [[package]] name = "lazy_static" @@ -940,7 +1086,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe" dependencies = [ "arrayvec", - "bitflags", + "bitflags 1.3.2", "cfg-if", "ryu", "static_assertions", @@ -948,55 +1094,58 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.137" +version = "0.2.147" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89" +checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" [[package]] -name = "libsodium-sys" -version = "0.2.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b779387cd56adfbc02ea4a668e704f729be8d6a6abd2c27ca5ee537849a92fd" +name = "libffi" +version = "3.2.0" +source = "git+https://github.com/coasys/libffi-rs.git?branch=windows-space#f6e9e50efde0aa4e940dd6f709a59bb426875362" dependencies = [ - "cc", "libc", - "pkg-config", - "walkdir", + "libffi-sys", ] [[package]] -name = "link-cplusplus" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369" +name = "libffi-sys" +version = "2.3.0" +source = "git+https://github.com/coasys/libffi-rs.git?branch=windows-space#f6e9e50efde0aa4e940dd6f709a59bb426875362" dependencies = [ "cc", ] +[[package]] +name = "libloading" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" +dependencies = [ + "cfg-if", + "winapi", +] + [[package]] name = "linux-raw-sys" -version = "0.1.2" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb68f22743a3fb35785f1e7f844ca5a3de2dde5bd0c0ef5b372065814699b121" +checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" [[package]] name = "lock_api" -version = "0.4.9" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" +checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" dependencies = [ - "autocfg 1.1.0", + "autocfg", "scopeguard", ] [[package]] name = "log" -version = "0.4.17" +version = "0.4.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" -dependencies = [ - "cfg-if", -] +checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" [[package]] name = "mac" @@ -1006,21 +1155,30 @@ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" [[package]] name = "markup5ever" -version = "0.8.1" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1af46a727284117e09780d05038b1ce6fc9c76cc6df183c3dae5a8955a25e21" +checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" dependencies = [ "log", - "phf 0.7.24", + "phf 0.10.1", "phf_codegen", - "serde", - "serde_derive", - "serde_json", "string_cache", "string_cache_codegen", "tendril", ] +[[package]] +name = "markup5ever_rcdom" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9521dd6750f8e80ee6c53d65e2e4656d7de37064f3a7a5d2d11d05df93839c2" +dependencies = [ + "html5ever", + "markup5ever", + "tendril", + "xml5ever", +] + [[package]] name = "match_cfg" version = "0.1.0" @@ -1034,12 +1192,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" [[package]] -name = "memoffset" -version = "0.6.5" +name = "mime" +version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "miniz_oxide" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" dependencies = [ - "autocfg 1.1.0", + "adler", ] [[package]] @@ -1057,14 +1221,13 @@ dependencies = [ [[package]] name = "mio" -version = "0.8.5" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de" +checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" dependencies = [ "libc", - "log", "wasi 0.11.0+wasi-snapshot-preview1", - "windows-sys 0.42.0", + "windows-sys", ] [[package]] @@ -1090,9 +1253,9 @@ name = "modular-bitfield-impl" version = "0.11.2" source = "git+https://github.com/mthom/modular-bitfield#213535c684af277563678179d8496f11b84a283f" dependencies = [ - "proc-macro2 1.0.47", - "quote 1.0.21", - "syn 1.0.103", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] @@ -1130,25 +1293,11 @@ dependencies = [ [[package]] name = "nix" -version = "0.23.1" +version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6" +checksum = "abbbc55ad7b13aac85f9401c796dcda1b864e07fcad40ad47792eaa8932ea502" dependencies = [ - "bitflags", - "cc", - "cfg-if", - "libc", - "memoffset", -] - -[[package]] -name = "nix" -version = "0.25.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e322c04a9e3440c327fca7b6c8a63e6890a32fa2ad689db972425f07e0d22abb" -dependencies = [ - "autocfg 1.1.0", - "bitflags", + "bitflags 2.4.0", "cfg-if", "libc", ] @@ -1168,34 +1317,68 @@ version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" dependencies = [ - "autocfg 1.1.0", + "autocfg", + "num-traits", +] + +[[package]] +name = "num-modular" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64a5fe11d4135c3bcdf3a95b18b194afa9608a5f6ff034f5d857bc9a27fb0119" +dependencies = [ + "num-integer", + "num-traits", +] + +[[package]] +name = "num-modular" +version = "0.5.2" +source = "git+https://github.com/coasys/num-modular.git#1ae06248ec69390370def3a229b3bf4c209aa6c7" + +[[package]] +name = "num-order" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e81e321057a0370997b13e6638bba6bd7f6f426e1f8e9a2562490a28eb23e1bc" +dependencies = [ + "num-modular 0.5.1", "num-traits", ] [[package]] name = "num-traits" -version = "0.2.15" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" +checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" dependencies = [ - "autocfg 1.1.0", + "autocfg", ] [[package]] name = "num_cpus" -version = "1.14.0" +version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5" +checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" dependencies = [ "hermit-abi", "libc", ] [[package]] -name = "once_cell" -version = "1.16.0" +name = "object" +version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" +checksum = "77ac5bbd07aea88c60a577a1ce218075ffd59208b2d7ca97adf9bfc5aeb21ebe" +dependencies = [ + "memchr", +] + +[[package]] +name = "once_cell" +version = "1.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "opaque-debug" @@ -1205,11 +1388,11 @@ checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" [[package]] name = "openssl" -version = "0.10.42" +version = "0.10.57" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12fc0523e3bd51a692c8850d075d74dc062ccf251c0110668cbd921917118a13" +checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c" dependencies = [ - "bitflags", + "bitflags 2.4.0", "cfg-if", "foreign-types", "libc", @@ -1220,13 +1403,13 @@ dependencies = [ [[package]] name = "openssl-macros" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ - "proc-macro2 1.0.47", - "quote 1.0.21", - "syn 1.0.103", + "proc-macro2", + "quote", + "syn 2.0.29", ] [[package]] @@ -1237,11 +1420,10 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.77" +version = "0.9.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b03b84c3b2d099b81f0953422b4d4ad58761589d0229b5506356afca05a3670a" +checksum = "db7e971c2c2bba161b2d2fdf37080177eff520b3bc044787c7f1f5f9e78d869b" dependencies = [ - "autocfg 1.1.0", "cc", "libc", "pkg-config", @@ -1265,7 +1447,7 @@ checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" dependencies = [ "instant", "lock_api", - "parking_lot_core 0.8.5", + "parking_lot_core 0.8.6", ] [[package]] @@ -1275,44 +1457,41 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" dependencies = [ "lock_api", - "parking_lot_core 0.9.4", + "parking_lot_core 0.9.8", ] [[package]] name = "parking_lot_core" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216" +checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" dependencies = [ "cfg-if", "instant", "libc", - "redox_syscall", + "redox_syscall 0.2.16", "smallvec", "winapi", ] [[package]] name = "parking_lot_core" -version = "0.9.4" +version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0" +checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" dependencies = [ "cfg-if", "libc", - "redox_syscall", + "redox_syscall 0.3.5", "smallvec", - "windows-sys 0.42.0", + "windows-targets", ] [[package]] -name = "phf" -version = "0.7.24" +name = "percent-encoding" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3da44b85f8e8dfaec21adae67f95d93244b2ecf6ad2a692320598dcc8e6dd18" -dependencies = [ - "phf_shared 0.7.24", -] +checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" [[package]] name = "phf" @@ -1326,23 +1505,22 @@ dependencies = [ ] [[package]] -name = "phf_codegen" -version = "0.7.24" +name = "phf" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b03e85129e324ad4166b06b2c7491ae27fe3ec353af72e72cd1654c7225d517e" +checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" dependencies = [ - "phf_generator 0.7.24", - "phf_shared 0.7.24", + "phf_shared 0.10.0", ] [[package]] -name = "phf_generator" -version = "0.7.24" +name = "phf_codegen" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09364cc93c159b8b06b1f4dd8a4398984503483891b0c26b867cf431fb132662" +checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" dependencies = [ - "phf_shared 0.7.24", - "rand 0.6.5", + "phf_generator 0.10.0", + "phf_shared 0.10.0", ] [[package]] @@ -1352,7 +1530,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d43f3220d96e0080cc9ea234978ccd80d904eafb17be31bb0f76daaea6493082" dependencies = [ "phf_shared 0.9.0", - "rand 0.8.5", + "rand", +] + +[[package]] +name = "phf_generator" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" +dependencies = [ + "phf_shared 0.10.0", + "rand", ] [[package]] @@ -1364,18 +1552,9 @@ dependencies = [ "phf_generator 0.9.1", "phf_shared 0.9.0", "proc-macro-hack", - "proc-macro2 1.0.47", - "quote 1.0.21", - "syn 1.0.103", -] - -[[package]] -name = "phf_shared" -version = "0.7.24" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0" -dependencies = [ - "siphasher 0.2.3", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] @@ -1384,14 +1563,23 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a68318426de33640f02be62b4ae8eb1261be2efbc337b60c54d845bf4484e0d9" dependencies = [ - "siphasher 0.3.10", + "siphasher", +] + +[[package]] +name = "phf_shared" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" +dependencies = [ + "siphasher", ] [[package]] name = "pin-project-lite" -version = "0.2.9" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" +checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" [[package]] name = "pin-utils" @@ -1401,9 +1589,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "pkg-config" -version = "0.3.26" +version = "0.3.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" +checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" [[package]] name = "ppv-lite86" @@ -1419,9 +1607,9 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" [[package]] name = "predicates" -version = "2.1.2" +version = "2.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab68289ded120dcbf9d571afcf70163233229052aec9b08ab09532f698d0e1e6" +checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd" dependencies = [ "difflib", "itertools", @@ -1430,15 +1618,15 @@ dependencies = [ [[package]] name = "predicates-core" -version = "1.0.4" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6e7125585d872860e9955ca571650b27a4979c5823084168c5ed5bbfb016b56" +checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174" [[package]] name = "predicates-tree" -version = "1.0.6" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad3f7fa8d61e139cbc7c3edfebf3b6678883a53f5ffac65d1259329a93ee43a5" +checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf" dependencies = [ "predicates-core", "termtree", @@ -1446,45 +1634,33 @@ dependencies = [ [[package]] name = "proc-macro-hack" -version = "0.5.19" +version = "0.5.20+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" +checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "0.4.30" +version = "1.0.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" -dependencies = [ - "unicode-xid", -] - -[[package]] -name = "proc-macro2" -version = "1.0.47" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725" +checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" dependencies = [ "unicode-ident", ] [[package]] name = "quote" -version = "0.6.13" +version = "1.0.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1" +checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" dependencies = [ - "proc-macro2 0.4.30", + "proc-macro2", ] [[package]] -name = "quote" -version = "1.0.21" +name = "radium" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" -dependencies = [ - "proc-macro2 1.0.47", -] +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" [[package]] name = "radix_trie" @@ -1496,25 +1672,6 @@ dependencies = [ "nibble_vec", ] -[[package]] -name = "rand" -version = "0.6.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" -dependencies = [ - "autocfg 0.1.8", - "libc", - "rand_chacha 0.1.1", - "rand_core 0.4.2", - "rand_hc", - "rand_isaac", - "rand_jitter", - "rand_os", - "rand_pcg", - "rand_xorshift", - "winapi", -] - [[package]] name = "rand" version = "0.8.5" @@ -1522,18 +1679,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ "libc", - "rand_chacha 0.3.1", - "rand_core 0.6.4", -] - -[[package]] -name = "rand_chacha" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" -dependencies = [ - "autocfg 0.1.8", - "rand_core 0.3.1", + "rand_chacha", + "rand_core", ] [[package]] @@ -1543,24 +1690,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ "ppv-lite86", - "rand_core 0.6.4", + "rand_core", ] -[[package]] -name = "rand_core" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" -dependencies = [ - "rand_core 0.4.2", -] - -[[package]] -name = "rand_core" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" - [[package]] name = "rand_core" version = "0.6.4" @@ -1570,84 +1702,22 @@ dependencies = [ "getrandom", ] -[[package]] -name = "rand_hc" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" -dependencies = [ - "rand_core 0.3.1", -] - -[[package]] -name = "rand_isaac" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" -dependencies = [ - "rand_core 0.3.1", -] - -[[package]] -name = "rand_jitter" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" -dependencies = [ - "libc", - "rand_core 0.4.2", - "winapi", -] - -[[package]] -name = "rand_os" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" -dependencies = [ - "cloudabi", - "fuchsia-cprng", - "libc", - "rand_core 0.4.2", - "rdrand", - "winapi", -] - -[[package]] -name = "rand_pcg" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" -dependencies = [ - "autocfg 0.1.8", - "rand_core 0.4.2", -] - -[[package]] -name = "rand_xorshift" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" -dependencies = [ - "rand_core 0.3.1", -] - -[[package]] -name = "rdrand" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" -dependencies = [ - "rand_core 0.3.1", -] - [[package]] name = "redox_syscall" version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" dependencies = [ - "bitflags", + "bitflags 1.3.2", +] + +[[package]] +name = "redox_syscall" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" +dependencies = [ + "bitflags 1.3.2", ] [[package]] @@ -1657,7 +1727,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" dependencies = [ "getrandom", - "redox_syscall", + "redox_syscall 0.2.16", "thiserror", ] @@ -1674,12 +1744,40 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" [[package]] -name = "remove_dir_all" -version = "0.5.3" +name = "reqwest" +version = "0.11.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" +checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" dependencies = [ - "winapi", + "base64 0.21.3", + "bytes", + "encoding_rs", + "futures-core", + "futures-util", + "h2", + "http", + "http-body 0.4.5", + "hyper 0.14.27", + "hyper-tls", + "ipnet", + "js-sys", + "log", + "mime", + "native-tls", + "once_cell", + "percent-encoding", + "pin-project-lite", + "serde", + "serde_json", + "serde_urlencoded", + "tokio", + "tokio-native-tls", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "winreg", ] [[package]] @@ -1697,6 +1795,22 @@ dependencies = [ "winapi", ] +[[package]] +name = "ring-wasi" +version = "0.16.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db1418b2535ed5e71a9fc73d3fede8596792fd7cb4b4a0f8ecf412cfddaaedd4" +dependencies = [ + "cc", + "getrandom", + "libc", + "once_cell", + "spin", + "untrusted", + "web-sys", + "winapi", +] + [[package]] name = "ripemd160" version = "0.8.0" @@ -1718,54 +1832,47 @@ dependencies = [ ] [[package]] -name = "rug" -version = "1.17.0" +name = "rustc-demangle" +version = "0.1.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "203180f444c95eac53586ed04793ecf6454c5d28f9eca8eead815fc19e136c47" -dependencies = [ - "az", - "gmp-mpfr-sys", - "libc", -] +checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" [[package]] name = "rustix" -version = "0.36.1" +version = "0.38.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "812a2ec2043c4d6bc6482f5be2ab8244613cac2493d128d36c0759e52a626ab3" +checksum = "9bfe0f2582b4931a45d1fa608f8a8722e8b3c7ac54dd6d5f3b3212791fedef49" dependencies = [ - "bitflags", + "bitflags 2.4.0", "errno", - "io-lifetimes", "libc", "linux-raw-sys", - "windows-sys 0.42.0", + "windows-sys", ] [[package]] name = "rustversion" -version = "1.0.9" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8" +checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" [[package]] name = "rustyline" -version = "9.1.2" +version = "12.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db7826789c0e25614b03e5a54a0717a86f9ff6e6e5247f92b369472869320039" +checksum = "994eca4bca05c87e86e15d90fc7a91d1be64b4482b38cb2d27474568fe7c9db9" dependencies = [ - "bitflags", + "bitflags 2.4.0", "cfg-if", "clipboard-win", - "dirs-next", "fd-lock", + "home", "libc", "log", "memchr", - "nix 0.23.1", + "nix", "radix_trie", "scopeguard", - "smallvec", "unicode-segmentation", "unicode-width", "utf8parse", @@ -1774,9 +1881,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.11" +version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" +checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" [[package]] name = "same-file" @@ -1789,73 +1896,75 @@ dependencies = [ [[package]] name = "schannel" -version = "0.1.20" +version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2" +checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" dependencies = [ - "lazy_static", - "windows-sys 0.36.1", + "windows-sys", ] [[package]] name = "scopeguard" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" - -[[package]] -name = "scratch" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "scryer-prolog" -version = "0.9.1" +version = "0.9.2" dependencies = [ "assert_cmd", - "base64", + "base64 0.12.3", + "bit-set", + "bitvec", "blake2 0.8.1", + "bytes", "chrono", "cpu-time", "crossterm", "crrl", "ctrlc", + "dashu", + "derive_deref", "dirs-next", "divrem", "futures", "fxhash", + "getrandom", "git-version", "hostname", - "hyper", - "hyper-tls", + "http-body-util", + "hyper 1.0.0-rc.3", "indexmap", "lazy_static", "lexical", "libc", + "libffi", + "libloading", "modular-bitfield", "native-tls", "ordered-float", "phf 0.9.0", "predicates-core", - "proc-macro2 1.0.47", - "quote 1.0.21", + "proc-macro2", + "quote", + "rand", "ref_thread_local", + "reqwest", "ring", + "ring-wasi", "ripemd160", "roxmltree", - "rug", "rustyline", "ryu", "select", "serial_test", - "sha3", + "sha3 0.8.2", "smallvec", - "sodiumoxide", "static_assertions", "strum", "strum_macros", - "syn 1.0.103", + "syn 1.0.109", "to-syn-value", "to-syn-value_derive", "tokio", @@ -1864,11 +1973,11 @@ dependencies = [ [[package]] name = "security-framework" -version = "2.7.0" +version = "2.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c" +checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" dependencies = [ - "bitflags", + "bitflags 1.3.2", "core-foundation", "core-foundation-sys", "libc", @@ -1877,9 +1986,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.6.1" +version = "2.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" +checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" dependencies = [ "core-foundation-sys", "libc", @@ -1887,36 +1996,40 @@ dependencies = [ [[package]] name = "select" -version = "0.4.3" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac645958c62108d11f90f8d34e4dc2799c838fc995ed4c2075867a2a8d5be76b" +checksum = "6f9da09dc3f4dfdb6374cbffff7a2cffcec316874d4429899eefdc97b3b94dcd" dependencies = [ "bit-set", "html5ever", + "markup5ever_rcdom", ] [[package]] name = "serde" -version = "1.0.147" +version = "1.0.188" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965" +checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e" +dependencies = [ + "serde_derive", +] [[package]] name = "serde_derive" -version = "1.0.147" +version = "1.0.188" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852" +checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" dependencies = [ - "proc-macro2 1.0.47", - "quote 1.0.21", - "syn 1.0.103", + "proc-macro2", + "quote", + "syn 2.0.29", ] [[package]] name = "serde_json" -version = "1.0.87" +version = "1.0.105" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ce777b7b150d76b9cf60d28b55f5847135a003f7d7350c6be7a773508ce7d45" +checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" dependencies = [ "itoa", "ryu", @@ -1924,36 +2037,51 @@ dependencies = [ ] [[package]] -name = "serial_test" -version = "0.5.1" +name = "serde_urlencoded" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0bccbcf40c8938196944a3da0e133e031a33f4d6b72db3bda3cc556e361905d" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serial_test" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e56dd856803e253c8f298af3f4d7eb0ae5e23a737252cd90bb4f3b435033b2d" +dependencies = [ + "dashmap", + "futures", "lazy_static", - "parking_lot 0.11.2", + "log", + "parking_lot 0.12.1", "serial_test_derive", ] [[package]] name = "serial_test_derive" -version = "0.5.1" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2acd6defeddb41eb60bb468f8825d0cfd0c2a76bc03bfd235b6a1dc4f6a1ad5" +checksum = "91d129178576168c589c9ec973feedf7d3126c01ac2bf08795109aa35b69fb8f" dependencies = [ - "proc-macro2 1.0.47", - "quote 1.0.21", - "syn 1.0.103", + "proc-macro2", + "quote", + "syn 2.0.29", ] [[package]] name = "sha2" -version = "0.10.6" +version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" +checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" dependencies = [ "cfg-if", "cpufeatures", - "digest 0.10.5", + "digest 0.10.7", ] [[package]] @@ -1970,10 +2098,20 @@ dependencies = [ ] [[package]] -name = "signal-hook" -version = "0.3.14" +name = "sha3" +version = "0.10.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d" +checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" +dependencies = [ + "digest 0.10.7", + "keccak", +] + +[[package]] +name = "signal-hook" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" dependencies = [ "libc", "signal-hook-registry", @@ -1992,66 +2130,52 @@ dependencies = [ [[package]] name = "signal-hook-registry" -version = "1.4.0" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" +checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" dependencies = [ "libc", ] -[[package]] -name = "signature" -version = "1.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" - [[package]] name = "siphasher" -version = "0.2.3" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac" - -[[package]] -name = "siphasher" -version = "0.3.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" +checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" [[package]] name = "slab" -version = "0.4.7" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" dependencies = [ - "autocfg 1.1.0", + "autocfg", ] [[package]] name = "smallvec" -version = "1.10.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" +checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" [[package]] name = "socket2" -version = "0.4.7" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" +checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" dependencies = [ "libc", "winapi", ] [[package]] -name = "sodiumoxide" -version = "0.2.7" +name = "socket2" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e26be3acb6c2d9a7aac28482586a7856436af4cfe7100031d219de2d2ecb0028" +checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" dependencies = [ - "ed25519", "libc", - "libsodium-sys", - "serde", + "windows-sys", ] [[package]] @@ -2074,38 +2198,30 @@ checksum = "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0" [[package]] name = "string_cache" -version = "0.7.5" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89c058a82f9fd69b1becf8c274f412281038877c553182f1d02eb027045a2d67" +checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" dependencies = [ - "lazy_static", "new_debug_unreachable", - "phf_shared 0.7.24", + "once_cell", + "parking_lot 0.12.1", + "phf_shared 0.10.0", "precomputed-hash", "serde", - "string_cache_codegen", - "string_cache_shared", ] [[package]] name = "string_cache_codegen" -version = "0.4.4" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0f45ed1b65bf9a4bf2f7b7dc59212d1926e9eaf00fa998988e420fd124467c6" +checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" dependencies = [ - "phf_generator 0.7.24", - "phf_shared 0.7.24", - "proc-macro2 1.0.47", - "quote 1.0.21", - "string_cache_shared", + "phf_generator 0.10.0", + "phf_shared 0.10.0", + "proc-macro2", + "quote", ] -[[package]] -name = "string_cache_shared" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1884d1bc09741d466d9b14e6d37ac89d6909cbcac41dd9ae982d4d063bbedfc" - [[package]] name = "strum" version = "0.23.0" @@ -2119,10 +2235,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5bb0dc7ee9c15cea6199cde9a127fa16a4c5819af85395457ad72d68edc85a38" dependencies = [ "heck", - "proc-macro2 1.0.47", - "quote 1.0.21", + "proc-macro2", + "quote", "rustversion", - "syn 1.0.103", + "syn 1.0.109", ] [[package]] @@ -2133,44 +2249,49 @@ checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" [[package]] name = "subtle" -version = "2.4.1" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" +checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" [[package]] name = "syn" -version = "0.15.44" +version = "1.0.109" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" dependencies = [ - "proc-macro2 0.4.30", - "quote 0.6.13", - "unicode-xid", -] - -[[package]] -name = "syn" -version = "1.0.103" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d" -dependencies = [ - "proc-macro2 1.0.47", - "quote 1.0.21", + "proc-macro2", + "quote", "unicode-ident", ] [[package]] -name = "tempfile" -version = "3.3.0" +name = "syn" +version = "2.0.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" +checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "tap" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" + +[[package]] +name = "tempfile" +version = "3.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" dependencies = [ "cfg-if", "fastrand", - "libc", - "redox_syscall", - "remove_dir_all", - "winapi", + "redox_syscall 0.3.5", + "rustix", + "windows-sys", ] [[package]] @@ -2184,59 +2305,65 @@ dependencies = [ "utf-8", ] -[[package]] -name = "termcolor" -version = "1.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" -dependencies = [ - "winapi-util", -] - [[package]] name = "termtree" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8" +checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "thiserror" -version = "1.0.37" +version = "1.0.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e" +checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.37" +version = "1.0.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb" +checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" dependencies = [ - "proc-macro2 1.0.47", - "quote 1.0.21", - "syn 1.0.103", + "proc-macro2", + "quote", + "syn 2.0.29", ] [[package]] name = "time" -version = "0.1.44" +version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" +checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" dependencies = [ "libc", "wasi 0.10.0+wasi-snapshot-preview1", "winapi", ] +[[package]] +name = "tinyvec" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + [[package]] name = "to-syn-value" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "45dcb7b4108a4793bdd74aa3714296c6eaf43663edf73fa8625d0d7621e68447" dependencies = [ - "syn 1.0.103", + "syn 1.0.109", "to-syn-value_derive", ] @@ -2246,47 +2373,46 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd4fdec6de01b568c1d3721c9d46a352623c536cd55a8a5acfefb63d1fccccbc" dependencies = [ - "proc-macro2 1.0.47", - "quote 1.0.21", - "syn 1.0.103", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] name = "tokio" -version = "1.21.2" +version = "1.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099" +checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" dependencies = [ - "autocfg 1.1.0", + "backtrace", "bytes", "libc", - "memchr", - "mio 0.8.5", + "mio 0.8.8", "num_cpus", "parking_lot 0.12.1", "pin-project-lite", "signal-hook-registry", - "socket2", + "socket2 0.5.3", "tokio-macros", - "winapi", + "windows-sys", ] [[package]] name = "tokio-macros" -version = "1.8.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484" +checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" dependencies = [ - "proc-macro2 1.0.47", - "quote 1.0.21", - "syn 1.0.103", + "proc-macro2", + "quote", + "syn 2.0.29", ] [[package]] name = "tokio-native-tls" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" dependencies = [ "native-tls", "tokio", @@ -2294,9 +2420,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.4" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740" +checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" dependencies = [ "bytes", "futures-core", @@ -2325,36 +2451,51 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.30" +version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" +checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" dependencies = [ "once_cell", ] [[package]] name = "try-lock" -version = "0.2.3" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" +checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "typenum" -version = "1.15.0" +version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" +checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" + +[[package]] +name = "unicode-bidi" +version = "0.3.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" [[package]] name = "unicode-ident" -version = "1.0.5" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3" +checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" + +[[package]] +name = "unicode-normalization" +version = "0.1.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" +dependencies = [ + "tinyvec", +] [[package]] name = "unicode-segmentation" -version = "1.10.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a" +checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" [[package]] name = "unicode-width" @@ -2362,18 +2503,23 @@ version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" -[[package]] -name = "unicode-xid" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" - [[package]] name = "untrusted" version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" +[[package]] +name = "url" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", +] + [[package]] name = "utf-8" version = "0.7.6" @@ -2382,9 +2528,9 @@ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" [[package]] name = "utf8parse" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372" +checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "vcpkg" @@ -2409,22 +2555,20 @@ dependencies = [ [[package]] name = "walkdir" -version = "2.3.2" +version = "2.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" +checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" dependencies = [ "same-file", - "winapi", "winapi-util", ] [[package]] name = "want" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" dependencies = [ - "log", "try-lock", ] @@ -2442,9 +2586,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.83" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" +checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" dependencies = [ "cfg-if", "wasm-bindgen-macro", @@ -2452,53 +2596,65 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.83" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" +checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" dependencies = [ "bumpalo", "log", "once_cell", - "proc-macro2 1.0.47", - "quote 1.0.21", - "syn 1.0.103", + "proc-macro2", + "quote", + "syn 2.0.29", "wasm-bindgen-shared", ] [[package]] -name = "wasm-bindgen-macro" -version = "0.2.83" +name = "wasm-bindgen-futures" +version = "0.4.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" +checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" dependencies = [ - "quote 1.0.21", + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" +dependencies = [ + "quote", "wasm-bindgen-macro-support", ] [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.83" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" +checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" dependencies = [ - "proc-macro2 1.0.47", - "quote 1.0.21", - "syn 1.0.103", + "proc-macro2", + "quote", + "syn 2.0.29", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.83" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" +checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" [[package]] name = "web-sys" -version = "0.3.60" +version = "0.3.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" +checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" dependencies = [ "js-sys", "wasm-bindgen", @@ -2536,104 +2692,109 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] -name = "windows-sys" -version = "0.36.1" +name = "windows" +version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" +checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" dependencies = [ - "windows_aarch64_msvc 0.36.1", - "windows_i686_gnu 0.36.1", - "windows_i686_msvc 0.36.1", - "windows_x86_64_gnu 0.36.1", - "windows_x86_64_msvc 0.36.1", + "windows-targets", ] [[package]] name = "windows-sys" -version = "0.42.0" +version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" dependencies = [ "windows_aarch64_gnullvm", - "windows_aarch64_msvc 0.42.0", - "windows_i686_gnu 0.42.0", - "windows_i686_msvc 0.42.0", - "windows_x86_64_gnu 0.42.0", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", "windows_x86_64_gnullvm", - "windows_x86_64_msvc 0.42.0", + "windows_x86_64_msvc", ] [[package]] name = "windows_aarch64_gnullvm" -version = "0.42.0" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" [[package]] name = "windows_aarch64_msvc" -version = "0.36.1" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" [[package]] name = "windows_i686_gnu" -version = "0.36.1" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" - -[[package]] -name = "windows_i686_gnu" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" [[package]] name = "windows_i686_msvc" -version = "0.36.1" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" - -[[package]] -name = "windows_i686_msvc" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" [[package]] name = "windows_x86_64_gnu" -version = "0.36.1" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" [[package]] name = "windows_x86_64_gnullvm" -version = "0.42.0" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" [[package]] name = "windows_x86_64_msvc" -version = "0.36.1" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] -name = "windows_x86_64_msvc" -version = "0.42.0" +name = "winreg" +version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5" +checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" +dependencies = [ + "cfg-if", + "windows-sys", +] + +[[package]] +name = "wyz" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" +dependencies = [ + "tap", +] + +[[package]] +name = "xml5ever" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4034e1d05af98b51ad7214527730626f019682d797ba38b51689212118d8e650" +dependencies = [ + "log", + "mac", + "markup5ever", +] [[package]] name = "xmlparser" diff --git a/pkgs/development/compilers/scryer-prolog/default.nix b/pkgs/development/compilers/scryer-prolog/default.nix index 3d52511def17..95a846eefc12 100644 --- a/pkgs/development/compilers/scryer-prolog/default.nix +++ b/pkgs/development/compilers/scryer-prolog/default.nix @@ -11,19 +11,22 @@ rustPlatform.buildRustPackage rec { pname = "scryer-prolog"; - version = "0.9.1"; + version = "0.9.2"; src = fetchFromGitHub { owner = "mthom"; repo = "scryer-prolog"; rev = "v${version}"; - sha256 = "bDLVOXX9nv6Guu5czRFkviJf7dBiaqt5O8SLUJlcBZo="; + hash = "sha256-68wtRFkJh8OIdauSIyJ29en399TLnaRaRxw+5bkykxk="; }; cargoLock = { lockFile = ./Cargo.lock; outputHashes = { + "dashu-0.3.1" = "sha256-bovPjLs98oj8/e/X/9GIYCzArzGfshjoeHU7IHdnq30="; + "libffi-3.2.0" = "sha256-GcNcXJCfiJp/7X5FXQJ/St0SmsPlCyeM8/s9FR+VE+M="; "modular-bitfield-0.11.2" = "sha256-vcx+xt5owZVWOlKwudAr0EB1zlLLL5pVfWokw034BQI="; + "num-modular-0.5.2" = "sha256-G4Kr3BMbXprC6tbG3mY/fOi2sQzaepOTeC4vDiOKWUM="; }; }; From 37a5a5d797456e4fb3209e5f89de522938b0a249 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 04:49:50 +0000 Subject: [PATCH 220/346] python310Packages.shiv: 1.0.3 -> 1.0.4 --- pkgs/development/python-modules/shiv/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/shiv/default.nix b/pkgs/development/python-modules/shiv/default.nix index 0aa5931cbf2b..57e67567c7c8 100644 --- a/pkgs/development/python-modules/shiv/default.nix +++ b/pkgs/development/python-modules/shiv/default.nix @@ -11,12 +11,12 @@ buildPythonPackage rec { pname = "shiv"; - version = "1.0.3"; + version = "1.0.4"; format = "pyproject"; src = fetchPypi { inherit pname version; - hash = "sha256-vxRv8/Oryi6xIU6GAY82EkocItk1QO71JAMhys19f1c="; + hash = "sha256-j2n3gXolRalMyOB6jsWXN1z4biwb0OWD7nU9bzH4UGA="; }; propagatedBuildInputs = [ click pip setuptools wheel ]; From 0fc7c0cedc14400517e2cf0a029117ad3308d084 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 05:21:22 +0000 Subject: [PATCH 221/346] python310Packages.pyfiglet: 0.8.post1 -> 1.0.1 --- pkgs/development/python-modules/pyfiglet/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyfiglet/default.nix b/pkgs/development/python-modules/pyfiglet/default.nix index e9671e03cb3b..61420455dac3 100644 --- a/pkgs/development/python-modules/pyfiglet/default.nix +++ b/pkgs/development/python-modules/pyfiglet/default.nix @@ -1,12 +1,12 @@ { lib, buildPythonPackage, fetchPypi }: buildPythonPackage rec { - version = "0.8.post1"; + version = "1.0.1"; pname = "pyfiglet"; src = fetchPypi { inherit pname version; - sha256 = "c6c2321755d09267b438ec7b936825a4910fec696292139e664ca8670e103639"; + sha256 = "sha256-x9kIim+CG99pxY2XVzeAhadogWJrIwjmu9pwcSFgfxg="; }; doCheck = false; From 3abfffd8dbb34f3ba0c3a1d8739997a3ffa660e1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 05:28:35 +0000 Subject: [PATCH 222/346] klipper: unstable-2023-08-21 -> unstable-2023-09-10 --- pkgs/servers/klipper/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/klipper/default.nix b/pkgs/servers/klipper/default.nix index a9703045cd70..6428e7510c44 100644 --- a/pkgs/servers/klipper/default.nix +++ b/pkgs/servers/klipper/default.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation rec { pname = "klipper"; - version = "unstable-2023-08-21"; + version = "unstable-2023-09-10"; src = fetchFromGitHub { owner = "KevinOConnor"; repo = "klipper"; - rev = "5f990f93d533247d3a675e8c423280f4333ad8ce"; - sha256 = "sha256-jICOEzLvy2wBInW4qIbFZbhRuHjsio6UM13K9UlZi1U="; + rev = "8ef0f7d7e3d3b2ac7bc1e80ed3295ceca6bba4e7"; + sha256 = "sha256-f/fPnZvtnASphYtvM9NBae0on8GWSwQPykukZ3XCy3M="; }; sourceRoot = "${src.name}/klippy"; From 5171b87765b841a16833e8f089120ef784acbd6d Mon Sep 17 00:00:00 2001 From: Emily Trau Date: Tue, 12 Sep 2023 22:40:23 -0700 Subject: [PATCH 223/346] minimal-bootstrap.musl: init at 1.2.4 --- .../linux/minimal-bootstrap/default.nix | 6 ++ .../linux/minimal-bootstrap/musl/default.nix | 87 +++++++++++++++++++ 2 files changed, 93 insertions(+) create mode 100644 pkgs/os-specific/linux/minimal-bootstrap/musl/default.nix diff --git a/pkgs/os-specific/linux/minimal-bootstrap/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/default.nix index b8807eec0902..55900f86d21c 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/default.nix @@ -144,6 +144,11 @@ lib.makeScope mes = lib.recurseIntoAttrs (callPackage ./mes { }); mes-libc = callPackage ./mes/libc.nix { }; + musl = callPackage ./musl { + gcc = gcc46; + gawk = gawk-mes; + }; + stage0-posix = callPackage ./stage0-posix { }; inherit (self.stage0-posix) kaem m2libc mescc-tools mescc-tools-extra; @@ -180,6 +185,7 @@ lib.makeScope echo ${gzip.tests.get-version} echo ${heirloom.tests.get-version} echo ${mes.compiler.tests.get-version} + echo ${musl.tests.hello-world} echo ${tinycc-mes.compiler.tests.chain} echo ${xz.tests.get-version} mkdir ''${out} diff --git a/pkgs/os-specific/linux/minimal-bootstrap/musl/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/musl/default.nix new file mode 100644 index 000000000000..c252d60328e9 --- /dev/null +++ b/pkgs/os-specific/linux/minimal-bootstrap/musl/default.nix @@ -0,0 +1,87 @@ +{ lib +, buildPlatform +, hostPlatform +, fetchurl +, bash +, gcc +, binutils +, gnumake +, gnugrep +, gnused +, gawk +, gnutar +, gzip +}: +let + pname = "musl"; + version = "1.2.4"; + + src = fetchurl { + url = "https://musl.libc.org/releases/musl-${version}.tar.gz"; + hash = "sha256-ejXq4z1TcqfA2hGI3nmHJvaIJVE7euPr6XqqpSEU8Dk="; + }; +in +bash.runCommand "${pname}-${version}" { + inherit pname version; + + nativeBuildInputs = [ + gcc + binutils + gnumake + gnused + gnugrep + gawk + gnutar + gzip + ]; + + passthru.tests.hello-world = result: + bash.runCommand "${pname}-simple-program-${version}" { + nativeBuildInputs = [ gcc binutils ]; + } '' + cat <> test.c + #include + int main() { + printf("Hello World!\n"); + return 0; + } + EOF + gcc -static -B${result}/lib -I${result}/include -o test test.c + ./test + mkdir $out + ''; + + meta = with lib; { + description = "An efficient, small, quality libc implementation"; + homepage = "https://musl.libc.org"; + license = licenses.mit; + maintainers = teams.minimal-bootstrap.members; + platforms = platforms.unix; + }; +} '' + # Unpack + tar xzf ${src} + cd musl-${version} + + # Patch + # https://github.com/ZilchOS/bootstrap-from-tcc/blob/2e0c68c36b3437386f786d619bc9a16177f2e149/using-nix/2a3-intermediate-musl.nix + sed -i 's|/bin/sh|${bash}/bin/bash|' \ + tools/*.sh + # patch popen/system to search in PATH instead of hardcoding /bin/sh + sed -i 's|posix_spawn(&pid, "/bin/sh",|posix_spawnp(\&pid, "sh",|' \ + src/stdio/popen.c src/process/system.c + sed -i 's|execl("/bin/sh", "sh", "-c",|execlp("sh", "-c",|'\ + src/misc/wordexp.c + + # Configure + bash ./configure \ + --prefix=$out \ + --build=${buildPlatform.config} \ + --host=${hostPlatform.config} + + # Build + make + + # Install + make install +'' From 39b415310c3989014a809fdc7c2a08db7d2f3c5f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 05:57:27 +0000 Subject: [PATCH 224/346] interactsh: 1.1.5 -> 1.1.6 --- pkgs/tools/misc/interactsh/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/interactsh/default.nix b/pkgs/tools/misc/interactsh/default.nix index bf4d79a72aa7..7621333b3f1a 100644 --- a/pkgs/tools/misc/interactsh/default.nix +++ b/pkgs/tools/misc/interactsh/default.nix @@ -5,16 +5,16 @@ buildGoModule rec { pname = "interactsh"; - version = "1.1.5"; + version = "1.1.6"; src = fetchFromGitHub { owner = "projectdiscovery"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-p6VB3BB8iP65ZDgwIM+DqilxRx1+8l9bBickqLMAYqk="; + hash = "sha256-cSqDiJEJdtHwL/xumZPOp1JHg7SUZ/47nKFv4bWBo5U="; }; - vendorHash = "sha256-NXBqFARgItXXhFIhRNz/DDbKGm7MH3kgawFiXHbV/RQ="; + vendorHash = "sha256-xtV+QLheWU6RJSjmoOunrsOfUhNCDWJORQDBAmJd2Io="; modRoot = "."; subPackages = [ From 1a69f6a2021d0c2b083653986cb746fcd7ed2b3a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 06:02:47 +0000 Subject: [PATCH 225/346] kora-icon-theme: 1.5.7 -> 1.5.8 --- pkgs/data/icons/kora-icon-theme/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/icons/kora-icon-theme/default.nix b/pkgs/data/icons/kora-icon-theme/default.nix index a2c705c8f3da..280b89cf6395 100644 --- a/pkgs/data/icons/kora-icon-theme/default.nix +++ b/pkgs/data/icons/kora-icon-theme/default.nix @@ -10,13 +10,13 @@ stdenvNoCC.mkDerivation rec { pname = "kora-icon-theme"; - version = "1.5.7"; + version = "1.5.8"; src = fetchFromGitHub { owner = "bikass"; repo = "kora"; rev = "v${version}"; - sha256 = "sha256-VAlfrUWgxcG17ZTlA357gengXTilwuZOBscIzadAsaU="; + sha256 = "sha256-ZPjtY6s3Sgl0aU2pAxagTMFIOcwDAZQRYtvOC0FBJaI="; }; nativeBuildInputs = [ From 02a81a158d93884eeec2c6308b9a77469123b21a Mon Sep 17 00:00:00 2001 From: kashw2 Date: Wed, 13 Sep 2023 16:02:29 +1000 Subject: [PATCH 226/346] netbeans: 18 -> 19 --- pkgs/applications/editors/netbeans/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/netbeans/default.nix b/pkgs/applications/editors/netbeans/default.nix index 42209ad09e05..11db2a2a14b3 100644 --- a/pkgs/applications/editors/netbeans/default.nix +++ b/pkgs/applications/editors/netbeans/default.nix @@ -3,7 +3,7 @@ }: let - version = "18"; + version = "19"; desktopItem = makeDesktopItem { name = "netbeans"; exec = "netbeans"; @@ -19,7 +19,7 @@ stdenv.mkDerivation { inherit version; src = fetchurl { url = "mirror://apache/netbeans/netbeans/${version}/netbeans-${version}-bin.zip"; - hash = "sha256-CTWOW1vd200oZZYqDRT4wqr4v5I3AAgEcqA/qi9Ief8="; + hash = "sha256-jfcO3WMH0Ir1+VfpZhaRcykTIoTmxA5DK8ZO8orP1Jg="; }; buildCommand = '' From 759ee3cebb1221649e69d2859aeb4cbcecdd5d84 Mon Sep 17 00:00:00 2001 From: kashw2 Date: Wed, 13 Sep 2023 16:02:52 +1000 Subject: [PATCH 227/346] netbeans: added kashw2 as maintainer --- pkgs/applications/editors/netbeans/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/netbeans/default.nix b/pkgs/applications/editors/netbeans/default.nix index 11db2a2a14b3..c2b1d627496f 100644 --- a/pkgs/applications/editors/netbeans/default.nix +++ b/pkgs/applications/editors/netbeans/default.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation { binaryBytecode binaryNativeCode ]; - maintainers = with lib.maintainers; [ sander rszibele ]; + maintainers = with lib.maintainers; [ sander rszibele kashw2 ]; platforms = lib.platforms.unix; }; } From 8707f43083d7fd106ee499214d30ba4bb5853a15 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 12 Sep 2023 04:20:00 +0000 Subject: [PATCH 228/346] notmuch: add changelog to meta --- pkgs/applications/networking/mailreaders/notmuch/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/networking/mailreaders/notmuch/default.nix b/pkgs/applications/networking/mailreaders/notmuch/default.nix index 643f2066678d..79b4ea41ddd7 100644 --- a/pkgs/applications/networking/mailreaders/notmuch/default.nix +++ b/pkgs/applications/networking/mailreaders/notmuch/default.nix @@ -136,6 +136,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Mail indexer"; homepage = "https://notmuchmail.org/"; + changelog = "https://git.notmuchmail.org/git?p=notmuch;a=blob_plain;f=NEWS;hb=${version}"; license = licenses.gpl3Plus; maintainers = with maintainers; [ flokli puckipedia ]; platforms = platforms.unix; From 69ae2d6bba5b17fd089ec27d4dacf9d6d937938b Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 12 Sep 2023 04:20:00 +0000 Subject: [PATCH 229/346] notmuch: add updateScript --- .../applications/networking/mailreaders/notmuch/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/applications/networking/mailreaders/notmuch/default.nix b/pkgs/applications/networking/mailreaders/notmuch/default.nix index 79b4ea41ddd7..3704efb68c6b 100644 --- a/pkgs/applications/networking/mailreaders/notmuch/default.nix +++ b/pkgs/applications/networking/mailreaders/notmuch/default.nix @@ -7,6 +7,7 @@ , emacs , ruby , testers +, gitUpdater , which, dtach, openssl, bash, gdb, man, git , withEmacs ? true , withRuby ? true @@ -131,6 +132,11 @@ stdenv.mkDerivation rec { pythonSourceRoot = "notmuch-${version}/bindings/python"; tests.version = testers.testVersion { package = notmuch; }; inherit version; + + updateScript = gitUpdater { + url = "https://git.notmuchmail.org/git/notmuch"; + ignoredVersions = "_rc.*"; + }; }; meta = with lib; { From 5d2b2523a0442fd19294359b31b8535696c32984 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 12 Sep 2023 04:20:00 +0000 Subject: [PATCH 230/346] notmuch: 0.37 -> 0.38 Changelog: https://git.notmuchmail.org/git?p=notmuch;a=blob_plain;f=NEWS;hb=0.38 --- pkgs/applications/networking/mailreaders/notmuch/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/notmuch/default.nix b/pkgs/applications/networking/mailreaders/notmuch/default.nix index 3704efb68c6b..87ad4a015fd8 100644 --- a/pkgs/applications/networking/mailreaders/notmuch/default.nix +++ b/pkgs/applications/networking/mailreaders/notmuch/default.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { pname = "notmuch"; - version = "0.37"; + version = "0.38"; src = fetchurl { url = "https://notmuchmail.org/releases/notmuch-${version}.tar.xz"; - sha256 = "sha256-DnZt8ot4v064I1Ymqx9S8E8eNmZJMlqM6NPJCGAnhvY="; + sha256 = "sha256-oXkBrb5D9IGmv1PBWiogJovI3HrVzPaFoNF8FFbbr24="; }; nativeBuildInputs = [ From e995af584a8f8cdddd2806ccd5b4e701f833e1f7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 06:13:23 +0000 Subject: [PATCH 231/346] swego: 0.98 -> 1.0 --- pkgs/servers/swego/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/swego/default.nix b/pkgs/servers/swego/default.nix index 7ead19f5ceb1..99f238c46d05 100644 --- a/pkgs/servers/swego/default.nix +++ b/pkgs/servers/swego/default.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "swego"; - version = "0.98"; + version = "1.0"; src = fetchFromGitHub { owner = "nodauf"; repo = "Swego"; rev = "v${version}"; - sha256 = "sha256-fS1mrB4379hnnkLMkpKqV2QB680t5T0QEqsvqOp9pzY="; + sha256 = "sha256-OlaNDXKaIim5n0niqYIpRliVo7lse76vNxPKF6B6yF0="; }; - vendorSha256 = "sha256-N4HDngQFNCzQ74W52R0khetN6+J7npvBC/bYZBAgLB4="; + vendorHash = "sha256-N4HDngQFNCzQ74W52R0khetN6+J7npvBC/bYZBAgLB4="; postInstall = '' mv $out/bin/src $out/bin/$pname From 0c64adb7e91027c4b9e78316690d68de9fb5c6ff Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 06:21:24 +0000 Subject: [PATCH 232/346] go-mockery: 2.33.0 -> 2.33.2 --- pkgs/development/tools/go-mockery/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/go-mockery/default.nix b/pkgs/development/tools/go-mockery/default.nix index 690dd71d4328..e6baa82f1150 100644 --- a/pkgs/development/tools/go-mockery/default.nix +++ b/pkgs/development/tools/go-mockery/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "go-mockery"; - version = "2.33.0"; + version = "2.33.2"; src = fetchFromGitHub { owner = "vektra"; repo = "mockery"; rev = "v${version}"; - sha256 = "sha256-HQBGKWJSjo4ox8YEeQhzM8r+GxuEMsj3SiFAO78j0bA="; + sha256 = "sha256-VhzU/18xLmimhRyEqAEi0+B8uiXJFb+ri/0MuugogzI="; }; preCheck = '' From 48cb6cbd43b85d3f0b573e73d461861fa7901ccc Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 06:23:06 +0000 Subject: [PATCH 233/346] ddccontrol-db: 20230727 -> 20230821 --- pkgs/data/misc/ddccontrol-db/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/misc/ddccontrol-db/default.nix b/pkgs/data/misc/ddccontrol-db/default.nix index 816a007596f9..efb3f021ec5a 100644 --- a/pkgs/data/misc/ddccontrol-db/default.nix +++ b/pkgs/data/misc/ddccontrol-db/default.nix @@ -6,13 +6,13 @@ stdenv.mkDerivation rec { pname = "ddccontrol-db"; - version = "20230727"; + version = "20230821"; src = fetchFromGitHub { owner = "ddccontrol"; repo = pname; rev = version; - sha256 = "sha256-TRbFwaYRVHgg7dyg/OFPFkZ9nZ747zaNhnnfMljSOOE="; + sha256 = "sha256-R+DXpT9Tgt311G/OtmKp3sqN0ex/rlLt3JuSK7kciC0="; }; nativeBuildInputs = [ autoreconfHook intltool ]; From e09e0aa1fb57ad97e7cfe28ceedb39ccce56ee48 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 06:36:39 +0000 Subject: [PATCH 234/346] sshocker: 0.3.2 -> 0.3.3 --- pkgs/tools/security/sshocker/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/sshocker/default.nix b/pkgs/tools/security/sshocker/default.nix index 027084ec0dcf..b42c0a7580c3 100644 --- a/pkgs/tools/security/sshocker/default.nix +++ b/pkgs/tools/security/sshocker/default.nix @@ -5,16 +5,16 @@ buildGoModule rec { pname = "sshocker"; - version = "0.3.2"; + version = "0.3.3"; src = fetchFromGitHub { owner = "lima-vm"; repo = "sshocker"; rev = "refs/tags/v${version}"; - hash = "sha256-u/H9X0YbjVFK8IMUmL6OdarP/ojqXjZAHI+k61Ja++w="; + hash = "sha256-Z1Dg+AeyfFmUDc3jV8/tOcUrxuyInfwubzo0cLpfFl8="; }; - vendorHash = "sha256-WcPKMF8KNx7zlsdTnFf8vnW/uZZL1F4JWqMK7+qmyCk="; + vendorHash = "sha256-ceQzYByJNXr02IDBKhYuqnKfaTbnX5T03p2US4HRu6I="; ldflags = [ "-s" From 840f02aa54f04c1f8d9794f22a105e6d8aa87d2e Mon Sep 17 00:00:00 2001 From: linsui Date: Wed, 13 Sep 2023 14:19:04 +0800 Subject: [PATCH 235/346] nixos/yazi: add to module-list.nix --- nixos/modules/module-list.nix | 1 + nixos/modules/programs/yazi.nix | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 6479fd6e7df7..2eb5f8f157bf 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -279,6 +279,7 @@ ./programs/xss-lock.nix ./programs/xwayland.nix ./programs/yabar.nix + ./programs/yazi.nix ./programs/zmap.nix ./programs/zsh/oh-my-zsh.nix ./programs/zsh/zsh-autoenv.nix diff --git a/nixos/modules/programs/yazi.nix b/nixos/modules/programs/yazi.nix index 3416bca06679..973f5c0122c2 100644 --- a/nixos/modules/programs/yazi.nix +++ b/nixos/modules/programs/yazi.nix @@ -45,5 +45,9 @@ in names); }; }; - meta.maintainers = with lib.maintainers; [ linsui ]; + meta = { + maintainers = with lib.maintainers; [ linsui ]; + # The version of the package is used in the doc. + buildDocsInSandbox = false; + }; } From ff323ed355ff62795c79c3fed04c4ee06c641898 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Tue, 12 Sep 2023 22:44:46 -0600 Subject: [PATCH 236/346] =?UTF-8?q?treewide:=20vendorSha256=20=E2=86=92=20?= =?UTF-8?q?vendorHash?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit via: `find pkgs/ -type f -exec sed -i 's/vendorSha256 = "sha256/vendorHash = "sha256/' {};` --- pkgs/applications/editors/gophernotes/default.nix | 2 +- pkgs/applications/editors/hecate/default.nix | 2 +- .../graphics/ascii-image-converter/default.nix | 2 +- pkgs/applications/misc/darkman/default.nix | 2 +- pkgs/applications/misc/expenses/default.nix | 2 +- pkgs/applications/misc/gmnitohtml/default.nix | 2 +- pkgs/applications/misc/go-jira/default.nix | 2 +- pkgs/applications/misc/go-thumbnailer/default.nix | 2 +- pkgs/applications/misc/gsctl/default.nix | 2 +- pkgs/applications/misc/kiln/default.nix | 2 +- pkgs/applications/misc/kratos/default.nix | 2 +- pkgs/applications/misc/lemonade/default.nix | 2 +- pkgs/applications/misc/mop/default.nix | 2 +- pkgs/applications/misc/nwg-menu/default.nix | 2 +- pkgs/applications/misc/openring/default.nix | 2 +- pkgs/applications/misc/remarkable/rmapi/default.nix | 2 +- pkgs/applications/misc/senv/default.nix | 2 +- pkgs/applications/misc/slides/default.nix | 2 +- pkgs/applications/misc/sqls/default.nix | 2 +- pkgs/applications/misc/tasktimer/default.nix | 2 +- pkgs/applications/misc/tsukae/default.nix | 2 +- pkgs/applications/misc/writefreely/default.nix | 2 +- pkgs/applications/misc/ydict/default.nix | 2 +- pkgs/applications/networking/bee/bee.nix | 8 ++++---- .../networking/browsers/amfora/default.nix | 2 +- .../networking/cluster/assign-lb-ip/default.nix | 2 +- .../networking/cluster/atmos/default.nix | 2 +- .../networking/cluster/cmctl/default.nix | 2 +- pkgs/applications/networking/cluster/cni/default.nix | 2 +- .../networking/cluster/fetchit/default.nix | 2 +- .../networking/cluster/fluxcd/default.nix | 2 +- .../networking/cluster/fluxctl/default.nix | 2 +- .../networking/cluster/hashi-up/default.nix | 2 +- pkgs/applications/networking/cluster/jx/default.nix | 2 +- .../networking/cluster/k0sctl/default.nix | 2 +- .../networking/cluster/kconf/default.nix | 2 +- .../networking/cluster/kubecolor/default.nix | 2 +- .../networking/cluster/kubectl-doctor/default.nix | 2 +- .../networking/cluster/kubectl-klock/default.nix | 2 +- .../networking/cluster/kubectl-ktop/default.nix | 2 +- .../networking/cluster/kubectl-tree/default.nix | 2 +- .../networking/cluster/kubent/default.nix | 2 +- .../networking/cluster/kubeval/default.nix | 2 +- .../networking/cluster/levant/default.nix | 2 +- .../networking/cluster/linkerd/default.nix | 2 +- .../applications/networking/cluster/linkerd/edge.nix | 2 +- .../networking/cluster/linkerd/generic.nix | 4 ++-- .../networking/cluster/nomad-autoscaler/default.nix | 2 +- .../networking/cluster/nomad-pack/default.nix | 2 +- .../networking/cluster/nomad/default.nix | 12 ++++++------ .../octant/plugins/starboard-octant-plugin.nix | 2 +- .../applications/networking/cluster/qbec/default.nix | 2 +- .../networking/cluster/sonobuoy/default.nix | 2 +- .../networking/cluster/temporalite/default.nix | 2 +- .../networking/cluster/terraform-docs/default.nix | 2 +- .../cluster/terraform-inventory/default.nix | 2 +- .../networking/cluster/tgswitch/default.nix | 2 +- .../networking/feedreaders/photon/default.nix | 2 +- pkgs/applications/networking/gmailctl/default.nix | 2 +- pkgs/applications/networking/hyprspace/default.nix | 2 +- .../networking/instant-messengers/go-neb/default.nix | 2 +- .../networking/instant-messengers/gomuks/default.nix | 2 +- .../networking/instant-messengers/mm/default.nix | 2 +- pkgs/applications/networking/irc/senpai/default.nix | 2 +- .../networking/p2p/magnetico/default.nix | 2 +- pkgs/applications/networking/peroxide/default.nix | 2 +- pkgs/applications/networking/r53-ddns/default.nix | 2 +- pkgs/applications/networking/stc-cli/default.nix | 2 +- pkgs/applications/networking/tcping-go/default.nix | 2 +- pkgs/applications/networking/websocketd/default.nix | 2 +- .../science/chemistry/element/default.nix | 2 +- pkgs/applications/version-management/bit/default.nix | 2 +- .../version-management/conform/default.nix | 2 +- pkgs/applications/version-management/ghr/default.nix | 2 +- .../version-management/git-appraise/default.nix | 2 +- .../version-management/git-bug-migration/default.nix | 2 +- .../version-management/git-bug/default.nix | 2 +- .../version-management/git-sizer/default.nix | 2 +- .../version-management/gitbatch/default.nix | 2 +- .../gitlab/gitlab-shell/default.nix | 2 +- .../gitlab/gitlab-workhorse/default.nix | 2 +- .../version-management/gitty/default.nix | 2 +- .../applications/version-management/gogs/default.nix | 2 +- pkgs/applications/version-management/lab/default.nix | 2 +- .../version-management/reposurgeon/default.nix | 2 +- .../version-management/scmpuff/default.nix | 2 +- .../version-management/sourcehut/git.nix | 10 +++++----- .../applications/version-management/sourcehut/hg.nix | 4 ++-- .../version-management/sourcehut/lists.nix | 2 +- .../version-management/sourcehut/pages.nix | 2 +- .../version-management/sourcehut/todo.nix | 2 +- pkgs/applications/video/f1viewer/default.nix | 2 +- pkgs/applications/video/srtrelay/default.nix | 2 +- pkgs/applications/virtualization/appvm/default.nix | 2 +- .../virtualization/buildkit-nix/default.nix | 2 +- pkgs/applications/virtualization/gvisor/default.nix | 2 +- pkgs/applications/virtualization/ops/default.nix | 2 +- pkgs/development/compilers/tinygo/default.nix | 2 +- pkgs/development/interpreters/oak/default.nix | 2 +- pkgs/development/libraries/protolock/default.nix | 2 +- pkgs/development/mobile/gomobile/default.nix | 2 +- pkgs/development/tools/bazel-kazel/default.nix | 2 +- pkgs/development/tools/check/default.nix | 2 +- pkgs/development/tools/cobra-cli/default.nix | 2 +- .../continuous-integration/buildkite-cli/default.nix | 2 +- .../codeberg-pages/default.nix | 2 +- .../continuous-integration/drone-cli/default.nix | 2 +- .../drone-runner-exec/default.nix | 2 +- pkgs/development/tools/cuelsp/default.nix | 2 +- .../database/timescaledb-parallel-copy/default.nix | 2 +- .../tools/database/timescaledb-tune/default.nix | 2 +- pkgs/development/tools/dstp/default.nix | 2 +- pkgs/development/tools/easyjson/default.nix | 2 +- pkgs/development/tools/ec2-metadata-mock/default.nix | 2 +- pkgs/development/tools/ejson/default.nix | 2 +- pkgs/development/tools/ent/default.nix | 2 +- pkgs/development/tools/esbuild/netlify.nix | 2 +- pkgs/development/tools/faq/default.nix | 2 +- pkgs/development/tools/garble/default.nix | 2 +- pkgs/development/tools/github/bump/default.nix | 2 +- pkgs/development/tools/go-junit-report/default.nix | 2 +- pkgs/development/tools/go-outline/default.nix | 2 +- pkgs/development/tools/goda/default.nix | 2 +- pkgs/development/tools/gofumpt/default.nix | 2 +- pkgs/development/tools/gokart/default.nix | 2 +- pkgs/development/tools/golines/default.nix | 2 +- pkgs/development/tools/golint/default.nix | 2 +- pkgs/development/tools/gomodifytags/default.nix | 2 +- pkgs/development/tools/gotest/default.nix | 2 +- pkgs/development/tools/gotests/default.nix | 2 +- pkgs/development/tools/gotools/default.nix | 2 +- pkgs/development/tools/gron/default.nix | 2 +- pkgs/development/tools/hover/default.nix | 2 +- pkgs/development/tools/htmltest/default.nix | 2 +- pkgs/development/tools/ijq/default.nix | 2 +- pkgs/development/tools/ineffassign/default.nix | 2 +- pkgs/development/tools/jira-cli-go/default.nix | 2 +- pkgs/development/tools/jmespath/default.nix | 2 +- pkgs/development/tools/jp/default.nix | 2 +- pkgs/development/tools/json2hcl/default.nix | 2 +- pkgs/development/tools/kube-prompt/default.nix | 2 +- pkgs/development/tools/kubectx/default.nix | 2 +- pkgs/development/tools/kustomize/3.nix | 2 +- .../language-servers/buf-language-server/default.nix | 2 +- pkgs/development/tools/leaps/default.nix | 2 +- pkgs/development/tools/maligned/default.nix | 2 +- pkgs/development/tools/misc/aviator/default.nix | 2 +- pkgs/development/tools/misc/jiq/default.nix | 2 +- pkgs/development/tools/misc/k2tf/default.nix | 2 +- pkgs/development/tools/misc/mkcert/default.nix | 2 +- pkgs/development/tools/mockgen/default.nix | 2 +- pkgs/development/tools/modd/default.nix | 2 +- pkgs/development/tools/mustache-go/default.nix | 2 +- pkgs/development/tools/nap/default.nix | 2 +- pkgs/development/tools/nc4nix/default.nix | 2 +- pkgs/development/tools/oshka/default.nix | 2 +- pkgs/development/tools/out-of-tree/default.nix | 2 +- pkgs/development/tools/pigeon/default.nix | 2 +- pkgs/development/tools/proto-contrib/default.nix | 2 +- pkgs/development/tools/protoc-gen-doc/default.nix | 2 +- .../tools/protoc-gen-twirp_swagger/default.nix | 2 +- .../tools/protoc-gen-twirp_typescript/default.nix | 2 +- pkgs/development/tools/protolint/default.nix | 2 +- pkgs/development/tools/rakkess/default.nix | 2 +- pkgs/development/tools/reflex/default.nix | 2 +- pkgs/development/tools/refmt/default.nix | 2 +- pkgs/development/tools/spicy/default.nix | 2 +- pkgs/development/tools/supabase-cli/default.nix | 2 +- pkgs/development/tools/toxiproxy/default.nix | 2 +- pkgs/development/tools/turbogit/default.nix | 2 +- pkgs/development/tools/unconvert/default.nix | 2 +- pkgs/development/tools/wails/default.nix | 2 +- pkgs/development/tools/wally-cli/default.nix | 2 +- pkgs/development/tools/wire/default.nix | 2 +- pkgs/development/web/shopify-themekit/default.nix | 2 +- pkgs/games/itch/butler.nix | 2 +- pkgs/games/uchess/default.nix | 2 +- pkgs/os-specific/linux/cshatag/default.nix | 2 +- pkgs/os-specific/linux/ipp-usb/default.nix | 2 +- pkgs/os-specific/linux/pam_ussh/default.nix | 2 +- pkgs/os-specific/linux/ultrablue-server/default.nix | 2 +- pkgs/servers/alice-lg/default.nix | 2 +- pkgs/servers/alps/default.nix | 2 +- pkgs/servers/asouldocs/default.nix | 2 +- pkgs/servers/bird-lg/default.nix | 8 ++++---- pkgs/servers/birdwatcher/default.nix | 2 +- pkgs/servers/cayley/default.nix | 2 +- pkgs/servers/confluencepot/default.nix | 2 +- pkgs/servers/dns/ncdns/default.nix | 2 +- pkgs/servers/echoip/default.nix | 2 +- pkgs/servers/geospatial/mbtileserver/default.nix | 2 +- pkgs/servers/go-autoconfig/default.nix | 2 +- pkgs/servers/go-cqhttp/default.nix | 2 +- pkgs/servers/gonic/default.nix | 2 +- pkgs/servers/gotty/default.nix | 2 +- pkgs/servers/hiraeth/default.nix | 2 +- pkgs/servers/http/pomerium/default.nix | 2 +- pkgs/servers/http/ran/default.nix | 2 +- pkgs/servers/interlock/default.nix | 2 +- pkgs/servers/kubemq-community/default.nix | 2 +- pkgs/servers/lenpaste/default.nix | 2 +- pkgs/servers/livepeer/default.nix | 2 +- pkgs/servers/maddy/default.nix | 2 +- pkgs/servers/mail/listmonk/default.nix | 2 +- pkgs/servers/matrix-corporal/default.nix | 2 +- pkgs/servers/mautrix-discord/default.nix | 2 +- pkgs/servers/mautrix-whatsapp/default.nix | 2 +- pkgs/servers/minio/legacy_fs.nix | 2 +- pkgs/servers/misc/podgrab/default.nix | 2 +- .../monitoring/prometheus/apcupsd-exporter.nix | 2 +- .../monitoring/prometheus/blackbox-exporter.nix | 2 +- .../monitoring/prometheus/cloudflare-exporter.nix | 2 +- pkgs/servers/monitoring/prometheus/flow-exporter.nix | 2 +- .../prometheus/junos-czerwonk-exporter.nix | 2 +- .../monitoring/prometheus/keylight-exporter.nix | 2 +- .../monitoring/prometheus/modemmanager-exporter.nix | 2 +- .../servers/monitoring/prometheus/nginx-exporter.nix | 2 +- .../monitoring/prometheus/postfix-exporter.nix | 2 +- .../monitoring/prometheus/process-exporter.nix | 2 +- .../monitoring/prometheus/promscale/default.nix | 2 +- .../monitoring/prometheus/shelly-exporter.nix | 2 +- .../monitoring/prometheus/systemd-exporter.nix | 2 +- .../servers/monitoring/prometheus/v2ray-exporter.nix | 2 +- pkgs/servers/monitoring/zabbix/agent2.nix | 4 ++-- pkgs/servers/monitoring/zabbix/versions.nix | 4 ++-- pkgs/servers/nosql/ferretdb/default.nix | 2 +- pkgs/servers/nosql/influxdb/default.nix | 2 +- pkgs/servers/nosql/influxdb2/default.nix | 2 +- pkgs/servers/oauth2-proxy/default.nix | 2 +- pkgs/servers/photoprism/backend.nix | 2 +- pkgs/servers/rmfakecloud/default.nix | 2 +- pkgs/servers/serf/default.nix | 2 +- pkgs/servers/sql/rqlite/default.nix | 2 +- pkgs/servers/swego/default.nix | 2 +- .../tracing/honeycomb/honeymarker/default.nix | 2 +- pkgs/servers/tracing/honeycomb/honeytail/default.nix | 2 +- pkgs/servers/trezord/default.nix | 2 +- pkgs/servers/unifiedpush-common-proxies/default.nix | 2 +- pkgs/servers/web-apps/morty/default.nix | 2 +- pkgs/servers/web-apps/vikunja/api.nix | 2 +- pkgs/servers/webdav/default.nix | 2 +- pkgs/servers/wesher/default.nix | 2 +- pkgs/servers/xteve/default.nix | 2 +- pkgs/shells/fish/babelfish.nix | 2 +- pkgs/shells/oh/default.nix | 2 +- pkgs/shells/zsh/zsh-history/default.nix | 2 +- pkgs/tools/X11/go-sct/default.nix | 2 +- pkgs/tools/admin/awsls/default.nix | 2 +- pkgs/tools/admin/awsrm/default.nix | 2 +- pkgs/tools/admin/awsweeper/default.nix | 2 +- pkgs/tools/admin/bom/default.nix | 2 +- pkgs/tools/admin/certigo/default.nix | 2 +- pkgs/tools/admin/cf-vault/default.nix | 2 +- pkgs/tools/admin/cw/default.nix | 2 +- pkgs/tools/admin/damon/default.nix | 2 +- pkgs/tools/admin/ejson2env/default.nix | 2 +- pkgs/tools/admin/iamy/default.nix | 2 +- pkgs/tools/admin/ossutil/default.nix | 2 +- pkgs/tools/admin/ssmsh/default.nix | 2 +- pkgs/tools/audio/unflac/default.nix | 2 +- pkgs/tools/backup/diskrsync/default.nix | 2 +- pkgs/tools/backup/duplicacy/default.nix | 2 +- pkgs/tools/backup/gamerbackup/default.nix | 2 +- pkgs/tools/backup/kopia/default.nix | 2 +- pkgs/tools/backup/wal-g/default.nix | 2 +- pkgs/tools/backup/zfsbackup/default.nix | 2 +- pkgs/tools/backup/zrepl/default.nix | 2 +- pkgs/tools/filesystems/fwanalyzer/default.nix | 2 +- pkgs/tools/filesystems/goofys/default.nix | 2 +- pkgs/tools/filesystems/upspin/default.nix | 2 +- .../minecraft-server-hibernation/default.nix | 2 +- pkgs/tools/games/minecraft/packwiz/default.nix | 2 +- pkgs/tools/misc/aptly/default.nix | 2 +- pkgs/tools/misc/bunnyfetch/default.nix | 2 +- pkgs/tools/misc/clematis/default.nix | 2 +- pkgs/tools/misc/direnv/default.nix | 2 +- pkgs/tools/misc/docker-ls/default.nix | 2 +- pkgs/tools/misc/dsq/default.nix | 2 +- pkgs/tools/misc/duf/default.nix | 2 +- pkgs/tools/misc/dwarf2json/default.nix | 2 +- pkgs/tools/misc/eget/default.nix | 2 +- pkgs/tools/misc/ets/default.nix | 2 +- pkgs/tools/misc/fsql/default.nix | 2 +- pkgs/tools/misc/gh-eco/default.nix | 2 +- pkgs/tools/misc/go-ios/default.nix | 2 +- pkgs/tools/misc/go.rice/default.nix | 2 +- pkgs/tools/misc/grit/default.nix | 2 +- pkgs/tools/misc/kepubify/default.nix | 2 +- pkgs/tools/misc/kt/default.nix | 2 +- pkgs/tools/misc/librespeed-cli/default.nix | 2 +- pkgs/tools/misc/lifecycled/default.nix | 2 +- pkgs/tools/misc/livedl/default.nix | 2 +- pkgs/tools/misc/lokalise2-cli/default.nix | 2 +- pkgs/tools/misc/mdr/default.nix | 2 +- pkgs/tools/misc/microplane/default.nix | 2 +- pkgs/tools/misc/mmake/default.nix | 2 +- pkgs/tools/misc/mnc/default.nix | 2 +- pkgs/tools/misc/mynewt-newtmgr/default.nix | 2 +- pkgs/tools/misc/notify/default.nix | 2 +- pkgs/tools/misc/panicparse/default.nix | 2 +- pkgs/tools/misc/pcp/default.nix | 2 +- pkgs/tools/misc/pgcenter/default.nix | 2 +- pkgs/tools/misc/sloth/default.nix | 2 +- pkgs/tools/misc/smug/default.nix | 2 +- pkgs/tools/misc/tdfgo/default.nix | 2 +- pkgs/tools/misc/tea/default.nix | 2 +- pkgs/tools/misc/tfk8s/default.nix | 2 +- pkgs/tools/misc/traefik-certs-dumper/default.nix | 2 +- pkgs/tools/misc/turbo/default.nix | 2 +- pkgs/tools/misc/unparam/default.nix | 2 +- pkgs/tools/misc/yai/default.nix | 2 +- pkgs/tools/misc/zabbixctl/default.nix | 2 +- pkgs/tools/networking/assh/default.nix | 2 +- pkgs/tools/networking/cassowary/default.nix | 2 +- pkgs/tools/networking/corerad/default.nix | 2 +- pkgs/tools/networking/curlie/default.nix | 2 +- pkgs/tools/networking/dd-agent/datadog-agent.nix | 2 +- pkgs/tools/networking/dnsmon-go/default.nix | 2 +- pkgs/tools/networking/dnstake/default.nix | 2 +- pkgs/tools/networking/flannel/plugin.nix | 2 +- pkgs/tools/networking/go-shadowsocks2/default.nix | 2 +- pkgs/tools/networking/godspeed/default.nix | 2 +- pkgs/tools/networking/goflow/default.nix | 2 +- pkgs/tools/networking/goimapnotify/default.nix | 2 +- pkgs/tools/networking/goreplay/default.nix | 2 +- pkgs/tools/networking/grpcui/default.nix | 2 +- pkgs/tools/networking/grpcurl/default.nix | 2 +- pkgs/tools/networking/norouter/default.nix | 2 +- pkgs/tools/networking/qrcp/default.nix | 2 +- pkgs/tools/networking/rabtap/default.nix | 2 +- pkgs/tools/networking/rdap/default.nix | 2 +- pkgs/tools/networking/sipexer/default.nix | 2 +- pkgs/tools/networking/sleep-on-lan/default.nix | 2 +- pkgs/tools/networking/snet/default.nix | 2 +- pkgs/tools/networking/telepresence2/default.nix | 2 +- pkgs/tools/networking/tendermint/default.nix | 2 +- pkgs/tools/networking/termshark/default.nix | 2 +- pkgs/tools/networking/tran/default.nix | 2 +- pkgs/tools/networking/v2ray/default.nix | 2 +- pkgs/tools/networking/v2raya/default.nix | 2 +- pkgs/tools/networking/yggdrasil/default.nix | 2 +- pkgs/tools/nix/nar-serve/default.nix | 2 +- pkgs/tools/nix/nix-store-gcs-proxy/default.nix | 2 +- pkgs/tools/package-management/gx/default.nix | 2 +- .../tools/package-management/mynewt-newt/default.nix | 2 +- pkgs/tools/security/2fa/default.nix | 2 +- pkgs/tools/security/adreaper/default.nix | 2 +- pkgs/tools/security/age/default.nix | 2 +- pkgs/tools/security/bettercap/default.nix | 2 +- pkgs/tools/security/cameradar/default.nix | 2 +- pkgs/tools/security/certgraph/default.nix | 2 +- pkgs/tools/security/certstrap/default.nix | 2 +- pkgs/tools/security/chain-bench/default.nix | 2 +- pkgs/tools/security/cirrusgo/default.nix | 2 +- pkgs/tools/security/crlfuzz/default.nix | 2 +- pkgs/tools/security/dalfox/default.nix | 2 +- pkgs/tools/security/dismap/default.nix | 2 +- pkgs/tools/security/dismember/default.nix | 2 +- pkgs/tools/security/dnsx/default.nix | 2 +- pkgs/tools/security/extrude/default.nix | 2 +- pkgs/tools/security/gau/default.nix | 2 +- pkgs/tools/security/gomapenum/default.nix | 2 +- pkgs/tools/security/gospider/default.nix | 2 +- pkgs/tools/security/hakrawler/default.nix | 2 +- pkgs/tools/security/ic-keysmith/default.nix | 2 +- pkgs/tools/security/jsubfinder/default.nix | 2 +- pkgs/tools/security/jwt-hack/default.nix | 2 +- pkgs/tools/security/kdigger/default.nix | 2 +- pkgs/tools/security/keybase/default.nix | 2 +- pkgs/tools/security/keybase/kbfs.nix | 2 +- pkgs/tools/security/kubeaudit/default.nix | 2 +- pkgs/tools/security/lmp/default.nix | 2 +- pkgs/tools/security/melt/default.nix | 2 +- pkgs/tools/security/metabigor/default.nix | 2 +- pkgs/tools/security/nosqli/default.nix | 2 +- pkgs/tools/security/passphrase2pgp/default.nix | 2 +- pkgs/tools/security/pwdsafety/default.nix | 2 +- pkgs/tools/security/sammler/default.nix | 2 +- pkgs/tools/security/sdlookup/default.nix | 2 +- pkgs/tools/security/secrets-extractor/default.nix | 2 +- pkgs/tools/security/snowcat/default.nix | 2 +- pkgs/tools/security/sops/default.nix | 2 +- pkgs/tools/security/sx-go/default.nix | 2 +- pkgs/tools/security/urlhunter/default.nix | 2 +- pkgs/tools/security/wprecon/default.nix | 2 +- pkgs/tools/security/yubikey-agent/default.nix | 2 +- pkgs/tools/security/zkar/default.nix | 2 +- pkgs/tools/system/ctop/default.nix | 2 +- pkgs/tools/system/gohai/default.nix | 2 +- pkgs/tools/system/gotop/default.nix | 2 +- pkgs/tools/system/localtime/default.nix | 2 +- pkgs/tools/system/natscli/default.nix | 2 +- pkgs/tools/text/frangipanni/default.nix | 2 +- pkgs/tools/text/pbgopy/default.nix | 2 +- pkgs/tools/text/shfmt/default.nix | 2 +- pkgs/tools/virtualization/distrobuilder/default.nix | 2 +- pkgs/tools/virtualization/marathonctl/default.nix | 2 +- pkgs/tools/virtualization/rootlesskit/default.nix | 2 +- pkgs/tools/wayland/clipman/default.nix | 2 +- 399 files changed, 418 insertions(+), 418 deletions(-) diff --git a/pkgs/applications/editors/gophernotes/default.nix b/pkgs/applications/editors/gophernotes/default.nix index 9efb2fd57714..3ed0b67741af 100644 --- a/pkgs/applications/editors/gophernotes/default.nix +++ b/pkgs/applications/editors/gophernotes/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-cGlYgay/t6XIl0U9XvrHkqNxZ6BXtXi0TIANY1WdZ3Y="; }; - vendorSha256 = "sha256-iIBqx52fD12R+7MSjQNihMYYtZ9vPAdJndOG4YJVhy4="; + vendorHash = "sha256-iIBqx52fD12R+7MSjQNihMYYtZ9vPAdJndOG4YJVhy4="; meta = with lib; { description = "Go kernel for Jupyter notebooks"; diff --git a/pkgs/applications/editors/hecate/default.nix b/pkgs/applications/editors/hecate/default.nix index dd266c0babca..a2bb4e84c999 100644 --- a/pkgs/applications/editors/hecate/default.nix +++ b/pkgs/applications/editors/hecate/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-8L0ukzPF7aECCeZfwZYKcJAJLpPgotkVJ+OSdwQUjhw="; }; - vendorSha256 = "sha256-eyMrTrNarNCB3w8EOeJBmCbVxpMZy25sQ19icVARU1M="; + vendorHash = "sha256-eyMrTrNarNCB3w8EOeJBmCbVxpMZy25sQ19icVARU1M="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/applications/graphics/ascii-image-converter/default.nix b/pkgs/applications/graphics/ascii-image-converter/default.nix index ed99f1ac73aa..c4a63aa4fbeb 100644 --- a/pkgs/applications/graphics/ascii-image-converter/default.nix +++ b/pkgs/applications/graphics/ascii-image-converter/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-svM/TzGQU/QgjqHboy0470+A6p4kR76typ9gnfjfAJk="; }; - vendorSha256 = "sha256-rQS3QH9vnEbQZszG3FOr1P5HYgS63BurCNCFQTTdvZs="; + vendorHash = "sha256-rQS3QH9vnEbQZszG3FOr1P5HYgS63BurCNCFQTTdvZs="; meta = with lib; { description = "Convert images into ASCII art on the console"; diff --git a/pkgs/applications/misc/darkman/default.nix b/pkgs/applications/misc/darkman/default.nix index a20b8ab72625..89678b7d0fa8 100644 --- a/pkgs/applications/misc/darkman/default.nix +++ b/pkgs/applications/misc/darkman/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-6SNXVe6EfVwcXH9O6BxNw+v4/uhKhCtVS3XE2GTc2Sc="; }; - vendorSha256 = "sha256-xEPmNnaDwFU4l2G4cMvtNeQ9KneF5g9ViQSFrDkrafY="; + vendorHash = "sha256-xEPmNnaDwFU4l2G4cMvtNeQ9KneF5g9ViQSFrDkrafY="; nativeBuildInputs = [ scdoc ]; diff --git a/pkgs/applications/misc/expenses/default.nix b/pkgs/applications/misc/expenses/default.nix index e838bd3eda2a..220cd1178564 100644 --- a/pkgs/applications/misc/expenses/default.nix +++ b/pkgs/applications/misc/expenses/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { sha256 = "sha256-sqsogF2swMvYZL7Kj+ealrB1AAgIe7ZXXDLRdHL6Q+0="; }; - vendorSha256 = "sha256-rIcwZUOi6bdfiWZEsRF4kl1reNPPQNuBPHDOo7RQgYo="; + vendorHash = "sha256-rIcwZUOi6bdfiWZEsRF4kl1reNPPQNuBPHDOo7RQgYo="; # package does not contain any tests as of v0.2.3 doCheck = false; diff --git a/pkgs/applications/misc/gmnitohtml/default.nix b/pkgs/applications/misc/gmnitohtml/default.nix index dc64b1142b49..463d1d50ab54 100644 --- a/pkgs/applications/misc/gmnitohtml/default.nix +++ b/pkgs/applications/misc/gmnitohtml/default.nix @@ -10,7 +10,7 @@ buildGoModule rec { rev = version; hash = "sha256-nKNSLVBBdZI5mkbEUkMv0CIOQIyH3OX+SEFf5O47DFY="; }; - vendorSha256 = "sha256-Cx8x8AISRVTA4Ufd73vOVky97LX23NkizHDingr/zVk="; + vendorHash = "sha256-Cx8x8AISRVTA4Ufd73vOVky97LX23NkizHDingr/zVk="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/applications/misc/go-jira/default.nix b/pkgs/applications/misc/go-jira/default.nix index 4a368e92ec33..a3d31d034ee5 100644 --- a/pkgs/applications/misc/go-jira/default.nix +++ b/pkgs/applications/misc/go-jira/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-h/x77xGqdOxPBxdchElZU9GFgjnNo89o9gx4fYM5dME="; }; - vendorSha256 = "sha256-r69aFl3GwgZ1Zr4cEy4oWlqsrjNCrqjwW9BU9+d8xDQ="; + vendorHash = "sha256-r69aFl3GwgZ1Zr4cEy4oWlqsrjNCrqjwW9BU9+d8xDQ="; doCheck = false; diff --git a/pkgs/applications/misc/go-thumbnailer/default.nix b/pkgs/applications/misc/go-thumbnailer/default.nix index 99a8f5a510c0..9dd571735e62 100644 --- a/pkgs/applications/misc/go-thumbnailer/default.nix +++ b/pkgs/applications/misc/go-thumbnailer/default.nix @@ -24,7 +24,7 @@ buildGoModule rec { pkg-config ]; - vendorSha256 = "sha256-4zgsoExdhEqvycGerNVxZ6LnjeRRO+f6DhJdINR5ZyI="; + vendorHash = "sha256-4zgsoExdhEqvycGerNVxZ6LnjeRRO+f6DhJdINR5ZyI="; postInstall = '' mkdir -p $out/share/thumbnailers diff --git a/pkgs/applications/misc/gsctl/default.nix b/pkgs/applications/misc/gsctl/default.nix index 73bc11d4940d..bf47ee1899b3 100644 --- a/pkgs/applications/misc/gsctl/default.nix +++ b/pkgs/applications/misc/gsctl/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-eemPsrSFwgUR1Jz7283jjwMkoJR38QiaiilI9G0IQuo="; }; - vendorSha256 = "sha256-6b4H8YAY8d/qIGnnGPYZoXne1LXHLsc0OEq0lCeqivo="; + vendorHash = "sha256-6b4H8YAY8d/qIGnnGPYZoXne1LXHLsc0OEq0lCeqivo="; ldflags = [ "-s" "-w" diff --git a/pkgs/applications/misc/kiln/default.nix b/pkgs/applications/misc/kiln/default.nix index 8a64668393d8..ed9575ffa0ba 100644 --- a/pkgs/applications/misc/kiln/default.nix +++ b/pkgs/applications/misc/kiln/default.nix @@ -13,7 +13,7 @@ buildGoModule rec { nativeBuildInputs = [ scdoc installShellFiles ]; - vendorSha256 = "sha256-C1ueL/zmPzFbpNo5BF56/t74nwCUvb2Vu1exssPqOPE="; + vendorHash = "sha256-C1ueL/zmPzFbpNo5BF56/t74nwCUvb2Vu1exssPqOPE="; postInstall = '' scdoc < docs/kiln.1.scd > docs/kiln.1 diff --git a/pkgs/applications/misc/kratos/default.nix b/pkgs/applications/misc/kratos/default.nix index dadaae3a9018..9031b7d6d566 100644 --- a/pkgs/applications/misc/kratos/default.nix +++ b/pkgs/applications/misc/kratos/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { hash = "sha256-KDpc0zc65rvvpPojghFEujoS0aewyjv7B/bmpC2i1dA="; }; - vendorSha256 = "sha256-Y/Sd2hu1bPUb0TQRD1pANz+rtqKcHBXvjKpYwKgxHMQ="; + vendorHash = "sha256-Y/Sd2hu1bPUb0TQRD1pANz+rtqKcHBXvjKpYwKgxHMQ="; subPackages = [ "." ]; diff --git a/pkgs/applications/misc/lemonade/default.nix b/pkgs/applications/misc/lemonade/default.nix index b428d59aaab9..68622718e048 100644 --- a/pkgs/applications/misc/lemonade/default.nix +++ b/pkgs/applications/misc/lemonade/default.nix @@ -22,7 +22,7 @@ buildGoModule rec { }) ]; - vendorSha256 = "sha256-wjQfTKVNmehu4aU5425gS0YWKj53dosVSTLgdu9KjKc="; + vendorHash = "sha256-wjQfTKVNmehu4aU5425gS0YWKj53dosVSTLgdu9KjKc="; subPackages = [ "." ]; diff --git a/pkgs/applications/misc/mop/default.nix b/pkgs/applications/misc/mop/default.nix index e07fce797507..ddd02d45df0c 100644 --- a/pkgs/applications/misc/mop/default.nix +++ b/pkgs/applications/misc/mop/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-oe8RG8E7xcp3ZqdDXYvpOVF3AfeSBFMherHD1YYFE/M="; }; - vendorSha256 = "sha256-kLQH7mMmBSsS9av+KnnEuBwiH6hzBOSozrn+1X+8774="; + vendorHash = "sha256-kLQH7mMmBSsS9av+KnnEuBwiH6hzBOSozrn+1X+8774="; preConfigure = '' for i in *.go **/*.go; do diff --git a/pkgs/applications/misc/nwg-menu/default.nix b/pkgs/applications/misc/nwg-menu/default.nix index 98609665c4fe..a911873dee41 100644 --- a/pkgs/applications/misc/nwg-menu/default.nix +++ b/pkgs/applications/misc/nwg-menu/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-M948RGU9/PwUtFRmf1Po7KlrGxqRPiOZKfS1Vv3vqW8="; }; - vendorSha256 = "sha256-HyrjquJ91ddkyS8JijHd9HjtfwSQykXCufa2wzl8RNk="; + vendorHash = "sha256-HyrjquJ91ddkyS8JijHd9HjtfwSQykXCufa2wzl8RNk="; doCheck = false; diff --git a/pkgs/applications/misc/openring/default.nix b/pkgs/applications/misc/openring/default.nix index 3a3db0242bde..e311dfbb3b7c 100644 --- a/pkgs/applications/misc/openring/default.nix +++ b/pkgs/applications/misc/openring/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-BY2AtgZXzPLqHk3hd6D+XXbrwvWS9DNTKwLqsua/3uw="; }; - vendorSha256 = "sha256-BbBTmkGyLrIWphXC+dBaHaVzHuXRZ+4N/Jt2k3nF7Z4="; + vendorHash = "sha256-BbBTmkGyLrIWphXC+dBaHaVzHuXRZ+4N/Jt2k3nF7Z4="; # The package has no tests. doCheck = false; diff --git a/pkgs/applications/misc/remarkable/rmapi/default.nix b/pkgs/applications/misc/remarkable/rmapi/default.nix index 2da548619b14..b09e0fe04724 100644 --- a/pkgs/applications/misc/remarkable/rmapi/default.nix +++ b/pkgs/applications/misc/remarkable/rmapi/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-7pwCd9tey7w5B8UgsMLHegPqmmY1prLM+Sk9o42X9lY="; }; - vendorSha256 = "sha256-Id2RaiSxthyR6egDQz2zulbSZ4STRTaA3yQIr6Mx9kg="; + vendorHash = "sha256-Id2RaiSxthyR6egDQz2zulbSZ4STRTaA3yQIr6Mx9kg="; doCheck = false; diff --git a/pkgs/applications/misc/senv/default.nix b/pkgs/applications/misc/senv/default.nix index c2ab9ad29d87..b45085610d13 100644 --- a/pkgs/applications/misc/senv/default.nix +++ b/pkgs/applications/misc/senv/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-TjlIX8FPNiPDQo41pIt04cki/orc+v30pV3o2bQQhAQ="; }; - vendorSha256 = "sha256-zOWX0AiLAs1FtOn+VtRexfn6oOmJT1PoTPHkcpwvxRY="; + vendorHash = "sha256-zOWX0AiLAs1FtOn+VtRexfn6oOmJT1PoTPHkcpwvxRY="; subPackages = [ "." ]; diff --git a/pkgs/applications/misc/slides/default.nix b/pkgs/applications/misc/slides/default.nix index c6c73115eb69..55229c206f18 100644 --- a/pkgs/applications/misc/slides/default.nix +++ b/pkgs/applications/misc/slides/default.nix @@ -21,7 +21,7 @@ buildGoModule rec { go ]; - vendorSha256 = "sha256-c3YCf22L5+rTmH5ePeJ0/goRj5rKY6v+Zon3183MhMY="; + vendorHash = "sha256-c3YCf22L5+rTmH5ePeJ0/goRj5rKY6v+Zon3183MhMY="; ldflags = [ "-s" diff --git a/pkgs/applications/misc/sqls/default.nix b/pkgs/applications/misc/sqls/default.nix index 6ac9275570a3..53785539adc7 100644 --- a/pkgs/applications/misc/sqls/default.nix +++ b/pkgs/applications/misc/sqls/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-xtvm/NVL98dRzQL1id/WwT/NdsnB7qTRVR7jfrRsabY="; }; - vendorSha256 = "sha256-sowzyhvNr7Ek3ex4BP415HhHSKnqPHy5EbnECDVZOGw="; + vendorHash = "sha256-sowzyhvNr7Ek3ex4BP415HhHSKnqPHy5EbnECDVZOGw="; ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.revision=${src.rev}" ]; diff --git a/pkgs/applications/misc/tasktimer/default.nix b/pkgs/applications/misc/tasktimer/default.nix index 34ba140331d1..18439e02e2b9 100644 --- a/pkgs/applications/misc/tasktimer/default.nix +++ b/pkgs/applications/misc/tasktimer/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-CAqOsxmJxDgQRMx8cN23TajHd6BNiCFraFvhf5kKnzc="; }; - vendorSha256 = "sha256-Tk0yI/WFr0FV0AxJDStlP3XLem3v78ueuXyadhrLAog="; + vendorHash = "sha256-Tk0yI/WFr0FV0AxJDStlP3XLem3v78ueuXyadhrLAog="; postInstall = '' mv $out/bin/tasktimer $out/bin/tt diff --git a/pkgs/applications/misc/tsukae/default.nix b/pkgs/applications/misc/tsukae/default.nix index 893f35f6e42f..0a01758b2c47 100644 --- a/pkgs/applications/misc/tsukae/default.nix +++ b/pkgs/applications/misc/tsukae/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-1y/WYLW6/HMGmuaX2wOlQbwYn0LcgQCMb4qw8BtCgxQ="; }; - vendorSha256 = "sha256-Q0WOzyJGnTXTmj7ZPKyVSnWuWb4bbDjDpgftQ1Opf/I="; + vendorHash = "sha256-Q0WOzyJGnTXTmj7ZPKyVSnWuWb4bbDjDpgftQ1Opf/I="; meta = with lib; { description = "Show off your most used shell commands."; diff --git a/pkgs/applications/misc/writefreely/default.nix b/pkgs/applications/misc/writefreely/default.nix index 1f9c048e71f4..17f03c787d94 100644 --- a/pkgs/applications/misc/writefreely/default.nix +++ b/pkgs/applications/misc/writefreely/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-GnuqYgiwXdKM+os5RzuUYe9ADOhZaxou5dD7GCEE1Ns="; }; - vendorSha256 = "sha256-IBer+8FP+IWWJPnaugr8zzQA9mSVFzP0Nofgl/PhtzQ="; + vendorHash = "sha256-IBer+8FP+IWWJPnaugr8zzQA9mSVFzP0Nofgl/PhtzQ="; nativeBuildInputs = [ go-bindata ]; diff --git a/pkgs/applications/misc/ydict/default.nix b/pkgs/applications/misc/ydict/default.nix index 078d6abccf50..93b06323e0f4 100644 --- a/pkgs/applications/misc/ydict/default.nix +++ b/pkgs/applications/misc/ydict/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { sha256 = "sha256-qrGOrqI+PXsDNCmgcCPDNn6qUYu2emhYSkYsz4sj27M="; }; - vendorSha256 = "sha256-c5nQVQd4n978kFAAKcx5mX2Jz16ZOhS8iL/oxS1o5xs="; + vendorHash = "sha256-c5nQVQd4n978kFAAKcx5mX2Jz16ZOhS8iL/oxS1o5xs="; ldflags = [ "-s" diff --git a/pkgs/applications/networking/bee/bee.nix b/pkgs/applications/networking/bee/bee.nix index fd6177c4647d..f2fe81e8379f 100644 --- a/pkgs/applications/networking/bee/bee.nix +++ b/pkgs/applications/networking/bee/bee.nix @@ -9,14 +9,14 @@ let rev = "824636a2c2629c329ab10275cef6a0b7395343ad"; goVersionString = "g" + builtins.substring 0 7 rev; # this seems to be some kind of standard of git describe... sha256 = "0ly1yqjq29arbak8lchdradf39l5bmxpbfir6ljjc7nyqdxz0sxg"; - vendorSha256 = "sha256-w5ZijaK8Adt1ZHPMmXqRWq0v0jdprRKRu03rePtZLXA="; + vendorHash = "sha256-w5ZijaK8Adt1ZHPMmXqRWq0v0jdprRKRu03rePtZLXA="; }; release = rec { pname = "bee"; version = "0.5.0"; rev = "refs/tags/v${version}"; sha256 = "sha256-3Oy9RhgMPRFjUs3Dj8XUhAqoxx5BTi32OiK4Y8YEG2Q="; - vendorSha256 = "sha256-w5ZijaK8Adt1ZHPMmXqRWq0v0jdprRKRu03rePtZLXA="; + vendorHash = "sha256-w5ZijaK8Adt1ZHPMmXqRWq0v0jdprRKRu03rePtZLXA="; }; "0.5.0" = release; "0.4.1" = rec { @@ -24,14 +24,14 @@ let version = "0.4.1"; rev = "refs/tags/v${version}"; sha256 = "1bmgbav52pcb5p7cgq9756512fzfqhjybyr0dv538plkqx47mpv7"; - vendorSha256 = "0j393va4jrg9q3wlc9mgkbpgnn2w2s3k2hcn8phzj8d5fl4n4v2h"; + vendorHash = "sha256-UGxiCXWlIfnhRZZBMYcWXFj77pqvJkb5wOllSdQeaUg="; }; }.${version}; in buildGoModule { - inherit (versionSpec) pname version vendorSha256; + inherit (versionSpec) pname version vendorHash; src = fetchFromGitHub { owner = "ethersphere"; diff --git a/pkgs/applications/networking/browsers/amfora/default.nix b/pkgs/applications/networking/browsers/amfora/default.nix index 0422ea597675..7fd29f1a3942 100644 --- a/pkgs/applications/networking/browsers/amfora/default.nix +++ b/pkgs/applications/networking/browsers/amfora/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-93xNzYPoy8VsbY2JyvDXt4J/gIbI2wzrCD83JUaP150="; }; - vendorSha256 = "sha256-XtiGj2Tr6sSBduIjBspeZpYaSTd6x6EVf3VEVMXDAD0="; + vendorHash = "sha256-XtiGj2Tr6sSBduIjBspeZpYaSTd6x6EVf3VEVMXDAD0="; postInstall = lib.optionalString (!stdenv.isDarwin) '' sed -i "s:amfora:$out/bin/amfora:" amfora.desktop diff --git a/pkgs/applications/networking/cluster/assign-lb-ip/default.nix b/pkgs/applications/networking/cluster/assign-lb-ip/default.nix index dadb679cd55c..7b85443db3f0 100644 --- a/pkgs/applications/networking/cluster/assign-lb-ip/default.nix +++ b/pkgs/applications/networking/cluster/assign-lb-ip/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-Sfi58wcX61HNCmlDoparTqnfsuxu6barSnV0uYlC+ng="; }; - vendorSha256 = "sha256-N78a0pjs2Bg2Bslk/I0ntL88ui4IkRGenL0Pn17Lt/w="; + vendorHash = "sha256-N78a0pjs2Bg2Bslk/I0ntL88ui4IkRGenL0Pn17Lt/w="; meta = with lib; { description = "Assigns loadBalancerIP address to a Kubernetes service for testing purposes"; diff --git a/pkgs/applications/networking/cluster/atmos/default.nix b/pkgs/applications/networking/cluster/atmos/default.nix index c1e4df0a3893..e3bd97e91dad 100644 --- a/pkgs/applications/networking/cluster/atmos/default.nix +++ b/pkgs/applications/networking/cluster/atmos/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-6NUuKU8KQBfHE6fcN3a9lBcUk7p5I9SuY9g+qJxGXmU="; }; - vendorSha256 = "sha256-vZwADD7fi9ZvJby9Ijdeueid8jRfUyyj6Nu4kgkO5Wo="; + vendorHash = "sha256-vZwADD7fi9ZvJby9Ijdeueid8jRfUyyj6Nu4kgkO5Wo="; ldflags = [ "-s" "-w" "-X github.com/cloudposse/atmos/cmd.Version=v${version}" ]; diff --git a/pkgs/applications/networking/cluster/cmctl/default.nix b/pkgs/applications/networking/cluster/cmctl/default.nix index ab4789741fbf..ac5273242472 100644 --- a/pkgs/applications/networking/cluster/cmctl/default.nix +++ b/pkgs/applications/networking/cluster/cmctl/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "128s5vd4hp5mr0rnb21grzmijzx0ibpv71as36dcgw7z4v3gq7lx"; }; - vendorSha256 = "sha256-+r0QpD97r6dokUr07Qjb9kvoK+oz2rvml0cIebtYuHg="; + vendorHash = "sha256-+r0QpD97r6dokUr07Qjb9kvoK+oz2rvml0cIebtYuHg="; subPackages = [ "cmd/ctl" ]; diff --git a/pkgs/applications/networking/cluster/cni/default.nix b/pkgs/applications/networking/cluster/cni/default.nix index 3dcf284021ed..33688148985f 100644 --- a/pkgs/applications/networking/cluster/cni/default.nix +++ b/pkgs/applications/networking/cluster/cni/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-g7fVeoqquxPa17AfTu6wnB6PQJDluJ21T3ETrcvWtWg="; }; - vendorSha256 = "sha256-nH/myA/KdTeFXvmBymXITyx5fdCGnWRn6hNRinXc3/s="; + vendorHash = "sha256-nH/myA/KdTeFXvmBymXITyx5fdCGnWRn6hNRinXc3/s="; subPackages = [ "./cnitool" diff --git a/pkgs/applications/networking/cluster/fetchit/default.nix b/pkgs/applications/networking/cluster/fetchit/default.nix index b4e7e66d7dce..cadc331a9605 100644 --- a/pkgs/applications/networking/cluster/fetchit/default.nix +++ b/pkgs/applications/networking/cluster/fetchit/default.nix @@ -18,7 +18,7 @@ buildGoModule rec { sha256 = "sha256-hxS/+/fbYOpMJ5VfvvG5l7wWKBUUR22rYn9X79DzUUk="; }; - vendorSha256 = "sha256-SyPd8P9s8R2YbGEPqFeztF98W1QyGSBumtirSdpm8VI="; + vendorHash = "sha256-SyPd8P9s8R2YbGEPqFeztF98W1QyGSBumtirSdpm8VI="; subPackages = [ "cmd/fetchit" ]; diff --git a/pkgs/applications/networking/cluster/fluxcd/default.nix b/pkgs/applications/networking/cluster/fluxcd/default.nix index 50ea8c168980..500bd2a752b9 100644 --- a/pkgs/applications/networking/cluster/fluxcd/default.nix +++ b/pkgs/applications/networking/cluster/fluxcd/default.nix @@ -23,7 +23,7 @@ in buildGoModule rec { inherit sha256; }; - vendorSha256 = "sha256-RVHDiJS1MhskVorS/SNZlXWP/oc8OXjUjApeanBkIWQ="; + vendorHash = "sha256-RVHDiJS1MhskVorS/SNZlXWP/oc8OXjUjApeanBkIWQ="; postUnpack = '' cp -r ${manifests} source/cmd/flux/manifests diff --git a/pkgs/applications/networking/cluster/fluxctl/default.nix b/pkgs/applications/networking/cluster/fluxctl/default.nix index a192abc57e4e..589193446285 100644 --- a/pkgs/applications/networking/cluster/fluxctl/default.nix +++ b/pkgs/applications/networking/cluster/fluxctl/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-rKZ0fI9UN4oq6gfDMNR2+kCazlDexE1+UVzQ3xgkSA8="; }; - vendorSha256 = "sha256-6Trk49Vo3oMjSaHRDm2v+elPDHwdn2D3Z6i4UYcx0IQ="; + vendorHash = "sha256-6Trk49Vo3oMjSaHRDm2v+elPDHwdn2D3Z6i4UYcx0IQ="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/applications/networking/cluster/hashi-up/default.nix b/pkgs/applications/networking/cluster/hashi-up/default.nix index 1efc1c438a5a..583a0c32b1d1 100644 --- a/pkgs/applications/networking/cluster/hashi-up/default.nix +++ b/pkgs/applications/networking/cluster/hashi-up/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-PdZ8X2pJ5TfT0bJ4/P/XbMTv+yyL5/1AxIFHnL/qNcg="; }; - vendorSha256 = "sha256-dircE3WlDPsPnF+0wT5RG/c4hC8qPs8NaSGM5wpvVlM="; + vendorHash = "sha256-dircE3WlDPsPnF+0wT5RG/c4hC8qPs8NaSGM5wpvVlM="; meta = with lib; { description = "A lightweight utility to install HashiCorp Consul, Nomad, or Vault on any remote Linux host"; diff --git a/pkgs/applications/networking/cluster/jx/default.nix b/pkgs/applications/networking/cluster/jx/default.nix index 0afe7b834495..204b08962454 100644 --- a/pkgs/applications/networking/cluster/jx/default.nix +++ b/pkgs/applications/networking/cluster/jx/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-kwcmZSOA26XuSgNSHitGaMohalnLobabXf4z3ybSJtk="; }; - vendorSha256 = "sha256-ZtcCBXcJXX9ThzY6T0MhNfDDzRC9PYzRB1VyS4LLXLs="; + vendorHash = "sha256-ZtcCBXcJXX9ThzY6T0MhNfDDzRC9PYzRB1VyS4LLXLs="; doCheck = false; diff --git a/pkgs/applications/networking/cluster/k0sctl/default.nix b/pkgs/applications/networking/cluster/k0sctl/default.nix index b8eb1a79bfe4..c7b66eaac77c 100644 --- a/pkgs/applications/networking/cluster/k0sctl/default.nix +++ b/pkgs/applications/networking/cluster/k0sctl/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-ntjrk2OEIkAmNpf9Ag6HkSIOSA3NtO9hSJOBgvne4b0="; }; - vendorSha256 = "sha256-JlaXQqDO/b1xe9NA2JtuB1DZZlphWu3Mo/Mf4lhmKNo="; + vendorHash = "sha256-JlaXQqDO/b1xe9NA2JtuB1DZZlphWu3Mo/Mf4lhmKNo="; ldflags = [ "-s" diff --git a/pkgs/applications/networking/cluster/kconf/default.nix b/pkgs/applications/networking/cluster/kconf/default.nix index 44dc9f4900fc..78ff236085e5 100644 --- a/pkgs/applications/networking/cluster/kconf/default.nix +++ b/pkgs/applications/networking/cluster/kconf/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-aEZTwXccKZDXRNWr4XS2ZpqtEnNGbsIVau8zPvaHTkk="; }; - vendorSha256 = "sha256-7mzk2OP1p8FfRsbs4B6XP/szBeckm7Q7hf8AkbZUG2Q="; + vendorHash = "sha256-7mzk2OP1p8FfRsbs4B6XP/szBeckm7Q7hf8AkbZUG2Q="; ldflags = [ "-s" "-w" "-X github.com/particledecay/kconf/build.Version=${version}" diff --git a/pkgs/applications/networking/cluster/kubecolor/default.nix b/pkgs/applications/networking/cluster/kubecolor/default.nix index 625f53515a30..d7742cbfc233 100644 --- a/pkgs/applications/networking/cluster/kubecolor/default.nix +++ b/pkgs/applications/networking/cluster/kubecolor/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-d1gtbpeK9vp8bwhsMOPVKmohfyEZtQuvRB36VZCB3sY="; }; - vendorSha256 = "sha256-g5bLi0HQ7LQM+DKn5x8enXn8/9j3LFhgDjQ+YN0M7dM="; + vendorHash = "sha256-g5bLi0HQ7LQM+DKn5x8enXn8/9j3LFhgDjQ+YN0M7dM="; ldflags = [ "-s" "-w" "-X main.Version=${version}" ]; diff --git a/pkgs/applications/networking/cluster/kubectl-doctor/default.nix b/pkgs/applications/networking/cluster/kubectl-doctor/default.nix index 8e504294053b..e198de456cca 100644 --- a/pkgs/applications/networking/cluster/kubectl-doctor/default.nix +++ b/pkgs/applications/networking/cluster/kubectl-doctor/default.nix @@ -20,7 +20,7 @@ buildGoModule rec { }) ]; - vendorSha256 = "sha256-qhffg/s1RZFNW0nHLbJ89yqLzdC72ARXdbSfMLJK2pQ="; + vendorHash = "sha256-qhffg/s1RZFNW0nHLbJ89yqLzdC72ARXdbSfMLJK2pQ="; postInstall = '' mv $out/bin/{cmd,kubectl-doctor} diff --git a/pkgs/applications/networking/cluster/kubectl-klock/default.nix b/pkgs/applications/networking/cluster/kubectl-klock/default.nix index d6c84b58a4fc..dc9f8c25b5c8 100644 --- a/pkgs/applications/networking/cluster/kubectl-klock/default.nix +++ b/pkgs/applications/networking/cluster/kubectl-klock/default.nix @@ -11,7 +11,7 @@ buildGo121Module rec { sha256 = "sha256-HO9/hr/CBmJkrbNdX8tp2pNRfZDaWNW8shyCR46G77A="; }; - vendorSha256 = "sha256-QvD5yVaisq5Zz/M81HAMKpgQJRB5qPCYveLgldHHGf0="; + vendorHash = "sha256-QvD5yVaisq5Zz/M81HAMKpgQJRB5qPCYveLgldHHGf0="; meta = with lib; { description = "A kubectl plugin to render watch output in a more readable fashion"; diff --git a/pkgs/applications/networking/cluster/kubectl-ktop/default.nix b/pkgs/applications/networking/cluster/kubectl-ktop/default.nix index fbca4e4b8a51..a7a27e54c065 100644 --- a/pkgs/applications/networking/cluster/kubectl-ktop/default.nix +++ b/pkgs/applications/networking/cluster/kubectl-ktop/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-nkIRVt2kqsE9QBYvvHmupohnzH+OBcwWwV16rMePw4I="; }; - vendorSha256 = "sha256-IiAMmHOq69WMT2B1q9ZV2fGDnLr7AbRm1P7ACSde2FE="; + vendorHash = "sha256-IiAMmHOq69WMT2B1q9ZV2fGDnLr7AbRm1P7ACSde2FE="; subPackages = [ "." ]; diff --git a/pkgs/applications/networking/cluster/kubectl-tree/default.nix b/pkgs/applications/networking/cluster/kubectl-tree/default.nix index 5a6d0efc0584..1cb0cc3e9419 100644 --- a/pkgs/applications/networking/cluster/kubectl-tree/default.nix +++ b/pkgs/applications/networking/cluster/kubectl-tree/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-J4/fiTECcTE0N2E+MPrQKE9Msvvm8DLdvLbnDUnUo74="; }; - vendorSha256 = "sha256-iblEfpYOvTjd3YXQ3Mmj5XckivHoXf4336H+F7NEfBA="; + vendorHash = "sha256-iblEfpYOvTjd3YXQ3Mmj5XckivHoXf4336H+F7NEfBA="; meta = with lib; { description = "kubectl plugin to browse Kubernetes object hierarchies as a tree"; diff --git a/pkgs/applications/networking/cluster/kubent/default.nix b/pkgs/applications/networking/cluster/kubent/default.nix index e689af406ecf..f54b6875a92b 100644 --- a/pkgs/applications/networking/cluster/kubent/default.nix +++ b/pkgs/applications/networking/cluster/kubent/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-QIvMhKAo30gInqJBpHvhcyjgVkdRqgBKwLQ80ng/75U="; }; - vendorSha256 = "sha256-XXf6CPPHVvCTZA4Ve5/wmlgXQ/gZZUW0W/jXA0bJgLA="; + vendorHash = "sha256-XXf6CPPHVvCTZA4Ve5/wmlgXQ/gZZUW0W/jXA0bJgLA="; ldflags = [ "-w" "-s" diff --git a/pkgs/applications/networking/cluster/kubeval/default.nix b/pkgs/applications/networking/cluster/kubeval/default.nix index 9c28ba063e24..574bfc61bb87 100644 --- a/pkgs/applications/networking/cluster/kubeval/default.nix +++ b/pkgs/applications/networking/cluster/kubeval/default.nix @@ -24,7 +24,7 @@ buildGoModule rec { }) ]; - vendorSha256 = "sha256-R/vVrLsVSA9SGra4ytoHlQkPaIgQaj/XdivcQp8xjSM="; + vendorHash = "sha256-R/vVrLsVSA9SGra4ytoHlQkPaIgQaj/XdivcQp8xjSM="; doCheck = false; diff --git a/pkgs/applications/networking/cluster/levant/default.nix b/pkgs/applications/networking/cluster/levant/default.nix index be25739db2cb..48e07567a853 100644 --- a/pkgs/applications/networking/cluster/levant/default.nix +++ b/pkgs/applications/networking/cluster/levant/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-UI8PVvTqk8D4S9kq3sgxrm8dkRokpgkLyTN6pzUXNV0="; }; - vendorSha256 = "sha256-MzKttGfuIg0Pp/iz68EpXuk4I+tFozhIabKlsWuvJ48="; + vendorHash = "sha256-MzKttGfuIg0Pp/iz68EpXuk4I+tFozhIabKlsWuvJ48="; # The tests try to connect to a Nomad cluster. doCheck = false; diff --git a/pkgs/applications/networking/cluster/linkerd/default.nix b/pkgs/applications/networking/cluster/linkerd/default.nix index 413fc8b1ec75..ecc92bd07f18 100644 --- a/pkgs/applications/networking/cluster/linkerd/default.nix +++ b/pkgs/applications/networking/cluster/linkerd/default.nix @@ -4,5 +4,5 @@ channel = "stable"; version = "2.14.0"; sha256 = "0j4qzmfhi286vsngf1j3s8zhk7xj2saqr27clmjy7ypjszlz5rvm"; - vendorSha256 = "sha256-HxxekAipoWNxcLUSOSwUOXlrWMODw7gS8fcyTD3CMYE="; + vendorHash = "sha256-HxxekAipoWNxcLUSOSwUOXlrWMODw7gS8fcyTD3CMYE="; } diff --git a/pkgs/applications/networking/cluster/linkerd/edge.nix b/pkgs/applications/networking/cluster/linkerd/edge.nix index ca34c20a1a54..31b07419b4dd 100644 --- a/pkgs/applications/networking/cluster/linkerd/edge.nix +++ b/pkgs/applications/networking/cluster/linkerd/edge.nix @@ -4,5 +4,5 @@ channel = "edge"; version = "23.8.3"; sha256 = "1mj16nzs2da530lvvsg6gh8fcgy8rwq13mryqznflgyr39x4c56i"; - vendorSha256 = "sha256-HxxekAipoWNxcLUSOSwUOXlrWMODw7gS8fcyTD3CMYE="; + vendorHash = "sha256-HxxekAipoWNxcLUSOSwUOXlrWMODw7gS8fcyTD3CMYE="; } diff --git a/pkgs/applications/networking/cluster/linkerd/generic.nix b/pkgs/applications/networking/cluster/linkerd/generic.nix index a4aec900a484..0384f56f14aa 100644 --- a/pkgs/applications/networking/cluster/linkerd/generic.nix +++ b/pkgs/applications/networking/cluster/linkerd/generic.nix @@ -1,10 +1,10 @@ { lib, fetchFromGitHub, buildGoModule, installShellFiles }: -{ channel, version, sha256, vendorSha256 }: +{ channel, version, sha256, vendorHash }: buildGoModule rec { pname = "linkerd-${channel}"; - inherit version vendorSha256; + inherit version vendorHash; src = fetchFromGitHub { owner = "linkerd"; diff --git a/pkgs/applications/networking/cluster/nomad-autoscaler/default.nix b/pkgs/applications/networking/cluster/nomad-autoscaler/default.nix index eb185f9743c1..acd0643b4bdf 100644 --- a/pkgs/applications/networking/cluster/nomad-autoscaler/default.nix +++ b/pkgs/applications/networking/cluster/nomad-autoscaler/default.nix @@ -28,7 +28,7 @@ let sha256 = "sha256-fK5GsszNhz/WP0zVk2lOfU/gwYijdQa5qhNYO33RhXc="; }; - vendorSha256 = "sha256-Duzjpl011mj/SNoX/jQGMXwqUHPDz7iIMygRmK1vC3Q="; + vendorHash = "sha256-Duzjpl011mj/SNoX/jQGMXwqUHPDz7iIMygRmK1vC3Q="; buildPhase = '' runHook preBuild diff --git a/pkgs/applications/networking/cluster/nomad-pack/default.nix b/pkgs/applications/networking/cluster/nomad-pack/default.nix index 65b012a10a0d..92c98c44fde6 100644 --- a/pkgs/applications/networking/cluster/nomad-pack/default.nix +++ b/pkgs/applications/networking/cluster/nomad-pack/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-Br+BJRAo9qSJQjg2awQTnsYz76WReVWsTUw6XoUb1YY="; }; - vendorSha256 = "sha256-dUPDwKdkBXBfyfbFxrpgHwZ0Q5jB7aamClNmv+tLCGA="; + vendorHash = "sha256-dUPDwKdkBXBfyfbFxrpgHwZ0Q5jB7aamClNmv+tLCGA="; # skip running go tests as they require network access doCheck = false; diff --git a/pkgs/applications/networking/cluster/nomad/default.nix b/pkgs/applications/networking/cluster/nomad/default.nix index 73c71b292853..b9bb93249a25 100644 --- a/pkgs/applications/networking/cluster/nomad/default.nix +++ b/pkgs/applications/networking/cluster/nomad/default.nix @@ -8,12 +8,12 @@ let generic = - { buildGoModule, version, sha256, vendorSha256, ... }@attrs: - let attrs' = builtins.removeAttrs attrs [ "buildGoModule" "version" "sha256" "vendorSha256" ]; + { buildGoModule, version, sha256, vendorHash, ... }@attrs: + let attrs' = builtins.removeAttrs attrs [ "buildGoModule" "version" "sha256" "vendorHash" ]; in buildGoModule (rec { pname = "nomad"; - inherit version vendorSha256; + inherit version vendorHash; subPackages = [ "." ]; @@ -57,7 +57,7 @@ rec { buildGoModule = buildGo120Module; version = "1.4.12"; sha256 = "sha256-dO98FOaO5MB5pWzeF705s/aBDTaF0OyWnVxWGB91suI="; - vendorSha256 = "sha256-D5TcTZa64Jr47u4mrTXK4lUIC5gfBQNVgL6QKh1CaQM="; + vendorHash = "sha256-D5TcTZa64Jr47u4mrTXK4lUIC5gfBQNVgL6QKh1CaQM="; passthru.tests.nomad = nixosTests.nomad; }; @@ -65,7 +65,7 @@ rec { buildGoModule = buildGo120Module; version = "1.5.8"; sha256 = "sha256-5VAUNunQz4s1Icd+s5i8Kx6u1P0By+ikl4C5wXM1oho="; - vendorSha256 = "sha256-y3WiQuoQn6SdwTgtPWuB6EBtsJC+YleQPzownZQNkno="; + vendorHash = "sha256-y3WiQuoQn6SdwTgtPWuB6EBtsJC+YleQPzownZQNkno="; passthru.tests.nomad = nixosTests.nomad; preCheck = '' export PATH="$PATH:$NIX_BUILD_TOP/go/bin" @@ -76,7 +76,7 @@ rec { buildGoModule = buildGo120Module; version = "1.6.1"; sha256 = "sha256-RsyGUaLteGiNf0PTkKLcjHTevhKb/mNx2JORpXhHJMw="; - vendorSha256 = "sha256-Y3O7ADzZPlLWFbXSYBcI6b5MAhMD0UnkhQxO9VJMpOY="; + vendorHash = "sha256-Y3O7ADzZPlLWFbXSYBcI6b5MAhMD0UnkhQxO9VJMpOY="; passthru.tests.nomad = nixosTests.nomad; preCheck = '' export PATH="$PATH:$NIX_BUILD_TOP/go/bin" diff --git a/pkgs/applications/networking/cluster/octant/plugins/starboard-octant-plugin.nix b/pkgs/applications/networking/cluster/octant/plugins/starboard-octant-plugin.nix index 4d3662ea8750..f59b8d26de08 100644 --- a/pkgs/applications/networking/cluster/octant/plugins/starboard-octant-plugin.nix +++ b/pkgs/applications/networking/cluster/octant/plugins/starboard-octant-plugin.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-JTSZtIRVFdUjhQsp2EMukeoVIo6nNx4xofq+3iOZUIk="; }; - vendorSha256 = "sha256-1zrB+CobUBgdpBHRJPpfDYCD6oVWY4j4Met9EqNQQbE="; + vendorHash = "sha256-1zrB+CobUBgdpBHRJPpfDYCD6oVWY4j4Met9EqNQQbE="; ldflags = [ "-s" "-w" diff --git a/pkgs/applications/networking/cluster/qbec/default.nix b/pkgs/applications/networking/cluster/qbec/default.nix index 8dcb08247e35..ea7c1479ef13 100644 --- a/pkgs/applications/networking/cluster/qbec/default.nix +++ b/pkgs/applications/networking/cluster/qbec/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-js/UjnNYRW7s3b4TeprhmBe4cDLDYDrMeLtpASI9aN4="; }; - vendorSha256 = "sha256-oEbKk9cMbI0ZWXrfM8Y19OF/A75mwHl0C/PJx0oTOBo="; + vendorHash = "sha256-oEbKk9cMbI0ZWXrfM8Y19OF/A75mwHl0C/PJx0oTOBo="; doCheck = false; diff --git a/pkgs/applications/networking/cluster/sonobuoy/default.nix b/pkgs/applications/networking/cluster/sonobuoy/default.nix index b558a7ff0b54..f4d50d3dbbcd 100644 --- a/pkgs/applications/networking/cluster/sonobuoy/default.nix +++ b/pkgs/applications/networking/cluster/sonobuoy/default.nix @@ -23,7 +23,7 @@ buildGoModule rec { sha256 = "sha256-YiVCdAdwdK9PcQ6VQQNAjLQq2X54vJmZfbHRjV2d8VQ="; }; - vendorSha256 = "sha256-Fqxkyl9AKZ7H4QSp2V/yztpeXHt57+LjpzzGtOPndX0="; + vendorHash = "sha256-Fqxkyl9AKZ7H4QSp2V/yztpeXHt57+LjpzzGtOPndX0="; subPackages = [ "." ]; diff --git a/pkgs/applications/networking/cluster/temporalite/default.nix b/pkgs/applications/networking/cluster/temporalite/default.nix index a842a896285a..efe1f2d30c5d 100644 --- a/pkgs/applications/networking/cluster/temporalite/default.nix +++ b/pkgs/applications/networking/cluster/temporalite/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-IEB9AFEt8U2zXYfbChfL/UH1rNSLPnfS396/cPE8UdE="; }; - vendorSha256 = "sha256-w86/XCMRGBmXM+oQ5+0qiX0fdwiKXvsmEkApuRLUOiA="; + vendorHash = "sha256-w86/XCMRGBmXM+oQ5+0qiX0fdwiKXvsmEkApuRLUOiA="; subPackages = [ "cmd/temporalite" ]; diff --git a/pkgs/applications/networking/cluster/terraform-docs/default.nix b/pkgs/applications/networking/cluster/terraform-docs/default.nix index 50efacfd62ef..319db3c9b873 100644 --- a/pkgs/applications/networking/cluster/terraform-docs/default.nix +++ b/pkgs/applications/networking/cluster/terraform-docs/default.nix @@ -10,7 +10,7 @@ buildGoModule rec { sha256 = "sha256-zSSK2WfcbD1DvqsFUKdTydLfyApWzm1h+ihSnLUmq2E="; }; - vendorSha256 = "sha256-0Bkjx/gq2MAWjxoMSGtBcRzv40SSUVDZBh4PzEtKj5o="; + vendorHash = "sha256-0Bkjx/gq2MAWjxoMSGtBcRzv40SSUVDZBh4PzEtKj5o="; subPackages = [ "." ]; diff --git a/pkgs/applications/networking/cluster/terraform-inventory/default.nix b/pkgs/applications/networking/cluster/terraform-inventory/default.nix index 783f9c79bb7f..89d4b769e9af 100644 --- a/pkgs/applications/networking/cluster/terraform-inventory/default.nix +++ b/pkgs/applications/networking/cluster/terraform-inventory/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-gkSDxcBoYmCBzkO8y1WKcRtZdfl8w5qVix0zbyb4Myo="; }; - vendorSha256 = "sha256-pj9XLzaGU1PuNnpTL/7XaKJZUymX+i8hFMroZtHIqTc="; + vendorHash = "sha256-pj9XLzaGU1PuNnpTL/7XaKJZUymX+i8hFMroZtHIqTc="; ldflags = [ "-s" "-w" "-X main.build_version=${version}" ]; diff --git a/pkgs/applications/networking/cluster/tgswitch/default.nix b/pkgs/applications/networking/cluster/tgswitch/default.nix index 31df14cebeda..25c301f0cbb5 100644 --- a/pkgs/applications/networking/cluster/tgswitch/default.nix +++ b/pkgs/applications/networking/cluster/tgswitch/default.nix @@ -10,7 +10,7 @@ buildGoModule rec { sha256 = "sha256-Q3Cef3B7hfVHLvW8Rx6IdH9g/3luDhpUMZ8TXVpb8gQ="; }; - vendorSha256 = "sha256-PlTdbA8Z2I2SWoG7oYG87VQfczx9zP1SCJx70UWOEog="; + vendorHash = "sha256-PlTdbA8Z2I2SWoG7oYG87VQfczx9zP1SCJx70UWOEog="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/applications/networking/feedreaders/photon/default.nix b/pkgs/applications/networking/feedreaders/photon/default.nix index 08df4af2db4f..34612e2a87fc 100644 --- a/pkgs/applications/networking/feedreaders/photon/default.nix +++ b/pkgs/applications/networking/feedreaders/photon/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { proxyVendor = true; - vendorSha256 = "sha256-n9XNqXIoqn+f0xKCenJWXUYXtQhtbNBar68onWH/WV4="; + vendorHash = "sha256-n9XNqXIoqn+f0xKCenJWXUYXtQhtbNBar68onWH/WV4="; meta = with lib; { description = "RSS/Atom reader with the focus on speed, usability and a bit of unix philosophy"; diff --git a/pkgs/applications/networking/gmailctl/default.nix b/pkgs/applications/networking/gmailctl/default.nix index cce2b739e100..be8173da16d9 100644 --- a/pkgs/applications/networking/gmailctl/default.nix +++ b/pkgs/applications/networking/gmailctl/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-OpRkBHNWRrBhh6nGrV7dZT01xsSlbANCk+g7b8SidG0="; }; - vendorSha256 = "sha256-+r0WHrKARcxW1hUY1HwAXk0X6ZQrbgBj9+GjIJV5DS0="; + vendorHash = "sha256-+r0WHrKARcxW1hUY1HwAXk0X6ZQrbgBj9+GjIJV5DS0="; nativeBuildInputs = [ installShellFiles diff --git a/pkgs/applications/networking/hyprspace/default.nix b/pkgs/applications/networking/hyprspace/default.nix index 69b0f1642334..8fc678683658 100644 --- a/pkgs/applications/networking/hyprspace/default.nix +++ b/pkgs/applications/networking/hyprspace/default.nix @@ -13,7 +13,7 @@ buildGoModule rec { sha256 = "sha256-UlIQCy4moW58tQ1dqxrPsU5LN1Bs/Jy5X+2CEmXdYIk="; }; - vendorSha256 = "sha256-EV59sXmjunWs+MC++CwyuBlbWzWZI1YXDLEsOaESgRU="; + vendorHash = "sha256-EV59sXmjunWs+MC++CwyuBlbWzWZI1YXDLEsOaESgRU="; meta = with lib; { description = "A Lightweight VPN Built on top of Libp2p for Truly Distributed Networks."; diff --git a/pkgs/applications/networking/instant-messengers/go-neb/default.nix b/pkgs/applications/networking/instant-messengers/go-neb/default.nix index 4dc24073f5b5..d1947825c42b 100644 --- a/pkgs/applications/networking/instant-messengers/go-neb/default.nix +++ b/pkgs/applications/networking/instant-messengers/go-neb/default.nix @@ -14,7 +14,7 @@ buildGoModule { buildInputs = [ olm ]; - vendorSha256 = "sha256-5Vg7aUkqiFIQuxmsDOJjvXoeA5NjMoBoD0XBhC+o4GA="; + vendorHash = "sha256-5Vg7aUkqiFIQuxmsDOJjvXoeA5NjMoBoD0XBhC+o4GA="; doCheck = false; diff --git a/pkgs/applications/networking/instant-messengers/gomuks/default.nix b/pkgs/applications/networking/instant-messengers/gomuks/default.nix index cc0a654ad2a0..d7fd40029843 100644 --- a/pkgs/applications/networking/instant-messengers/gomuks/default.nix +++ b/pkgs/applications/networking/instant-messengers/gomuks/default.nix @@ -22,7 +22,7 @@ buildGoModule rec { sha256 = "sha256-gLyjqmGZudj8PmsYUGXHOjetZzi6u5CFI7Y50y2XAzk="; }; - vendorSha256 = "sha256-FmQJG6hv0YPyHVjZ/DvkQExrGLc1hjoiPS59MnqG2gU="; + vendorHash = "sha256-FmQJG6hv0YPyHVjZ/DvkQExrGLc1hjoiPS59MnqG2gU="; doCheck = false; diff --git a/pkgs/applications/networking/instant-messengers/mm/default.nix b/pkgs/applications/networking/instant-messengers/mm/default.nix index ce4963df01e8..b6c48a0e948c 100644 --- a/pkgs/applications/networking/instant-messengers/mm/default.nix +++ b/pkgs/applications/networking/instant-messengers/mm/default.nix @@ -10,7 +10,7 @@ buildGoModule { sha256 = "sha256-SdD4EE/rc85H7xqKB/kU8XFsC63i1sVObPha/zrxFGk="; }; - vendorSha256 = "sha256-zJJ9PzQShv2iRNyCg1XVscbwjV9ZtMIojJDtXXm3rVM="; + vendorHash = "sha256-zJJ9PzQShv2iRNyCg1XVscbwjV9ZtMIojJDtXXm3rVM="; meta = with lib; { description = "A file system based matrix client"; diff --git a/pkgs/applications/networking/irc/senpai/default.nix b/pkgs/applications/networking/irc/senpai/default.nix index 3e87b2aa1daf..eaefa41a6650 100644 --- a/pkgs/applications/networking/irc/senpai/default.nix +++ b/pkgs/applications/networking/irc/senpai/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-q167og8S8YbLcREZ7DVbJhjMzx4iO0WgIFkOV2IpieM="; }; - vendorSha256 = "sha256-PkoEHQEGKCiNbJsm7ieL65MtEult/wubLreJKA1gGpg="; + vendorHash = "sha256-PkoEHQEGKCiNbJsm7ieL65MtEult/wubLreJKA1gGpg="; subPackages = [ "cmd/senpai" diff --git a/pkgs/applications/networking/p2p/magnetico/default.nix b/pkgs/applications/networking/p2p/magnetico/default.nix index f7130edf66a5..a51dba890a40 100644 --- a/pkgs/applications/networking/p2p/magnetico/default.nix +++ b/pkgs/applications/networking/p2p/magnetico/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-V1pBzillWTk9iuHAhFztxYaq4uLL3U3HYvedGk6ffbk="; }; - vendorSha256 = "sha256-ngYkTtBEZSyYYnfBHi0VrotwKGvMOiowbrwigJnjsuU="; + vendorHash = "sha256-ngYkTtBEZSyYYnfBHi0VrotwKGvMOiowbrwigJnjsuU="; buildPhase = '' runHook preBuild diff --git a/pkgs/applications/networking/peroxide/default.nix b/pkgs/applications/networking/peroxide/default.nix index 9638d0863c53..6e8537275f05 100644 --- a/pkgs/applications/networking/peroxide/default.nix +++ b/pkgs/applications/networking/peroxide/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-6Jb1i4aNjeemiQp9FF/KGyZ+Evom9PPBvARbJWyrhok="; }; - vendorSha256 = "sha256-kuFlkkMkCKO5Rrh1EoyVdaykvxTfchK2l1/THqTBeAY="; + vendorHash = "sha256-kuFlkkMkCKO5Rrh1EoyVdaykvxTfchK2l1/THqTBeAY="; postPatch = '' # These tests connect to the internet, which does not work in sandboxed diff --git a/pkgs/applications/networking/r53-ddns/default.nix b/pkgs/applications/networking/r53-ddns/default.nix index 321d1268caac..6761741ce9ce 100644 --- a/pkgs/applications/networking/r53-ddns/default.nix +++ b/pkgs/applications/networking/r53-ddns/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-KJAPhSGaC3upWLfo2eeSD3Vit9Blmbol7s8y3f849N4="; }; - vendorSha256 = "sha256-KkyMd94cejWkgg/RJudy1lm/M3lsEJXFGqVTzGIX3qM="; + vendorHash = "sha256-KkyMd94cejWkgg/RJudy1lm/M3lsEJXFGqVTzGIX3qM="; meta = with lib; { license = licenses.mit; diff --git a/pkgs/applications/networking/stc-cli/default.nix b/pkgs/applications/networking/stc-cli/default.nix index c2d799537174..bae71f82cb4e 100644 --- a/pkgs/applications/networking/stc-cli/default.nix +++ b/pkgs/applications/networking/stc-cli/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-g1zn/CBpLv0oNhp32njeNhhli8aTCECgh92+zn5v+4U="; }; - vendorSha256 = "sha256-0OsxCGCJT5k5bHXNSIL6QiJXj72bzYCZiI03gvHQuR8="; + vendorHash = "sha256-0OsxCGCJT5k5bHXNSIL6QiJXj72bzYCZiI03gvHQuR8="; meta = with lib; { description = "Syncthing CLI Tool"; diff --git a/pkgs/applications/networking/tcping-go/default.nix b/pkgs/applications/networking/tcping-go/default.nix index b7f8ceb6d681..1502f8a16aef 100644 --- a/pkgs/applications/networking/tcping-go/default.nix +++ b/pkgs/applications/networking/tcping-go/default.nix @@ -11,7 +11,7 @@ buildGoModule { sha256 = "sha256-GSkNfaGMJbBqDg8DKhDtLAuUg1yF3FbBdxcf4oG50rI="; }; - vendorSha256 = "sha256-Q+aFgi7GCAn3AxDuGtRG4DdPhI7gQKEo7A9iu1YcTsQ="; + vendorHash = "sha256-Q+aFgi7GCAn3AxDuGtRG4DdPhI7gQKEo7A9iu1YcTsQ="; meta = with lib; { description = "Ping over TCP instead of ICMP, written in Go"; diff --git a/pkgs/applications/networking/websocketd/default.nix b/pkgs/applications/networking/websocketd/default.nix index 636443c9b858..212850dcc7f5 100644 --- a/pkgs/applications/networking/websocketd/default.nix +++ b/pkgs/applications/networking/websocketd/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-cp4iBSQ6Cd0+NPZ2i79Mulg1z17u//OCm3yoArbZEHs="; }; - vendorSha256 = "sha256-i5IPJ3srUXL7WWjBW9w803VSoyjwA5JgPWKsAckPYxY="; + vendorHash = "sha256-i5IPJ3srUXL7WWjBW9w803VSoyjwA5JgPWKsAckPYxY="; doCheck = false; diff --git a/pkgs/applications/science/chemistry/element/default.nix b/pkgs/applications/science/chemistry/element/default.nix index f0865b503dea..c18fc9a563b9 100644 --- a/pkgs/applications/science/chemistry/element/default.nix +++ b/pkgs/applications/science/chemistry/element/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-06RDZnie0Lv7i95AwnBGl6PPucuj8pIT6DHW3e3mu1o="; }; - vendorSha256 = "sha256-A4g2rQTaYrA4/0rqldUv7iuibzNINEvx9StUnaN2/Yg="; + vendorHash = "sha256-A4g2rQTaYrA4/0rqldUv7iuibzNINEvx9StUnaN2/Yg="; meta = with lib; { description = "The periodic table on the command line"; diff --git a/pkgs/applications/version-management/bit/default.nix b/pkgs/applications/version-management/bit/default.nix index c3524417829e..23d676e54eb5 100644 --- a/pkgs/applications/version-management/bit/default.nix +++ b/pkgs/applications/version-management/bit/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-18R0JGbG5QBDghF4SyhXaKe9UY5UzF7Ap0Y061Z1SZ8="; }; - vendorSha256 = "sha256-3Y/B14xX5jaoL44rq9+Nn4niGViLPPXBa8WcJgTvYTA="; + vendorHash = "sha256-3Y/B14xX5jaoL44rq9+Nn4niGViLPPXBa8WcJgTvYTA="; propagatedBuildInputs = [ git ]; diff --git a/pkgs/applications/version-management/conform/default.nix b/pkgs/applications/version-management/conform/default.nix index c60a855ced28..4800a14b31ee 100644 --- a/pkgs/applications/version-management/conform/default.nix +++ b/pkgs/applications/version-management/conform/default.nix @@ -10,7 +10,7 @@ buildGoModule rec { rev = "v${version}"; sha256 = "sha256-lIXkflWQcUcmRDX9iSszFLKpI8nSgkCCB2+GQn07+DM="; }; - vendorSha256 = "sha256-Oigt7tAK4jhBQtfG1wdLHqi11NWu6uJn5fmuqTmR76E="; + vendorHash = "sha256-Oigt7tAK4jhBQtfG1wdLHqi11NWu6uJn5fmuqTmR76E="; ldflags = [ "-s" diff --git a/pkgs/applications/version-management/ghr/default.nix b/pkgs/applications/version-management/ghr/default.nix index fd433bbfc581..0b460b14a9b3 100644 --- a/pkgs/applications/version-management/ghr/default.nix +++ b/pkgs/applications/version-management/ghr/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { sha256 = "sha256-aD1HEdoAPFFpJL++fLZIk+pIs+qDNYbTGDMlcRjV6M4="; }; - vendorSha256 = "sha256-pqwJPo3ZhsXU1RF4BKPOWQS71+9EitSSTE1+sKlc9+s="; + vendorHash = "sha256-pqwJPo3ZhsXU1RF4BKPOWQS71+9EitSSTE1+sKlc9+s="; # Tests require a Github API token, and networking doCheck = false; diff --git a/pkgs/applications/version-management/git-appraise/default.nix b/pkgs/applications/version-management/git-appraise/default.nix index 8b5844fb76ce..652c0be52117 100644 --- a/pkgs/applications/version-management/git-appraise/default.nix +++ b/pkgs/applications/version-management/git-appraise/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-TteTI8yGP2sckoJ5xuBB5S8xzm1upXmZPlcDLvXZrpc="; }; - vendorSha256 = "sha256-Lzq4qpDAUjKFA2T685eW9NCfzEhDsn5UR1A1cIaZadE="; + vendorHash = "sha256-Lzq4qpDAUjKFA2T685eW9NCfzEhDsn5UR1A1cIaZadE="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/applications/version-management/git-bug-migration/default.nix b/pkgs/applications/version-management/git-bug-migration/default.nix index 36ddc93d839c..386f405eb225 100644 --- a/pkgs/applications/version-management/git-bug-migration/default.nix +++ b/pkgs/applications/version-management/git-bug-migration/default.nix @@ -10,7 +10,7 @@ buildGoModule rec { hash = "sha256-IOBgrU3C0ZHD2wx9LRVgKEJzDlUj6z2UXlHGU3tdTdQ="; }; - vendorSha256 = "sha256-Hid9OK91LNjLmDHam0ZlrVQopVOsqbZ+BH2rfQi5lS0="; + vendorHash = "sha256-Hid9OK91LNjLmDHam0ZlrVQopVOsqbZ+BH2rfQi5lS0="; nativeCheckInputs = [ git ]; diff --git a/pkgs/applications/version-management/git-bug/default.nix b/pkgs/applications/version-management/git-bug/default.nix index 45c0557c30ad..5a2e9e5eeca6 100644 --- a/pkgs/applications/version-management/git-bug/default.nix +++ b/pkgs/applications/version-management/git-bug/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "12byf6nsamwz0ssigan1z299s01cyh8bhgj86bibl90agd4zs9n8"; }; - vendorSha256 = "sha256-32kNDoBE50Jx1Ef9YwhDk7nd3CaTSnHPlu7PgWPUGfE="; + vendorHash = "sha256-32kNDoBE50Jx1Ef9YwhDk7nd3CaTSnHPlu7PgWPUGfE="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/applications/version-management/git-sizer/default.nix b/pkgs/applications/version-management/git-sizer/default.nix index ed7239b80cb3..277786d72420 100644 --- a/pkgs/applications/version-management/git-sizer/default.nix +++ b/pkgs/applications/version-management/git-sizer/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-On7QBTzKfnuuzwMQ8m1odxGqfIKL+EDg5V05Kxuhmqw="; }; - vendorSha256 = "sha256-oRlsD99XiI/0ZWibjyRcycmGab+vMbXrV5hIdIyUDYg="; + vendorHash = "sha256-oRlsD99XiI/0ZWibjyRcycmGab+vMbXrV5hIdIyUDYg="; ldflags = [ "-s" "-w" "-X main.BuildVersion=${version}" ]; diff --git a/pkgs/applications/version-management/gitbatch/default.nix b/pkgs/applications/version-management/gitbatch/default.nix index 0eb20db1462a..cb19964f733b 100644 --- a/pkgs/applications/version-management/gitbatch/default.nix +++ b/pkgs/applications/version-management/gitbatch/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-ovmdbyPRSebwmW6AW55jBgBKaNdY6w5/wrpUF2cMKw8="; }; - vendorSha256 = "sha256-wwpaJO5cXMsvqFXj+qGiIm4zg/SL4YCm2mNnG/qdilw="; + vendorHash = "sha256-wwpaJO5cXMsvqFXj+qGiIm4zg/SL4YCm2mNnG/qdilw="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/applications/version-management/gitlab/gitlab-shell/default.nix b/pkgs/applications/version-management/gitlab/gitlab-shell/default.nix index 67eb6ea7990c..cc6100efc19e 100644 --- a/pkgs/applications/version-management/gitlab/gitlab-shell/default.nix +++ b/pkgs/applications/version-management/gitlab/gitlab-shell/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { patches = [ ./remove-hardcoded-locations.patch ]; - vendorSha256 = "sha256-Lqo0fdrYEHOKjF/XT3c1VjVQc1YxeBy6yW69IxXZAow="; + vendorHash = "sha256-Lqo0fdrYEHOKjF/XT3c1VjVQc1YxeBy6yW69IxXZAow="; postInstall = '' cp -r "$NIX_BUILD_TOP/source"/bin/* $out/bin diff --git a/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix b/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix index 637971722b34..b9d98f6cebda 100644 --- a/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix +++ b/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { sourceRoot = "${src.name}/workhorse"; - vendorSha256 = "sha256-Gitap0cWRubtWLJcT8oVg9FKcN9FhXbVy/t2tgaZ93Q="; + vendorHash = "sha256-Gitap0cWRubtWLJcT8oVg9FKcN9FhXbVy/t2tgaZ93Q="; buildInputs = [ git ]; ldflags = [ "-X main.Version=${version}" ]; doCheck = false; diff --git a/pkgs/applications/version-management/gitty/default.nix b/pkgs/applications/version-management/gitty/default.nix index da24cb2988eb..0bc267d9647c 100644 --- a/pkgs/applications/version-management/gitty/default.nix +++ b/pkgs/applications/version-management/gitty/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-g0D6nJiHY7cz72DSmdQZsj9Vgv/VOp0exTcLsaypGiU="; }; - vendorSha256 = "sha256-qrLECQkjXH0aTHmysq64jnXj9jgbunpVtBAIXJOEYIY="; + vendorHash = "sha256-qrLECQkjXH0aTHmysq64jnXj9jgbunpVtBAIXJOEYIY="; ldflags = [ "-s" "-w" "-X=main.Version=${version}" ]; diff --git a/pkgs/applications/version-management/gogs/default.nix b/pkgs/applications/version-management/gogs/default.nix index 824d0e056048..2a7d70cdc1b7 100644 --- a/pkgs/applications/version-management/gogs/default.nix +++ b/pkgs/applications/version-management/gogs/default.nix @@ -17,7 +17,7 @@ buildGoModule rec { sha256 = "sha256-UfxE+NaqDr3XUXpvlV989Iwjq/lsAwpMTDAPkcOmma8="; }; - vendorSha256 = "sha256-ISJOEJ1DWO4nnMpDuZ36Nq528LhgekDh3XUF8adlj2w="; + vendorHash = "sha256-ISJOEJ1DWO4nnMpDuZ36Nq528LhgekDh3XUF8adlj2w="; subPackages = [ "." ]; diff --git a/pkgs/applications/version-management/lab/default.nix b/pkgs/applications/version-management/lab/default.nix index d882edc5a3b1..6bbe405f65c1 100644 --- a/pkgs/applications/version-management/lab/default.nix +++ b/pkgs/applications/version-management/lab/default.nix @@ -13,7 +13,7 @@ buildGoModule rec { subPackages = [ "." ]; - vendorSha256 = "sha256-ChysquNuUffcM3qaWUdqu3Av33gnKkdlotEoFKoedA0="; + vendorHash = "sha256-ChysquNuUffcM3qaWUdqu3Av33gnKkdlotEoFKoedA0="; doCheck = false; diff --git a/pkgs/applications/version-management/reposurgeon/default.nix b/pkgs/applications/version-management/reposurgeon/default.nix index 2c7836f1318a..ea34252f68a8 100644 --- a/pkgs/applications/version-management/reposurgeon/default.nix +++ b/pkgs/applications/version-management/reposurgeon/default.nix @@ -10,7 +10,7 @@ buildGoModule rec { sha256 = "sha256-FuL5pvIM468hEm6rUBKGW6+WlYv4DPHNnpwpRGzMwlY="; }; - vendorSha256 = "sha256-QpgRCnsOOZujE405dCe+PYg/zNkqnrfZFfbBFo7adjY="; + vendorHash = "sha256-QpgRCnsOOZujE405dCe+PYg/zNkqnrfZFfbBFo7adjY="; subPackages = [ "." ]; diff --git a/pkgs/applications/version-management/scmpuff/default.nix b/pkgs/applications/version-management/scmpuff/default.nix index 65ca1b476d4d..38927d75757e 100644 --- a/pkgs/applications/version-management/scmpuff/default.nix +++ b/pkgs/applications/version-management/scmpuff/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-+L0W+M8sZdUSCWj9Ftft1gkRRfWMHdxon2xNnotx8Xs="; }; - vendorSha256 = "sha256-7WHVSEz3y1nxWfbxkzkfHhINLC8+snmWknHyUUpNy7c="; + vendorHash = "sha256-7WHVSEz3y1nxWfbxkzkfHhINLC8+snmWknHyUUpNy7c="; ldflags = [ "-s" "-w" "-X main.VERSION=${version}" ]; diff --git a/pkgs/applications/version-management/sourcehut/git.nix b/pkgs/applications/version-management/sourcehut/git.nix index 5d7478b9440b..eae70b372467 100644 --- a/pkgs/applications/version-management/sourcehut/git.nix +++ b/pkgs/applications/version-management/sourcehut/git.nix @@ -22,35 +22,35 @@ let inherit src version; pname = "gitsrht-api"; modRoot = "api"; - vendorSha256 = "sha256-cCs9FUBusaAou9w4TDOg8GKxhRcsPbSNcQpxvFH/+so="; + vendorHash = "sha256-cCs9FUBusaAou9w4TDOg8GKxhRcsPbSNcQpxvFH/+so="; } // import ./fix-gqlgen-trimpath.nix { inherit unzip; }); gitDispatch = buildGoModule { inherit src version; pname = "gitsrht-dispatch"; modRoot = "gitsrht-dispatch"; - vendorSha256 = "sha256-qWXPHo86s6iuRBhRMtmD5jxnAWKdrWHtA/iSUkdw89M="; + vendorHash = "sha256-qWXPHo86s6iuRBhRMtmD5jxnAWKdrWHtA/iSUkdw89M="; }; gitKeys = buildGoModule { inherit src version; pname = "gitsrht-keys"; modRoot = "gitsrht-keys"; - vendorSha256 = "sha256-9pojS69HCKVHUceyOpGtv9ewcxFD4WsOVsEzkmWJkF4="; + vendorHash = "sha256-9pojS69HCKVHUceyOpGtv9ewcxFD4WsOVsEzkmWJkF4="; }; gitShell = buildGoModule { inherit src version; pname = "gitsrht-shell"; modRoot = "gitsrht-shell"; - vendorSha256 = "sha256-WqfvSPuVsOHA//86u33atMfeA11+DJhjLmWy8Ivq0NI="; + vendorHash = "sha256-WqfvSPuVsOHA//86u33atMfeA11+DJhjLmWy8Ivq0NI="; }; gitUpdateHook = buildGoModule { inherit src version; pname = "gitsrht-update-hook"; modRoot = "gitsrht-update-hook"; - vendorSha256 = "sha256-Bc3yPabS2S+qiroHFKrtkII/CfzBDYQ6xWxKHAME+Tc="; + vendorHash = "sha256-Bc3yPabS2S+qiroHFKrtkII/CfzBDYQ6xWxKHAME+Tc="; }; in diff --git a/pkgs/applications/version-management/sourcehut/hg.nix b/pkgs/applications/version-management/sourcehut/hg.nix index eb8fa966242a..7f25ec99aa36 100644 --- a/pkgs/applications/version-management/sourcehut/hg.nix +++ b/pkgs/applications/version-management/sourcehut/hg.nix @@ -31,14 +31,14 @@ buildPythonPackage rec { inherit src version; pname = "hgsrht-api"; modRoot = "api"; - vendorSha256 = "sha256-uIP3W7UJkP68HJUF33kz5xfg/KBiaSwMozFYmQJQkys="; + vendorHash = "sha256-uIP3W7UJkP68HJUF33kz5xfg/KBiaSwMozFYmQJQkys="; } // import ./fix-gqlgen-trimpath.nix { inherit unzip; }); hgsrht-keys = buildGoModule { inherit src version; pname = "hgsrht-keys"; modRoot = "hgsrht-keys"; - vendorSha256 = "sha256-7ti8xCjSrxsslF7/1X/GY4FDl+69hPL4UwCDfjxmJLU="; + vendorHash = "sha256-7ti8xCjSrxsslF7/1X/GY4FDl+69hPL4UwCDfjxmJLU="; }; propagatedBuildInputs = [ diff --git a/pkgs/applications/version-management/sourcehut/lists.nix b/pkgs/applications/version-management/sourcehut/lists.nix index e4b366b01ed6..b875a46fcafa 100644 --- a/pkgs/applications/version-management/sourcehut/lists.nix +++ b/pkgs/applications/version-management/sourcehut/lists.nix @@ -27,7 +27,7 @@ buildPythonPackage rec { inherit src version; pname = "listssrht-api"; modRoot = "api"; - vendorSha256 = "sha256-xnmMkRSokbhWD+kz0XQ9AinYdm6/50FRBISURPvlzD0="; + vendorHash = "sha256-xnmMkRSokbhWD+kz0XQ9AinYdm6/50FRBISURPvlzD0="; } // import ./fix-gqlgen-trimpath.nix { inherit unzip; }); postPatch = '' diff --git a/pkgs/applications/version-management/sourcehut/pages.nix b/pkgs/applications/version-management/sourcehut/pages.nix index edb9379c6ded..abcef1648fc4 100644 --- a/pkgs/applications/version-management/sourcehut/pages.nix +++ b/pkgs/applications/version-management/sourcehut/pages.nix @@ -20,7 +20,7 @@ buildGoModule (rec { --replace "all: server" "" ''; - vendorSha256 = "sha256-VOqY/nStqGyfWOXnJSZX8UYyp2kzcibQM2NRNysHYEc="; + vendorHash = "sha256-VOqY/nStqGyfWOXnJSZX8UYyp2kzcibQM2NRNysHYEc="; postInstall = '' mkdir -p $out/share/sql/ diff --git a/pkgs/applications/version-management/sourcehut/todo.nix b/pkgs/applications/version-management/sourcehut/todo.nix index 95ef43775ec2..cee340e0d2b1 100644 --- a/pkgs/applications/version-management/sourcehut/todo.nix +++ b/pkgs/applications/version-management/sourcehut/todo.nix @@ -32,7 +32,7 @@ buildPythonPackage rec { inherit src version; pname = "todosrht-api"; modRoot = "api"; - vendorSha256 = "sha256-LB1H4jwnvoEyaaYJ09NI/M6IkgZwRet/fkso6b9EPV0="; + vendorHash = "sha256-LB1H4jwnvoEyaaYJ09NI/M6IkgZwRet/fkso6b9EPV0="; } // import ./fix-gqlgen-trimpath.nix { inherit unzip; }); propagatedBuildInputs = [ diff --git a/pkgs/applications/video/f1viewer/default.nix b/pkgs/applications/video/f1viewer/default.nix index 2620142fb11e..7541ec6598a0 100644 --- a/pkgs/applications/video/f1viewer/default.nix +++ b/pkgs/applications/video/f1viewer/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-jXC2dENXuqicNQqTHyZKsjibDvjta/npQmf3+uivjX0="; }; - vendorSha256 = "sha256-UNeH3zxgssXxFpJws6nAL8EgXt0DRyAQfmlJWz/qyDg="; + vendorHash = "sha256-UNeH3zxgssXxFpJws6nAL8EgXt0DRyAQfmlJWz/qyDg="; meta = with lib; { description = diff --git a/pkgs/applications/video/srtrelay/default.nix b/pkgs/applications/video/srtrelay/default.nix index b0dc49d7610d..43901d1524ad 100644 --- a/pkgs/applications/video/srtrelay/default.nix +++ b/pkgs/applications/video/srtrelay/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-CA+UuFOWjZjSBDWM62rda3IKO1fwC3X52mP4tg1uoO4="; }; - vendorSha256 = "sha256-xTYlfdijSo99ei+ZMX6N9gl+yw0DrPQ2wOhn6SS9S/E="; + vendorHash = "sha256-xTYlfdijSo99ei+ZMX6N9gl+yw0DrPQ2wOhn6SS9S/E="; buildInputs = [ srt ]; nativeCheckInputs = [ ffmpeg ]; diff --git a/pkgs/applications/virtualization/appvm/default.nix b/pkgs/applications/virtualization/appvm/default.nix index fdbfb27dfb86..e96a8b7d46d7 100644 --- a/pkgs/applications/virtualization/appvm/default.nix +++ b/pkgs/applications/virtualization/appvm/default.nix @@ -30,7 +30,7 @@ buildGoModule rec { sha256 = "sha256-FL5olOy1KufULyqI2dJeS0OnKzC3LfPWxnia2i4f4yY="; }; - vendorSha256 = "sha256-8eU+Mf5dxL/bAMMShXvj8I1Kdd4ysBTWvgYIXwLStPI="; + vendorHash = "sha256-8eU+Mf5dxL/bAMMShXvj8I1Kdd4ysBTWvgYIXwLStPI="; nativeBuildInputs = [ makeWrapper ]; diff --git a/pkgs/applications/virtualization/buildkit-nix/default.nix b/pkgs/applications/virtualization/buildkit-nix/default.nix index 5e0ddf6a0405..2d5e61a30d41 100644 --- a/pkgs/applications/virtualization/buildkit-nix/default.nix +++ b/pkgs/applications/virtualization/buildkit-nix/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-gKTCBz7om1M7UBzyMJDetNGcKLkQKMyuzwrHBbuuifM="; }; - vendorSha256 = "sha256-1H5oWgcaamf+hocABWWnzJUjWiqwk1ZZtbBjF6EKzzU="; + vendorHash = "sha256-1H5oWgcaamf+hocABWWnzJUjWiqwk1ZZtbBjF6EKzzU="; CGO_ENABLED = 0; diff --git a/pkgs/applications/virtualization/gvisor/default.nix b/pkgs/applications/virtualization/gvisor/default.nix index a07c98be49f5..3e0349b5109e 100644 --- a/pkgs/applications/virtualization/gvisor/default.nix +++ b/pkgs/applications/virtualization/gvisor/default.nix @@ -22,7 +22,7 @@ buildGoModule rec { sha256 = "sha256-rADQsJ+AnBVlfQURGJl1xR6Ad5NyRWSrBSpOFMRld+o="; }; - vendorSha256 = "sha256-iGLWxx/Kn1QaJTNOZcc+mwoF3ecEDOkaqmA0DH4pdgU="; + vendorHash = "sha256-iGLWxx/Kn1QaJTNOZcc+mwoF3ecEDOkaqmA0DH4pdgU="; nativeBuildInputs = [ makeWrapper ]; diff --git a/pkgs/applications/virtualization/ops/default.nix b/pkgs/applications/virtualization/ops/default.nix index 484eeeb41c11..56829737ead9 100644 --- a/pkgs/applications/virtualization/ops/default.nix +++ b/pkgs/applications/virtualization/ops/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { proxyVendor = true; # Doesn't build otherwise - vendorSha256 = "sha256-65VvUy4vGTfZgsXGJVSc/yU5R5MhSKJyMMsvPOCThks="; + vendorHash = "sha256-65VvUy4vGTfZgsXGJVSc/yU5R5MhSKJyMMsvPOCThks="; # Some tests fail doCheck = false; diff --git a/pkgs/development/compilers/tinygo/default.nix b/pkgs/development/compilers/tinygo/default.nix index 24fa6a984738..6e59699ea9dc 100644 --- a/pkgs/development/compilers/tinygo/default.nix +++ b/pkgs/development/compilers/tinygo/default.nix @@ -49,7 +49,7 @@ buildGoModule rec { fetchSubmodules = true; }; - vendorSha256 = "sha256-ihQd/RAjAQhgQZHbNiWmAD0eOo1MvqAR/OwIOUWtdAM="; + vendorHash = "sha256-ihQd/RAjAQhgQZHbNiWmAD0eOo1MvqAR/OwIOUWtdAM="; patches = [ ./0001-Makefile.patch diff --git a/pkgs/development/interpreters/oak/default.nix b/pkgs/development/interpreters/oak/default.nix index eda0450be428..734576d862b0 100644 --- a/pkgs/development/interpreters/oak/default.nix +++ b/pkgs/development/interpreters/oak/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-DK5n8xK57CQiukyBt9+CFK1j8+nphP//T2jTXq64VH8="; }; - vendorSha256 = "sha256-iQtb3zNa57nB6x4InVPw7FCmW7XPw5yuz0OcfASXPD8="; + vendorHash = "sha256-iQtb3zNa57nB6x4InVPw7FCmW7XPw5yuz0OcfASXPD8="; meta = with lib; { description = "Expressive, simple, dynamic programming language"; diff --git a/pkgs/development/libraries/protolock/default.nix b/pkgs/development/libraries/protolock/default.nix index 324c21df9288..8cb18252a2aa 100644 --- a/pkgs/development/libraries/protolock/default.nix +++ b/pkgs/development/libraries/protolock/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-vWwRZVArmlTIGwD4zV3dEHN2kkoeCZuNIvjCBVAviPo="; }; - vendorSha256 = "sha256-pYtP+Tkh2TcGsbk7zQNaoYLEQrqGOL0gkMG5dUkfpt4="; + vendorHash = "sha256-pYtP+Tkh2TcGsbk7zQNaoYLEQrqGOL0gkMG5dUkfpt4="; postInstall = '' rm $out/bin/plugin* diff --git a/pkgs/development/mobile/gomobile/default.nix b/pkgs/development/mobile/gomobile/default.nix index 44841d889c43..53ca7a3b39d9 100644 --- a/pkgs/development/mobile/gomobile/default.nix +++ b/pkgs/development/mobile/gomobile/default.nix @@ -11,7 +11,7 @@ buildGoModule { pname = "gomobile"; version = "unstable-2022-05-18"; - vendorSha256 = "sha256-AmOy3X+d2OD7ZLbFuy+SptdlgWbZJaXYEgO79M64ufE="; + vendorHash = "sha256-AmOy3X+d2OD7ZLbFuy+SptdlgWbZJaXYEgO79M64ufE="; src = fetchgit { rev = "8578da9835fd365e78a6e63048c103b27a53a82c"; diff --git a/pkgs/development/tools/bazel-kazel/default.nix b/pkgs/development/tools/bazel-kazel/default.nix index 9f51a44fbb8f..8d7ceb04f0eb 100644 --- a/pkgs/development/tools/bazel-kazel/default.nix +++ b/pkgs/development/tools/bazel-kazel/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-Y9VOlFrFmJQCQuwf3UztHGuJqmq/lSibTbI3oGjtNuE="; }; - vendorSha256 = "sha256-1+7Mx1Zh1WolqTpWNe560PRzRYaWVUVLvNvUOysaW5I="; + vendorHash = "sha256-1+7Mx1Zh1WolqTpWNe560PRzRYaWVUVLvNvUOysaW5I="; doCheck = false; diff --git a/pkgs/development/tools/check/default.nix b/pkgs/development/tools/check/default.nix index f74578e25a0d..8f068c678896 100644 --- a/pkgs/development/tools/check/default.nix +++ b/pkgs/development/tools/check/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-u8U/62LZEn1ffwdGsUCGam4HAk7b2LetomCLZzHuuas="; }; - vendorSha256 = "sha256-DyysiVYFpncmyCzlHIOEtWlCMpm90AC3gdItI9WinSo="; + vendorHash = "sha256-DyysiVYFpncmyCzlHIOEtWlCMpm90AC3gdItI9WinSo="; meta = with lib; { description = "A set of utilities for checking Go sources"; diff --git a/pkgs/development/tools/cobra-cli/default.nix b/pkgs/development/tools/cobra-cli/default.nix index a3f277259f2b..5d123a046dc5 100644 --- a/pkgs/development/tools/cobra-cli/default.nix +++ b/pkgs/development/tools/cobra-cli/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-E0I/Pxw4biOv7aGVzGlQOFXnxkc+zZaEoX1JmyMh6UE="; }; - vendorSha256 = "sha256-vrtGPQzY+NImOGaSxV+Dvch+GNPfL9XfY4lfCHTGXwY="; + vendorHash = "sha256-vrtGPQzY+NImOGaSxV+Dvch+GNPfL9XfY4lfCHTGXwY="; nativeBuildInputs = [ makeWrapper ]; diff --git a/pkgs/development/tools/continuous-integration/buildkite-cli/default.nix b/pkgs/development/tools/continuous-integration/buildkite-cli/default.nix index 0c04ece125d3..5e191cb83b32 100644 --- a/pkgs/development/tools/continuous-integration/buildkite-cli/default.nix +++ b/pkgs/development/tools/continuous-integration/buildkite-cli/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-4MUgyUKyycsreAMVtyKJFpQOHvI6JJSn7TUZtbQANyc="; }; - vendorSha256 = "sha256-3x7yJenJ2BHdqVPaBaqfFVeOSJZ/VRNF/TTfSsw+2os="; + vendorHash = "sha256-3x7yJenJ2BHdqVPaBaqfFVeOSJZ/VRNF/TTfSsw+2os="; doCheck = false; diff --git a/pkgs/development/tools/continuous-integration/codeberg-pages/default.nix b/pkgs/development/tools/continuous-integration/codeberg-pages/default.nix index b3d03435715c..d252266f2377 100644 --- a/pkgs/development/tools/continuous-integration/codeberg-pages/default.nix +++ b/pkgs/development/tools/continuous-integration/codeberg-pages/default.nix @@ -12,7 +12,7 @@ buildGoModule rec { sha256 = "sha256-mL2Xs7eyldoZK4zrX6WFlFtwdLN0iVyl1Qh8X6b2u9c="; }; - vendorSha256 = "sha256-R/LuZkA2xHmu7SO3BVyK1C6n9U+pYn50kNkyLltn2ng="; + vendorHash = "sha256-R/LuZkA2xHmu7SO3BVyK1C6n9U+pYn50kNkyLltn2ng="; patches = [ ./disable_httptest.patch ]; diff --git a/pkgs/development/tools/continuous-integration/drone-cli/default.nix b/pkgs/development/tools/continuous-integration/drone-cli/default.nix index ccbadee62028..ce5849048a66 100644 --- a/pkgs/development/tools/continuous-integration/drone-cli/default.nix +++ b/pkgs/development/tools/continuous-integration/drone-cli/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { hash = "sha256-PZ0M79duSctPepD5O+NdJZKhkyR21g/4P6loJtoWZiU="; }; - vendorSha256 = "sha256-JC7OR4ySDsVWmrBBTjpwZrkJlM8RJehbsvXW/VtA4VA="; + vendorHash = "sha256-JC7OR4ySDsVWmrBBTjpwZrkJlM8RJehbsvXW/VtA4VA="; # patch taken from https://patch-diff.githubusercontent.com/raw/harness/drone-cli/pull/179.patch # but with go.mod changes removed due to conflict diff --git a/pkgs/development/tools/continuous-integration/drone-runner-exec/default.nix b/pkgs/development/tools/continuous-integration/drone-runner-exec/default.nix index c40d94645d1e..1e9d1e96a9a9 100644 --- a/pkgs/development/tools/continuous-integration/drone-runner-exec/default.nix +++ b/pkgs/development/tools/continuous-integration/drone-runner-exec/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-0UIJwpC5Y2TQqyZf6C6neICYBZdLQBWAZ8/K1l6KVRs="; }; - vendorSha256 = "sha256-ypYuQKxRhRQGX1HtaWt6F6BD9vBpD8AJwx/4esLrJsw="; + vendorHash = "sha256-ypYuQKxRhRQGX1HtaWt6F6BD9vBpD8AJwx/4esLrJsw="; meta = with lib; { description = "Drone pipeline runner that executes builds directly on the host machine"; diff --git a/pkgs/development/tools/cuelsp/default.nix b/pkgs/development/tools/cuelsp/default.nix index 60366f3f6fe4..719c0bed271c 100644 --- a/pkgs/development/tools/cuelsp/default.nix +++ b/pkgs/development/tools/cuelsp/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-+E49TR2D26HSTwgwO1XFkIwXr5lmvv9l3KtR8dVT/cQ="; }; - vendorSha256 = "sha256-zg4aXPY2InY5VEX1GLJkGhMlfa5EezObAjIuX/bGvlc="; + vendorHash = "sha256-zg4aXPY2InY5VEX1GLJkGhMlfa5EezObAjIuX/bGvlc="; doCheck = false; diff --git a/pkgs/development/tools/database/timescaledb-parallel-copy/default.nix b/pkgs/development/tools/database/timescaledb-parallel-copy/default.nix index 5449e646546d..24c4aeb8538a 100644 --- a/pkgs/development/tools/database/timescaledb-parallel-copy/default.nix +++ b/pkgs/development/tools/database/timescaledb-parallel-copy/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-HxaGKJnLZjPPJXoccAx0XUsCrZiG09c40zeSbHYXm04="; }; - vendorSha256 = "sha256-muxtr80EjnRoHG/TCEQwrBwlnARsfqWoYlR0HavMe6U="; + vendorHash = "sha256-muxtr80EjnRoHG/TCEQwrBwlnARsfqWoYlR0HavMe6U="; meta = with lib; { description = "Bulk, parallel insert of CSV records into PostgreSQL"; diff --git a/pkgs/development/tools/database/timescaledb-tune/default.nix b/pkgs/development/tools/database/timescaledb-tune/default.nix index 020c99380b6a..1fa12861d921 100644 --- a/pkgs/development/tools/database/timescaledb-tune/default.nix +++ b/pkgs/development/tools/database/timescaledb-tune/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-MQi8A7eWOShP/VhxuX4Uhz1ueLtKvOi1x4E7aFXEsQo="; }; - vendorSha256 = "sha256-yXWeINubvfZ2S+3gVFsrzeVO3XXIiZ14qfK+9Bj3SV4="; + vendorHash = "sha256-yXWeINubvfZ2S+3gVFsrzeVO3XXIiZ14qfK+9Bj3SV4="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/development/tools/dstp/default.nix b/pkgs/development/tools/dstp/default.nix index 7e3dafc5b228..15093060d628 100644 --- a/pkgs/development/tools/dstp/default.nix +++ b/pkgs/development/tools/dstp/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-YvuUgHHa8Egk+bbSI0SH0i3YrKWRbzjAckNG32RBRXw="; }; - vendorSha256 = "sha256-qNH71MPKOC0ld7xxppjZrHSTJ6t8E0LljM1OzT7pM9g="; + vendorHash = "sha256-qNH71MPKOC0ld7xxppjZrHSTJ6t8E0LljM1OzT7pM9g="; # Tests require network connection, but is not allowed by nix doCheck = false; diff --git a/pkgs/development/tools/easyjson/default.nix b/pkgs/development/tools/easyjson/default.nix index 5fa4b183c241..b724dd213ab0 100644 --- a/pkgs/development/tools/easyjson/default.nix +++ b/pkgs/development/tools/easyjson/default.nix @@ -13,7 +13,7 @@ buildGoModule rec { rev = "v${version}"; sha256 = "0clifkvvy8f45rv3cdyv58dglzagyvfcqb63wl6rij30c5j2pzc1"; }; - vendorSha256 = "sha256-L8u7QQPE2SnskcRrSIwQ4KhsX9xncqDWXJ75ytjxLJ4="; + vendorHash = "sha256-L8u7QQPE2SnskcRrSIwQ4KhsX9xncqDWXJ75ytjxLJ4="; subPackages = [ "easyjson" ]; diff --git a/pkgs/development/tools/ec2-metadata-mock/default.nix b/pkgs/development/tools/ec2-metadata-mock/default.nix index 7fd87e839be5..968656fa9da2 100644 --- a/pkgs/development/tools/ec2-metadata-mock/default.nix +++ b/pkgs/development/tools/ec2-metadata-mock/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-hYyJtkwAzweH8boUY3vrvy6Ug+Ier5f6fvR52R+Di8o="; }; - vendorSha256 = "sha256-T45abGVoiwxAEO60aPH3hUqiH6ON3aRhkrOFcOi+Bm8="; + vendorHash = "sha256-T45abGVoiwxAEO60aPH3hUqiH6ON3aRhkrOFcOi+Bm8="; postInstall = '' mv $out/bin/{cmd,ec2-metadata-mock} diff --git a/pkgs/development/tools/ejson/default.nix b/pkgs/development/tools/ejson/default.nix index 55f51a3e798f..5c2efc0ab9a6 100644 --- a/pkgs/development/tools/ejson/default.nix +++ b/pkgs/development/tools/ejson/default.nix @@ -18,7 +18,7 @@ buildGoModule rec { sha256 = "sha256-M2Gk+/l1tNlIAe1/fR1WLEOey+tjCUmMAujc76gmeZA="; }; - vendorSha256 = "sha256-9+x7HrbXRoS/7ZADWwhsbynQLr3SyCbcsp9QnSubov0="; + vendorHash = "sha256-9+x7HrbXRoS/7ZADWwhsbynQLr3SyCbcsp9QnSubov0="; nativeBuildInputs = [ gems ]; diff --git a/pkgs/development/tools/ent/default.nix b/pkgs/development/tools/ent/default.nix index 6e45ad539e71..d81ce3dbff99 100644 --- a/pkgs/development/tools/ent/default.nix +++ b/pkgs/development/tools/ent/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-ryOpaRQi30NPDNe9rUmW+fEqWSKWEsvHl/Bd1+i88y4="; }; - vendorSha256 = "sha256-67+4r4ByVS0LgfL7eUOdEoQ+CMRzqNjPgkq3dNfNwBY="; + vendorHash = "sha256-67+4r4ByVS0LgfL7eUOdEoQ+CMRzqNjPgkq3dNfNwBY="; subPackages = [ "cmd/ent" ]; diff --git a/pkgs/development/tools/esbuild/netlify.nix b/pkgs/development/tools/esbuild/netlify.nix index 685426122924..1ed35d64f027 100644 --- a/pkgs/development/tools/esbuild/netlify.nix +++ b/pkgs/development/tools/esbuild/netlify.nix @@ -16,7 +16,7 @@ buildGoModule rec { sha256 = "pYiwGjgFMclPYTW0Qml7Pr/knT1gywUAGANra5aojYM="; }; - vendorSha256 = "sha256-QPkBR+FscUc3jOvH7olcGUhM6OW4vxawmNJuRQxPuGs="; + vendorHash = "sha256-QPkBR+FscUc3jOvH7olcGUhM6OW4vxawmNJuRQxPuGs="; passthru = { tests = { diff --git a/pkgs/development/tools/faq/default.nix b/pkgs/development/tools/faq/default.nix index 9ea3372f24e8..6a36ba73570b 100644 --- a/pkgs/development/tools/faq/default.nix +++ b/pkgs/development/tools/faq/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { rev = "594bb8e15dc4070300f39c168354784988646231"; sha256 = "1lqrchj4sj16n6y5ljsp8v4xmm57gzkavbddq23dhlgkg2lfyn91"; }; - vendorSha256 = "sha256-731eINkboZiuPXX/HQ4r/8ogLedKBWx1IV7BZRKwU3A"; + vendorHash = "sha256-731eINkboZiuPXX/HQ4r/8ogLedKBWx1IV7BZRKwU3A"; buildInputs = [ jq diff --git a/pkgs/development/tools/garble/default.nix b/pkgs/development/tools/garble/default.nix index d42a53beee9c..438d83405988 100644 --- a/pkgs/development/tools/garble/default.nix +++ b/pkgs/development/tools/garble/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-f7coWG1CS4UL8GGqwADx5CvIk2sPONPlWW+JgRhFsb8="; }; - vendorSha256 = "sha256-SOdIlu0QrQokl9j9Ff594+1K6twU1mCuECFQaVKaPV4="; + vendorHash = "sha256-SOdIlu0QrQokl9j9Ff594+1K6twU1mCuECFQaVKaPV4="; # Used for some of the tests. nativeCheckInputs = [git]; diff --git a/pkgs/development/tools/github/bump/default.nix b/pkgs/development/tools/github/bump/default.nix index cba623dec790..163b4e95496e 100644 --- a/pkgs/development/tools/github/bump/default.nix +++ b/pkgs/development/tools/github/bump/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-tgTG/QlDxX1Ns0WpcNjwr/tvsdtgap7RcxX/JuYcxw8="; }; - vendorSha256 = "sha256-ZeKokW6jMiKrXLfnxwEBF+wLuFQufnPUnA/EnuhvrwI="; + vendorHash = "sha256-ZeKokW6jMiKrXLfnxwEBF+wLuFQufnPUnA/EnuhvrwI="; doCheck = false; diff --git a/pkgs/development/tools/go-junit-report/default.nix b/pkgs/development/tools/go-junit-report/default.nix index 66111c2e6990..d024281205ba 100644 --- a/pkgs/development/tools/go-junit-report/default.nix +++ b/pkgs/development/tools/go-junit-report/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-Xz2tJtacsd6PqqA0ZT2eRgTACZonhdDtRWfBGcHW3A4="; }; - vendorSha256 = "sha256-+KmC7m6xdkWTT/8MkGaW9gqkzeZ6LWL0DXbt+12iTHY="; + vendorHash = "sha256-+KmC7m6xdkWTT/8MkGaW9gqkzeZ6LWL0DXbt+12iTHY="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/development/tools/go-outline/default.nix b/pkgs/development/tools/go-outline/default.nix index be07a10d902c..1d23818a96fb 100644 --- a/pkgs/development/tools/go-outline/default.nix +++ b/pkgs/development/tools/go-outline/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-5ns6n1UO9kRSw8iio4dmJDncsyvFeN01bjxHxQ9Fae4="; }; - vendorSha256 = "sha256-jYYtSXdJd2eUc80UfwRRMPcX6tFiXE3LbxV3NAdKVKE="; + vendorHash = "sha256-jYYtSXdJd2eUc80UfwRRMPcX6tFiXE3LbxV3NAdKVKE="; meta = with lib; { description = "Utility to extract JSON representation of declarations from a Go source file"; diff --git a/pkgs/development/tools/goda/default.nix b/pkgs/development/tools/goda/default.nix index edf37fa51672..19d363e1ef55 100644 --- a/pkgs/development/tools/goda/default.nix +++ b/pkgs/development/tools/goda/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-kilFb/2wXdzn/gXy9mBg0PZH8rd+MFIom4AGAZLgnBo="; }; - vendorSha256 = "sha256-FYjlOYB0L4l6gF8hYtJroV1qMQD0ZmKWXBarjyConRs="; + vendorHash = "sha256-FYjlOYB0L4l6gF8hYtJroV1qMQD0ZmKWXBarjyConRs="; passthru.updateScript = nix-update-script { }; diff --git a/pkgs/development/tools/gofumpt/default.nix b/pkgs/development/tools/gofumpt/default.nix index 2e30bfefc61a..6c6ca492cbe7 100644 --- a/pkgs/development/tools/gofumpt/default.nix +++ b/pkgs/development/tools/gofumpt/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-uXRYVLFDyRZ83mth8Fh+MG9fNv2lUfE3BTljM9v9rjI="; }; - vendorSha256 = "sha256-Il1E1yOejLEdKRRMqelGeJbHRjx4qFymf7N98BEdFzg="; + vendorHash = "sha256-Il1E1yOejLEdKRRMqelGeJbHRjx4qFymf7N98BEdFzg="; meta = with lib; { description = "A stricter gofmt"; diff --git a/pkgs/development/tools/gokart/default.nix b/pkgs/development/tools/gokart/default.nix index 6c3dcdc4e0ce..9521fcad96a4 100644 --- a/pkgs/development/tools/gokart/default.nix +++ b/pkgs/development/tools/gokart/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-G1IjlJ/rmviFWy6RFfLtP+bhfYcDuB97leimU39YCoQ="; }; - vendorSha256 = "sha256-lgKYVgJlmUJ/msdIqG7EKAZuISie1lG7+VeCF/rcSlE="; + vendorHash = "sha256-lgKYVgJlmUJ/msdIqG7EKAZuISie1lG7+VeCF/rcSlE="; # Would need files to scan which are not shipped by the project doCheck = false; diff --git a/pkgs/development/tools/golines/default.nix b/pkgs/development/tools/golines/default.nix index 30a948f8bbc4..986e68dd634d 100644 --- a/pkgs/development/tools/golines/default.nix +++ b/pkgs/development/tools/golines/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-2K9KAg8iSubiTbujyFGN3yggrL+EDyeUCs9OOta/19A="; }; - vendorSha256 = "sha256-rxYuzn4ezAxaeDhxd8qdOzt+CKYIh03A9zKNdzILq18="; + vendorHash = "sha256-rxYuzn4ezAxaeDhxd8qdOzt+CKYIh03A9zKNdzILq18="; meta = with lib; { description = "A golang formatter that fixes long lines"; diff --git a/pkgs/development/tools/golint/default.nix b/pkgs/development/tools/golint/default.nix index 4a835067ac81..34876a1e6400 100644 --- a/pkgs/development/tools/golint/default.nix +++ b/pkgs/development/tools/golint/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-g4Z9PREOxGoN7n/XhutawsITBznJlbz6StXeDYvOQ1c="; }; - vendorSha256 = "sha256-dPadFoymYu2Uw2AXZfbaBfxsN8IWMuK1TrcknHco3Bo="; + vendorHash = "sha256-dPadFoymYu2Uw2AXZfbaBfxsN8IWMuK1TrcknHco3Bo="; # tests no longer work: # found packages pkg (4.go) and foo (blank-import-lib.go) in /build/lint-6edffad/testdata diff --git a/pkgs/development/tools/gomodifytags/default.nix b/pkgs/development/tools/gomodifytags/default.nix index 7a4070d96d6d..08f95346306e 100644 --- a/pkgs/development/tools/gomodifytags/default.nix +++ b/pkgs/development/tools/gomodifytags/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "1yhkn9mdvsn9i5v03c5smz32zlhkylnxhkcbjb7llafxzbhzgfm6"; }; - vendorSha256 = "sha256-8efqJfu+gtoFbhdlDZfb8NsXV9hBDI2pvAQNH18VVhU="; + vendorHash = "sha256-8efqJfu+gtoFbhdlDZfb8NsXV9hBDI2pvAQNH18VVhU="; meta = { description = "Go tool to modify struct field tags"; diff --git a/pkgs/development/tools/gotest/default.nix b/pkgs/development/tools/gotest/default.nix index ddca0357b2b2..e618b3e9532d 100644 --- a/pkgs/development/tools/gotest/default.nix +++ b/pkgs/development/tools/gotest/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "1v11ccrjghq7nsz0f91r17di14yixsw28vs0m3dwzwqkh1a20img"; }; - vendorSha256 = "sha256-pVq6H1HoKqCMRfJg7FftRf3vh+BWZQe6cQAX+TBzKqw="; + vendorHash = "sha256-pVq6H1HoKqCMRfJg7FftRf3vh+BWZQe6cQAX+TBzKqw="; subPackages = [ "." ]; diff --git a/pkgs/development/tools/gotests/default.nix b/pkgs/development/tools/gotests/default.nix index d0d5025b31a4..70d1861e7416 100644 --- a/pkgs/development/tools/gotests/default.nix +++ b/pkgs/development/tools/gotests/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-6IzUpAsFUgF2FwiC17OfDn1M+8WYFQPpRyXbkpHIztw="; }; - vendorSha256 = "sha256-WMeHZN3s+8pIYEVaSLjI3Bz+rPTWHr1AkZ8lydjBwCw="; + vendorHash = "sha256-WMeHZN3s+8pIYEVaSLjI3Bz+rPTWHr1AkZ8lydjBwCw="; # tests are broken in nix environment doCheck = false; diff --git a/pkgs/development/tools/gotools/default.nix b/pkgs/development/tools/gotools/default.nix index 167775e9eb2e..1a75619081f9 100644 --- a/pkgs/development/tools/gotools/default.nix +++ b/pkgs/development/tools/gotools/default.nix @@ -20,7 +20,7 @@ buildGoModule rec { rm -r cmd/getgo ''; - vendorSha256 = "sha256-fp0pb3EcGRDWlSpgel4pYRdsPJGk8/d57EjWJ+fzq7g="; + vendorHash = "sha256-fp0pb3EcGRDWlSpgel4pYRdsPJGk8/d57EjWJ+fzq7g="; doCheck = false; diff --git a/pkgs/development/tools/gron/default.nix b/pkgs/development/tools/gron/default.nix index a91723b1fb79..cc8a72190277 100644 --- a/pkgs/development/tools/gron/default.nix +++ b/pkgs/development/tools/gron/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-ZkAfAQsaFX7npyDcBDFS4Xa8kOMVH6yGfxGD7c0iQ+o="; }; - vendorSha256 = "sha256-K/QAG9mCIHe7PQhex3TntlGYAK9l0bESWk616N97dBs="; + vendorHash = "sha256-K/QAG9mCIHe7PQhex3TntlGYAK9l0bESWk616N97dBs="; ldflags = [ "-s" "-w" "-X main.gronVersion=${version}" ]; diff --git a/pkgs/development/tools/hover/default.nix b/pkgs/development/tools/hover/default.nix index ec302001ff63..dfaa976aa9e0 100644 --- a/pkgs/development/tools/hover/default.nix +++ b/pkgs/development/tools/hover/default.nix @@ -46,7 +46,7 @@ let subPackages = [ "." ]; - vendorSha256 = "sha256-GDoX5d2aDfaAx9JsKuS4r8137t3swT6rgcCghmaThSM="; + vendorHash = "sha256-GDoX5d2aDfaAx9JsKuS4r8137t3swT6rgcCghmaThSM="; src = fetchFromGitHub { rev = "v${version}"; diff --git a/pkgs/development/tools/htmltest/default.nix b/pkgs/development/tools/htmltest/default.nix index 0630be6148ea..4d9db942cdbc 100644 --- a/pkgs/development/tools/htmltest/default.nix +++ b/pkgs/development/tools/htmltest/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-8tkk476kGEfHo3XGu3/0r6fhX1c4vkYiUACpw0uEu2g="; }; - vendorSha256 = "sha256-dTn5aYb5IHFbksmhkXSTJtI0Gnn8Uz0PMZPFzFKMo38="; + vendorHash = "sha256-dTn5aYb5IHFbksmhkXSTJtI0Gnn8Uz0PMZPFzFKMo38="; ldflags = [ "-w" diff --git a/pkgs/development/tools/ijq/default.nix b/pkgs/development/tools/ijq/default.nix index a5b7a4d10cd8..5334a2042600 100644 --- a/pkgs/development/tools/ijq/default.nix +++ b/pkgs/development/tools/ijq/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-WTA14W8JFHdouDgWmsc4wMygnwlANPjSYCAhxFVrwAA="; }; - vendorSha256 = "sha256-DX8m5FsqMZnzk1wgJA/ESZl0QeDv3p9huF4h1HY9DIA="; + vendorHash = "sha256-DX8m5FsqMZnzk1wgJA/ESZl0QeDv3p9huF4h1HY9DIA="; nativeBuildInputs = [ installShellFiles makeWrapper scdoc ]; diff --git a/pkgs/development/tools/ineffassign/default.nix b/pkgs/development/tools/ineffassign/default.nix index c472d9b0b0fe..cd4f41ad670e 100644 --- a/pkgs/development/tools/ineffassign/default.nix +++ b/pkgs/development/tools/ineffassign/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { sha256 = "sha256-XLXANN9TOmrNOixWtlqnIC27u+0TW2P3s9MyeyVUcAQ="; }; - vendorSha256 = "sha256-QTgWicN2m2ughtLsEBMaQWfpDbmbL0nS5qaIKF3mTJM="; + vendorHash = "sha256-QTgWicN2m2ughtLsEBMaQWfpDbmbL0nS5qaIKF3mTJM="; allowGoReference = true; diff --git a/pkgs/development/tools/jira-cli-go/default.nix b/pkgs/development/tools/jira-cli-go/default.nix index 1394eef5fd10..cfc37cc015fe 100644 --- a/pkgs/development/tools/jira-cli-go/default.nix +++ b/pkgs/development/tools/jira-cli-go/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { hash = "sha256-+8OPXyOTEnX864Lr8IugHh890XtmRtUr1pEN1/QxMz4="; }; - vendorSha256 = "sha256-sG/ZKQRVxBfaMKnLk2+HdmRhojI6BZVob1XDIAYMfY0="; + vendorHash = "sha256-sG/ZKQRVxBfaMKnLk2+HdmRhojI6BZVob1XDIAYMfY0="; ldflags = [ "-s" "-w" diff --git a/pkgs/development/tools/jmespath/default.nix b/pkgs/development/tools/jmespath/default.nix index 6224a2def078..5ec6120f01cd 100644 --- a/pkgs/development/tools/jmespath/default.nix +++ b/pkgs/development/tools/jmespath/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-djA/7TCmAqCsht28b1itoiWd8Mtdsn/5uLxyT23K/qM="; }; - vendorSha256 = "sha256-Q12muprcKB7fCxemESb4sGPyYIdmgOt3YXVUln7oabw="; + vendorHash = "sha256-Q12muprcKB7fCxemESb4sGPyYIdmgOt3YXVUln7oabw="; excludedPackages = [ "./internal/testify" diff --git a/pkgs/development/tools/jp/default.nix b/pkgs/development/tools/jp/default.nix index ba78a4ce6bcc..f606fd19d48f 100644 --- a/pkgs/development/tools/jp/default.nix +++ b/pkgs/development/tools/jp/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { hash = "sha256-a3WvLAdUZk+Y+L+opPDMBvdN5x5B6nAi/lL8JHJG/gY="; }; - vendorSha256 = "sha256-K6ZNtART7tcVBH5myV6vKrKWfnwK8yTa6/KK4QLyr00="; + vendorHash = "sha256-K6ZNtART7tcVBH5myV6vKrKWfnwK8yTa6/KK4QLyr00="; meta = with lib; { description = "A command line interface to the JMESPath expression language for JSON"; diff --git a/pkgs/development/tools/json2hcl/default.nix b/pkgs/development/tools/json2hcl/default.nix index 1f1b1a5568d4..47ee2cfe4bf1 100644 --- a/pkgs/development/tools/json2hcl/default.nix +++ b/pkgs/development/tools/json2hcl/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-0ku8sON4fzWAirqY+dhYAks2LSyC7OH/LKI0kb+QhpM="; }; - vendorSha256 = "sha256-GxYuFak+5CJyHgC1/RsS0ub84bgmgL+bI4YKFTb+vIY="; + vendorHash = "sha256-GxYuFak+5CJyHgC1/RsS0ub84bgmgL+bI4YKFTb+vIY="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/development/tools/kube-prompt/default.nix b/pkgs/development/tools/kube-prompt/default.nix index ad8749b57871..52449342630e 100644 --- a/pkgs/development/tools/kube-prompt/default.nix +++ b/pkgs/development/tools/kube-prompt/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-9OWsITbC7YO51QzsRwDWvojU54DiuGJhkSGwmesEj9w="; }; - vendorSha256 = "sha256-wou5inOX8vadEBCIBccwSRjtzf0GH1abwNdUu4JBvyM="; + vendorHash = "sha256-wou5inOX8vadEBCIBccwSRjtzf0GH1abwNdUu4JBvyM="; meta = with lib; { description = "An interactive kubernetes client featuring auto-complete"; diff --git a/pkgs/development/tools/kubectx/default.nix b/pkgs/development/tools/kubectx/default.nix index 7298cfb312eb..628f6771899d 100644 --- a/pkgs/development/tools/kubectx/default.nix +++ b/pkgs/development/tools/kubectx/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { ./bump-golang-x-sys.patch ]; - vendorSha256 = "sha256-p4KUBmJw6hWG1J2qwg4QBbh6Vo1cr/HQz0IqytIDJjU="; + vendorHash = "sha256-p4KUBmJw6hWG1J2qwg4QBbh6Vo1cr/HQz0IqytIDJjU="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/development/tools/kustomize/3.nix b/pkgs/development/tools/kustomize/3.nix index c7c3eb229e39..01cb1fd48615 100644 --- a/pkgs/development/tools/kustomize/3.nix +++ b/pkgs/development/tools/kustomize/3.nix @@ -24,7 +24,7 @@ buildGoModule rec { # avoid finding test and development commands sourceRoot = "${src.name}/kustomize"; - vendorSha256 = "sha256-xLeetcmzvpILLLMhMx7oahWLxguFjG3qbYpeeWpFUlw="; + vendorHash = "sha256-xLeetcmzvpILLLMhMx7oahWLxguFjG3qbYpeeWpFUlw="; meta = with lib; { description = "Customization of kubernetes YAML configurations"; diff --git a/pkgs/development/tools/language-servers/buf-language-server/default.nix b/pkgs/development/tools/language-servers/buf-language-server/default.nix index 88da6eb94482..8cfa35a1639a 100644 --- a/pkgs/development/tools/language-servers/buf-language-server/default.nix +++ b/pkgs/development/tools/language-servers/buf-language-server/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-UHsWrWDOC/f3YS2g533CgUkuUmz4MUQRunClQiY/YPQ="; }; - vendorSha256 = "sha256-ORzCOmBx6k1GZj6pYLhqPsdneCc7Tt1yHpI5mw5ruFU="; + vendorHash = "sha256-ORzCOmBx6k1GZj6pYLhqPsdneCc7Tt1yHpI5mw5ruFU="; ldflags = [ "-s" diff --git a/pkgs/development/tools/leaps/default.nix b/pkgs/development/tools/leaps/default.nix index a6e41844508c..a0f99496a438 100644 --- a/pkgs/development/tools/leaps/default.nix +++ b/pkgs/development/tools/leaps/default.nix @@ -12,7 +12,7 @@ buildGoModule rec { }; proxyVendor = true; # darwin/linux hash mismatch - vendorSha256 = "sha256-0dwUOoV2bxPB+B6CKxJPImPIDlBMPcm0AwEMrVUkALc="; + vendorHash = "sha256-0dwUOoV2bxPB+B6CKxJPImPIDlBMPcm0AwEMrVUkALc="; ldflags = [ "-s" "-w" "-X main.version=${version}" ]; diff --git a/pkgs/development/tools/maligned/default.nix b/pkgs/development/tools/maligned/default.nix index 8df4d79b5920..96290040761b 100644 --- a/pkgs/development/tools/maligned/default.nix +++ b/pkgs/development/tools/maligned/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { sha256 = "sha256-exljmDNtVhjJkvh0EomcbBXSsmQx4I59MHDfMWSQyKk="; }; - vendorSha256 = "sha256-q/0lxZWk3a7brMsbLvZUSZ8XUHfWfx79qxjir1Vygx4="; + vendorHash = "sha256-q/0lxZWk3a7brMsbLvZUSZ8XUHfWfx79qxjir1Vygx4="; allowGoReference = true; diff --git a/pkgs/development/tools/misc/aviator/default.nix b/pkgs/development/tools/misc/aviator/default.nix index baeec7a16ff8..fe7e1bc9cf81 100644 --- a/pkgs/development/tools/misc/aviator/default.nix +++ b/pkgs/development/tools/misc/aviator/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { ]; deleteVendor = true; - vendorSha256 = "sha256-AJyxCE4DdAXRS+2sY4Zzu8NTEFKJoV1bopfOqOFKZfI="; + vendorHash = "sha256-AJyxCE4DdAXRS+2sY4Zzu8NTEFKJoV1bopfOqOFKZfI="; meta = with lib; { description = "Merge YAML/JSON files in a in a convenient fashion"; diff --git a/pkgs/development/tools/misc/jiq/default.nix b/pkgs/development/tools/misc/jiq/default.nix index 9889ca67c5a2..2a0f0ed822c0 100644 --- a/pkgs/development/tools/misc/jiq/default.nix +++ b/pkgs/development/tools/misc/jiq/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-txhttYngN+dofA3Yp3gZUZPRRZWGug9ysXq1Q0RP7ig="; }; - vendorSha256 = "sha256-ZUmOhPGy+24AuxdeRVF0Vnu8zDGFrHoUlYiDdfIV5lc="; + vendorHash = "sha256-ZUmOhPGy+24AuxdeRVF0Vnu8zDGFrHoUlYiDdfIV5lc="; nativeBuildInputs = [ makeWrapper ]; diff --git a/pkgs/development/tools/misc/k2tf/default.nix b/pkgs/development/tools/misc/k2tf/default.nix index 9581cc42acff..35eb679281aa 100644 --- a/pkgs/development/tools/misc/k2tf/default.nix +++ b/pkgs/development/tools/misc/k2tf/default.nix @@ -20,7 +20,7 @@ buildGoModule rec { }) ]; - vendorSha256 = "sha256-yGuoE1bgwVHk3ym382OC93me9HPlVoNgGo/3JROVC2E="; + vendorHash = "sha256-yGuoE1bgwVHk3ym382OC93me9HPlVoNgGo/3JROVC2E="; ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=v${version}" ]; diff --git a/pkgs/development/tools/misc/mkcert/default.nix b/pkgs/development/tools/misc/mkcert/default.nix index 57a5f4d462ab..0022dd003cd9 100644 --- a/pkgs/development/tools/misc/mkcert/default.nix +++ b/pkgs/development/tools/misc/mkcert/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-FMAXjRL+kJ/hwGmaWBy8ecON+JCMgRytfpryeLWsSVc="; }; - vendorSha256 = "sha256-DdA7s+N5S1ivwUgZ+M2W/HCp/7neeoqRQL0umn3m6Do="; + vendorHash = "sha256-DdA7s+N5S1ivwUgZ+M2W/HCp/7neeoqRQL0umn3m6Do="; doCheck = false; diff --git a/pkgs/development/tools/mockgen/default.nix b/pkgs/development/tools/mockgen/default.nix index 56615d9b7004..51cd2428c2e9 100644 --- a/pkgs/development/tools/mockgen/default.nix +++ b/pkgs/development/tools/mockgen/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-5Kp7oTmd8kqUN+rzm9cLqp9nb3jZdQyltGGQDiRSWcE="; }; - vendorSha256 = "sha256-5gkrn+OxbNN8J1lbgbxM8jACtKA7t07sbfJ7gVJWpJM="; + vendorHash = "sha256-5gkrn+OxbNN8J1lbgbxM8jACtKA7t07sbfJ7gVJWpJM="; subPackages = [ "mockgen" ]; diff --git a/pkgs/development/tools/modd/default.nix b/pkgs/development/tools/modd/default.nix index e0984dae74d7..4ad15ecfc80f 100644 --- a/pkgs/development/tools/modd/default.nix +++ b/pkgs/development/tools/modd/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-KDZyOnytDLyybHTgU1v/NpiomeHXMIUHiQ+Xpmwyo0w="; }; - vendorSha256 = "sha256-O+hJRMSwV/9NHxbaLjloCWnfPugfRYaXNve098wjbqQ="; + vendorHash = "sha256-O+hJRMSwV/9NHxbaLjloCWnfPugfRYaXNve098wjbqQ="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/development/tools/mustache-go/default.nix b/pkgs/development/tools/mustache-go/default.nix index 46df83a66cdf..be5218cb1d33 100644 --- a/pkgs/development/tools/mustache-go/default.nix +++ b/pkgs/development/tools/mustache-go/default.nix @@ -12,7 +12,7 @@ buildGoModule rec { sha256 = "sha256-A7LIkidhpFmhIjiDu9KdmSIdqFNsV3N8J2QEo7yT+DE="; }; - vendorSha256 = "sha256-FYdsLcW6FYxSgixZ5US9cBPABOAVwidC3ejUNbs1lbA="; + vendorHash = "sha256-FYdsLcW6FYxSgixZ5US9cBPABOAVwidC3ejUNbs1lbA="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/development/tools/nap/default.nix b/pkgs/development/tools/nap/default.nix index 3d925b33801c..fdc585fd5e18 100644 --- a/pkgs/development/tools/nap/default.nix +++ b/pkgs/development/tools/nap/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "0b3sz8zp1nwcjl02b3lli5yjc7vfay1ig6fs8bgxwz22imfx076p"; }; - vendorSha256 = "sha256-puCqql77kvdWTcwp8z6LExBt/HbNRNe0f+wtM0kLoWM="; + vendorHash = "sha256-puCqql77kvdWTcwp8z6LExBt/HbNRNe0f+wtM0kLoWM="; excludedPackages = ".nap"; diff --git a/pkgs/development/tools/nc4nix/default.nix b/pkgs/development/tools/nc4nix/default.nix index acfac70d4bc4..821453314a82 100644 --- a/pkgs/development/tools/nc4nix/default.nix +++ b/pkgs/development/tools/nc4nix/default.nix @@ -36,7 +36,7 @@ buildGoModule { }) ]; - vendorSha256 = "sha256-uhINWxFny/OY7M2vV3ehFzP90J6Z8cn5IZHWOuEg91M="; + vendorHash = "sha256-uhINWxFny/OY7M2vV3ehFzP90J6Z8cn5IZHWOuEg91M="; nativeBuildInputs = [ makeWrapper diff --git a/pkgs/development/tools/oshka/default.nix b/pkgs/development/tools/oshka/default.nix index 5e7ca5a7da2a..489f41b718df 100644 --- a/pkgs/development/tools/oshka/default.nix +++ b/pkgs/development/tools/oshka/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-fpWhqFK5h/U7DCC/SyhAlMyCMhjZHRLMlwakvlhOd3w="; }; - vendorSha256 = "sha256-ZBI3WDXfJKBEF2rmUN3LvOOPT1185dHmj88qJKsdUiE="; + vendorHash = "sha256-ZBI3WDXfJKBEF2rmUN3LvOOPT1185dHmj88qJKsdUiE="; ldflags = [ "-w" diff --git a/pkgs/development/tools/out-of-tree/default.nix b/pkgs/development/tools/out-of-tree/default.nix index f76c96dd6f81..0fa12e417eda 100644 --- a/pkgs/development/tools/out-of-tree/default.nix +++ b/pkgs/development/tools/out-of-tree/default.nix @@ -12,7 +12,7 @@ buildGoModule rec { sha256 = "sha256-D2LiSDnF7g1h0XTulctCnZ+I6FZSLA0XRd9LQLOMP9c="; }; - vendorSha256 = "sha256-p1dqzng3ak9lrnzrEABhE1TP1lM2Ikc8bmvp5L3nUp0="; + vendorHash = "sha256-p1dqzng3ak9lrnzrEABhE1TP1lM2Ikc8bmvp5L3nUp0="; doCheck = false; diff --git a/pkgs/development/tools/pigeon/default.nix b/pkgs/development/tools/pigeon/default.nix index 31d668eb853b..74b2a69c4c7c 100644 --- a/pkgs/development/tools/pigeon/default.nix +++ b/pkgs/development/tools/pigeon/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-0Cp/OnFvVZj9UZgl3F5MCzemBaHI4smGWU46VQnhLOg="; }; - vendorSha256 = "sha256-JbBXRkxnB7LeeWdBLIQvyjvWo0zZ1EOuEUPXxHWiq+E="; + vendorHash = "sha256-JbBXRkxnB7LeeWdBLIQvyjvWo0zZ1EOuEUPXxHWiq+E="; proxyVendor = true; diff --git a/pkgs/development/tools/proto-contrib/default.nix b/pkgs/development/tools/proto-contrib/default.nix index 7fb4e8aca448..5437fd11345a 100644 --- a/pkgs/development/tools/proto-contrib/default.nix +++ b/pkgs/development/tools/proto-contrib/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "0ksxic7cypv9gg8q5lkl5bla1n9i65z7b03cx9lwq6252glmf2jk"; }; - vendorSha256 = "sha256-XAFB+DDWN7CLfNxIBqYJy88gUNrUJYExzy2/BFnBe8c="; + vendorHash = "sha256-XAFB+DDWN7CLfNxIBqYJy88gUNrUJYExzy2/BFnBe8c="; doCheck = false; diff --git a/pkgs/development/tools/protoc-gen-doc/default.nix b/pkgs/development/tools/protoc-gen-doc/default.nix index 50badf258b08..31e86f85cd08 100644 --- a/pkgs/development/tools/protoc-gen-doc/default.nix +++ b/pkgs/development/tools/protoc-gen-doc/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-19CN62AwqQGq5Gb5kQqVYhs+LKsJ9K2L0VAakwzPD5Y="; }; - vendorSha256 = "sha256-K0rZBERSKob5ubZW28QpbcPhgFKOOASkd9UyC9f8gyQ="; + vendorHash = "sha256-K0rZBERSKob5ubZW28QpbcPhgFKOOASkd9UyC9f8gyQ="; meta = with lib; { description = "Documentation generator plugin for Google Protocol Buffers"; diff --git a/pkgs/development/tools/protoc-gen-twirp_swagger/default.nix b/pkgs/development/tools/protoc-gen-twirp_swagger/default.nix index 3348759c0113..0b651a6ce0b4 100644 --- a/pkgs/development/tools/protoc-gen-twirp_swagger/default.nix +++ b/pkgs/development/tools/protoc-gen-twirp_swagger/default.nix @@ -11,7 +11,7 @@ buildGoModule { sha256 = "sha256-uHU15NbHK7SYgNS3VK21H/OqDo/JyyTZdXw3i9lsgLY="; }; - vendorSha256 = "sha256-g0+9l83Fc0XPzsZAKjLBrjD+tv2+Fot57hcilqAhOZk="; + vendorHash = "sha256-g0+9l83Fc0XPzsZAKjLBrjD+tv2+Fot57hcilqAhOZk="; subPackages = [ "." ]; diff --git a/pkgs/development/tools/protoc-gen-twirp_typescript/default.nix b/pkgs/development/tools/protoc-gen-twirp_typescript/default.nix index 921197407527..259b2a8871a7 100644 --- a/pkgs/development/tools/protoc-gen-twirp_typescript/default.nix +++ b/pkgs/development/tools/protoc-gen-twirp_typescript/default.nix @@ -12,7 +12,7 @@ buildGoModule { }; proxyVendor = true; - vendorSha256 = "sha256-UyxHa28SY60U8VeL7TbSTyscqN5T7tKGfuN2GIL6QIg"; + vendorHash = "sha256-UyxHa28SY60U8VeL7TbSTyscqN5T7tKGfuN2GIL6QIg"; subPackages = [ "." ]; diff --git a/pkgs/development/tools/protolint/default.nix b/pkgs/development/tools/protolint/default.nix index dee2f9c28f5c..47bdd5530e7a 100644 --- a/pkgs/development/tools/protolint/default.nix +++ b/pkgs/development/tools/protolint/default.nix @@ -10,7 +10,7 @@ buildGoModule rec { sha256 = "sha256-oKGA5FZpT3E5G7oREGAojdu4Xn8JPd7IYwfueK9QA34="; }; - vendorSha256 = "sha256-iLQwx3B5n21ZXefWiGBBL9roa9LIFByzB8KXLywhvKs="; + vendorHash = "sha256-iLQwx3B5n21ZXefWiGBBL9roa9LIFByzB8KXLywhvKs="; # Something about the way we run tests causes issues. It doesn't happen # when using "go test" directly: diff --git a/pkgs/development/tools/rakkess/default.nix b/pkgs/development/tools/rakkess/default.nix index a340a042cc2b..83ee3c9ec115 100644 --- a/pkgs/development/tools/rakkess/default.nix +++ b/pkgs/development/tools/rakkess/default.nix @@ -10,7 +10,7 @@ buildGoModule rec { rev = "v${version}"; sha256 = "sha256-igovWWk8GfNmOS/NbZWfv9kox6QLNIbM09jdvA/lL3A="; }; - vendorSha256 = "sha256-lVxJ4wFBhHc8JVpkmqphLYPE9Z8Cr6o+aAHvC1naqyE="; + vendorHash = "sha256-lVxJ4wFBhHc8JVpkmqphLYPE9Z8Cr6o+aAHvC1naqyE="; ldflags = [ "-s" "-w" "-X github.com/corneliusweig/rakkess/internal/version.version=v${version}" ]; diff --git a/pkgs/development/tools/reflex/default.nix b/pkgs/development/tools/reflex/default.nix index 879131213a03..406740e784f0 100644 --- a/pkgs/development/tools/reflex/default.nix +++ b/pkgs/development/tools/reflex/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-/2qVm2xpSFVspA16rkiIw/qckxzXQp/1EGOl0f9KljY="; }; - vendorSha256 = "sha256-JCtVYDHbhH2i7tGNK1jvgHCjU6gMMkNhQ2ZnlTeqtmA="; + vendorHash = "sha256-JCtVYDHbhH2i7tGNK1jvgHCjU6gMMkNhQ2ZnlTeqtmA="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/development/tools/refmt/default.nix b/pkgs/development/tools/refmt/default.nix index 523d14b2a9a3..efcb03a49b8f 100644 --- a/pkgs/development/tools/refmt/default.nix +++ b/pkgs/development/tools/refmt/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-HiAWSR2S+3OcIgwdQ0ltW37lcG+OHkDRDUF07rfNcJY="; }; - vendorSha256 = "sha256-MiYUDEF9W0VAiOX6uE8doXtGAekIrA1cfA8A2a7xd2I="; + vendorHash = "sha256-MiYUDEF9W0VAiOX6uE8doXtGAekIrA1cfA8A2a7xd2I="; meta = with lib; { description = "Reformat HCL <-> JSON <-> YAML"; diff --git a/pkgs/development/tools/spicy/default.nix b/pkgs/development/tools/spicy/default.nix index 65385d7fe139..b297053843e7 100644 --- a/pkgs/development/tools/spicy/default.nix +++ b/pkgs/development/tools/spicy/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-TodMm4UbnLB+LiyfPVXT7bcVLbyBFbGoOYQSsz3IMfM="; }; - vendorSha256 = "sha256-uy33vfsvyLCep1aN8qO0BMmpPylhzTLhosjjD5ghmHE="; + vendorHash = "sha256-uy33vfsvyLCep1aN8qO0BMmpPylhzTLhosjjD5ghmHE="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/development/tools/supabase-cli/default.nix b/pkgs/development/tools/supabase-cli/default.nix index f54475ef6db5..9d46c7842be4 100644 --- a/pkgs/development/tools/supabase-cli/default.nix +++ b/pkgs/development/tools/supabase-cli/default.nix @@ -18,7 +18,7 @@ buildGoModule rec { hash = "sha256-OgeKr0xSWp83Ri3WBNsY3TL6tAWsMtsEdD6KeKdPdCw="; }; - vendorSha256 = "sha256-efcgpxvhHe6KtNfNYYc5fYv93fJPf63V39d+5AcCvPQ="; + vendorHash = "sha256-efcgpxvhHe6KtNfNYYc5fYv93fJPf63V39d+5AcCvPQ="; ldflags = [ "-s" diff --git a/pkgs/development/tools/toxiproxy/default.nix b/pkgs/development/tools/toxiproxy/default.nix index 920afba2a30e..fdeb362ee946 100644 --- a/pkgs/development/tools/toxiproxy/default.nix +++ b/pkgs/development/tools/toxiproxy/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-SL3YHsNeFw8K8lPrzJXAoTkHxS+1sTREfzjawBxdnf0="; }; - vendorSha256 = "sha256-CmENxPAdjz0BAyvhLKIaJjSbK/mvRzHGCQOfGIiA3yI="; + vendorHash = "sha256-CmENxPAdjz0BAyvhLKIaJjSbK/mvRzHGCQOfGIiA3yI="; excludedPackages = [ "test/e2e" ]; diff --git a/pkgs/development/tools/turbogit/default.nix b/pkgs/development/tools/turbogit/default.nix index 4499ec606e8f..2680d10f1dbb 100644 --- a/pkgs/development/tools/turbogit/default.nix +++ b/pkgs/development/tools/turbogit/default.nix @@ -10,7 +10,7 @@ buildGoModule rec { sha256 = "sha256-BHgVJlitRUX/9zYPoK5XfRpzzTZRbLhQVZJcx8KVshk="; }; - vendorSha256 = "sha256-280OcGXZQJD4G6z0b2WnWAS+v7XVptyf2WnlPjG99/0="; + vendorHash = "sha256-280OcGXZQJD4G6z0b2WnWAS+v7XVptyf2WnlPjG99/0="; subPackages = [ "." ]; diff --git a/pkgs/development/tools/unconvert/default.nix b/pkgs/development/tools/unconvert/default.nix index 424cafde2f6a..ac49ad1f9696 100644 --- a/pkgs/development/tools/unconvert/default.nix +++ b/pkgs/development/tools/unconvert/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-vcRHriFCT5b8SKjtRSg+kZDcCAKySC1cKVq+FMZb+9M="; }; - vendorSha256 = "sha256-p77mLvGtohmC8J+bqqkM5kqc1pMPcFx7GhXOZ4q4jeM="; + vendorHash = "sha256-p77mLvGtohmC8J+bqqkM5kqc1pMPcFx7GhXOZ4q4jeM="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/development/tools/wails/default.nix b/pkgs/development/tools/wails/default.nix index 627fe2ac2393..d33d5bc05fb3 100644 --- a/pkgs/development/tools/wails/default.nix +++ b/pkgs/development/tools/wails/default.nix @@ -23,7 +23,7 @@ buildGoModule rec { sha256 = "sha256-jY+2I4SOr6gr2MCLrBBE9H0T1sTB13kEb1OJ717kWqg="; } + "/v2"; - vendorSha256 = "sha256-56LZQQzfFQTa4fo5bdZtK/VzNDBPyI9hDG4RkP38gcI="; + vendorHash = "sha256-56LZQQzfFQTa4fo5bdZtK/VzNDBPyI9hDG4RkP38gcI="; proxyVendor = true; diff --git a/pkgs/development/tools/wally-cli/default.nix b/pkgs/development/tools/wally-cli/default.nix index c0ed34770604..547f68bf8f33 100644 --- a/pkgs/development/tools/wally-cli/default.nix +++ b/pkgs/development/tools/wally-cli/default.nix @@ -17,7 +17,7 @@ buildGoModule rec { sha256 = "NuyQHEygy4LNqLtrpdwfCR+fNy3ZUxOClVdRen6AXMc="; }; - vendorSha256 = "sha256-HffgkuKmaOjTYi+jQ6vBlC50JqqbYiikURT6TCqL7e0="; + vendorHash = "sha256-HffgkuKmaOjTYi+jQ6vBlC50JqqbYiikURT6TCqL7e0="; meta = with lib; { description = "A tool to flash firmware to mechanical keyboards"; diff --git a/pkgs/development/tools/wire/default.nix b/pkgs/development/tools/wire/default.nix index a51252f56696..50e57d07d413 100644 --- a/pkgs/development/tools/wire/default.nix +++ b/pkgs/development/tools/wire/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-9xjymiyPFMKbysgZULmcBEMI26naUrLMgTA+d7Q+DA0="; }; - vendorSha256 = "sha256-ZFUX4LgPte6oAf94D82Man/P9VMpx+CDNCTMBwiy9Fc="; + vendorHash = "sha256-ZFUX4LgPte6oAf94D82Man/P9VMpx+CDNCTMBwiy9Fc="; subPackages = [ "cmd/wire" ]; diff --git a/pkgs/development/web/shopify-themekit/default.nix b/pkgs/development/web/shopify-themekit/default.nix index 7c9007ef8e83..5d20a9102475 100644 --- a/pkgs/development/web/shopify-themekit/default.nix +++ b/pkgs/development/web/shopify-themekit/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-HtgA+R6THZ49WYtGlHS1EzekjuuGgPe657Y6ewraD4o="; }; - vendorSha256 = "sha256-8QpkYj0fQb4plzvk6yCrZho8rq9VBiLft/EO3cczciI="; + vendorHash = "sha256-8QpkYj0fQb4plzvk6yCrZho8rq9VBiLft/EO3cczciI="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/games/itch/butler.nix b/pkgs/games/itch/butler.nix index d6d9075997a3..cbd6b8aef936 100644 --- a/pkgs/games/itch/butler.nix +++ b/pkgs/games/itch/butler.nix @@ -31,7 +31,7 @@ buildGoModule rec { proxyVendor = true; - vendorSha256 = "sha256-CtBwc5mcgLvl2Bvg5gI+ULJMQEEibx1aN3IpmRNUtwE="; + vendorHash = "sha256-CtBwc5mcgLvl2Bvg5gI+ULJMQEEibx1aN3IpmRNUtwE="; doCheck = false; diff --git a/pkgs/games/uchess/default.nix b/pkgs/games/uchess/default.nix index 58b45609cc4a..8cb49bf1e3fc 100644 --- a/pkgs/games/uchess/default.nix +++ b/pkgs/games/uchess/default.nix @@ -13,7 +13,7 @@ buildGoModule rec { sha256 = "1njl3f41gshdpj431zkvpv2b7zmh4m2m5q6xsijb0c0058dk46mz"; }; - vendorSha256 = "sha256-4yEE1AsSChayCBxaMXPsbls7xGmFeWRhfOMHyAAReDY="; + vendorHash = "sha256-4yEE1AsSChayCBxaMXPsbls7xGmFeWRhfOMHyAAReDY="; # package does not contain any tests as of v0.2.1 doCheck = false; diff --git a/pkgs/os-specific/linux/cshatag/default.nix b/pkgs/os-specific/linux/cshatag/default.nix index 64fb6f4f88ff..84de0c5dd11d 100644 --- a/pkgs/os-specific/linux/cshatag/default.nix +++ b/pkgs/os-specific/linux/cshatag/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-Ez8zGVX10A7xuggkh3n7w/qzda8f4t6EgSc9l6SPEZQ="; }; - vendorSha256 = "sha256-QTnwltsoyUbH4vob5go1KBrb9gwxaaPNW3S4sxVls3k="; + vendorHash = "sha256-QTnwltsoyUbH4vob5go1KBrb9gwxaaPNW3S4sxVls3k="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/os-specific/linux/ipp-usb/default.nix b/pkgs/os-specific/linux/ipp-usb/default.nix index 0e79b89cfa34..6dc63a7295b1 100644 --- a/pkgs/os-specific/linux/ipp-usb/default.nix +++ b/pkgs/os-specific/linux/ipp-usb/default.nix @@ -24,7 +24,7 @@ buildGoModule rec { nativeBuildInputs = [ pkg-config ronn ]; buildInputs = [ libusb1 avahi ]; - vendorSha256 = "sha256-KwW6KgopjF4tVo8eB4OtpXF5R8jfrJ9nibNmaN8U4l8="; + vendorHash = "sha256-KwW6KgopjF4tVo8eB4OtpXF5R8jfrJ9nibNmaN8U4l8="; postInstall = '' # to accomodate the makefile diff --git a/pkgs/os-specific/linux/pam_ussh/default.nix b/pkgs/os-specific/linux/pam_ussh/default.nix index b0eeef0948e6..028b33bc9316 100644 --- a/pkgs/os-specific/linux/pam_ussh/default.nix +++ b/pkgs/os-specific/linux/pam_ussh/default.nix @@ -21,7 +21,7 @@ buildGoModule rec { cp ${./go.sum} go.sum ''; - vendorSha256 = "sha256-fOIzJuTXiDNJak5ilgI2KnPOCogbFWTlPL3yNQdzUUI="; + vendorHash = "sha256-fOIzJuTXiDNJak5ilgI2KnPOCogbFWTlPL3yNQdzUUI="; buildInputs = [ pam diff --git a/pkgs/os-specific/linux/ultrablue-server/default.nix b/pkgs/os-specific/linux/ultrablue-server/default.nix index 620189af361d..bb162f1693ba 100644 --- a/pkgs/os-specific/linux/ultrablue-server/default.nix +++ b/pkgs/os-specific/linux/ultrablue-server/default.nix @@ -18,7 +18,7 @@ buildGoModule rec { sourceRoot = "${src.name}/server"; - vendorSha256 = "sha256-249LWguTHIF0HNIo8CsE/HWpAtBw4P46VPvlTARLTpw="; + vendorHash = "sha256-249LWguTHIF0HNIo8CsE/HWpAtBw4P46VPvlTARLTpw="; doCheck = false; meta = with lib; { diff --git a/pkgs/servers/alice-lg/default.nix b/pkgs/servers/alice-lg/default.nix index 2e77d6917d6c..5619928e4592 100644 --- a/pkgs/servers/alice-lg/default.nix +++ b/pkgs/servers/alice-lg/default.nix @@ -20,7 +20,7 @@ buildGoModule rec { hash = "sha256-BdhbHAFqyQc8UbVm6eakbVmLS5QgXhr06oxoc6vYtsM="; }; - vendorSha256 = "sha256-SNF46uUTRCaa9qeGCfkHBjyo4BWOlpRaTDq+Uha08y8="; + vendorHash = "sha256-SNF46uUTRCaa9qeGCfkHBjyo4BWOlpRaTDq+Uha08y8="; passthru.ui = stdenv.mkDerivation { pname = "alice-lg-ui"; diff --git a/pkgs/servers/alps/default.nix b/pkgs/servers/alps/default.nix index e219d5a8c201..5a296f905451 100644 --- a/pkgs/servers/alps/default.nix +++ b/pkgs/servers/alps/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { hash = "sha256-RSug3YSiqYLGs05Bee4NoaoCyPvUZ7IqlKWI1hmxbiA="; }; - vendorSha256 = "sha256-XDm6LU9D/rVQHiko7EFpocv+IktGe6tQhJYRrOJxeSs="; + vendorHash = "sha256-XDm6LU9D/rVQHiko7EFpocv+IktGe6tQhJYRrOJxeSs="; ldflags = [ "-s" diff --git a/pkgs/servers/asouldocs/default.nix b/pkgs/servers/asouldocs/default.nix index a10c088670b0..cf0c5f48e007 100644 --- a/pkgs/servers/asouldocs/default.nix +++ b/pkgs/servers/asouldocs/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { hash = "sha256-ctRE7aF3Qj+fI/m0CuLA6x7E+mY6s1+UfBJI5YFea4g="; }; - vendorSha256 = "sha256-T/KLiSK6bxXGkmVJ5aGrfHTUfLs/ElGyWSoCL5kb/KU="; + vendorHash = "sha256-T/KLiSK6bxXGkmVJ5aGrfHTUfLs/ElGyWSoCL5kb/KU="; meta = with lib; { description = "Web server for multi-language, real-time synchronization and searchable documentation"; diff --git a/pkgs/servers/bird-lg/default.nix b/pkgs/servers/bird-lg/default.nix index 3be96f80cd8f..b4ce72332d97 100644 --- a/pkgs/servers/bird-lg/default.nix +++ b/pkgs/servers/bird-lg/default.nix @@ -1,6 +1,6 @@ { buildGoModule, fetchFromGitHub, lib, symlinkJoin }: let - generic = { modRoot, vendorSha256 }: + generic = { modRoot, vendorHash }: buildGoModule rec { pname = "bird-lg-${modRoot}"; version = "1.3.1"; @@ -19,7 +19,7 @@ let "-w" ]; - inherit modRoot vendorSha256; + inherit modRoot vendorHash; meta = with lib; { description = "Bird Looking Glass"; @@ -35,12 +35,12 @@ let bird-lg-frontend = generic { modRoot = "frontend"; - vendorSha256 = "sha256-yyH6McVzU0Qiod3yP5pGlF36fJQlf4g52wfDAem6KWs="; + vendorHash = "sha256-yyH6McVzU0Qiod3yP5pGlF36fJQlf4g52wfDAem6KWs="; }; bird-lg-proxy = generic { modRoot = "proxy"; - vendorSha256 = "sha256-JfHvDIVKQ7jdPocuh6AOwSQmP+a0/hXYrt5Ap/pEjug="; + vendorHash = "sha256-JfHvDIVKQ7jdPocuh6AOwSQmP+a0/hXYrt5Ap/pEjug="; }; in symlinkJoin { diff --git a/pkgs/servers/birdwatcher/default.nix b/pkgs/servers/birdwatcher/default.nix index 32f451c07562..38a53e89ffe4 100644 --- a/pkgs/servers/birdwatcher/default.nix +++ b/pkgs/servers/birdwatcher/default.nix @@ -7,7 +7,7 @@ buildGoModule rec { pname = "birdwatcher"; version = "2.2.4"; - vendorSha256 = "sha256-NTD2pnA/GeTn4tXtIFJ227qjRtvBFCjWYZv59Rumc74="; + vendorHash = "sha256-NTD2pnA/GeTn4tXtIFJ227qjRtvBFCjWYZv59Rumc74="; src = fetchFromGitHub { owner = "alice-lg"; diff --git a/pkgs/servers/cayley/default.nix b/pkgs/servers/cayley/default.nix index ec94b19ae49c..df5760fb2b2a 100644 --- a/pkgs/servers/cayley/default.nix +++ b/pkgs/servers/cayley/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-jIX0v6ujiQvEAb/mKkrpNgsY0YLkJYHy2sUfQnooE48="; }; - vendorSha256 = "sha256-SSjHGJoW3I7r8emh3IwmiZQIVzdilAsA2ULdAqld2fA="; + vendorHash = "sha256-SSjHGJoW3I7r8emh3IwmiZQIVzdilAsA2ULdAqld2fA="; subPackages = [ "cmd/cayley" ]; diff --git a/pkgs/servers/confluencepot/default.nix b/pkgs/servers/confluencepot/default.nix index 242e2b93d7ad..4b807401a299 100644 --- a/pkgs/servers/confluencepot/default.nix +++ b/pkgs/servers/confluencepot/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { hash = "sha256-jIbL6prOUII8o9FghIYa80BytJ9SSuyj/TZmAxwAbJk="; }; - vendorSha256 = "sha256-nzPHx+c369T4h9KETqMurxZK3LsJAhwBaunkcWIW3Ps="; + vendorHash = "sha256-nzPHx+c369T4h9KETqMurxZK3LsJAhwBaunkcWIW3Ps="; postPatch = '' substituteInPlace confluencePot.go \ diff --git a/pkgs/servers/dns/ncdns/default.nix b/pkgs/servers/dns/ncdns/default.nix index 85c9dddf16dd..37d4b596d244 100644 --- a/pkgs/servers/dns/ncdns/default.nix +++ b/pkgs/servers/dns/ncdns/default.nix @@ -35,7 +35,7 @@ buildGoModule { src = x509; - vendorSha256 = "sha256-ENtTnDsz5WhRz1kiqnWQ5vyEpZtgi7ZeYvksffgW78k="; + vendorHash = "sha256-ENtTnDsz5WhRz1kiqnWQ5vyEpZtgi7ZeYvksffgW78k="; # Override the goModules fetcher derivation to apply # upstream's patch of the crypto/x509 library. diff --git a/pkgs/servers/echoip/default.nix b/pkgs/servers/echoip/default.nix index 91e0818a9cca..b34b6f1c34f5 100644 --- a/pkgs/servers/echoip/default.nix +++ b/pkgs/servers/echoip/default.nix @@ -15,7 +15,7 @@ buildGoModule { sha256 = "sha256-yN7PIwoIi2SPwwFWnHDoXnwvKohkPPf4kVsNxHLpqCE="; }; - vendorSha256 = "sha256-lXYpkeGpBK+WGHqyLxJz7kS3t7a55q55QQLTqtxzroc="; + vendorHash = "sha256-lXYpkeGpBK+WGHqyLxJz7kS3t7a55q55QQLTqtxzroc="; nativeBuildInputs = [ makeWrapper ]; diff --git a/pkgs/servers/geospatial/mbtileserver/default.nix b/pkgs/servers/geospatial/mbtileserver/default.nix index 03c7d33aefad..ac5c008990eb 100644 --- a/pkgs/servers/geospatial/mbtileserver/default.nix +++ b/pkgs/servers/geospatial/mbtileserver/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-HGzgqUH9OxwjfYR9I9JzcP11+SB8A3hC/3Uk1dOCq+k="; }; - vendorSha256 = "sha256-vuNOOPVGUkmKJ477N20DvhJTcMIW1lNmrgJLeMpNImM="; + vendorHash = "sha256-vuNOOPVGUkmKJ477N20DvhJTcMIW1lNmrgJLeMpNImM="; meta = with lib; { description = "A simple Go-based server for map tiles stored in mbtiles format"; diff --git a/pkgs/servers/go-autoconfig/default.nix b/pkgs/servers/go-autoconfig/default.nix index 4b0b2757b59a..73a809613c9d 100644 --- a/pkgs/servers/go-autoconfig/default.nix +++ b/pkgs/servers/go-autoconfig/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-Rbg6Ghp5NdcLSLSIhwwFFMKmZPWsboDyHCG6ePqSSZA="; }; - vendorSha256 = "sha256-pI2iucrt7XLLZNOz364kOEulXxPdvJp92OewqnkQEO4="; + vendorHash = "sha256-pI2iucrt7XLLZNOz364kOEulXxPdvJp92OewqnkQEO4="; postInstall = '' cp -r templates $out/ diff --git a/pkgs/servers/go-cqhttp/default.nix b/pkgs/servers/go-cqhttp/default.nix index bf9c5ca07801..ac2711d15672 100644 --- a/pkgs/servers/go-cqhttp/default.nix +++ b/pkgs/servers/go-cqhttp/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { hash = "sha256-/nmPiB2BHltguAJFHCvtS3oh/BttEH75GhgSa25cI3s="; }; - vendorSha256 = "sha256-Oqig/qtdGFO2/t7vvkApqdNhjNnYzEavNpyneAMa10k="; + vendorHash = "sha256-Oqig/qtdGFO2/t7vvkApqdNhjNnYzEavNpyneAMa10k="; meta = with lib; { description = "The Golang implementation of OneBot based on Mirai and MiraiGo"; diff --git a/pkgs/servers/gonic/default.nix b/pkgs/servers/gonic/default.nix index 34f8db9e43c3..706e529879fb 100644 --- a/pkgs/servers/gonic/default.nix +++ b/pkgs/servers/gonic/default.nix @@ -23,7 +23,7 @@ buildGoModule rec { nativeBuildInputs = [ pkg-config ]; buildInputs = [ taglib zlib ]; - vendorSha256 = "sha256-+PUKPqW+ER7mmZXrDIc0cE4opoTxA3po3WXSeZO+Xwo="; + vendorHash = "sha256-+PUKPqW+ER7mmZXrDIc0cE4opoTxA3po3WXSeZO+Xwo="; # TODO(Profpatsch): write a test for transcoding support, # since it is prone to break diff --git a/pkgs/servers/gotty/default.nix b/pkgs/servers/gotty/default.nix index c8ebe0fa1e5b..9e45cce09ed6 100644 --- a/pkgs/servers/gotty/default.nix +++ b/pkgs/servers/gotty/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-VSu0ASnLmRzOGOEKqb/zB43+HxEwMpKLpbdbWY5QrEk="; }; - vendorSha256 = "sha256-XtqIiREtKg0LRnwOg8UyYrWUWJNQbCJUw+nVvaiN3GQ="; + vendorHash = "sha256-XtqIiREtKg0LRnwOg8UyYrWUWJNQbCJUw+nVvaiN3GQ="; # upstream did not update the tests, so they are broken now # https://github.com/sorenisanerd/gotty/issues/13 diff --git a/pkgs/servers/hiraeth/default.nix b/pkgs/servers/hiraeth/default.nix index 784762bfeca3..c7b3af8ceda8 100644 --- a/pkgs/servers/hiraeth/default.nix +++ b/pkgs/servers/hiraeth/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { hash = "sha256-IjHQAJH6Kv65iDkVtJaVeAiMXCEyTTpUTTbW7I2Gxrc="; }; - vendorSha256 = "sha256-tyFAd5S1RUn1AA5DbUGsAuvwtLgOgTE6LUzW3clQE9I="; + vendorHash = "sha256-tyFAd5S1RUn1AA5DbUGsAuvwtLgOgTE6LUzW3clQE9I="; meta = { description = "Share files with an expiration date"; diff --git a/pkgs/servers/http/pomerium/default.nix b/pkgs/servers/http/pomerium/default.nix index 1bbb0f55eb02..d1632c97d027 100644 --- a/pkgs/servers/http/pomerium/default.nix +++ b/pkgs/servers/http/pomerium/default.nix @@ -22,7 +22,7 @@ buildGoModule rec { sha256 = "sha256-EcAzj2VLbBPu5afKZcf2fGBbw2kTOYGgSemD70msrqw="; }; - vendorSha256 = "sha256-xe8as7OY1+tTSqgpwk2Q1jcBnn89latJpMyx4KG7zg8="; + vendorHash = "sha256-xe8as7OY1+tTSqgpwk2Q1jcBnn89latJpMyx4KG7zg8="; ui = mkYarnPackage { inherit version; diff --git a/pkgs/servers/http/ran/default.nix b/pkgs/servers/http/ran/default.nix index 087e23b29873..b5dcb136a31e 100644 --- a/pkgs/servers/http/ran/default.nix +++ b/pkgs/servers/http/ran/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { hash = "sha256-iMvUvzr/jaTNdgHQFuoJNJnnkx2XHIUUlrPWyTlreEw="; }; - vendorSha256 = "sha256-ObroruWWNilHIclqNvbEaa7vwk+1zMzDKbjlVs7Fito="; + vendorHash = "sha256-ObroruWWNilHIclqNvbEaa7vwk+1zMzDKbjlVs7Fito="; CGO_ENABLED = 0; diff --git a/pkgs/servers/interlock/default.nix b/pkgs/servers/interlock/default.nix index 1fbe7444491c..b68a4a3563d0 100644 --- a/pkgs/servers/interlock/default.nix +++ b/pkgs/servers/interlock/default.nix @@ -19,7 +19,7 @@ buildGoModule rec { sha256 = "sha256-YXa4vErt3YnomTKAXCv8yUVhcc0ST47n9waW5E8QZzY="; }; - vendorSha256 = "sha256-OL6I95IpyTIc8wCwD9nWxVUTrmZH6COhsd/YwNTyvN0="; + vendorHash = "sha256-OL6I95IpyTIc8wCwD9nWxVUTrmZH6COhsd/YwNTyvN0="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/servers/kubemq-community/default.nix b/pkgs/servers/kubemq-community/default.nix index b631ce233ad6..929b8460ae27 100644 --- a/pkgs/servers/kubemq-community/default.nix +++ b/pkgs/servers/kubemq-community/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { doCheck = false; # grpc tests are flaky - vendorSha256 = "sha256-L1BxxSI2t0qWXizge+X3BrpGPaSy5Dk81vKuI0N5Ywg="; + vendorHash = "sha256-L1BxxSI2t0qWXizge+X3BrpGPaSy5Dk81vKuI0N5Ywg="; meta = { homepage = "https://github.com/kubemq-io/kubemq-community"; diff --git a/pkgs/servers/lenpaste/default.nix b/pkgs/servers/lenpaste/default.nix index bb9bf30899f5..50e950e98a03 100644 --- a/pkgs/servers/lenpaste/default.nix +++ b/pkgs/servers/lenpaste/default.nix @@ -12,7 +12,7 @@ buildGoModule rec { sha256 = "sha256-d+FjfEbInlxUllWIoVLwQRdRWjxBLTpNHYn+oYU3fBc="; }; - vendorSha256 = "sha256-PL0dysBn1+1BpZWFW/EUFJtqkabt+XN00YkAz8Yf2LQ="; + vendorHash = "sha256-PL0dysBn1+1BpZWFW/EUFJtqkabt+XN00YkAz8Yf2LQ="; ldflags = [ "-w" diff --git a/pkgs/servers/livepeer/default.nix b/pkgs/servers/livepeer/default.nix index 046ad481457f..b68705e34e16 100644 --- a/pkgs/servers/livepeer/default.nix +++ b/pkgs/servers/livepeer/default.nix @@ -7,7 +7,7 @@ buildGoModule rec { version = "0.5.20"; proxyVendor = true; - vendorSha256 = "sha256-aRZoAEnRai8i5H08ReW8lEFlbmarYxU0lBRhR/Llw+M="; + vendorHash = "sha256-aRZoAEnRai8i5H08ReW8lEFlbmarYxU0lBRhR/Llw+M="; src = fetchFromGitHub { owner = "livepeer"; diff --git a/pkgs/servers/maddy/default.nix b/pkgs/servers/maddy/default.nix index e48154bf02ea..b85fcdf274fc 100644 --- a/pkgs/servers/maddy/default.nix +++ b/pkgs/servers/maddy/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-EMw07yTFP0aBSuGDWivB8amuxWLFHhYV6J9faTEW5z4="; }; - vendorSha256 = "sha256-LyfkETZPkhJKN8CEivNp7Se4IBpzyAtmCM1xil4n2po="; + vendorHash = "sha256-LyfkETZPkhJKN8CEivNp7Se4IBpzyAtmCM1xil4n2po="; tags = [ "libpam" ]; diff --git a/pkgs/servers/mail/listmonk/default.nix b/pkgs/servers/mail/listmonk/default.nix index 2d660e3cdbfb..24f97afa348d 100644 --- a/pkgs/servers/mail/listmonk/default.nix +++ b/pkgs/servers/mail/listmonk/default.nix @@ -19,7 +19,7 @@ buildGoModule rec { }) ]; - vendorSha256 = "sha256-0sgC1+ueZTUCP+7JwI/OKLktfMHQq959GEk1mC0TQgE="; + vendorHash = "sha256-0sgC1+ueZTUCP+7JwI/OKLktfMHQq959GEk1mC0TQgE="; nativeBuildInputs = [ stuffbin diff --git a/pkgs/servers/matrix-corporal/default.nix b/pkgs/servers/matrix-corporal/default.nix index 6451352af76e..8ad2db532e7e 100644 --- a/pkgs/servers/matrix-corporal/default.nix +++ b/pkgs/servers/matrix-corporal/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { "-s" "-w" "-X main.GitCommit=${version}" "-X main.GitBranch=${version}" "-X main.GitState=nixpkgs" "-X main.GitSummary=${version}" "-X main.Version=${version}" ]; - vendorSha256 = "sha256-sC9JA6VRmHGuO3anaZW2Ih5QnRrUom9IIOE7yi3TTG8="; + vendorHash = "sha256-sC9JA6VRmHGuO3anaZW2Ih5QnRrUom9IIOE7yi3TTG8="; meta = with lib; { homepage = "https://github.com/devture/matrix-corporal"; diff --git a/pkgs/servers/mautrix-discord/default.nix b/pkgs/servers/mautrix-discord/default.nix index bad985e818c6..f089cb66956e 100644 --- a/pkgs/servers/mautrix-discord/default.nix +++ b/pkgs/servers/mautrix-discord/default.nix @@ -18,7 +18,7 @@ buildGoModule rec { hash = "sha256-rs7wWlQMc79Vls+cqPPo+lRzYAGye4WcKKz+9EXlEBo="; }; - vendorSha256 = "sha256-ZI1+Tfru2OfnqLnaaiDL08OtSmbMBiRDvkL39+jhhmI="; + vendorHash = "sha256-ZI1+Tfru2OfnqLnaaiDL08OtSmbMBiRDvkL39+jhhmI="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/servers/mautrix-whatsapp/default.nix b/pkgs/servers/mautrix-whatsapp/default.nix index 480e7eac8bdd..3f3de2dc2f16 100644 --- a/pkgs/servers/mautrix-whatsapp/default.nix +++ b/pkgs/servers/mautrix-whatsapp/default.nix @@ -13,7 +13,7 @@ buildGoModule rec { buildInputs = [ olm ]; - vendorSha256 = "sha256-5S5uq7CRixw6PvtE4xz+AWfS+VsKE4+JVZjfyXmvbsM="; + vendorHash = "sha256-5S5uq7CRixw6PvtE4xz+AWfS+VsKE4+JVZjfyXmvbsM="; doCheck = false; diff --git a/pkgs/servers/minio/legacy_fs.nix b/pkgs/servers/minio/legacy_fs.nix index b1a1499767d1..170001b3ae6e 100644 --- a/pkgs/servers/minio/legacy_fs.nix +++ b/pkgs/servers/minio/legacy_fs.nix @@ -24,7 +24,7 @@ buildGoModule rec { sha256 = "sha256-sABNzhyfBNU5pWyE/VWHUzuSyKsx0glj01ectJPakV8="; }; - vendorSha256 = "sha256-wB3UiuptT6D0CIUlHC1d5k0rjIxNeh5yAWOmYpyLGmA="; + vendorHash = "sha256-wB3UiuptT6D0CIUlHC1d5k0rjIxNeh5yAWOmYpyLGmA="; doCheck = false; diff --git a/pkgs/servers/misc/podgrab/default.nix b/pkgs/servers/misc/podgrab/default.nix index a5fd230d48fc..225421b973d6 100644 --- a/pkgs/servers/misc/podgrab/default.nix +++ b/pkgs/servers/misc/podgrab/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-vhxIm20ZUi+RusrAsSY54tv/D570/oMO5qLz9dNqgqo="; }; - vendorSha256 = "sha256-xY9xNuJhkWPgtqA/FBVIp7GuWOv+3nrz6l3vaZVLlIE="; + vendorHash = "sha256-xY9xNuJhkWPgtqA/FBVIp7GuWOv+3nrz6l3vaZVLlIE="; postInstall = '' mkdir -p $out/share/ diff --git a/pkgs/servers/monitoring/prometheus/apcupsd-exporter.nix b/pkgs/servers/monitoring/prometheus/apcupsd-exporter.nix index c2f903228503..5bb98203fa2d 100644 --- a/pkgs/servers/monitoring/prometheus/apcupsd-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/apcupsd-exporter.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-c0LsUqpJbmWQmbmSGdEy7Bbk20my6iWNLeqtU5BjYlw="; }; - vendorSha256 = "sha256-bvLwHLviIAGmxYY1O0wFDWAMginEUklicrbjIbbPuUw="; + vendorHash = "sha256-bvLwHLviIAGmxYY1O0wFDWAMginEUklicrbjIbbPuUw="; passthru.tests = { inherit (nixosTests.prometheus-exporters) apcupsd; }; diff --git a/pkgs/servers/monitoring/prometheus/blackbox-exporter.nix b/pkgs/servers/monitoring/prometheus/blackbox-exporter.nix index 39f37ae58e1d..8025cffca843 100644 --- a/pkgs/servers/monitoring/prometheus/blackbox-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/blackbox-exporter.nix @@ -12,7 +12,7 @@ buildGoModule rec { sha256 = "sha256-eoXSBliHadRGPT6+K75p2tEjKHKXmLz4svE59yQAEuM="; }; - vendorSha256 = "sha256-yhgmJaWdYR5w5A8MVnHQS1yF6sTIMd1TOiesV4mc0Gs="; + vendorHash = "sha256-yhgmJaWdYR5w5A8MVnHQS1yF6sTIMd1TOiesV4mc0Gs="; # dns-lookup is performed for the tests doCheck = false; diff --git a/pkgs/servers/monitoring/prometheus/cloudflare-exporter.nix b/pkgs/servers/monitoring/prometheus/cloudflare-exporter.nix index 860100a6ac47..6d15188aaebe 100644 --- a/pkgs/servers/monitoring/prometheus/cloudflare-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/cloudflare-exporter.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-A7JnHx9yipTwv63287BqmGrJ3yQ21NhB1z7rrHe6Ok8="; }; - vendorSha256 = "sha256-B/+UTkoGAoJLMr+zdXXSC2CWGHx+Iu5E2qp4AA/nmHM="; + vendorHash = "sha256-B/+UTkoGAoJLMr+zdXXSC2CWGHx+Iu5E2qp4AA/nmHM="; meta = with lib; { description = "Prometheus Cloudflare Exporter"; diff --git a/pkgs/servers/monitoring/prometheus/flow-exporter.nix b/pkgs/servers/monitoring/prometheus/flow-exporter.nix index c4b9f06fdde5..1b9f05dae3e2 100644 --- a/pkgs/servers/monitoring/prometheus/flow-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/flow-exporter.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-6FqupoYWRvex7XhM7ly8f7ICnuS9JvCRIVEBIJe+64k="; }; - vendorSha256 = "sha256-2raOUOPiMUMydIsfSsnwUAAiM7WyMio1NgL1EoADr2s="; + vendorHash = "sha256-2raOUOPiMUMydIsfSsnwUAAiM7WyMio1NgL1EoADr2s="; meta = with lib; { description = "Export network flows from kafka to Prometheus"; diff --git a/pkgs/servers/monitoring/prometheus/junos-czerwonk-exporter.nix b/pkgs/servers/monitoring/prometheus/junos-czerwonk-exporter.nix index ab092e6f02de..035ee933086b 100644 --- a/pkgs/servers/monitoring/prometheus/junos-czerwonk-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/junos-czerwonk-exporter.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-XYISwq6xcVKhXUK6j22pQ5eOfuKNH0uXOEK1MUzSq90="; }; - vendorSha256 = "sha256-IV0FZb1rjOMLf+vkzz/ZxUBMFD8VRDS51Wdud/yz32E="; + vendorHash = "sha256-IV0FZb1rjOMLf+vkzz/ZxUBMFD8VRDS51Wdud/yz32E="; meta = with lib; { description = "Exporter for metrics from devices running JunOS"; diff --git a/pkgs/servers/monitoring/prometheus/keylight-exporter.nix b/pkgs/servers/monitoring/prometheus/keylight-exporter.nix index 5abc241109b2..d2c816c7433a 100644 --- a/pkgs/servers/monitoring/prometheus/keylight-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/keylight-exporter.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-yI1mmEb5SP2lbP37CpPxYITJL/nvd/mIwxB0RIQRe4I="; }; - vendorSha256 = "sha256-0QSsGgokErRNIHQIjZQn5t1dvc306uZck8uLSgjcrck="; + vendorHash = "sha256-0QSsGgokErRNIHQIjZQn5t1dvc306uZck8uLSgjcrck="; passthru.tests = { inherit (nixosTests.prometheus-exporters) keylight; }; diff --git a/pkgs/servers/monitoring/prometheus/modemmanager-exporter.nix b/pkgs/servers/monitoring/prometheus/modemmanager-exporter.nix index aacf991faa00..271be41aee97 100644 --- a/pkgs/servers/monitoring/prometheus/modemmanager-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/modemmanager-exporter.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-wQATmTjYsm1J2DicPryoa/jVpbLjXz+1TTQUH5yGV6w="; }; - vendorSha256 = "sha256-wGCRpFnt9bxc5Ygg6H1kI9sXB4mVFBdLeaahAFtvNbg="; + vendorHash = "sha256-wGCRpFnt9bxc5Ygg6H1kI9sXB4mVFBdLeaahAFtvNbg="; passthru.tests = { inherit (nixosTests.prometheus-exporters) modemmanager; }; diff --git a/pkgs/servers/monitoring/prometheus/nginx-exporter.nix b/pkgs/servers/monitoring/prometheus/nginx-exporter.nix index 1b5d81e03623..010481134941 100644 --- a/pkgs/servers/monitoring/prometheus/nginx-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/nginx-exporter.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-glKjScJoJnFEm7Z9LAVF51haeyHB3wQ946U8RzJXs3k="; }; - vendorSha256 = "sha256-YyMySHnrjBHm3hRNJDwWBs86Ih4S5DONYuwlQ3FBjkA="; + vendorHash = "sha256-YyMySHnrjBHm3hRNJDwWBs86Ih4S5DONYuwlQ3FBjkA="; ldflags = [ "-s" "-w" "-X main.version=${version}" ]; diff --git a/pkgs/servers/monitoring/prometheus/postfix-exporter.nix b/pkgs/servers/monitoring/prometheus/postfix-exporter.nix index a34695452dc8..90439c9091fc 100644 --- a/pkgs/servers/monitoring/prometheus/postfix-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/postfix-exporter.nix @@ -18,7 +18,7 @@ buildGoModule rec { sha256 = "sha256-63ze51Qbjm+3CV1OFGFa9cS4ucZ+gMKaJyBF2b//CfM="; }; - vendorSha256 = "sha256-a4Lk4wh4mvXEjLgFksZIVVtbp+zTUyjtLVuk7vuot2k="; + vendorHash = "sha256-a4Lk4wh4mvXEjLgFksZIVVtbp+zTUyjtLVuk7vuot2k="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/servers/monitoring/prometheus/process-exporter.nix b/pkgs/servers/monitoring/prometheus/process-exporter.nix index 135551db5660..684d624592f1 100644 --- a/pkgs/servers/monitoring/prometheus/process-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/process-exporter.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-TAgMA9IV3i8dpgOBDmnlt4iyGlmWN5Nj3BexXb5vzlc="; }; - vendorSha256 = "sha256-LAEnXJ3qShfCGjtsYAGyW5x/TTFQxQxXM0hebJrqiW4="; + vendorHash = "sha256-LAEnXJ3qShfCGjtsYAGyW5x/TTFQxQxXM0hebJrqiW4="; postPatch = '' substituteInPlace proc/read_test.go --replace /bin/cat cat diff --git a/pkgs/servers/monitoring/prometheus/promscale/default.nix b/pkgs/servers/monitoring/prometheus/promscale/default.nix index 42c624c30010..d4a67bc83501 100644 --- a/pkgs/servers/monitoring/prometheus/promscale/default.nix +++ b/pkgs/servers/monitoring/prometheus/promscale/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { sha256 = "sha256-JizUI9XRzOEHF1kAblYQRYB11z9KWX7od3lPiRN+JNI="; }; - vendorSha256 = "sha256-lnyKsipr/f9W9LWLb2lizKGLvIbS3XnSlOH1u1B87OY="; + vendorHash = "sha256-lnyKsipr/f9W9LWLb2lizKGLvIbS3XnSlOH1u1B87OY="; ldflags = [ "-s" diff --git a/pkgs/servers/monitoring/prometheus/shelly-exporter.nix b/pkgs/servers/monitoring/prometheus/shelly-exporter.nix index ee8002e66140..106e76b62460 100644 --- a/pkgs/servers/monitoring/prometheus/shelly-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/shelly-exporter.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-L0TuBDq5eEahQvzqd1WuvmXuQbbblCM+Nvj15IybnVo="; }; - vendorSha256 = "sha256-BCrge2xLT4b4wpYA+zcsH64a/nfV8+HeZF7L49p2gEw="; + vendorHash = "sha256-BCrge2xLT4b4wpYA+zcsH64a/nfV8+HeZF7L49p2gEw="; passthru.tests = { inherit (nixosTests.prometheus-exporters) shelly; }; diff --git a/pkgs/servers/monitoring/prometheus/systemd-exporter.nix b/pkgs/servers/monitoring/prometheus/systemd-exporter.nix index e9aff3c75757..e0f93332547e 100644 --- a/pkgs/servers/monitoring/prometheus/systemd-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/systemd-exporter.nix @@ -4,7 +4,7 @@ buildGoModule rec { pname = "systemd_exporter"; version = "0.5.0"; - vendorSha256 = "sha256-XkwBhj2M1poirPkWzS71NbRTshc8dTKwaHoDfFxpykU="; + vendorHash = "sha256-XkwBhj2M1poirPkWzS71NbRTshc8dTKwaHoDfFxpykU="; src = fetchFromGitHub { owner = "povilasv"; diff --git a/pkgs/servers/monitoring/prometheus/v2ray-exporter.nix b/pkgs/servers/monitoring/prometheus/v2ray-exporter.nix index c8732e85315f..51bf3d8ccac6 100644 --- a/pkgs/servers/monitoring/prometheus/v2ray-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/v2ray-exporter.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "12mzng3cw24fyyh8zjfi26gh853k5blzg3zbxcccnv5lryh2r0yi"; }; - vendorSha256 = "sha256-+jrD+QatTrMaAdbxy5mpCm8lF37XDIy1GFyEiUibA2k="; + vendorHash = "sha256-+jrD+QatTrMaAdbxy5mpCm8lF37XDIy1GFyEiUibA2k="; meta = with lib; { description = "Prometheus exporter for V2Ray daemon"; diff --git a/pkgs/servers/monitoring/zabbix/agent2.nix b/pkgs/servers/monitoring/zabbix/agent2.nix index 0687e0eaf129..718522c8fccf 100644 --- a/pkgs/servers/monitoring/zabbix/agent2.nix +++ b/pkgs/servers/monitoring/zabbix/agent2.nix @@ -1,6 +1,6 @@ { lib, buildGoModule, fetchurl, autoreconfHook, pkg-config, libiconv, openssl, pcre, zlib }: -import ./versions.nix ({ version, sha256, vendorSha256 ? throw "unsupported version ${version} for zabbix-agent2", ... }: +import ./versions.nix ({ version, sha256, vendorHash ? throw "unsupported version ${version} for zabbix-agent2", ... }: buildGoModule { pname = "zabbix-agent2"; inherit version; @@ -12,7 +12,7 @@ import ./versions.nix ({ version, sha256, vendorSha256 ? throw "unsupported vers modRoot = "src/go"; - inherit vendorSha256; + inherit vendorHash; nativeBuildInputs = [ autoreconfHook pkg-config ]; buildInputs = [ libiconv openssl pcre zlib ]; diff --git a/pkgs/servers/monitoring/zabbix/versions.nix b/pkgs/servers/monitoring/zabbix/versions.nix index c36cd1487e70..7a659cbb7c7c 100644 --- a/pkgs/servers/monitoring/zabbix/versions.nix +++ b/pkgs/servers/monitoring/zabbix/versions.nix @@ -2,13 +2,13 @@ generic: { v60 = generic { version = "6.0.14"; sha256 = "sha256-YxrVl12OBxkB/cEvlGR+mV7bTBe6nRi71wLCtZPCzlg="; - vendorSha256 = null; + vendorHash = null; }; v50 = generic { version = "5.0.33"; sha256 = "sha256-VimTMcnYaFXeBW3zkDRGMxmtOFgPBU2ANKXLjgtr0GE="; - vendorSha256 = "sha256-RG6tSQk3dGaoTG/LHsZkayYCHbguSNOOuAFCmpSwElQ="; + vendorHash = "sha256-RG6tSQk3dGaoTG/LHsZkayYCHbguSNOOuAFCmpSwElQ="; }; v40 = generic { diff --git a/pkgs/servers/nosql/ferretdb/default.nix b/pkgs/servers/nosql/ferretdb/default.nix index 444659ea9e4c..a61d03866311 100644 --- a/pkgs/servers/nosql/ferretdb/default.nix +++ b/pkgs/servers/nosql/ferretdb/default.nix @@ -19,7 +19,7 @@ buildGoModule rec { echo nixpkgs > build/version/package.txt ''; - vendorSha256 = "sha256-mzgj5VBggAqCFlLUcNE03B9jFHLKgfTzH6LI9wTe6Io="; + vendorHash = "sha256-mzgj5VBggAqCFlLUcNE03B9jFHLKgfTzH6LI9wTe6Io="; CGO_ENABLED = 0; diff --git a/pkgs/servers/nosql/influxdb/default.nix b/pkgs/servers/nosql/influxdb/default.nix index b63ac095d2a5..180f22684578 100644 --- a/pkgs/servers/nosql/influxdb/default.nix +++ b/pkgs/servers/nosql/influxdb/default.nix @@ -56,7 +56,7 @@ buildGoModule rec { sha256 = "sha256-BMHR9EdYC+8oA0he7emzBRmNnHn15nO/5NqsLcr+R0k="; }; - vendorSha256 = "sha256-AY04cmfg7vbrWR4+LBuCFYqBgQJBXlPpO+2oj0qqjM4="; + vendorHash = "sha256-AY04cmfg7vbrWR4+LBuCFYqBgQJBXlPpO+2oj0qqjM4="; nativeBuildInputs = [ pkg-config ]; diff --git a/pkgs/servers/nosql/influxdb2/default.nix b/pkgs/servers/nosql/influxdb2/default.nix index c103a0f086fc..7013b0cd6806 100644 --- a/pkgs/servers/nosql/influxdb2/default.nix +++ b/pkgs/servers/nosql/influxdb2/default.nix @@ -78,7 +78,7 @@ in buildGoModule { nativeBuildInputs = [ go-bindata pkg-config perl ]; - vendorSha256 = "sha256-5b1WRq3JndkOkKBhMzGZnSyBDY5Lk0UGe/WGHQJp0CQ="; + vendorHash = "sha256-5b1WRq3JndkOkKBhMzGZnSyBDY5Lk0UGe/WGHQJp0CQ="; subPackages = [ "cmd/influxd" "cmd/telemetryd" ]; PKG_CONFIG_PATH = "${flux}/pkgconfig"; diff --git a/pkgs/servers/oauth2-proxy/default.nix b/pkgs/servers/oauth2-proxy/default.nix index 84a54e4c8178..cea8a0e7ce8b 100644 --- a/pkgs/servers/oauth2-proxy/default.nix +++ b/pkgs/servers/oauth2-proxy/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { rev = "v${version}"; }; - vendorSha256 = "sha256-2WUd2RxeOal0lpp/TuGSyfP1ppvG/Vd3bgsSsNO8ejo="; + vendorHash = "sha256-2WUd2RxeOal0lpp/TuGSyfP1ppvG/Vd3bgsSsNO8ejo="; # Taken from https://github.com/oauth2-proxy/oauth2-proxy/blob/master/Makefile ldflags = [ "-X main.VERSION=${version}" ]; diff --git a/pkgs/servers/photoprism/backend.nix b/pkgs/servers/photoprism/backend.nix index 64d6d4300513..688a4283fb0a 100644 --- a/pkgs/servers/photoprism/backend.nix +++ b/pkgs/servers/photoprism/backend.nix @@ -19,7 +19,7 @@ buildGoModule rec { substituteInPlace internal/commands/passwd.go --replace '/bin/stty' "${coreutils}/bin/stty" ''; - vendorSha256 = "sha256-gg/vIekHnoABucYqFDfo8574waN4rP7nkT57U3Gil5I="; + vendorHash = "sha256-gg/vIekHnoABucYqFDfo8574waN4rP7nkT57U3Gil5I="; subPackages = [ "cmd/photoprism" ]; diff --git a/pkgs/servers/rmfakecloud/default.nix b/pkgs/servers/rmfakecloud/default.nix index d444eb3ddf8c..ada0ba0f03cf 100644 --- a/pkgs/servers/rmfakecloud/default.nix +++ b/pkgs/servers/rmfakecloud/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-7lVNbqQv6MNIhHMFbH8VFVIjKiuTCbeVkAKeGprzrkw="; }; - vendorSha256 = "sha256-Pz/TtGjwGHaDSueBEHMtHjyAxYO5V+8jzXCowHcUW/4="; + vendorHash = "sha256-Pz/TtGjwGHaDSueBEHMtHjyAxYO5V+8jzXCowHcUW/4="; ui = callPackage ./webui.nix { inherit version src; }; diff --git a/pkgs/servers/serf/default.nix b/pkgs/servers/serf/default.nix index 0a57054f65f6..56206e7e80f3 100644 --- a/pkgs/servers/serf/default.nix +++ b/pkgs/servers/serf/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-8cWSWRfge5UjNzgA1Qp4AzbgIfGBum/ghHcB8H8MyCE="; }; - vendorSha256 = "sha256-6Kw0Co6vaBNkvVyK64wo9/39YF5UwuJg04EPoYwCP1c="; + vendorHash = "sha256-6Kw0Co6vaBNkvVyK64wo9/39YF5UwuJg04EPoYwCP1c="; subPackages = [ "cmd/serf" ]; diff --git a/pkgs/servers/sql/rqlite/default.nix b/pkgs/servers/sql/rqlite/default.nix index 713072953be2..0eff264210a8 100644 --- a/pkgs/servers/sql/rqlite/default.nix +++ b/pkgs/servers/sql/rqlite/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-WvEnMAz3dKG8xMlQzm7E0TmAgvsrRED50bb4Ved1+4U="; }; - vendorSha256 = "sha256-qirt5g7dcjAnceejrBnfhDpA4LSEj7eOuznSlfUBUgo="; + vendorHash = "sha256-qirt5g7dcjAnceejrBnfhDpA4LSEj7eOuznSlfUBUgo="; subPackages = [ "cmd/rqlite" "cmd/rqlited" "cmd/rqbench" ]; diff --git a/pkgs/servers/swego/default.nix b/pkgs/servers/swego/default.nix index 7ead19f5ceb1..6dcb8d1cad7d 100644 --- a/pkgs/servers/swego/default.nix +++ b/pkgs/servers/swego/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-fS1mrB4379hnnkLMkpKqV2QB680t5T0QEqsvqOp9pzY="; }; - vendorSha256 = "sha256-N4HDngQFNCzQ74W52R0khetN6+J7npvBC/bYZBAgLB4="; + vendorHash = "sha256-N4HDngQFNCzQ74W52R0khetN6+J7npvBC/bYZBAgLB4="; postInstall = '' mv $out/bin/src $out/bin/$pname diff --git a/pkgs/servers/tracing/honeycomb/honeymarker/default.nix b/pkgs/servers/tracing/honeycomb/honeymarker/default.nix index 86da469e3468..9691d08b8710 100644 --- a/pkgs/servers/tracing/honeycomb/honeymarker/default.nix +++ b/pkgs/servers/tracing/honeycomb/honeymarker/default.nix @@ -3,7 +3,7 @@ import ./versions.nix ({version, sha256}: buildGoModule { pname = "honeymarker"; inherit version; - vendorSha256 = "sha256-ZuDobjC/nizZ7G0o/zVTQmDfDjcdBhfPcmkhgwFc7VU="; + vendorHash = "sha256-ZuDobjC/nizZ7G0o/zVTQmDfDjcdBhfPcmkhgwFc7VU="; src = fetchFromGitHub { owner = "honeycombio"; diff --git a/pkgs/servers/tracing/honeycomb/honeytail/default.nix b/pkgs/servers/tracing/honeycomb/honeytail/default.nix index b5c21ed1d94a..846bfbdd68be 100644 --- a/pkgs/servers/tracing/honeycomb/honeytail/default.nix +++ b/pkgs/servers/tracing/honeycomb/honeytail/default.nix @@ -3,7 +3,7 @@ import ./versions.nix ({version, sha256}: buildGoModule { pname = "honeytail"; inherit version; - vendorSha256 = "sha256-LtiiLGLjhbfT49A6Fw5CbSbnmTHMxtcUssr+ayCVrvY="; + vendorHash = "sha256-LtiiLGLjhbfT49A6Fw5CbSbnmTHMxtcUssr+ayCVrvY="; src = fetchFromGitHub { owner = "honeycombio"; diff --git a/pkgs/servers/trezord/default.nix b/pkgs/servers/trezord/default.nix index db4aa9dbcea6..5761f84c29e7 100644 --- a/pkgs/servers/trezord/default.nix +++ b/pkgs/servers/trezord/default.nix @@ -19,7 +19,7 @@ buildGoModule rec { sha256 = "sha256-3I6NOzDMhzRyVSOURl7TjJ1Z0P0RcKrSs5rNaZ0Ho9M="; }; - vendorSha256 = "sha256-wXgAmZEXdM4FcMCQbAs+ydXshCAMu7nl/yVv/3sqaXE="; + vendorHash = "sha256-wXgAmZEXdM4FcMCQbAs+ydXshCAMu7nl/yVv/3sqaXE="; propagatedBuildInputs = lib.optionals stdenv.isLinux [ trezor-udev-rules ] ++ lib.optionals stdenv.isDarwin [ AppKit ]; diff --git a/pkgs/servers/unifiedpush-common-proxies/default.nix b/pkgs/servers/unifiedpush-common-proxies/default.nix index 8e2f81fa4ad3..0302eb6cb6b0 100644 --- a/pkgs/servers/unifiedpush-common-proxies/default.nix +++ b/pkgs/servers/unifiedpush-common-proxies/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-eonKHhaH7mAdW7ouprQivMxKPGFv0s1m/S8jGwid8kM="; }; - vendorSha256 = "sha256-s0uN6PzIaAHLvRb9T07Xvb6mMAuvKHQ4oFJtl5hsvY4="; + vendorHash = "sha256-s0uN6PzIaAHLvRb9T07Xvb6mMAuvKHQ4oFJtl5hsvY4="; meta = with lib; { description = "A set of rewrite proxies and gateways for UnifiedPush"; diff --git a/pkgs/servers/web-apps/morty/default.nix b/pkgs/servers/web-apps/morty/default.nix index b09490850697..2aa6f0d1cf89 100644 --- a/pkgs/servers/web-apps/morty/default.nix +++ b/pkgs/servers/web-apps/morty/default.nix @@ -11,7 +11,7 @@ buildGoModule { sha256 = "sha256-ik2VAPdxllt76UVFt77c1ltxIwFNahAKjn3FuErNFYo="; }; - vendorSha256 = "sha256-3sllcoTDYQBAyAT7e9KeKNrlTEbgnoZc0Vt0ksQByvo="; + vendorHash = "sha256-3sllcoTDYQBAyAT7e9KeKNrlTEbgnoZc0Vt0ksQByvo="; meta = with lib; { description = "Privacy aware web content sanitizer proxy as a service"; diff --git a/pkgs/servers/web-apps/vikunja/api.nix b/pkgs/servers/web-apps/vikunja/api.nix index 76947cdddf34..a38983032fd5 100644 --- a/pkgs/servers/web-apps/vikunja/api.nix +++ b/pkgs/servers/web-apps/vikunja/api.nix @@ -24,7 +24,7 @@ buildGoModule rec { ''; in [ fakeGit mage ]; - vendorSha256 = "sha256-TY6xJnz6phIrybZ2Ix7xwuMzGQ1f0xk0KwgPnaTaKYw="; + vendorHash = "sha256-TY6xJnz6phIrybZ2Ix7xwuMzGQ1f0xk0KwgPnaTaKYw="; # checks need to be disabled because of needed internet for some checks doCheck = false; diff --git a/pkgs/servers/webdav/default.nix b/pkgs/servers/webdav/default.nix index 35744ba6e3d2..f6380337e864 100644 --- a/pkgs/servers/webdav/default.nix +++ b/pkgs/servers/webdav/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-4rgDO1vItmmCRXRiO24MPa9IPzrsfzCWLH6hl6oKkxk="; }; - vendorSha256 = "sha256-az+EasmKitFPWD5JfKaSKZGok/n/dPmIv90RiL750KY="; + vendorHash = "sha256-az+EasmKitFPWD5JfKaSKZGok/n/dPmIv90RiL750KY="; meta = with lib; { description = "Simple WebDAV server"; diff --git a/pkgs/servers/wesher/default.nix b/pkgs/servers/wesher/default.nix index d044654f67e1..5ab8edd17381 100644 --- a/pkgs/servers/wesher/default.nix +++ b/pkgs/servers/wesher/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-EIajvcBhS5G9dJzRgXhnD1QKOAhmzngdyCU4L7itT8U="; }; - vendorSha256 = "sha256-BZzhBC4C0OoAxUEDROkggCQF35C9Z4+0/Jk0ZD8Hz1s="; + vendorHash = "sha256-BZzhBC4C0OoAxUEDROkggCQF35C9Z4+0/Jk0ZD8Hz1s="; ldflags = [ "-s" "-w" "-X main.version=${version}" diff --git a/pkgs/servers/xteve/default.nix b/pkgs/servers/xteve/default.nix index a65d37538972..47302d6e9d49 100644 --- a/pkgs/servers/xteve/default.nix +++ b/pkgs/servers/xteve/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { hash = "sha256-hD4GudSkGZO41nR/CgcMg/SqKjpAO1yJDkfwa8AUges="; }; - vendorSha256 = "sha256-oPkSWpqNozfSFLIFsJ+e2pOL6CcR91YHbqibEVF2aSk="; + vendorHash = "sha256-oPkSWpqNozfSFLIFsJ+e2pOL6CcR91YHbqibEVF2aSk="; meta = with lib; { description = "M3U Proxy for Plex DVR and Emby Live TV"; diff --git a/pkgs/shells/fish/babelfish.nix b/pkgs/shells/fish/babelfish.nix index 948637786221..9af0c2ce9138 100644 --- a/pkgs/shells/fish/babelfish.nix +++ b/pkgs/shells/fish/babelfish.nix @@ -10,7 +10,7 @@ buildGoModule rec { sha256 = "sha256-/rWX77n9wqWxkHG7gVOinCJ6ahuEfbAcGijC1oAxrno="; }; - vendorSha256 = "sha256-HY9ejLfT6gj3vUMSzbNZ4QlpB+liigTtNDBNWCy8X38="; + vendorHash = "sha256-HY9ejLfT6gj3vUMSzbNZ4QlpB+liigTtNDBNWCy8X38="; meta = with lib; { description = "Translate bash scripts to fish"; diff --git a/pkgs/shells/oh/default.nix b/pkgs/shells/oh/default.nix index e9a09c8c2888..10bd86ba0594 100644 --- a/pkgs/shells/oh/default.nix +++ b/pkgs/shells/oh/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-DMxC5fv5ZLDv7gMajC/eyJd2YpO+OXFdvwAPYotnczw="; }; - vendorSha256 = "sha256-f4rqXOu6yXUzNsseSaV9pb8c2KXItYOalB5pfH3Acnc="; + vendorHash = "sha256-f4rqXOu6yXUzNsseSaV9pb8c2KXItYOalB5pfH3Acnc="; meta = with lib; { homepage = "https://github.com/michaelmacinnis/oh"; diff --git a/pkgs/shells/zsh/zsh-history/default.nix b/pkgs/shells/zsh/zsh-history/default.nix index 604d593a0bd4..6693f466216c 100644 --- a/pkgs/shells/zsh/zsh-history/default.nix +++ b/pkgs/shells/zsh/zsh-history/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "13n643ik1zjvpk8h9458yd9ffahhbdnigmbrbmpn7b7g23wqqsi3"; }; - vendorSha256 = "sha256-n5QFN1B2GjbzylFuW9Y4r0+ioIJlfKwcGK8X3ZwKLI8="; + vendorHash = "sha256-n5QFN1B2GjbzylFuW9Y4r0+ioIJlfKwcGK8X3ZwKLI8="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/tools/X11/go-sct/default.nix b/pkgs/tools/X11/go-sct/default.nix index 69ddff23e4a9..d52cd046da9f 100644 --- a/pkgs/tools/X11/go-sct/default.nix +++ b/pkgs/tools/X11/go-sct/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { rm -f geoip/geoip_test.go ''; - vendorSha256 = "sha256-Rx5/oORink2QtRcD+JqbyFroWYhuYmuYDzZ391R4Jsw="; + vendorHash = "sha256-Rx5/oORink2QtRcD+JqbyFroWYhuYmuYDzZ391R4Jsw="; buildInputs = [ xorg.libX11 xorg.libXrandr wayland.dev ]; diff --git a/pkgs/tools/admin/awsls/default.nix b/pkgs/tools/admin/awsls/default.nix index 1b4657b9dbf6..973d1f106227 100644 --- a/pkgs/tools/admin/awsls/default.nix +++ b/pkgs/tools/admin/awsls/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-iy9tohmVUtNXYVfe6pZ+pbbLlcK6Fu1GgzTWMD+3xP0="; }; - vendorSha256 = "sha256-ZyMO+KCqoePF6MqHFt8X4tZR4nBhuSPgJDrX+emM6jc="; + vendorHash = "sha256-ZyMO+KCqoePF6MqHFt8X4tZR4nBhuSPgJDrX+emM6jc="; ldflags = let t = "github.com/jckuester/awsls/internal"; diff --git a/pkgs/tools/admin/awsrm/default.nix b/pkgs/tools/admin/awsrm/default.nix index e01f16267a2e..be29737066be 100644 --- a/pkgs/tools/admin/awsrm/default.nix +++ b/pkgs/tools/admin/awsrm/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-KAujqYDtZbCBRO5WK9b9mxqe84ZllbBoO2tLnDH/bdo="; }; - vendorSha256 = "sha256-CldEAeiFH7gdFNLbIe/oTzs8Pdnde7EqLr7vP7SMDGU="; + vendorHash = "sha256-CldEAeiFH7gdFNLbIe/oTzs8Pdnde7EqLr7vP7SMDGU="; ldflags = let t = "github.com/jckuester/awsrm/internal"; diff --git a/pkgs/tools/admin/awsweeper/default.nix b/pkgs/tools/admin/awsweeper/default.nix index 1b270ad72949..38a5a01b8b21 100644 --- a/pkgs/tools/admin/awsweeper/default.nix +++ b/pkgs/tools/admin/awsweeper/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-5D/4Z8ADlA+4+2EINmP5OfX5exzhfbq2TydPRlJDA6Y="; }; - vendorSha256 = "sha256-jzK56x5mzQkD3tSs6X0Z2Zn1OLXFHgWHz0YLZ3m3NS4="; + vendorHash = "sha256-jzK56x5mzQkD3tSs6X0Z2Zn1OLXFHgWHz0YLZ3m3NS4="; ldflags = [ "-s" "-w" "-X github.com/jckuester/awsweeper/internal.version=${version}" "-X github.com/jckuester/awsweeper/internal.commit=${src.rev}" "-X github.com/jckuester/awsweeper/internal.date=unknown" ]; diff --git a/pkgs/tools/admin/bom/default.nix b/pkgs/tools/admin/bom/default.nix index 4a22212e8c5e..ab574fb4380f 100644 --- a/pkgs/tools/admin/bom/default.nix +++ b/pkgs/tools/admin/bom/default.nix @@ -25,7 +25,7 @@ buildGoModule rec { ''; }; - vendorSha256 = "sha256-+dFHVIE3YFQVgYwEDtUWJAfHSnBZox8qejJtuIMPS2I="; + vendorHash = "sha256-+dFHVIE3YFQVgYwEDtUWJAfHSnBZox8qejJtuIMPS2I="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/tools/admin/certigo/default.nix b/pkgs/tools/admin/certigo/default.nix index 792fed6e35d7..0fcf8bd8a695 100644 --- a/pkgs/tools/admin/certigo/default.nix +++ b/pkgs/tools/admin/certigo/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-+j1NeQJPDwQxXVYnHNmL49Li2IMH+9ehS0HSM3kqyxU="; }; - vendorSha256 = "sha256-G9YpMF4qyL8eJPnai81ihVTDK9E4meKxdpk+rjISnIM="; + vendorHash = "sha256-G9YpMF4qyL8eJPnai81ihVTDK9E4meKxdpk+rjISnIM="; meta = with lib; { description = "A utility to examine and validate certificates in a variety of formats"; diff --git a/pkgs/tools/admin/cf-vault/default.nix b/pkgs/tools/admin/cf-vault/default.nix index 045a861198f5..5823d0cbc788 100644 --- a/pkgs/tools/admin/cf-vault/default.nix +++ b/pkgs/tools/admin/cf-vault/default.nix @@ -10,7 +10,7 @@ buildGoModule rec { sha256 = "sha256-+6+I69LRCoU35lTrM8cZnzJsHB9SIr6OQKaiRFo7aW4="; }; - vendorSha256 = "sha256-oNLGHV0NFYAU1pHQWeCmegonkEtMtGts0uWZWPnLVuY="; + vendorHash = "sha256-oNLGHV0NFYAU1pHQWeCmegonkEtMtGts0uWZWPnLVuY="; meta = with lib; { description = '' diff --git a/pkgs/tools/admin/cw/default.nix b/pkgs/tools/admin/cw/default.nix index 1a1941369419..d60db14bd356 100644 --- a/pkgs/tools/admin/cw/default.nix +++ b/pkgs/tools/admin/cw/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-JsWwvVEr7kSjUy0S6wVcn24Xyo4OHr5/uqmnjw6v+RI="; }; - vendorSha256 = "sha256-8L4q0IAvmNk5GCAC5agNfWFtokIkddO1Dec4m6/sWfg="; + vendorHash = "sha256-8L4q0IAvmNk5GCAC5agNfWFtokIkddO1Dec4m6/sWfg="; meta = with lib; { description = "The best way to tail AWS CloudWatch Logs from your terminal"; diff --git a/pkgs/tools/admin/damon/default.nix b/pkgs/tools/admin/damon/default.nix index 10687bce0908..7ad922d6893d 100644 --- a/pkgs/tools/admin/damon/default.nix +++ b/pkgs/tools/admin/damon/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-vg5PISNqk8N2nn7eABm+/7qzePDbKPkvovdZk2sZYsg="; }; - vendorSha256 = "sha256-/ZZxw6qEUJQUz3J0TxUYJECCcX276r74g0N2tV77+8I="; + vendorHash = "sha256-/ZZxw6qEUJQUz3J0TxUYJECCcX276r74g0N2tV77+8I="; meta = with lib; { homepage = "https://github.com/hashicorp/damon"; diff --git a/pkgs/tools/admin/ejson2env/default.nix b/pkgs/tools/admin/ejson2env/default.nix index 1b28cdcc4fe4..a7d516644c3d 100644 --- a/pkgs/tools/admin/ejson2env/default.nix +++ b/pkgs/tools/admin/ejson2env/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-HcUmFajbOUZ0T5Th6OA9WBtfTz646qLbXx8NVeJsVng="; }; - vendorSha256 = "sha256-agWcD8vFNde1SCdkRovMNPf+1KODxV8wW1mXvE0w/CI="; + vendorHash = "sha256-agWcD8vFNde1SCdkRovMNPf+1KODxV8wW1mXvE0w/CI="; ldflags = [ "-s" diff --git a/pkgs/tools/admin/iamy/default.nix b/pkgs/tools/admin/iamy/default.nix index caaa1cd488f1..583becb9b4ef 100644 --- a/pkgs/tools/admin/iamy/default.nix +++ b/pkgs/tools/admin/iamy/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-oH3ijZaWXI0TdVQN9gzp5ypWzY7OqSxDh7VBoZo42Cs="; }; - vendorSha256 = "sha256-/IUYM3pTvcHXw8t5MW6JUEWdxegFuQC8zkiySp8VEgE="; + vendorHash = "sha256-/IUYM3pTvcHXw8t5MW6JUEWdxegFuQC8zkiySp8VEgE="; ldflags = [ "-X main.Version=v${version}" "-s" "-w" diff --git a/pkgs/tools/admin/ossutil/default.nix b/pkgs/tools/admin/ossutil/default.nix index be5f8f914026..4e4bb79c9956 100644 --- a/pkgs/tools/admin/ossutil/default.nix +++ b/pkgs/tools/admin/ossutil/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { hash = "sha256-J6t8QoyCvbGrUX2AkdqugztchP7Cc0jZsrn1+OB2hVY="; }; - vendorSha256 = "sha256-oxhi27Zt91S2RwidM+BPati/HWuP8FrZs1X2R2Px5hI="; + vendorHash = "sha256-oxhi27Zt91S2RwidM+BPati/HWuP8FrZs1X2R2Px5hI="; # don't run tests as they require secret access keys that only travis has doCheck = false; diff --git a/pkgs/tools/admin/ssmsh/default.nix b/pkgs/tools/admin/ssmsh/default.nix index 0d55ca6d22bd..4a059e0108fe 100644 --- a/pkgs/tools/admin/ssmsh/default.nix +++ b/pkgs/tools/admin/ssmsh/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-GpN+yicgFIHOaMeJJcRn55f6fQbFX12vSV089/cMsqc="; }; - vendorSha256 = "sha256-17fmdsfOrOaySPsXofLzz0+vmiemg9MbnWhRoZ67EuQ="; + vendorHash = "sha256-17fmdsfOrOaySPsXofLzz0+vmiemg9MbnWhRoZ67EuQ="; doCheck = true; diff --git a/pkgs/tools/audio/unflac/default.nix b/pkgs/tools/audio/unflac/default.nix index aa12246813d3..9fc44469fec9 100644 --- a/pkgs/tools/audio/unflac/default.nix +++ b/pkgs/tools/audio/unflac/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { sha256 = "sha256-gDgmEEOvsudSYdLUodTuE50+2hZpMqlnaVGanv/rg+U="; }; - vendorSha256 = "sha256-X3cMhzaf1t+x7D8BVBfQy00rAACDEPmIOezIhKzqOZ8="; + vendorHash = "sha256-X3cMhzaf1t+x7D8BVBfQy00rAACDEPmIOezIhKzqOZ8="; nativeBuildInputs = [ makeWrapper ]; postFixup = '' diff --git a/pkgs/tools/backup/diskrsync/default.nix b/pkgs/tools/backup/diskrsync/default.nix index 4a5c128d1683..9154451a2441 100644 --- a/pkgs/tools/backup/diskrsync/default.nix +++ b/pkgs/tools/backup/diskrsync/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-hM70WD+M3jwze0IG84WTFf1caOUk2s9DQ7pR+KNIt1M="; }; - vendorSha256 = "sha256-lJaM/sC5/qmmo7Zu7nGR6ZdXa1qw4SuVxawQ+d/m+Aw="; + vendorHash = "sha256-lJaM/sC5/qmmo7Zu7nGR6ZdXa1qw4SuVxawQ+d/m+Aw="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/tools/backup/duplicacy/default.nix b/pkgs/tools/backup/duplicacy/default.nix index 1b7cdf3d0d30..99bc32455867 100644 --- a/pkgs/tools/backup/duplicacy/default.nix +++ b/pkgs/tools/backup/duplicacy/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-PYUfECxtUG2WuLmYLtE3Ugcr8GeQMQwQa4uFzcl1RoY="; }; - vendorSha256 = "sha256-90NWpMEUlPo5+G7DnqFrZyTlAYDAFfZrsctNTaWVjX4="; + vendorHash = "sha256-90NWpMEUlPo5+G7DnqFrZyTlAYDAFfZrsctNTaWVjX4="; doCheck = false; diff --git a/pkgs/tools/backup/gamerbackup/default.nix b/pkgs/tools/backup/gamerbackup/default.nix index 3ed1df9058cf..856da421c55b 100644 --- a/pkgs/tools/backup/gamerbackup/default.nix +++ b/pkgs/tools/backup/gamerbackup/default.nix @@ -11,7 +11,7 @@ buildGoModule { sha256 = "sha256-YRrD2gW+gzxD2JwadCbF/SBSsHeeGPsa8kKZHHAytVo="; }; - vendorSha256 = "sha256-H3Zf4VNJVX9C3GTeqU4YhNqCIQz1R55MfhrygDgJTxc="; + vendorHash = "sha256-H3Zf4VNJVX9C3GTeqU4YhNqCIQz1R55MfhrygDgJTxc="; nativeBuildInputs = [ makeWrapper ]; diff --git a/pkgs/tools/backup/kopia/default.nix b/pkgs/tools/backup/kopia/default.nix index 96708bfb6e65..ffdfd8acb6c6 100644 --- a/pkgs/tools/backup/kopia/default.nix +++ b/pkgs/tools/backup/kopia/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-wQZzFrrxLzJ16TOrhxBlUuz+eCdqW/PmHUTuJP1Wy9Y="; }; - vendorSha256 = "sha256-OeDgaO125y8eCQlm9Lv5RZlb1fNLTCplEQbpJ2KMVms="; + vendorHash = "sha256-OeDgaO125y8eCQlm9Lv5RZlb1fNLTCplEQbpJ2KMVms="; doCheck = false; diff --git a/pkgs/tools/backup/wal-g/default.nix b/pkgs/tools/backup/wal-g/default.nix index 26fb1dad879e..6300dba6bff8 100644 --- a/pkgs/tools/backup/wal-g/default.nix +++ b/pkgs/tools/backup/wal-g/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-5mwA55aAHwEFabGZ6c3pi8NLcYofvoe4bb/cFj7NWok="; }; - vendorSha256 = "sha256-BbQuY6r30AkxlCZjY8JizaOrqEBdv7rIQet9KQwYB/g="; + vendorHash = "sha256-BbQuY6r30AkxlCZjY8JizaOrqEBdv7rIQet9KQwYB/g="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/tools/backup/zfsbackup/default.nix b/pkgs/tools/backup/zfsbackup/default.nix index 5a37dfc1f6dc..d0f8972434a8 100644 --- a/pkgs/tools/backup/zfsbackup/default.nix +++ b/pkgs/tools/backup/zfsbackup/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-ZJ7gtT4AdMLEs2+hJa2Sia0hSoQd3CftdqRsH/oJxd8="; }; - vendorSha256 = "sha256-aYAficUFYYhZygfQZyczP49CeouAKKZJW8IFlkFh9lI="; + vendorHash = "sha256-aYAficUFYYhZygfQZyczP49CeouAKKZJW8IFlkFh9lI="; ldflags = [ "-w" "-s" ]; diff --git a/pkgs/tools/backup/zrepl/default.nix b/pkgs/tools/backup/zrepl/default.nix index f2a26bbeb8f1..6e8904778d6a 100644 --- a/pkgs/tools/backup/zrepl/default.nix +++ b/pkgs/tools/backup/zrepl/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { sha256 = "sha256-XazwuaAzgTuKITF1mYihsNwkIKi5fvZrCvlCDKwxj4U="; }; - vendorSha256 = "sha256-75fGejR7eiECsm1j3yIU1lAWaW9GrorrVnv8JEzkAtU="; + vendorHash = "sha256-75fGejR7eiECsm1j3yIU1lAWaW9GrorrVnv8JEzkAtU="; subPackages = [ "." ]; diff --git a/pkgs/tools/filesystems/fwanalyzer/default.nix b/pkgs/tools/filesystems/fwanalyzer/default.nix index 73e06d6940a3..a0b1d2df1435 100644 --- a/pkgs/tools/filesystems/fwanalyzer/default.nix +++ b/pkgs/tools/filesystems/fwanalyzer/default.nix @@ -17,7 +17,7 @@ buildGoModule rec { sha256 = "sha256-fcqtyfpxdjD+1GsYl05RSJaFDoLSYQDdWcQV6a+vNGA="; }; - vendorSha256 = "sha256-nLr12VQogr4nV9E/DJu2XTcgEi7GsOdOn/ZqVk7HS7I="; + vendorHash = "sha256-nLr12VQogr4nV9E/DJu2XTcgEi7GsOdOn/ZqVk7HS7I="; subPackages = [ "cmd/${pname}" ]; diff --git a/pkgs/tools/filesystems/goofys/default.nix b/pkgs/tools/filesystems/goofys/default.nix index 207fcfc9c74f..0c250eaeb4f4 100644 --- a/pkgs/tools/filesystems/goofys/default.nix +++ b/pkgs/tools/filesystems/goofys/default.nix @@ -16,7 +16,7 @@ buildGoModule { sha256 = "sha256-6yVMNSwwPZlADXuPBDRlgoz4Stuz2pgv6r6+y2/C8XY="; }; - vendorSha256 = "sha256-shFld293pdmVcnu3p0NoBmPGLJddZd4O/gJ8klgdlQ8="; + vendorHash = "sha256-shFld293pdmVcnu3p0NoBmPGLJddZd4O/gJ8klgdlQ8="; subPackages = [ "." ]; diff --git a/pkgs/tools/filesystems/upspin/default.nix b/pkgs/tools/filesystems/upspin/default.nix index eff560d8439e..6ef087ff5387 100644 --- a/pkgs/tools/filesystems/upspin/default.nix +++ b/pkgs/tools/filesystems/upspin/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-1pFDJSCUDKn4CTAg3wdB8oYPyrmd8B62zNl3m5YAqVM="; }; - vendorSha256 = "sha256-Jl++FvKyqz5WFa/Eoly+UnFsoC9Qwdaizhkq6LyJ+XQ="; + vendorHash = "sha256-Jl++FvKyqz5WFa/Eoly+UnFsoC9Qwdaizhkq6LyJ+XQ="; # No upstream tests doCheck = false; diff --git a/pkgs/tools/games/minecraft/minecraft-server-hibernation/default.nix b/pkgs/tools/games/minecraft/minecraft-server-hibernation/default.nix index 14bb2cd27d53..4e39edd83efa 100644 --- a/pkgs/tools/games/minecraft/minecraft-server-hibernation/default.nix +++ b/pkgs/tools/games/minecraft/minecraft-server-hibernation/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-hflPVO+gqHr0jDrhWzd7t/E6WsswiMKMHCkTUK4E05k="; }; - vendorSha256 = "sha256-W6P7wz1FGL6Os1zmmqWJ7/sO8zizfnwg+TMiFWGHIOM="; + vendorHash = "sha256-W6P7wz1FGL6Os1zmmqWJ7/sO8zizfnwg+TMiFWGHIOM="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/tools/games/minecraft/packwiz/default.nix b/pkgs/tools/games/minecraft/packwiz/default.nix index 59133ab46ef5..15c103f7396c 100644 --- a/pkgs/tools/games/minecraft/packwiz/default.nix +++ b/pkgs/tools/games/minecraft/packwiz/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-f6560XrnriKNq89aOxfJjN4mDdtYzMSOUlRWwItLuHk="; }; - vendorSha256 = "sha256-yL5pWbVqf6mEpgYsItLnv8nwSmoMP+SE0rX/s7u2vCg="; + vendorHash = "sha256-yL5pWbVqf6mEpgYsItLnv8nwSmoMP+SE0rX/s7u2vCg="; nativeBuildInputs = [ installShellFiles diff --git a/pkgs/tools/misc/aptly/default.nix b/pkgs/tools/misc/aptly/default.nix index 7af1612acdd3..f6dcd8e80aa1 100644 --- a/pkgs/tools/misc/aptly/default.nix +++ b/pkgs/tools/misc/aptly/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-LqGOLXXaGfQfoj2r+aY9SdOKUDI9+22EsHKBhHMidyk="; }; - vendorSha256 = "sha256-6l3OFKFTtFWT68Ylav6woczBlMhD75C9ZoQ6OeLz0Cs="; + vendorHash = "sha256-6l3OFKFTtFWT68Ylav6woczBlMhD75C9ZoQ6OeLz0Cs="; nativeBuildInputs = [ installShellFiles makeWrapper ]; diff --git a/pkgs/tools/misc/bunnyfetch/default.nix b/pkgs/tools/misc/bunnyfetch/default.nix index d03fea2cefd2..e14fe8244313 100644 --- a/pkgs/tools/misc/bunnyfetch/default.nix +++ b/pkgs/tools/misc/bunnyfetch/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-6MnjCXc9/8twdf8PHKsVJY1yWYwUf5R01vtQFJbyy7M="; }; - vendorSha256 = "sha256-w+O1dU8t7uNvdlFnYhCdJCDixpWWZAnj9GrtsCbu9SM="; + vendorHash = "sha256-w+O1dU8t7uNvdlFnYhCdJCDixpWWZAnj9GrtsCbu9SM="; # No upstream tests doCheck = false; diff --git a/pkgs/tools/misc/clematis/default.nix b/pkgs/tools/misc/clematis/default.nix index c1997876aee9..ea3c209600ad 100644 --- a/pkgs/tools/misc/clematis/default.nix +++ b/pkgs/tools/misc/clematis/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-TjoXHbY0vUQ2rhwdCJ/s/taRd9/MG0P9HaEw2BOIy/s="; }; - vendorSha256 = "sha256-YKu+7LFUoQwCH//URIswiaqa0rmnWZJvuSn/68G3TUA="; + vendorHash = "sha256-YKu+7LFUoQwCH//URIswiaqa0rmnWZJvuSn/68G3TUA="; meta = with lib; { description = "Discord rich presence for MPRIS music players."; diff --git a/pkgs/tools/misc/direnv/default.nix b/pkgs/tools/misc/direnv/default.nix index 179e719528a4..04b9dd5fad88 100644 --- a/pkgs/tools/misc/direnv/default.nix +++ b/pkgs/tools/misc/direnv/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-TDr2eL7Jft1r2IMm6CToVCEhiNo+Rj1H/Skoe+wx1MM="; }; - vendorSha256 = "sha256-eQaQ77pOYC8q+IA26ArEhHQ0DCU093TbzaYhdV3UydE="; + vendorHash = "sha256-eQaQ77pOYC8q+IA26ArEhHQ0DCU093TbzaYhdV3UydE="; # we have no bash at the moment for windows BASH_PATH = diff --git a/pkgs/tools/misc/docker-ls/default.nix b/pkgs/tools/misc/docker-ls/default.nix index 230887ffd09f..6f6a322cc28f 100644 --- a/pkgs/tools/misc/docker-ls/default.nix +++ b/pkgs/tools/misc/docker-ls/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-4+REt0NH4S367qFsyJncVedUrC4t1zw5o0CLTiQfIz8="; }; - vendorSha256 = "sha256-UulcjQOLEIP++eoYQTEIbCJW51jyE312dMxB8+AKcdU="; + vendorHash = "sha256-UulcjQOLEIP++eoYQTEIbCJW51jyE312dMxB8+AKcdU="; meta = with lib; { description = "Tools for browsing and manipulating docker registries"; diff --git a/pkgs/tools/misc/dsq/default.nix b/pkgs/tools/misc/dsq/default.nix index 8542f97aad74..9d05e567fb10 100644 --- a/pkgs/tools/misc/dsq/default.nix +++ b/pkgs/tools/misc/dsq/default.nix @@ -21,7 +21,7 @@ buildGoModule rec { hash = "sha256-FZBJe+2y4HV3Pgeap4yvD0a8M/j+6pAJEFpoQVVE1ec="; }; - vendorSha256 = "sha256-MbBR+OC1OGhZZGcZqc+Jzmabdc5ZfFEwzqP5YMrj6mY="; + vendorHash = "sha256-MbBR+OC1OGhZZGcZqc+Jzmabdc5ZfFEwzqP5YMrj6mY="; ldflags = [ "-X" "main.Version=${version}" ]; diff --git a/pkgs/tools/misc/duf/default.nix b/pkgs/tools/misc/duf/default.nix index 62c873ccfcc7..dbc50346ca55 100644 --- a/pkgs/tools/misc/duf/default.nix +++ b/pkgs/tools/misc/duf/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-bVuqX88KY+ky+fd1FU9GWP78jQc4fRDk9yRSeIesHyI="; }; - vendorSha256 = "sha256-oihi7E67VQmym9U1gdD802AYxWRrSowhzBiKg0CBDPc="; + vendorHash = "sha256-oihi7E67VQmym9U1gdD802AYxWRrSowhzBiKg0CBDPc="; ldflags = [ "-s" "-w" "-X=main.Version=${version}" ]; diff --git a/pkgs/tools/misc/dwarf2json/default.nix b/pkgs/tools/misc/dwarf2json/default.nix index 57aaf861186d..813c1fb36838 100644 --- a/pkgs/tools/misc/dwarf2json/default.nix +++ b/pkgs/tools/misc/dwarf2json/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-hnS00glAcj78mZp5as63CsEn+dcr+GNEkz8iC3KM0h0="; }; - vendorSha256 = "sha256-tgs0l+sYdAxMHwVTew++keNpDyrHmevpmOBVIiuL+34="; + vendorHash = "sha256-tgs0l+sYdAxMHwVTew++keNpDyrHmevpmOBVIiuL+34="; meta = with lib; { homepage = "https://github.com/volatilityfoundation/dwarf2json"; diff --git a/pkgs/tools/misc/eget/default.nix b/pkgs/tools/misc/eget/default.nix index b4fa3edb1cff..1bf2b7f10110 100644 --- a/pkgs/tools/misc/eget/default.nix +++ b/pkgs/tools/misc/eget/default.nix @@ -19,7 +19,7 @@ buildGoModule rec { sha256 = "sha256-OOqfZ2uS3sYBH9xrlQN1iSNdNE9RGi6qiDXfPgf2aB0="; }; - vendorSha256 = "sha256-A3lZtV0pXh4KxINl413xGbw2Pz7OzvIQiFSRubH428c="; + vendorHash = "sha256-A3lZtV0pXh4KxINl413xGbw2Pz7OzvIQiFSRubH428c="; ldflags = [ "-s" "-w" "-X main.Version=v${version}" ]; diff --git a/pkgs/tools/misc/ets/default.nix b/pkgs/tools/misc/ets/default.nix index cccd0db35e2f..43d26e269392 100644 --- a/pkgs/tools/misc/ets/default.nix +++ b/pkgs/tools/misc/ets/default.nix @@ -17,7 +17,7 @@ buildGoModule rec { sha256 = "sha256-SGCISHkWNFubgKkQYx8Vf5/fknNDfPNYkSuw1mMhZaE="; }) ]; - vendorSha256 = "sha256-+8dXfqOu8XTw2uEx3GAynQSHtzifejZtddr1CdxrupA="; + vendorHash = "sha256-+8dXfqOu8XTw2uEx3GAynQSHtzifejZtddr1CdxrupA="; ldflags = [ "-s" "-w" "-X main.version=v${version}-nixpkgs" ]; diff --git a/pkgs/tools/misc/fsql/default.nix b/pkgs/tools/misc/fsql/default.nix index 7111d7c82306..96ce250499d5 100644 --- a/pkgs/tools/misc/fsql/default.nix +++ b/pkgs/tools/misc/fsql/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-6KqlpFBaAWrlEjkFQhOEic569+eoYVAsnhMrg8AEPV4="; }; - vendorSha256 = "sha256-xuD7/gTssf1Iu1VuIRysjtUjve16gozOq0Wz4w6mIB8="; + vendorHash = "sha256-xuD7/gTssf1Iu1VuIRysjtUjve16gozOq0Wz4w6mIB8="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/tools/misc/gh-eco/default.nix b/pkgs/tools/misc/gh-eco/default.nix index b95232751870..98f84659a40e 100644 --- a/pkgs/tools/misc/gh-eco/default.nix +++ b/pkgs/tools/misc/gh-eco/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-TE1AymNlxjUtkBnBO/VBjYaqLuRyxL75s6sMidKUXTE="; }; - vendorSha256 = "sha256-K85fYV1uP/qSw8GPoG1u6UQo94vQOUo4cd9Ro+UApQ0="; + vendorHash = "sha256-K85fYV1uP/qSw8GPoG1u6UQo94vQOUo4cd9Ro+UApQ0="; ldflags = [ "-s" diff --git a/pkgs/tools/misc/go-ios/default.nix b/pkgs/tools/misc/go-ios/default.nix index d16e023a9eb1..0c926cb289a6 100644 --- a/pkgs/tools/misc/go-ios/default.nix +++ b/pkgs/tools/misc/go-ios/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-pvgdGBLgRHvnGdAyA4Rrexkh5oRzVT7AYgKfLNfSf7M="; }; - vendorSha256 = "sha256-lLpvpT0QVVyy12HmtOQxagT0JNwRO7CcfkGhCpouH8w="; + vendorHash = "sha256-lLpvpT0QVVyy12HmtOQxagT0JNwRO7CcfkGhCpouH8w="; excludedPackages = [ "restapi" diff --git a/pkgs/tools/misc/go.rice/default.nix b/pkgs/tools/misc/go.rice/default.nix index e608ad121cca..3ee268f2a829 100644 --- a/pkgs/tools/misc/go.rice/default.nix +++ b/pkgs/tools/misc/go.rice/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-jO4otde/m52L2NrE88aXRjdGDBNxnbP1Zt+5fEqfNIc="; }; - vendorSha256 = "sha256-VlpdZcqg7yWUADN8oD/IAgAXVdzJeIeymx2Pu/7E21o="; + vendorHash = "sha256-VlpdZcqg7yWUADN8oD/IAgAXVdzJeIeymx2Pu/7E21o="; subPackages = [ "." "rice" ]; diff --git a/pkgs/tools/misc/grit/default.nix b/pkgs/tools/misc/grit/default.nix index 5b3aca5e25ce..0b31627ece27 100644 --- a/pkgs/tools/misc/grit/default.nix +++ b/pkgs/tools/misc/grit/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-c8wBwmXFjpst6UxL5zmTxMR4bhzpHYljQHiJFKiNDms="; }; - vendorSha256 = "sha256-iMMkjJ5dnlr0oSCifBQPWkInQBCp1bh23s+BcKzDNCg="; + vendorHash = "sha256-iMMkjJ5dnlr0oSCifBQPWkInQBCp1bh23s+BcKzDNCg="; meta = with lib; { broken = stdenv.isDarwin; diff --git a/pkgs/tools/misc/kepubify/default.nix b/pkgs/tools/misc/kepubify/default.nix index 0a6888bb3421..1820b3a4dca6 100644 --- a/pkgs/tools/misc/kepubify/default.nix +++ b/pkgs/tools/misc/kepubify/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-H6W+C5twXit7Z9hLIJKAftbnvYDA9HAb9tR6yeQGRKI="; }; - vendorSha256 = "sha256-QOMLwDDvrDQAaK4M4QhBFTGD1CzblkDoA3ZqtCoRHtQ="; + vendorHash = "sha256-QOMLwDDvrDQAaK4M4QhBFTGD1CzblkDoA3ZqtCoRHtQ="; ldflags = [ "-s" "-w" "-X main.version=${version}" ]; diff --git a/pkgs/tools/misc/kt/default.nix b/pkgs/tools/misc/kt/default.nix index 3e9bac0e09e9..af837ee3cebb 100644 --- a/pkgs/tools/misc/kt/default.nix +++ b/pkgs/tools/misc/kt/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-1UGsiMMmAyIQZ62hNIi0uzyX2uNL03EWupIazjznqDc="; }; - vendorSha256 = "sha256-PeNpDro6G78KLN6B2CDhsTKamRTWQyxPJYWuuv6sUyw="; + vendorHash = "sha256-PeNpDro6G78KLN6B2CDhsTKamRTWQyxPJYWuuv6sUyw="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/tools/misc/librespeed-cli/default.nix b/pkgs/tools/misc/librespeed-cli/default.nix index 60fee9b5f153..175deef985e3 100644 --- a/pkgs/tools/misc/librespeed-cli/default.nix +++ b/pkgs/tools/misc/librespeed-cli/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-LFGlKYWUaHi/byoRPD6zsdr0U5r0zWxxRa2NJNB2yb8="; }; - vendorSha256 = "sha256-psZyyySpY06J+ji+9uHUtX7Ks1hzZC3zINszYP75NfQ="; + vendorHash = "sha256-psZyyySpY06J+ji+9uHUtX7Ks1hzZC3zINszYP75NfQ="; # Tests have additional requirements doCheck = false; diff --git a/pkgs/tools/misc/lifecycled/default.nix b/pkgs/tools/misc/lifecycled/default.nix index c2648e41bb20..728424f8d89e 100644 --- a/pkgs/tools/misc/lifecycled/default.nix +++ b/pkgs/tools/misc/lifecycled/default.nix @@ -13,7 +13,7 @@ buildGoModule rec { sha256 = "sha256-zskN2T0+1xZPjppggeGpPFuQ8/AgPNyN77F33rDoghc="; }; - vendorSha256 = "sha256-q5wYKSLHRzL+UGn29kr8+mUupOPR1zohTscbzjMRCS0="; + vendorHash = "sha256-q5wYKSLHRzL+UGn29kr8+mUupOPR1zohTscbzjMRCS0="; postInstall = '' mkdir -p $out/lib/systemd/system diff --git a/pkgs/tools/misc/livedl/default.nix b/pkgs/tools/misc/livedl/default.nix index bbda8b6c8fd8..f5c68be68d60 100644 --- a/pkgs/tools/misc/livedl/default.nix +++ b/pkgs/tools/misc/livedl/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { modRoot = "src"; proxyVendor = true; - vendorSha256 = "sha256-C7lUusq/cWBCnA2wP9fzQglJCXvQyvFG4JY13H0cP6g="; + vendorHash = "sha256-C7lUusq/cWBCnA2wP9fzQglJCXvQyvFG4JY13H0cP6g="; meta = with lib; { description = "Command-line tool to download nicovideo.jp livestreams"; diff --git a/pkgs/tools/misc/lokalise2-cli/default.nix b/pkgs/tools/misc/lokalise2-cli/default.nix index e5e7d4bcdb41..693b65687899 100644 --- a/pkgs/tools/misc/lokalise2-cli/default.nix +++ b/pkgs/tools/misc/lokalise2-cli/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-U8XN7cH64ICVxcjmIWBeelOT3qQlGt6MhOPgUWkCPF0="; }; - vendorSha256 = "sha256-PM3Jjgq6mbM6iVCXRos9UsqqFNaXOqq713GZ2R9tQww="; + vendorHash = "sha256-PM3Jjgq6mbM6iVCXRos9UsqqFNaXOqq713GZ2R9tQww="; doCheck = false; diff --git a/pkgs/tools/misc/mdr/default.nix b/pkgs/tools/misc/mdr/default.nix index c3d5afa9a94e..13af7192cf50 100644 --- a/pkgs/tools/misc/mdr/default.nix +++ b/pkgs/tools/misc/mdr/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-ibM3303pXnseAFP9qFTOzj0G/SxRPX+UeRfbJ+MCABk="; }; - vendorSha256 = "sha256-5jzU4EybEGKoEXCFhnu7z4tFRS9fgf2wJXhkvigRM0E="; + vendorHash = "sha256-5jzU4EybEGKoEXCFhnu7z4tFRS9fgf2wJXhkvigRM0E="; ldflags = [ "-s" diff --git a/pkgs/tools/misc/microplane/default.nix b/pkgs/tools/misc/microplane/default.nix index a44ae344bf59..53d5cc567f09 100644 --- a/pkgs/tools/misc/microplane/default.nix +++ b/pkgs/tools/misc/microplane/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-ZrBkVXRGZp8yGFIBo7sLGvJ8pMQq7Cq0xJiko57z164="; }; - vendorSha256 = "sha256-PqSjSFTVrIsQ065blIxZ9H/ARku6BEcnjboH+0K0G14="; + vendorHash = "sha256-PqSjSFTVrIsQ065blIxZ9H/ARku6BEcnjboH+0K0G14="; ldflags = [ "-s" "-w" "-X main.version=${version}" diff --git a/pkgs/tools/misc/mmake/default.nix b/pkgs/tools/misc/mmake/default.nix index b95033bea24b..acf571f7c5ac 100644 --- a/pkgs/tools/misc/mmake/default.nix +++ b/pkgs/tools/misc/mmake/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-JPsVfLIl06PJ8Nsfu7ogwrttB1G93HTKbZFqUTSV9O8="; }; - vendorSha256 = "sha256-0z+sujzzBl/rtzXbhL4Os+jYfLUuO9PlXshUDxAH9DU="; + vendorHash = "sha256-0z+sujzzBl/rtzXbhL4Os+jYfLUuO9PlXshUDxAH9DU="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/tools/misc/mnc/default.nix b/pkgs/tools/misc/mnc/default.nix index b6ee577d07cd..d84ff6643aec 100644 --- a/pkgs/tools/misc/mnc/default.nix +++ b/pkgs/tools/misc/mnc/default.nix @@ -7,7 +7,7 @@ buildGoModule rec { pname = "mnc"; version = "0.4"; - vendorSha256 = "sha256-H0KmGTWyjZOZLIEWophCwRYPeKLxBC050RI7cMXNbPs="; + vendorHash = "sha256-H0KmGTWyjZOZLIEWophCwRYPeKLxBC050RI7cMXNbPs="; src = fetchFromSourcehut { owner = "~anjan"; diff --git a/pkgs/tools/misc/mynewt-newtmgr/default.nix b/pkgs/tools/misc/mynewt-newtmgr/default.nix index 416645738c2d..1ad1bb7ac1bb 100644 --- a/pkgs/tools/misc/mynewt-newtmgr/default.nix +++ b/pkgs/tools/misc/mynewt-newtmgr/default.nix @@ -17,7 +17,7 @@ buildGoModule rec { sha256 = "sha256-fobaMkYLLK5qclogtClGdOjgTbmuse/72T3APNssYa4="; }; - vendorSha256 = "sha256-+vOZoueoMqlGnopLKc6pCgTmcgI34pxaMNbr6Y+JCfQ="; + vendorHash = "sha256-+vOZoueoMqlGnopLKc6pCgTmcgI34pxaMNbr6Y+JCfQ="; passthru.tests.version = testers.testVersion { package = mynewt-newtmgr; diff --git a/pkgs/tools/misc/notify/default.nix b/pkgs/tools/misc/notify/default.nix index 8c8158174c76..09f1d238fbb1 100644 --- a/pkgs/tools/misc/notify/default.nix +++ b/pkgs/tools/misc/notify/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-CXzxrY8G7Zh5xafuiIY9SsPkrYoSkMt15v2KLZBs0Jo="; }; - vendorSha256 = "sha256-tjaVEmOd/MJnDcS/mhvw95ZZ8giaUDTdDTyAMbjTckM="; + vendorHash = "sha256-tjaVEmOd/MJnDcS/mhvw95ZZ8giaUDTdDTyAMbjTckM="; modRoot = "."; subPackages = [ diff --git a/pkgs/tools/misc/panicparse/default.nix b/pkgs/tools/misc/panicparse/default.nix index 08be475a2300..9c87e1fb87c7 100644 --- a/pkgs/tools/misc/panicparse/default.nix +++ b/pkgs/tools/misc/panicparse/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-Bwvxj9Ifcq2WpicUBK+03fbGuoVAVF2Zmtpy/utUxoo="; }; - vendorSha256 = "sha256-ZHUxzGqsGX1c4mBA4TBO2+WnGDhwAOGi0uYQx+3OgL8="; + vendorHash = "sha256-ZHUxzGqsGX1c4mBA4TBO2+WnGDhwAOGi0uYQx+3OgL8="; subPackages = [ "." ]; diff --git a/pkgs/tools/misc/pcp/default.nix b/pkgs/tools/misc/pcp/default.nix index fa2c64dabb06..eb73e128533e 100644 --- a/pkgs/tools/misc/pcp/default.nix +++ b/pkgs/tools/misc/pcp/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-aZO8VuOiYhOPctFKZ6a2psJB0lKHlPc+NLy2RWDU4JI="; }; - vendorSha256 = "sha256-3bkzBQ950Phg4A9p+IjeUx7Xw7eVmUbeYnQViNjghFk="; + vendorHash = "sha256-3bkzBQ950Phg4A9p+IjeUx7Xw7eVmUbeYnQViNjghFk="; meta = with lib; { description = "Command line peer-to-peer data transfer tool based on libp2p"; diff --git a/pkgs/tools/misc/pgcenter/default.nix b/pkgs/tools/misc/pgcenter/default.nix index ac1c0bd356d2..507beb498952 100644 --- a/pkgs/tools/misc/pgcenter/default.nix +++ b/pkgs/tools/misc/pgcenter/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-xaY01T12/5Peww9scRgfc5yHj7QA8BEwOK5l6OedziY="; }; - vendorSha256 = "sha256-9hYiyZ34atmSL7JvuXyiGU7HR4E6qN7bGZlyU+hP+FU="; + vendorHash = "sha256-9hYiyZ34atmSL7JvuXyiGU7HR4E6qN7bGZlyU+hP+FU="; subPackages = [ "cmd" ]; diff --git a/pkgs/tools/misc/sloth/default.nix b/pkgs/tools/misc/sloth/default.nix index e46991cadfac..c0621419fd37 100644 --- a/pkgs/tools/misc/sloth/default.nix +++ b/pkgs/tools/misc/sloth/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { hash = "sha256-KMVD7uH3Yg9ThnwKKzo6jom0ctFywt2vu7kNdfjiMCs="; }; - vendorSha256 = "sha256-j6qXUQ/Tu3VNQL5xBOHloRn5DH3KG/znCLi1s8RIoL8="; + vendorHash = "sha256-j6qXUQ/Tu3VNQL5xBOHloRn5DH3KG/znCLi1s8RIoL8="; subPackages = [ "cmd/sloth" ]; diff --git a/pkgs/tools/misc/smug/default.nix b/pkgs/tools/misc/smug/default.nix index 11d5c17eb8b0..c620ba67b0cf 100644 --- a/pkgs/tools/misc/smug/default.nix +++ b/pkgs/tools/misc/smug/default.nix @@ -13,7 +13,7 @@ buildGoModule rec { sha256 = "sha256-dQp9Ov8Si9DfziVtX3dXsJg+BNKYOoL9/WwdalQ5TVw="; }; - vendorSha256 = "sha256-vaDUzVRmpmNn8/vUPeR1U5N6T4llFRIk9A1lum8uauU="; + vendorHash = "sha256-vaDUzVRmpmNn8/vUPeR1U5N6T4llFRIk9A1lum8uauU="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/tools/misc/tdfgo/default.nix b/pkgs/tools/misc/tdfgo/default.nix index b575085916f6..91a0345c99f8 100644 --- a/pkgs/tools/misc/tdfgo/default.nix +++ b/pkgs/tools/misc/tdfgo/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-Lr4+bXdVxYbCXKVzE+fjeLD559HuABK6lOLJ0sBBGNY="; }; - vendorSha256 = "sha256-T6PSs5NfXSXvzlq67rIDbzURyA+25df3nMMfufo0fow="; + vendorHash = "sha256-T6PSs5NfXSXvzlq67rIDbzURyA+25df3nMMfufo0fow="; meta = with lib; { description = "TheDraw font parser and console text renderer."; diff --git a/pkgs/tools/misc/tea/default.nix b/pkgs/tools/misc/tea/default.nix index a576e70a3714..13bd0f8f2b3f 100644 --- a/pkgs/tools/misc/tea/default.nix +++ b/pkgs/tools/misc/tea/default.nix @@ -12,7 +12,7 @@ buildGoModule rec { sha256 = "sha256-sZfg8+LIu1Ejvmr/o4X3EOz3fv+RvLhrGRf2yy+6t8c="; }; - vendorSha256 = "sha256-nb0lQEAaIYlGpodFQLhMk/24DmTgg5K3zQ4s/XY+Z1w="; + vendorHash = "sha256-nb0lQEAaIYlGpodFQLhMk/24DmTgg5K3zQ4s/XY+Z1w="; meta = with lib; { description = "Gitea official CLI client"; diff --git a/pkgs/tools/misc/tfk8s/default.nix b/pkgs/tools/misc/tfk8s/default.nix index 0a8a446b908c..a694360db373 100644 --- a/pkgs/tools/misc/tfk8s/default.nix +++ b/pkgs/tools/misc/tfk8s/default.nix @@ -12,7 +12,7 @@ buildGoModule rec { sha256 = "sha256-VLpXL5ABnCxc+7dV3sZ6wsY2nKn2yfu7eTjtn881/XQ="; }; - vendorSha256 = "sha256-eTADcUW9b6l47BkWF9YLxdcgvMbCzWTjLF28FneJHg8="; + vendorHash = "sha256-eTADcUW9b6l47BkWF9YLxdcgvMbCzWTjLF28FneJHg8="; ldflags = [ "-s" diff --git a/pkgs/tools/misc/traefik-certs-dumper/default.nix b/pkgs/tools/misc/traefik-certs-dumper/default.nix index 50954dab7ae8..410f85de4d12 100644 --- a/pkgs/tools/misc/traefik-certs-dumper/default.nix +++ b/pkgs/tools/misc/traefik-certs-dumper/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-o5nTxTyLuKtWcJvcWZuVwK970DMJfEaJw8vDcShulr0="; }; - vendorSha256 = "sha256-rBSRZ7gKUx3tBXqhkTOmAyEx9pLw41/Bt3O+AiHqXpw="; + vendorHash = "sha256-rBSRZ7gKUx3tBXqhkTOmAyEx9pLw41/Bt3O+AiHqXpw="; excludedPackages = "integrationtest"; meta = with lib; { diff --git a/pkgs/tools/misc/turbo/default.nix b/pkgs/tools/misc/turbo/default.nix index 0928348666ea..f3fcd8cd0f30 100644 --- a/pkgs/tools/misc/turbo/default.nix +++ b/pkgs/tools/misc/turbo/default.nix @@ -63,7 +63,7 @@ let pname = "go-turbo"; modRoot = "cli"; - vendorSha256 = "sha256-8quDuT8VwT3B56jykkbX8ov+DNFZwxPf31+NLdfX1p0="; + vendorHash = "sha256-8quDuT8VwT3B56jykkbX8ov+DNFZwxPf31+NLdfX1p0="; nativeBuildInputs = [ git diff --git a/pkgs/tools/misc/unparam/default.nix b/pkgs/tools/misc/unparam/default.nix index 30bb408ffae1..3f87e0edd64b 100644 --- a/pkgs/tools/misc/unparam/default.nix +++ b/pkgs/tools/misc/unparam/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-kbEdOqX/p/FrNfWQ2WjXX+lERprSV2EI9l+kapHuFi4="; }; - vendorSha256 = "sha256-gEZFAMcr1okqG2IXcS3hDzZKMINohd2JzxezGbzyeBE="; + vendorHash = "sha256-gEZFAMcr1okqG2IXcS3hDzZKMINohd2JzxezGbzyeBE="; subPackages = [ "." ]; diff --git a/pkgs/tools/misc/yai/default.nix b/pkgs/tools/misc/yai/default.nix index 6b99671fbe90..916328cdcde6 100644 --- a/pkgs/tools/misc/yai/default.nix +++ b/pkgs/tools/misc/yai/default.nix @@ -13,7 +13,7 @@ buildGoModule rec { sha256 = "sha256-MoblXLfptlIYJbXQTpbc8GBo2a3Zgxdvwra8IUEGiZs=="; }; - vendorSha256 = "sha256-+NhYK8FXd5B3GsGUPJOMM7Tt3GS1ZJ7LeApz38Xkwx8="; + vendorHash = "sha256-+NhYK8FXd5B3GsGUPJOMM7Tt3GS1ZJ7LeApz38Xkwx8="; ldflags = [ "-w -s" diff --git a/pkgs/tools/misc/zabbixctl/default.nix b/pkgs/tools/misc/zabbixctl/default.nix index 3b25d479388e..e42ccb86c417 100644 --- a/pkgs/tools/misc/zabbixctl/default.nix +++ b/pkgs/tools/misc/zabbixctl/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-fWT3cgIHjHcKwFDjWIf3BUUUaVZ7hyc2ibkpU+AsW0I="; }; - vendorSha256 = "sha256-BphQcPPmeNU7RDtaHJQxIoW8xxD86xWgqLBsLR08Tag="; + vendorHash = "sha256-BphQcPPmeNU7RDtaHJQxIoW8xxD86xWgqLBsLR08Tag="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/tools/networking/assh/default.nix b/pkgs/tools/networking/assh/default.nix index 28c3ce408021..44b7551bb5f9 100644 --- a/pkgs/tools/networking/assh/default.nix +++ b/pkgs/tools/networking/assh/default.nix @@ -18,7 +18,7 @@ buildGoModule rec { sha256 = "sha256-gti2W1y0iFNyDxKjS7joJn3FkZ9AadYsImu4VEdErS4="; }; - vendorSha256 = "sha256-xh/ndjhvSz0atJqOeajAm4nw5/TmMrOdOgTauKAsAcA="; + vendorHash = "sha256-xh/ndjhvSz0atJqOeajAm4nw5/TmMrOdOgTauKAsAcA="; ldflags = [ "-s" "-w" "-X moul.io/assh/v2/pkg/version.Version=${version}" diff --git a/pkgs/tools/networking/cassowary/default.nix b/pkgs/tools/networking/cassowary/default.nix index f56e4cc7f201..e14c8e212717 100644 --- a/pkgs/tools/networking/cassowary/default.nix +++ b/pkgs/tools/networking/cassowary/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-wRpITbxtn2sHw7kkQ8rnCPQCU0JS6smdQLq1Z/RyeHo="; }; - vendorSha256 = "sha256-b77Sje5OsysTRRbzgdLnTlLLyLIACjD4c/oS9zyI0d8="; + vendorHash = "sha256-b77Sje5OsysTRRbzgdLnTlLLyLIACjD4c/oS9zyI0d8="; ldflags = [ "-s" "-w" "-X main.version=${version}" ]; diff --git a/pkgs/tools/networking/corerad/default.nix b/pkgs/tools/networking/corerad/default.nix index bf24bba428a1..8535b2e31083 100644 --- a/pkgs/tools/networking/corerad/default.nix +++ b/pkgs/tools/networking/corerad/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-cBP4jJhnIx+UwcbuQ3xbpImkLX4jSnsyvwfOEs31On4="; }; - vendorSha256 = "sha256-RkwfHjWu40AW+7zLc+sY5p2nyy3YPHk5sjt6foC103k="; + vendorHash = "sha256-RkwfHjWu40AW+7zLc+sY5p2nyy3YPHk5sjt6foC103k="; # Since the tarball pulled from GitHub doesn't contain git tag information, # we fetch the expected tag's timestamp from a file in the root of the diff --git a/pkgs/tools/networking/curlie/default.nix b/pkgs/tools/networking/curlie/default.nix index 7a5e8da3c9fb..b75d21ede847 100644 --- a/pkgs/tools/networking/curlie/default.nix +++ b/pkgs/tools/networking/curlie/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { ./bump-golang-x-sys.patch ]; - vendorSha256 = "sha256-VsPdMUfS4UVem6uJgFISfFHQEKtIumDQktHQFPC1muc="; + vendorHash = "sha256-VsPdMUfS4UVem6uJgFISfFHQEKtIumDQktHQFPC1muc="; ldflags = [ "-s" "-w" "-X main.version=${version}" ]; diff --git a/pkgs/tools/networking/dd-agent/datadog-agent.nix b/pkgs/tools/networking/dd-agent/datadog-agent.nix index 1968d866c91f..4ce4d255ee81 100644 --- a/pkgs/tools/networking/dd-agent/datadog-agent.nix +++ b/pkgs/tools/networking/dd-agent/datadog-agent.nix @@ -41,7 +41,7 @@ in buildGoModule rec { doCheck = false; - vendorSha256 = "sha256-bGDf48wFa32hURZfGN5pCMmslC3PeLNayKcl5cfjq9M="; + vendorHash = "sha256-bGDf48wFa32hURZfGN5pCMmslC3PeLNayKcl5cfjq9M="; subPackages = [ "cmd/agent" diff --git a/pkgs/tools/networking/dnsmon-go/default.nix b/pkgs/tools/networking/dnsmon-go/default.nix index 26f705c67fb8..c8dbfdeddd43 100644 --- a/pkgs/tools/networking/dnsmon-go/default.nix +++ b/pkgs/tools/networking/dnsmon-go/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { hash = "sha256-lAJ2bjs5VLzrHd09eFK4X0V/cCee2QsgdgiKq+y2c10="; }; - vendorSha256 = "sha256-aiX+NGUsFK0N9vC5baAHHMr28CbF5Xa4WgYLFFLBYTs="; + vendorHash = "sha256-aiX+NGUsFK0N9vC5baAHHMr28CbF5Xa4WgYLFFLBYTs="; buildInputs = [ libpcap diff --git a/pkgs/tools/networking/dnstake/default.nix b/pkgs/tools/networking/dnstake/default.nix index b0aab0d6d5b9..ccb5d2e597df 100644 --- a/pkgs/tools/networking/dnstake/default.nix +++ b/pkgs/tools/networking/dnstake/default.nix @@ -24,7 +24,7 @@ buildGoModule rec { }) ]; - vendorSha256 = "sha256-lV6dUl+OMUQfhlgNL38k0Re1Mr3VP9b8SI3vTJ8CP18="; + vendorHash = "sha256-lV6dUl+OMUQfhlgNL38k0Re1Mr3VP9b8SI3vTJ8CP18="; meta = with lib; { description = "Tool to check missing hosted DNS zones"; diff --git a/pkgs/tools/networking/flannel/plugin.nix b/pkgs/tools/networking/flannel/plugin.nix index 1433b94b9131..db8b89fa0bfe 100644 --- a/pkgs/tools/networking/flannel/plugin.nix +++ b/pkgs/tools/networking/flannel/plugin.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-9AVXm3+VJFLQwe7EHwI8LmWKxfX1r0yjmKeaReQvxR4="; }; - vendorSha256 = "sha256-DhvaXC/n4yiVDibB8kymzltNhEIxKdTsEDN9Sfc/wxU="; + vendorHash = "sha256-DhvaXC/n4yiVDibB8kymzltNhEIxKdTsEDN9Sfc/wxU="; ldflags = [ "-s" "-w" diff --git a/pkgs/tools/networking/go-shadowsocks2/default.nix b/pkgs/tools/networking/go-shadowsocks2/default.nix index a5679c8562bc..94763df92b27 100644 --- a/pkgs/tools/networking/go-shadowsocks2/default.nix +++ b/pkgs/tools/networking/go-shadowsocks2/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-z2+5q8XlxMN7x86IOMJ0qbrW4Wrm1gp8GWew51yBRFg="; }; - vendorSha256 = "sha256-RrHksWET5kicbdQ5HRDWhNxx4rTi2zaVeaPoLdg4uQw="; + vendorHash = "sha256-RrHksWET5kicbdQ5HRDWhNxx4rTi2zaVeaPoLdg4uQw="; meta = with lib; { description = "Fresh implementation of Shadowsocks in Go"; diff --git a/pkgs/tools/networking/godspeed/default.nix b/pkgs/tools/networking/godspeed/default.nix index bd60b2adc45d..2ffb1afed06a 100644 --- a/pkgs/tools/networking/godspeed/default.nix +++ b/pkgs/tools/networking/godspeed/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { sha256 = "sha256-y/mCfNWe5ShdxEz8IUQ8zUzgVkUy/+5lX6rcJ3r6KoI="; }; - vendorSha256 = "sha256-DCDAuKvov4tkf77nJNo9mQU/bAeQasp4VBQRtLX+U6c="; + vendorHash = "sha256-DCDAuKvov4tkf77nJNo9mQU/bAeQasp4VBQRtLX+U6c="; buildInputs = [ libpcap diff --git a/pkgs/tools/networking/goflow/default.nix b/pkgs/tools/networking/goflow/default.nix index 5894e8f98aed..a057fcf6130e 100644 --- a/pkgs/tools/networking/goflow/default.nix +++ b/pkgs/tools/networking/goflow/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-nMWAvvJj1S5W4ItOT212bn9CPG5Lpdd+k8ciwGmeu0w="; }; - vendorSha256 = "sha256-fOlfVI8v7KqNSRhAPlZBSHKfZRlCbCgjnMV/6bsqDhg="; + vendorHash = "sha256-fOlfVI8v7KqNSRhAPlZBSHKfZRlCbCgjnMV/6bsqDhg="; meta = with lib; { description = "A NetFlow/IPFIX/sFlow collector in Go"; diff --git a/pkgs/tools/networking/goimapnotify/default.nix b/pkgs/tools/networking/goimapnotify/default.nix index e7f7faac5cf4..efae7622184a 100644 --- a/pkgs/tools/networking/goimapnotify/default.nix +++ b/pkgs/tools/networking/goimapnotify/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-Wot+E+rDgXQ4FVgdfqe6a3O9oYUK3X1xImC33eDuUBo="; }; - vendorSha256 = "sha256-DphGe9jbKo1aIfpF5kRYNSn/uIYHaRMrygda5t46svw="; + vendorHash = "sha256-DphGe9jbKo1aIfpF5kRYNSn/uIYHaRMrygda5t46svw="; postPatch = '' for f in command.go command_test.go; do diff --git a/pkgs/tools/networking/goreplay/default.nix b/pkgs/tools/networking/goreplay/default.nix index 404ed07460ac..25e98b787c5a 100644 --- a/pkgs/tools/networking/goreplay/default.nix +++ b/pkgs/tools/networking/goreplay/default.nix @@ -19,7 +19,7 @@ buildGoModule rec { }) ]; - vendorSha256 = "sha256-jDMAtcq3ZowFdky5BdTkVNxq4ltkhklr76nXYJgGALg="; + vendorHash = "sha256-jDMAtcq3ZowFdky5BdTkVNxq4ltkhklr76nXYJgGALg="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/tools/networking/grpcui/default.nix b/pkgs/tools/networking/grpcui/default.nix index 704d39099d73..e841556310ef 100644 --- a/pkgs/tools/networking/grpcui/default.nix +++ b/pkgs/tools/networking/grpcui/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-9rKZFbRJn/Rv/9vznBujEt0bSCvx9eLKADoYc4pXBeY="; }; - vendorSha256 = "sha256-DTLguUSFgGOF+okHQdFxL944NA+WPWT1zaeu38p1p0M="; + vendorHash = "sha256-DTLguUSFgGOF+okHQdFxL944NA+WPWT1zaeu38p1p0M="; doCheck = false; diff --git a/pkgs/tools/networking/grpcurl/default.nix b/pkgs/tools/networking/grpcurl/default.nix index 7df4c51f035f..60406a523e95 100644 --- a/pkgs/tools/networking/grpcurl/default.nix +++ b/pkgs/tools/networking/grpcurl/default.nix @@ -13,7 +13,7 @@ buildGoModule rec { subPackages = [ "cmd/grpcurl" ]; - vendorSha256 = "sha256-xe3xb1+qa53Xph+CLcUqxJYeD9d4kBaY6SJfc7bhjQY="; + vendorHash = "sha256-xe3xb1+qa53Xph+CLcUqxJYeD9d4kBaY6SJfc7bhjQY="; ldflags = [ "-s" "-w" "-X main.version=${version}" ]; diff --git a/pkgs/tools/networking/norouter/default.nix b/pkgs/tools/networking/norouter/default.nix index 8c65089cdf58..e76cc4544e32 100644 --- a/pkgs/tools/networking/norouter/default.nix +++ b/pkgs/tools/networking/norouter/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-EY/Yfyaz2DeQKHJ4awpQDbrVkse9crIZlLzfviPy3Tk="; }; - vendorSha256 = "sha256-RxrmYfEm1Maq8byoLXUr5RfXcwgqpCcAq5enMnl9V9E="; + vendorHash = "sha256-RxrmYfEm1Maq8byoLXUr5RfXcwgqpCcAq5enMnl9V9E="; subPackages = [ "cmd/norouter" ]; doInstallCheck = true; diff --git a/pkgs/tools/networking/qrcp/default.nix b/pkgs/tools/networking/qrcp/default.nix index 72096dedcc7b..23183f513c11 100644 --- a/pkgs/tools/networking/qrcp/default.nix +++ b/pkgs/tools/networking/qrcp/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { sha256 = "sha256-3GPZ6+gx5i/xULM3lq7D+b0onBC6clgeZsI1CvZ943s="; }; - vendorSha256 = "sha256-XVBDPhQsnUdftS+jZ1zWZlfSbFXxXrKSqiGTPpLq5i0="; + vendorHash = "sha256-XVBDPhQsnUdftS+jZ1zWZlfSbFXxXrKSqiGTPpLq5i0="; subPackages = [ "." ]; diff --git a/pkgs/tools/networking/rabtap/default.nix b/pkgs/tools/networking/rabtap/default.nix index fded1938842b..814d81429c4e 100644 --- a/pkgs/tools/networking/rabtap/default.nix +++ b/pkgs/tools/networking/rabtap/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-l35MHr7NWBlzKcGSDGjHTwGfnDrOpjeJp9/YAp1Areo="; }; - vendorSha256 = "sha256-sJFMef9VnU6iKGf9UwEK60axLUBkubFWgI+pWKjaWNU="; + vendorHash = "sha256-sJFMef9VnU6iKGf9UwEK60axLUBkubFWgI+pWKjaWNU="; meta = with lib; { description = "RabbitMQ wire tap and swiss army knife"; diff --git a/pkgs/tools/networking/rdap/default.nix b/pkgs/tools/networking/rdap/default.nix index b41b0ea28f1b..d6ecc8d59570 100644 --- a/pkgs/tools/networking/rdap/default.nix +++ b/pkgs/tools/networking/rdap/default.nix @@ -3,7 +3,7 @@ buildGoModule rec { pname = "rdap"; version = "0.9.1"; - vendorSha256 = "sha256-8b1EAnR8PkEAw9yLBqPKFeANJit0OCJG+fssAGR/iTk="; + vendorHash = "sha256-8b1EAnR8PkEAw9yLBqPKFeANJit0OCJG+fssAGR/iTk="; src = fetchFromGitHub { owner = "openrdap"; diff --git a/pkgs/tools/networking/sipexer/default.nix b/pkgs/tools/networking/sipexer/default.nix index 61f2d51d938b..d88faee09f0f 100644 --- a/pkgs/tools/networking/sipexer/default.nix +++ b/pkgs/tools/networking/sipexer/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { hash = "sha256-/AVOC8Tx5XMDiKmLBq2xUiJaA3K3TnWVXPE+Vzx862I="; }; - vendorSha256 = "sha256-q2uNqKZc6Zye7YimPDrg40o68Fo4ux4fygjVjJdhqQU="; + vendorHash = "sha256-q2uNqKZc6Zye7YimPDrg40o68Fo4ux4fygjVjJdhqQU="; meta = with lib; { description = "Modern and flexible SIP CLI tool"; diff --git a/pkgs/tools/networking/sleep-on-lan/default.nix b/pkgs/tools/networking/sleep-on-lan/default.nix index 98f4cfb44481..6a332ea8070c 100644 --- a/pkgs/tools/networking/sleep-on-lan/default.nix +++ b/pkgs/tools/networking/sleep-on-lan/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { }; sourceRoot = "${src.name}/src"; - vendorSha256 = "sha256-JqDDG53khtDdMLVOscwqi0oGviF+3DMkv5tkHvp1gJc="; + vendorHash = "sha256-JqDDG53khtDdMLVOscwqi0oGviF+3DMkv5tkHvp1gJc="; ldflags = [ "-s" diff --git a/pkgs/tools/networking/snet/default.nix b/pkgs/tools/networking/snet/default.nix index f458521468cb..4775d789d7c1 100644 --- a/pkgs/tools/networking/snet/default.nix +++ b/pkgs/tools/networking/snet/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-lTbygQRABv+Dp4i7nDgXYqi4pwU2rtLNfpgtBgsq+7Y="; }; - vendorSha256 = "sha256-dubmCLeD8Fwe1msfLN+5WzdbFkfTRnZDU3F49gjWTS4="; + vendorHash = "sha256-dubmCLeD8Fwe1msfLN+5WzdbFkfTRnZDU3F49gjWTS4="; meta = with lib; { description = "Transparent proxy works on linux desktop, MacOS, router"; diff --git a/pkgs/tools/networking/telepresence2/default.nix b/pkgs/tools/networking/telepresence2/default.nix index 83449c383063..2a77636f7397 100644 --- a/pkgs/tools/networking/telepresence2/default.nix +++ b/pkgs/tools/networking/telepresence2/default.nix @@ -21,7 +21,7 @@ buildGoModule rec { go run ./build-aux/package_embedded_chart/main.go ${src.rev} ''; - vendorSha256 = "sha256-aa40+6cjpA6/bqpFiqayCkX0PBToPmsp99ykv6e7Huc="; + vendorHash = "sha256-aa40+6cjpA6/bqpFiqayCkX0PBToPmsp99ykv6e7Huc="; ldflags = [ "-s" "-w" "-X=github.com/telepresenceio/telepresence/v2/pkg/version.Version=${src.rev}" diff --git a/pkgs/tools/networking/tendermint/default.nix b/pkgs/tools/networking/tendermint/default.nix index 4f22a8221d8d..a861ab0b0ed9 100644 --- a/pkgs/tools/networking/tendermint/default.nix +++ b/pkgs/tools/networking/tendermint/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-3tggW+M3vZChDT1g77W5M3hchEN6pTSVvkrZda6ZTCY="; }; - vendorSha256 = "sha256-/enY0qERFzAIJNcuw1djRGoAcmtz7R5Ikvlts0f7rLc="; + vendorHash = "sha256-/enY0qERFzAIJNcuw1djRGoAcmtz7R5Ikvlts0f7rLc="; subPackages = [ "cmd/tendermint" ]; diff --git a/pkgs/tools/networking/termshark/default.nix b/pkgs/tools/networking/termshark/default.nix index 0aa01f69bd60..84dbf7ed3311 100644 --- a/pkgs/tools/networking/termshark/default.nix +++ b/pkgs/tools/networking/termshark/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { nativeBuildInputs = [ makeWrapper ]; buildInputs = [ wireshark-cli ]; - vendorSha256 = "sha256-C9XOiNjo+TZ+erdnypRhhfpbuBhB3yEqNpbtwjEv14g="; + vendorHash = "sha256-C9XOiNjo+TZ+erdnypRhhfpbuBhB3yEqNpbtwjEv14g="; doCheck = false; diff --git a/pkgs/tools/networking/tran/default.nix b/pkgs/tools/networking/tran/default.nix index a5daa5f2ee25..3a9a78a55e97 100644 --- a/pkgs/tools/networking/tran/default.nix +++ b/pkgs/tools/networking/tran/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-qp4g1ZLRIIz0CZ/Zey354g0j9ePE4pGb82IivLezU7s="; }; - vendorSha256 = "sha256-JmRTI5ZBSFULfI+ki3hI8TPaS6IVP9D14r4DwK/nx1Y="; + vendorHash = "sha256-JmRTI5ZBSFULfI+ki3hI8TPaS6IVP9D14r4DwK/nx1Y="; ldflags = [ "-w" diff --git a/pkgs/tools/networking/v2ray/default.nix b/pkgs/tools/networking/v2ray/default.nix index 7ec5a396f91f..cb0132a64ad2 100644 --- a/pkgs/tools/networking/v2ray/default.nix +++ b/pkgs/tools/networking/v2ray/default.nix @@ -17,7 +17,7 @@ buildGoModule rec { # `nix-update` doesn't support `vendorHash` yet. # https://github.com/Mic92/nix-update/pull/95 - vendorSha256 = "sha256-uq0v14cRGmstJabrERsa+vFRX6Bg8+5CU6iV8swrL/I="; + vendorHash = "sha256-uq0v14cRGmstJabrERsa+vFRX6Bg8+5CU6iV8swrL/I="; ldflags = [ "-s" "-w" "-buildid=" ]; diff --git a/pkgs/tools/networking/v2raya/default.nix b/pkgs/tools/networking/v2raya/default.nix index c871c0057b69..a2d539326e3c 100644 --- a/pkgs/tools/networking/v2raya/default.nix +++ b/pkgs/tools/networking/v2raya/default.nix @@ -59,7 +59,7 @@ buildGoModule { inherit pname version; src = "${src}/service"; - vendorSha256 = "sha256-nI+nqftJybAGcHCTMVjYPuLHxqE/kyjUzkspnkzUi+g="; + vendorHash = "sha256-nI+nqftJybAGcHCTMVjYPuLHxqE/kyjUzkspnkzUi+g="; ldflags = [ "-s" diff --git a/pkgs/tools/networking/yggdrasil/default.nix b/pkgs/tools/networking/yggdrasil/default.nix index 4837ecff203a..5154ef60bd0a 100644 --- a/pkgs/tools/networking/yggdrasil/default.nix +++ b/pkgs/tools/networking/yggdrasil/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-01ciAutRIn4DmqlvDTXhRiuZHTtF8b6js7SUrLOjtAY="; }; - vendorSha256 = "sha256-hwDi59Yp92eMDqA8OD56nxsKSX2ngxs0lYdmEMLX+Oc="; + vendorHash = "sha256-hwDi59Yp92eMDqA8OD56nxsKSX2ngxs0lYdmEMLX+Oc="; # Change the default location of the management socket on Linux # systems so that the yggdrasil system service unit does not have to diff --git a/pkgs/tools/nix/nar-serve/default.nix b/pkgs/tools/nix/nar-serve/default.nix index 10ac797578f9..5aa2e3bd9ced 100644 --- a/pkgs/tools/nix/nar-serve/default.nix +++ b/pkgs/tools/nix/nar-serve/default.nix @@ -13,7 +13,7 @@ buildGoModule rec { hash = "sha256-cSOYHYJJEGzFtkD4mjTmYBiM9CaWKt64xgV/JeNHpfM="; }; - vendorSha256 = "sha256-RpjLs4+9abbbysYAlPDUXBLe1cz4Lp+QmR1yv+LpYwQ="; + vendorHash = "sha256-RpjLs4+9abbbysYAlPDUXBLe1cz4Lp+QmR1yv+LpYwQ="; doCheck = false; diff --git a/pkgs/tools/nix/nix-store-gcs-proxy/default.nix b/pkgs/tools/nix/nix-store-gcs-proxy/default.nix index 9f2fe3fe7156..166fe75766de 100644 --- a/pkgs/tools/nix/nix-store-gcs-proxy/default.nix +++ b/pkgs/tools/nix/nix-store-gcs-proxy/default.nix @@ -10,7 +10,7 @@ buildGoModule rec { sha256 = "0804p65px4wd7gzxggpdxsazkd1hbz1p15zzaxf9ygc6sh26ncln"; }; - vendorSha256 = "sha256-Bm3yFzm2LXOPYWQDk/UBusV0lPfc/BCKIb3pPlWgDFo="; + vendorHash = "sha256-Bm3yFzm2LXOPYWQDk/UBusV0lPfc/BCKIb3pPlWgDFo="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/tools/package-management/gx/default.nix b/pkgs/tools/package-management/gx/default.nix index 0384cbce7721..e53fdf48413f 100644 --- a/pkgs/tools/package-management/gx/default.nix +++ b/pkgs/tools/package-management/gx/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-jGtUsb2gm8dN45wniD+PYoUlk8m1ssrfj1a7PPYEYuo="; }; - vendorSha256 = "sha256-6tdVpMztaBjoQRVG2vaUWuvnPq05zjbNAX9HBiC50t0="; + vendorHash = "sha256-6tdVpMztaBjoQRVG2vaUWuvnPq05zjbNAX9HBiC50t0="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/tools/package-management/mynewt-newt/default.nix b/pkgs/tools/package-management/mynewt-newt/default.nix index ea0c1d06073f..789a48655436 100644 --- a/pkgs/tools/package-management/mynewt-newt/default.nix +++ b/pkgs/tools/package-management/mynewt-newt/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-HWZDs4kYWveEqzPRNGNbghc1Yg6hy/Pq3eU5jW8WdHc="; }; - vendorSha256 = "sha256-/LK+NSs7YZkw6TRvBQcn6/SszIwAfXN0rt2AKSBV7CE="; + vendorHash = "sha256-/LK+NSs7YZkw6TRvBQcn6/SszIwAfXN0rt2AKSBV7CE="; doCheck = false; diff --git a/pkgs/tools/security/2fa/default.nix b/pkgs/tools/security/2fa/default.nix index 6de513ec92b4..d1d4cc42a1ff 100644 --- a/pkgs/tools/security/2fa/default.nix +++ b/pkgs/tools/security/2fa/default.nix @@ -12,7 +12,7 @@ buildGoModule rec { }; deleteVendor = true; - vendorSha256 = "sha256-4h/+ZNxlJPYY0Kyu2vDE1pDXxC/kGE5JdnagWVOGzAE="; + vendorHash = "sha256-4h/+ZNxlJPYY0Kyu2vDE1pDXxC/kGE5JdnagWVOGzAE="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/tools/security/adreaper/default.nix b/pkgs/tools/security/adreaper/default.nix index e0329a83f62b..873760250618 100644 --- a/pkgs/tools/security/adreaper/default.nix +++ b/pkgs/tools/security/adreaper/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "sha256-+FCb5TV9MUcRyex2M4rn2RhcIsXQFbtm1T4r7MpcRQs="; }; - vendorSha256 = "sha256-lU39kj/uz0l7Rodsu6+UMv2o579eu1KUbutUNZni7bM="; + vendorHash = "sha256-lU39kj/uz0l7Rodsu6+UMv2o579eu1KUbutUNZni7bM="; postInstall = lib.optionalString (!stdenv.isDarwin) '' mv $out/bin/ADReaper $out/bin/$pname diff --git a/pkgs/tools/security/age/default.nix b/pkgs/tools/security/age/default.nix index 05c682d865ae..8ad4ff9c904c 100644 --- a/pkgs/tools/security/age/default.nix +++ b/pkgs/tools/security/age/default.nix @@ -3,7 +3,7 @@ buildGoModule rec { pname = "age"; version = "1.1.1"; - vendorSha256 = "sha256-MumPdRTz840+hoisJ7ADgBhyK3n8P6URobbRJYDFkDY="; + vendorHash = "sha256-MumPdRTz840+hoisJ7ADgBhyK3n8P6URobbRJYDFkDY="; src = fetchFromGitHub { owner = "FiloSottile"; diff --git a/pkgs/tools/security/bettercap/default.nix b/pkgs/tools/security/bettercap/default.nix index cdd50aaa809a..69736b4cc308 100644 --- a/pkgs/tools/security/bettercap/default.nix +++ b/pkgs/tools/security/bettercap/default.nix @@ -19,7 +19,7 @@ buildGoModule rec { sha256 = "sha256-OND8WPqU/95rKykqMAPWmDsJ+AjsjGjrncZ2/m3mpt0="; }; - vendorSha256 = "sha256-QKv8F9QLRi+1Bqj9KywJsTErjs7o6gFM4tJLA8y52MY="; + vendorHash = "sha256-QKv8F9QLRi+1Bqj9KywJsTErjs7o6gFM4tJLA8y52MY="; doCheck = false; diff --git a/pkgs/tools/security/cameradar/default.nix b/pkgs/tools/security/cameradar/default.nix index 4a351a696f0f..2182fe3b0b7b 100644 --- a/pkgs/tools/security/cameradar/default.nix +++ b/pkgs/tools/security/cameradar/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { sha256 = "sha256-GOqmz/aiOLGMfs9rQBIEQSgBycPzhu8BohcAc2U+gBw="; }; - vendorSha256 = "sha256-AIi57DWMvAKl0PhuwHO/0cHoDKk5e0bJsqHYBka4NiU="; + vendorHash = "sha256-AIi57DWMvAKl0PhuwHO/0cHoDKk5e0bJsqHYBka4NiU="; nativeBuildInputs = [ pkg-config diff --git a/pkgs/tools/security/certgraph/default.nix b/pkgs/tools/security/certgraph/default.nix index f18f0ca3b2cb..da8f8358d799 100644 --- a/pkgs/tools/security/certgraph/default.nix +++ b/pkgs/tools/security/certgraph/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-7tvPiJHZE9X7I79DFNF1ZAQiaAkrtrXiD2fY7AkbWMk="; }; - vendorSha256 = "sha256-ErTn7pUCtz6ip2kL8FCe+3Rhs876xtqto+z5nZqQ6cI="; + vendorHash = "sha256-ErTn7pUCtz6ip2kL8FCe+3Rhs876xtqto+z5nZqQ6cI="; meta = with lib; { description = "Intelligence tool to crawl the graph of certificate alternate names"; diff --git a/pkgs/tools/security/certstrap/default.nix b/pkgs/tools/security/certstrap/default.nix index a7c99132a338..8808b98985f8 100644 --- a/pkgs/tools/security/certstrap/default.nix +++ b/pkgs/tools/security/certstrap/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-mbZtomR8nnawXr3nGVSEuVObe79M1CqTlYN/aEpKmcU="; }; - vendorSha256 = "sha256-r7iYhTmFKTjfv11fEerC72M7JBp64rWfbkoTKzObNqM="; + vendorHash = "sha256-r7iYhTmFKTjfv11fEerC72M7JBp64rWfbkoTKzObNqM="; subPackages = [ "." ]; diff --git a/pkgs/tools/security/chain-bench/default.nix b/pkgs/tools/security/chain-bench/default.nix index 24c042e6e76f..129c21b5d4b2 100644 --- a/pkgs/tools/security/chain-bench/default.nix +++ b/pkgs/tools/security/chain-bench/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { rev = "v${version}"; sha256 = "sha256-UWP/S15s9k92RhH6xr0V544BHF4n9g+inN6Sdpja6uM="; }; - vendorSha256 = "sha256-R6V4dE2cNKcsBweSaUWjZHKnUQP/kADAbW2aTQc7TAg="; + vendorHash = "sha256-R6V4dE2cNKcsBweSaUWjZHKnUQP/kADAbW2aTQc7TAg="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/tools/security/cirrusgo/default.nix b/pkgs/tools/security/cirrusgo/default.nix index 9d94d3b7542f..61c8e6b8b28f 100644 --- a/pkgs/tools/security/cirrusgo/default.nix +++ b/pkgs/tools/security/cirrusgo/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { hash = "sha256-FYI/Ldu91YB/4wCiVADeYxYQOeBGro1msY5VXsnixw4="; }; - vendorSha256 = "sha256-KCf2KQ8u+nX/+zMGZ6unWb/Vz6zPNkKtMioFo1FlnVI="; + vendorHash = "sha256-KCf2KQ8u+nX/+zMGZ6unWb/Vz6zPNkKtMioFo1FlnVI="; meta = with lib; { description = "Tool to scan SAAS and PAAS applications"; diff --git a/pkgs/tools/security/crlfuzz/default.nix b/pkgs/tools/security/crlfuzz/default.nix index d203d0d7f463..f28f96e5f4cd 100644 --- a/pkgs/tools/security/crlfuzz/default.nix +++ b/pkgs/tools/security/crlfuzz/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-rqhdxOQmZCRtq+IZygKLleb5GoKP2akyEc3rbGcnZmw="; }; - vendorSha256 = "sha256-yLtISEJWIKqCuZtQxReu/Vykw5etqgLpuXqOdtwBkqU="; + vendorHash = "sha256-yLtISEJWIKqCuZtQxReu/Vykw5etqgLpuXqOdtwBkqU="; doCheck = true; diff --git a/pkgs/tools/security/dalfox/default.nix b/pkgs/tools/security/dalfox/default.nix index c5f764120bb9..85fc3c55a3b0 100644 --- a/pkgs/tools/security/dalfox/default.nix +++ b/pkgs/tools/security/dalfox/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-AG5CNqkxPQJQ+HN3JGUIgSYxgFigmUqVGn1yAHmo7Mo="; }; - vendorSha256 = "sha256-OLT85GOcTnWmU+ZRem2+vY29nzvzXhnmIN2W+U6phPk="; + vendorHash = "sha256-OLT85GOcTnWmU+ZRem2+vY29nzvzXhnmIN2W+U6phPk="; # Tests require network access doCheck = false; diff --git a/pkgs/tools/security/dismap/default.nix b/pkgs/tools/security/dismap/default.nix index 41d00a96cfa6..52e046aa80c1 100644 --- a/pkgs/tools/security/dismap/default.nix +++ b/pkgs/tools/security/dismap/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-YjjiS6iLIQvrPS378v2nyrgwWBJ9YtDeNTPz0ze05mU="; }; - vendorSha256 = "sha256-GnchyE2TswvjYlehhMYesZruTTwyTorfR+17K0RXXFY="; + vendorHash = "sha256-GnchyE2TswvjYlehhMYesZruTTwyTorfR+17K0RXXFY="; meta = with lib; { description = "Asset discovery and identification tools"; diff --git a/pkgs/tools/security/dismember/default.nix b/pkgs/tools/security/dismember/default.nix index 530a845e734b..2dffd8116b9c 100644 --- a/pkgs/tools/security/dismember/default.nix +++ b/pkgs/tools/security/dismember/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { hash = "sha256-myoBXoi7VqHOLmu/XrvnlfBDlEnXm+0fp8WQec+3EJY="; }; - vendorSha256 = "sha256-xxZQz94sr7aSNhmvFWdRtVnS0yk2KQIkAHjwZeJPBwY="; + vendorHash = "sha256-xxZQz94sr7aSNhmvFWdRtVnS0yk2KQIkAHjwZeJPBwY="; meta = with lib; { description = "Tool to scan memory for secrets"; diff --git a/pkgs/tools/security/dnsx/default.nix b/pkgs/tools/security/dnsx/default.nix index b68edc7c6ed2..bdc84d802bf7 100644 --- a/pkgs/tools/security/dnsx/default.nix +++ b/pkgs/tools/security/dnsx/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { hash = "sha256-FNPAsslKmsLrUtiw+GlXLppsEk/VB02jkZLmrB8zZOI="; }; - vendorSha256 = "sha256-QXmy+Ph0lKguAoIWfc41z7XH7jXGc601DD6v292Hzj0="; + vendorHash = "sha256-QXmy+Ph0lKguAoIWfc41z7XH7jXGc601DD6v292Hzj0="; # Tests require network access doCheck = false; diff --git a/pkgs/tools/security/extrude/default.nix b/pkgs/tools/security/extrude/default.nix index e8d2b0784117..7145314fbd41 100644 --- a/pkgs/tools/security/extrude/default.nix +++ b/pkgs/tools/security/extrude/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { hash = "sha256-7gCEBhnNU5CqC5n0KP4Dd/fmddPRwNqyMFXTrRrJjfU="; }; - vendorSha256 = "sha256-8qjIYPkWtYTvl7wAnefpZAjbNSQLQFqRnGGccYZ8ZmU="; + vendorHash = "sha256-8qjIYPkWtYTvl7wAnefpZAjbNSQLQFqRnGGccYZ8ZmU="; meta = with lib; { description = "Tool to analyse binaries for missing security features"; diff --git a/pkgs/tools/security/gau/default.nix b/pkgs/tools/security/gau/default.nix index 48f9d7bbbf22..41c858ba9797 100644 --- a/pkgs/tools/security/gau/default.nix +++ b/pkgs/tools/security/gau/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-z8JmMMob12wRTdpFoVbRHTDwet9AMXet49lHEDVVAnw="; }; - vendorSha256 = "sha256-HQATUCzYvhhlqe4HhNu9H4CqmY2IGLNJ9ydt3/igSmQ="; + vendorHash = "sha256-HQATUCzYvhhlqe4HhNu9H4CqmY2IGLNJ9ydt3/igSmQ="; meta = with lib; { description = "Tool to fetch known URLs"; diff --git a/pkgs/tools/security/gomapenum/default.nix b/pkgs/tools/security/gomapenum/default.nix index a09893378491..6e1da08d14f0 100644 --- a/pkgs/tools/security/gomapenum/default.nix +++ b/pkgs/tools/security/gomapenum/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-a0JpHk5pUe+MkcmJl871JwkOfFDg3S4yOzFIeXCReLE="; }; - vendorSha256 = "sha256-5C0dDY/42H8oHNdQaKYiuqpi2QqqgHC7VMO/0kFAofY="; + vendorHash = "sha256-5C0dDY/42H8oHNdQaKYiuqpi2QqqgHC7VMO/0kFAofY="; postInstall = '' mv $out/bin/src $out/bin/$pname diff --git a/pkgs/tools/security/gospider/default.nix b/pkgs/tools/security/gospider/default.nix index 469be63a9024..91e940ec87eb 100644 --- a/pkgs/tools/security/gospider/default.nix +++ b/pkgs/tools/security/gospider/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-1EnKheHaS1kxw0cjxCahT3rUWBXiqxjKefrDBI2xIvY="; }; - vendorSha256 = "sha256-egjjSEZH8F6UMbnkz3xytIzdW/oITB3RL1ddxrmvSZM="; + vendorHash = "sha256-egjjSEZH8F6UMbnkz3xytIzdW/oITB3RL1ddxrmvSZM="; # tests require internet access and API keys doCheck = false; diff --git a/pkgs/tools/security/hakrawler/default.nix b/pkgs/tools/security/hakrawler/default.nix index a2b62f9b270a..0577ceb8c103 100644 --- a/pkgs/tools/security/hakrawler/default.nix +++ b/pkgs/tools/security/hakrawler/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { hash = "sha256-ZJG5KlIlzaztG27NoSlILj0I94cm2xZq28qx1ebrSmc="; }; - vendorSha256 = "sha256-NzgFwPvuEZ2/Ks5dZNRJjzzCNPRGelQP/A6eZltqkmM="; + vendorHash = "sha256-NzgFwPvuEZ2/Ks5dZNRJjzzCNPRGelQP/A6eZltqkmM="; meta = with lib; { description = "Web crawler for the discovery of endpoints and assets"; diff --git a/pkgs/tools/security/ic-keysmith/default.nix b/pkgs/tools/security/ic-keysmith/default.nix index 522323e4e4a4..c3fd58933a3b 100644 --- a/pkgs/tools/security/ic-keysmith/default.nix +++ b/pkgs/tools/security/ic-keysmith/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-+wYWIoPYc7qpTRS4Zlxp50Up8obZOmfQpiT0SWwVJE0="; }; - vendorSha256 = "sha256-rIH10TRWOgmJM8bnKXYTsmmAtlrMMxHc8rnaCmMJGdw="; + vendorHash = "sha256-rIH10TRWOgmJM8bnKXYTsmmAtlrMMxHc8rnaCmMJGdw="; meta = with lib; { description = "Hierarchical Deterministic Key Derivation for the Internet Computer"; diff --git a/pkgs/tools/security/jsubfinder/default.nix b/pkgs/tools/security/jsubfinder/default.nix index e182af68b95e..328c81143d1c 100644 --- a/pkgs/tools/security/jsubfinder/default.nix +++ b/pkgs/tools/security/jsubfinder/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { hash = "sha256-QjRYJyk0uFGa6FCCYK9SIJhoyam4ALsQJ26DsmbNk8s="; }; - vendorSha256 = "sha256-pr4KkszyzEl+yLJousx29tr7UZDJf0arEfXBb7eumww="; + vendorHash = "sha256-pr4KkszyzEl+yLJousx29tr7UZDJf0arEfXBb7eumww="; meta = with lib; { description = "Tool to search for in Javascript hidden subdomains and secrets"; diff --git a/pkgs/tools/security/jwt-hack/default.nix b/pkgs/tools/security/jwt-hack/default.nix index 975d93d61da1..351414b25eee 100644 --- a/pkgs/tools/security/jwt-hack/default.nix +++ b/pkgs/tools/security/jwt-hack/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { hash = "sha256-K0ZtEi0zAKRlIGvorrXmtmkcMvyLIXWPnVMQANZbClk="; }; - vendorSha256 = "sha256-VYh3oRy8bmtXf6AnLNi/M2kA6t+crW3AXBiGovpdt8U="; + vendorHash = "sha256-VYh3oRy8bmtXf6AnLNi/M2kA6t+crW3AXBiGovpdt8U="; meta = with lib; { description = "Tool for attacking JWT"; diff --git a/pkgs/tools/security/kdigger/default.nix b/pkgs/tools/security/kdigger/default.nix index 13bef69e6d33..82070c89447a 100644 --- a/pkgs/tools/security/kdigger/default.nix +++ b/pkgs/tools/security/kdigger/default.nix @@ -23,7 +23,7 @@ buildGoModule rec { find "$out" -name .git -print0 | xargs -0 rm -rf ''; }; - vendorSha256 = "sha256-rDJFowbOj77n/sBoDgFEF+2PgghxufvIgzbMqrHehws="; + vendorHash = "sha256-rDJFowbOj77n/sBoDgFEF+2PgghxufvIgzbMqrHehws="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/tools/security/keybase/default.nix b/pkgs/tools/security/keybase/default.nix index afc2eadb63fc..ce82a720f2d0 100644 --- a/pkgs/tools/security/keybase/default.nix +++ b/pkgs/tools/security/keybase/default.nix @@ -18,7 +18,7 @@ buildGoModule rec { rev = "v${version}"; sha256 = "sha256-JiYufEsoj/98An2qKdm/Uu4YHJr6ttc/VHn4kMgkuwI="; }; - vendorSha256 = "sha256-D8b/pvmBGCnaRuf92FYgRcSSbN59Yu0CHKxAybdYjS4="; + vendorHash = "sha256-D8b/pvmBGCnaRuf92FYgRcSSbN59Yu0CHKxAybdYjS4="; patches = [ (substituteAll { diff --git a/pkgs/tools/security/keybase/kbfs.nix b/pkgs/tools/security/keybase/kbfs.nix index aad08d1a3994..3c508e86f76f 100644 --- a/pkgs/tools/security/keybase/kbfs.nix +++ b/pkgs/tools/security/keybase/kbfs.nix @@ -3,7 +3,7 @@ buildGoModule { pname = "kbfs"; - inherit (keybase) src version vendorSha256; + inherit (keybase) src version vendorHash; modRoot = "go"; subPackages = [ "kbfs/kbfsfuse" "kbfs/redirector" "kbfs/kbfsgit/git-remote-keybase" ]; diff --git a/pkgs/tools/security/kubeaudit/default.nix b/pkgs/tools/security/kubeaudit/default.nix index b38a4b8fe593..61488fdb513b 100644 --- a/pkgs/tools/security/kubeaudit/default.nix +++ b/pkgs/tools/security/kubeaudit/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { hash = "sha256-e6No8Md/KZUFNtPJOrSdv1GlGmxX7+tmWNjQGFdtJpc="; }; - vendorSha256 = "sha256-IxrAJaltg7vo3SQRC7OokSD5SM8xiX7iG8ZxKYEe9/E="; + vendorHash = "sha256-IxrAJaltg7vo3SQRC7OokSD5SM8xiX7iG8ZxKYEe9/E="; postInstall = '' mv $out/bin/cmd $out/bin/$pname diff --git a/pkgs/tools/security/lmp/default.nix b/pkgs/tools/security/lmp/default.nix index 2f7f0283f904..2b945478f3da 100644 --- a/pkgs/tools/security/lmp/default.nix +++ b/pkgs/tools/security/lmp/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-VL/Hp7YaXNcV9JPb3kgRHcdhJJ5p3KHUf3hHbT3gKVk="; }; - vendorSha256 = "sha256-3NTaJ/Y3Tc6UGLfYTKjZxAAI43GJyZQ5wQVYbnXHSYc="; + vendorHash = "sha256-3NTaJ/Y3Tc6UGLfYTKjZxAAI43GJyZQ5wQVYbnXHSYc="; meta = with lib; { description = "Scanning and validation toolkit for the Log4J vulnerability"; diff --git a/pkgs/tools/security/melt/default.nix b/pkgs/tools/security/melt/default.nix index 6a1d6379f2b4..99186a40c170 100644 --- a/pkgs/tools/security/melt/default.nix +++ b/pkgs/tools/security/melt/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-ZDUvwBxPFE0RBgNGoZlU+LkyIXINZITqBnKDFnr59+Q="; }; - vendorSha256 = "sha256-vTSLyRdv4rAYvy/2S7NnQNs144wyJOLzFkyBBW0TRmo="; + vendorHash = "sha256-vTSLyRdv4rAYvy/2S7NnQNs144wyJOLzFkyBBW0TRmo="; ldflags = [ "-s" "-w" "-X=main.Version=${version}" ]; diff --git a/pkgs/tools/security/metabigor/default.nix b/pkgs/tools/security/metabigor/default.nix index fe0b150bc8d0..84e4d39d6a2c 100644 --- a/pkgs/tools/security/metabigor/default.nix +++ b/pkgs/tools/security/metabigor/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-T1P+jAAsKObKRaoxH8c/DMEfXtmSrvnDd5Y3ocKcCSc="; }; - vendorSha256 = "sha256-V+72l2TvhEWgDg7kvn5OOjYcyEgWGLgTGnt58Bu+AEQ="; + vendorHash = "sha256-V+72l2TvhEWgDg7kvn5OOjYcyEgWGLgTGnt58Bu+AEQ="; # Disabled for now as there are some failures ("undefined:") doCheck = false; diff --git a/pkgs/tools/security/nosqli/default.nix b/pkgs/tools/security/nosqli/default.nix index dbe336edc6d0..47095902cea6 100644 --- a/pkgs/tools/security/nosqli/default.nix +++ b/pkgs/tools/security/nosqli/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-CgD9b5eHDK/8QhQmrqT09Jf9snn9WItNMtTNbJFT2sI="; }; - vendorSha256 = "sha256-QnrzEei4Pt4C0vCJu4YN28lWWAqEikmNLrqshd3knx4="; + vendorHash = "sha256-QnrzEei4Pt4C0vCJu4YN28lWWAqEikmNLrqshd3knx4="; meta = with lib; { description = "NoSql Injection tool for finding vulnerable websites using MongoDB"; diff --git a/pkgs/tools/security/passphrase2pgp/default.nix b/pkgs/tools/security/passphrase2pgp/default.nix index 03d766a34479..0ccbcca06c20 100644 --- a/pkgs/tools/security/passphrase2pgp/default.nix +++ b/pkgs/tools/security/passphrase2pgp/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { hash = "sha256-it1XYzLiteL0oq4SZp5E3s6oSkFKi3ZY0Lt+P0gmNag="; }; - vendorSha256 = "sha256-2H9YRVCaari47ppSkcQYg/P4Dzb4k5PLjKAtfp39NR8="; + vendorHash = "sha256-2H9YRVCaari47ppSkcQYg/P4Dzb4k5PLjKAtfp39NR8="; postInstall = '' mkdir -p $out/share/doc/$name diff --git a/pkgs/tools/security/pwdsafety/default.nix b/pkgs/tools/security/pwdsafety/default.nix index ce4e149e7700..12785154a177 100644 --- a/pkgs/tools/security/pwdsafety/default.nix +++ b/pkgs/tools/security/pwdsafety/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { hash = "sha256-ryMLiehJVZhQ3ZQf4/g7ILeJri78A6z5jfell0pD9E8="; }; - vendorSha256 = "sha256-b+tWTQUyYDzY2O28hwy5vI6b6S889TCiVh7hQhw/KAc="; + vendorHash = "sha256-b+tWTQUyYDzY2O28hwy5vI6b6S889TCiVh7hQhw/KAc="; meta = with lib; { description = "Command line tool checking password safety"; diff --git a/pkgs/tools/security/sammler/default.nix b/pkgs/tools/security/sammler/default.nix index 083422cf9919..edc04d86371e 100644 --- a/pkgs/tools/security/sammler/default.nix +++ b/pkgs/tools/security/sammler/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { sha256 = "1gsv83sbqc9prkigbjvkhh547w12l3ynbajpnbqyf8sz4bd1nj5c"; }; - vendorSha256 = "sha256-0ZBPLONUZyazZ22oLO097hdX5xuHx2G6rZCAsCwqq4s="; + vendorHash = "sha256-0ZBPLONUZyazZ22oLO097hdX5xuHx2G6rZCAsCwqq4s="; subPackages = [ "." ]; diff --git a/pkgs/tools/security/sdlookup/default.nix b/pkgs/tools/security/sdlookup/default.nix index 80b6d3ba6881..62d6dffdaa2b 100644 --- a/pkgs/tools/security/sdlookup/default.nix +++ b/pkgs/tools/security/sdlookup/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { hash = "sha256-c6xAgOxle51waiFsSWvwO9eyt1KXuM0dEeepVsRQHkk="; }; - vendorSha256 = "sha256-j0UzucZ6kDwM+6U0ZyIW9u8XG/Bn+VUCO2vV1BbnQo0="; + vendorHash = "sha256-j0UzucZ6kDwM+6U0ZyIW9u8XG/Bn+VUCO2vV1BbnQo0="; meta = with lib; { description = "IP lookups for open ports and vulnerabilities from internetdb.shodan.io"; diff --git a/pkgs/tools/security/secrets-extractor/default.nix b/pkgs/tools/security/secrets-extractor/default.nix index 948ee05bbd91..b8118e6cf95c 100644 --- a/pkgs/tools/security/secrets-extractor/default.nix +++ b/pkgs/tools/security/secrets-extractor/default.nix @@ -15,7 +15,7 @@ buildGoModule rec { hash = "sha256-cwEG0cXlyhrUSQAuZ/5KVqJtez13GvZghabsooXCM/U="; }; - vendorSha256 = "sha256-KhAaBNSpFu7LAWiHCWD1OssexW9N96ArDb7Oo1AaiWI="; + vendorHash = "sha256-KhAaBNSpFu7LAWiHCWD1OssexW9N96ArDb7Oo1AaiWI="; buildInputs = [ libpcap diff --git a/pkgs/tools/security/snowcat/default.nix b/pkgs/tools/security/snowcat/default.nix index e6211caec556..429564f91f1e 100644 --- a/pkgs/tools/security/snowcat/default.nix +++ b/pkgs/tools/security/snowcat/default.nix @@ -10,7 +10,7 @@ buildGoModule rec { rev = "v${version}"; sha256 = "sha256-EulQYGOMIh952e4Xp13hT/HMW3qP1QXYtt5PEej1VTY="; }; - vendorSha256 = "sha256-D6ipwGMxT0B3uYUzg6Oo2TYnsOVBY0mYO5lC7vtVPc0="; + vendorHash = "sha256-D6ipwGMxT0B3uYUzg6Oo2TYnsOVBY0mYO5lC7vtVPc0="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/tools/security/sops/default.nix b/pkgs/tools/security/sops/default.nix index 9c6263c5c855..1f0df71b5445 100644 --- a/pkgs/tools/security/sops/default.nix +++ b/pkgs/tools/security/sops/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-wN1ksLwD4G+fUhvCe+jahh1PojPk6L6tnx1rsc7dz+M="; }; - vendorSha256 = "sha256-8IaE+vhVZkc9QDR6+/3eOSsuf3SYF2upNcCifbqtx14="; + vendorHash = "sha256-8IaE+vhVZkc9QDR6+/3eOSsuf3SYF2upNcCifbqtx14="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/tools/security/sx-go/default.nix b/pkgs/tools/security/sx-go/default.nix index c49ed42dcc1e..11a9b497fdf0 100644 --- a/pkgs/tools/security/sx-go/default.nix +++ b/pkgs/tools/security/sx-go/default.nix @@ -16,7 +16,7 @@ buildGoModule rec { sha256 = "sha256-HTIzA1QOVn3V/hGUu7wLIYUNYmcJ/FXi2yr6BGRizZA="; }; - vendorSha256 = "sha256-TWRMNt6x8zuvhP1nz4R6IVCX+9HityvVpzxRhDiMyO4="; + vendorHash = "sha256-TWRMNt6x8zuvhP1nz4R6IVCX+9HityvVpzxRhDiMyO4="; patches = [ # Fix darwin builds: https://github.com/v-byte-cpu/sx/pull/120 diff --git a/pkgs/tools/security/urlhunter/default.nix b/pkgs/tools/security/urlhunter/default.nix index 08b8c1af2eab..c70c43027a25 100644 --- a/pkgs/tools/security/urlhunter/default.nix +++ b/pkgs/tools/security/urlhunter/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-lX5zh+fYVSyWPUOnfRNMGZPsiuxjKBSpluPUMN9mZ+k="; }; - vendorSha256 = "sha256-JDDxarFROBhdi76mY6udn++lReKLdju/JBpj3JhGdQA="; + vendorHash = "sha256-JDDxarFROBhdi76mY6udn++lReKLdju/JBpj3JhGdQA="; meta = with lib; { description = "Recon tool that allows searching shortened URLs"; diff --git a/pkgs/tools/security/wprecon/default.nix b/pkgs/tools/security/wprecon/default.nix index 964b6b7ff5bf..3cb301d34d30 100644 --- a/pkgs/tools/security/wprecon/default.nix +++ b/pkgs/tools/security/wprecon/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { hash = "sha256-23zJD3Nnkeko+J2FjPq5RA5dIjORMXvwt3wtAYiVlQs="; }; - vendorSha256 = "sha256-FYdsLcW6FYxSgixZ5US9cBPABOAVwidC3ejUNbs1lbA="; + vendorHash = "sha256-FYdsLcW6FYxSgixZ5US9cBPABOAVwidC3ejUNbs1lbA="; postFixup = '' # Rename binary diff --git a/pkgs/tools/security/yubikey-agent/default.nix b/pkgs/tools/security/yubikey-agent/default.nix index 76f63e58222b..01e512e49bdd 100644 --- a/pkgs/tools/security/yubikey-agent/default.nix +++ b/pkgs/tools/security/yubikey-agent/default.nix @@ -21,7 +21,7 @@ buildGoModule rec { substituteInPlace main.go --replace 'notify-send' ${libnotify}/bin/notify-send ''; - vendorSha256 = "sha256-+IRPs3wm3EvIgfQRpzcVpo2JBaFQlyY/RI1G7XfVS84="; + vendorHash = "sha256-+IRPs3wm3EvIgfQRpzcVpo2JBaFQlyY/RI1G7XfVS84="; doCheck = false; diff --git a/pkgs/tools/security/zkar/default.nix b/pkgs/tools/security/zkar/default.nix index 315e45cb0384..85bed59a1fa2 100644 --- a/pkgs/tools/security/zkar/default.nix +++ b/pkgs/tools/security/zkar/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { hash = "sha256-TGqsiYZLbXvCc30OtvNbX4INlzw3ZfjvXal47rP7NDw="; }; - vendorSha256 = "sha256-HQ9qclaaDj0H8PL0oQG1WsH19wVQpynijHNcal4gWBE="; + vendorHash = "sha256-HQ9qclaaDj0H8PL0oQG1WsH19wVQpynijHNcal4gWBE="; meta = with lib; { description = "Java serialization protocol analysis tool"; diff --git a/pkgs/tools/system/ctop/default.nix b/pkgs/tools/system/ctop/default.nix index 550fb7827afe..e3a9e82d8a22 100644 --- a/pkgs/tools/system/ctop/default.nix +++ b/pkgs/tools/system/ctop/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-tojSzgpoGQg6MwV/MVpQpCA5w6bZO+9IOvfkw0Ydr6c="; }; - vendorSha256 = "sha256-UAja7XuoLqJFNcK1PgHGcuf/HbvSrWyRvW2D3T7Hg0g="; + vendorHash = "sha256-UAja7XuoLqJFNcK1PgHGcuf/HbvSrWyRvW2D3T7Hg0g="; ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.build=v${version}" ]; diff --git a/pkgs/tools/system/gohai/default.nix b/pkgs/tools/system/gohai/default.nix index 1de0fa7c4e3c..64d051a923f2 100644 --- a/pkgs/tools/system/gohai/default.nix +++ b/pkgs/tools/system/gohai/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-vdzGGTg9SHYS0OQUn3VvrQGpKxzqxBRXDKOm0c7FvYY="; }; - vendorSha256 = "sha256-aN1fwGbBm45e6qdRu+4wnv2ZI7SOsIPONB4vF9o2vlI="; + vendorHash = "sha256-aN1fwGbBm45e6qdRu+4wnv2ZI7SOsIPONB4vF9o2vlI="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/tools/system/gotop/default.nix b/pkgs/tools/system/gotop/default.nix index 5411bc94609f..966406971a55 100644 --- a/pkgs/tools/system/gotop/default.nix +++ b/pkgs/tools/system/gotop/default.nix @@ -23,7 +23,7 @@ buildGoModule rec { }; proxyVendor = true; - vendorSha256 = "sha256-KLeVSrPDS1lKsKFemRmgxT6Pxack3X3B/btSCOUSUFY="; + vendorHash = "sha256-KLeVSrPDS1lKsKFemRmgxT6Pxack3X3B/btSCOUSUFY="; ldflags = [ "-s" "-w" "-X main.Version=v${version}" ]; diff --git a/pkgs/tools/system/localtime/default.nix b/pkgs/tools/system/localtime/default.nix index ee2a25bdf79d..10ee42bf0308 100644 --- a/pkgs/tools/system/localtime/default.nix +++ b/pkgs/tools/system/localtime/default.nix @@ -15,7 +15,7 @@ buildGoModule { hash = "sha256-bPQ1c2KUTkxx2g7IvLmrKgJKfRHTLlTXLR/QQ0O4CrI="; }; - vendorSha256 = "sha256-12JnEU41sp9qRP07p502EYogveE+aNdfmLwlDRbIdxU="; + vendorHash = "sha256-12JnEU41sp9qRP07p502EYogveE+aNdfmLwlDRbIdxU="; nativeBuildInputs = [ m4 ]; diff --git a/pkgs/tools/system/natscli/default.nix b/pkgs/tools/system/natscli/default.nix index 830809593633..b7cf8fb2056d 100644 --- a/pkgs/tools/system/natscli/default.nix +++ b/pkgs/tools/system/natscli/default.nix @@ -14,7 +14,7 @@ buildGoModule rec { sha256 = "sha256-Sro0EwHP1pszuOYP6abZO5XjJvbXrDDeSAbzPA2p00M="; }; - vendorSha256 = "sha256-HSKBUw9ZO150hLXyGX66U9XpLX2yowxYVdcdDVdqrAc="; + vendorHash = "sha256-HSKBUw9ZO150hLXyGX66U9XpLX2yowxYVdcdDVdqrAc="; meta = with lib; { description = "NATS Command Line Interface"; diff --git a/pkgs/tools/text/frangipanni/default.nix b/pkgs/tools/text/frangipanni/default.nix index 58da1a4be4df..bb144b8f43e1 100644 --- a/pkgs/tools/text/frangipanni/default.nix +++ b/pkgs/tools/text/frangipanni/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-jIXyqwZWfCBSDTTodHTct4V5rjYv7h4Vcw7cXOFk17w="; }; - vendorSha256 = "sha256-TSN5M/UCTtfoTf1hDCfrJMCFdSwL/NVXssgt4aefom8="; + vendorHash = "sha256-TSN5M/UCTtfoTf1hDCfrJMCFdSwL/NVXssgt4aefom8="; meta = with lib; { description = "Convert lines of text into a tree structure"; diff --git a/pkgs/tools/text/pbgopy/default.nix b/pkgs/tools/text/pbgopy/default.nix index d4ed4eb0f03a..dad688f1dfb5 100644 --- a/pkgs/tools/text/pbgopy/default.nix +++ b/pkgs/tools/text/pbgopy/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-P/MFDFMsqSTVErTM9izJJSMIbiOcbQ9Ya10/w6NRcYw="; }; - vendorSha256 = "sha256-S2X74My6wyDZOsEYTDilCFaYgV2vQzU0jOAY9cEkJ6A="; + vendorHash = "sha256-S2X74My6wyDZOsEYTDilCFaYgV2vQzU0jOAY9cEkJ6A="; meta = with lib; { description = "Copy and paste between devices"; diff --git a/pkgs/tools/text/shfmt/default.nix b/pkgs/tools/text/shfmt/default.nix index eeeae662efc5..0b1457f43b27 100644 --- a/pkgs/tools/text/shfmt/default.nix +++ b/pkgs/tools/text/shfmt/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-5/WGYsmZAFFdONpViRaqjL/KXyOu618A8S/SqcgZoEU="; }; - vendorSha256 = "sha256-V/6wiC0oanytzMGW/lP+t+uz6cMgXRuviDEj7ErQh5k="; + vendorHash = "sha256-V/6wiC0oanytzMGW/lP+t+uz6cMgXRuviDEj7ErQh5k="; subPackages = [ "cmd/shfmt" ]; diff --git a/pkgs/tools/virtualization/distrobuilder/default.nix b/pkgs/tools/virtualization/distrobuilder/default.nix index ac65ea3f54b9..3619d2f25a14 100644 --- a/pkgs/tools/virtualization/distrobuilder/default.nix +++ b/pkgs/tools/virtualization/distrobuilder/default.nix @@ -24,7 +24,7 @@ buildGoModule rec { pname = "distrobuilder"; version = "2.1"; - vendorSha256 = "sha256-yRMsf8KfpNmVUX4Rn4ZPLUPFZCT/g78MKAfgbFDPVkE="; + vendorHash = "sha256-yRMsf8KfpNmVUX4Rn4ZPLUPFZCT/g78MKAfgbFDPVkE="; src = fetchFromGitHub { owner = "lxc"; diff --git a/pkgs/tools/virtualization/marathonctl/default.nix b/pkgs/tools/virtualization/marathonctl/default.nix index 12111819c26b..e8f27e00d851 100644 --- a/pkgs/tools/virtualization/marathonctl/default.nix +++ b/pkgs/tools/virtualization/marathonctl/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { sha256 = "sha256-MigmvOwYa0uYPexchS4MP74I1Tp6QHYuQVSOh1+FrMg="; }; - vendorSha256 = "sha256-Oiol4KuPOyJq2Bfc5div+enX4kQqYn20itmwWBecuIg="; + vendorHash = "sha256-Oiol4KuPOyJq2Bfc5div+enX4kQqYn20itmwWBecuIg="; ldflags = [ "-s" "-w" ]; diff --git a/pkgs/tools/virtualization/rootlesskit/default.nix b/pkgs/tools/virtualization/rootlesskit/default.nix index d19d4b8d5129..cfd89ee451e6 100644 --- a/pkgs/tools/virtualization/rootlesskit/default.nix +++ b/pkgs/tools/virtualization/rootlesskit/default.nix @@ -11,7 +11,7 @@ buildGoModule rec { hash = "sha256-QjGjP7GiJiP2bJE707Oc4wZ9o/gRmSboK9xGbbyG5EM="; }; - vendorSha256 = "sha256-mNuj4/e1qH3P5MfbwPLddXWhc8aDcQuoSSHZ+S+zKWw="; + vendorHash = "sha256-mNuj4/e1qH3P5MfbwPLddXWhc8aDcQuoSSHZ+S+zKWw="; passthru = { updateScript = nix-update-script { }; diff --git a/pkgs/tools/wayland/clipman/default.nix b/pkgs/tools/wayland/clipman/default.nix index 1382e7d0838d..d7ff425e1a3d 100644 --- a/pkgs/tools/wayland/clipman/default.nix +++ b/pkgs/tools/wayland/clipman/default.nix @@ -17,7 +17,7 @@ buildGoModule rec { sha256 = "sha256-lahya0w1bgcTnpxANxNT2MIWu5yVUdqQl19kQzwUdAw="; }; - vendorSha256 = "sha256-Z/sVCJz/igPDdeczC6pemLub6X6z4ZGlBwBmRsEnXKI="; + vendorHash = "sha256-Z/sVCJz/igPDdeczC6pemLub6X6z4ZGlBwBmRsEnXKI="; outputs = [ "out" "man" ]; From 3d3e257e05b1057f4f8cebce97cc831045ce04af Mon Sep 17 00:00:00 2001 From: Sascha Grunert Date: Wed, 13 Sep 2023 09:31:41 +0200 Subject: [PATCH 237/346] conmon-rs: 0.6.0 -> 0.6.1 Signed-off-by: Sascha Grunert --- .../virtualization/conmon-rs/Cargo.lock.patch | 31 ------------------- .../virtualization/conmon-rs/default.nix | 9 ++---- 2 files changed, 3 insertions(+), 37 deletions(-) delete mode 100644 pkgs/applications/virtualization/conmon-rs/Cargo.lock.patch diff --git a/pkgs/applications/virtualization/conmon-rs/Cargo.lock.patch b/pkgs/applications/virtualization/conmon-rs/Cargo.lock.patch deleted file mode 100644 index 480b76445a61..000000000000 --- a/pkgs/applications/virtualization/conmon-rs/Cargo.lock.patch +++ /dev/null @@ -1,31 +0,0 @@ -diff --git a/Cargo.lock b/Cargo.lock -index 4cd154b..fee3267 100644 ---- a/Cargo.lock -+++ b/Cargo.lock -@@ -323,7 +323,7 @@ dependencies = [ - - [[package]] - name = "conmon-common" --version = "0.5.1" -+version = "0.6.0" - dependencies = [ - "capnp", - "capnpc", -@@ -331,7 +331,7 @@ dependencies = [ - - [[package]] - name = "conmonrs" --version = "0.5.1" -+version = "0.6.0" - dependencies = [ - "anyhow", - "capnp", -@@ -376,7 +376,7 @@ dependencies = [ - - [[package]] - name = "conmonrs-cli" --version = "0.5.1" -+version = "0.6.0" - dependencies = [ - "capnp", - "capnp-rpc", diff --git a/pkgs/applications/virtualization/conmon-rs/default.nix b/pkgs/applications/virtualization/conmon-rs/default.nix index 84c0e3613851..7599c5eb6652 100644 --- a/pkgs/applications/virtualization/conmon-rs/default.nix +++ b/pkgs/applications/virtualization/conmon-rs/default.nix @@ -7,22 +7,19 @@ rustPlatform.buildRustPackage rec { pname = "conmon-rs"; - version = "0.6.0"; + version = "0.6.1"; src = fetchFromGitHub { owner = "containers"; repo = pname; rev = "v${version}"; - sha256 = "sha256-RQ3cVM7aEuCCmOCr4UWkxBMr66tdYFl0nNO7tXY05vE="; + sha256 = "sha256-B8uloch+ucOLIIR64GE5Z8ahe2NLqPmDGcugQVSqpl4="; }; - # Cargo.lock is out of date for this release. - cargoPatches = [ ./Cargo.lock.patch ]; - nativeBuildInputs = [ capnproto protobuf ]; doCheck = false; - cargoHash = "sha256-BNowZkD+y1jh25EvfhQzvT5BZzrq46KBd69AJ//9enE="; + cargoHash = "sha256-hEhAnNppiyY6EcdHfri534ih8VUfpT7lO9L4mFJ6Caw="; meta = with lib; { description = "An OCI container runtime monitor written in Rust"; From c91f8c3831da8a6bc3bd6b4a4b184f64d0312640 Mon Sep 17 00:00:00 2001 From: mib Date: Wed, 13 Sep 2023 09:45:39 +0200 Subject: [PATCH 238/346] pynitrokey: add missing python dependency fails at runtime without the importlib-metadata dependency --- pkgs/tools/security/pynitrokey/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/security/pynitrokey/default.nix b/pkgs/tools/security/pynitrokey/default.nix index 337d08da9624..b9847171616f 100644 --- a/pkgs/tools/security/pynitrokey/default.nix +++ b/pkgs/tools/security/pynitrokey/default.nix @@ -39,6 +39,7 @@ buildPythonApplication rec { urllib3 tlv8 typing-extensions + importlib-metadata ]; nativeBuildInputs = [ From 167050e950cedeeae7b0bb2709e085667cda7233 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 07:49:45 +0000 Subject: [PATCH 239/346] wgcf: 2.2.18 -> 2.2.19 --- pkgs/applications/networking/wgcf/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/wgcf/default.nix b/pkgs/applications/networking/wgcf/default.nix index 3a4e836aca6d..9b6db44f437e 100644 --- a/pkgs/applications/networking/wgcf/default.nix +++ b/pkgs/applications/networking/wgcf/default.nix @@ -2,18 +2,18 @@ buildGoModule rec { pname = "wgcf"; - version = "2.2.18"; + version = "2.2.19"; src = fetchFromGitHub { owner = "ViRb3"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-MTh92TlMQeIMmysQLcdsz45JHGJdOyR4oABjJUPobfE="; + hash = "sha256-wEBPaqqpiQdFohlzpVDVMwYq8+NjSQrh58yWl/W+n8M="; }; subPackages = "."; - vendorHash = "sha256-4VOjxGboYO00tJ17LNAYXiKQVUSUoveEYG/L+idYY6s="; + vendorHash = "sha256-i1CM0rG2DmgYMa+Na0In4fVJSGZlMTRajjLEZUvrmE8="; meta = with lib; { description = "Cross-platform, unofficial CLI for Cloudflare Warp"; From caca6b7279fca851a48600a70cde7dbc98f80ad8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 01:02:00 +0000 Subject: [PATCH 240/346] supabase-cli: 1.88.0 -> 1.97.1 --- pkgs/development/tools/supabase-cli/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/supabase-cli/default.nix b/pkgs/development/tools/supabase-cli/default.nix index 9d46c7842be4..20e2194fed92 100644 --- a/pkgs/development/tools/supabase-cli/default.nix +++ b/pkgs/development/tools/supabase-cli/default.nix @@ -9,16 +9,16 @@ buildGoModule rec { pname = "supabase-cli"; - version = "1.88.0"; + version = "1.97.1"; src = fetchFromGitHub { owner = "supabase"; repo = "cli"; rev = "v${version}"; - hash = "sha256-OgeKr0xSWp83Ri3WBNsY3TL6tAWsMtsEdD6KeKdPdCw="; + hash = "sha256-k1/6QAxQ3h5xG+2VBc/PillddYhrvsQrtJK5tXrb0sQ="; }; - vendorHash = "sha256-efcgpxvhHe6KtNfNYYc5fYv93fJPf63V39d+5AcCvPQ="; + vendorHash = "sha256-oEIRmkOCHIvIQJX7GQVJD/aURoEJ7V/LJFEg+oltWEY="; ldflags = [ "-s" From 41da92985049776cbd84a892a03c04292bff69cb Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 08:13:49 +0000 Subject: [PATCH 241/346] eksctl: 0.155.0 -> 0.156.0 --- pkgs/tools/admin/eksctl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/admin/eksctl/default.nix b/pkgs/tools/admin/eksctl/default.nix index 64aeb86a13ec..bf50e678a456 100644 --- a/pkgs/tools/admin/eksctl/default.nix +++ b/pkgs/tools/admin/eksctl/default.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "eksctl"; - version = "0.155.0"; + version = "0.156.0"; src = fetchFromGitHub { owner = "weaveworks"; repo = pname; rev = version; - hash = "sha256-4/U5ZAmNI3+uvxcDbSP0/AHnrn4eesDErtQrQPot8G4="; + hash = "sha256-E50MtMrZy2lnMjoYV4MJF+0YGLmGEioOF74rldXdOPU="; }; - vendorHash = "sha256-oqxAiFe7NE3WZkJIL63HmOtVR98WyMK4+VAGqb/eDN0="; + vendorHash = "sha256-maMORSR6ZAasUxAy4kXvua4C+/dWdZbDde2VIKSV8w4="; doCheck = false; From c76d02d4da43e18243bdd13543bfb06f6fe18f49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Wed, 13 Sep 2023 10:15:36 +0200 Subject: [PATCH 242/346] vimPlugins: add several plugins Adds actions-preview.nvim, hmts.nvim, smartcolumn.nvim and telekasten.nvim. --- pkgs/applications/editors/vim/plugins/vim-plugin-names | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names index 4b9ad1d45e08..b83151b2c77a 100644 --- a/pkgs/applications/editors/vim/plugins/vim-plugin-names +++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names @@ -40,6 +40,7 @@ https://github.com/ycm-core/YouCompleteMe/,, https://github.com/vim-scripts/a.vim/,, https://github.com/mileszs/ack.vim/,, https://github.com/eikenb/acp/,, +https://github.com/aznhe21/actions-preview.nvim/,, https://github.com/Mofiqul/adwaita.nvim/,HEAD, https://github.com/stevearc/aerial.nvim/,, https://github.com/Numkil/ag.nvim/,, @@ -349,6 +350,7 @@ https://github.com/Yggdroot/hiPairs/,, https://github.com/tzachar/highlight-undo.nvim/,HEAD, https://git.sr.ht/~soywod/himalaya-vim,, https://github.com/mpickering/hlint-refactor-vim/,, +https://github.com/calops/hmts.nvim/,, https://github.com/edluffy/hologram.nvim/,, https://github.com/urbit/hoon.vim/,, https://github.com/phaazon/hop.nvim/,, @@ -748,6 +750,7 @@ https://github.com/lotabout/skim.vim/,, https://github.com/mopp/sky-color-clock.vim/,, https://github.com/kovisoft/slimv/,, https://github.com/mrjones2014/smart-splits.nvim/,, +https://github.com/m4xshen/smartcolumn.nvim/,, https://github.com/gorkunov/smartpairs.vim/,, https://github.com/ibhagwan/smartyank.nvim/,, https://github.com/camspiers/snap/,, @@ -800,6 +803,7 @@ https://github.com/vim-scripts/taglist.vim/,, https://github.com/wellle/targets.vim/,, https://github.com/tools-life/taskwiki/,, https://github.com/tomtom/tcomment_vim/,, +https://github.com/renerocksai/telekasten.nvim/,, https://github.com/GustavoKatel/telescope-asynctasks.nvim/,, https://github.com/nvim-telescope/telescope-cheat.nvim/,, https://github.com/fannheyward/telescope-coc.nvim/,, From a865b6e9c64a00bda9e008a8bbe3568a0268cc52 Mon Sep 17 00:00:00 2001 From: Sascha Grunert Date: Wed, 13 Sep 2023 10:19:54 +0200 Subject: [PATCH 243/346] cri-o: v1.28.0 -> v1.28.1 Signed-off-by: Sascha Grunert --- pkgs/applications/virtualization/cri-o/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/virtualization/cri-o/default.nix b/pkgs/applications/virtualization/cri-o/default.nix index 4cbc7b20d562..c6ee442d02fe 100644 --- a/pkgs/applications/virtualization/cri-o/default.nix +++ b/pkgs/applications/virtualization/cri-o/default.nix @@ -15,13 +15,13 @@ buildGoModule rec { pname = "cri-o"; - version = "1.28.0"; + version = "1.28.1"; src = fetchFromGitHub { owner = "cri-o"; repo = "cri-o"; rev = "v${version}"; - sha256 = "sha256-vVw3mVliu9JiCgTpwBfubaOkEkNJD4Tb1M7HARg5VjA="; + sha256 = "sha256-4RwR4aM+h0cqogJ9sxoODlPGaXH2PALFoBU3jv/6Agg="; }; vendorHash = null; From 75c7894435dae25ebddbfcac332fa8c7fa41a934 Mon Sep 17 00:00:00 2001 From: Lord-Valen Date: Thu, 31 Aug 2023 02:23:42 -0400 Subject: [PATCH 244/346] nodePackages.terser: use buildNpmPackage --- pkgs/development/node-packages/aliases.nix | 1 + .../node-packages/node-packages.json | 1 - .../node-packages/node-packages.nix | 31 ------------------- .../development/tools/misc/terser/default.nix | 22 +++++++++++++ pkgs/servers/web-apps/discourse/default.nix | 3 +- pkgs/top-level/all-packages.nix | 2 ++ 6 files changed, 27 insertions(+), 33 deletions(-) create mode 100644 pkgs/development/tools/misc/terser/default.nix diff --git a/pkgs/development/node-packages/aliases.nix b/pkgs/development/node-packages/aliases.nix index d4fcd87951ff..47d9639be915 100644 --- a/pkgs/development/node-packages/aliases.nix +++ b/pkgs/development/node-packages/aliases.nix @@ -110,6 +110,7 @@ mapAliases { stf = throw "stf was removed because it was broken"; # added 2023-08-21 surge = pkgs.surge-cli; # Added 2023-09-08 swagger = throw "swagger was removed because it was broken and abandoned upstream"; # added 2023-09-09 + inherit (pkgs) terser; # Added 2023-08-31 thelounge = pkgs.thelounge; # Added 2023-05-22 three = throw "three was removed because it was no longer needed"; # Added 2023-09-08 inherit (pkgs) titanium; # added 2023-08-17 diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json index 56f65d701153..ee7a6ae5f50d 100644 --- a/pkgs/development/node-packages/node-packages.json +++ b/pkgs/development/node-packages/node-packages.json @@ -242,7 +242,6 @@ , {"tedicross": "git+https://github.com/TediCross/TediCross.git#v0.8.7"} , "teck-programmer" , "tern" -, "terser" , "textlint" , "textlint-plugin-latex" , "textlint-rule-abbr-within-parentheses" diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index 6fc85413c173..c3d28fc12a25 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -106636,37 +106636,6 @@ in bypassCache = true; reconstructLock = true; }; - terser = nodeEnv.buildNodePackage { - name = "terser"; - packageName = "terser"; - version = "5.19.2"; - src = fetchurl { - url = "https://registry.npmjs.org/terser/-/terser-5.19.2.tgz"; - sha512 = "qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA=="; - }; - dependencies = [ - sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.1" - sources."@jridgewell/set-array-1.1.2" - sources."@jridgewell/source-map-0.3.5" - sources."@jridgewell/sourcemap-codec-1.4.15" - sources."@jridgewell/trace-mapping-0.3.19" - sources."acorn-8.10.0" - sources."buffer-from-1.1.2" - sources."commander-2.20.3" - sources."source-map-0.6.1" - sources."source-map-support-0.5.21" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "JavaScript parser, mangler/compressor and beautifier toolkit for ES6+"; - homepage = "https://terser.org"; - license = "BSD-2-Clause"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; textlint = nodeEnv.buildNodePackage { name = "textlint"; packageName = "textlint"; diff --git a/pkgs/development/tools/misc/terser/default.nix b/pkgs/development/tools/misc/terser/default.nix new file mode 100644 index 000000000000..8b862bcc2cd3 --- /dev/null +++ b/pkgs/development/tools/misc/terser/default.nix @@ -0,0 +1,22 @@ +{ buildNpmPackage, fetchFromGitHub, lib }: + +buildNpmPackage rec { + pname = "terser"; + version = "5.19.3"; + + src = fetchFromGitHub { + owner = "terser"; + repo = "terser"; + rev = "v${version}"; + hash = "sha256-ZI5ElHnQwoCJspGL/v0PqddMUAAhQGWDZA9utWZD/nM="; + }; + + npmDepsHash = "sha256-M7LGXoZFBQrXpkiofnam7tgFkk6+N7ckPxTcwAAuqxU="; + + meta = with lib; { + description = "JavaScript parser, mangler and compressor toolkit for ES6+"; + homepage = "https://terser.org"; + license = licenses.bsd2; + maintainers = with maintainers; [ talyz ]; + }; +} diff --git a/pkgs/servers/web-apps/discourse/default.nix b/pkgs/servers/web-apps/discourse/default.nix index 394b775f3db2..dbd515de5659 100644 --- a/pkgs/servers/web-apps/discourse/default.nix +++ b/pkgs/servers/web-apps/discourse/default.nix @@ -41,6 +41,7 @@ , dart-sass-embedded , jq , moreutils +, terser , plugins ? [] }@args: @@ -223,7 +224,7 @@ let postgresql redis nodePackages.uglify-js - nodePackages.terser + terser nodePackages.patch-package yarn nodejs_16 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7f5c5ff18fa5..e6bc065e94f8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -20430,6 +20430,8 @@ with pkgs; terrascan = callPackage ../tools/security/terrascan { }; + terser = callPackage ../development/tools/misc/terser { }; + tesh = callPackage ../tools/text/tesh {}; texinfo413 = callPackage ../development/tools/misc/texinfo/4.13a.nix { }; From 96580dfaad2277375fcef9e4b30162a264b17ea7 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Wed, 13 Sep 2023 10:31:05 +0200 Subject: [PATCH 245/346] aaaaxy: 1.4.42 -> 1.4.45 https://github.com/divVerent/aaaaxy/releases/tag/v1.4.45 --- pkgs/games/aaaaxy/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/games/aaaaxy/default.nix b/pkgs/games/aaaaxy/default.nix index 64f9de8c92b8..62ac8ac20c7a 100644 --- a/pkgs/games/aaaaxy/default.nix +++ b/pkgs/games/aaaaxy/default.nix @@ -19,17 +19,17 @@ buildGoModule rec { pname = "aaaaxy"; - version = "1.4.42"; + version = "1.4.45"; src = fetchFromGitHub { owner = "divVerent"; repo = pname; rev = "v${version}"; - hash = "sha256-GD7SgxGZRivVbgrzAe7U0EgkTmrXFvSGzzZUOE7CwbY="; + hash = "sha256-93ffxzYSVumfk7J8K9Ma2WYWaGQLBIxSkds8OKzOCcw="; fetchSubmodules = true; }; - vendorHash = "sha256-1w+/tmF73hN5y5vj++JCX+T5RQ/PF747wmAbN9i7Bgs="; + vendorHash = "sha256-wUH0ohccMjdeGpm9bcw8K7Ss0FZGXaPfxeJCKYkEhJ8="; buildInputs = [ alsa-lib From 086aad060b4f7ec7d5e4a6559922b35840a5517c Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 13 Sep 2023 10:54:15 +0200 Subject: [PATCH 246/346] python311Packages.aiounifi: 61 -> 62 https://github.com/Kane610/aiounifi/releases/tag/v62 --- pkgs/development/python-modules/aiounifi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aiounifi/default.nix b/pkgs/development/python-modules/aiounifi/default.nix index 45591837df44..a906f8311f81 100644 --- a/pkgs/development/python-modules/aiounifi/default.nix +++ b/pkgs/development/python-modules/aiounifi/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "aiounifi"; - version = "61"; + version = "62"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "Kane610"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-tzP20KDPCq1/fJY+OfEpo3LMbP662ROh2aPI4nmDp0Y="; + hash = "sha256-5XCF67YuelS4RDUxfImSAELfdb3rJWGprIYQeQPp+yk="; }; postPatch = '' From bc8f6b4bf3ab77696eee71eb4253c6c73487a551 Mon Sep 17 00:00:00 2001 From: Soner Sayakci Date: Wed, 13 Sep 2023 10:55:02 +0200 Subject: [PATCH 247/346] php81Extensions.blackfire: 1.88.1 -> 1.89.0 --- .../tools/misc/blackfire/php-probe.nix | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pkgs/development/tools/misc/blackfire/php-probe.nix b/pkgs/development/tools/misc/blackfire/php-probe.nix index 9774200e9b3d..b8f1c5d306d1 100644 --- a/pkgs/development/tools/misc/blackfire/php-probe.nix +++ b/pkgs/development/tools/misc/blackfire/php-probe.nix @@ -12,42 +12,42 @@ let phpMajor = lib.versions.majorMinor php.version; - version = "1.88.1"; + version = "1.89.0"; hashes = { "x86_64-linux" = { system = "amd64"; hash = { - "8.1" = "sha256-8t/9+USw4cun8kIsCkcFl/672rtgEBy6SgRMEzl47VU="; - "8.2" = "sha256-/sVDxfhJXMQZb1CdRh+qBjCt3gdYci65BN23K9Kfcys="; + "8.1" = "sha256-hRxg33h78MssWo5CuOxN7X0oPxFU6RMkncs751N1lWg="; + "8.2" = "sha256-uAat8nfTnYiLfAzn0CRrYwrtXQgHYjZIaSnGI8CNSzI="; }; }; "i686-linux" = { system = "i386"; hash = { - "8.1" = "sha256-ASZKa40D6dpNyzQhqci0+fEUoduyuyoJbWvY2UjVmxA="; - "8.2" = "sha256-CWSTPXPr0ZCcGnkDNIh8HhDf53gNy663IWLqIRObv28="; + "8.1" = "sha256-DpCfuq4RpI8078Kq8YJYNONpZT2k85jVIjoiFU2Mj64="; + "8.2" = "sha256-IWkxjy2GBaFUeIJULRsrLrskh5CNW2DDTK5FJKGRuFM="; }; }; "aarch64-linux" = { system = "arm64"; hash = { - "8.1" = "sha256-HST8U3DJ1s+ricPQ7Q4bY/eZE+mSnGaJuLKwFpLb0JI="; - "8.2" = "sha256-uPCIlYw9i0MFPbca+GWyzpK4oHOOmTUxR46yEBB48mg="; + "8.1" = "sha256-cTIbsHHJvKIFgXTlH5jog1uoaUVD4ZkPLj78xtEXqVs="; + "8.2" = "sha256-IDtVd1aE4rUSLKJRHfdbSB0DUm7rCziTG0jmsmMxaGc="; }; }; "aarch64-darwin" = { system = "arm64"; hash = { - "8.1" = "sha256-4JJ7m4/ybVzu/yBtfpSwuSIKor7s80Xlt7FH3K8PwTU="; - "8.2" = "sha256-BW6c/qKWeOkJUBYf8TFGz7aYKPUb9kKzyfNGSv1XOhE="; + "8.1" = "sha256-HzLdzqoXkN/D+Dh8RnKiMcV56yaO3IHH5EVbaj4QFpI="; + "8.2" = "sha256-9Agz1s1/576gz7bRPzCPmox09K16KOR1Ah0eozN6itc="; }; }; "x86_64-darwin" = { system = "amd64"; hash = { - "8.1" = "sha256-O6gZwHNIFCXuC2r4yPMuk/wg1LbsMu6aRJmwbRR3B8s="; - "8.2" = "sha256-l4wTdt5fGIbGPqCT3/EiRTNovyGQOV1ZRzPjYvlHQIg="; + "8.1" = "sha256-GB+IVCISDAtnXSHNXfxXa7eQcx+dRMiP3LC0haha6bI="; + "8.2" = "sha256-8EpMJ6kTNw5LDS18zSPUj0r1MsUsAoMPuo4Yn6sWbg8="; }; }; }; From ec34a06e58f95c99937e0b94bbeb1abd3a620edc Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 08:56:33 +0000 Subject: [PATCH 248/346] python310Packages.google-cloud-datacatalog: 3.15.0 -> 3.15.1 --- .../python-modules/google-cloud-datacatalog/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/google-cloud-datacatalog/default.nix b/pkgs/development/python-modules/google-cloud-datacatalog/default.nix index 5b8df01d4353..6d7d35d67823 100644 --- a/pkgs/development/python-modules/google-cloud-datacatalog/default.nix +++ b/pkgs/development/python-modules/google-cloud-datacatalog/default.nix @@ -14,14 +14,14 @@ buildPythonPackage rec { pname = "google-cloud-datacatalog"; - version = "3.15.0"; + version = "3.15.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-TY/HrTDlo6cq50bSaRVuZyt1rThB9BPiQW0RS98gIo8="; + hash = "sha256-XihIFu8TUrZgQqJ43LJVB0vCIjf89MpGfmDXS5yUuoM="; }; propagatedBuildInputs = [ From f141560b2c7e9cdc7d2d66a32cf789da2c88bac8 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 13 Sep 2023 10:54:57 +0200 Subject: [PATCH 249/346] python311Packages.hass-nabucasa: 0.70.0 -> 0.71.0 https://github.com/NabuCasa/hass-nabucasa/releases/tag/0.71.0 --- pkgs/development/python-modules/hass-nabucasa/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/hass-nabucasa/default.nix b/pkgs/development/python-modules/hass-nabucasa/default.nix index 9bc33f5c7e01..b93ddbaf1dfd 100644 --- a/pkgs/development/python-modules/hass-nabucasa/default.nix +++ b/pkgs/development/python-modules/hass-nabucasa/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "hass-nabucasa"; - version = "0.70.0"; + version = "0.71.0"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "nabucasa"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-lELb39N5pAZFeANgzg5TBmC+gmY/wgXbE7wlvdlJe2A="; + hash = "sha256-2v8LEVYY7PEzcIMaXcy9h+8O2KrU0zTKyZb2IrO35JQ="; }; postPatch = '' From d8672328d617e543dbf4db1fe859db05b469a894 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 13 Sep 2023 10:55:14 +0200 Subject: [PATCH 250/346] python311Packages.hatasmota: 0.7.2 -> 0.7.3 https://github.com/emontnemery/hatasmota/releases/tag/0.7.3 --- pkgs/development/python-modules/hatasmota/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/hatasmota/default.nix b/pkgs/development/python-modules/hatasmota/default.nix index 12295ec629f1..f8e45949dbe7 100644 --- a/pkgs/development/python-modules/hatasmota/default.nix +++ b/pkgs/development/python-modules/hatasmota/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "hatasmota"; - version = "0.7.2"; + version = "0.7.3"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "emontnemery"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-edZ8Y2fk2Kfhjs/c44vP55uPsFCnDt+wiD+q9821y7U="; + hash = "sha256-lsb92JsqIhq7zaNaolgV8dtSFIq+Enklb6hlBvT7/Ig="; }; propagatedBuildInputs = [ From 80a1b7d6d68276b7395c1eb0d716ed38ea54df89 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 11 Sep 2023 01:58:01 +0000 Subject: [PATCH 251/346] python310Packages.plugwise: 0.31.9 -> 0.32.2 --- pkgs/development/python-modules/plugwise/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/plugwise/default.nix b/pkgs/development/python-modules/plugwise/default.nix index 7c7d36167fea..f451b1f30c56 100644 --- a/pkgs/development/python-modules/plugwise/default.nix +++ b/pkgs/development/python-modules/plugwise/default.nix @@ -20,7 +20,7 @@ buildPythonPackage rec { pname = "plugwise"; - version = "0.31.9"; + version = "0.32.2"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -29,7 +29,7 @@ buildPythonPackage rec { owner = pname; repo = "python-plugwise"; rev = "refs/tags/v${version}"; - hash = "sha256-IRetWNKVzWsrHOphdgV5xmdiubwDx8KOUA7x+BmTt9A="; + hash = "sha256-kJ7HbGwmA6/OtSxpkvajf+VzjYK+uq6kMaja9CmVBt4="; }; propagatedBuildInputs = [ From ce898221fbeccd930783b1d64824e760f22f9b2f Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 13 Sep 2023 10:57:01 +0200 Subject: [PATCH 252/346] python311Packages.ultraheat-api: 0.5.1 -> 0.5.7 --- pkgs/development/python-modules/ultraheat-api/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ultraheat-api/default.nix b/pkgs/development/python-modules/ultraheat-api/default.nix index 25e5ab025289..b478c7c6c0ab 100644 --- a/pkgs/development/python-modules/ultraheat-api/default.nix +++ b/pkgs/development/python-modules/ultraheat-api/default.nix @@ -7,7 +7,7 @@ buildPythonPackage rec { pname = "ultraheat-api"; - version = "0.5.1"; + version = "0.5.7"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -15,7 +15,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "ultraheat_api"; inherit version; - hash = "sha256-7yZATv0cgjRnvD9u34iZtsdsfEkdbAoVWJ19+HHlrzI="; + hash = "sha256-rRQTjV9hyUawMaXBgUx/d6pQjM8ffjcFJE2x08Cf4Gw="; }; propagatedBuildInputs = [ From d4e7c1ebf69d4b286638df7d7a0e13686253af0e Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 13 Sep 2023 10:57:32 +0200 Subject: [PATCH 253/346] python311Packages.zigpy-deconz: 0.21.0 -> 0.21.1 https://github.com/zigpy/zigpy-deconz/releases/tag/0.21.1 --- pkgs/development/python-modules/zigpy-deconz/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/zigpy-deconz/default.nix b/pkgs/development/python-modules/zigpy-deconz/default.nix index b9220505c772..a0bc46b09a02 100644 --- a/pkgs/development/python-modules/zigpy-deconz/default.nix +++ b/pkgs/development/python-modules/zigpy-deconz/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "zigpy-deconz"; - version = "0.21.0"; + version = "0.21.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "zigpy"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-/XsCQt3JHiPrXJH8w2zDmaMQBLWgcmkbj9RooVYuFw0="; + hash = "sha256-YRJMIpC6Zk5sQjGyzdEbQEeYgFJzIbxe4BReayceu10="; }; propagatedBuildInputs = [ From 72c949e02af4f2a4503c7b61a214edc941f7dfe0 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 13 Sep 2023 10:58:29 +0200 Subject: [PATCH 254/346] python311Packages.zigpy-xbee: 0.18.1 -> 0.18.2 https://github.com/zigpy/zigpy-xbee/releases/tag/0.18.2 --- pkgs/development/python-modules/zigpy-xbee/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/zigpy-xbee/default.nix b/pkgs/development/python-modules/zigpy-xbee/default.nix index a44d3c3265bf..a94eb4e4c545 100644 --- a/pkgs/development/python-modules/zigpy-xbee/default.nix +++ b/pkgs/development/python-modules/zigpy-xbee/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "zigpy-xbee"; - version = "0.18.1"; + version = "0.18.2"; # https://github.com/Martiusweb/asynctest/issues/152 # broken by upstream python bug with asynctest and # is used exclusively by home-assistant with python 3.8 @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "zigpy"; repo = "zigpy-xbee"; rev = "refs/tags/${version}"; - hash = "sha256-vR+oLshiIYmMdAvir+TGBqVkTGXKAVnUWnQPR3YwuUk="; + hash = "sha256-aglKQWIMh0IyrcGt+PZVtzcgs88YbtZB7Tfg7hlB+18="; }; buildInputs = [ From a3abdd91a8dfecbd0643ee6074b52d80f6773983 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 13 Sep 2023 10:58:52 +0200 Subject: [PATCH 255/346] python311Packages.zwave-js-server-python: 0.51.1 -> 0.51.2 https://github.com/home-assistant-libs/zwave-js-server-python/releases/tag/0.51.2 --- .../python-modules/zwave-js-server-python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/zwave-js-server-python/default.nix b/pkgs/development/python-modules/zwave-js-server-python/default.nix index 3669f6c70f1f..7e98b142b44f 100644 --- a/pkgs/development/python-modules/zwave-js-server-python/default.nix +++ b/pkgs/development/python-modules/zwave-js-server-python/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "zwave-js-server-python"; - version = "0.51.1"; + version = "0.51.2"; format = "setuptools"; disabled = pythonOlder "3.11"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "home-assistant-libs"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-2U0mRlNUCZD05lgGB3dz2WaUxG2dv/C7nxD2sI3R8B8="; + hash = "sha256-SRBH7HdsgS60Z8y6ef5/VCunzMGBEWw0u1jR7wSByNc="; }; propagatedBuildInputs = [ From 7e712af1e8283811ecfc3089063168d9e6e3712e Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 13 Sep 2023 10:59:00 +0200 Subject: [PATCH 256/346] home-assistant: 2023.9.1 -> 2023.9.2 https://github.com/home-assistant/core/releases/tag/2023.9.2 --- pkgs/servers/home-assistant/component-packages.nix | 2 +- pkgs/servers/home-assistant/default.nix | 6 +++--- pkgs/servers/home-assistant/frontend.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix index 57ace965f4be..9b1dcda3bedc 100644 --- a/pkgs/servers/home-assistant/component-packages.nix +++ b/pkgs/servers/home-assistant/component-packages.nix @@ -2,7 +2,7 @@ # Do not edit! { - version = "2023.9.1"; + version = "2023.9.2"; components = { "3_day_blinds" = ps: with ps; [ ]; diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix index e36ad7fd6db6..f6bb043f1984 100644 --- a/pkgs/servers/home-assistant/default.nix +++ b/pkgs/servers/home-assistant/default.nix @@ -316,7 +316,7 @@ let extraBuildInputs = extraPackages python.pkgs; # Don't forget to run parse-requirements.py after updating - hassVersion = "2023.9.1"; + hassVersion = "2023.9.2"; in python.pkgs.buildPythonApplication rec { pname = "homeassistant"; @@ -332,7 +332,7 @@ in python.pkgs.buildPythonApplication rec { # Primary source is the pypi sdist, because it contains translations src = fetchPypi { inherit pname version; - hash = "sha256-uOFCaYpw/UVWdkJ3ixu8cMx9sbDy2WnHPxvPvWN1mkE="; + hash = "sha256-pVW9NQYEf2pmGCp342lCzEiWfAyFCiWeRMVbhPd8wxQ="; }; # Secondary source is git for tests @@ -340,7 +340,7 @@ in python.pkgs.buildPythonApplication rec { owner = "home-assistant"; repo = "core"; rev = "refs/tags/${version}"; - hash = "sha256-rglLwAlHlwoaF/RxUsKc8+f38D6ztMh2p2fkHLWq9MM="; + hash = "sha256-4sZBrGd5gz4W7c7Ok5Bj/47MaXAqAFC4qufcidbU5zA="; }; nativeBuildInputs = with python.pkgs; [ diff --git a/pkgs/servers/home-assistant/frontend.nix b/pkgs/servers/home-assistant/frontend.nix index 53861ae2c4f3..118f179a9c53 100644 --- a/pkgs/servers/home-assistant/frontend.nix +++ b/pkgs/servers/home-assistant/frontend.nix @@ -4,7 +4,7 @@ buildPythonPackage rec { # the frontend version corresponding to a specific home-assistant version can be found here # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json pname = "home-assistant-frontend"; - version = "20230908.0"; + version = "20230911.0"; format = "wheel"; src = fetchPypi { @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "home_assistant_frontend"; dist = "py3"; python = "py3"; - hash = "sha256-XZAdS4RjnPmMXYzBmyA4+liH5kdm3U/YqJJGXIaqOGo="; + hash = "sha256-AcMZYjSbsBrfC0Oh5P+eruNILWdVmk46+p+8xLpqfuo="; }; # there is nothing to strip in this package From d0b43594b83bc528efa3fa76053529fb6226b942 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 13 Sep 2023 11:08:33 +0200 Subject: [PATCH 257/346] python311Packages.homeassistant-stubs: 2023.9.1 -> 2023.9.2 https://github.com/KapJI/homeassistant-stubs/releases/tag/2023.9.2 --- pkgs/servers/home-assistant/stubs.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/home-assistant/stubs.nix b/pkgs/servers/home-assistant/stubs.nix index fd436207720b..c87e59034937 100644 --- a/pkgs/servers/home-assistant/stubs.nix +++ b/pkgs/servers/home-assistant/stubs.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "homeassistant-stubs"; - version = "2023.9.1"; + version = "2023.9.2"; format = "pyproject"; disabled = python.version != home-assistant.python.version; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "KapJI"; repo = "homeassistant-stubs"; rev = "refs/tags/${version}"; - hash = "sha256-USpB/ZanWfLxL3J4/mdKzj3o5rgb9kRrZ/oG4S36CfU="; + hash = "sha256-cKBf7S6ZvLlRp0L23mDu1CvG7d1d34LaIev60JPD0TE="; }; nativeBuildInputs = [ From e17ec6149dc2f2d95a55fd552650ae361e5d8a5a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 7 Sep 2023 23:39:24 +0000 Subject: [PATCH 258/346] esphome: 2023.8.2 -> 2023.8.3 --- pkgs/tools/misc/esphome/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/esphome/default.nix b/pkgs/tools/misc/esphome/default.nix index ea6cfdfb282f..3fdc11c3a4f2 100644 --- a/pkgs/tools/misc/esphome/default.nix +++ b/pkgs/tools/misc/esphome/default.nix @@ -16,14 +16,14 @@ let in python.pkgs.buildPythonApplication rec { pname = "esphome"; - version = "2023.8.2"; + version = "2023.8.3"; format = "setuptools"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-KizeBaDw/9XoPwIjjc3VKkiaHTK5VYQXss4cQZZaGzs="; + hash = "sha256-qiB3VZzqQeimkLTlTNK2/UFt+YJw9sglfF/ogMl239o="; }; postPatch = '' From 51078b896cc40847d7621112422e20bdc6ec4687 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 5 Sep 2023 21:29:31 +0000 Subject: [PATCH 259/346] python310Packages.pynetbox: 7.0.1 -> 7.1.0 --- pkgs/development/python-modules/pynetbox/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pynetbox/default.nix b/pkgs/development/python-modules/pynetbox/default.nix index 333f88e3f563..b6de298bea56 100644 --- a/pkgs/development/python-modules/pynetbox/default.nix +++ b/pkgs/development/python-modules/pynetbox/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "pynetbox"; - version = "7.0.1"; + version = "7.1.0"; format = "setuptools"; src = fetchFromGitHub { owner = "netbox-community"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-RAUM79lDz7oNV7Li987Sz7JoNz/feO6BsEcWO0u/Ub8="; + hash = "sha256-E79n4E386bSxDRzxcjCIvK0Z3r78HsFjGIXqjqQ1zyE="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; From ccae7b8833d0f48ab6103210a0c7c15f297d2967 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 09:41:16 +0000 Subject: [PATCH 260/346] python310Packages.ansible-core: 2.15.3 -> 2.15.4 --- pkgs/development/python-modules/ansible/core.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ansible/core.nix b/pkgs/development/python-modules/ansible/core.nix index be0a887cd8a8..633811c34c52 100644 --- a/pkgs/development/python-modules/ansible/core.nix +++ b/pkgs/development/python-modules/ansible/core.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pname = "ansible-core"; - version = "2.15.3"; + version = "2.15.4"; src = fetchPypi { inherit pname version; - hash = "sha256-JhvAGhUnT8WmlQ1bkrmqG318bo91Q8kUUF5b/ZdEeTo="; + hash = "sha256-waiq7emF955ZMrohY2OTeffYAlv9myg3jbFkmk71Qe0="; }; # ansible_connection is already wrapped, so don't pass it through From 205b56cffc54f7e9626595429bd407902fc7b04a Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Wed, 13 Sep 2023 11:43:19 +0200 Subject: [PATCH 261/346] nixos/user-groups: fixup of 5666a378 --- nixos/modules/config/update-users-groups.pl | 8 ++++---- nixos/modules/config/users-groups.nix | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/nixos/modules/config/update-users-groups.pl b/nixos/modules/config/update-users-groups.pl index 3785ba8c5fb8..7c6851473f42 100644 --- a/nixos/modules/config/update-users-groups.pl +++ b/nixos/modules/config/update-users-groups.pl @@ -239,12 +239,12 @@ foreach my $u (@{$spec->{users}}) { chmod oct($u->{homeMode}), $u->{home}; } - if (defined $u->{passwordFile}) { - if (-e $u->{passwordFile}) { - $u->{hashedPassword} = read_file($u->{passwordFile}); + if (defined $u->{hashedPasswordFile}) { + if (-e $u->{hashedPasswordFile}) { + $u->{hashedPassword} = read_file($u->{hashedPasswordFile}); chomp $u->{hashedPassword}; } else { - warn "warning: password file ‘$u->{passwordFile}’ does not exist\n"; + warn "warning: password file ‘$u->{hashedPasswordFile}’ does not exist\n"; } } elsif (defined $u->{password}) { $u->{hashedPassword} = hashPassword($u->{password}); diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix index 4893d28924eb..5158974c27b3 100644 --- a/nixos/modules/config/users-groups.nix +++ b/nixos/modules/config/users-groups.nix @@ -264,7 +264,7 @@ let }; passwordFile = mkOption { - type = with types; nullOr (passwdEntry str); + type = with types; nullOr str; default = null; visible = false; description = lib.mdDoc "Deprecated alias of hashedPasswordFile"; From b0e71c8806ff37183c9e9cf3e6d9c6e0c04af4a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 13 Sep 2023 12:27:48 +0200 Subject: [PATCH 262/346] python3Packages.rapidfuzz: 3.2.0 -> 3.3.0 Needed to build after .cython update from PR #252051 https://hydra.nixos.org/build/234484085/nixlog/2/tail --- pkgs/development/python-modules/rapidfuzz/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/rapidfuzz/default.nix b/pkgs/development/python-modules/rapidfuzz/default.nix index 422f90d71f72..6bd6bba5d2ed 100644 --- a/pkgs/development/python-modules/rapidfuzz/default.nix +++ b/pkgs/development/python-modules/rapidfuzz/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "rapidfuzz"; - version = "3.2.0"; + version = "3.3.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -26,8 +26,9 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "maxbachmann"; repo = "RapidFuzz"; - rev = "refs/tags/v${version}"; - hash = "sha256-Lt5m1SdZBzId6nvXXrEDQR3ZdA3yjoj15o3/nPeXPPs="; + #rev = "refs/tags/v${version}"; + rev = "b7c5908a226b186ffdb6fd59509826623cf4dc96"; # called 3.3.0 but missing tag + hash = "sha256-5JlEd7X0I/OmL260v2OMVI3h99TIpglv6Nt3EciEBEM="; }; nativeBuildInputs = [ From 9d3c8ef6fa44d1868a414bd4c2786c8d513b910f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 10:38:53 +0000 Subject: [PATCH 263/346] birdtray: 1.11.3 -> 1.11.4 --- pkgs/applications/misc/birdtray/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/birdtray/default.nix b/pkgs/applications/misc/birdtray/default.nix index 167b4df79bcd..534107f615a6 100644 --- a/pkgs/applications/misc/birdtray/default.nix +++ b/pkgs/applications/misc/birdtray/default.nix @@ -11,13 +11,13 @@ mkDerivation rec { pname = "birdtray"; - version = "1.11.3"; + version = "1.11.4"; src = fetchFromGitHub { owner = "gyunaev"; repo = pname; rev = "v${version}"; - sha256 = "sha256-3SZf0ZK4AV/kuFttaHnPJuOJ9rn7CqFfv28d8ancPKw="; + sha256 = "sha256-rj8tPzZzgW0hXmq8c1LiunIX1tO/tGAaqDGJgCQda5M="; }; nativeBuildInputs = [ cmake pkg-config ]; From 92832ddf04b47a104de2c86bc87e30c965dd503b Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Mon, 11 Sep 2023 22:09:43 -0300 Subject: [PATCH 264/346] trealla: migrate to by-name hierarchy --- .../trealla/default.nix => by-name/tr/trealla/package.nix} | 0 pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 2 deletions(-) rename pkgs/{development/interpreters/trealla/default.nix => by-name/tr/trealla/package.nix} (100%) diff --git a/pkgs/development/interpreters/trealla/default.nix b/pkgs/by-name/tr/trealla/package.nix similarity index 100% rename from pkgs/development/interpreters/trealla/default.nix rename to pkgs/by-name/tr/trealla/package.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8d576ea2a49b..6175abcf6784 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18320,8 +18320,6 @@ with pkgs; eltclsh = callPackage ../development/tools/eltclsh { }; - trealla = callPackage ../development/interpreters/trealla { }; - waagent = callPackage ../applications/networking/cluster/waagent { }; wapm-cli = callPackage ../tools/package-management/wapm/cli { From 91b9bf1a6a0d29076b0d32b6453dd7001e7ac86a Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Mon, 11 Sep 2023 22:20:26 -0300 Subject: [PATCH 265/346] trealla: 2.25.2 -> 2.26.9 --- pkgs/by-name/tr/trealla/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/tr/trealla/package.nix b/pkgs/by-name/tr/trealla/package.nix index 34b722d9dcf9..7762173414c9 100644 --- a/pkgs/by-name/tr/trealla/package.nix +++ b/pkgs/by-name/tr/trealla/package.nix @@ -17,13 +17,13 @@ assert lib.elem lineEditingLibrary [ "isocline" "readline" ]; stdenv.mkDerivation (finalAttrs: { pname = "trealla"; - version = "2.25.2"; + version = "2.26.9"; src = fetchFromGitHub { owner = "trealla-prolog"; repo = "trealla"; rev = "v${finalAttrs.version}"; - hash = "sha256-3NBrJFSTcjftvTYn26SMeU2HtR81J2qlDAwAZRdis4M="; + hash = "sha256-p2fntQKaVdgM94b2EBfTdUpdsEUlbnma+6arP/f+FQs="; }; postPatch = '' From 1c3e93e643e11377fbb1a8a75c188dd043a28503 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Mon, 11 Sep 2023 22:24:53 -0300 Subject: [PATCH 266/346] trealla: 2.26.9 -> 2.27.15 --- pkgs/by-name/tr/trealla/package.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/tr/trealla/package.nix b/pkgs/by-name/tr/trealla/package.nix index 7762173414c9..8ba9ebb7957d 100644 --- a/pkgs/by-name/tr/trealla/package.nix +++ b/pkgs/by-name/tr/trealla/package.nix @@ -17,13 +17,13 @@ assert lib.elem lineEditingLibrary [ "isocline" "readline" ]; stdenv.mkDerivation (finalAttrs: { pname = "trealla"; - version = "2.26.9"; + version = "2.27.15"; src = fetchFromGitHub { owner = "trealla-prolog"; repo = "trealla"; rev = "v${finalAttrs.version}"; - hash = "sha256-p2fntQKaVdgM94b2EBfTdUpdsEUlbnma+6arP/f+FQs="; + hash = "sha256-b6OIp0UTBGl463wgwVCyTbC3Id0mgEIUnla+U3qv738="; }; postPatch = '' @@ -68,7 +68,9 @@ stdenv.mkDerivation (finalAttrs: { "test" ] ++ lib.optional checkLeaks "leaks"; - passthru.updateScript = gitUpdater { }; + passthru.updateScript = gitUpdater { + rev-prefix = "v"; + }; meta = { homepage = "https://trealla-prolog.github.io/trealla/"; From 2424c7f587cf88a9e7969f7582cf1555e35dc991 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 10:49:11 +0000 Subject: [PATCH 267/346] speedtest-go: 1.6.5 -> 1.6.6 --- pkgs/tools/networking/speedtest-go/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/speedtest-go/default.nix b/pkgs/tools/networking/speedtest-go/default.nix index ead27348c5c6..0d2be501fd14 100644 --- a/pkgs/tools/networking/speedtest-go/default.nix +++ b/pkgs/tools/networking/speedtest-go/default.nix @@ -5,13 +5,13 @@ buildGoModule rec { pname = "speedtest-go"; - version = "1.6.5"; + version = "1.6.6"; src = fetchFromGitHub { owner = "showwin"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-nuZKYGumxSzhdbrMQzady1ja3aozzTyOx9cfRTin08w="; + hash = "sha256-aVvowxwP9Mr1hmcgwizXPfy5527iR7cjsNaND/nmXUw="; }; vendorHash = "sha256-wQqAX7YuxxTiMWmV9LRoXunGMMzs12UyHbf4VvbQF1E="; From 02300abc7e64a176fe566129f561dcb747c94334 Mon Sep 17 00:00:00 2001 From: Michael Hoang Date: Wed, 13 Sep 2023 12:56:45 +0200 Subject: [PATCH 268/346] joplin-desktop: 2.11.11 -> 2.12.16 --- .../applications/misc/joplin-desktop/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/misc/joplin-desktop/default.nix b/pkgs/applications/misc/joplin-desktop/default.nix index fb4e484dc572..7f783eb371ec 100644 --- a/pkgs/applications/misc/joplin-desktop/default.nix +++ b/pkgs/applications/misc/joplin-desktop/default.nix @@ -2,24 +2,24 @@ let pname = "joplin-desktop"; - version = "2.11.11"; + version = "2.12.16"; name = "${pname}-${version}"; inherit (stdenv.hostPlatform) system; throwSystem = throw "Unsupported system: ${system}"; suffix = { - x86_64-linux = "AppImage"; - x86_64-darwin = "dmg"; - aarch64-darwin = "dmg"; + x86_64-linux = ".AppImage"; + x86_64-darwin = ".dmg"; + aarch64-darwin = "-arm64.dmg"; }.${system} or throwSystem; src = fetchurl { - url = "https://github.com/laurent22/joplin/releases/download/v${version}/Joplin-${version}.${suffix}"; + url = "https://github.com/laurent22/joplin/releases/download/v${version}/Joplin-${version}${suffix}"; sha256 = { - x86_64-linux = "sha256-r64+y+LfMrJnUdabVdak5+LQB50YLOuMXftlZ4s3C/w="; - x86_64-darwin = "sha256-/dvaYHa7PT6FA63kmtjrErJZI9O+hIlKvHnf5RnfeZg="; - aarch64-darwin = "sha256-/dvaYHa7PT6FA63kmtjrErJZI9O+hIlKvHnf5RnfeZg="; + x86_64-linux = "sha256-9ib8lymmSINqC0oXUxkKcpKfPh7qmU3YytU1/4aKMLg="; + x86_64-darwin = "sha256-vWc5yx3i5Ru8vrQbrTQwr43ZMBzOAb9254cxTHg6A/Q="; + aarch64-darwin = "sha256-dhwPqT+zfBYOVUV5JprPfgrSJR2ZNsC3LJmRHGJVM4k="; }.${system} or throwSystem; }; From e7f95ba94cb96a5900ba2936cc9bfc9ec48e653c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 13 Sep 2023 12:57:12 +0200 Subject: [PATCH 269/346] python3Packages.rapidfuzz: fetch from git tag again Upstream added the tag now. --- pkgs/development/python-modules/rapidfuzz/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/rapidfuzz/default.nix b/pkgs/development/python-modules/rapidfuzz/default.nix index 6bd6bba5d2ed..07f2bdfb469b 100644 --- a/pkgs/development/python-modules/rapidfuzz/default.nix +++ b/pkgs/development/python-modules/rapidfuzz/default.nix @@ -26,8 +26,7 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "maxbachmann"; repo = "RapidFuzz"; - #rev = "refs/tags/v${version}"; - rev = "b7c5908a226b186ffdb6fd59509826623cf4dc96"; # called 3.3.0 but missing tag + rev = "refs/tags/v${version}"; hash = "sha256-5JlEd7X0I/OmL260v2OMVI3h99TIpglv6Nt3EciEBEM="; }; From 0a82b0a1cd4cc94df979770bb178ae9fb02cb407 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Tue, 12 Sep 2023 06:58:43 -0300 Subject: [PATCH 270/346] calibre: remove AndersonTorres from maintainers --- pkgs/applications/misc/calibre/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index 21c5d7d1c33a..a71984dd2c40 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -203,7 +203,7 @@ stdenv.mkDerivation (finalAttrs: { license = if unrarSupport then lib.licenses.unfreeRedistributable else lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ pSub AndersonTorres ]; + maintainers = with lib.maintainers; [ pSub ]; platforms = lib.platforms.unix; broken = stdenv.isDarwin; }; From 6bb576e63975955cffb732e55ea0991719947d20 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 11:29:24 +0000 Subject: [PATCH 271/346] fluent-bit: 2.1.8 -> 2.1.9 --- pkgs/tools/misc/fluent-bit/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/fluent-bit/default.nix b/pkgs/tools/misc/fluent-bit/default.nix index 0bf56cdba639..3d0b0899dfaf 100644 --- a/pkgs/tools/misc/fluent-bit/default.nix +++ b/pkgs/tools/misc/fluent-bit/default.nix @@ -12,13 +12,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "fluent-bit"; - version = "2.1.8"; + version = "2.1.9"; src = fetchFromGitHub { owner = "fluent"; repo = "fluent-bit"; rev = "v${finalAttrs.version}"; - hash = "sha256-iWbWkKd0Rpg0EU3H//sAxth1v1S52yPwGn1AzeC9xkA="; + hash = "sha256-G/DYGmZMB1vMJJK6vIWxGqhN8WRNjNXoMn9AY75Gw4M="; }; nativeBuildInputs = [ cmake flex bison ]; From f85cec7548d00058e8e6d8c3eb8627cfd6b321e9 Mon Sep 17 00:00:00 2001 From: ajs124 Date: Mon, 11 Sep 2023 18:00:06 +0200 Subject: [PATCH 272/346] erlang23: remove --- doc/languages-frameworks/beam.section.md | 2 +- pkgs/development/interpreters/erlang/23.nix | 6 ------ pkgs/top-level/aliases.nix | 4 +++- pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/beam-packages.nix | 17 ----------------- 5 files changed, 5 insertions(+), 26 deletions(-) delete mode 100644 pkgs/development/interpreters/erlang/23.nix diff --git a/doc/languages-frameworks/beam.section.md b/doc/languages-frameworks/beam.section.md index 4c1650781f05..5e85723085c1 100644 --- a/doc/languages-frameworks/beam.section.md +++ b/doc/languages-frameworks/beam.section.md @@ -154,7 +154,7 @@ Here is how your `default.nix` file would look for a phoenix project. with import { }; let - # beam.interpreters.erlang_23 is available if you need a particular version + # beam.interpreters.erlang_26 is available if you need a particular version packages = beam.packagesWith beam.interpreters.erlang; pname = "your_project"; diff --git a/pkgs/development/interpreters/erlang/23.nix b/pkgs/development/interpreters/erlang/23.nix deleted file mode 100644 index 89faebdde128..000000000000 --- a/pkgs/development/interpreters/erlang/23.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ mkDerivation }: - -mkDerivation { - version = "23.3.4.18"; - sha256 = "sha256-sxNVu/52kOMFKQYPLi5uXnR1mYTF2KlHUo4T7kh0KoY="; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 53d38a973ee5..2dce6ddce662 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -488,11 +488,13 @@ mapAliases ({ epoxy = libepoxy; # Added 2021-11-11 epsxe = throw "epsxe has been removed from nixpkgs, as it was unmaintained."; # added 2021-12-15 eql = throw "eql has been removed from nixpkgs, because it depended on qt4. eql5 exists, but is not currently pacakged in nixpkgs."; # added 2022-05-09 - inherit (beam.interpreters) erlangR26 erlangR25 erlangR24 erlangR23; # added 2023-03-21 + inherit (beam.interpreters) erlangR26 erlangR25 erlangR24; # added 2023-03-21 erlang_21 = throw "erlangR21 has been removed in favor of newer versions."; # added 2023-03-21 erlangR21 = erlang_21; erlang_22 = throw "erlangR22 has been removed in favor of newer versions."; # added 2023-03-21 erlangR22 = erlang_22; + erlang_23 = throw "erlangR23 has been removed in favor of newer versions."; # added 2023-09-11 + erlangR23 = erlang_23; esniper = throw "esniper has been removed because upstream no longer maintains it (and it no longer works)"; # Added 2021-04-12 etcdctl = throw "'etcdctl' has been renamed to/replaced by 'etcd'"; # Converted to throw 2022-02-22 eterm = throw "eterm was removed because it is still insecure: https://github.com/mej/Eterm/issues/7"; # Added 2023-09-10 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6175abcf6784..256885a8ce95 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17821,7 +17821,7 @@ with pkgs; }; inherit (beam.interpreters) - erlang erlang_26 erlang_25 erlang_24 erlang_23 + erlang erlang_26 erlang_25 erlang_24 erlang_odbc erlang_javac erlang_odbc_javac elixir elixir_1_15 elixir_1_14 elixir_1_13 elixir_1_12 elixir_1_11 elixir_1_10 elixir-ls; diff --git a/pkgs/top-level/beam-packages.nix b/pkgs/top-level/beam-packages.nix index e64a06cc3eaa..ff9d1f62ab1f 100644 --- a/pkgs/top-level/beam-packages.nix +++ b/pkgs/top-level/beam-packages.nix @@ -1,7 +1,6 @@ { lib , beam , callPackage -, openssl_1_1 , wxGTK32 , buildPackages , stdenv @@ -82,21 +81,6 @@ in odbcSupport = true; }; - erlang_23 = self.beamLib.callErlang ../development/interpreters/erlang/23.nix { - openssl = openssl_1_1; - wxGTK = wxGTK32; - # Can be enabled since the bug has been fixed in https://github.com/erlang/otp/pull/2508 - parallelBuild = true; - autoconf = buildPackages.autoconf269; - inherit wxSupport systemdSupport; - }; - erlang_23_odbc = self.interpreters.erlang_23.override { odbcSupport = true; }; - erlang_23_javac = self.interpreters.erlang_23.override { javacSupport = true; }; - erlang_23_odbc_javac = self.interpreters.erlang_23.override { - javacSupport = true; - odbcSupport = true; - }; - # Other Beam languages. These are built with `beam.interpreters.erlang`. To # access for example elixir built with different version of Erlang, use # `beam.packages.erlang_24.elixir`. @@ -116,6 +100,5 @@ in erlang_26 = self.packagesWith self.interpreters.erlang_26; erlang_25 = self.packagesWith self.interpreters.erlang_25; erlang_24 = self.packagesWith self.interpreters.erlang_24; - erlang_23 = self.packagesWith self.interpreters.erlang_23; } // packagesAliases; } From f5f7714497996c1f6c586cd8c31795ecddacd367 Mon Sep 17 00:00:00 2001 From: happysalada Date: Tue, 12 Sep 2023 13:52:01 -0400 Subject: [PATCH 273/346] qdrant: 1.5.0 -> 1.5.1 --- pkgs/servers/search/qdrant/Cargo.lock | 65 +++++++++----------------- pkgs/servers/search/qdrant/default.nix | 4 +- 2 files changed, 25 insertions(+), 44 deletions(-) diff --git a/pkgs/servers/search/qdrant/Cargo.lock b/pkgs/servers/search/qdrant/Cargo.lock index 7607a2c8ba27..2fc31649d2f4 100644 --- a/pkgs/servers/search/qdrant/Cargo.lock +++ b/pkgs/servers/search/qdrant/Cargo.lock @@ -263,7 +263,7 @@ dependencies = [ "serde_urlencoded", "smallvec", "socket2 0.5.3", - "time 0.3.17", + "time", "url", ] @@ -457,7 +457,7 @@ checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" [[package]] name = "api" -version = "1.5.0" +version = "1.5.1" dependencies = [ "chrono", "common", @@ -913,16 +913,15 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.28" +version = "0.4.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95ed24df0632f708f5f6d8082675bef2596f7084dee3dd55f632290bf35bfe0f" +checksum = "defd4e7873dbddba6c7c91e199c7fcb946abc4a6a4ac3195400bcfb01b5de877" dependencies = [ "android-tzdata", "iana-time-zone", "js-sys", "num-traits", "serde", - "time 0.1.45", "wasm-bindgen", "windows-targets 0.48.0", ] @@ -986,20 +985,19 @@ dependencies = [ [[package]] name = "clap" -version = "4.4.1" +version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c8d502cbaec4595d2e7d5f61e318f05417bd2b66fdc3809498f0d3fdf0bea27" +checksum = "6a13b88d2c62ff462f88e4a121f17a82c1af05693a2f192b5c38d14de73c19f6" dependencies = [ "clap_builder", "clap_derive", - "once_cell", ] [[package]] name = "clap_builder" -version = "4.4.1" +version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5891c7bc0edb3e1c2204fc5e94009affabeb1821c9e5fdc3959536c5c0bb984d" +checksum = "2bb9faaa7c2ef94b2743a21f5a29e6f0010dff4caa69ac8e9d6cf8b6fa74da08" dependencies = [ "anstream", "anstyle", @@ -1009,9 +1007,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.4.0" +version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9fd1a5729c4548118d7d70ff234a44868d00489a4b6597b0b020918a0e91a1a" +checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873" dependencies = [ "heck", "proc-macro2", @@ -1202,7 +1200,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" dependencies = [ "percent-encoding", - "time 0.3.17", + "time", "version_check", ] @@ -3683,7 +3681,7 @@ dependencies = [ [[package]] name = "qdrant" -version = "1.5.0" +version = "1.5.1" dependencies = [ "actix-cors", "actix-files", @@ -4546,9 +4544,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.105" +version = "1.0.106" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" +checksum = "2cc66a619ed80bf7a0f6b17dd063a84b88f6dea1813737cf469aef1d081142c2" dependencies = [ "itoa", "ryu", @@ -4867,9 +4865,9 @@ dependencies = [ [[package]] name = "sysinfo" -version = "0.29.9" +version = "0.29.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8d0e9cc2273cc8d31377bdd638d72e3ac3e5607b18621062b169d02787f1bab" +checksum = "0a18d114d420ada3a891e6bc8e96a2023402203296a47cdd65083377dad18ba5" dependencies = [ "cfg-if", "core-foundation-sys", @@ -4931,18 +4929,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.47" +version = "1.0.48" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" +checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.47" +version = "1.0.48" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" +checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35" dependencies = [ "proc-macro2", "quote", @@ -4991,17 +4989,6 @@ dependencies = [ "tikv-jemalloc-sys", ] -[[package]] -name = "time" -version = "0.1.45" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" -dependencies = [ - "libc", - "wasi 0.10.0+wasi-snapshot-preview1", - "winapi", -] - [[package]] name = "time" version = "0.3.17" @@ -5543,9 +5530,9 @@ dependencies = [ [[package]] name = "walkdir" -version = "2.3.3" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" +checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" dependencies = [ "same-file", "winapi-util", @@ -5567,12 +5554,6 @@ version = "0.9.0+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" -[[package]] -name = "wasi" -version = "0.10.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" - [[package]] name = "wasi" version = "0.11.0+wasi-snapshot-preview1" @@ -5950,7 +5931,7 @@ dependencies = [ "hmac", "pbkdf2", "sha1", - "time 0.3.17", + "time", "zstd 0.11.2+zstd.1.5.2", ] diff --git a/pkgs/servers/search/qdrant/default.nix b/pkgs/servers/search/qdrant/default.nix index 2da7d32c9db1..005514819820 100644 --- a/pkgs/servers/search/qdrant/default.nix +++ b/pkgs/servers/search/qdrant/default.nix @@ -11,13 +11,13 @@ rustPlatform.buildRustPackage rec { pname = "qdrant"; - version = "1.5.0"; + version = "1.5.1"; src = fetchFromGitHub { owner = "qdrant"; repo = "qdrant"; rev = "refs/tags/v${version}"; - sha256 = "sha256-kJfLaXJEeAkn5dh/m6NPLQ8T8ec53jBlT4E0CdnRCSI="; + sha256 = "sha256-CWE3tCeLJjtuFcvnGLdODtx0mvVSl2ULIcxgf3X3SPU="; }; cargoLock = { From 0addd6b102ec5021990afb5cbc95cfbdf0101037 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Wed, 13 Sep 2023 05:00:26 -0700 Subject: [PATCH 274/346] python310Packages.pygmt: 0.9.0 -> 0.10.0 (#254669) Co-authored-by: OTABI Tomoya --- pkgs/development/python-modules/pygmt/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pygmt/default.nix b/pkgs/development/python-modules/pygmt/default.nix index a6e4c9a613aa..31b9fdd7c3a1 100644 --- a/pkgs/development/python-modules/pygmt/default.nix +++ b/pkgs/development/python-modules/pygmt/default.nix @@ -18,16 +18,16 @@ buildPythonPackage rec { pname = "pygmt"; - version = "0.9.0"; + version = "0.10.0"; format = "pyproject"; - disabled = pythonOlder "3.8"; + disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "GenericMappingTools"; repo = "pygmt"; rev = "refs/tags/v${version}"; - hash = "sha256-XDIAFIU+chewMDEoQDYqSYvK1tT9afh44w3Yd7ILZIc="; + hash = "sha256-+bkjqHjJIwk44u226q6xqeGmwMWleyc4lRfMZdDjVBA="; }; postPatch = '' From 6f4cbe7841cd67dce576f205b03ee05aa7cff15b Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Wed, 13 Sep 2023 20:10:25 +0800 Subject: [PATCH 275/346] moar: 1.16.0 -> 1.16.1 --- pkgs/tools/misc/moar/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/moar/default.nix b/pkgs/tools/misc/moar/default.nix index 7c163859dfdb..d301d5a0bcd9 100644 --- a/pkgs/tools/misc/moar/default.nix +++ b/pkgs/tools/misc/moar/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "moar"; - version = "1.16.0"; + version = "1.16.1"; src = fetchFromGitHub { owner = "walles"; repo = pname; rev = "v${version}"; - hash = "sha256-m3IG5xZITh+iAE233NFMI+25VRt6GvK694oVd1wU5jA="; + hash = "sha256-r1M47KYFJYhLX1HK0uPVkupghyoqdbhStgaquvC4MQI="; }; vendorHash = "sha256-aFCv6VxHD1bOLhCHXhy4ubik8Z9uvU6AeqcMqIZI2Oo="; From ebe1cb8c0f4d86db9424abf7b0de5be36ba574ef Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 12:10:27 +0000 Subject: [PATCH 276/346] python310Packages.libtmux: 0.23.1 -> 0.23.2 --- pkgs/development/python-modules/libtmux/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/libtmux/default.nix b/pkgs/development/python-modules/libtmux/default.nix index aab31436fb2b..f94608c1b452 100644 --- a/pkgs/development/python-modules/libtmux/default.nix +++ b/pkgs/development/python-modules/libtmux/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "libtmux"; - version = "0.23.1"; + version = "0.23.2"; format = "pyproject"; src = fetchFromGitHub { owner = "tmux-python"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-uMsQFDPLsphS6T55sDMKFawYgAycp8u9NizF5ZHnMqQ="; + hash = "sha256-W1gBhukBooPo8uej6i8i3UxLuDeBBeSX5xU50SyjjlA="; }; postPatch = '' From ffa538dfc437d6bacbf0d3d9b42347d7a1745616 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Mon, 11 Sep 2023 14:17:54 +0800 Subject: [PATCH 277/346] nixos/clash-verge: fix module descriptions --- nixos/modules/programs/clash-verge.nix | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/nixos/modules/programs/clash-verge.nix b/nixos/modules/programs/clash-verge.nix index 29977be3858f..57a1c0377edb 100644 --- a/nixos/modules/programs/clash-verge.nix +++ b/nixos/modules/programs/clash-verge.nix @@ -2,17 +2,9 @@ { options.programs.clash-verge = { - enable = lib.mkEnableOption (lib.mdDoc '' - Clash Verge. - ''); - - autoStart = lib.mkEnableOption (lib.mdDoc '' - Clash Verge Auto Launch. - ''); - - tunMode = lib.mkEnableOption (lib.mdDoc '' - Clash Verge Tun Mode. - ''); + enable = lib.mkEnableOption (lib.mdDoc "Clash Verge"); + autoStart = lib.mkEnableOption (lib.mdDoc "Clash Verge auto launch"); + tunMode = lib.mkEnableOption (lib.mdDoc "Clash Verge TUN mode"); }; config = From dc3e068ea9281e2161eac0164de361337d0d41fa Mon Sep 17 00:00:00 2001 From: Yaya Date: Wed, 13 Sep 2023 14:38:33 +0200 Subject: [PATCH 278/346] gitlab: 16.3.2 -> 16.3.3 (#254932) https://gitlab.com/gitlab-org/gitlab/-/blob/v16.3.3-ee/CHANGELOG.md --- .../applications/version-management/gitlab/data.json | 12 ++++++------ .../version-management/gitlab/gitaly/default.nix | 4 ++-- .../gitlab/gitlab-pages/default.nix | 4 ++-- .../gitlab/gitlab-workhorse/default.nix | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/version-management/gitlab/data.json b/pkgs/applications/version-management/gitlab/data.json index 314b7a694e68..d0c88d1ecb48 100644 --- a/pkgs/applications/version-management/gitlab/data.json +++ b/pkgs/applications/version-management/gitlab/data.json @@ -1,15 +1,15 @@ { - "version": "16.3.2", - "repo_hash": "sha256-SFxmbVWFEq0kWhzCLESdAksxUd0tiNeLGCOKNRHKMqI=", + "version": "16.3.3", + "repo_hash": "sha256-+h3ksxuphegTvjrKTWk68fgan1n2g64b1sn5nMoYhLc=", "yarn_hash": "02g51sfpn065513n5ngcw6rqvzaws6yfq0y7gyj4lc4d8fhis088", "owner": "gitlab-org", "repo": "gitlab", - "rev": "v16.3.2-ee", + "rev": "v16.3.3-ee", "passthru": { - "GITALY_SERVER_VERSION": "16.3.2", - "GITLAB_PAGES_VERSION": "16.3.2", + "GITALY_SERVER_VERSION": "16.3.3", + "GITLAB_PAGES_VERSION": "16.3.3", "GITLAB_SHELL_VERSION": "14.26.0", "GITLAB_ELASTICSEARCH_INDEXER_VERSION": "4.3.8", - "GITLAB_WORKHORSE_VERSION": "16.3.2" + "GITLAB_WORKHORSE_VERSION": "16.3.3" } } diff --git a/pkgs/applications/version-management/gitlab/gitaly/default.nix b/pkgs/applications/version-management/gitlab/gitaly/default.nix index 843fac808364..de6f3c0eb50d 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/default.nix +++ b/pkgs/applications/version-management/gitlab/gitaly/default.nix @@ -13,7 +13,7 @@ }: let - version = "16.3.2"; + version = "16.3.3"; package_version = "v${lib.versions.major version}"; gitaly_package = "gitlab.com/gitlab-org/gitaly/${package_version}"; @@ -24,7 +24,7 @@ let owner = "gitlab-org"; repo = "gitaly"; rev = "v${version}"; - hash = "sha256-Q2wXoc4tLJvc0LwSct3cCswOqhUJSVVhoG/uFXeVOB4="; + hash = "sha256-V9uh5QkvQ1ifO5DNCivg47NBjgE06Ehz7DnmBeU3lVY="; }; vendorHash = "sha256-abyouKgn31yO3+oeowtxZcuvS6mazVM8zOMEFsyw4C0="; diff --git a/pkgs/applications/version-management/gitlab/gitlab-pages/default.nix b/pkgs/applications/version-management/gitlab/gitlab-pages/default.nix index 723f94408d66..c628b45c8596 100644 --- a/pkgs/applications/version-management/gitlab/gitlab-pages/default.nix +++ b/pkgs/applications/version-management/gitlab/gitlab-pages/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "gitlab-pages"; - version = "16.3.2"; + version = "16.3.3"; src = fetchFromGitLab { owner = "gitlab-org"; repo = "gitlab-pages"; rev = "v${version}"; - hash = "sha256-1e3s+RLuNilNtsKzfKrsbAD0dzA87LbLH/c43CKh5EU="; + hash = "sha256-TPXMXuxckALObfEcIguJbGToIGp8b2bpd974epaXpyk="; }; vendorHash = "sha256-Pdb+bWsECe7chgvPKFGXxVAWb+AbGF6khVJSdDsHqKM="; diff --git a/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix b/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix index b9d98f6cebda..83f263e49024 100644 --- a/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix +++ b/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix @@ -5,7 +5,7 @@ in buildGoModule rec { pname = "gitlab-workhorse"; - version = "16.3.2"; + version = "16.3.3"; src = fetchFromGitLab { owner = data.owner; From 620b29a77b6e943c82dac16c0ac95fd4db7db1a1 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Wed, 13 Sep 2023 20:39:47 +0800 Subject: [PATCH 279/346] pantheon.wingpanel: 3.0.4 -> 3.0.5 https://github.com/elementary/wingpanel/releases/tag/3.0.5 --- pkgs/desktops/pantheon/desktop/wingpanel/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/pantheon/desktop/wingpanel/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel/default.nix index 660941d2b478..8b24dba707c3 100644 --- a/pkgs/desktops/pantheon/desktop/wingpanel/default.nix +++ b/pkgs/desktops/pantheon/desktop/wingpanel/default.nix @@ -21,13 +21,13 @@ stdenv.mkDerivation rec { pname = "wingpanel"; - version = "3.0.4"; + version = "3.0.5"; src = fetchFromGitHub { owner = "elementary"; repo = pname; rev = version; - sha256 = "sha256-WU2TSMuR+RRleR6ZbIXymG31l2f8XLINPkh5X9rUDcY="; + sha256 = "sha256-xowGdaH0e6y0Q2xSl0kUa01rxxoEQ0qXB3sUol0YDBA="; }; patches = [ From b3485e81e146e81b06afff50a89552edb2ed2567 Mon Sep 17 00:00:00 2001 From: Vilsol Date: Mon, 11 Sep 2023 16:47:44 +0300 Subject: [PATCH 280/346] maintainers: add vilsol --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index af83ebcff050..959a8aa08289 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -18135,6 +18135,12 @@ githubId = 90482; name = "Viktor Nordling"; }; + vilsol = { + email = "me@vil.so"; + github = "vilsol"; + githubId = 1759390; + name = "Vilsol"; + }; viluon = { email = "nix@viluon.me"; github = "viluon"; From 1a055feb05515eba7fa7d475d3fb00edccc56d61 Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 13 Sep 2023 08:59:13 -0400 Subject: [PATCH 281/346] typstfmt: 0.2.3 -> 0.2.4 Diff: https://github.com/astrale-sharp/typstfmt/compare/0.2.3...0.2.4 Changelog: https://github.com/astrale-sharp/typstfmt/blob/0.2.4/CHANGELOG.md --- pkgs/tools/typesetting/typstfmt/Cargo.lock | 8 ++++---- pkgs/tools/typesetting/typstfmt/default.nix | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/typesetting/typstfmt/Cargo.lock b/pkgs/tools/typesetting/typstfmt/Cargo.lock index af461f991de2..82a5be750838 100644 --- a/pkgs/tools/typesetting/typstfmt/Cargo.lock +++ b/pkgs/tools/typesetting/typstfmt/Cargo.lock @@ -504,7 +504,7 @@ dependencies = [ [[package]] name = "typstfmt" -version = "0.2.3" +version = "0.2.4" dependencies = [ "lexopt", "typstfmt_lib", @@ -512,7 +512,7 @@ dependencies = [ [[package]] name = "typstfmt_lib" -version = "0.2.3" +version = "0.2.4" dependencies = [ "globmatch", "insta", @@ -529,9 +529,9 @@ dependencies = [ [[package]] name = "unicode-ident" -version = "1.0.11" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" [[package]] name = "unicode-math-class" diff --git a/pkgs/tools/typesetting/typstfmt/default.nix b/pkgs/tools/typesetting/typstfmt/default.nix index bb5495e83e4f..880cbdcac34b 100644 --- a/pkgs/tools/typesetting/typstfmt/default.nix +++ b/pkgs/tools/typesetting/typstfmt/default.nix @@ -2,13 +2,13 @@ rustPlatform.buildRustPackage rec { pname = "typstfmt"; - version = "0.2.3"; + version = "0.2.4"; src = fetchFromGitHub { owner = "astrale-sharp"; repo = "typstfmt"; rev = version; - hash = "sha256-DipssOPbu7rSyfhqpuOqS7Ih+/PlK+/BT+R1Sm4mFPk="; + hash = "sha256-d0vlZqg0RcRvZM7xYdMLX2/UeolUbqZ9H4drJRRKBmc="; }; cargoLock = { From 27e3b694e7153ba8e5780fba6cf8f7ef447c1062 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Mon, 12 Jun 2023 08:43:49 +0200 Subject: [PATCH 282/346] composer-local-repo-plugin: init at 1.0.0 --- .../php/composer-local-repo-plugin.nix | 110 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 5 + 2 files changed, 115 insertions(+) create mode 100644 pkgs/build-support/php/composer-local-repo-plugin.nix diff --git a/pkgs/build-support/php/composer-local-repo-plugin.nix b/pkgs/build-support/php/composer-local-repo-plugin.nix new file mode 100644 index 000000000000..81672762618d --- /dev/null +++ b/pkgs/build-support/php/composer-local-repo-plugin.nix @@ -0,0 +1,110 @@ +{ stdenvNoCC, lib, fetchFromGitHub, composer, makeBinaryWrapper }: + +let + composerKeys = stdenvNoCC.mkDerivation (finalComposerKeysAttrs: { + pname = "composer-keys"; + version = "fa5a62092f33e094073fbda23bbfc7188df3cbc5"; + + src = fetchFromGitHub { + owner = "composer"; + repo = "composer.github.io"; + rev = "${finalComposerKeysAttrs.version}"; + hash = "sha256-3Sfn71LDG1jHwuEIU8iEnV3k6D6QTX7KVIKVaNSuCVE="; + }; + + installPhase = '' + runHook preInstall + + mkdir -p $out + install releases.pub $out/keys.tags.pub + install snapshots.pub $out/keys.dev.pub + + runHook postInstall + ''; + }); +in +stdenvNoCC.mkDerivation (finalAttrs: { + pname = "composer-local-repo-plugin"; + version = "1.0.0"; + + src = fetchFromGitHub { + owner = "nix-community"; + repo = "composer-local-repo-plugin"; + rev = finalAttrs.version; + hash = "sha256-sjWV4JXK8YJ5XLASMPipKlk9u57352wIDV2PPFIP+sk="; + }; + + COMPOSER_CACHE_DIR = "/dev/null"; + COMPOSER_MIRROR_PATH_REPOS = "1"; + COMPOSER_HTACCESS_PROTECT = "0"; + COMPOSER_DISABLE_NETWORK = "1"; + + nativeBuildInputs = [ + makeBinaryWrapper + ]; + + buildInputs = [ + composer + ]; + + configurePhase = '' + runHook preConfigure + + export COMPOSER_HOME=${placeholder "out"} + + runHook postConfigure + ''; + + buildPhase = '' + runHook preBuild + + # Configure composer globally + composer global init --quiet --no-interaction --no-ansi \ + --name="nixos/composer" \ + --homepage "https://nixos.org/" \ + --description "Composer with nix-community/composer-local-repo-plugin" \ + --license "MIT" + + composer global config --quiet minimum-stability dev + composer global config --quiet prefer-stable true + composer global config --quiet autoloader-suffix "nixPredictableAutoloaderSuffix" + composer global config --quiet apcu-autoloader false + composer global config --quiet allow-plugins.nix-community/composer-local-repo-plugin true + composer global config --quiet repo.packagist false + composer global config --quiet repo.plugin path $src + + # Install the local repository plugin + composer global require --quiet --no-ansi --no-interaction nix-community/composer-local-repo-plugin + + runHook postBuild + ''; + + checkPhase = '' + runHook preCheck + + composer global validate --no-ansi + composer global show --no-ansi nix-community/composer-local-repo-plugin + + runHook postCheck + ''; + + installPhase = '' + runHook preInstall + + mkdir -p $out + cp -ar ${composerKeys}/* $out/ + + makeWrapper ${composer}/bin/composer $out/bin/composer-local-repo-plugin \ + --prefix COMPOSER_HOME : $out + + runHook postInstall + ''; + + meta = { + description = "Composer local repo plugin for Composer"; + homepage = "https://github.com/nix-community/composer-local-repo-plugin"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ drupol ]; + platforms = lib.platforms.all; + }; +}) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 256885a8ce95..580a09e34172 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17991,6 +17991,11 @@ with pkgs; # PHP interpreters, packages and extensions. + + composer = callPackage ../development/tools/misc/composer { }; + + composer-local-repo-plugin = callPackage ../build-support/php/composer-local-repo-plugin.nix {}; + # # Set default PHP interpreter, extensions and packages php = php82; From b36ad2f51797d82ddd4479835c0edd71b3386865 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Sun, 9 Apr 2023 11:53:42 +0200 Subject: [PATCH 283/346] php: add new builder `buildComposerProject` --- .github/CODEOWNERS | 3 +- .../php/build-composer-project.nix | 61 ++++++++++ .../php/build-composer-repository.nix | 79 +++++++++++++ pkgs/build-support/{ => php}/build-pecl.nix | 0 .../php/hooks/composer-install-hook.sh | 109 ++++++++++++++++++ .../php/hooks/composer-repository-hook.sh | 66 +++++++++++ pkgs/build-support/php/hooks/default.nix | 21 ++++ pkgs/development/interpreters/php/generic.nix | 2 +- pkgs/top-level/php-packages.nix | 11 +- 9 files changed, 347 insertions(+), 5 deletions(-) create mode 100644 pkgs/build-support/php/build-composer-project.nix create mode 100644 pkgs/build-support/php/build-composer-repository.nix rename pkgs/build-support/{ => php}/build-pecl.nix (100%) create mode 100644 pkgs/build-support/php/hooks/composer-install-hook.sh create mode 100644 pkgs/build-support/php/hooks/composer-repository-hook.sh create mode 100644 pkgs/build-support/php/hooks/default.nix diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 8bea23cd6f8e..1c183c93e834 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -257,7 +257,8 @@ pkgs/development/python-modules/buildcatrust/ @ajs124 @lukegb @mweinelt # PHP interpreter, packages, extensions, tests and documentation /doc/languages-frameworks/php.section.md @aanderse @drupol @etu @globin @ma27 @talyz /nixos/tests/php @aanderse @drupol @etu @globin @ma27 @talyz -/pkgs/build-support/build-pecl.nix @aanderse @drupol @etu @globin @ma27 @talyz +/pkgs/build-support/php/build-pecl.nix @aanderse @drupol @etu @globin @ma27 @talyz +/pkgs/build-support/php @drupol @etu /pkgs/development/interpreters/php @jtojnar @aanderse @drupol @etu @globin @ma27 @talyz /pkgs/development/php-packages @aanderse @drupol @etu @globin @ma27 @talyz /pkgs/top-level/php-packages.nix @jtojnar @aanderse @drupol @etu @globin @ma27 @talyz diff --git a/pkgs/build-support/php/build-composer-project.nix b/pkgs/build-support/php/build-composer-project.nix new file mode 100644 index 000000000000..f9589ace1309 --- /dev/null +++ b/pkgs/build-support/php/build-composer-project.nix @@ -0,0 +1,61 @@ +{ stdenvNoCC, lib, writeTextDir, php, makeBinaryWrapper, fetchFromGitHub, fetchurl, composer-local-repo-plugin }: + +let + buildComposerProjectOverride = finalAttrs: previousAttrs: + + let + phpDrv = finalAttrs.php or php; + composer = finalAttrs.composer or phpDrv.packages.composer; + composerLock = finalAttrs.composerLock or null; + in + { + nativeBuildInputs = (previousAttrs.nativeBuildInputs or [ ]) ++ [ + composer + composer-local-repo-plugin + phpDrv.composerHooks.composerInstallHook + ]; + + buildInputs = (previousAttrs.buildInputs or [ ]) ++ [ + phpDrv + ]; + + patches = previousAttrs.patches or [ ]; + strictDeps = previousAttrs.strictDeps or true; + + # Should we keep these empty phases? + configurePhase = previousAttrs.configurePhase or '' + runHook preConfigure + + runHook postConfigure + ''; + + buildPhase = previousAttrs.buildPhase or '' + runHook preBuild + + runHook postBuild + ''; + + doCheck = previousAttrs.doCheck or true; + checkPhase = previousAttrs.checkPhase or '' + runHook preCheck + + runHook postCheck + ''; + + installPhase = previousAttrs.installPhase or '' + runHook preInstall + + runHook postInstall + ''; + + composerRepository = phpDrv.mkComposerRepository { + inherit composer composer-local-repo-plugin composerLock; + inherit (finalAttrs) patches pname src vendorHash version; + }; + + meta = previousAttrs.meta or { } // { + platforms = lib.platforms.all; + }; + }; +in +args: (stdenvNoCC.mkDerivation args).overrideAttrs buildComposerProjectOverride diff --git a/pkgs/build-support/php/build-composer-repository.nix b/pkgs/build-support/php/build-composer-repository.nix new file mode 100644 index 000000000000..7a7ba6f146c0 --- /dev/null +++ b/pkgs/build-support/php/build-composer-repository.nix @@ -0,0 +1,79 @@ +{ stdenvNoCC, lib, writeTextDir, fetchFromGitHub, php, composer-local-repo-plugin }: + +let + mkComposerRepositoryOverride = + /* + We cannot destruct finalAttrs since the attrset below is used to construct it + and Nix currently does not support lazy attribute names. + { + php ? null, + composer ? null, + composerLock ? "composer.lock", + src, + vendorHash, + ... + }@finalAttrs: + */ + finalAttrs: previousAttrs: + + let + phpDrv = finalAttrs.php or php; + composer = finalAttrs.composer or phpDrv.packages.composer; + in + assert (lib.assertMsg (previousAttrs ? src) "mkComposerRepository expects src argument."); + assert (lib.assertMsg (previousAttrs ? vendorHash) "mkComposerRepository expects vendorHash argument."); + assert (lib.assertMsg (previousAttrs ? version) "mkComposerRepository expects version argument."); + assert (lib.assertMsg (previousAttrs ? pname) "mkComposerRepository expects pname argument."); + { + name = "${previousAttrs.pname}-${previousAttrs.version}-composer-repository"; + + # See https://github.com/NixOS/nix/issues/6660 + dontPatchShebangs = previousAttrs.dontPatchShebangs or true; + + nativeBuildInputs = (previousAttrs.nativeBuildInputs or [ ]) ++ [ + composer + composer-local-repo-plugin + phpDrv.composerHooks.composerRepositoryHook + ]; + + buildInputs = previousAttrs.buildInputs or [ ]; + + strictDeps = previousAttrs.strictDeps or true; + + # Should we keep these empty phases? + configurePhase = previousAttrs.configurePhase or '' + runHook preConfigure + + runHook postConfigure + ''; + + buildPhase = previousAttrs.buildPhase or '' + runHook preBuild + + runHook postBuild + ''; + + doCheck = previousAttrs.doCheck or true; + checkPhase = previousAttrs.checkPhase or '' + runHook preCheck + + runHook postCheck + ''; + + installPhase = previousAttrs.installPhase or '' + runHook preInstall + + runHook postInstall + ''; + + COMPOSER_CACHE_DIR = "/dev/null"; + COMPOSER_MIRROR_PATH_REPOS = "1"; + COMPOSER_HTACCESS_PROTECT = "0"; + COMPOSER_DISABLE_NETWORK = "0"; + + outputHashMode = "recursive"; + outputHashAlgo = if (finalAttrs ? vendorHash && finalAttrs.vendorHash != "") then null else "sha256"; + outputHash = finalAttrs.vendorHash or ""; + }; +in +args: (stdenvNoCC.mkDerivation args).overrideAttrs mkComposerRepositoryOverride diff --git a/pkgs/build-support/build-pecl.nix b/pkgs/build-support/php/build-pecl.nix similarity index 100% rename from pkgs/build-support/build-pecl.nix rename to pkgs/build-support/php/build-pecl.nix diff --git a/pkgs/build-support/php/hooks/composer-install-hook.sh b/pkgs/build-support/php/hooks/composer-install-hook.sh new file mode 100644 index 000000000000..139f6357c5d7 --- /dev/null +++ b/pkgs/build-support/php/hooks/composer-install-hook.sh @@ -0,0 +1,109 @@ +declare composerHomeDir +declare composerRepository +declare version + +preConfigureHooks+=(composerInstallConfigureHook) +preBuildHooks+=(composerInstallBuildHook) +preCheckHooks+=(composerInstallCheckHook) +preInstallHooks+=(composerInstallInstallHook) + +composerInstallConfigureHook() { + echo "Executing composerInstallConfigureHook" + + if [[ ! -e "${composerRepository}" ]]; then + echo "No local composer repository found." + exit 1 + fi + + if [[ -e "$composerLock" ]]; then + cp $composerLock composer.lock + fi + + if [[ ! -f "composer.lock" ]]; then + echo "No composer.lock file found, consider adding one to your repository to ensure reproducible builds." + + if [[ -f "${composerRepository}/composer.lock" ]]; then + cp ${composerRepository}/composer.lock composer.lock + fi + + echo "Using an autogenerated composer.lock file." + fi + + chmod +w composer.json composer.lock + + echo "Finished composerInstallConfigureHook" +} + +composerInstallBuildHook() { + echo "Executing composerInstallBuildHook" + + # Since this file cannot be generated in the composer-repository-hook.sh + # because the file contains hardcoded nix store paths, we generate it here. + composer-local-repo-plugin --no-ansi build-local-repo -p ${composerRepository} > packages.json + + # Remove all the repositories of type "composer" + # from the composer.json file. + jq -r -c 'del(try .repositories[] | select(.type == "composer"))' composer.json | sponge composer.json + + # Configure composer to disable packagist and avoid using the network. + composer config repo.packagist false + # Configure composer to use the local repository. + composer config repo.composer composer file://$PWD/packages.json + + # Since the composer.json file has been modified in the previous step, the + # composer.lock file needs to be updated. + COMPOSER_DISABLE_NETWORK=1 \ + COMPOSER_ROOT_VERSION="${version}" \ + composer \ + --lock \ + --no-ansi \ + --no-install \ + --no-interaction \ + --no-plugins \ + --no-scripts \ + update + + echo "Finished composerInstallBuildHook" +} + +composerInstallCheckHook() { + echo "Executing composerInstallCheckHook" + + composer validate --no-ansi --no-interaction + + echo "Finished composerInstallCheckHook" +} + +composerInstallInstallHook() { + echo "Executing composerInstallInstallHook" + + # Finally, run `composer install` to install the dependencies and generate + # the autoloader. + # The COMPOSER_ROOT_VERSION environment variable is needed only for + # vimeo/psalm. + COMPOSER_CACHE_DIR=/dev/null \ + COMPOSER_DISABLE_NETWORK=1 \ + COMPOSER_ROOT_VERSION="${version}" \ + COMPOSER_MIRROR_PATH_REPOS="1" \ + composer \ + --no-ansi \ + --no-interaction \ + --no-scripts \ + --no-plugins \ + install + + # Remove packages.json, we don't need it in the store. + rm packages.json + + # Copy the relevant files only in the store. + mkdir -p $out/share/php/${pname} + cp -r . $out/share/php/${pname}/ + + # Create symlinks for the binaries. + jq -r -c 'try .bin[]' composer.json | while read bin; do + mkdir -p $out/share/php/${pname} $out/bin + ln -s $out/share/php/${pname}/$bin $out/bin/$(basename $bin) + done + + echo "Finished composerInstallInstallHook" +} diff --git a/pkgs/build-support/php/hooks/composer-repository-hook.sh b/pkgs/build-support/php/hooks/composer-repository-hook.sh new file mode 100644 index 000000000000..707c94452256 --- /dev/null +++ b/pkgs/build-support/php/hooks/composer-repository-hook.sh @@ -0,0 +1,66 @@ +declare composerHomeDir +declare composerLock +declare version + +preConfigureHooks+=(composerRepositoryConfigureHook) +preBuildHooks+=(composerRepositoryBuildHook) +preCheckHooks+=(composerRepositoryCheckHook) +preInstallHooks+=(composerRepositoryInstallHook) + +composerRepositoryConfigureHook() { + echo "Executing composerRepositoryConfigureHook" + + if [[ -e "$composerLock" ]]; then + cp $composerLock composer.lock + fi + + if [[ ! -f "composer.lock" ]]; then + echo "No composer.lock file found, consider adding one to your repository to ensure reproducible builds." + composer \ + --no-ansi \ + --no-install \ + --no-interaction \ + --no-plugins \ + --no-scripts \ + update + echo "Using an autogenerated composer.lock file." + fi + + echo "Finished composerRepositoryConfigureHook" +} + +composerRepositoryBuildHook() { + echo "Executing composerRepositoryBuildHook" + + mkdir -p repository + + # Build the local composer repository + # The command 'build-local-repo' is provided by the Composer plugin + # nix-community/composer-local-repo-plugin. + COMPOSER_CACHE_DIR=/dev/null \ + composer-local-repo-plugin --no-ansi build-local-repo -r repository + + echo "Finished composerRepositoryBuildHook" +} + +composerRepositoryCheckHook() { + echo "Executing composerRepositoryCheckHook" + + composer validate --no-ansi --no-interaction + + echo "Finished composerRepositoryCheckHook" +} + +composerRepositoryInstallHook() { + echo "Executing composerRepositoryInstallHook" + + mkdir -p $out + + cp -ar repository/. $out/ + + # Copy the composer.lock files to the output directory, in case it has been + # autogenerated. + cp composer.lock $out/ + + echo "Finished composerRepositoryInstallHook" +} diff --git a/pkgs/build-support/php/hooks/default.nix b/pkgs/build-support/php/hooks/default.nix new file mode 100644 index 000000000000..98198f012879 --- /dev/null +++ b/pkgs/build-support/php/hooks/default.nix @@ -0,0 +1,21 @@ +{ makeSetupHook +, php +, jq +, moreutils +}: + +{ + composerRepositoryHook = makeSetupHook + { + name = "composer-repository-hook.sh"; + propagatedBuildInputs = [ php jq moreutils ]; + substitutions = { }; + } ./composer-repository-hook.sh; + + composerInstallHook = makeSetupHook + { + name = "composer-install-hook.sh"; + propagatedBuildInputs = [ php jq moreutils ]; + substitutions = { }; + } ./composer-install-hook.sh; +} diff --git a/pkgs/development/interpreters/php/generic.nix b/pkgs/development/interpreters/php/generic.nix index cee1e833f9a6..38ac50081423 100644 --- a/pkgs/development/interpreters/php/generic.nix +++ b/pkgs/development/interpreters/php/generic.nix @@ -159,7 +159,7 @@ let nixos = lib.recurseIntoAttrs nixosTests."php${lib.strings.replaceStrings [ "." ] [ "" ] (lib.versions.majorMinor php.version)}"; package = tests.php; }; - inherit (php-packages) extensions buildPecl mkExtension; + inherit (php-packages) extensions buildPecl mkComposerRepository buildComposerProject composerHooks mkExtension; packages = php-packages.tools; meta = php.meta // { outputsToInstall = [ "out" ]; diff --git a/pkgs/top-level/php-packages.nix b/pkgs/top-level/php-packages.nix index 7430c98586b7..aad260fc3c00 100644 --- a/pkgs/top-level/php-packages.nix +++ b/pkgs/top-level/php-packages.nix @@ -1,4 +1,6 @@ { stdenv +, config +, callPackages , lib , pkgs , phpPackage @@ -44,12 +46,15 @@ }: lib.makeScope pkgs.newScope (self: with self; { - buildPecl = import ../build-support/build-pecl.nix { + buildPecl = callPackage ../build-support/php/build-pecl.nix { php = php.unwrapped; - inherit lib; - inherit (pkgs) stdenv autoreconfHook fetchurl re2c nix-update-script; }; + composerHooks = callPackages ../build-support/php/hooks { }; + + mkComposerRepository = callPackage ../build-support/php/build-composer-repository.nix { }; + buildComposerProject = callPackage ../build-support/php/build-composer-project.nix { }; + # Wrap mkDerivation to prepend pname with "php-" to make names consistent # with how buildPecl does it and make the file easier to overview. mkDerivation = origArgs: From 248e8f3cba2982e33aae8572cf5243b5e8c94027 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Fri, 14 Apr 2023 12:33:57 +0200 Subject: [PATCH 284/346] phpPackages.composer: use `buildComposerProject` builder --- .../php-packages/composer/default.nix | 31 +++++++++---------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/pkgs/development/php-packages/composer/default.nix b/pkgs/development/php-packages/composer/default.nix index 9cefb46d8e67..2d0e7c579d5f 100644 --- a/pkgs/development/php-packages/composer/default.nix +++ b/pkgs/development/php-packages/composer/default.nix @@ -1,33 +1,32 @@ -{ mkDerivation, fetchurl, makeBinaryWrapper, unzip, lib, php }: +{ lib, fetchFromGitHub, php, composer, unzip, _7zz, xz, git, curl, cacert, makeBinaryWrapper }: + +php.buildComposerProject (finalAttrs: { + inherit composer; -mkDerivation (finalAttrs: { pname = "composer"; version = "2.6.2"; - src = fetchurl { - url = "https://github.com/composer/composer/releases/download/${finalAttrs.version}/composer.phar"; - hash = "sha256-iMhNSlP88cJ9Z2Lh1da3DVfG3J0uIxT9Cdv4a/YeGu8="; + src = fetchFromGitHub { + owner = "composer"; + repo = "composer"; + rev = finalAttrs.version; + hash = "sha256-tNc0hP41aRk7MmeWXCd73uHxK9pk1tCWyjiSO568qbE="; }; - dontUnpack = true; - nativeBuildInputs = [ makeBinaryWrapper ]; - installPhase = '' - runHook preInstall - mkdir -p $out/bin - install -D $src $out/libexec/composer/composer.phar - makeWrapper ${php}/bin/php $out/bin/composer \ - --add-flags "$out/libexec/composer/composer.phar" \ - --prefix PATH : ${lib.makeBinPath [ unzip ]} - runHook postInstall + postInstall = '' + wrapProgram $out/bin/composer \ + --prefix PATH : ${lib.makeBinPath [ _7zz cacert curl git unzip xz ]} ''; + vendorHash = "sha256-V6C4LxEfXNWH/pCKATv1gf8f6/a0s/xu5j5bNJUNmnA="; + meta = { changelog = "https://github.com/composer/composer/releases/tag/${finalAttrs.version}"; description = "Dependency Manager for PHP"; homepage = "https://getcomposer.org/"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ offline ] ++ lib.teams.php.members; + maintainers = lib.teams.php.members; }; }) From c0c01910ce63b0490246bef8df380ea42a29cb49 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Fri, 21 Apr 2023 11:53:17 +0200 Subject: [PATCH 285/346] php: update documentation --- doc/languages-frameworks/php.section.md | 140 +++++++++++++++++++++++- 1 file changed, 139 insertions(+), 1 deletion(-) diff --git a/doc/languages-frameworks/php.section.md b/doc/languages-frameworks/php.section.md index 6c4315f5c487..2ca55aef1eff 100644 --- a/doc/languages-frameworks/php.section.md +++ b/doc/languages-frameworks/php.section.md @@ -130,6 +130,7 @@ package: a project may depend on certain extensions and `composer` won't work with that project unless those extensions are loaded. Example of building `composer` with additional extensions: + ```nix (php.withExtensions ({ all, enabled }: enabled ++ (with all; [ imagick redis ])) @@ -138,7 +139,9 @@ Example of building `composer` with additional extensions: ### Overriding PHP packages {#ssec-php-user-guide-overriding-packages} -`php-packages.nix` form a scope, allowing us to override the packages defined within. For example, to apply a patch to a `mysqlnd` extension, you can simply pass an overlay-style function to `php`’s `packageOverrides` argument: +`php-packages.nix` form a scope, allowing us to override the packages defined +within. For example, to apply a patch to a `mysqlnd` extension, you can simply +pass an overlay-style function to `php`’s `packageOverrides` argument: ```nix php.override { @@ -153,3 +156,138 @@ php.override { }; } ``` + +### Building PHP projects {#ssec-building-php-projects} + +With [Composer](https://getcomposer.org/), you can effectively build PHP +projects by streamlining dependency management. As the de-facto standard +dependency manager for PHP, Composer enables you to declare and manage the +libraries your project relies on, ensuring a more organized and efficient +development process. + +Composer is not a package manager in the same sense as `Yum` or `Apt` are. Yes, +it deals with "packages" or libraries, but it manages them on a per-project +basis, installing them in a directory (e.g. `vendor`) inside your project. By +default, it does not install anything globally. This idea is not new and +Composer is strongly inspired by node's `npm` and ruby's `bundler`. + +Currently, there is no other PHP tool that offers the same functionality as +Composer. Consequently, incorporating a helper in Nix to facilitate building +such applications is a logical choice. + +In a Composer project, dependencies are defined in a `composer.json` file, +while their specific versions are locked in a `composer.lock` file. Some +Composer-based projects opt to include this `composer.lock` file in their source +code, while others choose not to. + +In Nix, there are multiple approaches to building a Composer-based project. + +One such method is the `php.buildComposerProject` helper function, which serves +as a wrapper around `mkDerivation`. + +Using this function, you can build a PHP project that includes both a +`composer.json` and `composer.lock` file. If the project specifies binaries +using the `bin` attribute in `composer.json`, these binaries will be +automatically linked and made accessible in the derivation. In this context, +"binaries" refer to PHP scripts that are intended to be executable. + +To use the helper effectively, simply add the `vendorHash` attribute, which +enables the wrapper to handle the heavy lifting. + +Internally, the helper operates in three stages: + +1. It constructs a `composerRepository` attribute derivation by creating a + composer repository on the filesystem containing dependencies specified in + `composer.json`. This process uses the function + `php.mkComposerRepository` which in turn uses the + `php.composerHooks.composerRepositoryHook` hook. Internaly this function uses + a custom + [Composer plugin](https://github.com/nix-community/composer-local-repo-plugin) to + generate the repository. +2. The resulting `composerRepository` derivation is then used by the + `php.composerHooks.composerInstallHook` hook, which is responsible for + creating the final `vendor` directory. +3. Any "binary" specified in the `composer.json` are linked and made accessible + in the derivation. + +As the autoloader optimization can be activated directly within the +`composer.json` file, we do not enable any autoloader optimization flags. + +To customize the PHP version, you can specify the `php` attribute. Similarly, if +you wish to modify the Composer version, use the `composer` attribute. It is +important to note that both attributes should be of the `derivation` type. + +Here's an example of working code example using `php.buildComposerProject`: + +```nix +{ php, fetchFromGitHub }: + +php.buildComposerProject (finalAttrs: { + pname = "php-app"; + version = "1.0.0"; + + src = fetchFromGitHub { + owner = "git-owner"; + repo = "git-repo"; + rev = finalAttrs.version; + hash = "sha256-VcQRSss2dssfkJ+iUb5qT+FJ10GHiFDzySigcmuVI+8="; + }; + + # PHP version containing the `ast` extension enabled + php = php.buildEnv { + extensions = ({ enabled, all }: enabled ++ (with all; [ + ast + ])); + }; + + # The composer vendor hash + vendorHash = "sha256-86s/F+/5cBAwBqZ2yaGRM5rTGLmou5//aLRK5SA0WiQ="; + + # If the composer.lock file is missing from the repository, add it: + # composerLock = ./path/to/composer.lock; +}) +``` + +In case the file `composer.lock` is missing from the repository, it is possible +to specify it using the `composerLock` attribute. + +The other method is to use all these methods and hooks individually. This has +the advantage of building a PHP library within another derivation very easily +when necessary. + +Here's a working code example to build a PHP library using `mkDerivation` and +separate functions and hooks: + +```nix +{ stdenvNoCC, fetchFromGitHub, php }: + +stdenvNoCC.mkDerivation (finalAttrs: +let + src = fetchFromGitHub { + owner = "git-owner"; + repo = "git-repo"; + rev = finalAttrs.version; + hash = "sha256-VcQRSss2dssfkJ+iUb5qT+FJ10GHiFDzySigcmuVI+8="; + }; +in { + inherit src; + pname = "php-app"; + version = "1.0.0"; + + buildInputs = [ php ]; + + nativeBuildInputs = [ + php.packages.composer + # This hook will use the attribute `composerRepository` + php.composerHooks.composerInstallHook + ]; + + composerRepository = php.mkComposerRepository { + inherit (finalAttrs) src; + # Specifying a custom composer.lock since it is not present in the sources. + composerLock = ./composer.lock; + # The composer vendor hash + vendorHash = "sha256-86s/F+/5cBAwBqZ2yaGRM5rTGLmou5//aLRK5SA0WiQ="; + }; +}) +``` From 9e701e63288a339b71d4d2e95222fc8be021f1ac Mon Sep 17 00:00:00 2001 From: Elis Hirwing Date: Wed, 9 Aug 2023 21:07:30 +0200 Subject: [PATCH 286/346] composer-local-repo-plugin: Stop exposing this internal tool --- pkgs/build-support/php/build-composer-project.nix | 3 ++- pkgs/build-support/php/build-composer-repository.nix | 3 ++- pkgs/top-level/all-packages.nix | 3 --- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/build-support/php/build-composer-project.nix b/pkgs/build-support/php/build-composer-project.nix index f9589ace1309..a56720b801b8 100644 --- a/pkgs/build-support/php/build-composer-project.nix +++ b/pkgs/build-support/php/build-composer-project.nix @@ -1,4 +1,4 @@ -{ stdenvNoCC, lib, writeTextDir, php, makeBinaryWrapper, fetchFromGitHub, fetchurl, composer-local-repo-plugin }: +{ callPackage, stdenvNoCC, lib, writeTextDir, php, makeBinaryWrapper, fetchFromGitHub, fetchurl }: let buildComposerProjectOverride = finalAttrs: previousAttrs: @@ -6,6 +6,7 @@ let let phpDrv = finalAttrs.php or php; composer = finalAttrs.composer or phpDrv.packages.composer; + composer-local-repo-plugin = callPackage ./composer-local-repo-plugin.nix { }; composerLock = finalAttrs.composerLock or null; in { diff --git a/pkgs/build-support/php/build-composer-repository.nix b/pkgs/build-support/php/build-composer-repository.nix index 7a7ba6f146c0..95681104e234 100644 --- a/pkgs/build-support/php/build-composer-repository.nix +++ b/pkgs/build-support/php/build-composer-repository.nix @@ -1,4 +1,4 @@ -{ stdenvNoCC, lib, writeTextDir, fetchFromGitHub, php, composer-local-repo-plugin }: +{ callPackage, stdenvNoCC, lib, writeTextDir, fetchFromGitHub, php }: let mkComposerRepositoryOverride = @@ -19,6 +19,7 @@ let let phpDrv = finalAttrs.php or php; composer = finalAttrs.composer or phpDrv.packages.composer; + composer-local-repo-plugin = callPackage ./composer-local-repo-plugin.nix { }; in assert (lib.assertMsg (previousAttrs ? src) "mkComposerRepository expects src argument."); assert (lib.assertMsg (previousAttrs ? vendorHash) "mkComposerRepository expects vendorHash argument."); diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 580a09e34172..f128c756ccab 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17991,11 +17991,8 @@ with pkgs; # PHP interpreters, packages and extensions. - composer = callPackage ../development/tools/misc/composer { }; - composer-local-repo-plugin = callPackage ../build-support/php/composer-local-repo-plugin.nix {}; - # # Set default PHP interpreter, extensions and packages php = php82; From 2160ed2bccc361c43e841e16b742cdda07f64461 Mon Sep 17 00:00:00 2001 From: Elis Hirwing Date: Wed, 9 Aug 2023 21:09:41 +0200 Subject: [PATCH 287/346] composer: Stop exposing composer built from a phar file --- pkgs/build-support/php/composer-local-repo-plugin.nix | 4 +++- pkgs/development/php-packages/composer/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 -- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/build-support/php/composer-local-repo-plugin.nix b/pkgs/build-support/php/composer-local-repo-plugin.nix index 81672762618d..3e918689088d 100644 --- a/pkgs/build-support/php/composer-local-repo-plugin.nix +++ b/pkgs/build-support/php/composer-local-repo-plugin.nix @@ -1,6 +1,8 @@ -{ stdenvNoCC, lib, fetchFromGitHub, composer, makeBinaryWrapper }: +{ callPackage, stdenvNoCC, lib, fetchFromGitHub, makeBinaryWrapper }: let + composer = callPackage ../../development/tools/misc/composer { }; + composerKeys = stdenvNoCC.mkDerivation (finalComposerKeysAttrs: { pname = "composer-keys"; version = "fa5a62092f33e094073fbda23bbfc7188df3cbc5"; diff --git a/pkgs/development/php-packages/composer/default.nix b/pkgs/development/php-packages/composer/default.nix index 2d0e7c579d5f..a1459bb2d253 100644 --- a/pkgs/development/php-packages/composer/default.nix +++ b/pkgs/development/php-packages/composer/default.nix @@ -1,7 +1,7 @@ -{ lib, fetchFromGitHub, php, composer, unzip, _7zz, xz, git, curl, cacert, makeBinaryWrapper }: +{ lib, callPackage, fetchFromGitHub, php, unzip, _7zz, xz, git, curl, cacert, makeBinaryWrapper }: php.buildComposerProject (finalAttrs: { - inherit composer; + composer = callPackage ../../tools/misc/composer { }; pname = "composer"; version = "2.6.2"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f128c756ccab..256885a8ce95 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17991,8 +17991,6 @@ with pkgs; # PHP interpreters, packages and extensions. - composer = callPackage ../development/tools/misc/composer { }; - # # Set default PHP interpreter, extensions and packages php = php82; From 1e238b8afef29aa559b3380b240eeeb2908862ea Mon Sep 17 00:00:00 2001 From: Elis Hirwing Date: Wed, 9 Aug 2023 21:25:01 +0200 Subject: [PATCH 288/346] php: Fix shellcheck string warnings in composer-install-hook --- .../php/hooks/composer-install-hook.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/build-support/php/hooks/composer-install-hook.sh b/pkgs/build-support/php/hooks/composer-install-hook.sh index 139f6357c5d7..2d5c90ea3b2f 100644 --- a/pkgs/build-support/php/hooks/composer-install-hook.sh +++ b/pkgs/build-support/php/hooks/composer-install-hook.sh @@ -16,7 +16,7 @@ composerInstallConfigureHook() { fi if [[ -e "$composerLock" ]]; then - cp $composerLock composer.lock + cp "$composerLock" composer.lock fi if [[ ! -f "composer.lock" ]]; then @@ -39,7 +39,7 @@ composerInstallBuildHook() { # Since this file cannot be generated in the composer-repository-hook.sh # because the file contains hardcoded nix store paths, we generate it here. - composer-local-repo-plugin --no-ansi build-local-repo -p ${composerRepository} > packages.json + composer-local-repo-plugin --no-ansi build-local-repo -p "${composerRepository}" > packages.json # Remove all the repositories of type "composer" # from the composer.json file. @@ -48,7 +48,7 @@ composerInstallBuildHook() { # Configure composer to disable packagist and avoid using the network. composer config repo.packagist false # Configure composer to use the local repository. - composer config repo.composer composer file://$PWD/packages.json + composer config repo.composer composer file://"$PWD"/packages.json # Since the composer.json file has been modified in the previous step, the # composer.lock file needs to be updated. @@ -96,13 +96,13 @@ composerInstallInstallHook() { rm packages.json # Copy the relevant files only in the store. - mkdir -p $out/share/php/${pname} - cp -r . $out/share/php/${pname}/ + mkdir -p "$out"/share/php/"${pname}" + cp -r . "$out"/share/php/"${pname}"/ # Create symlinks for the binaries. - jq -r -c 'try .bin[]' composer.json | while read bin; do - mkdir -p $out/share/php/${pname} $out/bin - ln -s $out/share/php/${pname}/$bin $out/bin/$(basename $bin) + jq -r -c 'try .bin[]' composer.json | while read -r bin; do + mkdir -p "$out"/share/php/"${pname}" "$out"/bin + ln -s "$out"/share/php/"${pname}"/"$bin" "$out"/bin/"$(basename "$bin")" done echo "Finished composerInstallInstallHook" From 88d3a5724278804b2698b344fd9efbc8e5f354a5 Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 13 Sep 2023 09:09:05 -0400 Subject: [PATCH 289/346] snazy: 0.51.3 -> 0.52.0 Diff: https://github.com/chmouel/snazy/compare/0.51.3...0.52.0 Changelog: https://github.com/chmouel/snazy/releases/tag/0.52.0 --- pkgs/development/tools/snazy/default.nix | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/pkgs/development/tools/snazy/default.nix b/pkgs/development/tools/snazy/default.nix index 6367e05ab54d..c3d104e87383 100644 --- a/pkgs/development/tools/snazy/default.nix +++ b/pkgs/development/tools/snazy/default.nix @@ -1,32 +1,21 @@ { lib , rustPlatform , fetchFromGitHub -, fetchpatch , installShellFiles }: rustPlatform.buildRustPackage rec { pname = "snazy"; - version = "0.51.3"; + version = "0.52.0"; src = fetchFromGitHub { owner = "chmouel"; repo = pname; rev = version; - hash = "sha256-YE11ypzOhRNjoi+X9Khp6qxqhD1f/hslr1t2cEeUTbs="; + hash = "sha256-ax16BO2I+LgaVilqrsVToulBRcyr0C/QUtrdn0nUfBU="; }; - cargoHash = "sha256-8oT9tdGeU/1mtgf470Ps4EwQmWxPhxAzmA8D30UG60o="; - - cargoPatches = [ - # update Cargo.toml to fix the version - # https://github.com/chmouel/snazy/pull/217 - (fetchpatch { - name = "update-version-in-cargo-toml.patch"; - url = "https://github.com/chmouel/snazy/commit/199f560e12d07c07c240bc91e7f929831af2cc4d.patch"; - hash = "sha256-X1oi4Mf1m/k/HYYJvqIrN14JJSEPUmWJt9PhzLiyYUs="; - }) - ]; + cargoHash = "sha256-go6y/NH3vFb8xtAGVpgy0GQfMfzXfn8hI+tJnUdCFAU="; nativeBuildInputs = [ installShellFiles ]; From 5bfefdc0a39668f8f82b1269c7299e52f9b1c7e9 Mon Sep 17 00:00:00 2001 From: K900 Date: Wed, 13 Sep 2023 13:29:17 +0000 Subject: [PATCH 290/346] yuzu: 1538 -> 1557, yuzu-ea: 3838 -> 3864 --- pkgs/applications/emulators/yuzu/sources.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/emulators/yuzu/sources.nix b/pkgs/applications/emulators/yuzu/sources.nix index 9322090e7941..4a792c973b53 100644 --- a/pkgs/applications/emulators/yuzu/sources.nix +++ b/pkgs/applications/emulators/yuzu/sources.nix @@ -1,19 +1,19 @@ # Generated by ./update.sh - do not update manually! -# Last updated: 2023-08-27 +# Last updated: 2023-09-13 { compatList = { - rev = "f440391993fe499c79d647ed0a20d117c0db0c27"; + rev = "463d5f3537eed71638d4f5809467afec1eb5988c"; hash = "sha256:1hdsza3wf9a0yvj6h55gsl7xqvhafvbz1i8paz9kg7l49b0gnlh1"; }; mainline = { - version = "1538"; - hash = "sha256:1wynpcx6gwdbahf7nm22jslk9hbcy17nxbr6qnzagndrws30csx5"; + version = "1557"; + hash = "sha256:19wlia1g2ll9fwbn4yj57cax4lvs3d6w41z2yy2pjdq84yzgg1gs"; }; ea = { - version = "3838"; - distHash = "sha256:0riwahdlhi4a96ya4pi7g0anwa35z8zhbax87m2mk89vwrjnf2am"; - fullHash = "sha256:1a1cq4dg624y3ixgc05ihlhy1fnpp98xnc60cssrdmmzyp79hrjp"; + version = "3864"; + distHash = "sha256:02dxf9f33agnp91myxxklrdjalh6d32zjlg07p7v5v48mymnxhv9"; + fullHash = "sha256:020ljbgb79i66y6fqj4xblzv4s808l50jy7wwl0d6jwpck1q3i11"; }; } From a43c73668bf213b352f8171e1ba2323999df9dda Mon Sep 17 00:00:00 2001 From: K900 Date: Wed, 13 Sep 2023 16:37:54 +0300 Subject: [PATCH 291/346] path-of-building.data: 2.33.5 -> 2.34.0 Diff: https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.33.5...v2.34.0 --- pkgs/games/path-of-building/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/path-of-building/default.nix b/pkgs/games/path-of-building/default.nix index 9b5bcdd1add0..e8b9c016dbd6 100644 --- a/pkgs/games/path-of-building/default.nix +++ b/pkgs/games/path-of-building/default.nix @@ -2,13 +2,13 @@ let data = stdenv.mkDerivation(finalAttrs: { pname = "path-of-building-data"; - version = "2.33.5"; + version = "2.34.0"; src = fetchFromGitHub { owner = "PathOfBuildingCommunity"; repo = "PathOfBuilding"; rev = "v${finalAttrs.version}"; - hash = "sha256-a7/xuVfsLQaSsmHVFKqDEypCunFQtHvcVISaQD1YCEs="; + hash = "sha256-A672cs930wRV8DwRpah//emtsAidNnOzwtfXiiYxyd4="; }; nativeBuildInputs = [ unzip ]; From 7034f2802a2c59303a73ce5b9dcdb0b61fa06b9e Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 13 Sep 2023 09:44:51 -0400 Subject: [PATCH 292/346] vimPlugins: update --- .../editors/vim/plugins/generated.nix | 719 ++++++++++-------- 1 file changed, 384 insertions(+), 335 deletions(-) diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index 31bde17bbcab..ce71697803c3 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -185,12 +185,12 @@ final: prev: LeaderF = buildVimPluginFrom2Nix { pname = "LeaderF"; - version = "2023-08-21"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "Yggdroot"; repo = "LeaderF"; - rev = "3ded37f92807d8c6ad831d5af2c4ff22bfd32fc8"; - sha256 = "0ajc1bpdikc4751wbq9f6wwy72102gjz46bj8rysffkvak7jhbgm"; + rev = "6aebb6c6b1019499aed2815e86b59b831915af82"; + sha256 = "0rhw88j37xwjs62kjkspw6d7lxclkyyz0qcmnr282071bnhvdgw7"; }; meta.homepage = "https://github.com/Yggdroot/LeaderF/"; }; @@ -305,12 +305,12 @@ final: prev: SchemaStore-nvim = buildVimPluginFrom2Nix { pname = "SchemaStore.nvim"; - version = "2023-09-05"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "b0o"; repo = "SchemaStore.nvim"; - rev = "9d7b4c8d1c2ad029234d531871a55c075a116b7d"; - sha256 = "153xra8314xv1y2rwxbbg6a0fi3ylmgyq9vf36zs23sxiksmjiqw"; + rev = "8c388a1a38ae1b618eef06a6b0388f5ff33867bd"; + sha256 = "0yrcnl9dqkzshyh3dymmf9yjx2h94415n0qx7lj65wzcvszl66xr"; }; meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; }; @@ -377,12 +377,12 @@ final: prev: SpaceVim = buildVimPluginFrom2Nix { pname = "SpaceVim"; - version = "2023-09-06"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "SpaceVim"; repo = "SpaceVim"; - rev = "f8177c76dfa440318eb832e56217c43bd3ff95be"; - sha256 = "0lxic81ykn0xjkqzds2wjqq4jsk7gi2ibx94yv347snhqzvgz9xj"; + rev = "70b949a35dce6543753bb258816a012b6d0f98da"; + sha256 = "0kc23qrvq6jwcpifis0gb3hkmc2v0rjyxqyna0chhmgzryp18qad"; }; meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; }; @@ -449,12 +449,12 @@ final: prev: YouCompleteMe = buildVimPluginFrom2Nix { pname = "YouCompleteMe"; - version = "2023-08-19"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "ycm-core"; repo = "YouCompleteMe"; - rev = "4f1dcf4f971517b5a41d420b3671259f917e3827"; - sha256 = "032bxbp4xpq13gcc4gm6svs57mj7i7z9mk3gybyhqmd9dxx5dy43"; + rev = "127646b2a75bdba528e7a7c7ba25c0f5eda993cd"; + sha256 = "06pdgvnwwsr4rws9y1lixjmz0y7vn6bwa6kgmmfin6jw58954zh7"; fetchSubmodules = true; }; meta.homepage = "https://github.com/ycm-core/YouCompleteMe/"; @@ -496,6 +496,18 @@ final: prev: meta.homepage = "https://github.com/eikenb/acp/"; }; + actions-preview-nvim = buildVimPluginFrom2Nix { + pname = "actions-preview.nvim"; + version = "2023-08-23"; + src = fetchFromGitHub { + owner = "aznhe21"; + repo = "actions-preview.nvim"; + rev = "5650c76abfb84d6498330dd045657ba630ecdbba"; + sha256 = "09i6fp5kjz2dxhhfznzlrq8gvn204byk4mw23cmxlkc6hnnz4z74"; + }; + meta.homepage = "https://github.com/aznhe21/actions-preview.nvim/"; + }; + adwaita-nvim = buildVimPluginFrom2Nix { pname = "adwaita.nvim"; version = "2023-06-22"; @@ -571,12 +583,12 @@ final: prev: ale = buildVimPluginFrom2Nix { pname = "ale"; - version = "2023-09-05"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "dense-analysis"; repo = "ale"; - rev = "14350dbb0d265ef87d1c7d420d89fb4165a2b131"; - sha256 = "0r3v6n5f82zaykj6dlrgxni72i2prqs1l5p0g4i9f8ri8d6sjvgz"; + rev = "ac615e7f656fb379cfe7cd205842b0f089a060d6"; + sha256 = "0c3bfmai27cvikd4mkv4mzz8sskysmhbx1vgl53lzmrgbnv0r2xn"; }; meta.homepage = "https://github.com/dense-analysis/ale/"; }; @@ -595,12 +607,12 @@ final: prev: alpha-nvim = buildVimPluginFrom2Nix { pname = "alpha-nvim"; - version = "2023-09-06"; + version = "2023-09-07"; src = fetchFromGitHub { owner = "goolord"; repo = "alpha-nvim"; - rev = "331d55eb18d6e42bda4a183863a681be3ee11370"; - sha256 = "1ajd3y5slv1xk8fvghc90gkpn9rqi8v2nhzm0p9gq1kf0174h45k"; + rev = "712dc1dccd4fd515ef8bd126b3718f79d3e23b0d"; + sha256 = "1g57asfnc0pykqv8j9h2694h3dm2xlibw5rnd6pwqf4x8k4i4xcp"; }; meta.homepage = "https://github.com/goolord/alpha-nvim/"; }; @@ -775,12 +787,12 @@ final: prev: asynctasks-vim = buildVimPluginFrom2Nix { pname = "asynctasks.vim"; - version = "2023-08-23"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "skywind3000"; repo = "asynctasks.vim"; - rev = "8bd5e987c84ed6a16b9fd4ca96ed54f05bb45662"; - sha256 = "1ryvxfq65vb9rk8jig6fkhv81inqfh2gvy4l50ggqw35ksd0mj3c"; + rev = "829ba93fc7cbd117d2a6be87354729e57086bc7d"; + sha256 = "0p2mzp5ln2nvr3a31kn1s0x12h2jfgmzpv89hq4pb5204ihpaw64"; }; meta.homepage = "https://github.com/skywind3000/asynctasks.vim/"; }; @@ -799,12 +811,12 @@ final: prev: aurora = buildVimPluginFrom2Nix { pname = "aurora"; - version = "2023-09-02"; + version = "2023-09-09"; src = fetchFromGitHub { owner = "ray-x"; repo = "aurora"; - rev = "c2775808b414ec3be4a3c546ced6d5e3399cfe21"; - sha256 = "110iw3x5jzyrkzz1mgg0df65spbp5bzcy8x8p5v2dirn8fncjl94"; + rev = "2ff7e8d4f7fcf8bfb4e05280049c390d71371869"; + sha256 = "0g7k0r1lfkw3km6drcv6zy29yjhc0szqlhjxrp5zdps186fx50hj"; }; meta.homepage = "https://github.com/ray-x/aurora/"; }; @@ -871,12 +883,12 @@ final: prev: autoclose-nvim = buildVimPluginFrom2Nix { pname = "autoclose.nvim"; - version = "2023-08-07"; + version = "2023-09-09"; src = fetchFromGitHub { owner = "m4xshen"; repo = "autoclose.nvim"; - rev = "d8bebaaf8c48bd0cd0645d20592548eab279fea3"; - sha256 = "0j4265rghdsswzcghs8khh0bizgnyfz88n295gxqbgflxqblh68w"; + rev = "17f1596054528848f1c47c9ef113a3a020aa26ae"; + sha256 = "1i431zpdb3iwhd9bsi12mp8zfrqylj65scakszawsm6fbdcf4bny"; }; meta.homepage = "https://github.com/m4xshen/autoclose.nvim/"; }; @@ -955,12 +967,12 @@ final: prev: barbecue-nvim = buildVimPluginFrom2Nix { pname = "barbecue.nvim"; - version = "2023-04-28"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "utilyre"; repo = "barbecue.nvim"; - rev = "cd7e7da622d68136e13721865b4d919efd6325ed"; - sha256 = "0splz9dnzl3cy2klgjw9miv9q87dk56zw3m9y934q0sagl1hv3ll"; + rev = "d38a2a023dfb1073dd0e8fee0c9be08855d3688f"; + sha256 = "0z1m3myl14g91nnamqa72yxq6pspaffn0zpfi78vy6y0ygzam51x"; }; meta.homepage = "https://github.com/utilyre/barbecue.nvim/"; }; @@ -979,12 +991,12 @@ final: prev: base46 = buildVimPluginFrom2Nix { pname = "base46"; - version = "2023-09-01"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "nvchad"; repo = "base46"; - rev = "919af1c40278d91c3f38cba08cb0f49f7e6a12e6"; - sha256 = "15pkgglic6wdgw7pfqaphg9h911p0zra99nx4cxylssfp62f0bpv"; + rev = "ab79416a71fe46e92b7eedb3872fde2134be0022"; + sha256 = "1rvcvrjbwal2cq0dvmg8dzif286yw853y9amif1i2bzjlzx8dw70"; }; meta.homepage = "https://github.com/nvchad/base46/"; }; @@ -1315,12 +1327,12 @@ final: prev: clangd_extensions-nvim = buildVimPluginFrom2Nix { pname = "clangd_extensions.nvim"; - version = "2023-08-25"; + version = "2023-09-08"; src = fetchFromGitHub { owner = "p00f"; repo = "clangd_extensions.nvim"; - rev = "323b00de2ee18cad1ac45eb95e680386c4ff4366"; - sha256 = "1q0ah3q15cfybrb2anf7c1jc0v72r5f2fmnc01dsm9y3wyyix8ch"; + rev = "bafed83f79b5779f5b43e8e015e13ca99dcd8b3a"; + sha256 = "0v703kl34a6cx863m1ah347bg3fk06mr0780cxnz547dpc8dddbm"; }; meta.homepage = "https://github.com/p00f/clangd_extensions.nvim/"; }; @@ -2011,12 +2023,12 @@ final: prev: coc-nvim = buildVimPluginFrom2Nix { pname = "coc.nvim"; - version = "2023-09-06"; + version = "2023-09-07"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc.nvim"; - rev = "24984d5f097d43a56f88b2f301465f518d63aa4e"; - sha256 = "1342z9mjr8x2c26gizshsxj202gs4jhq0nh0cqc02ww5l924qs2l"; + rev = "a18ac7e9c34d6b0d7bc4d81dedc0db1d9e229371"; + sha256 = "1p3z3b8vf1bx4frghv86a5dndmi9q7s187rx7ws2i3nm52nwrmh7"; }; meta.homepage = "https://github.com/neoclide/coc.nvim/"; }; @@ -2035,12 +2047,12 @@ final: prev: codeium-vim = buildVimPluginFrom2Nix { pname = "codeium.vim"; - version = "2023-09-06"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "Exafunction"; repo = "codeium.vim"; - rev = "60e91c749fed80bd19065bc12db74e0241a588a4"; - sha256 = "0yyq2jygg6xhd8839zwmzdryr3wlfrrfh6idj535jsa1dhh1ggz3"; + rev = "e721f040daea865507cdd6370b2c08c1bbf37d6e"; + sha256 = "09j7sankjnrm2qvg54qf0kha43nm2mvy0vhrvr3yb3d4v2vfvlb2"; }; meta.homepage = "https://github.com/Exafunction/codeium.vim/"; }; @@ -2275,12 +2287,12 @@ final: prev: conjure = buildVimPluginFrom2Nix { pname = "conjure"; - version = "2023-08-04"; + version = "2023-08-27"; src = fetchFromGitHub { owner = "Olical"; repo = "conjure"; - rev = "0d9b823db06cc11e6115b54297f690dff10c0299"; - sha256 = "0s7pf2jq1rfyxwina555702ln52h4x9gjnfk2sjpdgk7515bk9s5"; + rev = "58c46d1f4999679659a5918284b574c266a7ac83"; + sha256 = "1pjjp2g9h98ghraky57iss5ls37k47iw8ii3q558nym4mknhx06d"; }; meta.homepage = "https://github.com/Olical/conjure/"; }; @@ -2311,12 +2323,12 @@ final: prev: copilot-cmp = buildVimPluginFrom2Nix { pname = "copilot-cmp"; - version = "2023-08-30"; + version = "2023-09-09"; src = fetchFromGitHub { owner = "zbirenbaum"; repo = "copilot-cmp"; - rev = "11eb015fbf9f07ad1c72dbdc9d830ebac610b5cd"; - sha256 = "16i9ign32sp1smi34rpg0dqs7a35p691801w6in8zv0ayk6r8bjr"; + rev = "72fbaa03695779f8349be3ac54fa8bd77eed3ee3"; + sha256 = "09j6jm77dw6g0d2yxxg954kbsf7vx4zgjyfjq1n9ls5z36i0vf5j"; }; meta.homepage = "https://github.com/zbirenbaum/copilot-cmp/"; }; @@ -2347,12 +2359,12 @@ final: prev: coq-artifacts = buildVimPluginFrom2Nix { pname = "coq.artifacts"; - version = "2023-08-22"; + version = "2023-09-07"; src = fetchFromGitHub { owner = "ms-jpq"; repo = "coq.artifacts"; - rev = "af92b636ceee8c657463fd816146b28d43ace732"; - sha256 = "1s959yh5fh6d20im54ihn9a4b7pp036r6s7g0vacylg6975s5dd1"; + rev = "469c27eb84a91fe2721b6c0af57703ffa1e785e9"; + sha256 = "0v902lf7l0590nif3g45c5ad0s1wr9v7bz0g733aji9hh3fcxl8i"; }; meta.homepage = "https://github.com/ms-jpq/coq.artifacts/"; }; @@ -2419,12 +2431,12 @@ final: prev: crates-nvim = buildVimPluginFrom2Nix { pname = "crates.nvim"; - version = "2023-08-08"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "saecki"; repo = "crates.nvim"; - rev = "d5caf28aba49e81ac4099426231f3cf3c151013a"; - sha256 = "166yinmn8fqmsgdbswn0vjcz3c3d7axckzwkrsz7v8vk9yhnmnyk"; + rev = "db629b5cfb2aa8de9e44efb795657297ee95ca91"; + sha256 = "00ndgfa070044sqjg41lxv26vvjahfa6b1ysydyccln9wa27n6nc"; }; meta.homepage = "https://github.com/saecki/crates.nvim/"; }; @@ -2539,12 +2551,12 @@ final: prev: dashboard-nvim = buildVimPluginFrom2Nix { pname = "dashboard-nvim"; - version = "2023-09-01"; + version = "2023-09-09"; src = fetchFromGitHub { owner = "nvimdev"; repo = "dashboard-nvim"; - rev = "2caf39ffe2b51bdcf28528473b51042760e888f3"; - sha256 = "1d12jaqij8j08q8x50hcbjk26yz3pnrgg5acb0x6qixrhgxm5qfh"; + rev = "bbe0234168501b8ba46f24b4fb3cb7c5b88c0784"; + sha256 = "1876r48hxfz0x1ylkwr3ljgmls861rcjxx5rs686bqmdrwffm9lj"; }; meta.homepage = "https://github.com/nvimdev/dashboard-nvim/"; }; @@ -2575,12 +2587,12 @@ final: prev: defx-nvim = buildVimPluginFrom2Nix { pname = "defx.nvim"; - version = "2023-04-25"; + version = "2023-09-07"; src = fetchFromGitHub { owner = "Shougo"; repo = "defx.nvim"; - rev = "eb66962f7b9f7a4d23a1e0be122b45a88331dffa"; - sha256 = "18v7fxw871sl11fsc6klsj1bxiyg2bjpv03qhc4z9b5hxb54sv3k"; + rev = "1049fc442e8c35b6eba45ba4be1e21b9acb07010"; + sha256 = "1p5hlq1pbayh4k7gwajl33nrl8186ms6nz77225ibwjilzn95f35"; }; meta.homepage = "https://github.com/Shougo/defx.nvim/"; }; @@ -2635,12 +2647,12 @@ final: prev: denops-vim = buildVimPluginFrom2Nix { pname = "denops.vim"; - version = "2023-08-26"; + version = "2023-09-07"; src = fetchFromGitHub { owner = "vim-denops"; repo = "denops.vim"; - rev = "a80e4d83fc7922f79886126d505790ad1da30ab2"; - sha256 = "1rai29r30v4xc512nfnx4nvbwqjmqc64lxdc45dj396b9kfkyvii"; + rev = "68f607d93a9758d15c0d63d3268aa420ddd29edd"; + sha256 = "0k15zc28a8pmr34xxkfjfy5kbhi4n2h3h9iswrn7vslhh4pnx076"; }; meta.homepage = "https://github.com/vim-denops/denops.vim/"; }; @@ -2925,12 +2937,12 @@ final: prev: dial-nvim = buildVimPluginFrom2Nix { pname = "dial.nvim"; - version = "2023-08-27"; + version = "2023-09-09"; src = fetchFromGitHub { owner = "monaqa"; repo = "dial.nvim"; - rev = "5b9763eaa483250650eb4f60c96db62abbb250aa"; - sha256 = "1ikkhvsxqs3hlcvf7kahjlbfp7s7hkpyqky0c9m6nc0jrlld0lwb"; + rev = "611cf5e84f655c96318b803785f89e3146d8e48f"; + sha256 = "1gv1qjm1paxgrcchxbkfn7v9ygq7nhpf8wcc304fc2s4q5awvjn3"; }; meta.homepage = "https://github.com/monaqa/dial.nvim/"; }; @@ -3106,24 +3118,24 @@ final: prev: efmls-configs-nvim = buildVimPluginFrom2Nix { pname = "efmls-configs-nvim"; - version = "2023-09-05"; + version = "2023-09-06"; src = fetchFromGitHub { owner = "creativenull"; repo = "efmls-configs-nvim"; - rev = "a7edd8fb08a9f4e8bb7eb01accaa535bc17e59e2"; - sha256 = "1hr88snr5m7a5birgj7g77ccjnm9ij9ifmjmbp379yarzbfl5mij"; + rev = "ba5e809dcc2070a85591b2d093d78ec05ac04805"; + sha256 = "0z2c616ccxgqxbq39v5vv2c80fzy2wsdsji50ky0sn9grjdn0r97"; }; meta.homepage = "https://github.com/creativenull/efmls-configs-nvim/"; }; elixir-tools-nvim = buildVimPluginFrom2Nix { pname = "elixir-tools.nvim"; - version = "2023-09-04"; + version = "2023-09-10"; src = fetchFromGitHub { owner = "elixir-tools"; repo = "elixir-tools.nvim"; - rev = "a532ade5d55156e103abec37cd70b63a940b6495"; - sha256 = "1rpr9n2wmrhs20bvv53gw7n03bycwdqx12i899p926s6l52d5hwn"; + rev = "a938c09993689fb2c6a8f038a55ef38633b5e3bf"; + sha256 = "01230czbj0zwvn70wy5z7sb26x6vikhaban7kljwn8ylkxxy5nrr"; }; meta.homepage = "https://github.com/elixir-tools/elixir-tools.nvim/"; }; @@ -3203,12 +3215,12 @@ final: prev: executor-nvim = buildVimPluginFrom2Nix { pname = "executor.nvim"; - version = "2023-08-30"; + version = "2023-09-07"; src = fetchFromGitHub { owner = "google"; repo = "executor.nvim"; - rev = "ce7c48e6b60925f9514a8a7ad7bc8c4d8498a85d"; - sha256 = "07vmglghgl3qbmqmrh895i87rc4bzxckky8na5inw704ibz3766c"; + rev = "f98049ceabb0ada223dfad2b40bf06df30331e0a"; + sha256 = "0xzjfacbx3agrl481dnb8f4i3h2b36hcbwzdca1m17rd5i51zka3"; }; meta.homepage = "https://github.com/google/executor.nvim/"; }; @@ -3384,12 +3396,12 @@ final: prev: flatten-nvim = buildVimPluginFrom2Nix { pname = "flatten.nvim"; - version = "2023-08-25"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "willothy"; repo = "flatten.nvim"; - rev = "b362e13e22a452db913aab1fb2ee2d8546526d90"; - sha256 = "10vxc5bk0zykfg5dhgmsqmw2k6701b7ppg80y3krnn7phzi3hwr8"; + rev = "6236aa988a8aeab1c4a59c92615492ec241d33c7"; + sha256 = "1rrgszz0ryrh5ygb3slk15bz33nl7sf8a9l9p2qdj8x8zp3jfxbq"; }; meta.homepage = "https://github.com/willothy/flatten.nvim/"; }; @@ -3456,12 +3468,12 @@ final: prev: flutter-tools-nvim = buildVimPluginFrom2Nix { pname = "flutter-tools.nvim"; - version = "2023-07-24"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "akinsho"; repo = "flutter-tools.nvim"; - rev = "561d85b16d8ca2938820a9c26b2fe74096d89c81"; - sha256 = "0n13m2vdqh75kr0rjlz5m29hcr9jyqxw78isn0gd7vclla1kkjw7"; + rev = "974859e9fafbff48450a85c0c7f57cb576c53626"; + sha256 = "04zaghw9dbwxz48rrssihr7907rcg6g3dmrxihhyzqqw6q33i2b2"; }; meta.homepage = "https://github.com/akinsho/flutter-tools.nvim/"; }; @@ -3612,24 +3624,24 @@ final: prev: fzf-lua = buildVimPluginFrom2Nix { pname = "fzf-lua"; - version = "2023-09-04"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "ibhagwan"; repo = "fzf-lua"; - rev = "877ea6a3887877dfe47cdda501ec964c1e25b119"; - sha256 = "1zlbvd4a4ih5pypjmqi5md4zds57mmcz1bqfddap1zw3a8snddf2"; + rev = "2a00373bd60245a1397bdf010bd23b2b51b2a25a"; + sha256 = "1fpc0cxdwh8y8dh415h6lsbg3519n4dzj1wppcwmmqfzpv504v6g"; }; meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; }; fzf-vim = buildVimPluginFrom2Nix { pname = "fzf.vim"; - version = "2023-09-06"; + version = "2023-09-07"; src = fetchFromGitHub { owner = "junegunn"; repo = "fzf.vim"; - rev = "7ba5be32bcc32afdd73ee87abc5a36a58e09b6ea"; - sha256 = "1vy8v9zyv79i56n82fkvhkz18dmj9jxb93hbqyh9j5fjgd5zk0nh"; + rev = "587f55bf5051ff40600837778ea01ead6283f399"; + sha256 = "1jahz3lha97msyz5ak13fpk8x2r1wlfi5xvp86mkh7rvcdq6nnk7"; }; meta.homepage = "https://github.com/junegunn/fzf.vim/"; }; @@ -3720,12 +3732,12 @@ final: prev: git-conflict-nvim = buildVimPluginFrom2Nix { pname = "git-conflict.nvim"; - version = "2023-08-31"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "akinsho"; repo = "git-conflict.nvim"; - rev = "f20f197df50a0779ba55e933ef0995698ad32039"; - sha256 = "1wmj5hc1g8b8qbfwrckwjz98lrx74fj5skvmp6y2llv2dridk89d"; + rev = "a0f1bffdb7ccb81bb16f4bbfd9740775835b71b3"; + sha256 = "13hx5ipfakilx0zfgq9jdv0i7yykqvvjly128diw4yxpzwvi7rnb"; }; meta.homepage = "https://github.com/akinsho/git-conflict.nvim/"; }; @@ -3780,12 +3792,12 @@ final: prev: gitsigns-nvim = buildNeovimPlugin { pname = "gitsigns.nvim"; - version = "2023-09-06"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "lewis6991"; repo = "gitsigns.nvim"; - rev = "bf6b0bbc527c546ecd6af2bb9fcd06864ae0852c"; - sha256 = "0lqawjbnzy8n2rv51bcjv4ckv302wrf7zf031b628l56wqhiaimw"; + rev = "907ae8636016aab2f283576fc60d46ca3427e579"; + sha256 = "0v2ikhhqqxrfzp6wnqcszazq3zbmlf1g3n1jgln459bsyj7qq00v"; }; meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; }; @@ -3840,24 +3852,24 @@ final: prev: go-nvim = buildVimPluginFrom2Nix { pname = "go.nvim"; - version = "2023-08-26"; + version = "2023-09-07"; src = fetchFromGitHub { owner = "ray-x"; repo = "go.nvim"; - rev = "c9acdf488d324ac5d86febe522a5d3a0310a4c76"; - sha256 = "0k3rpy9kz9y9a56155fpj15pd200vldswhx43mfkmis23vv6r454"; + rev = "5e9e083f4927402eab6ab233e970b397daa2e826"; + sha256 = "0mqfmmaazx18ji75rwvvcw1slyrhllpgdlzfwg61q5bnkr8a2p92"; }; meta.homepage = "https://github.com/ray-x/go.nvim/"; }; godbolt-nvim = buildVimPluginFrom2Nix { pname = "godbolt.nvim"; - version = "2023-07-09"; + version = "2023-09-07"; src = fetchFromGitHub { owner = "p00f"; repo = "godbolt.nvim"; - rev = "8b1eeb26697d4fffba217194fdd6545cbfe40598"; - sha256 = "1qb5kyx3gvfybjz8nlmp5yv08sqx8rnd1bi33n8l3xpsz48c5kmf"; + rev = "74c32eaa520987d195a2594a6efaab61cf9072c8"; + sha256 = "0n5mwyfsmifcfmgs49yc77zvndhkkki2dnka11pk1djvp53bs9ky"; }; meta.homepage = "https://github.com/p00f/godbolt.nvim/"; }; @@ -4020,23 +4032,23 @@ final: prev: hardtime-nvim = buildVimPluginFrom2Nix { pname = "hardtime.nvim"; - version = "2023-09-05"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "m4xshen"; repo = "hardtime.nvim"; - rev = "532223d2b10da7ad21dfb441fa1008c0e387f963"; - sha256 = "1xa8wmlccpw352w1av6k015x83xsssljqydqsm2wa9li7152k00a"; + rev = "370dea43c353c57bd2c9c985f43812b0634adb7b"; + sha256 = "070caab311blcl0j2ygmvv0rdqqb6kad6bvwwgravrwb3d4yy1a0"; }; meta.homepage = "https://github.com/m4xshen/hardtime.nvim/"; }; hare-vim = buildVimPluginFrom2Nix { pname = "hare.vim"; - version = "2023-08-31"; + version = "2023-09-09"; src = fetchgit { url = "https://git.sr.ht/~sircmpwn/hare.vim"; - rev = "ce32a0c6a622770bd1454069aef9abe95efcbd16"; - sha256 = "1rlarv26amx99dhvgqphrjbwl92vci1v56r565fryqrhbgrwr3a0"; + rev = "e24288327f88f459025a00632c7b1f543759906a"; + sha256 = "19xr3d4bbvn9s1ab9cnm3qw5lxs8jl5gs5hn62fagdl39a6bwn2d"; }; meta.homepage = "https://git.sr.ht/~sircmpwn/hare.vim"; }; @@ -4055,12 +4067,12 @@ final: prev: haskell-tools-nvim = buildNeovimPlugin { pname = "haskell-tools.nvim"; - version = "2023-09-05"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "MrcJkb"; repo = "haskell-tools.nvim"; - rev = "4259cb16e5612d9f5860655a2ab37c7439f70555"; - sha256 = "07aa29zgwvz64f2qn7nl6qr0rz96dl1bmjqmgwapgabns8g376b1"; + rev = "87e127549bfa6d1dd8c4db4346a724cb1c02c560"; + sha256 = "12nimd68fika0mccd4ljiwr9sc9jzd71vh1c5plj2jnx9ywwxkgr"; }; meta.homepage = "https://github.com/MrcJkb/haskell-tools.nvim/"; }; @@ -4127,12 +4139,12 @@ final: prev: hex-nvim = buildVimPluginFrom2Nix { pname = "hex.nvim"; - version = "2023-08-09"; + version = "2023-09-09"; src = fetchFromGitHub { owner = "RaafatTurki"; repo = "hex.nvim"; - rev = "63411ffe59fb8ecc3611367731cf13effc4d706f"; - sha256 = "0nffd7yqp1f3yq10k8xdk0w4k7lx6yvxaih99aql4a5s417zlqsd"; + rev = "dc51e5d67fc994380b7c7a518b6b625cde4b3062"; + sha256 = "13j27zc18chlgv9w7ml7j3lxbl7lkcqvvwys05hw0dbhik13bcyh"; }; meta.homepage = "https://github.com/RaafatTurki/hex.nvim/"; }; @@ -4163,11 +4175,11 @@ final: prev: himalaya-vim = buildVimPluginFrom2Nix { pname = "himalaya-vim"; - version = "2023-07-17"; + version = "2023-09-13"; src = fetchgit { url = "https://git.sr.ht/~soywod/himalaya-vim"; - rev = "479c49fd46899144d24b78dbd81d64cc0c05ffc7"; - sha256 = "0as0dxkf37pfqk878rq1d3dfdl2d724plabgs0cy3lkg20x389i4"; + rev = "b8e37ae3b3713827dbad10ed925cc66b95a5ffc9"; + sha256 = "05zwacxrx9m2pxsf17mrpfgs4cs2d6sh0g437pc2xkx9arhjxjcq"; }; meta.homepage = "https://git.sr.ht/~soywod/himalaya-vim"; }; @@ -4184,6 +4196,18 @@ final: prev: meta.homepage = "https://github.com/mpickering/hlint-refactor-vim/"; }; + hmts-nvim = buildVimPluginFrom2Nix { + pname = "hmts.nvim"; + version = "2023-08-28"; + src = fetchFromGitHub { + owner = "calops"; + repo = "hmts.nvim"; + rev = "14fd941d7ec2bb98314a1aacaa2573d97f1629ab"; + sha256 = "09f403w6gglfycghjzx4dc5gv71wqb6ywnmcvm15n1ldxasb6jwd"; + }; + meta.homepage = "https://github.com/calops/hmts.nvim/"; + }; + hologram-nvim = buildVimPluginFrom2Nix { pname = "hologram.nvim"; version = "2022-10-09"; @@ -4210,36 +4234,36 @@ final: prev: hop-nvim = buildVimPluginFrom2Nix { pname = "hop.nvim"; - version = "2023-05-17"; + version = "2023-09-09"; src = fetchFromGitHub { owner = "phaazon"; repo = "hop.nvim"; - rev = "03f0434869f1f38868618198b5f4f2ab6d39aef2"; - sha256 = "0f22abf4j3ncrs1ngp9p9m8wrhvpk9ckh76wapljvyblv9nwbn65"; + rev = "1a1eceafe54b5081eae4cb91c723abd1d450f34b"; + sha256 = "08h18cam2yr57qvfsnf1bra28vbl6013wlchnr5crb757xw8aysa"; }; meta.homepage = "https://github.com/phaazon/hop.nvim/"; }; hotpot-nvim = buildVimPluginFrom2Nix { pname = "hotpot.nvim"; - version = "2023-09-05"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "rktjmp"; repo = "hotpot.nvim"; - rev = "e4c907e3aa508217cff1a22153567b80d2e9affc"; - sha256 = "0bxxmdy5v40qsnp0z1pb71f3y1d5gpa6qv60mczj8gqkz03qn1wf"; + rev = "55391f5f6f7c9cd099b7aca740a02dcf2931f425"; + sha256 = "16mh8cgwx0lrqxric3cparz7bycvm8l64ip4596vsz02fjllb0rq"; }; meta.homepage = "https://github.com/rktjmp/hotpot.nvim/"; }; hover-nvim = buildVimPluginFrom2Nix { pname = "hover.nvim"; - version = "2023-07-10"; + version = "2023-09-10"; src = fetchFromGitHub { owner = "lewis6991"; repo = "hover.nvim"; - rev = "c366d1b0f9d6612d25681d3fea0f9ea46fa54f4d"; - sha256 = "0vhr5a9nsww4xhniv86j05isfv94fwa5sz2ikkn6fnl7d743m1xr"; + rev = "f74d2924564ba5fd8faa2d7e7cf6065de26f9820"; + sha256 = "15p8yv72zigy0rwb52mjj9fwa5l37xdq19czy96zbfxhvs93zvpf"; }; meta.homepage = "https://github.com/lewis6991/hover.nvim/"; }; @@ -4631,12 +4655,12 @@ final: prev: kanagawa-nvim = buildVimPluginFrom2Nix { pname = "kanagawa.nvim"; - version = "2023-08-27"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "rebelot"; repo = "kanagawa.nvim"; - rev = "0a24e504a3a278849ad0aef31cd6dd24c73ca3db"; - sha256 = "1k75i1rjv8xxbd8wr5ll6pk1sabgyylv0h9dhznrrza1g3zkrqv0"; + rev = "a4e99f089110c6d00bc33f5497709200e914e763"; + sha256 = "0c8fqpxxgp7k5yvqf28fwxjfwqnyvl55hapw0vlmaak93qnfndxq"; }; meta.homepage = "https://github.com/rebelot/kanagawa.nvim/"; }; @@ -4739,12 +4763,12 @@ final: prev: lazy-lsp-nvim = buildVimPluginFrom2Nix { pname = "lazy-lsp.nvim"; - version = "2023-08-11"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "dundalek"; repo = "lazy-lsp.nvim"; - rev = "4b10237a7f9e5ab678eb384a4266e2e28e8472f7"; - sha256 = "1rblszvg8g7bvqlx8f6dhr3hrs7azki2sbh60r5kk3p8884sjfyd"; + rev = "287d190557fdec28e10eb1a4312422d09e261911"; + sha256 = "1mg4lzr1zscdwjngi6iw4pcl8awn1pbml8z680z6ga38m2xlz4q7"; }; meta.homepage = "https://github.com/dundalek/lazy-lsp.nvim/"; }; @@ -4775,12 +4799,12 @@ final: prev: lean-nvim = buildVimPluginFrom2Nix { pname = "lean.nvim"; - version = "2023-08-22"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "Julian"; repo = "lean.nvim"; - rev = "ae64b8df32599f7bb32cfd8d6edccccc98971226"; - sha256 = "0ar6rprk7q1vv2qynb5f213mag9z1avy0d9ixws4pkl22nzj15za"; + rev = "f656fd9e0e13f5d8a82926dba34e82e0c4f0e06e"; + sha256 = "1gy597aq9raz2bmyprsq6vqhdxwq5i1np2r449vdbjhlp06c084c"; }; meta.homepage = "https://github.com/Julian/lean.nvim/"; }; @@ -5099,12 +5123,12 @@ final: prev: lsp-format-nvim = buildVimPluginFrom2Nix { pname = "lsp-format.nvim"; - version = "2023-09-05"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "lukas-reineke"; repo = "lsp-format.nvim"; - rev = "49ac7d390dd080872096d91107e10c4c5c69a2ad"; - sha256 = "01g6dn49y9j2zlys6jdka9rg9hw9gkddbax70lyhh1rwbp5qbgpw"; + rev = "e8782a5468a4849ae440a1531be559d85aebe142"; + sha256 = "04rpqhp66icj4l21wj6pk15mj2v78yhphccylgkjky8934rqpn6r"; }; meta.homepage = "https://github.com/lukas-reineke/lsp-format.nvim/"; }; @@ -5194,12 +5218,12 @@ final: prev: lsp_signature-nvim = buildVimPluginFrom2Nix { pname = "lsp_signature.nvim"; - version = "2023-07-25"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "ray-x"; repo = "lsp_signature.nvim"; - rev = "58d4e810801da74c29313da86075d6aea537501f"; - sha256 = "14v8mkv3q7l0pv63i3sgiv81bg5yfq927n94nrfz7nwfmg82rxxa"; + rev = "51784ba4ce87b362c139b8c2db6583c0aec20536"; + sha256 = "10bbmwzsk882qp8x9c516v8jk73sslg0ac1vcqchkw3yc9gn73jc"; }; meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/"; }; @@ -5230,12 +5254,12 @@ final: prev: lspsaga-nvim = buildVimPluginFrom2Nix { pname = "lspsaga.nvim"; - version = "2023-09-06"; + version = "2023-09-08"; src = fetchFromGitHub { owner = "nvimdev"; repo = "lspsaga.nvim"; - rev = "70fe95c3780988739f8ed87ceaef99bc9ea48ca2"; - sha256 = "0n17xlxqmca1y58c3q651bqcbcx0d4axwhpgyz4wzkc3jimqssf5"; + rev = "798c1b650d541bb14492fb54d533673162fb848f"; + sha256 = "0b6067pgrnbg811qr1sf07m4ahqs16d3vwwp33ys31cs69g7dx6r"; }; meta.homepage = "https://github.com/nvimdev/lspsaga.nvim/"; }; @@ -5387,12 +5411,12 @@ final: prev: mason-lspconfig-nvim = buildVimPluginFrom2Nix { pname = "mason-lspconfig.nvim"; - version = "2023-08-27"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "williamboman"; repo = "mason-lspconfig.nvim"; - rev = "dfdd771b792fbb4bad8e057d72558255695aa1a7"; - sha256 = "0chrr4n4qjnf6556qxmw41k36v0sbwrk62mkrr1r6q1cjk9wifh5"; + rev = "01b4b6724ebcf5b43fc021486f6a260f1d09311e"; + sha256 = "1fi3yvlxzkg55672f88nmvl8g1bdgga1zd7lrswxw3x4j0qwlp9l"; }; meta.homepage = "https://github.com/williamboman/mason-lspconfig.nvim/"; }; @@ -5411,12 +5435,12 @@ final: prev: mason-nvim = buildVimPluginFrom2Nix { pname = "mason.nvim"; - version = "2023-09-04"; + version = "2023-09-10"; src = fetchFromGitHub { owner = "williamboman"; repo = "mason.nvim"; - rev = "ee6a7f179ebf8aa9da9d53b1cf1b57d292ea0182"; - sha256 = "04lwsfwr1q7f9vcp1pv4xmbn1fwljyfr42nw9jxv8whf1kzhdg7d"; + rev = "d66c60e17dd6fd8165194b1d14d21f7eb2c1697a"; + sha256 = "01k4xxfmhdip6vniwj4lai7fqp5dyh799cfyrjqmqqxx25q7m8aj"; }; meta.homepage = "https://github.com/williamboman/mason.nvim/"; }; @@ -5507,12 +5531,12 @@ final: prev: mini-nvim = buildVimPluginFrom2Nix { pname = "mini.nvim"; - version = "2023-09-05"; + version = "2023-09-07"; src = fetchFromGitHub { owner = "echasnovski"; repo = "mini.nvim"; - rev = "707dca4f4152c2d9c9b4c5e02635f78dfd33db50"; - sha256 = "09cz3bi1xcxlg2g6bzclg5544v3z55iqm9srjj8ndg05hqaswpx5"; + rev = "f158f1905286e023d5848ab0b335a1cf5b8c692a"; + sha256 = "1f18gncmvb2bsbpv2854msc5aaskp0kl5dc8j1w2zqc4ird03x0q"; }; meta.homepage = "https://github.com/echasnovski/mini.nvim/"; }; @@ -5915,12 +5939,12 @@ final: prev: neoconf-nvim = buildVimPluginFrom2Nix { pname = "neoconf.nvim"; - version = "2023-09-02"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "folke"; repo = "neoconf.nvim"; - rev = "9873bc90d7e6bee70ec8f552b4663c3ff51ec7f6"; - sha256 = "00hxrbh8y5qq14ylw6pkfb6qc8vhk6wiaxs68894k8k6sdr14990"; + rev = "ebd2f07743796e6bcd3c147f02a22ede2c69b33a"; + sha256 = "10ryj4wyjkfhmf0dlr6yg5i7ll88snkhfknfii92nmnq1i6snzj0"; }; meta.homepage = "https://github.com/folke/neoconf.nvim/"; }; @@ -5939,12 +5963,12 @@ final: prev: neodev-nvim = buildVimPluginFrom2Nix { pname = "neodev.nvim"; - version = "2023-09-05"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "folke"; repo = "neodev.nvim"; - rev = "dcd34653b0f1d3e7ea9aeb3e37dc7c8da445c4fe"; - sha256 = "0i182vam41fxnjnd073yms7k1nbb4np3rzjcvl1ck2sipdf0ppy9"; + rev = "b07f1c4c0d5f0d077f29c776df3fd8c98c70e2f7"; + sha256 = "1w3sbhcc44rmhvazvbr0c829ky7y1xnmyzc2w7bi6rnqx155iffz"; }; meta.homepage = "https://github.com/folke/neodev.nvim/"; }; @@ -5963,24 +5987,24 @@ final: prev: neogen = buildVimPluginFrom2Nix { pname = "neogen"; - version = "2023-06-09"; + version = "2023-09-09"; src = fetchFromGitHub { owner = "danymat"; repo = "neogen"; - rev = "1dd0319ccf41b2498f45a3c7607f2ee325ffc6a0"; - sha256 = "0f464qplyscvpqmp28fi7207ih03ykamdz1ximp4dkj9gi3iiazf"; + rev = "70127baaff25611deaf1a29d801fc054ad9d2dc1"; + sha256 = "00za9qbc8jmf9asqqgr37dpm21xf8cq3pn529zgarmz1gbk106cp"; }; meta.homepage = "https://github.com/danymat/neogen/"; }; neogit = buildVimPluginFrom2Nix { pname = "neogit"; - version = "2023-09-04"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "NeogitOrg"; repo = "neogit"; - rev = "69482aa8404bf8b4775110393c8248e784fccbf1"; - sha256 = "0d9vwv3dbfjz8lajv7afi5vj64c24pllx5afas9d81g8z8j6r616"; + rev = "50b3e1d9c600deb4027af117cca660bee88223a4"; + sha256 = "1m67650405z5m5cpwqzd3vc1rm6s487fr8wb9ciyn27lz5cpqpfj"; }; meta.homepage = "https://github.com/NeogitOrg/neogit/"; }; @@ -6047,12 +6071,12 @@ final: prev: neorg = buildVimPluginFrom2Nix { pname = "neorg"; - version = "2023-09-02"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "nvim-neorg"; repo = "neorg"; - rev = "20502e50e9087248f6f8ed8d29fae9c849c1c77f"; - sha256 = "0bhrf38k4z0nhxdjalzwp2kry2bys10gas899bgvna4cfymadxv3"; + rev = "ba958b0f03692052042deb66fd2af05df04a2847"; + sha256 = "05wxryn3gl2vcjl2gnxjqm7grzz5bjd9nbp5vr398i15mj9k3yna"; }; meta.homepage = "https://github.com/nvim-neorg/neorg/"; }; @@ -6119,12 +6143,12 @@ final: prev: neotest = buildVimPluginFrom2Nix { pname = "neotest"; - version = "2023-07-24"; + version = "2023-09-10"; src = fetchFromGitHub { owner = "nvim-neotest"; repo = "neotest"; - rev = "bec7be0f13ee19c85561943fc5f7b8daa4f4d465"; - sha256 = "04w1ifxrxsyzyw0l4kv2sqnxjzv46j5v39l4d354042q5xcriw9c"; + rev = "1e67a504d03def3a6a1125d934cb511680f72555"; + sha256 = "0pgqyvcjb233l2qw97c1gfn04fnl768djhji9y1p5fc4769znd1w"; }; meta.homepage = "https://github.com/nvim-neotest/neotest/"; }; @@ -6180,24 +6204,24 @@ final: prev: neotest-go = buildVimPluginFrom2Nix { pname = "neotest-go"; - version = "2023-07-16"; + version = "2023-09-10"; src = fetchFromGitHub { owner = "nvim-neotest"; repo = "neotest-go"; - rev = "f2580cad67ef0181403cf65858ab638ffd3ede9f"; - sha256 = "0lvbqyqcz35964akcq5xmg69xw37jpf8202k27zy10f160swff8j"; + rev = "1a15e1136db43775214a3e7a598f8930c29c94b7"; + sha256 = "06j4d0ii46556hwx4ygjajr2mm2wdb3vgjrq4hldfjfb2033wnxg"; }; meta.homepage = "https://github.com/nvim-neotest/neotest-go/"; }; neotest-haskell = buildVimPluginFrom2Nix { pname = "neotest-haskell"; - version = "2023-09-03"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "MrcJkb"; repo = "neotest-haskell"; - rev = "44527681c155f0fde16044128488422b0e01069c"; - sha256 = "0s2mrngjhv8wkzxp8343305hkqncb8v7wkc8kr2v5n295mnb9fjw"; + rev = "cda6f5ab76f63e9f24b0008f7df9525ded5e8721"; + sha256 = "0xa4qzcaik7hpiv3dv1n7nb15640qnh70ggwzkbp30yhjqb3rjn6"; }; meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; }; @@ -6276,12 +6300,12 @@ final: prev: neotest-rust = buildVimPluginFrom2Nix { pname = "neotest-rust"; - version = "2023-09-04"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "rouge8"; repo = "neotest-rust"; - rev = "dd49d0de3a4ccde0c8ce99dbae9e7b04bcdbfc85"; - sha256 = "10gj8bgaph0vn2a5l3nik8jaqyscmmx9f002lhnf4142j5gk8shw"; + rev = "a9cd2ed69d6930a33bd97765fee49b0e13d7d7d0"; + sha256 = "0vindyn9ncypq77jkrx96vnvanyaqdbdjdnadzl7b9ly0j19a3x1"; }; meta.homepage = "https://github.com/rouge8/neotest-rust/"; }; @@ -6636,12 +6660,12 @@ final: prev: nvchad = buildVimPluginFrom2Nix { pname = "nvchad"; - version = "2023-09-02"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "nvchad"; repo = "nvchad"; - rev = "a69e8dc59142fac200d93ace190829fb12b455ec"; - sha256 = "04yy8qrfkb10zmg176q5f1c8x7ggl6x9m6ikklakx0nky9943byz"; + rev = "215aa2bb2ff702014132c629d9c995246234fe0e"; + sha256 = "0s00zm4ymbb4ikvws0qrlqakymvd0jd83s06ivyc8n45binpn0rw"; }; meta.homepage = "https://github.com/nvchad/nvchad/"; }; @@ -6684,24 +6708,24 @@ final: prev: nvim-autopairs = buildVimPluginFrom2Nix { pname = "nvim-autopairs"; - version = "2023-09-05"; + version = "2023-09-08"; src = fetchFromGitHub { owner = "windwp"; repo = "nvim-autopairs"; - rev = "35493556b895f54c129918aca43ae9a63af42a1f"; - sha256 = "13j8m902cblfddwbhjcqrqgshc39476xgrar57mayw1id7025nn4"; + rev = "defad64afbf19381fe31488a7582bbac421d6e38"; + sha256 = "05ihrriym44g01rryaah2h2xnl183dpwcsf8q8rxzr29z0jpxxip"; }; meta.homepage = "https://github.com/windwp/nvim-autopairs/"; }; nvim-base16 = buildVimPluginFrom2Nix { pname = "nvim-base16"; - version = "2023-07-23"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "RRethy"; repo = "nvim-base16"; - rev = "6247ca9aa9f34644dfa290a6df3f6feefb73eb97"; - sha256 = "0bfkhc046wwgrf02snvbx1p43xqhkhcr9b4r8w2nws4hlbzkdd4f"; + rev = "96e308958625a84940d5e443475465abf99c7bd9"; + sha256 = "1cz3nby9l2fg9ppl8pbgbcz70yzj87rci2lbzy9qm2mbj5y232sf"; }; meta.homepage = "https://github.com/RRethy/nvim-base16/"; }; @@ -6720,12 +6744,12 @@ final: prev: nvim-bqf = buildVimPluginFrom2Nix { pname = "nvim-bqf"; - version = "2023-08-06"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "kevinhwang91"; repo = "nvim-bqf"; - rev = "c920a55c6153766bd909e474b7feffa9739f07e8"; - sha256 = "0m7zqi0crk7v4s7cb51x9g98ffbr6p3q1gssn5gpbgk4k89gxcf3"; + rev = "a906a9dfc1bd7b3ac51ac954e32e157ffad9a7cd"; + sha256 = "03zn97fwhw661xfmj9mcvskryph12a7lh6sflcapd0pdx2fwbr7l"; }; meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/"; }; @@ -6780,12 +6804,12 @@ final: prev: nvim-cokeline = buildVimPluginFrom2Nix { pname = "nvim-cokeline"; - version = "2023-09-05"; + version = "2023-09-08"; src = fetchFromGitHub { owner = "willothy"; repo = "nvim-cokeline"; - rev = "68b915ac0e389f4c094ec3d9284b2d73f9c7ac96"; - sha256 = "0gr7a8y5dap7y79ixd9010ll9p5df92vlgaj78gmyy00kmmrrsf3"; + rev = "dae7f8d04a2a4a999adc19858d3748ee9229831d"; + sha256 = "0fa0ahb1alagdmdnk6fiivdgcplm3fw40bpv51i4975gbhdj7ibd"; }; meta.homepage = "https://github.com/willothy/nvim-cokeline/"; }; @@ -6876,12 +6900,12 @@ final: prev: nvim-dap = buildVimPluginFrom2Nix { pname = "nvim-dap"; - version = "2023-08-31"; + version = "2023-09-07"; src = fetchFromGitHub { owner = "mfussenegger"; repo = "nvim-dap"; - rev = "31e1ece773e10448dcb616d5144290946a6264b7"; - sha256 = "1sm6pbsh6hkvd6qvbls5hlbbvmk9n60dp228zk18s8kml24x3bcb"; + rev = "0e6b7c47dd70e80793ed39271b2aa712d9366dbc"; + sha256 = "1gpvvz735nf0jym8551dqdj52wvzjnhg1sr5yk5bh920yqal857a"; }; meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; }; @@ -6912,12 +6936,12 @@ final: prev: nvim-dap-ui = buildVimPluginFrom2Nix { pname = "nvim-dap-ui"; - version = "2023-07-14"; + version = "2023-09-10"; src = fetchFromGitHub { owner = "rcarriga"; repo = "nvim-dap-ui"; - rev = "85b16ac2309d85c88577cd8ee1733ce52be8227e"; - sha256 = "04ylr1jcj7bbcsrsx2z84savkf1yqaisymq7gsnhvzmbpxxwb96g"; + rev = "34160a7ce6072ef332f350ae1d4a6a501daf0159"; + sha256 = "18y9dmh525jzj31gqzqs8q3jgd93jdmsy2xip7j4f7sdpb68zm91"; }; meta.homepage = "https://github.com/rcarriga/nvim-dap-ui/"; }; @@ -7127,12 +7151,12 @@ final: prev: nvim-lint = buildVimPluginFrom2Nix { pname = "nvim-lint"; - version = "2023-08-27"; + version = "2023-09-07"; src = fetchFromGitHub { owner = "mfussenegger"; repo = "nvim-lint"; - rev = "9b6cb72660114e5f188907be0d866a8ca2b0ef23"; - sha256 = "09j1q2ajav4vxcgd2a5i0i3g72j4y8j7amqx08ss9l9mw7j1lgjc"; + rev = "73682da41b74c9c35f33b1b2dbd0cc02cc59452f"; + sha256 = "061x7p90p1nmjf2fs4alrgyj0w0v8w6kbg2n86q2khl40w522ihk"; }; meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; }; @@ -7163,12 +7187,12 @@ final: prev: nvim-lspconfig = buildVimPluginFrom2Nix { pname = "nvim-lspconfig"; - version = "2023-09-06"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "neovim"; repo = "nvim-lspconfig"; - rev = "0517d8522dcec286b1dba47aa3ee1ed8f523aed6"; - sha256 = "001s4pz7ppdm2lmyl86x04ks8kqdaxqdwkdlqkvp1dq0hhvmyx70"; + rev = "360a895125ac4f39df6aa8f763635eff07e69fff"; + sha256 = "0sy9w8bl46i9krikxkbnsryrnnccji2hrw29k3ccihnn8nrxwvsl"; }; meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; }; @@ -7295,12 +7319,12 @@ final: prev: nvim-notify = buildVimPluginFrom2Nix { pname = "nvim-notify"; - version = "2023-06-05"; + version = "2023-09-10"; src = fetchFromGitHub { owner = "rcarriga"; repo = "nvim-notify"; - rev = "ea9c8ce7a37f2238f934e087c255758659948e0f"; - sha256 = "0lh49bln2s840x08f5a967569k597cnnrl5vclys7lrbw77avga6"; + rev = "94859430020f5cf32a1b97ddd9e596fed9db7981"; + sha256 = "04fcm8277csv8davwirndinm0cpnb5h8azr2cxnw1szgqry2yh7k"; }; meta.homepage = "https://github.com/rcarriga/nvim-notify/"; }; @@ -7415,12 +7439,12 @@ final: prev: nvim-snippy = buildVimPluginFrom2Nix { pname = "nvim-snippy"; - version = "2023-08-31"; + version = "2023-09-09"; src = fetchFromGitHub { owner = "dcampos"; repo = "nvim-snippy"; - rev = "83a6ee5feac7cd08269159380c51e1de416800a5"; - sha256 = "17xswhp4whvraz7nl2sqpjwy4i0aiy1mb5ns1v8gay5p9ksa3xpi"; + rev = "5787f088c99c04309a8aa6363fd3ac9a5a26b780"; + sha256 = "0m68plmz4lb7ysxr5lx4kxx0g388z5bp8p3gnhiw5ybmhymc0v8f"; }; meta.homepage = "https://github.com/dcampos/nvim-snippy/"; }; @@ -7439,12 +7463,12 @@ final: prev: nvim-spectre = buildVimPluginFrom2Nix { pname = "nvim-spectre"; - version = "2023-08-25"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "nvim-pack"; repo = "nvim-spectre"; - rev = "411cee67fe3f8242023eb8d9edafefbbfb2d06f1"; - sha256 = "0xsyca5sw0shql0d1lf8vrr2pfmr0a0k1cl7sspan2f56qsckb2y"; + rev = "97cfd1b0f5a6ab35979ce1bee6c17f54745fd1e5"; + sha256 = "01j8xxjlj10ayfffhb5fav9r86599zqn17i9jd3kmc59m8yxdpr7"; }; meta.homepage = "https://github.com/nvim-pack/nvim-spectre/"; }; @@ -7511,24 +7535,24 @@ final: prev: nvim-tree-lua = buildVimPluginFrom2Nix { pname = "nvim-tree.lua"; - version = "2023-09-05"; + version = "2023-09-10"; src = fetchFromGitHub { owner = "nvim-tree"; repo = "nvim-tree.lua"; - rev = "ec33d4befa74205e09baf8bb4f90be5be754e6ab"; - sha256 = "12338ph4y21kadmaw1b1dd7nadjnz6bhn83v987fg8qrbfascr96"; + rev = "94c7c810af205c0f00c8f105dcf490c8eb17658a"; + sha256 = "03z7z4bbn0rn3zc05rfzyrs32gcnj71f2kagkcp939lib9vc7za6"; }; meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; }; nvim-treesitter = buildVimPluginFrom2Nix { pname = "nvim-treesitter"; - version = "2023-09-06"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "nvim-treesitter"; repo = "nvim-treesitter"; - rev = "cc56e1f093868892fc7fea68ac3a51f5ffc38728"; - sha256 = "0ff27vffsgr1fc4wyrks6sxrk6vlpmiqk8yd1c2k14np7pqaca1i"; + rev = "9ab4e9cc8989e3811b14897cd0eb21ae35e5541e"; + sha256 = "1jd3wylb9ibd0pylpmpzhir9290qmmx5gradqxd5vvarr5wvpzak"; }; meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; }; @@ -7678,12 +7702,12 @@ final: prev: nvim-web-devicons = buildVimPluginFrom2Nix { pname = "nvim-web-devicons"; - version = "2023-09-03"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "nvim-tree"; repo = "nvim-web-devicons"; - rev = "bc11ee2498de2310de5776477dd9dce65d03b464"; - sha256 = "17lrzh7a2jwgayi2r16wf9y336awy73nl2ww98jnpnzk9r87ww26"; + rev = "925e2aa30dc9fe9332060199c19f132ec0f3d493"; + sha256 = "0i2ixmmapld2j681z606g00ws17vwzmpb0cxvbzsx9bqhap3qgzr"; }; meta.homepage = "https://github.com/nvim-tree/nvim-web-devicons/"; }; @@ -7738,12 +7762,12 @@ final: prev: nvterm = buildVimPluginFrom2Nix { pname = "nvterm"; - version = "2023-05-05"; + version = "2023-09-09"; src = fetchFromGitHub { owner = "nvchad"; repo = "nvterm"; - rev = "5ae78fb332e92447121d2af58a6313189a7799fb"; - sha256 = "0rcj5njhkh1pwaa8d8d15nqqacx1h8j4ijygwhplvszi64kqb9r5"; + rev = "3e43be1d0ca60cc5e2dfc2d289b06577e7e57e98"; + sha256 = "10k9x2mg0pcrrf83ysxc0amldjnfgvxl8r74j42czdw5my8aqgcf"; }; meta.homepage = "https://github.com/nvchad/nvterm/"; }; @@ -7786,12 +7810,12 @@ final: prev: oil-nvim = buildVimPluginFrom2Nix { pname = "oil.nvim"; - version = "2023-09-02"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "stevearc"; repo = "oil.nvim"; - rev = "ca2560cae8a680c424a338fbeca8f0ab84e9791d"; - sha256 = "0d6ifyvas4i3v5snj9x6mz95b6pqbgw1kbykhr12p36nmlwsflxv"; + rev = "9e036c6a4868b971127f3cb6bac6197bb4103723"; + sha256 = "1q6r479xfcx1xwrm0b2zzv88qjilbm4pw2nvcsdlczhdwqnsq0al"; fetchSubmodules = true; }; meta.homepage = "https://github.com/stevearc/oil.nvim/"; @@ -7871,12 +7895,12 @@ final: prev: onenord-nvim = buildVimPluginFrom2Nix { pname = "onenord.nvim"; - version = "2023-06-26"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "rmehri01"; repo = "onenord.nvim"; - rev = "222839e392a79c48ce0f52d754cccbc79322c01f"; - sha256 = "1xxja94np57zikgfly9c4crrn300p67k2h6x6jj863adjj7q7wv2"; + rev = "5d4ea147564f6a5e5a2aea643c1fae15acb66b90"; + sha256 = "1r3kx8h17dsyda86amx4j8q29dpm8w4rqli7iwldww7bcp3skbg5"; }; meta.homepage = "https://github.com/rmehri01/onenord.nvim/"; }; @@ -7931,12 +7955,12 @@ final: prev: orgmode = buildVimPluginFrom2Nix { pname = "orgmode"; - version = "2023-08-27"; + version = "2023-09-06"; src = fetchFromGitHub { owner = "nvim-orgmode"; repo = "orgmode"; - rev = "6cbebbdeb4e6e2b76c6dff338c294eb1fc037427"; - sha256 = "17d5ph21di8wl0jivdpnmhv08gjik7h63pkip03a05q5kw59plh8"; + rev = "d26d52bb47e8978adf4ec78e20930b8f312fa473"; + sha256 = "1fmn6qjwvn8289k4b2qv7xh7cy0sjnc0afg4kxq57b2zqry8nhcx"; }; meta.homepage = "https://github.com/nvim-orgmode/orgmode/"; }; @@ -7967,12 +7991,12 @@ final: prev: overseer-nvim = buildVimPluginFrom2Nix { pname = "overseer.nvim"; - version = "2023-09-06"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "stevearc"; repo = "overseer.nvim"; - rev = "b1cd7007b78d636b93f13eac27069bb007147f04"; - sha256 = "09wp05x2k8x4v6bvcxk9nky83db4v9vh0qrp2qj71zh47sx53fi8"; + rev = "fc35ba7bd86004654ee314eb44d58498f27a326a"; + sha256 = "04avd87yknchxiyg3g6a20mfpdhhlqmnhjknkdhc0hs623jkx642"; fetchSubmodules = true; }; meta.homepage = "https://github.com/stevearc/overseer.nvim/"; @@ -8160,12 +8184,12 @@ final: prev: plenary-nvim = buildNeovimPlugin { pname = "plenary.nvim"; - version = "2023-08-24"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "nvim-lua"; repo = "plenary.nvim"; - rev = "0dbe561ae023f02c2fb772b879e905055b939ce3"; - sha256 = "0j42b4q25l8yypa92zkdf9jargjszyvw5f83l3qxbh0vy9ly1j2d"; + rev = "9ce85b0f7dcfe5358c0be937ad23e456907d410b"; + sha256 = "0772bqmfkx27b6kfn8x28v8ll0qr2zvdclynansraprrzllsqymk"; }; meta.homepage = "https://github.com/nvim-lua/plenary.nvim/"; }; @@ -8366,12 +8390,12 @@ final: prev: quarto-nvim = buildVimPluginFrom2Nix { pname = "quarto-nvim"; - version = "2023-08-27"; + version = "2023-09-08"; src = fetchFromGitHub { owner = "quarto-dev"; repo = "quarto-nvim"; - rev = "93b09591763e6ec7e3c1d5f4594e30bbdf934b46"; - sha256 = "12ymirc0dygsvhavvn53swdfcp7jiswmcq0d57czlq5118nlgwix"; + rev = "b349b7e54f5f5543b6104bfbad0e7d09d4f7c564"; + sha256 = "11q0x50ppyrna7bd7x9id3fpxz7rdj6zii3ysnkh7hfzm3hsg7pi"; }; meta.homepage = "https://github.com/quarto-dev/quarto-nvim/"; }; @@ -8725,24 +8749,24 @@ final: prev: scnvim = buildVimPluginFrom2Nix { pname = "scnvim"; - version = "2023-06-27"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "davidgranstrom"; repo = "scnvim"; - rev = "c44d57aeadc4b01888bc10a249f8867df8d1a461"; - sha256 = "0pbji2c5rs3d6kqixm7xz5ararix2iq7rh58hap9ssgr88rzqjng"; + rev = "f9e75bf21c77882625f89baa745d9bc4992742dc"; + sha256 = "1yavx67b3zqz65z1wg4a0cdp64s2bgqh12jzg31rh02a8hb08ipw"; }; meta.homepage = "https://github.com/davidgranstrom/scnvim/"; }; scope-nvim = buildVimPluginFrom2Nix { pname = "scope.nvim"; - version = "2023-08-22"; + version = "2023-09-10"; src = fetchFromGitHub { owner = "tiagovla"; repo = "scope.nvim"; - rev = "b783c77175a3026d19152fd938a5cc066c2f6676"; - sha256 = "1v6j30vd21lmrrdrw2hza9mwph078n0h0fcby44ri8p0f900kpfr"; + rev = "01ce40fe7434fba9a122c01b4734479b3860609a"; + sha256 = "10bc32imz72crnzd2fak5n571x0wq7vh9jqpy4q9f9kin2lw497b"; }; meta.homepage = "https://github.com/tiagovla/scope.nvim/"; }; @@ -8845,12 +8869,12 @@ final: prev: sg-nvim = buildVimPluginFrom2Nix { pname = "sg.nvim"; - version = "2023-08-30"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "sourcegraph"; repo = "sg.nvim"; - rev = "ef9deec58ac515f2a743f6e251eb8e464a654e41"; - sha256 = "10as3cc2bdl3w6cxhz8ijq94q54g9lhrcl70m2xild47i08h18nh"; + rev = "a6a677225bffd66bc98e03ed77438cde93a6fd31"; + sha256 = "1410d2z73xnkcyfx3cq4p30qlbg6177alw9anpn7akvhhgr0dlz2"; }; meta.homepage = "https://github.com/sourcegraph/sg.nvim/"; }; @@ -8918,16 +8942,28 @@ final: prev: smart-splits-nvim = buildVimPluginFrom2Nix { pname = "smart-splits.nvim"; - version = "2023-06-26"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "mrjones2014"; repo = "smart-splits.nvim"; - rev = "7aad6019dee974a01333523a5b8e122b7e7da454"; - sha256 = "1vrwj0pz0gcyw0nkfjiq6bz4cx481dsryc6j0ffkxr1anzrf3clq"; + rev = "0beb14427dcf2a5d5d63e0064b45032a7bd3e763"; + sha256 = "1jzai9sbq1jhs27gf67ppp4czj21rc18q9dlyb9whjrkiz61dv64"; }; meta.homepage = "https://github.com/mrjones2014/smart-splits.nvim/"; }; + smartcolumn-nvim = buildVimPluginFrom2Nix { + pname = "smartcolumn.nvim"; + version = "2023-09-12"; + src = fetchFromGitHub { + owner = "m4xshen"; + repo = "smartcolumn.nvim"; + rev = "c6abf3917fcec487c7475e208ae37f5788af5b04"; + sha256 = "1imdzqq997n8jwcxf8dyh0647hx58z9imm95nky23dlmhp3lzn9v"; + }; + meta.homepage = "https://github.com/m4xshen/smartcolumn.nvim/"; + }; + smartpairs-vim = buildVimPluginFrom2Nix { pname = "smartpairs.vim"; version = "2018-01-01"; @@ -9485,12 +9521,12 @@ final: prev: tagalong-vim = buildVimPluginFrom2Nix { pname = "tagalong.vim"; - version = "2023-06-11"; + version = "2023-09-07"; src = fetchFromGitHub { owner = "AndrewRadev"; repo = "tagalong.vim"; - rev = "d12622b866c9eea5204a792517d11586c51715a2"; - sha256 = "0qys780fh1p7q1my17kq700csg06qfdbn0k210bai9qmd5hhccii"; + rev = "5a2bbf2b1d5b657685a49d48d98a4aa921c1fde3"; + sha256 = "03nl8aqfvpx20451ha9q5i6gndi3w3yzks2dygrg9d1y33p6ldyd"; }; meta.homepage = "https://github.com/AndrewRadev/tagalong.vim/"; }; @@ -9555,6 +9591,19 @@ final: prev: meta.homepage = "https://github.com/tomtom/tcomment_vim/"; }; + telekasten-nvim = buildVimPluginFrom2Nix { + pname = "telekasten.nvim"; + version = "2023-09-08"; + src = fetchFromGitHub { + owner = "renerocksai"; + repo = "telekasten.nvim"; + rev = "bd5d323581f24ee124b33688287e6a22244c6f2a"; + sha256 = "0bp554glsjfhl1rbz4xfl536g5x962bqw8ss134j3cjpr5q4bf8d"; + fetchSubmodules = true; + }; + meta.homepage = "https://github.com/renerocksai/telekasten.nvim/"; + }; + telescope-asynctasks-nvim = buildVimPluginFrom2Nix { pname = "telescope-asynctasks.nvim"; version = "2022-04-09"; @@ -9593,12 +9642,12 @@ final: prev: telescope-dap-nvim = buildVimPluginFrom2Nix { pname = "telescope-dap.nvim"; - version = "2022-12-02"; + version = "2023-09-10"; src = fetchFromGitHub { owner = "nvim-telescope"; repo = "telescope-dap.nvim"; - rev = "313d2ea12ae59a1ca51b62bf01fc941a983d9c9c"; - sha256 = "0dkmmg30bxpbz990wgpndfhzql2015knrlmnscgz4cwyd39wwgpm"; + rev = "4e2d5efb92062f0b865fe59b200b5ed7793833bf"; + sha256 = "1fa1kmwv21h06di1p1vb05saaiabpl97j1h15zrpqr8cxhxmp515"; }; meta.homepage = "https://github.com/nvim-telescope/telescope-dap.nvim/"; }; @@ -9629,12 +9678,12 @@ final: prev: telescope-fzf-native-nvim = buildVimPluginFrom2Nix { pname = "telescope-fzf-native.nvim"; - version = "2023-05-25"; + version = "2023-09-10"; src = fetchFromGitHub { owner = "nvim-telescope"; repo = "telescope-fzf-native.nvim"; - rev = "9bc8237565ded606e6c366a71c64c0af25cd7a50"; - sha256 = "0g5n3x66kf5fbzv8rprpyi8hb6v961s0whk8dc6v8r1msc2m4zbs"; + rev = "6c921ca12321edaa773e324ef64ea301a1d0da62"; + sha256 = "101dxn7jfyg2wdzkw5cnrw475mg0p3w475l1hplqfhghz33zb1hy"; }; meta.homepage = "https://github.com/nvim-telescope/telescope-fzf-native.nvim/"; }; @@ -9702,12 +9751,12 @@ final: prev: telescope-manix = buildNeovimPlugin { pname = "telescope-manix"; - version = "2023-09-04"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "MrcJkb"; repo = "telescope-manix"; - rev = "6d8b7bccbe85d114df32fbeadc2f085694548027"; - sha256 = "125s6n71pfinbgavvpm9n6hpz7wx3df952cyjrvqc8q42fzs6xx4"; + rev = "392a883dec9d8ccfb1da3e10d1101ae34e627b97"; + sha256 = "0z2ir6gkr314aq7adiyjr06l876v61dkjf9n804kck5zwlbqyk30"; }; meta.homepage = "https://github.com/MrcJkb/telescope-manix/"; }; @@ -9847,12 +9896,12 @@ final: prev: telescope-nvim = buildNeovimPlugin { pname = "telescope.nvim"; - version = "2023-09-04"; + version = "2023-09-10"; src = fetchFromGitHub { owner = "nvim-telescope"; repo = "telescope.nvim"; - rev = "20a37e43bb43c74c6091f9fea6551af0964ad45a"; - sha256 = "0n8g9m44d250wdncv9cy71irsj10r78g3hdz1x72bpbx6ixlckyz"; + rev = "a19770625aed49ad2a9f591a5e3946707f7359f6"; + sha256 = "13r2bbmylh9n5yqmc8mff669w6c4wx0j20xiy4sx2cdmfj089a9k"; }; meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; }; @@ -9871,12 +9920,12 @@ final: prev: template-string-nvim = buildVimPluginFrom2Nix { pname = "template-string.nvim"; - version = "2023-08-04"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "axelvc"; repo = "template-string.nvim"; - rev = "89bffccadcbba5381274ed38d08c4c7ef7fe42aa"; - sha256 = "0mbbayhv9mgybfi81bdkjadvyr2x2xyp6bqc53z7i7zfpqib2gg8"; + rev = "5559125aba8499695eb23c3ff2434a13fb05e304"; + sha256 = "1d2sakk5m7qpnvch7q5yygl6il88k7idgq1si0xdm9gfhi4vvqmg"; }; meta.homepage = "https://github.com/axelvc/template-string.nvim/"; }; @@ -10088,12 +10137,12 @@ final: prev: toggleterm-nvim = buildVimPluginFrom2Nix { pname = "toggleterm.nvim"; - version = "2023-09-06"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "akinsho"; repo = "toggleterm.nvim"; - rev = "7e400d37422c662e9979fb1b49fb2aba04d676f0"; - sha256 = "0xl9ziv2cg6q07h3qg4fhzkwh78wi5rpsra4fgfh0k0vjbykdfyb"; + rev = "0427b908ebefcb3701c7f2cfbdafa37d11afe71a"; + sha256 = "1wxrwl530kxm8k8ymgk3w77av770ndr1hhzfk315jgl2p5hqmqm0"; }; meta.homepage = "https://github.com/akinsho/toggleterm.nvim/"; }; @@ -10256,12 +10305,12 @@ final: prev: typst-vim = buildVimPluginFrom2Nix { pname = "typst.vim"; - version = "2023-08-29"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "kaarmu"; repo = "typst.vim"; - rev = "555b76ceb3e5d4fbd040e2948646204501ecfdad"; - sha256 = "1r3pbw2pkph4gwpyszk20zv0wd23bb4812ql3f2xh7brzwcglbgi"; + rev = "1e672863c52184264dec59d234030a4898bb67cb"; + sha256 = "18ksiv66rjfw8hmysl8m7zkhd69w3dj7aqlfq6ph6vy0cqh6c4sf"; }; meta.homepage = "https://github.com/kaarmu/typst.vim/"; }; @@ -10304,12 +10353,12 @@ final: prev: unison = buildVimPluginFrom2Nix { pname = "unison"; - version = "2023-09-06"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "unisonweb"; repo = "unison"; - rev = "fac59eee65f980985de5209bd108d745ae1d852a"; - sha256 = "04h0073vzswbfjvi3w1s6pwmnwqqz4qy8hal44di4gz4jpr0mrf4"; + rev = "fff1a78722147d393be94951882c66cec1080508"; + sha256 = "0772q3r76qkiy50pncw9ynxij9rz6dhr7a1qgz1mp3h36r3zl98d"; }; meta.homepage = "https://github.com/unisonweb/unison/"; }; @@ -12008,12 +12057,12 @@ final: prev: vim-fugitive = buildVimPluginFrom2Nix { pname = "vim-fugitive"; - version = "2023-08-27"; + version = "2023-09-08"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-fugitive"; - rev = "572c8510123cbde02e8a1dafcd376c98e1e13f43"; - sha256 = "0kii9kfswyhp7zl5a26n9s3hlqkiyc5zih4yyzxm76sbhi3j00fq"; + rev = "6fcb0ad03982de646e3fecb6915e585651b9a9fb"; + sha256 = "1acl8akxdgpanyn56y4lyvgljrhf2dlrdhisl924l9r0zba0kc3i"; }; meta.homepage = "https://github.com/tpope/vim-fugitive/"; }; @@ -12188,11 +12237,11 @@ final: prev: vim-graphql = buildVimPluginFrom2Nix { pname = "vim-graphql"; - version = "2023-01-16"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "jparise"; repo = "vim-graphql"; - rev = "996749a7d69a3709768fa8c4d259f79b5fd9bdb1"; + rev = "6089a44e89e76f9eba138fb68bfd132420404ff7"; sha256 = "1fm5rvvp7kh1lqfz6g9s8vjgbrbjqrdwysr573ymxacavbx8iri2"; }; meta.homepage = "https://github.com/jparise/vim-graphql/"; @@ -12477,12 +12526,12 @@ final: prev: vim-illuminate = buildVimPluginFrom2Nix { pname = "vim-illuminate"; - version = "2023-08-17"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "RRethy"; repo = "vim-illuminate"; - rev = "76f28e858f1caae87bfa45fb4fd09e4b053fc45b"; - sha256 = "1gfz69v43myc38szlaqf6bd9vf3pdlmwd8vsiqnq1y0dvqkccl34"; + rev = "8c910b2f84ae6acd9b4b17330bb94dd783c0c11a"; + sha256 = "0v6w5lm8f39yg9s3lfh15a2sbw8sr6pfiz6p83fmigrxncvb49cp"; }; meta.homepage = "https://github.com/RRethy/vim-illuminate/"; }; @@ -12958,12 +13007,12 @@ final: prev: vim-lsp = buildVimPluginFrom2Nix { pname = "vim-lsp"; - version = "2023-09-04"; + version = "2023-09-09"; src = fetchFromGitHub { owner = "prabirshrestha"; repo = "vim-lsp"; - rev = "d80290944377d08eab45e040f5290a535dd073d8"; - sha256 = "0blpshir35jfw6cqsxifc48rsk4c6jcqvvxgmhh4h6hz0mx31f9r"; + rev = "7233bb2ec07506b6a6e57dfe4541f1c4e5647fd2"; + sha256 = "0h0qg61zixfl26czgaxklx7hdkkia2cc83xvv80ipyr1rva2crwh"; }; meta.homepage = "https://github.com/prabirshrestha/vim-lsp/"; }; @@ -13223,12 +13272,12 @@ final: prev: vim-monokai-tasty = buildVimPluginFrom2Nix { pname = "vim-monokai-tasty"; - version = "2023-08-31"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "patstockwell"; repo = "vim-monokai-tasty"; - rev = "c6c25baf03e9a4ce039f20b72a0d9af1b03776e2"; - sha256 = "11i22k4sm5ckq612bs9a5jjcd3zsjv7hgy60ba5fg1jl82b7xm2j"; + rev = "c112e2d574dc6f1122a919d595f9b0d3bc5dc3ec"; + sha256 = "1q28hqbybdpqwx0i5w5zywxalyf31ljjqi9ym4z5w91qsqx6xp08"; }; meta.homepage = "https://github.com/patstockwell/vim-monokai-tasty/"; }; @@ -13967,12 +14016,12 @@ final: prev: vim-qml = buildVimPluginFrom2Nix { pname = "vim-qml"; - version = "2023-08-28"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "peterhoeg"; repo = "vim-qml"; - rev = "fb29fa044acaca8ce50825b8795d70acf3f604ce"; - sha256 = "1accbzy6hb0jhxqhm21b9d7rr43hfpca1444g1dcy1p2r0i32j72"; + rev = "892c36a80a8711025af7bb9d09a8a6b90fe3d0c8"; + sha256 = "1smvhfrwlzd1h1namzvs8kks0f3qkdmnpbw1i6kvk44dywmx4r8c"; }; meta.homepage = "https://github.com/peterhoeg/vim-qml/"; }; @@ -14027,12 +14076,12 @@ final: prev: vim-rails = buildVimPluginFrom2Nix { pname = "vim-rails"; - version = "2023-04-24"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-rails"; - rev = "2b8c4fc831e0de2681beda0a2f48222812920a1d"; - sha256 = "1n3v24ngwqhpgkaij8nl9gq5snzvkwjapgp10n88rc8f65px3hqk"; + rev = "1ad9663ce31e8c08134849d04184cda94bb42aba"; + sha256 = "0kp2vbx5qfd86cmzrsnmgbpi3r07wpn5j6gn1gxgkh09xngf93nl"; }; meta.homepage = "https://github.com/tpope/vim-rails/"; }; @@ -14099,12 +14148,12 @@ final: prev: vim-ruby = buildVimPluginFrom2Nix { pname = "vim-ruby"; - version = "2023-09-05"; + version = "2023-09-08"; src = fetchFromGitHub { owner = "vim-ruby"; repo = "vim-ruby"; - rev = "2ea1e3dd15b0839e2a5262f293ec567e0a2835b4"; - sha256 = "0m57q8hvqlj80gb9v5sg48qsy1jlkxdp2sl2w7r6509bwczqxp9w"; + rev = "e1c115949d733164ecedd333bc6e007ac84d9757"; + sha256 = "1yp7vxh1a9g6zzr7y6dipriw52v6y733ll7bg9540pyx9ckvkab0"; }; meta.homepage = "https://github.com/vim-ruby/vim-ruby/"; }; @@ -14423,12 +14472,12 @@ final: prev: vim-snippets = buildVimPluginFrom2Nix { pname = "vim-snippets"; - version = "2023-09-04"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "honza"; repo = "vim-snippets"; - rev = "175081434cfee0727b1601d954022eb48490a1cc"; - sha256 = "020jisgvdv9ypsygaifzjgdi8gnrv6cy14vglpqr9inrvbgmzdxn"; + rev = "ccc2fa1529d372f7ac16d5eb07a385a72b50e05d"; + sha256 = "19k2bl2w5z5yvjfgp7wfr9s7zvdj3ak1393q09lv2k11j57f90pm"; }; meta.homepage = "https://github.com/honza/vim-snippets/"; }; @@ -14700,12 +14749,12 @@ final: prev: vim-test = buildVimPluginFrom2Nix { pname = "vim-test"; - version = "2023-08-16"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "vim-test"; repo = "vim-test"; - rev = "7585ad2aa2dc8d4ffef0739a02cad8a30d75bfbb"; - sha256 = "0fcs03sdymy4r5ks0x136wc8nz9ikhj53lcqrxky587fg8zjbp2j"; + rev = "06f1073eb4a9d0e6c80de5733edb8bafd62495d3"; + sha256 = "0x6bfq97pil318r80a2kj0wxai9xr5m4lkch5k1drh1inw678kg0"; }; meta.homepage = "https://github.com/vim-test/vim-test/"; }; @@ -14880,12 +14929,12 @@ final: prev: vim-tpipeline = buildVimPluginFrom2Nix { pname = "vim-tpipeline"; - version = "2023-08-26"; + version = "2023-09-10"; src = fetchFromGitHub { owner = "vimpostor"; repo = "vim-tpipeline"; - rev = "e56cd62aeb13681c7c0be86b6b0e99baa157a984"; - sha256 = "1mr08wqr1li1h19xs12s4xidsaiggvizjbvp4za1pkb7gw2hfn6h"; + rev = "2889cbdbe756324e1e21716a34b3d36b058f959e"; + sha256 = "105zmflfvqf6wllm26gwnh7am3g98aywq1d034lpr1c7zm5ln0pv"; }; meta.homepage = "https://github.com/vimpostor/vim-tpipeline/"; }; @@ -15144,12 +15193,12 @@ final: prev: vim-wayland-clipboard = buildVimPluginFrom2Nix { pname = "vim-wayland-clipboard"; - version = "2022-12-31"; + version = "2023-09-08"; src = fetchFromGitHub { owner = "jasonccox"; repo = "vim-wayland-clipboard"; - rev = "9b6def0924e716fb5314d52e062965b950b707f8"; - sha256 = "0j383bs1s2l8qxmym3zwby8nj8md8dsx7nk7xnspcrgah4g3j4mm"; + rev = "6d0c9f8e7deac8a90c51d4c1e69068cb86361933"; + sha256 = "15h2zij39zd10m16g7vmy60y718mldmchnwlvfp9pb8x2q9y8yv2"; }; meta.homepage = "https://github.com/jasonccox/vim-wayland-clipboard/"; }; @@ -15432,12 +15481,12 @@ final: prev: vimspector = buildVimPluginFrom2Nix { pname = "vimspector"; - version = "2023-08-18"; + version = "2023-09-10"; src = fetchFromGitHub { owner = "puremourning"; repo = "vimspector"; - rev = "4e49a1782e34433410f96602640a05c9ec00a65f"; - sha256 = "0a2yagqpgnxkc8n7bq0nv77ab0y8hp2r4b5h8wh043vxrc0cf8xz"; + rev = "bee01e1186a65f551de456b0a6eea5b445943b1d"; + sha256 = "1yd0g67vjdqabjjicgwfdsxfbkpmh91w3cfj4m628h4la2iiwg6s"; fetchSubmodules = true; }; meta.homepage = "https://github.com/puremourning/vimspector/"; @@ -15445,12 +15494,12 @@ final: prev: vimtex = buildVimPluginFrom2Nix { pname = "vimtex"; - version = "2023-08-31"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "lervag"; repo = "vimtex"; - rev = "ad17583ce399b6830b4c2888ef2a12d52c5eb607"; - sha256 = "1x1y118y8czz5r5qn3pr8lh1jx79pr0bsr3lghh58zvgzawg2swk"; + rev = "2b8a5f16a5768b3ae1780c266b73022dbb658af1"; + sha256 = "0i6rjzkbcibb9dxgk1406w6w1dab5nja0iiqpp1mwgdb28hjrswv"; }; meta.homepage = "https://github.com/lervag/vimtex/"; }; @@ -15902,24 +15951,24 @@ final: prev: catppuccin-nvim = buildVimPluginFrom2Nix { pname = "catppuccin-nvim"; - version = "2023-09-04"; + version = "2023-09-11"; src = fetchFromGitHub { owner = "catppuccin"; repo = "nvim"; - rev = "1c15c5e51a998c9198d63c6d2b75e9d1e4a84541"; - sha256 = "06vsvd09jbkhddqgbpbjs4icl5a291wrfa8bnrr76hjbmvar146l"; + rev = "85e93601e0f0b48aa2c6bbfae4d0e9d7a1898280"; + sha256 = "0cdgh3x417m4xcwqaj4c76fylfnyyjq2az8jbvw5gxrpvz9lmazk"; }; meta.homepage = "https://github.com/catppuccin/nvim/"; }; catppuccin-vim = buildVimPluginFrom2Nix { pname = "catppuccin-vim"; - version = "2023-06-29"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "catppuccin"; repo = "vim"; - rev = "5280d241fe6a4f4ddef17078a215b81a113388e8"; - sha256 = "1l8a7gn5wd7ry04lvm94x5s2fwf9dcl281200f5yq9ic6aw18p99"; + rev = "be4725cfc3fb6ed96f706d9d1bd5baa24d2b048c"; + sha256 = "1mhrch0ck3g1gs79c6mlbj2krhqqk7hp5g0v7ahap71bcfk5yxk7"; }; meta.homepage = "https://github.com/catppuccin/vim/"; }; @@ -15950,12 +15999,12 @@ final: prev: gruvbox-community = buildVimPluginFrom2Nix { pname = "gruvbox-community"; - version = "2022-11-18"; + version = "2023-09-12"; src = fetchFromGitHub { owner = "gruvbox-community"; repo = "gruvbox"; - rev = "2b5b1f777f0583ffb39086d6c16f39e6e37459c0"; - sha256 = "1a5v9ccbkm8759m24a9y85y7d6g4yg7yr2bidjn6vqw04alwvjf6"; + rev = "121309cebfc5a9b4f71b7b962d0d0df7e82cc456"; + sha256 = "0211bkj92rk3gv70p7xlqny481s0qk345cgl05m2l1x6bmcm5zps"; }; meta.homepage = "https://github.com/gruvbox-community/gruvbox/"; }; @@ -15998,12 +16047,12 @@ final: prev: nvchad-ui = buildVimPluginFrom2Nix { pname = "nvchad-ui"; - version = "2023-08-28"; + version = "2023-09-13"; src = fetchFromGitHub { owner = "nvchad"; repo = "ui"; - rev = "b3a343e866f1b31d61193ea6e21c417e2e7a5355"; - sha256 = "001d2kfxqb4nb0d5nykv1192cq5aspniv0ljlw710gsya91ym504"; + rev = "6c22f52568c4ab080a6676f7bb6515f0076e6567"; + sha256 = "1x7wbh4v5a4scxvdqvi86ql0z9kygw4fg3v7by0r2bcgqy9rxbcy"; }; meta.homepage = "https://github.com/nvchad/ui/"; }; From 5082f1b64c977a313bd10dbc48daa8cd43dfb037 Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 13 Sep 2023 09:45:51 -0400 Subject: [PATCH 293/346] vimPlugins.nvim-treesitter: update grammars --- .../vim/plugins/nvim-treesitter/generated.nix | 100 +++++++++++------- 1 file changed, 61 insertions(+), 39 deletions(-) diff --git a/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix b/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix index 981d9307d9ff..6ea67f48d74f 100644 --- a/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix +++ b/pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix @@ -337,12 +337,12 @@ }; dart = buildGrammar { language = "dart"; - version = "0.0.0+rev=bcef6d5"; + version = "0.0.0+rev=7e447dc"; src = fetchFromGitHub { owner = "UserNobody14"; repo = "tree-sitter-dart"; - rev = "bcef6d57d0dd4df37bc9d8b1920ea4963c724826"; - hash = "sha256-wTeHw/7og4GJSXISCBSL6foxzecFFB/fK03bzGup0sM="; + rev = "7e447dc18a2d293498670fb5ea16138648c883e5"; + hash = "sha256-BCWtpTgEv/3ahiflK3wHmnhHjTmtmvJxHGo2X7FggsE="; }; meta.homepage = "https://github.com/UserNobody14/tree-sitter-dart"; }; @@ -436,6 +436,17 @@ location = "crates/tree-sitter-ebnf"; meta.homepage = "https://github.com/RubixDev/ebnf"; }; + eds = buildGrammar { + language = "eds"; + version = "0.0.0+rev=fde6202"; + src = fetchFromGitHub { + owner = "uyha"; + repo = "tree-sitter-eds"; + rev = "fde62029d4c715562230070b9af51a9500c2ce10"; + hash = "sha256-E+VDOAnmbyUXzwhu+j2DXXBpuiI/d9gZdGsikAboLP4="; + }; + meta.homepage = "https://github.com/uyha/tree-sitter-eds"; + }; eex = buildGrammar { language = "eex"; version = "0.0.0+rev=f742f2f"; @@ -460,12 +471,12 @@ }; elm = buildGrammar { language = "elm"; - version = "0.0.0+rev=b075803"; + version = "0.0.0+rev=0694058"; src = fetchFromGitHub { owner = "elm-tooling"; repo = "tree-sitter-elm"; - rev = "b075803c445191af3cf7dbfdc84efef5f5bbc0f5"; - hash = "sha256-KtijU8ZODsqcNZc4Roh0AILaBWFs+D1cnSUfwQlEx84="; + rev = "0694058bf0555adbf5f700ce4868d18e463cb824"; + hash = "sha256-xalcXMXRHcpwhKLMF6p9y5lzC0ek/ljRq2Vnb1VwXBo="; }; meta.homepage = "https://github.com/elm-tooling/tree-sitter-elm"; }; @@ -680,12 +691,12 @@ }; gleam = buildGrammar { language = "gleam"; - version = "0.0.0+rev=a59aadf"; + version = "0.0.0+rev=297031d"; src = fetchFromGitHub { owner = "gleam-lang"; repo = "tree-sitter-gleam"; - rev = "a59aadf3d7c11702cad244e7cd6b67b34ca9c16a"; - hash = "sha256-HZJGKJ5KGcNIW6VEKHZLi9ai2bhklCNlbYAyz232+Ek="; + rev = "297031dce60e07acf90345d62777623469e46027"; + hash = "sha256-/LieoIseeZwQttCHnAOfwWRpCmBnUdWTcGwSOyjHexg="; }; meta.homepage = "https://github.com/gleam-lang/tree-sitter-gleam"; }; @@ -702,12 +713,12 @@ }; glsl = buildGrammar { language = "glsl"; - version = "0.0.0+rev=4296be4"; + version = "0.0.0+rev=64e786e"; src = fetchFromGitHub { owner = "theHamsta"; repo = "tree-sitter-glsl"; - rev = "4296be48e59be05284be2f79d62b155b61b20518"; - hash = "sha256-AimWXes1VTmFELDsTwYpZdyHsdBOL0rfg8ScauWvWQM="; + rev = "64e786e36398b1e18ccfdbfd964d922a67392ebc"; + hash = "sha256-6G5j3xfkbcFjAT6OWQyTgeryJEW2SSnyOhedF0QPmSw="; }; meta.homepage = "https://github.com/theHamsta/tree-sitter-glsl"; }; @@ -878,12 +889,12 @@ }; hlsl = buildGrammar { language = "hlsl"; - version = "0.0.0+rev=45e60a6"; + version = "0.0.0+rev=d698c21"; src = fetchFromGitHub { owner = "theHamsta"; repo = "tree-sitter-hlsl"; - rev = "45e60a69b4dac922d81474b5d6fa88b4e5387b21"; - hash = "sha256-qQqgiFJAX3hT1ecvKJ6fssWvtkT8i3IdRVBt6L0coI4="; + rev = "d698c21dbfcfa1df84cdaaf9dba32cba1e4f92b4"; + hash = "sha256-oFpoErrhr83yG5c3IksjL/XjmsCrZGTP6+Sfu5fvOZM="; }; meta.homepage = "https://github.com/theHamsta/tree-sitter-hlsl"; }; @@ -1153,23 +1164,23 @@ }; llvm = buildGrammar { language = "llvm"; - version = "0.0.0+rev=d47c95d"; + version = "0.0.0+rev=1b96e58"; src = fetchFromGitHub { owner = "benwilliamgraham"; repo = "tree-sitter-llvm"; - rev = "d47c95d78ef0e7495a74d214dd6fcddf6e402dfc"; - hash = "sha256-CK7f0qSAsec2cuQElXLFRQ5uiQLGCyEpNIKTIDwbBrU="; + rev = "1b96e58faf558ce057d4dc664b904528aee743cb"; + hash = "sha256-9OCiD7Hotl7EYoggX0lArwFvK2OZisBUsX7xv8+Ig+o="; }; meta.homepage = "https://github.com/benwilliamgraham/tree-sitter-llvm"; }; lua = buildGrammar { language = "lua"; - version = "0.0.0+rev=88e4464"; + version = "0.0.0+rev=9668709"; src = fetchFromGitHub { owner = "MunifTanjim"; repo = "tree-sitter-lua"; - rev = "88e446476a1e97a8724dff7a23e2d709855077f2"; - hash = "sha256-w+WVQHPiS/xyRz0obdJoUHZ7QzIDAvgtSzmE98yDORY="; + rev = "9668709211b2e683f27f414454a8b51bf0a6bda1"; + hash = "sha256-5t5w8KqbefInNbA12/jpNzmky/uOUhsLjKdEqpl1GEc="; }; meta.homepage = "https://github.com/MunifTanjim/tree-sitter-lua"; }; @@ -1907,6 +1918,17 @@ }; meta.homepage = "https://github.com/indoorvivants/tree-sitter-smithy"; }; + snakemake = buildGrammar { + language = "snakemake"; + version = "0.0.0+rev=65a6c3b"; + src = fetchFromGitHub { + owner = "osthomas"; + repo = "tree-sitter-snakemake"; + rev = "65a6c3b4671877821082164da0a310851b211953"; + hash = "sha256-NfbRqT3wB6gncrbL/Kx2Qtk7k5lXK2KwdQ4aOV0Acx8="; + }; + meta.homepage = "https://github.com/osthomas/tree-sitter-snakemake"; + }; solidity = buildGrammar { language = "solidity"; version = "0.0.0+rev=1680203"; @@ -1931,12 +1953,12 @@ }; sql = buildGrammar { language = "sql"; - version = "0.0.0+rev=6fa7161"; + version = "0.0.0+rev=39750c4"; src = fetchFromGitHub { owner = "derekstride"; repo = "tree-sitter-sql"; - rev = "6fa716163fcf183e4938c75f427379ceba881fbe"; - hash = "sha256-AmfWf7qJyoUVBLxZuIdNSWP1C7GAcKeO9EoV3HFUzwI="; + rev = "39750c48bf9ad63bcc1399554355b0aa0aaa1c33"; + hash = "sha256-33GpCN9qdCvCcYvE60HMzFM2QzUDbf2QxJDZ6L+q27Y="; }; meta.homepage = "https://github.com/derekstride/tree-sitter-sql"; }; @@ -1964,12 +1986,12 @@ }; strace = buildGrammar { language = "strace"; - version = "0.0.0+rev=ef4a74c"; + version = "0.0.0+rev=0dc85e4"; src = fetchFromGitHub { owner = "sigmaSd"; repo = "tree-sitter-strace"; - rev = "ef4a74c43565572db9c06596d99ccb0210db13e5"; - hash = "sha256-H/zu440AcF1l0yW4a3PEMfUMsJUxW0UEohOQPlX1rD0="; + rev = "0dc85e4cfcd0cc4b33f855ddb782d81d1297bf6e"; + hash = "sha256-JK5+HlCELcBD2Af4uNNoBMYecDGnwcoTqdZr5mKBq+Q="; }; meta.homepage = "https://github.com/sigmaSd/tree-sitter-strace"; }; @@ -2008,12 +2030,12 @@ }; swift = buildGrammar { language = "swift"; - version = "0.0.0+rev=29541ac"; + version = "0.0.0+rev=10eb01d"; src = fetchFromGitHub { owner = "alex-pinkus"; repo = "tree-sitter-swift"; - rev = "29541ac9bbe2090de75d0b1e70360b85bbda1fef"; - hash = "sha256-jT7SdhxX5AlZP33oH7NISV+HvJwQwsXMXDWzHorgnIc="; + rev = "10eb01d29827f24b1271672e89790661d94da9e1"; + hash = "sha256-5oHc2mGxOuvFQ1h1FEK0oJ7PYnKayoJSVHeuYleVE8o="; }; generate = true; meta.homepage = "https://github.com/alex-pinkus/tree-sitter-swift"; @@ -2042,12 +2064,12 @@ }; t32 = buildGrammar { language = "t32"; - version = "0.0.0+rev=6da5e3c"; + version = "0.0.0+rev=c17070b"; src = fetchFromGitLab { owner = "xasc"; repo = "tree-sitter-t32"; - rev = "6da5e3cbabd376b566d04282005e52ffe67ef74a"; - hash = "sha256-BRDlNZolMurXpUqnFbS+7ADTcuBthGDYVr6wBn9PIr4="; + rev = "c17070b014d02319b4cc335d28651926b0ee5ed6"; + hash = "sha256-j1r++0Nff/slHJvOad289kFzlBIN2uuuEYrHJOGmTEc="; }; meta.homepage = "https://gitlab.com/xasc/tree-sitter-t32.git"; }; @@ -2280,12 +2302,12 @@ }; vhs = buildGrammar { language = "vhs"; - version = "0.0.0+rev=fec6e98"; + version = "0.0.0+rev=375b42e"; src = fetchFromGitHub { owner = "charmbracelet"; repo = "tree-sitter-vhs"; - rev = "fec6e981b7795b68262ddf229d73d2aa03a89b9a"; - hash = "sha256-vGRmIFWUXSG3uDpKPcxALndV7gWiQ2nG4BOGL05oZ6U="; + rev = "375b42e9845f704dd491c17c7e37f7c972e0faf3"; + hash = "sha256-A9m0MNAINMbrNr3BYBU/WMtC5edXWCaxvcfCwDFe8p4="; }; meta.homepage = "https://github.com/charmbracelet/tree-sitter-vhs"; }; @@ -2346,12 +2368,12 @@ }; wing = buildGrammar { language = "wing"; - version = "0.0.0+rev=f1446e7"; + version = "0.0.0+rev=899ebde"; src = fetchFromGitHub { owner = "winglang"; repo = "wing"; - rev = "f1446e78183df1d12f864c3e514b24c1b00c0a47"; - hash = "sha256-f19KOuce+Ls/Mmb0hnxVrDOc4mdZ4m9SsiZlgGuh1bk="; + rev = "899ebde73fac14dafc76a28d2bb6885d7bc5825e"; + hash = "sha256-fAaA9XhnFILa/5P1ZufQufwuksXx4DbePTfb/WWyRsk="; }; location = "libs/tree-sitter-wing"; generate = true; From a61e23dad276bf3a14241d06548c077e92eb1a48 Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 13 Sep 2023 09:46:47 -0400 Subject: [PATCH 294/346] vimPlugins.sg-nvim: fix cargoHash --- pkgs/applications/editors/vim/plugins/overrides.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index 8e23c361d47f..cffecb7affad 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -978,7 +978,7 @@ self: super: { pname = "sg-nvim-rust"; inherit (old) version src; - cargoHash = "sha256-1mb99WtELS64kfA2exUlVLzOj82xkFhWx0JHayosZL0="; + cargoHash = "sha256-JwEOfxGH2wiFkdepxBsUYrpQ2kMV6koqpkD7s+gbWw8="; nativeBuildInputs = [ pkg-config ]; From b79cb79b168df7a7c7da99f823d8acfe3f5cd9a9 Mon Sep 17 00:00:00 2001 From: Vilsol Date: Mon, 11 Sep 2023 16:49:51 +0300 Subject: [PATCH 295/346] telepresence2: 2.6.4 -> 2.15.1 --- .../networking/telepresence2/default.nix | 50 ++++++++++++++----- 1 file changed, 38 insertions(+), 12 deletions(-) diff --git a/pkgs/tools/networking/telepresence2/default.nix b/pkgs/tools/networking/telepresence2/default.nix index 2a77636f7397..60d74926fe9e 100644 --- a/pkgs/tools/networking/telepresence2/default.nix +++ b/pkgs/tools/networking/telepresence2/default.nix @@ -1,27 +1,53 @@ -{ lib, buildGoModule, fetchFromGitHub, kubernetes-helm }: +{ lib +, fetchFromGitHub +, buildGoModule +, fuse +}: +let + fuseftp = buildGoModule rec { + pname = "go-fuseftp"; + version = "0.4.2"; + + src = fetchFromGitHub { + owner = "datawire"; + repo = "go-fuseftp"; + rev = "v${version}"; + hash = "sha256-bkaC+EOqFPQA4fDkVhO6EqgGhOJy31yGwVbbPoRd+70="; + }; + + vendorHash = "sha256-Dk4wvg2lTGTw8vP42+XuvmMXeMluR0SPwlVHLEB8yCQ="; + + buildInputs = [ fuse ]; + + ldflags = [ "-s" "-w" ]; + + subPackages = [ "pkg/main" ]; + }; +in buildGoModule rec { pname = "telepresence2"; - version = "2.6.4"; + version = "2.15.1"; src = fetchFromGitHub { owner = "telepresenceio"; repo = "telepresence"; rev = "v${version}"; - sha256 = "sha256-AZW58L0971GVnvafecHfVg3MWr/xGHi4ptycXcV63Fg="; + hash = "sha256-67a5e7Lun/mlRwRoD6eomQpgUXqzAUx8IS7Mv86j6Gw="; }; - # The Helm chart is go:embed'ed as a tarball in the binary. - # That tarball is generated by running ./build-aux/package_embedded_chart/main.go, - # which tries to invoke helm from tools/bin/helm. - # Oh well… + propagatedBuildInputs = [ + fuseftp + ]; + + # telepresence depends on fuseftp existing as a built binary, as it gets embedded + # CGO gets disabled to match their build process as that is how it's done upstream preBuild = '' - mkdir -p tools/bin - ln -sfn ${kubernetes-helm}/bin/helm tools/bin/helm - go run ./build-aux/package_embedded_chart/main.go ${src.rev} + cp ${fuseftp}/bin/main ./pkg/client/remotefs/fuseftp.bits + export CGO_ENABLED=0 ''; - vendorHash = "sha256-aa40+6cjpA6/bqpFiqayCkX0PBToPmsp99ykv6e7Huc="; + vendorHash = "sha256-/13OkcLJI/q14tyFsynL5ZAIITH1w9XWpzRqZoJJesE="; ldflags = [ "-s" "-w" "-X=github.com/telepresenceio/telepresence/v2/pkg/version.Version=${src.rev}" @@ -33,7 +59,7 @@ buildGoModule rec { description = "Local development against a remote Kubernetes or OpenShift cluster"; homepage = "https://telepresence.io"; license = licenses.asl20; - maintainers = with maintainers; [ mausch ]; + maintainers = with maintainers; [ mausch vilsol ]; mainProgram = "telepresence"; }; } From 7d6ee8ce1e3bdc37f00e2b483cc2842f978fabe9 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Wed, 13 Sep 2023 17:00:05 +0200 Subject: [PATCH 296/346] nixos/tests/shadow: test hashedPasswordFile --- nixos/tests/shadow.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/shadow.nix b/nixos/tests/shadow.nix index c9a04088e870..a027af7e450b 100644 --- a/nixos/tests/shadow.nix +++ b/nixos/tests/shadow.nix @@ -32,7 +32,7 @@ in import ./make-test-python.nix ({ pkgs, ... }: { }; users.berta = { isNormalUser = true; - hashedPassword = hashed_bcrypt; + hashedPasswordFile = (pkgs.writeText "hashed_bcrypt" hashed_bcrypt).outPath; shell = pkgs.bash; }; users.yesim = { From 1173a34d151b2797a4933a3eb2446e8dbdffcb1e Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 10 Aug 2023 09:10:00 +0200 Subject: [PATCH 297/346] build-support/php: move internal tools in `php/build-support/php/pkgs` --- .../php/build-composer-project.nix | 2 +- .../php/build-composer-repository.nix | 2 +- .../{ => pkgs}/composer-local-repo-plugin.nix | 2 +- pkgs/build-support/php/pkgs/composer-phar.nix | 48 +++++++++++++++++++ .../php-packages/composer/default.nix | 2 +- 5 files changed, 52 insertions(+), 4 deletions(-) rename pkgs/build-support/php/{ => pkgs}/composer-local-repo-plugin.nix (97%) create mode 100644 pkgs/build-support/php/pkgs/composer-phar.nix diff --git a/pkgs/build-support/php/build-composer-project.nix b/pkgs/build-support/php/build-composer-project.nix index a56720b801b8..b0be330205fa 100644 --- a/pkgs/build-support/php/build-composer-project.nix +++ b/pkgs/build-support/php/build-composer-project.nix @@ -6,7 +6,7 @@ let let phpDrv = finalAttrs.php or php; composer = finalAttrs.composer or phpDrv.packages.composer; - composer-local-repo-plugin = callPackage ./composer-local-repo-plugin.nix { }; + composer-local-repo-plugin = callPackage ./pkgs/composer-local-repo-plugin.nix { }; composerLock = finalAttrs.composerLock or null; in { diff --git a/pkgs/build-support/php/build-composer-repository.nix b/pkgs/build-support/php/build-composer-repository.nix index 95681104e234..86362f151f09 100644 --- a/pkgs/build-support/php/build-composer-repository.nix +++ b/pkgs/build-support/php/build-composer-repository.nix @@ -19,7 +19,7 @@ let let phpDrv = finalAttrs.php or php; composer = finalAttrs.composer or phpDrv.packages.composer; - composer-local-repo-plugin = callPackage ./composer-local-repo-plugin.nix { }; + composer-local-repo-plugin = callPackage ./pkgs/composer-local-repo-plugin.nix { }; in assert (lib.assertMsg (previousAttrs ? src) "mkComposerRepository expects src argument."); assert (lib.assertMsg (previousAttrs ? vendorHash) "mkComposerRepository expects vendorHash argument."); diff --git a/pkgs/build-support/php/composer-local-repo-plugin.nix b/pkgs/build-support/php/pkgs/composer-local-repo-plugin.nix similarity index 97% rename from pkgs/build-support/php/composer-local-repo-plugin.nix rename to pkgs/build-support/php/pkgs/composer-local-repo-plugin.nix index 3e918689088d..67edbf1f44f9 100644 --- a/pkgs/build-support/php/composer-local-repo-plugin.nix +++ b/pkgs/build-support/php/pkgs/composer-local-repo-plugin.nix @@ -1,7 +1,7 @@ { callPackage, stdenvNoCC, lib, fetchFromGitHub, makeBinaryWrapper }: let - composer = callPackage ../../development/tools/misc/composer { }; + composer = callPackage ./composer-phar.nix { }; composerKeys = stdenvNoCC.mkDerivation (finalComposerKeysAttrs: { pname = "composer-keys"; diff --git a/pkgs/build-support/php/pkgs/composer-phar.nix b/pkgs/build-support/php/pkgs/composer-phar.nix new file mode 100644 index 000000000000..41cba03f4f5d --- /dev/null +++ b/pkgs/build-support/php/pkgs/composer-phar.nix @@ -0,0 +1,48 @@ +{ + _7zz + , cacert + , curl + , fetchurl + , git + , lib + , makeBinaryWrapper + , php + , stdenvNoCC + , unzip + , xz +}: + +stdenvNoCC.mkDerivation (finalAttrs: { + pname = "composer-phar"; + version = "2.6.2"; + + src = fetchurl { + url = "https://github.com/composer/composer/releases/download/${finalAttrs.version}/composer.phar"; + hash = "sha256-iMhNSlP88cJ9Z2Lh1da3DVfG3J0uIxT9Cdv4a/YeGu8="; + }; + + dontUnpack = true; + + nativeBuildInputs = [ makeBinaryWrapper ]; + + installPhase = '' + runHook preInstall + + mkdir -p $out/bin + install -D $src $out/libexec/composer/composer.phar + makeWrapper ${php}/bin/php $out/bin/composer \ + --add-flags "$out/libexec/composer/composer.phar" \ + --prefix PATH : ${lib.makeBinPath [ _7zz cacert curl git unzip xz ]} + + runHook postInstall + ''; + + meta = { + changelog = "https://github.com/composer/composer/releases/tag/${finalAttrs.version}"; + description = "Dependency Manager for PHP, shipped from the PHAR file"; + homepage = "https://getcomposer.org/"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ drupol ]; + platforms = lib.platforms.all; + }; +}) diff --git a/pkgs/development/php-packages/composer/default.nix b/pkgs/development/php-packages/composer/default.nix index a1459bb2d253..2dce4b8e93df 100644 --- a/pkgs/development/php-packages/composer/default.nix +++ b/pkgs/development/php-packages/composer/default.nix @@ -1,7 +1,7 @@ { lib, callPackage, fetchFromGitHub, php, unzip, _7zz, xz, git, curl, cacert, makeBinaryWrapper }: php.buildComposerProject (finalAttrs: { - composer = callPackage ../../tools/misc/composer { }; + composer = callPackage ../../../build-support/php/pkgs/composer-phar.nix { }; pname = "composer"; version = "2.6.2"; From 3eb168da9243989a63dfd4e2c17c52f8c133247b Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Mon, 21 Aug 2023 12:19:17 +0200 Subject: [PATCH 298/346] build-support/php: add `composerNoDev`, `composerNoPlugins` and `composerNoScripts` attributes --- pkgs/build-support/php/build-composer-project.nix | 13 +++++++++++-- .../php/build-composer-repository.nix | 7 +++++++ .../php/hooks/composer-install-hook.sh | 14 +++++++++----- .../php/hooks/composer-repository-hook.sh | 11 +++++++---- 4 files changed, 34 insertions(+), 11 deletions(-) diff --git a/pkgs/build-support/php/build-composer-project.nix b/pkgs/build-support/php/build-composer-project.nix index b0be330205fa..6aecf4345773 100644 --- a/pkgs/build-support/php/build-composer-project.nix +++ b/pkgs/build-support/php/build-composer-project.nix @@ -7,9 +7,13 @@ let phpDrv = finalAttrs.php or php; composer = finalAttrs.composer or phpDrv.packages.composer; composer-local-repo-plugin = callPackage ./pkgs/composer-local-repo-plugin.nix { }; - composerLock = finalAttrs.composerLock or null; in { + composerLock = previousAttrs.composerLock or null; + composerNoDev = previousAttrs.composerNoDev or true; + composerNoPlugins = previousAttrs.composerNoPlugins or true; + composerNoScripts = previousAttrs.composerNoScripts or true; + nativeBuildInputs = (previousAttrs.nativeBuildInputs or [ ]) ++ [ composer composer-local-repo-plugin @@ -50,8 +54,13 @@ let ''; composerRepository = phpDrv.mkComposerRepository { - inherit composer composer-local-repo-plugin composerLock; + inherit composer composer-local-repo-plugin; inherit (finalAttrs) patches pname src vendorHash version; + + composerLock = previousAttrs.composerLock or null; + composerNoDev = previousAttrs.composerNoDev or true; + composerNoPlugins = previousAttrs.composerNoPlugins or true; + composerNoScripts = previousAttrs.composerNoScripts or true; }; meta = previousAttrs.meta or { } // { diff --git a/pkgs/build-support/php/build-composer-repository.nix b/pkgs/build-support/php/build-composer-repository.nix index 86362f151f09..30b0b48de751 100644 --- a/pkgs/build-support/php/build-composer-repository.nix +++ b/pkgs/build-support/php/build-composer-repository.nix @@ -25,7 +25,14 @@ let assert (lib.assertMsg (previousAttrs ? vendorHash) "mkComposerRepository expects vendorHash argument."); assert (lib.assertMsg (previousAttrs ? version) "mkComposerRepository expects version argument."); assert (lib.assertMsg (previousAttrs ? pname) "mkComposerRepository expects pname argument."); + assert (lib.assertMsg (previousAttrs ? composerNoDev) "mkComposerRepository expects composerNoDev argument."); + assert (lib.assertMsg (previousAttrs ? composerNoPlugins) "mkComposerRepository expects composerNoPlugins argument."); + assert (lib.assertMsg (previousAttrs ? composerNoScripts) "mkComposerRepository expects composerNoScripts argument."); { + composerNoDev = previousAttrs.composerNoDev or true; + composerNoPlugins = previousAttrs.composerNoPlugins or true; + composerNoScripts = previousAttrs.composerNoScripts or true; + name = "${previousAttrs.pname}-${previousAttrs.version}-composer-repository"; # See https://github.com/NixOS/nix/issues/6660 diff --git a/pkgs/build-support/php/hooks/composer-install-hook.sh b/pkgs/build-support/php/hooks/composer-install-hook.sh index 2d5c90ea3b2f..9f23b90fa401 100644 --- a/pkgs/build-support/php/hooks/composer-install-hook.sh +++ b/pkgs/build-support/php/hooks/composer-install-hook.sh @@ -1,6 +1,8 @@ -declare composerHomeDir declare composerRepository declare version +declare composerNoDev +declare composerNoPlugins +declare composerNoScripts preConfigureHooks+=(composerInstallConfigureHook) preBuildHooks+=(composerInstallBuildHook) @@ -59,8 +61,9 @@ composerInstallBuildHook() { --no-ansi \ --no-install \ --no-interaction \ - --no-plugins \ - --no-scripts \ + ${composerNoDev:+--no-dev} \ + ${composerNoPlugins:+--no-plugins} \ + ${composerNoScripts:+--no-scripts} \ update echo "Finished composerInstallBuildHook" @@ -88,8 +91,9 @@ composerInstallInstallHook() { composer \ --no-ansi \ --no-interaction \ - --no-scripts \ - --no-plugins \ + ${composerNoDev:+--no-dev} \ + ${composerNoPlugins:+--no-plugins} \ + ${composerNoScripts:+--no-scripts} \ install # Remove packages.json, we don't need it in the store. diff --git a/pkgs/build-support/php/hooks/composer-repository-hook.sh b/pkgs/build-support/php/hooks/composer-repository-hook.sh index 707c94452256..057acf1fcc30 100644 --- a/pkgs/build-support/php/hooks/composer-repository-hook.sh +++ b/pkgs/build-support/php/hooks/composer-repository-hook.sh @@ -1,6 +1,8 @@ -declare composerHomeDir declare composerLock declare version +declare composerNoDev +declare composerNoPlugins +declare composerNoScripts preConfigureHooks+=(composerRepositoryConfigureHook) preBuildHooks+=(composerRepositoryBuildHook) @@ -20,8 +22,9 @@ composerRepositoryConfigureHook() { --no-ansi \ --no-install \ --no-interaction \ - --no-plugins \ - --no-scripts \ + ${composerNoDev:+--no-dev} \ + ${composerNoPlugins:+--no-plugins} \ + ${composerNoScripts:+--no-scripts} \ update echo "Using an autogenerated composer.lock file." fi @@ -38,7 +41,7 @@ composerRepositoryBuildHook() { # The command 'build-local-repo' is provided by the Composer plugin # nix-community/composer-local-repo-plugin. COMPOSER_CACHE_DIR=/dev/null \ - composer-local-repo-plugin --no-ansi build-local-repo -r repository + composer-local-repo-plugin --no-ansi build-local-repo ${composerNoDev:+--no-dev} -r repository echo "Finished composerRepositoryBuildHook" } From c636fe7908e2b52713ff7c260a9da233effc5b7f Mon Sep 17 00:00:00 2001 From: Abdirahman Osman Date: Tue, 12 Sep 2023 22:17:25 -0500 Subject: [PATCH 299/346] bun: 1.0.0 -> 1.0.1 --- pkgs/development/web/bun/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/web/bun/default.nix b/pkgs/development/web/bun/default.nix index 81ec06e2d432..d3bf32a1ac24 100644 --- a/pkgs/development/web/bun/default.nix +++ b/pkgs/development/web/bun/default.nix @@ -11,7 +11,7 @@ }: stdenvNoCC.mkDerivation rec { - version = "1.0.0"; + version = "1.0.1"; pname = "bun"; src = passthru.sources.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}"); @@ -35,19 +35,19 @@ stdenvNoCC.mkDerivation rec { sources = { "aarch64-darwin" = fetchurl { url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-aarch64.zip"; - hash = "sha256-Bd8KL1IbWBRiMZq4YPhNLdhBOqRReCFeUPAilLfk0TM="; + hash = "sha256-AzjCqfvR4Uad6+ocLo+KfqHKFjxOlZt4//Nw80FRijM="; }; "aarch64-linux" = fetchurl { url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip"; - hash = "sha256-CHOiQ47wXjkFyJG9ElE9gBpmWpylMEUf6c+Sm+YCpGc="; + hash = "sha256-EEcKoaaC0KnaAfUqd5QNYpTeArY3ia38l5dkZCooZuw="; }; "x86_64-darwin" = fetchurl { url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64.zip"; - hash = "sha256-0AT58hjawS60q5YAQd/upVz0vOIs11JM+lc3c1mGyOE="; + hash = "sha256-g4k0NdpWU1K+66Mi/idYAMx8pFLOBbUDk4rVczrxRjg="; }; "x86_64-linux" = fetchurl { url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip"; - hash = "sha256-1ju7ZuW82wRfXEiU24Lx9spCoIhhddJ2p4dTTQmsa7A="; + hash = "sha256-RmgnWTG6kTebYwIa/VAwvvJmbL+ARNC+HkbF4mJPF7o="; }; }; updateScript = writeShellScript "update-bun" '' @@ -66,7 +66,7 @@ stdenvNoCC.mkDerivation rec { }; meta = with lib; { homepage = "https://bun.sh"; - changelog = "https://bun.sh/blog/bun-v1.0"; # 1.0 changelog does not use the full version name, please change this to ${version} in the following releases + changelog = "https://bun.sh/blog/bun-v${version}"; description = "Incredibly fast JavaScript runtime, bundler, transpiler and package manager – all in one"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; longDescription = '' From 175f40e5adcbd9fdca2376d54b6fa6a484196cb9 Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 13 Sep 2023 11:15:18 -0400 Subject: [PATCH 300/346] cotton: unstable-2023-08-09 -> unstable-2023-09-13 Diff: https://github.com/danielhuang/cotton/compare/04e2dfd123f7af6e78e3ce86b2fc04ca4c754cdc...df9d79a4b0bc4b140e87ddd7795924a93775a864 --- pkgs/development/tools/cotton/Cargo.lock | 403 +++++++--------------- pkgs/development/tools/cotton/default.nix | 6 +- 2 files changed, 119 insertions(+), 290 deletions(-) diff --git a/pkgs/development/tools/cotton/Cargo.lock b/pkgs/development/tools/cotton/Cargo.lock index 94e2ea06696b..3186cacd69c1 100644 --- a/pkgs/development/tools/cotton/Cargo.lock +++ b/pkgs/development/tools/cotton/Cargo.lock @@ -34,16 +34,15 @@ dependencies = [ [[package]] name = "anstream" -version = "0.3.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e579a7752471abc2a8268df8b20005e3eadd975f585398f17efcfd8d4927371" +checksum = "b1f58811cfac344940f1a400b6e6231ce35171f614f26439e80f8c1465c5cc0c" dependencies = [ "anstyle", "anstyle-parse", "anstyle-query", "anstyle-wincon", "colorchoice", - "is-terminal", "utf8parse", ] @@ -68,24 +67,24 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" dependencies = [ - "windows-sys 0.48.0", + "windows-sys", ] [[package]] name = "anstyle-wincon" -version = "1.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4bcd8291a340dd8ac70e18878bc4501dd7b4ff970cfa21c207d36ece51ea88fd" +checksum = "58f54d10c6dfa51283a066ceab3ec1ab78d13fae00aa49243a45e4571fb79dfd" dependencies = [ "anstyle", - "windows-sys 0.48.0", + "windows-sys", ] [[package]] name = "async-compression" -version = "0.4.1" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62b74f44609f0f91493e3082d3734d98497e094777144380ea4db9f9905dd5b6" +checksum = "bb42b2197bf15ccb092b62c74515dbd8b86d0effd934795f6687c93b6e679a2c" dependencies = [ "brotli", "flate2", @@ -97,9 +96,9 @@ dependencies = [ [[package]] name = "async-recursion" -version = "1.0.4" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba" +checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" dependencies = [ "proc-macro2", "quote", @@ -156,6 +155,12 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" +[[package]] +name = "bitflags" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" + [[package]] name = "brotli" version = "3.3.4" @@ -254,20 +259,19 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.3.21" +version = "4.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c27cdf28c0f604ba3f512b0c9a409f8de8513e4816705deb0498b627e7c3a3fd" +checksum = "84ed82781cea27b43c9b106a979fe450a13a31aab0500595fb3fc06616de08e6" dependencies = [ "clap_builder", "clap_derive", - "once_cell", ] [[package]] name = "clap_builder" -version = "4.3.21" +version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08a9f1ab5e9f01a9b81f202e8562eb9a10de70abf9eaeac1be465c28b75aa4aa" +checksum = "2bb9faaa7c2ef94b2743a21f5a29e6f0010dff4caa69ac8e9d6cf8b6fa74da08" dependencies = [ "anstream", "anstyle", @@ -277,9 +281,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.3.12" +version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050" +checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873" dependencies = [ "heck", "proc-macro2", @@ -463,9 +467,9 @@ dependencies = [ [[package]] name = "dashmap" -version = "5.5.0" +version = "5.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6943ae99c34386c84a470c499d3414f66502a41340aa895406e0d2e4a207b91d" +checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" dependencies = [ "cfg-if", "hashbrown 0.14.0", @@ -522,13 +526,13 @@ checksum = "88bffebc5d80432c9b140ee17875ff173a8ab62faad5b257da912bd2f6c1c0a1" [[package]] name = "errno" -version = "0.3.0" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50d6a0976c999d473fe89ad888d5a284e55366d9dc9038b1ba2aa15128c4afa0" +checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" dependencies = [ "errno-dragonfly", "libc", - "windows-sys 0.45.0", + "windows-sys", ] [[package]] @@ -562,14 +566,14 @@ dependencies = [ [[package]] name = "filetime" -version = "0.2.17" +version = "0.2.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e94a7bbaa59354bc20dd75b67f23e2797b4490e9d6928203fb105c79e448c86c" +checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.2.13", - "windows-sys 0.36.1", + "redox_syscall 0.3.5", + "windows-sys", ] [[package]] @@ -584,15 +588,14 @@ dependencies = [ [[package]] name = "flume" -version = "0.10.14" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" +checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" dependencies = [ "futures-core", "futures-sink", "nanorand", - "pin-project", - "spin 0.9.4", + "spin 0.9.8", ] [[package]] @@ -744,9 +747,9 @@ checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" [[package]] name = "h2" -version = "0.3.13" +version = "0.3.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57" +checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" dependencies = [ "bytes", "fnv", @@ -795,10 +798,13 @@ dependencies = [ ] [[package]] -name = "hermit-abi" -version = "0.3.1" +name = "home" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" +checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" +dependencies = [ + "windows-sys", +] [[package]] name = "hostname" @@ -835,9 +841,9 @@ dependencies = [ [[package]] name = "httparse" -version = "1.7.1" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c" +checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" [[package]] name = "httpdate" @@ -847,9 +853,9 @@ checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" [[package]] name = "hyper" -version = "0.14.20" +version = "0.14.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac" +checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" dependencies = [ "bytes", "futures-channel", @@ -955,7 +961,7 @@ version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" dependencies = [ - "bitflags", + "bitflags 1.3.2", "inotify-sys", "libc", ] @@ -978,16 +984,6 @@ dependencies = [ "cfg-if", ] -[[package]] -name = "io-lifetimes" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7d367024b3f3414d8e01f437f704f41a9f64ab36f9067fa73e526ad4c763c87" -dependencies = [ - "libc", - "windows-sys 0.42.0", -] - [[package]] name = "ipconfig" version = "0.3.0" @@ -1006,18 +1002,6 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b" -[[package]] -name = "is-terminal" -version = "0.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "256017f749ab3117e93acb91063009e1f1bb56d03965b14c2c8df4eb02c524d8" -dependencies = [ - "hermit-abi 0.3.1", - "io-lifetimes", - "rustix", - "windows-sys 0.45.0", -] - [[package]] name = "itertools" version = "0.11.0" @@ -1058,7 +1042,7 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587" dependencies = [ - "bitflags", + "bitflags 1.3.2", "libc", ] @@ -1076,9 +1060,9 @@ checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" [[package]] name = "libmimalloc-sys" -version = "0.1.33" +version = "0.1.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4ac0e912c8ef1b735e92369695618dc5b1819f5a7bf3f167301a3ba1cea515e" +checksum = "25d058a81af0d1c22d7a1c948576bee6d673f7af3c0f35564abd6c81122f513d" dependencies = [ "cc", "libc", @@ -1092,9 +1076,9 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linux-raw-sys" -version = "0.3.0" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd550e73688e6d578f0ac2119e32b797a327631a42f9433e59d02e139c8df60d" +checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" [[package]] name = "lock_api" @@ -1184,9 +1168,9 @@ dependencies = [ [[package]] name = "mimalloc" -version = "0.1.37" +version = "0.1.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e2894987a3459f3ffb755608bd82188f8ed00d0ae077f1edea29c068d639d98" +checksum = "972e5f23f6716f62665760b0f4cbf592576a80c7b879ba9beaafc0e558894127" dependencies = [ "libmimalloc-sys", ] @@ -1221,7 +1205,7 @@ dependencies = [ "libc", "log", "wasi", - "windows-sys 0.48.0", + "windows-sys", ] [[package]] @@ -1248,7 +1232,7 @@ version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cfg-if", "libc", "memoffset", @@ -1280,20 +1264,21 @@ dependencies = [ [[package]] name = "notify" -version = "6.0.1" +version = "6.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5738a2795d57ea20abec2d6d76c6081186709c0024187cd5977265eda6598b51" +checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" dependencies = [ - "bitflags", + "bitflags 2.4.0", "crossbeam-channel", "filetime", "fsevent-sys", "inotify", "kqueue", "libc", + "log", "mio", "walkdir", - "windows-sys 0.45.0", + "windows-sys", ] [[package]] @@ -1312,7 +1297,7 @@ version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" dependencies = [ - "hermit-abi 0.1.19", + "hermit-abi", "libc", ] @@ -1375,7 +1360,7 @@ dependencies = [ "libc", "redox_syscall 0.3.5", "smallvec", - "windows-targets 0.48.0", + "windows-targets", ] [[package]] @@ -1384,26 +1369,6 @@ version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" -[[package]] -name = "pin-project" -version = "1.0.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" -dependencies = [ - "pin-project-internal", -] - -[[package]] -name = "pin-project-internal" -version = "1.0.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.104", -] - [[package]] name = "pin-project-lite" version = "0.2.11" @@ -1488,7 +1453,7 @@ version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42" dependencies = [ - "bitflags", + "bitflags 1.3.2", ] [[package]] @@ -1497,7 +1462,7 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" dependencies = [ - "bitflags", + "bitflags 1.3.2", ] [[package]] @@ -1526,9 +1491,9 @@ checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" [[package]] name = "reqwest" -version = "0.11.18" +version = "0.11.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" +checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" dependencies = [ "async-compression", "base64 0.21.0", @@ -1564,7 +1529,7 @@ dependencies = [ "wasm-streams", "web-sys", "webpki-roots", - "winreg 0.10.1", + "winreg 0.50.0", ] [[package]] @@ -1606,23 +1571,22 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustix" -version = "0.37.4" +version = "0.38.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c348b5dc624ecee40108aa2922fed8bad89d7fcc2b9f8cb18f632898ac4a37f9" +checksum = "c0c3dde1fc030af041adc40e79c0e7fbcf431dd24870053d187d7c66e4b87453" dependencies = [ - "bitflags", + "bitflags 2.4.0", "errno", - "io-lifetimes", "libc", "linux-raw-sys", - "windows-sys 0.45.0", + "windows-sys", ] [[package]] name = "rustls" -version = "0.21.1" +version = "0.21.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c911ba11bc8433e811ce56fde130ccf32f5127cab0e0194e9c68c5a5b671791e" +checksum = "1d1feddffcfcc0b33f5c6ce9a29e341e4cd59c3f78e7ee45f4a40c038b1d6cbb" dependencies = [ "log", "ring", @@ -1641,9 +1605,9 @@ dependencies = [ [[package]] name = "rustls-webpki" -version = "0.100.1" +version = "0.101.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b" +checksum = "261e9e0888cba427c3316e6322805653c9425240b6fd96cee7cb671ab70ab8d0" dependencies = [ "ring", "untrusted", @@ -1688,18 +1652,18 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.183" +version = "1.0.188" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c" +checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.183" +version = "1.0.188" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aafe972d60b0b9bee71a91b92fee2d4fb3c9d7e8f6b179aa99f27203d99a4816" +checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" dependencies = [ "proc-macro2", "quote", @@ -1708,9 +1672,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.104" +version = "1.0.106" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" +checksum = "2cc66a619ed80bf7a0f6b17dd063a84b88f6dea1813737cf469aef1d081142c2" dependencies = [ "indexmap 2.0.0", "itoa", @@ -1799,7 +1763,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" dependencies = [ "libc", - "windows-sys 0.48.0", + "windows-sys", ] [[package]] @@ -1810,9 +1774,9 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "spin" -version = "0.9.4" +version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09" +checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" dependencies = [ "lock_api", ] @@ -1913,9 +1877,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.30.0" +version = "1.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d3ce25f50619af8b0aec2eb23deebe84249e19e2ddd393a6e16e3300a6dadfd" +checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" dependencies = [ "backtrace", "bytes", @@ -1927,7 +1891,7 @@ dependencies = [ "signal-hook-registry", "socket2 0.5.3", "tokio-macros", - "windows-sys 0.48.0", + "windows-sys", ] [[package]] @@ -1993,9 +1957,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.7.6" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" +checksum = "c226a7bba6d859b63c92c4b4fe69c5b6b72d0cb897dbc8e6012298e6154cb56e" dependencies = [ "serde", "serde_spanned", @@ -2014,9 +1978,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.19.12" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c500344a19072298cd05a7224b3c0c629348b78692bf48466c5238656e315a78" +checksum = "8ff63e60a958cefbb518ae1fd6566af80d9d4be430a33f3723dfc47d1d411d95" dependencies = [ "indexmap 2.0.0", "serde", @@ -2188,9 +2152,9 @@ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" [[package]] name = "url" -version = "2.4.0" +version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" +checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" dependencies = [ "form_urlencoded", "idna 0.4.0", @@ -2311,9 +2275,9 @@ checksum = "6a89911bd99e5f3659ec4acf9c4d93b0a90fe4a2a11f15328472058edc5261be" [[package]] name = "wasm-streams" -version = "0.2.3" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078" +checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7" dependencies = [ "futures-util", "js-sys", @@ -2332,34 +2296,22 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "webpki" -version = "0.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" -dependencies = [ - "ring", - "untrusted", -] - [[package]] name = "webpki-roots" -version = "0.22.4" +version = "0.25.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1c760f0d366a6c24a02ed7816e23e691f5d92291f94d15e836006fd11b04daf" -dependencies = [ - "webpki", -] +checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" [[package]] name = "which" -version = "4.4.0" +version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" +checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" dependencies = [ "either", - "libc", + "home", "once_cell", + "rustix", ] [[package]] @@ -2399,65 +2351,13 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" -[[package]] -name = "windows-sys" -version = "0.36.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" -dependencies = [ - "windows_aarch64_msvc 0.36.1", - "windows_i686_gnu 0.36.1", - "windows_i686_msvc 0.36.1", - "windows_x86_64_gnu 0.36.1", - "windows_x86_64_msvc 0.36.1", -] - -[[package]] -name = "windows-sys" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" -dependencies = [ - "windows_aarch64_gnullvm 0.42.1", - "windows_aarch64_msvc 0.42.1", - "windows_i686_gnu 0.42.1", - "windows_i686_msvc 0.42.1", - "windows_x86_64_gnu 0.42.1", - "windows_x86_64_gnullvm 0.42.1", - "windows_x86_64_msvc 0.42.1", -] - -[[package]] -name = "windows-sys" -version = "0.45.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" -dependencies = [ - "windows-targets 0.42.1", -] - [[package]] name = "windows-sys" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" dependencies = [ - "windows-targets 0.48.0", -] - -[[package]] -name = "windows-targets" -version = "0.42.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" -dependencies = [ - "windows_aarch64_gnullvm 0.42.1", - "windows_aarch64_msvc 0.42.1", - "windows_i686_gnu 0.42.1", - "windows_i686_msvc 0.42.1", - "windows_x86_64_gnu 0.42.1", - "windows_x86_64_gnullvm 0.42.1", - "windows_x86_64_msvc 0.42.1", + "windows-targets", ] [[package]] @@ -2466,123 +2366,51 @@ version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" dependencies = [ - "windows_aarch64_gnullvm 0.48.0", - "windows_aarch64_msvc 0.48.0", - "windows_i686_gnu 0.48.0", - "windows_i686_msvc 0.48.0", - "windows_x86_64_gnu 0.48.0", - "windows_x86_64_gnullvm 0.48.0", - "windows_x86_64_msvc 0.48.0", + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", ] -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.42.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" - [[package]] name = "windows_aarch64_gnullvm" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" -[[package]] -name = "windows_aarch64_msvc" -version = "0.36.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.42.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" - [[package]] name = "windows_aarch64_msvc" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" -[[package]] -name = "windows_i686_gnu" -version = "0.36.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" - -[[package]] -name = "windows_i686_gnu" -version = "0.42.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" - [[package]] name = "windows_i686_gnu" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" -[[package]] -name = "windows_i686_msvc" -version = "0.36.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" - -[[package]] -name = "windows_i686_msvc" -version = "0.42.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" - [[package]] name = "windows_i686_msvc" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" -[[package]] -name = "windows_x86_64_gnu" -version = "0.36.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.42.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" - [[package]] name = "windows_x86_64_gnu" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.42.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" - [[package]] name = "windows_x86_64_gnullvm" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" -[[package]] -name = "windows_x86_64_msvc" -version = "0.36.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.42.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" - [[package]] name = "windows_x86_64_msvc" version = "0.48.0" @@ -2591,9 +2419,9 @@ checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" [[package]] name = "winnow" -version = "0.4.6" +version = "0.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699" +checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc" dependencies = [ "memchr", ] @@ -2609,11 +2437,12 @@ dependencies = [ [[package]] name = "winreg" -version = "0.10.1" +version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" +checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" dependencies = [ - "winapi", + "cfg-if", + "windows-sys", ] [[package]] diff --git a/pkgs/development/tools/cotton/default.nix b/pkgs/development/tools/cotton/default.nix index 026f54b228fb..57b4ef020581 100644 --- a/pkgs/development/tools/cotton/default.nix +++ b/pkgs/development/tools/cotton/default.nix @@ -7,13 +7,13 @@ rustPlatform.buildRustPackage rec { pname = "cotton"; - version = "unstable-2023-08-09"; + version = "unstable-2023-09-13"; src = fetchFromGitHub { owner = "danielhuang"; repo = pname; - rev = "04e2dfd123f7af6e78e3ce86b2fc04ca4c754cdc"; - sha256 = "sha256-+HOuQyGkyS7oG0I0DkFGl+6YIDpV4GCCgC+a5Jwo4fw="; + rev = "df9d79a4b0bc4b140e87ddd7795924a93775a864"; + sha256 = "sha256-ZMQaVMH8cuOb4PQ19g0pAFAMwP8bR60+eWFhiXk1bYE="; }; cargoLock = { From 8485cdfad53722d0ac2c529100f85d369cd71a2d Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Tue, 12 Sep 2023 23:42:19 -0300 Subject: [PATCH 301/346] ucg: cleanup - Use rec-less, overlay-style overridable recursive attributes (in effect since https://github.com/NixOS/nixpkgs/pull/119942); - Remove installCheckPhase - Change it to a separated derivation inside passthru.tests - Set meta.mainProgram --- .../uc/ucg/package.nix} | 25 +++++++----------- pkgs/by-name/uc/ucg/tests/simple.nix | 26 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 -- 3 files changed, 35 insertions(+), 18 deletions(-) rename pkgs/{tools/text/ucg/default.nix => by-name/uc/ucg/package.nix} (67%) create mode 100644 pkgs/by-name/uc/ucg/tests/simple.nix diff --git a/pkgs/tools/text/ucg/default.nix b/pkgs/by-name/uc/ucg/package.nix similarity index 67% rename from pkgs/tools/text/ucg/default.nix rename to pkgs/by-name/uc/ucg/package.nix index e546a604252a..99d1b90c43df 100644 --- a/pkgs/tools/text/ucg/default.nix +++ b/pkgs/by-name/uc/ucg/package.nix @@ -2,11 +2,12 @@ , stdenv , fetchFromGitHub , autoreconfHook +, callPackage , pkg-config , pcre }: -stdenv.mkDerivation { +stdenv.mkDerivation (finalAttrs: { pname = "ucg"; version = "unstable-2022-09-03"; @@ -28,20 +29,11 @@ stdenv.mkDerivation { pcre ]; - doInstallCheck = true; - installCheckPhase = '' - runHook preInstallCheck - - testFile=$(mktemp /tmp/ucg-test.XXXX) - echo -ne 'Lorem ipsum dolor sit amet\n2.7182818284590' > $testFile - $out/bin/ucg 'dolor' $testFile || { rm $testFile; exit -1; } - $out/bin/ucg --ignore-case 'lorem' $testFile || { rm $testFile; exit -1; } - $out/bin/ucg --word-regexp '2718' $testFile && { rm $testFile; exit -1; } - $out/bin/ucg 'pisum' $testFile && { rm $testFile; exit -1; } - rm $testFile - - runHook postInstallCheck - ''; + passthru.tests = { + simple = callPackage ./tests/simple.nix { + ucg = finalAttrs.finalPackage; + }; + }; meta = { homepage = "https://gvansickle.github.io/ucg/"; @@ -53,9 +45,10 @@ stdenv.mkDerivation { appropriate with grep. Search patterns are specified as PCRE regexes. ''; license = lib.licenses.gpl3Plus; + mainProgram = "ucg"; maintainers = with lib.maintainers; [ AndersonTorres ]; platforms = lib.platforms.unix; broken = stdenv.isAarch64 || stdenv.isDarwin; }; -} +}) # TODO: report upstream diff --git a/pkgs/by-name/uc/ucg/tests/simple.nix b/pkgs/by-name/uc/ucg/tests/simple.nix new file mode 100644 index 000000000000..09910d0829da --- /dev/null +++ b/pkgs/by-name/uc/ucg/tests/simple.nix @@ -0,0 +1,26 @@ +{ lib +, stdenv +, ucg +}: + +stdenv.mkDerivation { + pname = "ucg-test"; + inherit (ucg) version; + + nativeBuildInputs = [ ucg ]; + + dontInstall = true; + + buildCommand = '' + testFile=$(mktemp /tmp/ucg-test.XXXX) + echo -ne 'Lorem ipsum dolor sit amet\n2.7182818284590' > $testFile + ucg 'dolor' $testFile || { rm $testFile; exit -1; } + ucg --ignore-case 'lorem' $testFile || { rm $testFile; exit -1; } + ucg --word-regexp '2718' $testFile && { rm $testFile; exit -1; } + ucg 'pisum' $testFile && { rm $testFile; exit -1; } + rm $testFile + touch $out + ''; + + meta.timeout = 10; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e0141b8abb63..ec064e39fd7d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8864,8 +8864,6 @@ with pkgs; robodoc = callPackage ../tools/text/robodoc { }; - ucg = callPackage ../tools/text/ucg { }; - grive2 = callPackage ../tools/filesystems/grive2 { }; groff = callPackage ../tools/text/groff { }; From 50d5d15896a578ebb4af93f3be816c24cc835a3a Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 13 Sep 2023 11:32:01 -0400 Subject: [PATCH 302/346] egglog: unstable-2023-08-29 -> unstable-2023-09-12 Diff: https://github.com/egraphs-good/egglog/compare/c83fc750878755eb610a314da90f9273b3bfe25d...4d67f262a6f27aa5cfb62a2cfc7df968959105df --- pkgs/applications/science/logic/egglog/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/science/logic/egglog/default.nix b/pkgs/applications/science/logic/egglog/default.nix index d59403433370..eedd90315db8 100644 --- a/pkgs/applications/science/logic/egglog/default.nix +++ b/pkgs/applications/science/logic/egglog/default.nix @@ -5,13 +5,13 @@ rustPlatform.buildRustPackage { pname = "egglog"; - version = "unstable-2023-08-29"; + version = "unstable-2023-09-12"; src = fetchFromGitHub { owner = "egraphs-good"; repo = "egglog"; - rev = "c83fc750878755eb610a314da90f9273b3bfe25d"; - hash = "sha256-bo3LU7WQ7WWnyL4EVOpzxxSFioXTozCSQFIFXyoxKLg="; + rev = "4d67f262a6f27aa5cfb62a2cfc7df968959105df"; + hash = "sha256-1mc7dW2pgaK4D7ZmlSHohb+6lcr7M9SRLUV/Dod8Rv0="; }; cargoLock = { From 9998770cf551a1e4c51385f0910050114bd907ac Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 13 Sep 2023 11:36:40 -0400 Subject: [PATCH 303/346] gridlock: unstable-2023-03-03 -> unstable-2023-08-29 Diff: https://github.com/lf-/gridlock/compare/15261abdb179e1d7e752772bf9db132b3ee343ea...a98abfa554e5f8e2b7242662c0c714b7f1d7ec29 --- pkgs/tools/nix/gridlock/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/nix/gridlock/default.nix b/pkgs/tools/nix/gridlock/default.nix index 7e3bee28ebb7..e49750eba5ca 100644 --- a/pkgs/tools/nix/gridlock/default.nix +++ b/pkgs/tools/nix/gridlock/default.nix @@ -9,18 +9,18 @@ rustPlatform.buildRustPackage { pname = "gridlock"; - version = "unstable-2023-03-03"; + version = "unstable-2023-08-29"; outputs = [ "out" "nyarr" ]; src = fetchFromGitHub { owner = "lf-"; repo = "gridlock"; - rev = "15261abdb179e1d7e752772bf9db132b3ee343ea"; - hash = "sha256-rnPAEJH3TebBH6lqgVo7B+nNiArDIkGDnIZWcteFNEw="; + rev = "a98abfa554e5f8e2b7242662c0c714b7f1d7ec29"; + hash = "sha256-I4NGfgNX79ZhWXDeUDJyDzP2GxcNhHhazVmmmPlz5js="; }; - cargoHash = "sha256-EPs5vJ2RkVXKxrTRtbT/1FbvCT0KJtNuW2WKIUq7G0U="; + cargoHash = "sha256-qz77c2IZGaWsinfkVTWqfEeBEtHng6W738jBwJAkrl4="; nativeBuildInputs = [ pkg-config From aa638f29efe060c028ed2594b176fce66ead9dcd Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 13 Sep 2023 17:40:05 +0200 Subject: [PATCH 304/346] dump_syms: 2.2.1 -> 2.2.2 https://github.com/mozilla/dump_syms/releases/tag/v2.2.2 --- pkgs/development/tools/dump_syms/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/dump_syms/default.nix b/pkgs/development/tools/dump_syms/default.nix index 6929150c8ec5..7cfb93d9b719 100644 --- a/pkgs/development/tools/dump_syms/default.nix +++ b/pkgs/development/tools/dump_syms/default.nix @@ -16,7 +16,7 @@ let pname = "dump_syms"; - version = "2.2.1"; + version = "2.2.2"; in rustPlatform.buildRustPackage { inherit pname version; @@ -25,10 +25,10 @@ rustPlatform.buildRustPackage { owner = "mozilla"; repo = pname; rev = "v${version}"; - hash = "sha256-YzGFzmAGHev3gM6+l0sC+nCdyEYZI2G30U1JBrZ2uSU="; + hash = "sha256-8kyicTtY7h1CDM4UGOHsppRRTraU6JLe24MKtoduiz0="; }; - cargoSha256 = "sha256-gWLd1MUpCeVRUgzqkA5USmlYDq8BmmB/EQfiFl9JsjA="; + cargoSha256 = "sha256-5WiGckh/jq7AHH3JWZL8tIsj1Gqr8iLX7IyppKsW96k="; nativeBuildInputs = [ pkg-config From 87f2428361eb83617e3f0afec940ba6c3aab4515 Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 13 Sep 2023 11:47:35 -0400 Subject: [PATCH 305/346] typst: 0.7.0 -> 0.8.0 Diff: https://github.com/typst/typst/compare/v0.7.0...v0.8.0 Changelog: https://github.com/typst/typst/releases/tag/v0.8.0 --- pkgs/tools/typesetting/typst/Cargo.lock | 1261 ++++++++++++++-------- pkgs/tools/typesetting/typst/default.nix | 6 +- 2 files changed, 803 insertions(+), 464 deletions(-) diff --git a/pkgs/tools/typesetting/typst/Cargo.lock b/pkgs/tools/typesetting/typst/Cargo.lock index 29fb6b96bd5f..71fb9e8f7130 100644 --- a/pkgs/tools/typesetting/typst/Cargo.lock +++ b/pkgs/tools/typesetting/typst/Cargo.lock @@ -8,6 +8,17 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" +[[package]] +name = "aes" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" +dependencies = [ + "cfg-if", + "cipher", + "cpufeatures", +] + [[package]] name = "ahash" version = "0.8.3" @@ -22,13 +33,19 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.0.1" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" +checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783" dependencies = [ "memchr", ] +[[package]] +name = "android-tzdata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" + [[package]] name = "android_system_properties" version = "0.1.5" @@ -40,30 +57,29 @@ dependencies = [ [[package]] name = "anstream" -version = "0.3.2" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" +checksum = "b1f58811cfac344940f1a400b6e6231ce35171f614f26439e80f8c1465c5cc0c" dependencies = [ "anstyle", "anstyle-parse", "anstyle-query", "anstyle-wincon", "colorchoice", - "is-terminal", "utf8parse", ] [[package]] name = "anstyle" -version = "1.0.0" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" +checksum = "b84bf0a05bbb2a83e5eb6fa36bb6e87baa08193c35ff52bbf6b38d8af2890e46" [[package]] name = "anstyle-parse" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee" +checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" dependencies = [ "utf8parse", ] @@ -74,17 +90,17 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" dependencies = [ - "windows-sys 0.48.0", + "windows-sys", ] [[package]] name = "anstyle-wincon" -version = "1.0.1" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" +checksum = "58f54d10c6dfa51283a066ceab3ec1ab78d13fae00aa49243a45e4571fb79dfd" dependencies = [ "anstyle", - "windows-sys 0.48.0", + "windows-sys", ] [[package]] @@ -95,9 +111,9 @@ checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" [[package]] name = "arrayvec" -version = "0.7.2" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" +checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" [[package]] name = "autocfg" @@ -113,9 +129,15 @@ checksum = "7b7e4c2464d97fe331d41de9d5db0def0a96f4d823b8b32a2efd503578988973" [[package]] name = "base64" -version = "0.21.0" +version = "0.21.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" +checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" + +[[package]] +name = "base64ct" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "biblatex" @@ -169,9 +191,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.3.1" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6776fc96284a0bb647b615056fc496d1fe1644a7ab01829818a6d91cae888b84" +checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" dependencies = [ "serde", ] @@ -188,6 +210,15 @@ dependencies = [ "wyz", ] +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + [[package]] name = "bumpalo" version = "3.13.0" @@ -196,9 +227,9 @@ checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" [[package]] name = "bytemuck" -version = "1.13.1" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" +checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" [[package]] name = "byteorder" @@ -207,10 +238,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" [[package]] -name = "cc" -version = "1.0.79" +name = "bzip2" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" +checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" +dependencies = [ + "bzip2-sys", + "libc", +] + +[[package]] +name = "bzip2-sys" +version = "0.1.11+1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" +dependencies = [ + "cc", + "libc", + "pkg-config", +] + +[[package]] +name = "cc" +version = "1.0.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" +dependencies = [ + "jobserver", + "libc", +] [[package]] name = "cfg-if" @@ -220,9 +276,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chinese-number" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb8659add27dbba7575c058a3265d81cc078dc2693848445bf3788a883ec82c8" +checksum = "d9cec9efb10b00914876c7e7b1fdaec572b888443b4046cd11ba91eb8c5a1ccb" dependencies = [ "chinese-variant", "enum-ordinalize", @@ -238,72 +294,107 @@ checksum = "aeea139b89efab957972956e5d3e4efb66a6c261f726abf6911040cc8ef700f7" [[package]] name = "chrono" -version = "0.4.24" +version = "0.4.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" +checksum = "defd4e7873dbddba6c7c91e199c7fcb946abc4a6a4ac3195400bcfb01b5de877" dependencies = [ + "android-tzdata", "iana-time-zone", - "num-integer", "num-traits", - "winapi", + "windows-targets", +] + +[[package]] +name = "ciborium" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" +dependencies = [ + "ciborium-io", + "ciborium-ll", + "serde", +] + +[[package]] +name = "ciborium-io" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" + +[[package]] +name = "ciborium-ll" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" +dependencies = [ + "ciborium-io", + "half 1.8.2", +] + +[[package]] +name = "cipher" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" +dependencies = [ + "crypto-common", + "inout", ] [[package]] name = "clap" -version = "4.2.7" +version = "4.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34d21f9bf1b425d2968943631ec91202fe5e837264063503708b83013f8fc938" +checksum = "84ed82781cea27b43c9b106a979fe450a13a31aab0500595fb3fc06616de08e6" dependencies = [ "clap_builder", "clap_derive", - "once_cell", ] [[package]] name = "clap_builder" -version = "4.2.7" +version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "914c8c79fb560f238ef6429439a30023c862f7a28e688c58f7203f12b29970bd" +checksum = "2bb9faaa7c2ef94b2743a21f5a29e6f0010dff4caa69ac8e9d6cf8b6fa74da08" dependencies = [ "anstream", "anstyle", - "bitflags 1.3.2", "clap_lex", "strsim", ] [[package]] name = "clap_complete" -version = "4.2.3" +version = "4.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1594fe2312ec4abf402076e407628f5c313e54c32ade058521df4ee34ecac8a8" +checksum = "4110a1e6af615a9e6d0a36f805d5c99099f8bab9b8042f5bc1fa220a4a89e36f" dependencies = [ "clap", ] [[package]] name = "clap_derive" -version = "4.2.0" +version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4" +checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873" dependencies = [ "heck", "proc-macro2", "quote", - "syn 2.0.16", + "syn 2.0.32", ] [[package]] name = "clap_lex" -version = "0.4.1" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" +checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" [[package]] name = "clap_mangen" -version = "0.2.10" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4237e29de9c6949982ba87d51709204504fb8ed2fd38232fcb1e5bf7d4ba48c8" +checksum = "cf8e5f34d85d9e0bbe2491d100a7a7c1007bb2467b518080bfe311e8947197a9" dependencies = [ "clap", "roff", @@ -358,12 +449,27 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "constant_time_eq" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" + [[package]] name = "core-foundation-sys" version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" +[[package]] +name = "cpufeatures" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" +dependencies = [ + "libc", +] + [[package]] name = "crc32fast" version = "1.3.2" @@ -409,9 +515,9 @@ dependencies = [ [[package]] name = "crossbeam-utils" -version = "0.8.15" +version = "0.8.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" +checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" dependencies = [ "cfg-if", ] @@ -423,10 +529,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" [[package]] -name = "csv" -version = "1.2.1" +name = "crypto-common" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b015497079b9a9d69c02ad25de6c0a6edef051ea6360a327d0bd05802ef64ad" +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "csv" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "626ae34994d3d8d668f4269922248239db4ae42d538b14c398b74a52208e8086" dependencies = [ "csv-core", "itoa", @@ -445,12 +561,12 @@ dependencies = [ [[package]] name = "dashmap" -version = "5.4.0" +version = "5.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc" +checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" dependencies = [ "cfg-if", - "hashbrown 0.12.3", + "hashbrown 0.14.0", "lock_api", "once_cell", "parking_lot_core", @@ -462,6 +578,23 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d7439c3735f405729d52c3fbbe4de140eaf938a1fe47d227c27f8254d4302a5" +[[package]] +name = "deranged" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946" + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "crypto-common", + "subtle", +] + [[package]] name = "dirs" version = "5.0.1" @@ -480,7 +613,7 @@ dependencies = [ "libc", "option-ext", "redox_users", - "windows-sys 0.48.0", + "windows-sys", ] [[package]] @@ -491,23 +624,29 @@ checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.16", + "syn 2.0.32", ] [[package]] -name = "ecow" -version = "0.1.1" +name = "downcast-rs" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5c5051925c54d9a42c8652313b5358a7432eed209466b443ed5220431243a14" +checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" + +[[package]] +name = "ecow" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d1990d053cf6edf3f030682dba3b0eb65ef01fabb2686072765d8a17d6728e8" dependencies = [ "serde", ] [[package]] name = "either" -version = "1.8.1" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" +checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" [[package]] name = "enum-ordinalize" @@ -519,7 +658,7 @@ dependencies = [ "num-traits", "proc-macro2", "quote", - "syn 2.0.16", + "syn 2.0.32", ] [[package]] @@ -531,6 +670,16 @@ dependencies = [ "log", ] +[[package]] +name = "env_proxy" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a5019be18538406a43b5419a5501461f0c8b49ea7dfda0cfc32f4e51fc44be1" +dependencies = [ + "log", + "url", +] + [[package]] name = "equivalent" version = "1.0.1" @@ -539,13 +688,13 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "errno" -version = "0.3.1" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" +checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" dependencies = [ "errno-dragonfly", "libc", - "windows-sys 0.48.0", + "windows-sys", ] [[package]] @@ -566,7 +715,7 @@ checksum = "d1e481eb11a482815d3e9d618db8c42a93207134662873809335a92327440c18" dependencies = [ "bit_field", "flume", - "half", + "half 2.2.1", "lebe", "miniz_oxide", "rayon-core", @@ -576,9 +725,9 @@ dependencies = [ [[package]] name = "fancy-regex" -version = "0.7.1" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d6b8560a05112eb52f04b00e5d3790c0dd75d9d980eb8a122fb23b92a623ccf" +checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2" dependencies = [ "bit-set", "regex", @@ -593,6 +742,12 @@ dependencies = [ "instant", ] +[[package]] +name = "fastrand" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" + [[package]] name = "fdeflate" version = "0.3.0" @@ -604,21 +759,21 @@ dependencies = [ [[package]] name = "filetime" -version = "0.2.21" +version = "0.2.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153" +checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.2.16", - "windows-sys 0.48.0", + "redox_syscall 0.3.5", + "windows-sys", ] [[package]] name = "flate2" -version = "1.0.26" +version = "1.0.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" +checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" dependencies = [ "crc32fast", "miniz_oxide", @@ -651,21 +806,21 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fontdb" -version = "0.13.1" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "237ff9f0813bbfc9de836016472e0c9ae7802f174a51594607e5f4ff334cb2f5" +checksum = "af8d8cbea8f21307d7e84bca254772981296f058a1d36b461bf4d83a7499fc9e" dependencies = [ "log", - "memmap2", "slotmap", - "ttf-parser", + "tinyvec", + "ttf-parser 0.19.2", ] [[package]] name = "form_urlencoded" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" +checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" dependencies = [ "percent-encoding", ] @@ -697,6 +852,16 @@ version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + [[package]] name = "getopts" version = "0.2.21" @@ -708,9 +873,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.9" +version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" +checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" dependencies = [ "cfg-if", "js-sys", @@ -729,6 +894,12 @@ dependencies = [ "weezl", ] +[[package]] +name = "half" +version = "1.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" + [[package]] name = "half" version = "2.2.1" @@ -752,9 +923,9 @@ checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" [[package]] name = "hayagriva" -version = "0.3.0" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8a21ff266f0b113789bbf4a27da16330315eebbd7df8e844f95d29f92ad556d" +checksum = "065e90e53aa502be868a307f58ca6b46e31143641e809047c689de75619d8cea" dependencies = [ "biblatex", "chrono", @@ -779,29 +950,38 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" [[package]] name = "hermit-abi" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" +checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" + +[[package]] +name = "hmac" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" +dependencies = [ + "digest", +] [[package]] name = "hypher" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "927f74d31cdbfd8de201340c0bc474c52c9145193ccd8885fcede14005591aad" +checksum = "723e315d77ea8aa1aedf53ad979ff0e763cfa2a1b3403248e427ae052f403cad" [[package]] name = "iai" version = "0.1.1" -source = "git+https://github.com/reknih/iai#3f0f92736408ebce6545808b98e0cb2aea89b7dd" +source = "git+https://github.com/typst/iai#3f0f92736408ebce6545808b98e0cb2aea89b7dd" dependencies = [ "cfg-if", ] [[package]] name = "iana-time-zone" -version = "0.1.56" +version = "0.1.57" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" +checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" dependencies = [ "android_system_properties", "core-foundation-sys", @@ -934,9 +1114,9 @@ dependencies = [ [[package]] name = "idna" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" +checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" dependencies = [ "unicode-bidi", "unicode-normalization", @@ -950,9 +1130,9 @@ checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed" [[package]] name = "image" -version = "0.24.6" +version = "0.24.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a" +checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" dependencies = [ "bytemuck", "byteorder", @@ -969,9 +1149,9 @@ dependencies = [ [[package]] name = "imagesize" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b72ad49b554c1728b1e83254a1b1565aea4161e28dabbfa171fc15fe62299caf" +checksum = "029d73f573d8e8d63e6d5020011d3255b28c3ba85d6cf870a07184ed23de9284" [[package]] name = "include_dir" @@ -1000,8 +1180,6 @@ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ "autocfg", "hashbrown 0.12.3", - "rayon", - "serde", ] [[package]] @@ -1012,13 +1190,21 @@ checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" dependencies = [ "equivalent", "hashbrown 0.14.0", + "rayon", + "serde", ] [[package]] -name = "inferno" -version = "0.11.15" +name = "indexmap-nostd" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fb7c1b80a1dfa604bb4a649a5c5aeef3d913f7c520cb42b40e534e8a61bcdfc" +checksum = "8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590" + +[[package]] +name = "inferno" +version = "0.11.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73c0fefcb6d409a6587c07515951495d482006f89a21daa0f2f783aa4fd5e027" dependencies = [ "ahash", "clap", @@ -1026,7 +1212,7 @@ dependencies = [ "crossbeam-utils", "dashmap", "env_logger", - "indexmap 1.9.3", + "indexmap 2.0.0", "is-terminal", "itoa", "log", @@ -1057,6 +1243,15 @@ dependencies = [ "libc", ] +[[package]] +name = "inout" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" +dependencies = [ + "generic-array", +] + [[package]] name = "instant" version = "0.1.12" @@ -1066,17 +1261,6 @@ dependencies = [ "cfg-if", ] -[[package]] -name = "io-lifetimes" -version = "1.0.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" -dependencies = [ - "hermit-abi", - "libc", - "windows-sys 0.48.0", -] - [[package]] name = "is-docker" version = "0.2.0" @@ -1088,14 +1272,13 @@ dependencies = [ [[package]] name = "is-terminal" -version = "0.4.7" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" +checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" dependencies = [ "hermit-abi", - "io-lifetimes", "rustix", - "windows-sys 0.48.0", + "windows-sys", ] [[package]] @@ -1118,19 +1301,19 @@ dependencies = [ ] [[package]] -name = "itertools" -version = "0.10.5" +name = "itoa" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" -dependencies = [ - "either", -] +checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" [[package]] -name = "itoa" -version = "1.0.6" +name = "jobserver" +version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" +checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" +dependencies = [ + "libc", +] [[package]] name = "jpeg-decoder" @@ -1143,18 +1326,18 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.63" +version = "0.3.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790" +checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" dependencies = [ "wasm-bindgen", ] [[package]] name = "kqueue" -version = "1.0.7" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c8fc60ba15bf51257aa9807a48a61013db043fcf3a78cb0d916e8e396dcad98" +checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c" dependencies = [ "kqueue-sys", "libc", @@ -1162,9 +1345,9 @@ dependencies = [ [[package]] name = "kqueue-sys" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587" +checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" dependencies = [ "bitflags 1.3.2", "libc", @@ -1193,24 +1376,24 @@ checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" [[package]] name = "libc" -version = "0.2.144" +version = "0.2.148" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" +checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b" [[package]] name = "libdeflate-sys" -version = "0.11.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb6784b6b84b67d71b4307963d456a9c7c29f9b47c658f533e598de369e34277" +checksum = "012437ac39c1e7d7ba12af3aceceb5c93149779aa17c2b1c483f33954957ddc8" dependencies = [ "cc", ] [[package]] name = "libdeflater" -version = "0.11.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8e285aa6a046fd338b2592c16bee148b2b00789138ed6b7bb56bb13d585050d" +checksum = "58b30f982ddb14aae2a24a7ed7b3d512d687c2483493f95de7a6d167942a19c3" dependencies = [ "libdeflate-sys", ] @@ -1238,9 +1421,9 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linux-raw-sys" -version = "0.3.7" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f" +checksum = "1a9bad9f94746442c783ca431b22403b519cd7fbeed0533fdd6328b2f2212128" [[package]] name = "lipsum" @@ -1260,9 +1443,9 @@ checksum = "3a04a5b2b6f54acba899926491d0a6c59d98012938ca2ab5befb281c034e8f94" [[package]] name = "lock_api" -version = "0.4.9" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" +checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" dependencies = [ "autocfg", "scopeguard", @@ -1270,24 +1453,32 @@ dependencies = [ [[package]] name = "log" -version = "0.4.17" +version = "0.4.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" +checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" + +[[package]] +name = "lzma-sys" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27" dependencies = [ - "cfg-if", + "cc", + "libc", + "pkg-config", ] [[package]] name = "memchr" -version = "2.5.0" +version = "2.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" +checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" [[package]] name = "memmap2" -version = "0.5.10" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327" +checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6" dependencies = [ "libc", ] @@ -1313,14 +1504,14 @@ dependencies = [ [[package]] name = "mio" -version = "0.8.6" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" +checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" dependencies = [ "libc", "log", "wasi", - "windows-sys 0.45.0", + "windows-sys", ] [[package]] @@ -1334,20 +1525,21 @@ dependencies = [ [[package]] name = "notify" -version = "5.2.0" +version = "6.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "729f63e1ca555a43fe3efa4f3efdf4801c479da85b432242a7b726f353c88486" +checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.4.0", "crossbeam-channel", "filetime", "fsevent-sys", "inotify", "kqueue", "libc", + "log", "mio", "walkdir", - "windows-sys 0.45.0", + "windows-sys", ] [[package]] @@ -1362,9 +1554,9 @@ dependencies = [ [[package]] name = "num-bigint" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" +checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" dependencies = [ "autocfg", "num-integer", @@ -1404,9 +1596,9 @@ dependencies = [ [[package]] name = "num-traits" -version = "0.2.15" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" +checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" dependencies = [ "autocfg", "libm", @@ -1439,17 +1631,18 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.17.1" +version = "1.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" +checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "open" -version = "4.1.0" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d16814a067484415fda653868c9be0ac5f2abd2ef5d951082a5f2fe1b3662944" +checksum = "cfabf1927dce4d6fdf563d63328a0a506101ced3ec780ca2135747336c98cef8" dependencies = [ "is-wsl", + "libc", "pathdiff", ] @@ -1468,15 +1661,12 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "oxipng" version = "8.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "630638e107fb436644c300e781d3f17e1b04656138ba0d40564be4be3b06db32" +source = "git+https://github.com/typst/oxipng?rev=b8ec65b#b8ec65b3ca42dde33c85149b6e402e891527f802" dependencies = [ "bitvec", "crossbeam-channel", "filetime", - "image", - "indexmap 1.9.3", - "itertools", + "indexmap 2.0.0", "libdeflater", "log", "rayon", @@ -1488,22 +1678,33 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.7" +version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" +checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.2.16", + "redox_syscall 0.3.5", "smallvec", - "windows-sys 0.45.0", + "windows-targets", +] + +[[package]] +name = "password-hash" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" +dependencies = [ + "base64ct", + "rand_core", + "subtle", ] [[package]] name = "paste" -version = "1.0.12" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" +checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" [[package]] name = "pathdiff" @@ -1512,10 +1713,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" [[package]] -name = "pdf-writer" -version = "0.8.0" +name = "pbkdf2" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86af2eb3faa4614bc7fda8bd578c25e76a17ff3b1577be034b81e0c20527e204" +checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" +dependencies = [ + "digest", + "hmac", + "password-hash", + "sha2", +] + +[[package]] +name = "pdf-writer" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d77bc47c8968aa63f86a7e6693e270a6cbd1e3b784c364f1711a0ddecc71447" dependencies = [ "bitflags 1.3.2", "itoa", @@ -1524,24 +1737,24 @@ dependencies = [ [[package]] name = "percent-encoding" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" +checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" [[package]] name = "phf" -version = "0.11.1" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" +checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" dependencies = [ "phf_shared", ] [[package]] name = "phf_shared" -version = "0.11.1" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" +checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" dependencies = [ "siphasher", ] @@ -1554,58 +1767,64 @@ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" [[package]] name = "pin-project" -version = "1.1.0" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c95a7476719eab1e366eaf73d0260af3021184f18177925b07f54b30089ceead" +checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.0" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39407670928234ebc5e6e580247dd567ad73a3578460c5990f9503df207e8f07" +checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" dependencies = [ "proc-macro2", "quote", - "syn 2.0.16", + "syn 2.0.32", ] [[package]] name = "pin-project-lite" -version = "0.2.9" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" +checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" [[package]] name = "pixglyph" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9eefadd393715fe315c8cdcd587f893b818a6dfe4f6f9faeb44b764c7c38fd8b" +checksum = "f67591f21f6668e63c1cd85adab066ac8a92bc7b962668dd8042197a6e4b8f8f" dependencies = [ - "ttf-parser", + "ttf-parser 0.19.2", ] [[package]] -name = "plist" -version = "1.4.3" +name = "pkg-config" +version = "0.3.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bd9647b268a3d3e14ff09c23201133a62589c658db02bb7388c7246aafe0590" +checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" + +[[package]] +name = "plist" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bdc0001cfea3db57a2e24bc0d818e9e20e554b5f97fabb9bc231dc240269ae06" dependencies = [ "base64", "indexmap 1.9.3", "line-wrap", - "quick-xml 0.28.2", + "quick-xml 0.29.0", "serde", "time", ] [[package]] name = "png" -version = "0.17.8" +version = "0.17.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aaeebc51f9e7d2c150d3f3bfeb667f2aa985db5ef1e3d212847bdedb488beeaa" +checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64" dependencies = [ "bitflags 1.3.2", "crc32fast", @@ -1616,9 +1835,9 @@ dependencies = [ [[package]] name = "postcard" -version = "1.0.4" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfa512cd0d087cc9f99ad30a1bf64795b67871edbead083ffc3a4dfafa59aa00" +checksum = "d534c6e61df1c7166e636ca612d9820d486fe96ddad37f7abc671517b297488e" dependencies = [ "cobs", "serde", @@ -1632,9 +1851,9 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] name = "proc-macro2" -version = "1.0.58" +version = "1.0.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa1fb82fc0c281dd9671101b66b771ebbe1eaf967b96ac8740dcba4b70005ca8" +checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" dependencies = [ "unicode-ident", ] @@ -1650,9 +1869,9 @@ dependencies = [ [[package]] name = "pulldown-cmark" -version = "0.9.2" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63" +checksum = "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998" dependencies = [ "bitflags 1.3.2", "getopts", @@ -1680,18 +1899,18 @@ dependencies = [ [[package]] name = "quick-xml" -version = "0.28.2" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1" +checksum = "81b9228215d82c7b61490fec1de287136b5de6f5700f6e58ea9ad61a7964ca51" dependencies = [ "memchr", ] [[package]] name = "quote" -version = "1.0.27" +version = "1.0.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500" +checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" dependencies = [ "proc-macro2", ] @@ -1786,32 +2005,38 @@ dependencies = [ [[package]] name = "regex" -version = "1.8.1" +version = "1.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" +checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47" dependencies = [ "aho-corasick", "memchr", - "regex-syntax 0.7.1", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", ] [[package]] name = "regex-syntax" -version = "0.6.29" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" - -[[package]] -name = "regex-syntax" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" +checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" [[package]] name = "resvg" -version = "0.32.0" +version = "0.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "142e83d8ae8c8c639f304698a5567b229ba65caba867bf4387bbc0ae158827cf" +checksum = "b6554f47c38eca56827eea7f285c2a3018b4e12e0e195cc105833c008be338f1" dependencies = [ "gif", "jpeg-decoder", @@ -1854,19 +2079,6 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316" -[[package]] -name = "rosvgtree" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad747e7384940e7bf33b15ba433b7bad9f44c0c6d5287a67c2cb22cd1743d497" -dependencies = [ - "log", - "roxmltree", - "simplecss", - "siphasher", - "svgtypes", -] - [[package]] name = "roxmltree" version = "0.18.0" @@ -1893,35 +2105,53 @@ dependencies = [ [[package]] name = "rustix" -version = "0.37.19" +version = "0.38.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" +checksum = "d7db8590df6dfcd144d22afd1b83b36c21a18d7cbc1dc4bb5295a8712e9eb662" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.4.0", "errno", - "io-lifetimes", "libc", "linux-raw-sys", - "windows-sys 0.48.0", + "windows-sys", ] [[package]] name = "rustls" -version = "0.21.2" +version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e32ca28af694bc1bbf399c33a516dbdf1c90090b8ab23c2bc24f834aa2247f5f" +checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8" dependencies = [ "log", "ring", - "rustls-webpki", + "rustls-webpki 0.101.5", "sct", ] [[package]] -name = "rustls-webpki" -version = "0.100.1" +name = "rustls-pemfile" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b" +checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" +dependencies = [ + "base64", +] + +[[package]] +name = "rustls-webpki" +version = "0.100.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f6a5fc258f1c1276dfe3016516945546e2d5383911efc0fc4f1cdc5df3a4ae3" +dependencies = [ + "ring", + "untrusted", +] + +[[package]] +name = "rustls-webpki" +version = "0.101.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45a27e3b59326c16e23d30aeb7a36a24cc0d29e71d68ff611cdfb4a01d013bed" dependencies = [ "ring", "untrusted", @@ -1929,9 +2159,9 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.12" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" +checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" [[package]] name = "rustybuzz" @@ -1942,7 +2172,7 @@ dependencies = [ "bitflags 1.3.2", "bytemuck", "smallvec", - "ttf-parser", + "ttf-parser 0.18.1", "unicode-bidi-mirroring", "unicode-ccc", "unicode-general-category", @@ -1951,9 +2181,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.13" +version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" +checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" [[package]] name = "safemem" @@ -1972,9 +2202,9 @@ dependencies = [ [[package]] name = "scopeguard" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "sct" @@ -1986,37 +2216,47 @@ dependencies = [ "untrusted", ] +[[package]] +name = "self-replace" +version = "1.3.5" +source = "git+https://github.com/typst/self-replace#2e6d5e4808bba73b713fd85cf5616b7d846143c2" +dependencies = [ + "fastrand 1.9.0", + "tempfile", + "windows-sys", +] + [[package]] name = "semver" -version = "1.0.17" +version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" +checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" [[package]] name = "serde" -version = "1.0.163" +version = "1.0.188" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" +checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.163" +version = "1.0.188" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" +checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.16", + "syn 2.0.32", ] [[package]] name = "serde_json" -version = "1.0.96" +version = "1.0.106" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" +checksum = "2cc66a619ed80bf7a0f6b17dd063a84b88f6dea1813737cf469aef1d081142c2" dependencies = [ "itoa", "ryu", @@ -2025,9 +2265,9 @@ dependencies = [ [[package]] name = "serde_spanned" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93107647184f6027e3b7dcb2e11034cf95ffa1e3a682c67951963ac69c1c007d" +checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" dependencies = [ "serde", ] @@ -2057,6 +2297,28 @@ dependencies = [ "unsafe-libyaml", ] +[[package]] +name = "sha1" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "sha2" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + [[package]] name = "sharded-slab" version = "0.1.4" @@ -2068,9 +2330,9 @@ dependencies = [ [[package]] name = "simd-adler32" -version = "0.3.5" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "238abfbb77c1915110ad968465608b68e869e0772622c9656714e73e5a1a522f" +checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" [[package]] name = "simplecss" @@ -2083,9 +2345,9 @@ dependencies = [ [[package]] name = "siphasher" -version = "0.3.10" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" +checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" [[package]] name = "slotmap" @@ -2098,9 +2360,9 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.10.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" +checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" [[package]] name = "spin" @@ -2144,9 +2406,9 @@ checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb" [[package]] name = "strict-num" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9df65f20698aeed245efdde3628a6b559ea1239bbb871af1b6e3b58c413b2bd1" +checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731" dependencies = [ "float-cmp", ] @@ -2186,10 +2448,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09eab8a83bff89ba2200bd4c59be45c7c787f988431b936099a5a266c957f2f9" [[package]] -name = "svg2pdf" -version = "0.6.0" +name = "subtle" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c966e59fd4afd959edcc226687f751a7d05c94d0477cca1a4c2b15a7220f2b24" +checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" + +[[package]] +name = "svg2pdf" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c267ce43e1b46631a121481ae2d7dc00dda163d486f0f600be772bbe24d6037" dependencies = [ "image", "miniz_oxide", @@ -2220,9 +2488,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.16" +version = "2.0.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01" +checksum = "239814284fd6f1a4ffe4ca893952cdd93c224b6a1571c9a9eadd670295c0c9e2" dependencies = [ "proc-macro2", "quote", @@ -2243,21 +2511,19 @@ dependencies = [ [[package]] name = "syntect" -version = "5.0.0" +version = "5.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6c454c27d9d7d9a84c7803aaa3c50cd088d2906fe3c6e42da3209aa623576a8" +checksum = "e02b4b303bf8d08bfeb0445cba5068a3d306b6baece1d5582171a9bf49188f91" dependencies = [ "bincode", "bitflags 1.3.2", "fancy-regex", "flate2", "fnv", - "lazy_static", "once_cell", "plist", - "regex-syntax 0.6.29", + "regex-syntax", "serde", - "serde_derive", "serde_json", "thiserror", "walkdir", @@ -2272,9 +2538,9 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tar" -version = "0.4.38" +version = "0.4.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" +checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb" dependencies = [ "filetime", "libc", @@ -2283,44 +2549,44 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.5.0" +version = "3.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" +checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" dependencies = [ "cfg-if", - "fastrand", + "fastrand 2.0.0", "redox_syscall 0.3.5", "rustix", - "windows-sys 0.45.0", + "windows-sys", ] [[package]] name = "termcolor" -version = "1.1.3" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" +checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" dependencies = [ "winapi-util", ] [[package]] name = "thiserror" -version = "1.0.40" +version = "1.0.48" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" +checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.40" +version = "1.0.48" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" +checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35" dependencies = [ "proc-macro2", "quote", - "syn 2.0.16", + "syn 2.0.32", ] [[package]] @@ -2335,9 +2601,9 @@ dependencies = [ [[package]] name = "tiff" -version = "0.8.1" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7449334f9ff2baf290d55d73983a7d6fa15e01198faef72af07e2a8db851e471" +checksum = "6d172b0f4d3fba17ba89811858b9d3d97f928aece846475bbda076ca46736211" dependencies = [ "flate2", "jpeg-decoder", @@ -2346,10 +2612,11 @@ dependencies = [ [[package]] name = "time" -version = "0.3.21" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc" +checksum = "17f6bb557fd245c28e6411aa56b6403c689ad95061f50e4be16c274e70a17e48" dependencies = [ + "deranged", "itoa", "serde", "time-core", @@ -2364,18 +2631,18 @@ checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" [[package]] name = "time-macros" -version = "0.2.9" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b" +checksum = "1a942f44339478ef67935ab2bbaec2fb0322496cf3cbe84b261e06ac3814c572" dependencies = [ "time-core", ] [[package]] name = "tiny-skia" -version = "0.9.1" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce2986c82f77818c7b9144c70818fdde98db15308e329ae2f7204d767808fd3c" +checksum = "7db11798945fa5c3e5490c794ccca7c6de86d3afdd54b4eb324109939c6f37bc" dependencies = [ "arrayref", "arrayvec", @@ -2388,9 +2655,9 @@ dependencies = [ [[package]] name = "tiny-skia-path" -version = "0.9.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7acb0ccda1ac91084353a56d0b69b0e29c311fd809d2088b1ed2f9ae1841c47" +checksum = "2f60aa35c89ac2687ace1a2556eaaea68e8c0d47408a2e3e7f5c98a489e7281c" dependencies = [ "arrayref", "bytemuck", @@ -2425,9 +2692,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "toml" -version = "0.7.4" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6135d499e69981f9ff0ef2167955a5333c35e36f6937d382974566b3d5b94ec" +checksum = "c226a7bba6d859b63c92c4b4fe69c5b6b72d0cb897dbc8e6012298e6154cb56e" dependencies = [ "serde", "serde_spanned", @@ -2437,20 +2704,20 @@ dependencies = [ [[package]] name = "toml_datetime" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a76a9312f5ba4c2dec6b9161fdf25d87ad8a09256ccea5a556fef03c706a10f" +checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" dependencies = [ "serde", ] [[package]] name = "toml_edit" -version = "0.19.9" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92d964908cec0d030b812013af25a0e57fddfadb1e066ecc6681d86253129d4f" +checksum = "8ff63e60a958cefbb518ae1fd6566af80d9d4be430a33f3723dfc47d1d411d95" dependencies = [ - "indexmap 1.9.3", + "indexmap 2.0.0", "serde", "serde_spanned", "toml_datetime", @@ -2471,13 +2738,13 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.24" +version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74" +checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" dependencies = [ "proc-macro2", "quote", - "syn 2.0.16", + "syn 2.0.32", ] [[package]] @@ -2542,17 +2809,30 @@ version = "0.18.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0609f771ad9c6155384897e1df4d948e692667cc0588548b68eb44d052b27633" +[[package]] +name = "ttf-parser" +version = "0.19.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49d64318d8311fc2668e48b63969f4343e0a85c4a109aa8460d6672e364b8bd1" + [[package]] name = "typed-arena" version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" +[[package]] +name = "typenum" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" + [[package]] name = "typst" -version = "0.7.0" +version = "0.8.0" dependencies = [ - "bitflags 2.3.1", + "base64", + "bitflags 2.4.0", "bytemuck", "comemo", "ecow", @@ -2560,7 +2840,7 @@ dependencies = [ "fontdb", "if_chain", "image", - "indexmap 1.9.3", + "indexmap 2.0.0", "log", "miniz_oxide", "oklab", @@ -2580,21 +2860,24 @@ dependencies = [ "tiny-skia", "toml", "tracing", - "ttf-parser", + "ttf-parser 0.19.2", "typst-macros", "typst-syntax", - "unicode-general-category", "unicode-ident", "unicode-math-class", + "unicode-properties", "unicode-segmentation", "unscanny", "usvg", + "wasmi", + "xmlparser", + "xmlwriter", "xmp-writer", ] [[package]] name = "typst-cli" -version = "0.7.0" +version = "0.8.0" dependencies = [ "chrono", "clap", @@ -2603,13 +2886,20 @@ dependencies = [ "codespan-reporting", "comemo", "dirs", + "ecow", + "env_proxy", "flate2", "inferno", "memmap2", "notify", "once_cell", "open", + "pathdiff", + "rustls", + "rustls-pemfile", "same-file", + "self-replace", + "semver", "serde", "serde_json", "serde_yaml 0.9.25", @@ -2624,19 +2914,22 @@ dependencies = [ "typst-library", "ureq", "walkdir", + "xz2", + "zip", ] [[package]] name = "typst-docs" -version = "0.7.0" +version = "0.8.0" dependencies = [ "comemo", + "ecow", "heck", "include_dir", "once_cell", "pulldown-cmark", "serde", - "serde_yaml 0.8.26", + "serde_yaml 0.9.25", "syntect", "typed-arena", "typst", @@ -2648,10 +2941,11 @@ dependencies = [ [[package]] name = "typst-library" -version = "0.7.0" +version = "0.8.0" dependencies = [ "az", "chinese-number", + "ciborium", "comemo", "csv", "ecow", @@ -2669,13 +2963,13 @@ dependencies = [ "roxmltree", "rustybuzz", "serde_json", - "serde_yaml 0.8.26", + "serde_yaml 0.9.25", "smallvec", "syntect", "time", "toml", "tracing", - "ttf-parser", + "ttf-parser 0.19.2", "typed-arena", "typst", "unicode-bidi", @@ -2686,17 +2980,17 @@ dependencies = [ [[package]] name = "typst-macros" -version = "0.7.0" +version = "0.8.0" dependencies = [ "heck", "proc-macro2", "quote", - "syn 2.0.16", + "syn 2.0.32", ] [[package]] name = "typst-syntax" -version = "0.7.0" +version = "0.8.0" dependencies = [ "comemo", "ecow", @@ -2711,16 +3005,17 @@ dependencies = [ [[package]] name = "typst-tests" -version = "0.7.0" +version = "0.8.0" dependencies = [ "clap", "comemo", + "ecow", "iai", "once_cell", "oxipng", "rayon", "tiny-skia", - "ttf-parser", + "ttf-parser 0.19.2", "typst", "typst-library", "unscanny", @@ -2747,9 +3042,9 @@ dependencies = [ [[package]] name = "unicase" -version = "2.6.0" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" +checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" dependencies = [ "version_check", ] @@ -2780,9 +3075,9 @@ checksum = "2281c8c1d221438e373249e065ca4989c4c36952c211ff21a0ee91c44a3869e7" [[package]] name = "unicode-ident" -version = "1.0.8" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" [[package]] name = "unicode-math-class" @@ -2799,6 +3094,12 @@ dependencies = [ "tinyvec", ] +[[package]] +name = "unicode-properties" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7f91c8b21fbbaa18853c3d0801c78f4fc94cdb976699bb03e832e75f7fd22f0" + [[package]] name = "unicode-script" version = "0.5.5" @@ -2864,16 +3165,18 @@ dependencies = [ "log", "once_cell", "rustls", - "rustls-webpki", + "rustls-webpki 0.100.3", + "serde", + "serde_json", "url", "webpki-roots", ] [[package]] name = "url" -version = "2.3.1" +version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" +checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" dependencies = [ "form_urlencoded", "idna", @@ -2882,9 +3185,9 @@ dependencies = [ [[package]] name = "usvg" -version = "0.32.0" +version = "0.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b44e14b7678bcc5947b397991432d0c4e02a103958a0ed5e1b9b961ddd08b21" +checksum = "14d09ddfb0d93bf84824c09336d32e42f80961a9d1680832eb24fdf249ce11e6" dependencies = [ "base64", "log", @@ -2897,26 +3200,27 @@ dependencies = [ [[package]] name = "usvg-parser" -version = "0.32.0" +version = "0.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90c8251d965c2882a636ffcc054340b1f13a6bce68779cb5b2084d8ffc2535be" +checksum = "d19bf93d230813599927d88557014e0908ecc3531666d47c634c6838bc8db408" dependencies = [ "data-url", "flate2", "imagesize", "kurbo", "log", - "rosvgtree", - "strict-num", + "roxmltree", + "simplecss", + "siphasher", "svgtypes", "usvg-tree", ] [[package]] name = "usvg-text-layout" -version = "0.32.0" +version = "0.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c4fed019d1af07bfe0f3bac13d120d7b51bc65b38cb24809cf4ed0b8b631138" +checksum = "035044604e89652c0a2959b8b356946997a52649ba6cade45928c2842376feb4" dependencies = [ "fontdb", "kurbo", @@ -2930,14 +3234,14 @@ dependencies = [ [[package]] name = "usvg-tree" -version = "0.32.0" +version = "0.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7371265c467cdae0ccc3655e2e3f310c695fb9f717c0d25187bf3b333f7b5159" +checksum = "7939a7e4ed21cadb5d311d6339730681c3e24c3e81d60065be80e485d3fc8b92" dependencies = [ - "kurbo", "rctree", "strict-num", "svgtypes", + "tiny-skia-path", ] [[package]] @@ -2966,9 +3270,9 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "walkdir" -version = "2.3.3" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" +checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" dependencies = [ "same-file", "winapi-util", @@ -2982,9 +3286,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.86" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73" +checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" dependencies = [ "cfg-if", "wasm-bindgen-macro", @@ -2992,24 +3296,24 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.86" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb" +checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" dependencies = [ "bumpalo", "log", "once_cell", "proc-macro2", "quote", - "syn 2.0.16", + "syn 2.0.32", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.86" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258" +checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -3017,28 +3321,68 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.86" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8" +checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.16", + "syn 2.0.32", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.86" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93" +checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" + +[[package]] +name = "wasmi" +version = "0.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f341edb80021141d4ae6468cbeefc50798716a347d4085c3811900049ea8945" +dependencies = [ + "smallvec", + "spin 0.9.8", + "wasmi_arena", + "wasmi_core", + "wasmparser-nostd", +] + +[[package]] +name = "wasmi_arena" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "401c1f35e413fac1846d4843745589d9ec678977ab35a384db8ae7830525d468" + +[[package]] +name = "wasmi_core" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dcf1a7db34bff95b85c261002720c00c3a6168256dcb93041d3fa2054d19856a" +dependencies = [ + "downcast-rs", + "libm", + "num-traits", + "paste", +] + +[[package]] +name = "wasmparser-nostd" +version = "0.100.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9157cab83003221bfd385833ab587a039f5d6fa7304854042ba358a3b09e0724" +dependencies = [ + "indexmap-nostd", +] [[package]] name = "web-sys" -version = "0.3.63" +version = "0.3.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2" +checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" dependencies = [ "js-sys", "wasm-bindgen", @@ -3050,7 +3394,7 @@ version = "0.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338" dependencies = [ - "rustls-webpki", + "rustls-webpki 0.100.3", ] [[package]] @@ -3096,16 +3440,7 @@ version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" dependencies = [ - "windows-targets 0.48.0", -] - -[[package]] -name = "windows-sys" -version = "0.45.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" -dependencies = [ - "windows-targets 0.42.2", + "windows-targets", ] [[package]] @@ -3114,128 +3449,71 @@ version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" dependencies = [ - "windows-targets 0.48.0", + "windows-targets", ] [[package]] name = "windows-targets" -version = "0.42.2" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" dependencies = [ - "windows_aarch64_gnullvm 0.42.2", - "windows_aarch64_msvc 0.42.2", - "windows_i686_gnu 0.42.2", - "windows_i686_msvc 0.42.2", - "windows_x86_64_gnu 0.42.2", - "windows_x86_64_gnullvm 0.42.2", - "windows_x86_64_msvc 0.42.2", -] - -[[package]] -name = "windows-targets" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" -dependencies = [ - "windows_aarch64_gnullvm 0.48.0", - "windows_aarch64_msvc 0.48.0", - "windows_i686_gnu 0.48.0", - "windows_i686_msvc 0.48.0", - "windows_x86_64_gnu 0.48.0", - "windows_x86_64_gnullvm 0.48.0", - "windows_x86_64_msvc 0.48.0", + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", ] [[package]] name = "windows_aarch64_gnullvm" -version = "0.42.2" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" [[package]] name = "windows_aarch64_msvc" -version = "0.42.2" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" [[package]] name = "windows_i686_gnu" -version = "0.42.2" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" - -[[package]] -name = "windows_i686_gnu" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" [[package]] name = "windows_i686_msvc" -version = "0.42.2" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" - -[[package]] -name = "windows_i686_msvc" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" [[package]] name = "windows_x86_64_gnu" -version = "0.42.2" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" [[package]] name = "windows_x86_64_gnullvm" -version = "0.42.2" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" [[package]] name = "windows_x86_64_msvc" -version = "0.42.2" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "winnow" -version = "0.4.6" +version = "0.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699" +checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc" dependencies = [ "memchr", ] @@ -3257,9 +3535,9 @@ dependencies = [ [[package]] name = "xattr" -version = "0.2.3" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" +checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985" dependencies = [ "libc", ] @@ -3282,6 +3560,15 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9fd742bbbb930fc972b28bf66b7546dfbc7bb9a4c7924299df0ae6a5641fcadf" +[[package]] +name = "xz2" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2" +dependencies = [ + "lzma-sys", +] + [[package]] name = "yaml-front-matter" version = "0.1.0" @@ -3370,6 +3657,26 @@ dependencies = [ "synstructure", ] +[[package]] +name = "zip" +version = "0.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" +dependencies = [ + "aes", + "byteorder", + "bzip2", + "constant_time_eq", + "crc32fast", + "crossbeam-utils", + "flate2", + "hmac", + "pbkdf2", + "sha1", + "time", + "zstd", +] + [[package]] name = "zopfli" version = "0.7.4" @@ -3382,6 +3689,36 @@ dependencies = [ "typed-arena", ] +[[package]] +name = "zstd" +version = "0.11.2+zstd.1.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" +dependencies = [ + "zstd-safe", +] + +[[package]] +name = "zstd-safe" +version = "5.0.2+zstd.1.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" +dependencies = [ + "libc", + "zstd-sys", +] + +[[package]] +name = "zstd-sys" +version = "2.0.8+zstd.1.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c" +dependencies = [ + "cc", + "libc", + "pkg-config", +] + [[package]] name = "zune-inflate" version = "0.2.54" diff --git a/pkgs/tools/typesetting/typst/default.nix b/pkgs/tools/typesetting/typst/default.nix index 66b0160c3632..1d9e95f5025a 100644 --- a/pkgs/tools/typesetting/typst/default.nix +++ b/pkgs/tools/typesetting/typst/default.nix @@ -8,19 +8,21 @@ rustPlatform.buildRustPackage rec { pname = "typst"; - version = "0.7.0"; + version = "0.8.0"; src = fetchFromGitHub { owner = "typst"; repo = "typst"; rev = "v${version}"; - hash = "sha256-yrtOmlFAKOqAmhCP7n0HQCOQpU3DWyms5foCdUb9QTg="; + hash = "sha256-q2b/PoNwpzarJbIPzokYgZRD2/Oe/XB40C4VXdwL/NA="; }; cargoLock = { lockFile = ./Cargo.lock; outputHashes = { "iai-0.1.1" = "sha256-EdNzCPht5chg7uF9O8CtPWR/bzSYyfYIXNdLltqdlR0="; + "oxipng-8.0.0" = "sha256-KIbSsQEjwJ12DxYpBTUD1g9CqJqCfSAmnFcSTiGIoio="; + "self-replace-1.3.5" = "sha256-N57nmLHgxhVR1CDtkgjYwpo1ypdGyVpjJY7vzuncxDc="; }; }; From 43a292161a1f477e8dee5dbcc5bd54699f4a5eac Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Wed, 13 Sep 2023 18:30:11 +0200 Subject: [PATCH 306/346] miriway: unstable-2023-07-27 -> unstable-2023-08-30 --- pkgs/applications/window-managers/miriway/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/window-managers/miriway/default.nix b/pkgs/applications/window-managers/miriway/default.nix index 05c4720a4ecc..209a2250f032 100644 --- a/pkgs/applications/window-managers/miriway/default.nix +++ b/pkgs/applications/window-managers/miriway/default.nix @@ -9,15 +9,15 @@ , libxkbcommon }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "miriway"; - version = "unstable-2023-07-27"; + version = "unstable-2023-08-30"; src = fetchFromGitHub { owner = "Miriway"; repo = "Miriway"; - rev = "bfa3bdea552a9b36ba5828e667e847d05a7310fc"; - hash = "sha256-gMQqiR7zhwUJ/zw61XuBXz1/F7EuQIM1A23ZQ5T38Z8="; + rev = "2c9a0599e1a9b37f2a73a245eacce307a3e5b883"; + hash = "sha256-VCLl4GyUmzcC/OEfxXV0bI/6lxLP9eIAAOIjANEI1d8="; }; strictDeps = true; @@ -68,4 +68,4 @@ stdenv.mkDerivation rec { platforms = platforms.linux; maintainers = with maintainers; [ OPNA2608 ]; }; -} +}) From 48c121b74faf5cea9da4ccb6bb467f0a7abed356 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Sep 2023 18:36:58 +0200 Subject: [PATCH 307/346] exploitdb: 2023-09-12 -> 2023-09-13 Diff: https://gitlab.com/exploit-database/exploitdb/-/compare/refs/tags/2023-09-12...2023-09-13 --- pkgs/tools/security/exploitdb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/exploitdb/default.nix b/pkgs/tools/security/exploitdb/default.nix index 6de4cbd7eff8..c9f34760f4db 100644 --- a/pkgs/tools/security/exploitdb/default.nix +++ b/pkgs/tools/security/exploitdb/default.nix @@ -6,13 +6,13 @@ stdenv.mkDerivation rec { pname = "exploitdb"; - version = "2023-09-12"; + version = "2023-09-13"; src = fetchFromGitLab { owner = "exploit-database"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-XMOXBlCld1YXymRMOMIeQgszn8L6rMCZWPHlLtIAlRg="; + hash = "sha256-Dv7LcKzZi5uvEiYmFk/lrOd1l1VknCvjz7cV3K2UfeM="; }; nativeBuildInputs = [ From dbc81387f0866faa6dae9fdf61cfc4dc92b78fc8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Sep 2023 16:37:54 +0000 Subject: [PATCH 308/346] python311Packages.pyenphase: 1.11.0 -> 1.11.4 Diff: https://github.com/pyenphase/pyenphase/compare/refs/tags/v1.11.0...v1.11.4 Changelog: https://github.com/pyenphase/pyenphase/blob/1.11.4/CHANGELOG.md --- pkgs/development/python-modules/pyenphase/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyenphase/default.nix b/pkgs/development/python-modules/pyenphase/default.nix index cd5ac622c0b7..ca106a91fac4 100644 --- a/pkgs/development/python-modules/pyenphase/default.nix +++ b/pkgs/development/python-modules/pyenphase/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "pyenphase"; - version = "1.11.0"; + version = "1.11.4"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "pyenphase"; repo = "pyenphase"; rev = "refs/tags/v${version}"; - hash = "sha256-b2rT7H9FmeM5RD1TZhXqyqgvBdTWwZHg7Hui5OpXAX8="; + hash = "sha256-ZFK7Pyn8YsxdxPICtDXx2L+3t/xG3x2HC+F0plDbvHk="; }; postPatch = '' From b7500e4e96d0ee4017b2a4fddede27fe6470dac5 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Sep 2023 16:39:04 +0000 Subject: [PATCH 309/346] python311Packages.pynetgear: 0.10.9 -> 0.10.10 Diff: https://github.com/MatMaul/pynetgear/compare/refs/tags/0.10.9...0.10.10 Changelog: https://github.com/MatMaul/pynetgear/releases/tag/0.10.10 --- pkgs/development/python-modules/pynetgear/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pynetgear/default.nix b/pkgs/development/python-modules/pynetgear/default.nix index f941d9fe9d12..1a20de636537 100644 --- a/pkgs/development/python-modules/pynetgear/default.nix +++ b/pkgs/development/python-modules/pynetgear/default.nix @@ -7,7 +7,7 @@ buildPythonPackage rec { pname = "pynetgear"; - version = "0.10.9"; + version = "0.10.10"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -16,7 +16,7 @@ buildPythonPackage rec { owner = "MatMaul"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-VYiXFdUD4q6d7KraA26SFV29k53AoluCj7ACMgNQcLU="; + hash = "sha256-5Lj2cK/SOGgaPu8dI9X3Leg4dPAY7tdIHCzFnNaube8="; }; propagatedBuildInputs = [ From 8554ca9613458d43adfbbcedd2072f21902fa3a6 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Sep 2023 18:40:50 +0200 Subject: [PATCH 310/346] python311Packages.sensirion-ble: 0.1.0 -> 0.1.1 Diff: https://github.com/akx/sensirion-ble/compare/refs/tags/v0.1.0...v0.1.1 --- pkgs/development/python-modules/sensirion-ble/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/sensirion-ble/default.nix b/pkgs/development/python-modules/sensirion-ble/default.nix index 68e9f2302b60..86f81f67814b 100644 --- a/pkgs/development/python-modules/sensirion-ble/default.nix +++ b/pkgs/development/python-modules/sensirion-ble/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "sensirion-ble"; - version = "0.1.0"; + version = "0.1.1"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "akx"; repo = "sensirion-ble"; rev = "refs/tags/v${version}"; - hash = "sha256-7l76/Bci1ztt2CfwytLOySK6IL8IDijpB0AYhksRP7o="; + hash = "sha256-VeUfrQ/1Hqs9yueUKcv/ZpCDEEy84VDcZpuTT4fXSGw="; }; postPatch = '' From 846bad251d4a773a8b2812ac40bb5c1a8c5f5212 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 13 Sep 2023 09:41:53 -0700 Subject: [PATCH 311/346] python310Packages.igraph: 0.10.7 -> 0.10.8 Diff: https://github.com/igraph/python-igraph/compare/refs/tags/0.10.7...0.10.8 Changelog: https://github.com/igraph/python-igraph/blob/refs/tags/0.10.8/CHANGELOG.md --- pkgs/development/python-modules/igraph/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/igraph/default.nix b/pkgs/development/python-modules/igraph/default.nix index 3248ad1ed246..f73b77699c91 100644 --- a/pkgs/development/python-modules/igraph/default.nix +++ b/pkgs/development/python-modules/igraph/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "igraph"; - version = "0.10.7"; + version = "0.10.8"; disabled = pythonOlder "3.7"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "igraph"; repo = "python-igraph"; rev = "refs/tags/${version}"; - hash = "sha256-BdMybNo2CiC0Yv9jfiFVuiwBRy4eMtz654JRvaPph9E="; + hash = "sha256-EpWkFKN8fhKkzR2g9Uv0/LxSwi4TkraH5rjde7yR+C8="; }; postPatch = '' From 27d24b86e1d9c261270d3b6530b7b337b7a8e4cc Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Sep 2023 18:42:26 +0200 Subject: [PATCH 312/346] python311Packages.yalexs: 1.8.0 -> 1.9.0 Diff: https://github.com/bdraco/yalexs/compare/refs/tags/v1.8.0...v1.9.0 Changelog: https://github.com/bdraco/yalexs/releases/tag/v1.9.0 --- pkgs/development/python-modules/yalexs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/yalexs/default.nix b/pkgs/development/python-modules/yalexs/default.nix index 98e7cf7e9a85..ed411bc3a7de 100644 --- a/pkgs/development/python-modules/yalexs/default.nix +++ b/pkgs/development/python-modules/yalexs/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "yalexs"; - version = "1.8.0"; + version = "1.9.0"; format = "setuptools"; disabled = pythonOlder "3.9"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "bdraco"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-ZxZIv69HooX6SUIdrtAuhOEVPN7E+E/AZ138XmzIYIE="; + hash = "sha256-9rXAFMFpKF+oIKXSFLVCLDfdpMF837xRIEe3aH7ditc="; }; propagatedBuildInputs = [ From c3772a501fe1b4c1e0aed7da11a56676f261a262 Mon Sep 17 00:00:00 2001 From: renesat Date: Sat, 15 Jul 2023 08:50:05 +0200 Subject: [PATCH 313/346] math-preview: init at 5.1.1 --- pkgs/tools/text/math-review/default.nix | 33 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 pkgs/tools/text/math-review/default.nix diff --git a/pkgs/tools/text/math-review/default.nix b/pkgs/tools/text/math-review/default.nix new file mode 100644 index 000000000000..3592aad8bec7 --- /dev/null +++ b/pkgs/tools/text/math-review/default.nix @@ -0,0 +1,33 @@ +{ lib +, nix-update-script +, fetchFromGitLab +, buildNpmPackage +, nodejs +}: + +buildNpmPackage rec { + pname = "math-preview"; + version = "5.1.1"; + + src = fetchFromGitLab { + owner = "matsievskiysv"; + repo = "math-preview"; + rev = "v${version}"; + hash = "sha256-P3TZ/D6D2PvwPV6alSrDEQujzgI8DhK4VOuCC0BCIFo="; + }; + + npmDepsHash = "sha256-GAPhG3haM9UNdj6tCz8I4j7v6rvNbatdu7NjCeENj3s="; + dontNpmBuild = true; + + passthru = { + updateScript = nix-update-script { }; + }; + + meta = with lib; { + description = "Emacs preview math inline"; + license = licenses.gpl3Plus; + homepage = "https://gitlab.com/matsievskiysv/math-preview"; + maintainers = with maintainers; [ renesat ]; + inherit (nodejs.meta) platforms; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ec064e39fd7d..1fbff2c5a7b2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -19806,6 +19806,8 @@ with pkgs; mastodon-archive = callPackage ../tools/backup/mastodon-archive { }; + math-preview = callPackage ../tools/text/math-review { }; + maven = maven3; maven3 = callPackage ../development/tools/build-managers/apache-maven { }; From 72ed25bfb71c6309a7721c84a307ee483be21105 Mon Sep 17 00:00:00 2001 From: Lord-Valen Date: Wed, 30 Aug 2023 16:44:06 -0400 Subject: [PATCH 314/346] nodePackages.vsc-leetcode-cli: use buildNpmPackage --- pkgs/development/node-packages/aliases.nix | 1 + .../node-packages/main-programs.nix | 1 - .../node-packages/node-packages.json | 1 - .../node-packages/node-packages.nix | 235 ------------------ pkgs/tools/misc/vsc-leetcode-cli/default.nix | 28 +++ pkgs/top-level/all-packages.nix | 2 + 6 files changed, 31 insertions(+), 237 deletions(-) create mode 100644 pkgs/tools/misc/vsc-leetcode-cli/default.nix diff --git a/pkgs/development/node-packages/aliases.nix b/pkgs/development/node-packages/aliases.nix index 47d9639be915..9bdeb1a5a2fa 100644 --- a/pkgs/development/node-packages/aliases.nix +++ b/pkgs/development/node-packages/aliases.nix @@ -117,6 +117,7 @@ mapAliases { triton = pkgs.triton; # Added 2023-05-06 typescript = pkgs.typescript; # Added 2023-06-21 inherit (pkgs) ungit; # added 2023-08-20 + inherit (pkgs) vsc-leetcode-cli; # Added 2023-08-30 vscode-langservers-extracted = pkgs.vscode-langservers-extracted; # Added 2023-05-27 vue-cli = self."@vue/cli"; # added 2023-08-18 vue-language-server = self.vls; # added 2023-08-20 diff --git a/pkgs/development/node-packages/main-programs.nix b/pkgs/development/node-packages/main-programs.nix index 5ee9f70d8e33..846cdd75beda 100644 --- a/pkgs/development/node-packages/main-programs.nix +++ b/pkgs/development/node-packages/main-programs.nix @@ -61,7 +61,6 @@ typescript-language-server = "typescript-language-server"; uglify-js = "uglifyjs"; undollar = "$"; - vsc-leetcode-cli = "leetcode"; vscode-css-languageserver-bin = "css-languageserver"; vscode-html-languageserver-bin = "html-languageserver"; vscode-json-languageserver-bin = "json-languageserver"; diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json index ee7a6ae5f50d..9c158758bb06 100644 --- a/pkgs/development/node-packages/node-packages.json +++ b/pkgs/development/node-packages/node-packages.json @@ -160,7 +160,6 @@ , "katex" , "keyoxide" , "lcov-result-merger" -, "vsc-leetcode-cli" , "lerna" , "less" , "less-plugin-clean-css" diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index c3d28fc12a25..e8a263a70c3f 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -94522,241 +94522,6 @@ in bypassCache = true; reconstructLock = true; }; - vsc-leetcode-cli = nodeEnv.buildNodePackage { - name = "vsc-leetcode-cli"; - packageName = "vsc-leetcode-cli"; - version = "2.8.1"; - src = fetchurl { - url = "https://registry.npmjs.org/vsc-leetcode-cli/-/vsc-leetcode-cli-2.8.1.tgz"; - sha512 = "C5q5wGeedHKJzs53/jrVWEeobRteB/libKrVHmLqE3zraKJBgteUN4LUNEYrAjU9O6yxgj/NPEWOLoEdRhwATw=="; - }; - dependencies = [ - sources."abab-1.0.4" - sources."acorn-2.7.0" - sources."acorn-globals-1.0.9" - sources."ajv-6.12.6" - sources."ansi-regex-5.0.1" - sources."ansi-styles-3.2.1" - sources."asn1-0.2.6" - sources."assert-plus-1.0.0" - sources."async-1.5.2" - sources."asynckit-0.4.0" - sources."aws-sign2-0.7.0" - sources."aws4-1.12.0" - sources."balanced-match-1.0.2" - sources."bcrypt-pbkdf-1.0.2" - sources."boolbase-1.0.0" - sources."brace-expansion-1.1.11" - sources."camelcase-5.3.1" - sources."caseless-0.12.0" - sources."chalk-2.4.2" - sources."cheerio-0.20.0" - sources."cli-cursor-2.1.0" - sources."cli-spinners-1.3.1" - sources."cliui-7.0.4" - sources."clone-1.0.4" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."colors-1.4.0" - sources."combined-stream-1.0.8" - sources."concat-map-0.0.1" - sources."core-util-is-1.0.3" - sources."css-select-1.2.0" - sources."css-what-2.1.3" - sources."cssom-0.3.8" - sources."cssstyle-0.2.37" - sources."cycle-1.0.3" - sources."dashdash-1.14.1" - sources."decamelize-1.2.0" - sources."deep-equal-0.2.2" - sources."deep-is-0.1.4" - sources."defaults-1.0.4" - sources."delayed-stream-1.0.0" - sources."dom-serializer-0.1.1" - sources."domelementtype-1.3.1" - sources."domhandler-2.3.0" - sources."domutils-1.5.1" - sources."ecc-jsbn-0.1.2" - sources."emoji-regex-8.0.0" - sources."entities-1.1.2" - sources."escalade-3.1.1" - sources."escape-string-regexp-1.0.5" - sources."escodegen-1.14.3" - sources."esprima-4.0.1" - sources."estraverse-4.3.0" - sources."esutils-2.0.3" - sources."extend-3.0.2" - sources."extsprintf-1.3.0" - sources."eyes-0.1.8" - sources."fast-deep-equal-3.1.3" - sources."fast-json-stable-stringify-2.1.0" - sources."fast-levenshtein-2.0.6" - sources."find-up-4.1.0" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" - sources."fs.realpath-1.0.0" - sources."get-caller-file-2.0.5" - sources."getpass-0.1.7" - sources."glob-7.2.3" - sources."har-schema-2.0.0" - sources."har-validator-5.1.5" - sources."has-flag-3.0.0" - sources."he-1.2.0" - (sources."htmlparser2-3.8.3" // { - dependencies = [ - sources."entities-1.0.0" - ]; - }) - sources."http-signature-1.2.0" - sources."i-0.3.7" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."ini-2.0.0" - sources."is-fullwidth-code-point-3.0.0" - sources."is-typedarray-1.0.0" - sources."isarray-0.0.1" - sources."isstream-0.1.2" - sources."jsbn-0.1.1" - sources."jsdom-7.2.2" - sources."json-schema-0.4.0" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - sources."jsprim-1.4.2" - sources."levn-0.3.0" - sources."locate-path-5.0.0" - sources."lodash-4.17.21" - sources."log-symbols-2.2.0" - sources."mime-db-1.52.0" - sources."mime-types-2.1.35" - sources."mimic-fn-1.2.0" - sources."minimatch-3.1.2" - sources."minimist-1.2.8" - sources."mkdirp-1.0.4" - sources."moment-2.29.4" - sources."mute-stream-0.0.8" - (sources."nconf-0.11.4" // { - dependencies = [ - sources."yargs-16.2.0" - ]; - }) - sources."ncp-1.0.1" - sources."nth-check-1.0.2" - sources."nwmatcher-1.4.4" - sources."oauth-sign-0.9.0" - sources."once-1.4.0" - sources."onetime-2.0.1" - sources."optionator-0.8.3" - (sources."ora-3.0.0" // { - dependencies = [ - sources."ansi-regex-3.0.1" - sources."strip-ansi-4.0.0" - ]; - }) - sources."p-limit-2.3.0" - sources."p-locate-4.1.0" - sources."p-try-2.2.0" - sources."parse5-1.5.1" - sources."path-exists-4.0.0" - sources."path-is-absolute-1.0.1" - sources."performance-now-2.1.0" - sources."pkginfo-0.4.1" - sources."prelude-ls-1.1.2" - sources."prompt-1.0.0" - sources."psl-1.9.0" - sources."punycode-2.3.0" - sources."qs-6.5.3" - sources."read-1.0.7" - sources."readable-stream-1.1.14" - (sources."request-2.88.0" // { - dependencies = [ - sources."punycode-1.4.1" - sources."tough-cookie-2.4.3" - ]; - }) - sources."require-directory-2.1.1" - sources."require-main-filename-2.0.0" - sources."restore-cursor-2.0.0" - sources."revalidator-0.1.8" - sources."rimraf-2.7.1" - sources."safe-buffer-5.2.1" - sources."safer-buffer-2.1.2" - sources."sax-1.2.4" - sources."secure-keys-1.0.0" - sources."set-blocking-2.0.0" - sources."signal-exit-3.0.7" - sources."source-map-0.6.1" - sources."sshpk-1.17.0" - sources."stack-trace-0.0.10" - sources."string-width-4.2.3" - sources."string_decoder-0.10.31" - sources."strip-ansi-6.0.1" - sources."supports-color-5.5.0" - sources."symbol-tree-3.2.4" - sources."tough-cookie-2.5.0" - sources."tr46-0.0.3" - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" - sources."type-check-0.3.2" - sources."underscore-1.9.1" - sources."uri-js-4.4.1" - (sources."utile-0.3.0" // { - dependencies = [ - sources."async-0.9.2" - sources."mkdirp-0.5.6" - ]; - }) - sources."uuid-3.4.0" - (sources."verror-1.10.0" // { - dependencies = [ - sources."core-util-is-1.0.2" - ]; - }) - sources."wcwidth-1.0.1" - sources."webidl-conversions-2.0.1" - sources."whatwg-url-compat-0.6.5" - sources."which-module-2.0.1" - (sources."winston-2.1.1" // { - dependencies = [ - sources."async-1.0.0" - sources."colors-1.0.3" - sources."pkginfo-0.3.1" - ]; - }) - sources."word-wrap-1.2.5" - sources."wordwrap-1.0.0" - (sources."wrap-ansi-7.0.0" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - ]; - }) - sources."wrappy-1.0.2" - sources."xml-name-validator-2.0.1" - sources."y18n-5.0.8" - (sources."yargs-15.4.1" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."cliui-6.0.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."wrap-ansi-6.2.0" - sources."y18n-4.0.3" - sources."yargs-parser-18.1.3" - ]; - }) - sources."yargs-parser-20.2.9" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "A cli tool to enjoy leetcode!"; - homepage = "https://github.com/leetcode-tools/leetcode-cli#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; lerna = nodeEnv.buildNodePackage { name = "lerna"; packageName = "lerna"; diff --git a/pkgs/tools/misc/vsc-leetcode-cli/default.nix b/pkgs/tools/misc/vsc-leetcode-cli/default.nix new file mode 100644 index 000000000000..cb70f9a80eed --- /dev/null +++ b/pkgs/tools/misc/vsc-leetcode-cli/default.nix @@ -0,0 +1,28 @@ +{ buildNpmPackage +, fetchFromGitHub +, lib +}: + +buildNpmPackage { + pname = "vsc-leetcode-cli"; + version = "unstable-2021-04-11"; + + src = fetchFromGitHub { + owner = "leetcode-tools"; + repo = "leetcode-cli"; + rev = "c5f6b8987185ae9f181e138f999825516240f44c"; + hash = "sha256-N8hQqIzCUYTT5RAd0eqNynSNkGiN4omFY+8QLBemIbs="; + }; + + npmDepsHash = "sha256-t8eEnyAKeDmbmduUXuxo/WbJTced5dLeJTbtjxrrxY8="; + + dontNpmBuild = true; + + meta = with lib; { + description = "A CLI tool for leetcode.com"; + homepage = "https://github.com/leetcode-tools/leetcode-cli"; + license = licenses.mit; + maintainers = with maintainers; [ cpcloud ]; + mainProgram = "leetcode"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1fbff2c5a7b2..07682343b0c4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -41556,6 +41556,8 @@ with pkgs; inherit (gst_all_1) gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly; }; + vsc-leetcode-cli = callPackage ../tools/misc/vsc-leetcode-cli { }; + vsh = callPackage ../tools/misc/vsh { }; vttest = callPackage ../tools/misc/vttest { }; From db661a558ae858e64b2b6c3638ac1e7b2f343edd Mon Sep 17 00:00:00 2001 From: Lord-Valen Date: Wed, 30 Aug 2023 19:48:03 -0400 Subject: [PATCH 315/346] nodePackages.stylelint: use buildNpmPackage --- pkgs/development/node-packages/aliases.nix | 1 + .../node-packages/node-packages.json | 1 - .../node-packages/node-packages.nix | 202 ------------------ .../tools/analysis/stylelint/default.nix | 24 +++ pkgs/top-level/all-packages.nix | 2 + 5 files changed, 27 insertions(+), 203 deletions(-) create mode 100644 pkgs/development/tools/analysis/stylelint/default.nix diff --git a/pkgs/development/node-packages/aliases.nix b/pkgs/development/node-packages/aliases.nix index 47d9639be915..d640dd61b7a4 100644 --- a/pkgs/development/node-packages/aliases.nix +++ b/pkgs/development/node-packages/aliases.nix @@ -108,6 +108,7 @@ mapAliases { "@squoosh/cli" = throw "@squoosh/cli was removed because it was abandoned upstream"; # added 2023-09-02 ssb-server = throw "ssb-server was removed because it was broken"; # added 2023-08-21 stf = throw "stf was removed because it was broken"; # added 2023-08-21 + inherit (pkgs) stylelint; # added 2023-09-13 surge = pkgs.surge-cli; # Added 2023-09-08 swagger = throw "swagger was removed because it was broken and abandoned upstream"; # added 2023-09-09 inherit (pkgs) terser; # Added 2023-08-31 diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json index ee7a6ae5f50d..80840ba25bf2 100644 --- a/pkgs/development/node-packages/node-packages.json +++ b/pkgs/development/node-packages/node-packages.json @@ -234,7 +234,6 @@ , "speed-test" , "sql-formatter" , "stackdriver-statsd-backend" -, "stylelint" , "svelte-check" , "svelte-language-server" , "svgo" diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index c3d28fc12a25..e8061a6db377 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -105377,208 +105377,6 @@ in bypassCache = true; reconstructLock = true; }; - stylelint = nodeEnv.buildNodePackage { - name = "stylelint"; - packageName = "stylelint"; - version = "15.10.3"; - src = fetchurl { - url = "https://registry.npmjs.org/stylelint/-/stylelint-15.10.3.tgz"; - sha512 = "aBQMMxYvFzJJwkmg+BUUg3YfPyeuCuKo2f+LOw7yYbU8AZMblibwzp9OV4srHVeQldxvSFdz0/Xu8blq2AesiA=="; - }; - dependencies = [ - sources."@babel/code-frame-7.22.10" - sources."@babel/helper-validator-identifier-7.22.5" - sources."@babel/highlight-7.22.10" - sources."@csstools/css-parser-algorithms-2.3.1" - sources."@csstools/css-tokenizer-2.2.0" - sources."@csstools/media-query-list-parser-2.1.4" - sources."@csstools/selector-specificity-3.0.0" - sources."@nodelib/fs.scandir-2.1.5" - sources."@nodelib/fs.stat-2.0.5" - sources."@nodelib/fs.walk-1.2.8" - sources."@types/minimist-1.2.2" - sources."@types/normalize-package-data-2.4.1" - sources."ajv-8.12.0" - sources."ansi-regex-5.0.1" - sources."ansi-styles-3.2.1" - sources."argparse-2.0.1" - sources."array-union-2.1.0" - sources."arrify-1.0.1" - sources."astral-regex-2.0.0" - sources."balanced-match-2.0.0" - (sources."brace-expansion-1.1.11" // { - dependencies = [ - sources."balanced-match-1.0.2" - ]; - }) - sources."braces-3.0.2" - sources."callsites-3.1.0" - sources."camelcase-6.3.0" - sources."camelcase-keys-7.0.2" - sources."chalk-2.4.2" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."colord-2.9.3" - sources."concat-map-0.0.1" - sources."cosmiconfig-8.2.0" - sources."css-functions-list-3.2.0" - sources."css-tree-2.3.1" - sources."cssesc-3.0.0" - sources."debug-4.3.4" - sources."decamelize-5.0.1" - (sources."decamelize-keys-1.1.1" // { - dependencies = [ - sources."decamelize-1.2.0" - sources."map-obj-1.0.1" - ]; - }) - sources."dir-glob-3.0.1" - sources."emoji-regex-8.0.0" - sources."error-ex-1.3.2" - sources."escape-string-regexp-1.0.5" - sources."fast-deep-equal-3.1.3" - sources."fast-glob-3.3.1" - sources."fastest-levenshtein-1.0.16" - sources."fastq-1.15.0" - sources."file-entry-cache-6.0.1" - sources."fill-range-7.0.1" - sources."find-up-5.0.0" - sources."flat-cache-3.0.4" - sources."flatted-3.2.7" - sources."fs.realpath-1.0.0" - sources."function-bind-1.1.1" - sources."glob-7.2.3" - sources."glob-parent-5.1.2" - sources."global-modules-2.0.0" - sources."global-prefix-3.0.0" - sources."globby-11.1.0" - sources."globjoin-0.1.4" - sources."hard-rejection-2.1.0" - sources."has-1.0.3" - sources."has-flag-3.0.0" - sources."hosted-git-info-4.1.0" - sources."html-tags-3.3.1" - sources."ignore-5.2.4" - (sources."import-fresh-3.3.0" // { - dependencies = [ - sources."resolve-from-4.0.0" - ]; - }) - sources."import-lazy-4.0.0" - sources."imurmurhash-0.1.4" - sources."indent-string-5.0.0" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."ini-1.3.8" - sources."is-arrayish-0.2.1" - sources."is-core-module-2.13.0" - sources."is-extglob-2.1.1" - sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.3" - sources."is-number-7.0.0" - sources."is-plain-obj-1.1.0" - sources."is-plain-object-5.0.0" - sources."isexe-2.0.0" - sources."js-tokens-4.0.0" - sources."js-yaml-4.1.0" - sources."json-parse-even-better-errors-2.3.1" - sources."json-schema-traverse-1.0.0" - sources."kind-of-6.0.3" - sources."known-css-properties-0.28.0" - sources."lines-and-columns-1.2.4" - sources."locate-path-6.0.0" - sources."lodash.truncate-4.4.2" - sources."lru-cache-6.0.0" - sources."map-obj-4.3.0" - sources."mathml-tag-names-2.1.3" - sources."mdn-data-2.0.30" - sources."meow-10.1.5" - sources."merge2-1.4.1" - sources."micromatch-4.0.5" - sources."min-indent-1.0.1" - sources."minimatch-3.1.2" - sources."minimist-options-4.1.0" - sources."ms-2.1.2" - sources."nanoid-3.3.6" - sources."normalize-package-data-3.0.3" - sources."normalize-path-3.0.0" - sources."once-1.4.0" - sources."p-limit-3.1.0" - sources."p-locate-5.0.0" - sources."parent-module-1.0.1" - sources."parse-json-5.2.0" - sources."path-exists-4.0.0" - sources."path-is-absolute-1.0.1" - sources."path-type-4.0.0" - sources."picocolors-1.0.0" - sources."picomatch-2.3.1" - sources."postcss-8.4.28" - sources."postcss-resolve-nested-selector-0.1.1" - sources."postcss-safe-parser-6.0.0" - sources."postcss-selector-parser-6.0.13" - sources."postcss-value-parser-4.2.0" - sources."punycode-2.3.0" - sources."queue-microtask-1.2.3" - sources."quick-lru-5.1.1" - sources."read-pkg-6.0.0" - sources."read-pkg-up-8.0.0" - sources."redent-4.0.0" - sources."require-from-string-2.0.2" - sources."resolve-from-5.0.0" - sources."reusify-1.0.4" - sources."rimraf-3.0.2" - sources."run-parallel-1.2.0" - sources."semver-7.5.4" - sources."signal-exit-4.1.0" - sources."slash-3.0.0" - (sources."slice-ansi-4.0.0" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - ]; - }) - sources."source-map-js-1.0.2" - sources."spdx-correct-3.2.0" - sources."spdx-exceptions-2.3.0" - sources."spdx-expression-parse-3.0.1" - sources."spdx-license-ids-3.0.13" - sources."string-width-4.2.3" - sources."strip-ansi-6.0.1" - sources."strip-indent-4.0.0" - sources."style-search-0.1.0" - sources."supports-color-5.5.0" - (sources."supports-hyperlinks-3.0.0" // { - dependencies = [ - sources."has-flag-4.0.0" - sources."supports-color-7.2.0" - ]; - }) - sources."svg-tags-1.0.0" - sources."table-6.8.1" - sources."to-regex-range-5.0.1" - sources."trim-newlines-4.1.1" - sources."type-fest-1.4.0" - sources."uri-js-4.4.1" - sources."util-deprecate-1.0.2" - sources."validate-npm-package-license-3.0.4" - sources."which-1.3.1" - sources."wrappy-1.0.2" - sources."write-file-atomic-5.0.1" - sources."yallist-4.0.0" - sources."yargs-parser-20.2.9" - sources."yocto-queue-0.1.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "A mighty CSS linter that helps you avoid errors and enforce conventions."; - homepage = "https://stylelint.io"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; svelte-check = nodeEnv.buildNodePackage { name = "svelte-check"; packageName = "svelte-check"; diff --git a/pkgs/development/tools/analysis/stylelint/default.nix b/pkgs/development/tools/analysis/stylelint/default.nix new file mode 100644 index 000000000000..d2e583ecf91c --- /dev/null +++ b/pkgs/development/tools/analysis/stylelint/default.nix @@ -0,0 +1,24 @@ +{ buildNpmPackage, fetchFromGitHub, lib }: + +buildNpmPackage rec { + pname = "stylelint"; + version = "15.10.3"; + + src = fetchFromGitHub { + owner = "stylelint"; + repo = "stylelint"; + rev = version; + hash = "sha256-k7Ngbd4Z3/JjCK6taynIiNCDTKfqGRrjfR0ePyRFY4w="; + }; + + npmDepsHash = "sha256-tVDhaDeUKzuyJU5ABSOeYgS56BDSJTfjBZdTsuL/7tA="; + + dontNpmBuild = true; + + meta = with lib; { + description = "Mighty CSS linter that helps you avoid errors and enforce conventions"; + homepage = "https://stylelint.io"; + license = licenses.mit; + maintainers = with maintainers; [ ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1fbff2c5a7b2..b78d1718a1fd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -20356,6 +20356,8 @@ with pkgs; strace-analyzer = callPackage ../development/tools/misc/strace-analyzer { }; + stylelint = callPackage ../development/tools/analysis/stylelint { }; + stylua = callPackage ../development/tools/stylua { }; summon = callPackage ../development/tools/summon { }; From ec970f768851692ef2acf7f986dd5b07e7afb382 Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Wed, 13 Sep 2023 14:37:16 -0400 Subject: [PATCH 316/346] haskellPackages: mark builds failing on hydra as broken This commit has been generated by maintainers/scripts/haskell/mark-broken.sh based on *evaluation [1799222](https://hydra.nixos.org/eval/1799222) of nixpkgs commit [a5158e8](https://github.com/NixOS/nixpkgs/commits/a5158e8acea3ec8a97d618bb3f84df43e5f0c3e9) as of 2023-09-13 18:28 UTC* from the haskell-updates jobset on hydra under https://hydra.nixos.org/jobset/nixpkgs/haskell-updates --- .../configuration-hackage2nix/broken.yaml | 53 ++++++++- .../transitive-broken.yaml | 1 + .../haskell-modules/hackage-packages.nix | 101 ++++++++++++++++++ 3 files changed, 154 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml index 819ab211268b..35dc2c2742f4 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml @@ -1,6 +1,7 @@ broken-packages: # These packages don't compile. - 2captcha # failure in job https://hydra.nixos.org/build/233233765 at 2023-09-02 + - 3d-graphics-examples # failure in job https://hydra.nixos.org/build/234454565 at 2023-09-13 - 3dmodels # failure in job https://hydra.nixos.org/build/233220850 at 2023-09-02 - AAI # failure in job https://hydra.nixos.org/build/233258828 at 2023-09-02 - aasam # failure in job https://hydra.nixos.org/build/233216423 at 2023-09-02 @@ -49,6 +50,7 @@ broken-packages: - AC-MiniTest # failure in job https://hydra.nixos.org/build/233216015 at 2023-09-02 - acousticbrainz-client # failure in job https://hydra.nixos.org/build/233192638 at 2023-09-02 - AC-Terminal # failure in job https://hydra.nixos.org/build/233192747 at 2023-09-02 + - ActionKid # failure in job https://hydra.nixos.org/build/234443624 at 2023-09-13 - activehs-base # failure in job https://hydra.nixos.org/build/233254736 at 2023-09-02 - activitypub # failure in job https://hydra.nixos.org/build/233253119 at 2023-09-02 - activitystreams-aeson # failure in job https://hydra.nixos.org/build/233222522 at 2023-09-02 @@ -203,6 +205,7 @@ broken-packages: - argparser # failure in job https://hydra.nixos.org/build/233222416 at 2023-09-02 - arguedit # failure in job https://hydra.nixos.org/build/233211367 at 2023-09-02 - arion # failure in job https://hydra.nixos.org/build/233254120 at 2023-09-02 + - armada # failure in job https://hydra.nixos.org/build/234462335 at 2023-09-13 - armor # failure in job https://hydra.nixos.org/build/233241366 at 2023-09-02 - arpack # failure in job https://hydra.nixos.org/build/233240937 at 2023-09-02 - arpa # failure in job https://hydra.nixos.org/build/233200212 at 2023-09-02 @@ -266,6 +269,7 @@ broken-packages: - attoparsec-trans # failure in job https://hydra.nixos.org/build/233203168 at 2023-09-02 - attoparsec-varword # failure in job https://hydra.nixos.org/build/233234240 at 2023-09-02 - attosplit # failure in job https://hydra.nixos.org/build/233203118 at 2023-09-02 + - Attrac # failure in job https://hydra.nixos.org/build/234459267 at 2023-09-13 - augeas # failure in job https://hydra.nixos.org/build/233228677 at 2023-09-02 - augur # failure in job https://hydra.nixos.org/build/233223910 at 2023-09-02 - aur-api # failure in job https://hydra.nixos.org/build/233237328 at 2023-09-02 @@ -274,6 +278,7 @@ broken-packages: - authenticate-ldap # failure in job https://hydra.nixos.org/build/233216602 at 2023-09-02 - authinfo-hs # failure in job https://hydra.nixos.org/build/233224767 at 2023-09-02 - auto # failure in job https://hydra.nixos.org/build/233211088 at 2023-09-02 + - autom # failure in job https://hydra.nixos.org/build/234461198 at 2023-09-13 - autonix-deps # failure in job https://hydra.nixos.org/build/233258269 at 2023-09-02 - autopack # failure in job https://hydra.nixos.org/build/233215025 at 2023-09-02 - avatar-generator # failure in job https://hydra.nixos.org/build/233214253 at 2023-09-02 @@ -473,6 +478,7 @@ broken-packages: - bottom # failure in job https://hydra.nixos.org/build/233225154 at 2023-09-02 - bounded-array # failure in job https://hydra.nixos.org/build/233200854 at 2023-09-02 - bound-simple # failure in job https://hydra.nixos.org/build/233201896 at 2023-09-02 + - bowntz # failure in job https://hydra.nixos.org/build/234439552 at 2023-09-13 - box-csv # failure in job https://hydra.nixos.org/build/233253321 at 2023-09-02 - box-tuples # failure in job https://hydra.nixos.org/build/233205890 at 2023-09-02 - bpath # failure in job https://hydra.nixos.org/build/233239160 at 2023-09-02 @@ -670,6 +676,7 @@ broken-packages: - cg # failure in job https://hydra.nixos.org/build/233212272 at 2023-09-02 - cgi-utils # failure in job https://hydra.nixos.org/build/233251773 at 2023-09-02 - cgroup-rts-threads # failure in job https://hydra.nixos.org/build/233207888 at 2023-09-02 + - chalkboard # failure in job https://hydra.nixos.org/build/234453414 at 2023-09-13 - chalmers-lava2000 # failure in job https://hydra.nixos.org/build/233239592 at 2023-09-02 - changelogged # failure in job https://hydra.nixos.org/build/233211675 at 2023-09-02 - character-cases # failure in job https://hydra.nixos.org/build/233197636 at 2023-09-02 @@ -985,6 +992,7 @@ broken-packages: - csv-sip # failure in job https://hydra.nixos.org/build/233211292 at 2023-09-02 - ctemplate # failure in job https://hydra.nixos.org/build/233257909 at 2023-09-02 - ctkl # failure in job https://hydra.nixos.org/build/233219516 at 2023-09-02 + - cuboid # failure in job https://hydra.nixos.org/build/234462220 at 2023-09-13 - cuckoo # failure in job https://hydra.nixos.org/build/233210915 at 2023-09-02 - cuckoo-filter # failure in job https://hydra.nixos.org/build/233226484 at 2023-09-02 - curl-aeson # failure in job https://hydra.nixos.org/build/233210106 at 2023-09-02 @@ -1089,6 +1097,7 @@ broken-packages: - DBlimited # failure in job https://hydra.nixos.org/build/233249214 at 2023-09-02 - dbm # failure in job https://hydra.nixos.org/build/233191264 at 2023-09-02 - dbmigrations # failure in job https://hydra.nixos.org/build/233242055 at 2023-09-02 + - dbmonitor # failure in job https://hydra.nixos.org/build/234451674 at 2023-09-13 - dbus-core # failure in job https://hydra.nixos.org/build/233228888 at 2023-09-02 - DBus # failure in job https://hydra.nixos.org/build/233207529 at 2023-09-02 - d-bus # failure in job https://hydra.nixos.org/build/233228668 at 2023-09-02 @@ -1279,6 +1288,7 @@ broken-packages: - DTC # failure in job https://hydra.nixos.org/build/233252009 at 2023-09-02 - dtd-text # failure in job https://hydra.nixos.org/build/233203050 at 2023-09-02 - dtw # failure in job https://hydra.nixos.org/build/233198932 at 2023-09-02 + - dual-game # failure in job https://hydra.nixos.org/build/234439752 at 2023-09-13 - dualizer # failure in job https://hydra.nixos.org/build/233237592 at 2023-09-02 - duckling # failure in job https://hydra.nixos.org/build/233247880 at 2023-09-02 - duet # failure in job https://hydra.nixos.org/build/233219004 at 2023-09-02 @@ -1299,6 +1309,7 @@ broken-packages: - dynamic-mvector # failure in job https://hydra.nixos.org/build/233252826 at 2023-09-02 - dynamic-object # failure in job https://hydra.nixos.org/build/233216605 at 2023-09-02 - DynamicTimeWarp # failure in job https://hydra.nixos.org/build/233238244 at 2023-09-02 + - dyna-processing # failure in job https://hydra.nixos.org/build/234451875 at 2023-09-13 - dynloader # failure in job https://hydra.nixos.org/build/233239248 at 2023-09-02 - DysFRP # failure in job https://hydra.nixos.org/build/233214134 at 2023-09-02 - dywapitchtrack # failure in job https://hydra.nixos.org/build/233195810 at 2023-09-02 @@ -1632,6 +1643,7 @@ broken-packages: - Fractaler # failure in job https://hydra.nixos.org/build/233253414 at 2023-09-02 - fractals # failure in job https://hydra.nixos.org/build/233205969 at 2023-09-02 - fraction # failure in job https://hydra.nixos.org/build/233204186 at 2023-09-02 + - frag # failure in job https://hydra.nixos.org/build/234458411 at 2023-09-13 - franchise # failure in job https://hydra.nixos.org/build/233256790 at 2023-09-02 - fraxl # failure in job https://hydra.nixos.org/build/233219345 at 2023-09-02 - freddy # failure in job https://hydra.nixos.org/build/233208999 at 2023-09-02 @@ -1699,6 +1711,7 @@ broken-packages: - fuzzyfind # failure in job https://hydra.nixos.org/build/233206269 at 2023-09-02 - fuzzyset # failure in job https://hydra.nixos.org/build/233231726 at 2023-09-02 - fuzzy-timings # failure in job https://hydra.nixos.org/build/233235765 at 2023-09-02 + - fvars # failure in job https://hydra.nixos.org/build/234461649 at 2023-09-13 - fwgl # failure in job https://hydra.nixos.org/build/233246210 at 2023-09-02 - g4ip # failure in job https://hydra.nixos.org/build/233248315 at 2023-09-02 - gameclock # failure in job https://hydra.nixos.org/build/233234964 at 2023-09-02 @@ -1862,6 +1875,9 @@ broken-packages: - global-variables # failure in job https://hydra.nixos.org/build/233204607 at 2023-09-02 - glob-posix # failure in job https://hydra.nixos.org/build/233253059 at 2023-09-02 - GlomeTrace # failure in job https://hydra.nixos.org/build/233211872 at 2023-09-02 + - gloss-banana # failure in job https://hydra.nixos.org/build/234464253 at 2023-09-13 + - gloss-export # failure in job https://hydra.nixos.org/build/234444988 at 2023-09-13 + - gloss-game # failure in job https://hydra.nixos.org/build/234460935 at 2023-09-13 - glsl # failure in job https://hydra.nixos.org/build/233224139 at 2023-09-02 - gltf-codec # failure in job https://hydra.nixos.org/build/233205342 at 2023-09-02 - glue # failure in job https://hydra.nixos.org/build/233233587 at 2023-09-02 @@ -1989,6 +2005,7 @@ broken-packages: - hafar # failure in job https://hydra.nixos.org/build/233231237 at 2023-09-02 - haggle # failure in job https://hydra.nixos.org/build/233198660 at 2023-09-02 - Haggressive # failure in job https://hydra.nixos.org/build/233235332 at 2023-09-02 + - HaGL # failure in job https://hydra.nixos.org/build/234457220 at 2023-09-13 - hahp # failure in job https://hydra.nixos.org/build/233250101 at 2023-09-02 - haiji # failure in job https://hydra.nixos.org/build/233232272 at 2023-09-02 - hail # failure in job https://hydra.nixos.org/build/233219127 at 2023-09-02 @@ -2100,6 +2117,7 @@ broken-packages: - HaskellForMaths # failure in job https://hydra.nixos.org/build/233237608 at 2023-09-02 - haskell-formatter # failure in job https://hydra.nixos.org/build/233237167 at 2023-09-02 - haskell-generate # failure in job https://hydra.nixos.org/build/233197927 at 2023-09-02 + - haskell-go-checkers # failure in job https://hydra.nixos.org/build/234459896 at 2023-09-13 - haskell-holes-th # failure in job https://hydra.nixos.org/build/233238457 at 2023-09-02 - haskell-igraph # failure in job https://hydra.nixos.org/build/233201209 at 2023-09-02 - haskell-import-graph # failure in job https://hydra.nixos.org/build/233225328 at 2023-09-02 @@ -2172,6 +2190,7 @@ broken-packages: - haste # failure in job https://hydra.nixos.org/build/233238510 at 2023-09-02 - haste-prim # failure in job https://hydra.nixos.org/build/233203281 at 2023-09-02 - hasura-ekg-core # failure in job https://hydra.nixos.org/build/233211397 at 2023-09-02 + - hasura-ekg-core # failure in job https://hydra.nixos.org/build/234439842 at 2023-09-13 - hatex-guide # failure in job https://hydra.nixos.org/build/233258593 at 2023-09-02 - hat # failure in job https://hydra.nixos.org/build/233243655 at 2023-09-02 - hats # failure in job https://hydra.nixos.org/build/233256724 at 2023-09-02 @@ -2263,6 +2282,7 @@ broken-packages: - HExcel # failure in job https://hydra.nixos.org/build/233211971 at 2023-09-02 - hexchat # failure in job https://hydra.nixos.org/build/233234161 at 2023-09-02 - hexif # failure in job https://hydra.nixos.org/build/233245470 at 2023-09-02 + - hexmino # failure in job https://hydra.nixos.org/build/234458679 at 2023-09-13 - hexml-lens # failure in job https://hydra.nixos.org/build/233247930 at 2023-09-02 - hexpat-lens # failure in job https://hydra.nixos.org/build/233199827 at 2023-09-02 - hexpat-pickle-generic # failure in job https://hydra.nixos.org/build/233219898 at 2023-09-02 @@ -2279,6 +2299,7 @@ broken-packages: - hfann # failure in job https://hydra.nixos.org/build/233198657 at 2023-09-02 - HFitUI # failure in job https://hydra.nixos.org/build/233218009 at 2023-09-02 - hfmt # failure in job https://hydra.nixos.org/build/233246648 at 2023-09-02 + - hfoil # failure in job https://hydra.nixos.org/build/234467169 at 2023-09-13 - hfov # failure in job https://hydra.nixos.org/build/233227082 at 2023-09-02 - HFrequencyQueue # failure in job https://hydra.nixos.org/build/233218262 at 2023-09-02 - hfusion # failure in job https://hydra.nixos.org/build/233198044 at 2023-09-02 @@ -2286,6 +2307,7 @@ broken-packages: - HGamer3D # failure in job https://hydra.nixos.org/build/233200642 at 2023-09-02 - hg-buildpackage # failure in job https://hydra.nixos.org/build/233244725 at 2023-09-02 - hgdbmi # failure in job https://hydra.nixos.org/build/233227678 at 2023-09-02 + - HGE2D # failure in job https://hydra.nixos.org/build/234449154 at 2023-09-13 - hgearman # failure in job https://hydra.nixos.org/build/233231063 at 2023-09-02 - hGelf # failure in job https://hydra.nixos.org/build/233203909 at 2023-09-02 - hgeometric # failure in job https://hydra.nixos.org/build/233197856 at 2023-09-02 @@ -2460,6 +2482,7 @@ broken-packages: - hps-kmeans # failure in job https://hydra.nixos.org/build/233207461 at 2023-09-02 - hPushover # failure in job https://hydra.nixos.org/build/233215804 at 2023-09-02 - hpygments # failure in job https://hydra.nixos.org/build/233258827 at 2023-09-02 + - hpylos # failure in job https://hydra.nixos.org/build/234451400 at 2023-09-13 - hpyrg # failure in job https://hydra.nixos.org/build/233225042 at 2023-09-02 - hquantlib-time # failure in job https://hydra.nixos.org/build/233192009 at 2023-09-02 - hquery # failure in job https://hydra.nixos.org/build/233203709 at 2023-09-02 @@ -2489,6 +2512,7 @@ broken-packages: - hsc3-unsafe # failure in job https://hydra.nixos.org/build/233202606 at 2023-09-02 - hscaffold # failure in job https://hydra.nixos.org/build/233207380 at 2023-09-02 - hscamwire # failure in job https://hydra.nixos.org/build/233194329 at 2023-09-02 + - hs-carbon-examples # failure in job https://hydra.nixos.org/build/234440337 at 2023-09-13 - hscd # failure in job https://hydra.nixos.org/build/233195644 at 2023-09-02 - hscdio # failure in job https://hydra.nixos.org/build/233195843 at 2023-09-02 - hschema-aeson # failure in job https://hydra.nixos.org/build/233196871 at 2023-09-02 @@ -2595,6 +2619,7 @@ broken-packages: - hszephyr # failure in job https://hydra.nixos.org/build/233204818 at 2023-09-02 - hTalos # failure in job https://hydra.nixos.org/build/233246583 at 2023-09-02 - htar # failure in job https://hydra.nixos.org/build/233218013 at 2023-09-02 + - htdp-image # failure in job https://hydra.nixos.org/build/234460283 at 2023-09-13 - hTensor # failure in job https://hydra.nixos.org/build/233205733 at 2023-09-02 - htestu # failure in job https://hydra.nixos.org/build/233234583 at 2023-09-02 - HTicTacToe # failure in job https://hydra.nixos.org/build/233235397 at 2023-09-02 @@ -2635,6 +2660,7 @@ broken-packages: - http-shed # failure in job https://hydra.nixos.org/build/233236325 at 2023-09-02 - httpstan # failure in job https://hydra.nixos.org/build/233202072 at 2023-09-02 - http-wget # failure in job https://hydra.nixos.org/build/233236793 at 2023-09-02 + - htune # failure in job https://hydra.nixos.org/build/234447885 at 2023-09-13 - htvm # failure in job https://hydra.nixos.org/build/233218993 at 2023-09-02 - htzaar # failure in job https://hydra.nixos.org/build/233197602 at 2023-09-02 - huck # failure in job https://hydra.nixos.org/build/233235354 at 2023-09-02 @@ -2999,10 +3025,12 @@ broken-packages: - labeled-graph # failure in job https://hydra.nixos.org/build/233241327 at 2023-09-02 - lambda2js # failure in job https://hydra.nixos.org/build/233221862 at 2023-09-02 - lambdaBase # failure in job https://hydra.nixos.org/build/233194002 at 2023-09-02 + - lambdabot-telegram-plugins # failure in job https://hydra.nixos.org/build/234444260 at 2023-09-13 - lambdabot-utils # failure in job https://hydra.nixos.org/build/233224842 at 2023-09-02 - lambdabot-xmpp # failure in job https://hydra.nixos.org/build/233212018 at 2023-09-02 - lambda-bridge # failure in job https://hydra.nixos.org/build/233230630 at 2023-09-02 - lambda-calculator # failure in job https://hydra.nixos.org/build/233243971 at 2023-09-02 + - lambda-canvas # failure in job https://hydra.nixos.org/build/234451929 at 2023-09-13 - lambdacms-core # failure in job https://hydra.nixos.org/build/233217257 at 2023-09-02 - lambdacube-core # failure in job https://hydra.nixos.org/build/233233440 at 2023-09-02 - lambdacube-engine # failure in job https://hydra.nixos.org/build/233223079 at 2023-09-02 @@ -3077,6 +3105,7 @@ broken-packages: - leapseconds # failure in job https://hydra.nixos.org/build/233253640 at 2023-09-02 - learn # failure in job https://hydra.nixos.org/build/233247385 at 2023-09-02 - Learning # failure in job https://hydra.nixos.org/build/233237137 at 2023-09-02 + - learn-physics-examples # failure in job https://hydra.nixos.org/build/234444204 at 2023-09-13 - leetify # failure in job https://hydra.nixos.org/build/233200752 at 2023-09-02 - lendingclub # failure in job https://hydra.nixos.org/build/233239123 at 2023-09-02 - lens-datetime # failure in job https://hydra.nixos.org/build/233252409 at 2023-09-02 @@ -3119,6 +3148,7 @@ broken-packages: - libphonenumber # failure in job https://hydra.nixos.org/build/233251839 at 2023-09-02 - libpq # failure in job https://hydra.nixos.org/build/233192542 at 2023-09-02 - librandomorg # failure in job https://hydra.nixos.org/build/233232749 at 2023-09-02 + - libsecp256k1 # failure in job https://hydra.nixos.org/build/234441559 at 2023-09-13 - libsystemd-daemon # failure in job https://hydra.nixos.org/build/233207090 at 2023-09-02 - libtagc # failure in job https://hydra.nixos.org/build/233223631 at 2023-09-02 - libtelnet # failure in job https://hydra.nixos.org/build/233209594 at 2023-09-02 @@ -3132,6 +3162,7 @@ broken-packages: - life-sync # failure in job https://hydra.nixos.org/build/233241402 at 2023-09-02 - lifetimes # failure in job https://hydra.nixos.org/build/233259483 at 2023-09-02 - lifted-protolude # failure in job https://hydra.nixos.org/build/233253040 at 2023-09-02 + - lifter # failure in job https://hydra.nixos.org/build/234448104 at 2023-09-13 - ligature # failure in job https://hydra.nixos.org/build/233212688 at 2023-09-02 - light # failure in job https://hydra.nixos.org/build/233193643 at 2023-09-02 - lilypond # failure in job https://hydra.nixos.org/build/233221478 at 2023-09-02 @@ -3290,6 +3321,7 @@ broken-packages: - make-hard-links # failure in job https://hydra.nixos.org/build/233213014 at 2023-09-02 - make-monofoldable-foldable # failure in job https://hydra.nixos.org/build/233235683 at 2023-09-02 - mallard # failure in job https://hydra.nixos.org/build/233208248 at 2023-09-02 + - mandulia # failure in job https://hydra.nixos.org/build/234446158 at 2023-09-13 - manifolds # failure in job https://hydra.nixos.org/build/233244103 at 2023-09-02 - mapalgebra # failure in job https://hydra.nixos.org/build/233215542 at 2023-09-02 - map-exts # failure in job https://hydra.nixos.org/build/233247423 at 2023-09-02 @@ -3300,6 +3332,7 @@ broken-packages: - markdown-kate # failure in job https://hydra.nixos.org/build/233227051 at 2023-09-02 - marked-pretty # failure in job https://hydra.nixos.org/build/233193892 at 2023-09-02 - markov-realization # failure in job https://hydra.nixos.org/build/233234901 at 2023-09-02 + - mars # failure in job https://hydra.nixos.org/build/234449730 at 2023-09-13 - marshal-contt # failure in job https://hydra.nixos.org/build/233231755 at 2023-09-02 - marvin-interpolate # failure in job https://hydra.nixos.org/build/233201000 at 2023-09-02 - MASMGen # failure in job https://hydra.nixos.org/build/233213454 at 2023-09-02 @@ -3329,6 +3362,7 @@ broken-packages: - mbtiles # failure in job https://hydra.nixos.org/build/233237721 at 2023-09-02 - mbug # failure in job https://hydra.nixos.org/build/233242212 at 2023-09-02 - mcl # failure in job https://hydra.nixos.org/build/233193943 at 2023-09-02 + - mcmaster-gloss-examples # failure in job https://hydra.nixos.org/build/234457610 at 2023-09-13 - mcmc-synthesis # failure in job https://hydra.nixos.org/build/233208414 at 2023-09-02 - mcm # failure in job https://hydra.nixos.org/build/233229087 at 2023-09-02 - mcpi # failure in job https://hydra.nixos.org/build/233231465 at 2023-09-02 @@ -3442,6 +3476,7 @@ broken-packages: - modulespection # failure in job https://hydra.nixos.org/build/233206138 at 2023-09-02 - MoeDict # failure in job https://hydra.nixos.org/build/233255252 at 2023-09-02 - moe # failure in job https://hydra.nixos.org/build/233253151 at 2023-09-02 + - Moe # failure in job https://hydra.nixos.org/build/234446604 at 2023-09-13 - moesocks # failure in job https://hydra.nixos.org/build/233258741 at 2023-09-02 - mohws # failure in job https://hydra.nixos.org/build/233246088 at 2023-09-02 - mollie-api-haskell # failure in job https://hydra.nixos.org/build/233200867 at 2023-09-02 @@ -3458,6 +3493,7 @@ broken-packages: - monad-fork # failure in job https://hydra.nixos.org/build/233206855 at 2023-09-02 - monadiccp # failure in job https://hydra.nixos.org/build/233191794 at 2023-09-02 - monad-introspect # failure in job https://hydra.nixos.org/build/233248261 at 2023-09-02 + - Monadius # failure in job https://hydra.nixos.org/build/234456746 at 2023-09-13 - monad-levels # failure in job https://hydra.nixos.org/build/233230433 at 2023-09-02 - monad-lgbt # failure in job https://hydra.nixos.org/build/233207652 at 2023-09-02 - monadLib-compose # failure in job https://hydra.nixos.org/build/233237652 at 2023-09-02 @@ -3842,6 +3878,7 @@ broken-packages: - ory-hydra-client # failure in job https://hydra.nixos.org/build/233197456 at 2023-09-02 - ory-kratos # failure in job https://hydra.nixos.org/build/233191249 at 2023-09-02 - osc # failure in job https://hydra.nixos.org/build/233250062 at 2023-09-02 + - oscpacking # failure in job https://hydra.nixos.org/build/234464653 at 2023-09-13 - oset # failure in job https://hydra.nixos.org/build/233230763 at 2023-09-02 - Oslo-Vectize # failure in job https://hydra.nixos.org/build/233252956 at 2023-09-02 - osm-conduit # failure in job https://hydra.nixos.org/build/233259898 at 2023-09-02 @@ -4129,6 +4166,7 @@ broken-packages: - polar-shader # failure in job https://hydra.nixos.org/build/233258190 at 2023-09-02 - policeman # failure in job https://hydra.nixos.org/build/233199941 at 2023-09-02 - polling-cache # failure in job https://hydra.nixos.org/build/233211378 at 2023-09-02 + - Pollutocracy # failure in job https://hydra.nixos.org/build/234458943 at 2023-09-13 - poly-cont # failure in job https://hydra.nixos.org/build/233223995 at 2023-09-02 - poly-control # failure in job https://hydra.nixos.org/build/233190876 at 2023-09-02 - polydata-core # failure in job https://hydra.nixos.org/build/233232049 at 2023-09-02 @@ -4288,6 +4326,7 @@ broken-packages: - prometheus-wai-middleware # failure in job https://hydra.nixos.org/build/233239230 at 2023-09-02 - promise # failure in job https://hydra.nixos.org/build/233228578 at 2023-09-02 - pronounce # failure in job https://hydra.nixos.org/build/233234844 at 2023-09-02 + - proof-assistant-bot # failure in job https://hydra.nixos.org/build/234974688 at 2023-09-13 - proof-combinators # failure in job https://hydra.nixos.org/build/233210521 at 2023-09-02 - PropaFP # failure in job https://hydra.nixos.org/build/233206496 at 2023-09-02 - Proper # failure in job https://hydra.nixos.org/build/233194417 at 2023-09-02 @@ -4422,6 +4461,7 @@ broken-packages: - rank-product # failure in job https://hydra.nixos.org/build/233239589 at 2023-09-02 - rapid # failure in job https://hydra.nixos.org/build/233223077 at 2023-09-02 - rapid-term # failure in job https://hydra.nixos.org/build/233251731 at 2023-09-02 + - Rasenschach # failure in job https://hydra.nixos.org/build/234445901 at 2023-09-13 - rating-chgk-info # failure in job https://hydra.nixos.org/build/233598034 at 2023-09-02 - rational-list # failure in job https://hydra.nixos.org/build/233197144 at 2023-09-02 - rattle # failure in job https://hydra.nixos.org/build/233234335 at 2023-09-02 @@ -4487,6 +4527,7 @@ broken-packages: - reflex-dom-svg # failure in job https://hydra.nixos.org/build/233193544 at 2023-09-02 - reflex-external-ref # failure in job https://hydra.nixos.org/build/233215834 at 2023-09-02 - reflex-gi-gtk # failure in job https://hydra.nixos.org/build/233213103 at 2023-09-02 + - reflex-gloss # failure in job https://hydra.nixos.org/build/234457448 at 2023-09-13 - reflex-jsx # failure in job https://hydra.nixos.org/build/233207137 at 2023-09-02 - reflex-orphans # failure in job https://hydra.nixos.org/build/233249128 at 2023-09-02 - reflex-sdl2 # failure in job https://hydra.nixos.org/build/233233947 at 2023-09-02 @@ -4971,6 +5012,7 @@ broken-packages: - smuggler2 # failure in job https://hydra.nixos.org/build/233233932 at 2023-09-02 - smuggler # failure in job https://hydra.nixos.org/build/233199288 at 2023-09-02 - snake # failure in job https://hydra.nixos.org/build/233242029 at 2023-09-02 + - snake-game # failure in job https://hydra.nixos.org/build/234441416 at 2023-09-13 - snap-accept # failure in job https://hydra.nixos.org/build/233254776 at 2023-09-02 - snap-blaze-clay # failure in job https://hydra.nixos.org/build/233204686 at 2023-09-02 - snap-configuration-utilities # failure in job https://hydra.nixos.org/build/233202496 at 2023-09-02 @@ -5008,6 +5050,7 @@ broken-packages: - SpaceInvaders # failure in job https://hydra.nixos.org/build/233205063 at 2023-09-02 - spacepart # failure in job https://hydra.nixos.org/build/233190848 at 2023-09-02 - spake2 # failure in job https://hydra.nixos.org/build/233209098 at 2023-09-02 + - spanout # failure in job https://hydra.nixos.org/build/234462954 at 2023-09-13 - sparsecheck # failure in job https://hydra.nixos.org/build/233253454 at 2023-09-02 - sparse # failure in job https://hydra.nixos.org/build/233222289 at 2023-09-02 - sparse-lin-alg # failure in job https://hydra.nixos.org/build/233206178 at 2023-09-02 @@ -5314,8 +5357,8 @@ broken-packages: - tempus # failure in job https://hydra.nixos.org/build/233245670 at 2023-09-02 - ten # failure in job https://hydra.nixos.org/build/233216705 at 2023-09-02 - tensor # failure in job https://hydra.nixos.org/build/233233707 at 2023-09-02 - - tensorflow # failure building python tensorflow dependency 2023-09-09 - tensorflow-core-ops # failure building python tensorflow dependency 2023-09-09 + - tensorflow # failure building python tensorflow dependency 2023-09-09 - tensorflow-logging # failure building python tensorflow dependency 2023-09-09 - tensorflow-ops # failure building python tensorflow dependency 2023-09-09 - tensor-safe # failure in job https://hydra.nixos.org/build/233239719 at 2023-09-02 @@ -5412,6 +5455,7 @@ broken-packages: - tictactoe3d # failure in job https://hydra.nixos.org/build/233193080 at 2023-09-02 - TicTacToe # failure in job https://hydra.nixos.org/build/233256784 at 2023-09-02 - tidal-midi # failure in job https://hydra.nixos.org/build/233194389 at 2023-09-02 + - tidal-vis # failure in job https://hydra.nixos.org/build/234465445 at 2023-09-13 - tie-knot # failure in job https://hydra.nixos.org/build/233201321 at 2023-09-02 - tiempo # failure in job https://hydra.nixos.org/build/233250728 at 2023-09-02 - tiger # failure in job https://hydra.nixos.org/build/233249333 at 2023-09-02 @@ -5521,10 +5565,12 @@ broken-packages: - tripLL # failure in job https://hydra.nixos.org/build/233217806 at 2023-09-02 - trivia # failure in job https://hydra.nixos.org/build/233234176 at 2023-09-02 - tropical # failure in job https://hydra.nixos.org/build/233212835 at 2023-09-02 + - tropical-geometry # failure in job https://hydra.nixos.org/build/234465815 at 2023-09-13 - trust-chain # failure in job https://hydra.nixos.org/build/233252622 at 2023-09-02 - tsession # failure in job https://hydra.nixos.org/build/233259005 at 2023-09-02 - tslib # failure in job https://hydra.nixos.org/build/233225813 at 2023-09-02 - tsparse # failure in job https://hydra.nixos.org/build/233195941 at 2023-09-02 + - tsp-viz # failure in job https://hydra.nixos.org/build/234446818 at 2023-09-13 - tsuntsun # failure in job https://hydra.nixos.org/build/233259481 at 2023-09-02 - tsvsql # failure in job https://hydra.nixos.org/build/233230566 at 2023-09-02 - ttask # failure in job https://hydra.nixos.org/build/233227241 at 2023-09-02 @@ -5539,6 +5585,7 @@ broken-packages: - turing-machines # failure in job https://hydra.nixos.org/build/233195604 at 2023-09-02 - turing-music # failure in job https://hydra.nixos.org/build/233203435 at 2023-09-02 - turtle-options # failure in job https://hydra.nixos.org/build/233255831 at 2023-09-02 + - twain # failure in job https://hydra.nixos.org/build/234467075 at 2023-09-13 - tweak # failure in job https://hydra.nixos.org/build/233211020 at 2023-09-02 - twentefp-websockets # failure in job https://hydra.nixos.org/build/233207022 at 2023-09-02 - twhs # failure in job https://hydra.nixos.org/build/233201182 at 2023-09-02 @@ -5862,6 +5909,7 @@ broken-packages: - wgpu-raw-hs # failure in job https://hydra.nixos.org/build/233221814 at 2023-09-02 - Wheb # failure in job https://hydra.nixos.org/build/233258281 at 2023-09-02 - while-lang-parser # failure in job https://hydra.nixos.org/build/233237507 at 2023-09-02 + - whim # failure in job https://hydra.nixos.org/build/234465317 at 2023-09-13 - whiskers # failure in job https://hydra.nixos.org/build/233258941 at 2023-09-02 - whois # failure in job https://hydra.nixos.org/build/233250022 at 2023-09-02 - why3 # failure in job https://hydra.nixos.org/build/233235892 at 2023-09-02 @@ -5902,6 +5950,7 @@ broken-packages: - workflow-osx # failure in job https://hydra.nixos.org/build/233235315 at 2023-09-02 - workflow-windows # failure in job https://hydra.nixos.org/build/233257774 at 2023-09-02 - work-time # failure in job https://hydra.nixos.org/build/233245304 at 2023-09-02 + - worldturtle # failure in job https://hydra.nixos.org/build/234448293 at 2023-09-13 - wp-archivebot # failure in job https://hydra.nixos.org/build/233195749 at 2023-09-02 - wreq-helper # failure in job https://hydra.nixos.org/build/233228914 at 2023-09-02 - wreq-patchable # failure in job https://hydra.nixos.org/build/233237832 at 2023-09-02 @@ -5990,7 +6039,9 @@ broken-packages: - YamlReference # failure in job https://hydra.nixos.org/build/233222700 at 2023-09-02 - yaml-rpc # failure in job https://hydra.nixos.org/build/233192097 at 2023-09-02 - yaml-union # failure in job https://hydra.nixos.org/build/233253896 at 2023-09-02 + - yampa2048 # failure in job https://hydra.nixos.org/build/234450231 at 2023-09-13 - yampa-glfw # failure in job https://hydra.nixos.org/build/233215695 at 2023-09-02 + - yampa-glut # failure in job https://hydra.nixos.org/build/234458324 at 2023-09-13 - yampa-sdl2 # failure in job https://hydra.nixos.org/build/233246927 at 2023-09-02 - YampaSynth # failure in job https://hydra.nixos.org/build/233226486 at 2023-09-02 - yandex-translate # failure in job https://hydra.nixos.org/build/233225152 at 2023-09-02 diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml index e65913cc27a3..92800986c971 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml @@ -816,6 +816,7 @@ dont-distribute-packages: - cfopu - chainweb-mining-client - chakra + - chalkboard-viewer - chapelure - charade - chart-cli diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 62521b8869e2..92c22a31b363 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -35,6 +35,8 @@ self: { executableHaskellDepends = [ base GLUT OpenGL random ]; description = "Examples of 3D graphics programming with OpenGL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "3dmodels" = callPackage @@ -686,7 +688,9 @@ self: { testHaskellDepends = [ base hspec ]; description = "An easy-to-use video game framework for Haskell"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "actionkid"; + broken = true; }) {}; "Adaptive" = callPackage @@ -1215,7 +1219,9 @@ self: { ]; description = "Visualisation of Strange Attractors in 3-Dimensions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Attrac"; + broken = true; }) {}; "Aurochs" = callPackage @@ -8434,6 +8440,8 @@ self: { testHaskellDepends = [ base hspec QuickCheck ]; description = "2D game engine written in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HGL" = callPackage @@ -9912,6 +9920,8 @@ self: { testHaskellDepends = [ base bytestring directory GLUT HUnit ]; description = "Haskell-embedded OpenGL"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "HaLeX" = callPackage @@ -14101,7 +14111,9 @@ self: { executableHaskellDepends = [ base GLUT random ]; description = "A FRP library based on signal functions"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "MoeExample"; + broken = true; }) {}; "MoeDict" = callPackage @@ -14279,7 +14291,9 @@ self: { executableHaskellDepends = [ array base directory GLUT OpenGL ]; description = "2-D arcade scroller"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "monadius"; + broken = true; }) {}; "Monadoro" = callPackage @@ -16642,7 +16656,9 @@ self: { executableHaskellDepends = [ array base clock GLUT random ]; description = "An imaginary world"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "Pollutocracy"; + broken = true; }) {}; "PortFusion" = callPackage @@ -17700,7 +17716,9 @@ self: { ]; description = "Soccer simulation"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "Rasenschach"; + broken = true; }) {}; "Rasterific" = callPackage @@ -38523,7 +38541,9 @@ self: { executableHaskellDepends = [ base GLUT mtl OpenGL stm ]; description = "Space-based real time strategy game"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "armada"; + broken = true; }) {}; "armor" = callPackage @@ -41748,6 +41768,8 @@ self: { ]; description = "Generates and displays patterns from next nearest neighbors cellular automata"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "automata" = callPackage @@ -52425,7 +52447,9 @@ self: { ]; description = "audio-visual pseudo-physical simulation of colliding circles"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "bowntz"; + broken = true; }) {}; "box" = callPackage @@ -61407,7 +61431,9 @@ self: { description = "Combinators for building and processing 2D images"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; mainProgram = "chalkboard-server-1_9_0_16"; + broken = true; }) {}; "chalkboard-viewer" = callPackage @@ -61420,6 +61446,7 @@ self: { description = "OpenGL based viewer for chalkboard rendered images"; license = lib.licenses.bsd3; badPlatforms = lib.platforms.darwin; + hydraPlatforms = lib.platforms.none; }) {}; "chalmers-lava2000" = callPackage @@ -77243,7 +77270,9 @@ self: { executableHaskellDepends = [ base GLUT Yampa ]; description = "3D Yampa/GLUT Puzzle Game"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "cuboid"; + broken = true; }) {}; "cuckoo" = callPackage @@ -81430,7 +81459,9 @@ self: { ]; description = "Data consistency alerting for PostgreSQL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "dbmonitor"; + broken = true; }) {}; "dbus" = callPackage @@ -91778,7 +91809,9 @@ self: { ]; description = "Network multiplayer 2D shooting game"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "dual"; + broken = true; }) {}; "dual-tree" = callPackage @@ -92399,6 +92432,8 @@ self: { testHaskellDepends = [ base ]; description = "FRP library for processing-for-haskell package"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "dynamic" = callPackage @@ -108754,7 +108789,9 @@ self: { executableHaskellDepends = [ array base GLUT OpenGL random ]; description = "A 3-D First Person Shooter Game"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "frag"; + broken = true; }) {}; "frame" = callPackage @@ -111653,6 +111690,8 @@ self: { testHaskellDepends = [ async base hspec ]; description = "Fast Mutable Vars"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "fwgl" = callPackage @@ -121247,6 +121286,8 @@ self: { libraryHaskellDepends = [ base gloss reactive-banana ]; description = "An Interface for gloss in terms of a reactive-banana Behavior"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gloss-devil" = callPackage @@ -121298,7 +121339,9 @@ self: { testHaskellDepends = [ base directory filepath gloss JuicyPixels ]; description = "Export Gloss pictures to png, bmp, tga, tiff, gif and juicy-pixels-image"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "gloss-export-exe"; + broken = true; }) {}; "gloss-game" = callPackage @@ -121310,6 +121353,8 @@ self: { libraryHaskellDepends = [ base gloss gloss-juicy ]; description = "Gloss wrapper that simplifies writing games"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "gloss-juicy" = callPackage @@ -134977,7 +135022,9 @@ self: { executableHaskellDepends = [ base containers gloss ]; description = "Go and Checkers game in Haskell"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "haskell-go-checkers"; + broken = true; }) {}; "haskell-google-trends" = callPackage @@ -143426,7 +143473,9 @@ self: { ]; description = "A small game based on domino-like hexagonal tiles"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hexmino"; + broken = true; }) {}; "hexml" = callPackage @@ -143913,7 +143962,9 @@ self: { executableHaskellDepends = [ base ]; description = "Hess-Smith panel code for inviscid 2-d airfoil analysis"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "hfoil"; + broken = true; }) {}; "hformat" = callPackage @@ -152214,7 +152265,9 @@ self: { ]; description = "AI of Pylos game with GLUT interface"; license = "GPL"; + hydraPlatforms = lib.platforms.none; mainProgram = "hpylos"; + broken = true; }) {}; "hpyrg" = callPackage @@ -152707,6 +152760,8 @@ self: { ]; description = "Example Monte Carlo simulations implemented with Carbon"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "hs-cdb" = callPackage @@ -158611,6 +158666,8 @@ self: { ]; description = "Beginner friendly graphics library"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "htestu" = callPackage @@ -160817,7 +160874,9 @@ self: { description = "harmonic analyser and tuner for musical instruments"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; + hydraPlatforms = lib.platforms.none; mainProgram = "htune"; + broken = true; }) {}; "htvm" = callPackage @@ -178719,6 +178778,8 @@ self: { libraryHaskellDepends = [ base GLUT mtl OpenGL time ]; description = "Educational drawing canvas for FP explorers"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "lambda-cube" = callPackage @@ -179076,7 +179137,9 @@ self: { ]; description = "Lambdabot for Telegram"; license = lib.licenses.gpl2Plus; + hydraPlatforms = lib.platforms.none; mainProgram = "telegram-lambdabot"; + broken = true; }) {}; "lambdabot-trusted" = callPackage @@ -182582,6 +182645,8 @@ self: { ]; description = "examples for learn-physics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "learning-hmm" = callPackage @@ -184724,6 +184789,8 @@ self: { ]; description = "Bindings for secp256k1"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {inherit (pkgs) secp256k1;}; "libsodium" = callPackage @@ -185331,7 +185398,9 @@ self: { ]; description = "A boulderdash-like game and solution validator"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "lifter"; + broken = true; }) {}; "lifx-lan" = callPackage @@ -193172,7 +193241,9 @@ self: { ]; description = "A zooming visualisation of the Mandelbrot Set as many Julia Sets"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "mandulia"; + broken = true; }) {}; "mangopay" = callPackage @@ -193850,6 +193921,8 @@ self: { ]; description = "Generates mountainous terrain using a random walk algorithm"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "marshal-contt" = callPackage @@ -195168,6 +195241,8 @@ self: { isExecutable = true; executableHaskellDepends = [ base gloss ]; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "mcmc" = callPackage @@ -219529,6 +219604,8 @@ self: { libraryHaskellDepends = [ base colour gloss random ]; description = "Implements an osculatory packing (kissing circles) algorithm and display"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "osdkeys" = callPackage @@ -239329,7 +239406,9 @@ self: { executableHaskellDepends = [ base ]; description = "Telegram bot for proof assistants"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "proof-assistant-bot"; + broken = true; }) {}; "proof-combinators" = callPackage @@ -249048,6 +249127,8 @@ self: { ]; description = "An reflex interface for gloss"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "reflex-gloss-scene" = callPackage @@ -273552,6 +273633,8 @@ self: { libraryHaskellDepends = [ base GLUT OpenGL random ]; description = "Snake Game Using OpenGL"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "snap" = callPackage @@ -276358,7 +276441,9 @@ self: { ]; description = "A breakout clone written in netwire and gloss"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "spanout"; + broken = true; }) {}; "sparkle" = callPackage @@ -296683,7 +296768,9 @@ self: { executableHaskellDepends = [ base ]; description = "Visual rendering for Tidal patterns and osc messages"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "tidal-vis"; + broken = true; }) {}; "tie-knot" = callPackage @@ -302017,7 +302104,9 @@ self: { benchmarkHaskellDepends = [ base criterion ]; description = "A Tropical Geometry package for Haskell"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; mainProgram = "tropical-geometry"; + broken = true; }) {}; "true-name" = callPackage @@ -302230,7 +302319,9 @@ self: { executableHaskellDepends = [ base gloss stm vector ]; description = "Real time TSP tour visualization"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "tsp-viz"; + broken = true; }) {}; "tsparse" = callPackage @@ -302950,6 +303041,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Tiny web application framework for WAI"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "tweak" = callPackage @@ -318533,7 +318626,9 @@ self: { ]; description = "A Haskell window manager"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "whim"; + broken = true; }) {}; "whiskers" = callPackage @@ -320137,6 +320232,8 @@ self: { ]; description = "LOGO-like Turtle graphics with a monadic interface"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "wp-archivebot" = callPackage @@ -324583,6 +324680,8 @@ self: { ]; description = "Connects Yampa and GLUT"; license = lib.licenses.gpl3Only; + hydraPlatforms = lib.platforms.none; + broken = true; }) {}; "yampa-sdl2" = callPackage @@ -324634,7 +324733,9 @@ self: { executableHaskellDepends = [ base gloss random Yampa ]; description = "2048 game clone using Yampa/Gloss"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; mainProgram = "yampa2048"; + broken = true; }) {}; "yandex-translate" = callPackage From da19ea145b49345d014873ed417b64bd4b258585 Mon Sep 17 00:00:00 2001 From: Alvar Penning Date: Fri, 7 Apr 2023 18:12:50 +0200 Subject: [PATCH 317/346] umlet: 15.0.0 -> 15.1.0 Based on : - Fix of a pesky, zero-size relation bug - log4j mitigation (not a problem per se, but had triggered warnings) - Dark mode tweaks --- pkgs/tools/misc/umlet/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/misc/umlet/default.nix b/pkgs/tools/misc/umlet/default.nix index 41da294d19a5..67cf61ebe5a1 100644 --- a/pkgs/tools/misc/umlet/default.nix +++ b/pkgs/tools/misc/umlet/default.nix @@ -1,16 +1,16 @@ { lib, stdenv, fetchurl, jre, unzip, runtimeShell }: -let - major = "15"; - minor = "0"; - patch = "0"; -in stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "umlet"; - version = "${major}.${minor}.${patch}"; + version = "15.1.0"; src = fetchurl { - url = "https://www.umlet.com/umlet_${major}_${minor}/umlet-standalone-${version}.zip"; - sha256 = "sha256-gdvhqYGyrFuQhhrkF26wXb3TQLRCLm59/uSxTPmHdAE="; + # NOTE: The download URL breaks consistency - sometimes w/ patch versions + # and sometimes w/o. Furthermore, for 15.1.0 they moved everything to the + # new /download subfolder. + # As releases are very rarely, just modify it by hand.. + url = "https://www.umlet.com/download/umlet_15_1/umlet-standalone-15.1.zip"; + hash = "sha256-M6oVWbOmPBTygS+TFkY9PWucFfYLD33suNUuWpFLMIo="; }; nativeBuildInputs = [ unzip ]; From 0c49e39b344f4b0eef6349fe669d9915be1c6129 Mon Sep 17 00:00:00 2001 From: Michael Hanley Date: Tue, 12 Sep 2023 23:52:04 -0400 Subject: [PATCH 318/346] surrealdb: 1.0.0-beta.11 -> 1.0.0-beta.12 --- pkgs/servers/nosql/surrealdb/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/nosql/surrealdb/default.nix b/pkgs/servers/nosql/surrealdb/default.nix index dbc0310fc3c2..ea569ada9516 100644 --- a/pkgs/servers/nosql/surrealdb/default.nix +++ b/pkgs/servers/nosql/surrealdb/default.nix @@ -13,16 +13,16 @@ rustPlatform.buildRustPackage rec { pname = "surrealdb"; - version = "1.0.0-beta.11"; + version = "1.0.0-beta.12"; src = fetchFromGitHub { owner = "surrealdb"; repo = "surrealdb"; rev = "v${version}"; - hash = "sha256-y2oZ9zqWkc//Dc6eIvDiEjG8FZf1hMS+dDOVaFDT3Jk="; + hash = "sha256-9/TwhLoWQTwKlm+NqiRc3L2UTfKTM4opq5/i87yJNvM="; }; - cargoHash = "sha256-rPROcDjQTxwB+Pcv2quE9z1FK5irPRDdmfviY0GoTx4="; + cargoHash = "sha256-whMWB8WDSlVxElNKEdx4tol6qdGRZGlUaQg+xsOYZyM="; # error: linker `aarch64-linux-gnu-gcc` not found postPatch = '' From 803e1de34e5ec677424f952cfaa70e6dbeb6dfe7 Mon Sep 17 00:00:00 2001 From: Michael Hanley Date: Wed, 13 Sep 2023 11:14:42 -0400 Subject: [PATCH 319/346] surrealdb: 1.0.0-beta.12 -> 1.0.0 --- pkgs/servers/nosql/surrealdb/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/nosql/surrealdb/default.nix b/pkgs/servers/nosql/surrealdb/default.nix index ea569ada9516..22903725a5ed 100644 --- a/pkgs/servers/nosql/surrealdb/default.nix +++ b/pkgs/servers/nosql/surrealdb/default.nix @@ -13,16 +13,16 @@ rustPlatform.buildRustPackage rec { pname = "surrealdb"; - version = "1.0.0-beta.12"; + version = "1.0.0"; src = fetchFromGitHub { owner = "surrealdb"; repo = "surrealdb"; rev = "v${version}"; - hash = "sha256-9/TwhLoWQTwKlm+NqiRc3L2UTfKTM4opq5/i87yJNvM="; + hash = "sha256-rBqg8tMcdc9VavYQDiKQwNp2IxYvpDNB/Qb74uiMmO4="; }; - cargoHash = "sha256-whMWB8WDSlVxElNKEdx4tol6qdGRZGlUaQg+xsOYZyM="; + cargoHash = "sha256-qbKc9/n4bOvdP2iXg6IF3jAwxx6Wj17Uxlj3F/gx+1g="; # error: linker `aarch64-linux-gnu-gcc` not found postPatch = '' From 8e32f5b91d5263ff6e6ce939e85dfffc0c691185 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Sep 2023 16:41:59 +0000 Subject: [PATCH 320/346] python311Packages.async-upnp-client: 0.35.0 -> 0.35.1 Diff: https://github.com/StevenLooman/async_upnp_client/compare/refs/tags/0.35.0...0.35.1 Changelog: https://github.com/StevenLooman/async_upnp_client/blob/0.35.1/CHANGES.rst --- pkgs/development/python-modules/async-upnp-client/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/async-upnp-client/default.nix b/pkgs/development/python-modules/async-upnp-client/default.nix index 7f6130414488..acebba712643 100644 --- a/pkgs/development/python-modules/async-upnp-client/default.nix +++ b/pkgs/development/python-modules/async-upnp-client/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "async-upnp-client"; - version = "0.35.0"; + version = "0.35.1"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "StevenLooman"; repo = "async_upnp_client"; rev = "refs/tags/${version}"; - hash = "sha256-U1PkOu257ppSsoPQr4oYdNKkUrm1WKAPuuMy1pjLx8A="; + hash = "sha256-owg9oZv/smovJPoCjr9Y0TK4Ap5IMD7cNagtkYkJk1c="; }; propagatedBuildInputs = [ From b45794eb9681a0871e6d336eb9ab04e93e7fa74e Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Wed, 13 Sep 2023 15:30:27 -0400 Subject: [PATCH 321/346] haskellPackages.twain: unbreak by overriding http2 deeply --- pkgs/development/haskell-modules/configuration-common.nix | 4 +++- .../haskell-modules/configuration-hackage2nix/broken.yaml | 1 - pkgs/development/haskell-modules/hackage-packages.nix | 2 -- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 6df27eaf6c57..c5aef8b2b131 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -319,7 +319,9 @@ self: super: { patat = super.patat.override { pandoc = self.pandoc_3_1_6_1; }; # http2 also overridden in all-packages.nix for mailctl. - twain = super.twain.override { http2 = self.http2_3_0_3; }; + # twain is currently only used by mailctl, so the .overrideScope shouldn't + # negatively affect any other packages, at least currently... + twain = super.twain.overrideScope (self: _: { http2 = self.http2_3_0_3; }); # The latest release on hackage has an upper bound on containers which # breaks the build, though it works with the version of containers present diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml index 35dc2c2742f4..acf19176b95e 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml @@ -5585,7 +5585,6 @@ broken-packages: - turing-machines # failure in job https://hydra.nixos.org/build/233195604 at 2023-09-02 - turing-music # failure in job https://hydra.nixos.org/build/233203435 at 2023-09-02 - turtle-options # failure in job https://hydra.nixos.org/build/233255831 at 2023-09-02 - - twain # failure in job https://hydra.nixos.org/build/234467075 at 2023-09-13 - tweak # failure in job https://hydra.nixos.org/build/233211020 at 2023-09-02 - twentefp-websockets # failure in job https://hydra.nixos.org/build/233207022 at 2023-09-02 - twhs # failure in job https://hydra.nixos.org/build/233201182 at 2023-09-02 diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 92c22a31b363..d6cc9f68a091 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -303041,8 +303041,6 @@ self: { testToolDepends = [ hspec-discover ]; description = "Tiny web application framework for WAI"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; }) {}; "tweak" = callPackage From 696353fcf4b6c290003344e0e26802db7c2eaf51 Mon Sep 17 00:00:00 2001 From: Artturin Date: Sun, 20 Aug 2023 10:40:24 +0300 Subject: [PATCH 322/346] nixos/zfs: disable redundant scheduler I (according to the comment) wrote this somewhere and since then it has spread to many configs. https://github.com/search?q=artturin+ENV%7BID_FS_TYPE%7D%3D%3D%22zfs_member%22%2C+ATTR%7B..%2Fqueue%2Fscheduler%7D%3D%22none%22&type=code https://github.com/NixOS/nixpkgs/issues/169457#issuecomment-1523873402 --- nixos/modules/tasks/filesystems/zfs.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix index 21d604bee6e3..5cf863c87f27 100644 --- a/nixos/modules/tasks/filesystems/zfs.nix +++ b/nixos/modules/tasks/filesystems/zfs.nix @@ -662,6 +662,11 @@ in ]; }; + # ZFS already has its own scheduler. Without this my(@Artturin) computer froze for a second when I nix build something. + services.udev.extraRules = '' + ACTION=="add|change", KERNEL=="sd[a-z]*[0-9]*|mmcblk[0-9]*p[0-9]*|nvme[0-9]*n[0-9]*p[0-9]*", ENV{ID_FS_TYPE}=="zfs_member", ATTR{../queue/scheduler}="none" + ''; + environment.etc = genAttrs (map (file: "zfs/zed.d/${file}") From 0f549bb91bb4b71c2516a4bc973eb5c77f1df5f3 Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Wed, 13 Sep 2023 15:43:45 -0400 Subject: [PATCH 323/346] haskellPackages.pg-client: mark broken --- pkgs/development/misc/haskell/hasura/pg-client.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/misc/haskell/hasura/pg-client.nix b/pkgs/development/misc/haskell/hasura/pg-client.nix index 92d556824dbd..1c79a70271da 100644 --- a/pkgs/development/misc/haskell/hasura/pg-client.nix +++ b/pkgs/development/misc/haskell/hasura/pg-client.nix @@ -33,5 +33,7 @@ mkDerivation { ]; homepage = "https://github.com/hasura/platform"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; maintainers = with lib.maintainers; [ lassulus ]; + broken = true; } From da61e87c86619e13e4d79ccb8fa7897044d43653 Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Wed, 13 Sep 2023 15:44:09 -0400 Subject: [PATCH 324/346] haskellPackages.hasura-ekg-json: mark broken --- pkgs/development/misc/haskell/hasura/ekg-json.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/misc/haskell/hasura/ekg-json.nix b/pkgs/development/misc/haskell/hasura/ekg-json.nix index bb71aef27970..db5c7ffb0346 100644 --- a/pkgs/development/misc/haskell/hasura/ekg-json.nix +++ b/pkgs/development/misc/haskell/hasura/ekg-json.nix @@ -21,5 +21,7 @@ mkDerivation { homepage = "https://github.com/tibbe/ekg-json"; description = "JSON encoding of ekg metrics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = with lib.maintainers; [ lassulus ]; + broken = true; } From 535268e39f154903e70e0a2a64c385e1e92e76fe Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Wed, 13 Sep 2023 15:44:37 -0400 Subject: [PATCH 325/346] haskellPackages.hasura-ekg-core: mark broken --- pkgs/development/misc/haskell/hasura/ekg-core.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/misc/haskell/hasura/ekg-core.nix b/pkgs/development/misc/haskell/hasura/ekg-core.nix index 2d1b62bc16c7..7298eb75076b 100644 --- a/pkgs/development/misc/haskell/hasura/ekg-core.nix +++ b/pkgs/development/misc/haskell/hasura/ekg-core.nix @@ -29,5 +29,7 @@ mkDerivation { homepage = "https://github.com/tibbe/ekg-core"; description = "Tracking of system metrics"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; maintainers = with lib.maintainers; [ lassulus ]; + broken = true; } From 52009788c7430265391a07f7a9a4f400377ffc8d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Sep 2023 22:13:12 +0200 Subject: [PATCH 326/346] gotestwaf: 0.4.3 -> 0.4.6 Diff: https://github.com/wallarm/gotestwaf/compare/refs/tags/v0.4.3...v0.4.6 Changelog: https://github.com/wallarm/gotestwaf/releases/tag/v0.4.6 --- pkgs/tools/security/gotestwaf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/gotestwaf/default.nix b/pkgs/tools/security/gotestwaf/default.nix index 0ccc2b9c3b1d..46ad8ffd952b 100644 --- a/pkgs/tools/security/gotestwaf/default.nix +++ b/pkgs/tools/security/gotestwaf/default.nix @@ -7,13 +7,13 @@ buildGoModule rec { pname = "gotestwaf"; - version = "0.4.3"; + version = "0.4.6"; src = fetchFromGitHub { owner = "wallarm"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-NalXG4I4BtDU7vfKb4H3gJERDQ92Y/46OWIgdg+7+MA="; + hash = "sha256-jiEs5/HWNZ3DmahWVC6j2eJqFyCAibp1rFS+gtK7haI="; }; vendorHash = null; From b0409d7aa514616857023d4ed5237f275c6c816e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Sep 2023 22:20:16 +0200 Subject: [PATCH 327/346] python311Packages.checkdmarc: 4.8.0 -> 4.8.4 Diff: https://github.com/domainaware/checkdmarc/compare/refs/tags/4.8.0...4.8.4 Changelog: https://github.com/domainaware/checkdmarc/blob/4.8.4/CHANGELOG.md --- pkgs/development/python-modules/checkdmarc/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/checkdmarc/default.nix b/pkgs/development/python-modules/checkdmarc/default.nix index e7cedec9791b..6c261cff35fd 100644 --- a/pkgs/development/python-modules/checkdmarc/default.nix +++ b/pkgs/development/python-modules/checkdmarc/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "checkdmarc"; - version = "4.8.0"; + version = "4.8.4"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -24,9 +24,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "domainaware"; repo = "checkdmarc"; - # https://github.com/domainaware/checkdmarc/issues/102 - rev = "d0364ceef3cfd41052273913369e3831cb6fe4fd"; - hash = "sha256-OSljewDeyJtoxkCQjPU9wIsNhhxumHmeu9GHvRD4DRY="; + rev = "refs/tags/${version}"; + hash = "sha256-NNB5dYQzzdNapjP4mtpCW08BzfZ+FFRESUtpxCOzrdk="; }; nativeBuildInputs = [ From 99687e1a713317b319eb8e555f486195dcfe15dd Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Sep 2023 22:49:50 +0200 Subject: [PATCH 328/346] python311Packages.amcrest: 1.9.7 -> 1.9.8 Diff: https://github.com/tchellomello/python-amcrest/compare/1.9.7...1.9.8 --- pkgs/development/python-modules/amcrest/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/amcrest/default.nix b/pkgs/development/python-modules/amcrest/default.nix index 83ccc797cf12..2440a3892c69 100644 --- a/pkgs/development/python-modules/amcrest/default.nix +++ b/pkgs/development/python-modules/amcrest/default.nix @@ -14,14 +14,14 @@ buildPythonPackage rec { pname = "amcrest"; - version = "1.9.7"; + version = "1.9.8"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "tchellomello"; repo = "python-amcrest"; rev = version; - hash = "sha256-An7MnGtZsmEZU/y6E0sivdexFD6HJRTB1juXqHfbDzE="; + hash = "sha256-v0jWEZo06vltEq//suGrvJ/AeeDxUG5CCFhbf03q34w="; }; propagatedBuildInputs = [ From fb3d95c48db0a5d7e2c5e7cb40b04e02c80bc124 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Sep 2023 22:51:03 +0200 Subject: [PATCH 329/346] python311Packages.millheater: 0.11.2 -> 0.11.5 Diff: https://github.com/Danielhiversen/pymill/compare/refs/tags/0.11.2...0.11.5 Changelog: https://github.com/Danielhiversen/pymill/releases/tag/0.11.5 --- pkgs/development/python-modules/millheater/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/millheater/default.nix b/pkgs/development/python-modules/millheater/default.nix index b5153d7c4028..adf1eca9d576 100644 --- a/pkgs/development/python-modules/millheater/default.nix +++ b/pkgs/development/python-modules/millheater/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "millheater"; - version = "0.11.2"; + version = "0.11.5"; format = "setuptools"; disabled = pythonOlder "3.10"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "Danielhiversen"; repo = "pymill"; rev = "refs/tags/${version}"; - hash = "sha256-PsNT/mZ4Dun4s9QpGRyEuVxYcM5AXaUS28UsSOowOb4="; + hash = "sha256-rDEzMxXsbHvxAmPx1IFC5S8jG8LO8TNuNq/ISkdPWsU="; }; propagatedBuildInputs = [ From f3cb38ef5b46b5c4eee9cb0213f709ac6ebf10df Mon Sep 17 00:00:00 2001 From: nat Date: Wed, 13 Sep 2023 22:52:37 +0200 Subject: [PATCH 330/346] steamguard-cli: 0.12.0 -> 0.12.1 --- pkgs/tools/security/steamguard-cli/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/steamguard-cli/default.nix b/pkgs/tools/security/steamguard-cli/default.nix index b5c53ac3ee24..08ed47b165e0 100644 --- a/pkgs/tools/security/steamguard-cli/default.nix +++ b/pkgs/tools/security/steamguard-cli/default.nix @@ -5,16 +5,16 @@ rustPlatform.buildRustPackage rec { pname = "steamguard-cli"; - version = "0.12.0"; + version = "0.12.1"; src = fetchFromGitHub { owner = "dyc3"; repo = pname; rev = "v${version}"; - hash = "sha256-WCEMZTi9/EI8JaUM5w2xJkx0x3DoaByORgVqw1TPcgI="; + hash = "sha256-i+q8hiElLuA1oHRLASiO/icEmhd1VqvV/zKGV0CSXms="; }; - cargoHash = "sha256-FVjL0tFndJNsL5oZSSqBvMtCEPqzf5xZGd8NaV5nmr4="; + cargoHash = "sha256-1K482GygV9SLpbpwF1iI3pwL0gcNo0eM2goKTgscK64="; meta = with lib; { changelog = "https://github.com/dyc3/steamguard-cli/releases/tag/v${version}"; From 2d239fa2f689d54744d56ebd50d91b13d13f0835 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Sep 2023 22:55:21 +0200 Subject: [PATCH 331/346] python311Packages.amcrest: add changelog - update disabled --- pkgs/development/python-modules/amcrest/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/amcrest/default.nix b/pkgs/development/python-modules/amcrest/default.nix index 2440a3892c69..1de7da6f829f 100644 --- a/pkgs/development/python-modules/amcrest/default.nix +++ b/pkgs/development/python-modules/amcrest/default.nix @@ -15,12 +15,14 @@ buildPythonPackage rec { pname = "amcrest"; version = "1.9.8"; - disabled = pythonOlder "3.6"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "tchellomello"; repo = "python-amcrest"; - rev = version; + rev = "refs/tags/${version}"; hash = "sha256-v0jWEZo06vltEq//suGrvJ/AeeDxUG5CCFhbf03q34w="; }; @@ -38,11 +40,14 @@ buildPythonPackage rec { responses ]; - pythonImportsCheck = [ "amcrest" ]; + pythonImportsCheck = [ + "amcrest" + ]; meta = with lib; { description = "Python module for Amcrest and Dahua Cameras"; homepage = "https://github.com/tchellomello/python-amcrest"; + changelog = "https://github.com/tchellomello/python-amcrest/releases/tag/${version}"; license = with licenses; [ gpl2Only ]; maintainers = with maintainers; [ fab ]; }; From a9e6dbda91e1398d1ac50f8c20e4f90563ffcbd4 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Sep 2023 22:58:57 +0200 Subject: [PATCH 332/346] python311Packages.dbus-fast: 2.2.0 -> 2.3.0 Diff: https://github.com/Bluetooth-Devices/dbus-fast/compare/refs/tags/v2.2.0...2.3.0 Changelog: https://github.com/Bluetooth-Devices/dbus-fast/releases/tag/v2.3.0 --- pkgs/development/python-modules/dbus-fast/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/dbus-fast/default.nix b/pkgs/development/python-modules/dbus-fast/default.nix index c956c4acb1e2..56603764664c 100644 --- a/pkgs/development/python-modules/dbus-fast/default.nix +++ b/pkgs/development/python-modules/dbus-fast/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "dbus-fast"; - version = "2.2.0"; + version = "2.3.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "Bluetooth-Devices"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-47Z8szHVBz8Sx7g+WiKfLzg3MIFTyMjPLDlgGfPb//U="; + hash = "sha256-XipjatbigypuB5z/zvROlLyaPnwLQ+gmdQGxKavprLI="; }; # The project can build both an optimized cython version and an unoptimized From 6617b259898108871782e3f295b2aadb043dca1d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Sep 2023 23:01:24 +0200 Subject: [PATCH 333/346] python311Packages.dbus-fast: 2.3.0 -> 2.4.0 Diff: https://github.com/Bluetooth-Devices/dbus-fast/compare/refs/tags/v2.3.0...2.4.0 Changelog: https://github.com/Bluetooth-Devices/dbus-fast/releases/tag/v2.4.0 --- pkgs/development/python-modules/dbus-fast/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/dbus-fast/default.nix b/pkgs/development/python-modules/dbus-fast/default.nix index 56603764664c..166eaa82690c 100644 --- a/pkgs/development/python-modules/dbus-fast/default.nix +++ b/pkgs/development/python-modules/dbus-fast/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "dbus-fast"; - version = "2.3.0"; + version = "2.4.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "Bluetooth-Devices"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-XipjatbigypuB5z/zvROlLyaPnwLQ+gmdQGxKavprLI="; + hash = "sha256-gZUJpwhUK/A0IAQPeJB1Rcsve6N6TkBzTEKuCP+1L6w="; }; # The project can build both an optimized cython version and an unoptimized From 58389446fdeff3d4e73dcbc9a0f72f5bec010fa9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Sep 2023 23:04:10 +0200 Subject: [PATCH 334/346] python311Packages.dbus-fast: 2.4.0 -> 2.5.0 Diff: https://github.com/Bluetooth-Devices/dbus-fast/compare/refs/tags/v2.4.0...2.5.0 Changelog: https://github.com/Bluetooth-Devices/dbus-fast/releases/tag/v2.5.0 --- pkgs/development/python-modules/dbus-fast/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/dbus-fast/default.nix b/pkgs/development/python-modules/dbus-fast/default.nix index 166eaa82690c..7216eb78e689 100644 --- a/pkgs/development/python-modules/dbus-fast/default.nix +++ b/pkgs/development/python-modules/dbus-fast/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "dbus-fast"; - version = "2.4.0"; + version = "2.5.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "Bluetooth-Devices"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-gZUJpwhUK/A0IAQPeJB1Rcsve6N6TkBzTEKuCP+1L6w="; + hash = "sha256-eSG1jK1bAl0RhxKrOWm5L+D+3bYQo9ytyVWVNnBEb5U="; }; # The project can build both an optimized cython version and an unoptimized From 1c031e25f62209ce738ded0c2c3be9e7fbfbcc60 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Sep 2023 23:07:17 +0200 Subject: [PATCH 335/346] python311Packages.dbus-fast: 2.5.0 -> 2.6.0 Diff: https://github.com/Bluetooth-Devices/dbus-fast/compare/refs/tags/v2.5.0...2.6.0 Changelog: https://github.com/Bluetooth-Devices/dbus-fast/releases/tag/v2.6.0 --- pkgs/development/python-modules/dbus-fast/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/dbus-fast/default.nix b/pkgs/development/python-modules/dbus-fast/default.nix index 7216eb78e689..f5c89b56e2e0 100644 --- a/pkgs/development/python-modules/dbus-fast/default.nix +++ b/pkgs/development/python-modules/dbus-fast/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "dbus-fast"; - version = "2.5.0"; + version = "2.6.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "Bluetooth-Devices"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-eSG1jK1bAl0RhxKrOWm5L+D+3bYQo9ytyVWVNnBEb5U="; + hash = "sha256-zOrPFLrwW9kWE/IypFU1r/DK2qZBEezT7E7BgsXoZqI="; }; # The project can build both an optimized cython version and an unoptimized From 8a17ac4a03bb9b0c42d2a63b57db726f87fa761f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Sep 2023 23:09:38 +0200 Subject: [PATCH 336/346] python311Packages.dbus-fast: 2.6.0 -> 2.7.0 Diff: https://github.com/Bluetooth-Devices/dbus-fast/compare/refs/tags/v2.6.0...2.7.0 Changelog: https://github.com/Bluetooth-Devices/dbus-fast/releases/tag/v2.7.0 --- pkgs/development/python-modules/dbus-fast/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/dbus-fast/default.nix b/pkgs/development/python-modules/dbus-fast/default.nix index f5c89b56e2e0..5dc9b5675a4d 100644 --- a/pkgs/development/python-modules/dbus-fast/default.nix +++ b/pkgs/development/python-modules/dbus-fast/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "dbus-fast"; - version = "2.6.0"; + version = "2.7.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "Bluetooth-Devices"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-zOrPFLrwW9kWE/IypFU1r/DK2qZBEezT7E7BgsXoZqI="; + hash = "sha256-o75N/msocSYBe3tTLYGJbqMnbiQb/t3nfJIDDr6kPxM="; }; # The project can build both an optimized cython version and an unoptimized From 453c5c2593780f5188c1313a97541fa496e3a1f7 Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Wed, 13 Sep 2023 17:29:36 -0400 Subject: [PATCH 337/346] spago: mark broken --- pkgs/development/tools/purescript/spago/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/development/tools/purescript/spago/default.nix b/pkgs/development/tools/purescript/spago/default.nix index bc4587816ff1..ada0eb350efa 100644 --- a/pkgs/development/tools/purescript/spago/default.nix +++ b/pkgs/development/tools/purescript/spago/default.nix @@ -17,8 +17,6 @@ let (haskell.lib.compose.overrideCabal (oldAttrs: { changelog = "https://github.com/purescript/spago/releases/tag/${oldAttrs.version}"; })) - haskell.lib.compose.unmarkBroken - haskell.lib.compose.doDistribute ]; in From 65182a9f4f49cdd13bd576859d907222a398aada Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 5 Sep 2023 06:48:38 +0000 Subject: [PATCH 338/346] kops_1_27: 1.27.0 -> 1.27.1 --- pkgs/applications/networking/cluster/kops/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/kops/default.nix b/pkgs/applications/networking/cluster/kops/default.nix index e09127df6d5b..9494729b68d7 100644 --- a/pkgs/applications/networking/cluster/kops/default.nix +++ b/pkgs/applications/networking/cluster/kops/default.nix @@ -61,8 +61,8 @@ rec { }; kops_1_27 = mkKops rec { - version = "1.27.0"; - sha256 = "sha256-XJOdqOT/vMVXZmVasXRb+pdmWcSd6lsyQDCnZKyqrto="; + version = "1.27.1"; + sha256 = "sha256-WV+0380yj8GHckY4PDM3WspbZ/YuYZOAQEMd2ygEOjo="; rev = "v${version}"; }; } From 667b990475903154fa0559730ce5d55e1a0dbf69 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Tue, 12 Sep 2023 22:23:24 +0200 Subject: [PATCH 339/346] mpfi: switch source to INRIA GitLab --- pkgs/development/libraries/mpfi/default.nix | 27 ++++++++++++++------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/pkgs/development/libraries/mpfi/default.nix b/pkgs/development/libraries/mpfi/default.nix index 152c35e6e6f0..4bc568523c9f 100644 --- a/pkgs/development/libraries/mpfi/default.nix +++ b/pkgs/development/libraries/mpfi/default.nix @@ -1,23 +1,32 @@ -{lib, stdenv, fetchurl, autoreconfHook, texinfo, mpfr}: +{lib, stdenv, fetchFromGitLab, autoreconfHook, texinfo, mpfr}: stdenv.mkDerivation rec { pname = "mpfi"; version = "1.5.4"; - file_nr = "38111"; - src = fetchurl { - # NOTE: the file_nr is whats important here. The actual package name (including the version) - # is ignored. To find out the correct file_nr, go to https://gforge.inria.fr/projects/mpfi/ - # and click on Download in the section "Latest File Releases". - url = "https://gforge.inria.fr/frs/download.php/file/${file_nr}/mpfi-${version}.tgz"; - sha256 = "sha256-Ozk4WV1yCvF5c96vcnz8DdQcixbCCtwQOpcPSkOuOlY="; + src = fetchFromGitLab { + domain = "gitlab.inria.fr"; + owner = "mpfi"; + repo = "mpfi"; + + # Apparently there is an upstream off-by-one-commit error in tagging + # Conditional to allow auto-updaters to try new releases + # TODO: remove the conditional after an upstream update + # rev = version; + rev = if version == "1.5.4" then + "feab26bc54529417af983950ddbffb3a4c334d4f" + else version; + + sha256 = "sha256-aj/QmJ38ifsW36JFQcbp55aIQRvOpiqLHwEh/aFXsgo="; }; + sourceRoot = "source/mpfi"; + nativeBuildInputs = [ autoreconfHook texinfo ]; buildInputs = [ mpfr ]; meta = { description = "A multiple precision interval arithmetic library based on MPFR"; - homepage = "https://gforge.inria.fr/projects/mpfi/"; + homepage = "http://perso.ens-lyon.fr/nathalie.revol/software.html"; license = lib.licenses.lgpl21Plus; maintainers = [lib.maintainers.raskin]; platforms = lib.platforms.unix; From 191f3e6f5d3728ee894080fdba222971729210a6 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Wed, 13 Sep 2023 17:20:47 -0500 Subject: [PATCH 340/346] yabai: 5.0.7 -> 5.0.8 --- pkgs/os-specific/darwin/yabai/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/darwin/yabai/default.nix b/pkgs/os-specific/darwin/yabai/default.nix index 66f78da85d6f..14d3ccbc0469 100644 --- a/pkgs/os-specific/darwin/yabai/default.nix +++ b/pkgs/os-specific/darwin/yabai/default.nix @@ -17,7 +17,7 @@ let pname = "yabai"; - version = "5.0.7"; + version = "5.0.8"; test-version = testers.testVersion { package = yabai; @@ -53,7 +53,7 @@ in src = fetchzip { url = "https://github.com/koekeishiya/yabai/releases/download/v${version}/yabai-v${version}.tar.gz"; - hash = "sha256-6RtA3xFOVwTYrfHE72Qa65kDSwv/3/NQ8z4bVCsm9Fc="; + hash = "sha256-w4MTHHYWwBq0/WkemYIeV49aA/DzFxXITD8gF5St0Yo="; }; nativeBuildInputs = [ @@ -89,7 +89,7 @@ in owner = "koekeishiya"; repo = "yabai"; rev = "v${version}"; - hash = "sha256-wFrMMiy+K+bnEeVyY3RGVZBoxiKQ69Q+Bp1xa+IcWas="; + hash = "sha256-VahfeKYz/cATb0RF9QykngMtRpCh392jY8aJuggpqMU="; }; nativeBuildInputs = [ From dd885254582d876e3b37ad1cd64712fe4bc3d60d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 5 Sep 2023 21:25:16 -0700 Subject: [PATCH 341/346] synapse-admin: use fetchYarnDeps --- pkgs/tools/admin/synapse-admin/default.nix | 7 +- pkgs/tools/admin/synapse-admin/yarn.nix | 11597 ------------------- 2 files changed, 6 insertions(+), 11598 deletions(-) delete mode 100644 pkgs/tools/admin/synapse-admin/yarn.nix diff --git a/pkgs/tools/admin/synapse-admin/default.nix b/pkgs/tools/admin/synapse-admin/default.nix index ec99b668c74b..55797f7c2e17 100644 --- a/pkgs/tools/admin/synapse-admin/default.nix +++ b/pkgs/tools/admin/synapse-admin/default.nix @@ -1,5 +1,6 @@ { lib , fetchFromGitHub +, fetchYarnDeps , mkYarnPackage , baseUrl ? null }: @@ -14,10 +15,14 @@ mkYarnPackage rec { sha256 = "sha256-kvQBzrCu1sgDccKhr0i2DgDmO5z6u6s+vw5KymttoK4="; }; - yarnNix = ./yarn.nix; yarnLock = ./yarn.lock; packageJSON = ./package.json; + offlineCache = fetchYarnDeps { + inherit yarnLock; + hash = "sha256-f0ilsF3lA+134qUaX96mdntjpR4gRlmtRIh/xEFhtXQ="; + }; + NODE_ENV = "production"; ${if baseUrl != null then "REACT_APP_SERVER" else null} = baseUrl; diff --git a/pkgs/tools/admin/synapse-admin/yarn.nix b/pkgs/tools/admin/synapse-admin/yarn.nix deleted file mode 100644 index 4eb826791684..000000000000 --- a/pkgs/tools/admin/synapse-admin/yarn.nix +++ /dev/null @@ -1,11597 +0,0 @@ -{ fetchurl, fetchgit, linkFarm, runCommand, gnutar }: rec { - offline_cache = linkFarm "offline" packages; - packages = [ - { - name = "_adobe_css_tools___css_tools_4.0.2.tgz"; - path = fetchurl { - name = "_adobe_css_tools___css_tools_4.0.2.tgz"; - url = "https://registry.yarnpkg.com/@adobe/css-tools/-/css-tools-4.0.2.tgz"; - sha512 = "Fx6tYjk2wKUgLi8uMANZr8GNZx05u44ArIJldn9VxLvolzlJVgHbTUCbwhMd6bcYky178+WUSxPHO3DAtGLWpw=="; - }; - } - { - name = "_ampproject_remapping___remapping_2.2.0.tgz"; - path = fetchurl { - name = "_ampproject_remapping___remapping_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz"; - sha512 = "qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="; - }; - } - { - name = "_apideck_better_ajv_errors___better_ajv_errors_0.3.6.tgz"; - path = fetchurl { - name = "_apideck_better_ajv_errors___better_ajv_errors_0.3.6.tgz"; - url = "https://registry.yarnpkg.com/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz"; - sha512 = "P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA=="; - }; - } - { - name = "_babel_code_frame___code_frame_7.16.0.tgz"; - path = fetchurl { - name = "_babel_code_frame___code_frame_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.0.tgz"; - sha512 = "IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA=="; - }; - } - { - name = "_babel_code_frame___code_frame_7.18.6.tgz"; - path = fetchurl { - name = "_babel_code_frame___code_frame_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz"; - sha512 = "TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="; - }; - } - { - name = "_babel_compat_data___compat_data_7.16.4.tgz"; - path = fetchurl { - name = "_babel_compat_data___compat_data_7.16.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.16.4.tgz"; - sha512 = "1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q=="; - }; - } - { - name = "_babel_compat_data___compat_data_7.18.8.tgz"; - path = fetchurl { - name = "_babel_compat_data___compat_data_7.18.8.tgz"; - url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.8.tgz"; - sha512 = "HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ=="; - }; - } - { - name = "_babel_core___core_7.16.5.tgz"; - path = fetchurl { - name = "_babel_core___core_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/core/-/core-7.16.5.tgz"; - sha512 = "wUcenlLzuWMZ9Zt8S0KmFwGlH6QKRh3vsm/dhDA3CHkiTA45YuG1XkHRcNRl73EFPXDp/d5kVOU0/y7x2w6OaQ=="; - }; - } - { - name = "_babel_core___core_7.18.10.tgz"; - path = fetchurl { - name = "_babel_core___core_7.18.10.tgz"; - url = "https://registry.yarnpkg.com/@babel/core/-/core-7.18.10.tgz"; - sha512 = "JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw=="; - }; - } - { - name = "_babel_eslint_parser___eslint_parser_7.18.9.tgz"; - path = fetchurl { - name = "_babel_eslint_parser___eslint_parser_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.18.9.tgz"; - sha512 = "KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ=="; - }; - } - { - name = "_babel_generator___generator_7.16.5.tgz"; - path = fetchurl { - name = "_babel_generator___generator_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.16.5.tgz"; - sha512 = "kIvCdjZqcdKqoDbVVdt5R99icaRtrtYhYK/xux5qiWCBmfdvEYMFZ68QCrpE5cbFM1JsuArUNs1ZkuKtTtUcZA=="; - }; - } - { - name = "_babel_generator___generator_7.18.10.tgz"; - path = fetchurl { - name = "_babel_generator___generator_7.18.10.tgz"; - url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.10.tgz"; - sha512 = "0+sW7e3HjQbiHbj1NeU/vN8ornohYlacAfZIaXhdoGweQqgcNy69COVciYYqEXJ/v+9OBA7Frxm4CVAuNqKeNA=="; - }; - } - { - name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.16.0.tgz"; - path = fetchurl { - name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz"; - sha512 = "ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg=="; - }; - } - { - name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.18.6.tgz"; - path = fetchurl { - name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz"; - sha512 = "duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA=="; - }; - } - { - name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.16.5.tgz"; - path = fetchurl { - name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.5.tgz"; - sha512 = "3JEA9G5dmmnIWdzaT9d0NmFRgYnWUThLsDaL7982H0XqqWr56lRrsmwheXFMjR+TMl7QMBb6mzy9kvgr1lRLUA=="; - }; - } - { - name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.18.9.tgz"; - path = fetchurl { - name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz"; - sha512 = "yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw=="; - }; - } - { - name = "_babel_helper_compilation_targets___helper_compilation_targets_7.16.3.tgz"; - path = fetchurl { - name = "_babel_helper_compilation_targets___helper_compilation_targets_7.16.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz"; - sha512 = "vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA=="; - }; - } - { - name = "_babel_helper_compilation_targets___helper_compilation_targets_7.18.9.tgz"; - path = fetchurl { - name = "_babel_helper_compilation_targets___helper_compilation_targets_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz"; - sha512 = "tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg=="; - }; - } - { - name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.16.5.tgz"; - path = fetchurl { - name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.5.tgz"; - sha512 = "NEohnYA7mkB8L5JhU7BLwcBdU3j83IziR9aseMueWGeAjblbul3zzb8UvJ3a1zuBiqCMObzCJHFqKIQE6hTVmg=="; - }; - } - { - name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.18.9.tgz"; - path = fetchurl { - name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz"; - sha512 = "WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw=="; - }; - } - { - name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.16.0.tgz"; - path = fetchurl { - name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz"; - sha512 = "3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA=="; - }; - } - { - name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.18.6.tgz"; - path = fetchurl { - name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.18.6.tgz"; - sha512 = "7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A=="; - }; - } - { - name = "_babel_helper_define_polyfill_provider___helper_define_polyfill_provider_0.3.0.tgz"; - path = fetchurl { - name = "_babel_helper_define_polyfill_provider___helper_define_polyfill_provider_0.3.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.0.tgz"; - sha512 = "7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg=="; - }; - } - { - name = "_babel_helper_define_polyfill_provider___helper_define_polyfill_provider_0.3.2.tgz"; - path = fetchurl { - name = "_babel_helper_define_polyfill_provider___helper_define_polyfill_provider_0.3.2.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.2.tgz"; - sha512 = "r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg=="; - }; - } - { - name = "_babel_helper_environment_visitor___helper_environment_visitor_7.16.5.tgz"; - path = fetchurl { - name = "_babel_helper_environment_visitor___helper_environment_visitor_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.5.tgz"; - sha512 = "ODQyc5AnxmZWm/R2W7fzhamOk1ey8gSguo5SGvF0zcB3uUzRpTRmM/jmLSm9bDMyPlvbyJ+PwPEK0BWIoZ9wjg=="; - }; - } - { - name = "_babel_helper_environment_visitor___helper_environment_visitor_7.18.9.tgz"; - path = fetchurl { - name = "_babel_helper_environment_visitor___helper_environment_visitor_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz"; - sha512 = "3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg=="; - }; - } - { - name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.16.0.tgz"; - path = fetchurl { - name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.0.tgz"; - sha512 = "Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ=="; - }; - } - { - name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.18.6.tgz"; - path = fetchurl { - name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz"; - sha512 = "eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg=="; - }; - } - { - name = "_babel_helper_function_name___helper_function_name_7.16.0.tgz"; - path = fetchurl { - name = "_babel_helper_function_name___helper_function_name_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz"; - sha512 = "BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog=="; - }; - } - { - name = "_babel_helper_function_name___helper_function_name_7.18.9.tgz"; - path = fetchurl { - name = "_babel_helper_function_name___helper_function_name_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz"; - sha512 = "fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A=="; - }; - } - { - name = "_babel_helper_get_function_arity___helper_get_function_arity_7.16.0.tgz"; - path = fetchurl { - name = "_babel_helper_get_function_arity___helper_get_function_arity_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz"; - sha512 = "ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ=="; - }; - } - { - name = "_babel_helper_hoist_variables___helper_hoist_variables_7.16.0.tgz"; - path = fetchurl { - name = "_babel_helper_hoist_variables___helper_hoist_variables_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz"; - sha512 = "1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg=="; - }; - } - { - name = "_babel_helper_hoist_variables___helper_hoist_variables_7.18.6.tgz"; - path = fetchurl { - name = "_babel_helper_hoist_variables___helper_hoist_variables_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz"; - sha512 = "UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q=="; - }; - } - { - name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.16.5.tgz"; - path = fetchurl { - name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.5.tgz"; - sha512 = "7fecSXq7ZrLE+TWshbGT+HyCLkxloWNhTbU2QM1NTI/tDqyf0oZiMcEfYtDuUDCo528EOlt39G1rftea4bRZIw=="; - }; - } - { - name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.18.9.tgz"; - path = fetchurl { - name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz"; - sha512 = "RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg=="; - }; - } - { - name = "_babel_helper_module_imports___helper_module_imports_7.18.6.tgz"; - path = fetchurl { - name = "_babel_helper_module_imports___helper_module_imports_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz"; - sha512 = "0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA=="; - }; - } - { - name = "_babel_helper_module_imports___helper_module_imports_7.16.0.tgz"; - path = fetchurl { - name = "_babel_helper_module_imports___helper_module_imports_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz"; - sha512 = "kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg=="; - }; - } - { - name = "_babel_helper_module_transforms___helper_module_transforms_7.16.5.tgz"; - path = fetchurl { - name = "_babel_helper_module_transforms___helper_module_transforms_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.16.5.tgz"; - sha512 = "CkvMxgV4ZyyioElFwcuWnDCcNIeyqTkCm9BxXZi73RR1ozqlpboqsbGUNvRTflgZtFbbJ1v5Emvm+lkjMYY/LQ=="; - }; - } - { - name = "_babel_helper_module_transforms___helper_module_transforms_7.18.9.tgz"; - path = fetchurl { - name = "_babel_helper_module_transforms___helper_module_transforms_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz"; - sha512 = "KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g=="; - }; - } - { - name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.16.0.tgz"; - path = fetchurl { - name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz"; - sha512 = "SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw=="; - }; - } - { - name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.18.6.tgz"; - path = fetchurl { - name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz"; - sha512 = "HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA=="; - }; - } - { - name = "_babel_helper_plugin_utils___helper_plugin_utils_7.16.5.tgz"; - path = fetchurl { - name = "_babel_helper_plugin_utils___helper_plugin_utils_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.5.tgz"; - sha512 = "59KHWHXxVA9K4HNF4sbHCf+eJeFe0Te/ZFGqBT4OjXhrwvA04sGfaEGsVTdsjoszq0YTP49RC9UKe5g8uN2RwQ=="; - }; - } - { - name = "_babel_helper_plugin_utils___helper_plugin_utils_7.18.9.tgz"; - path = fetchurl { - name = "_babel_helper_plugin_utils___helper_plugin_utils_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz"; - sha512 = "aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w=="; - }; - } - { - name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.16.5.tgz"; - path = fetchurl { - name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.5.tgz"; - sha512 = "X+aAJldyxrOmN9v3FKp+Hu1NO69VWgYgDGq6YDykwRPzxs5f2N+X988CBXS7EQahDU+Vpet5QYMqLk+nsp+Qxw=="; - }; - } - { - name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.18.9.tgz"; - path = fetchurl { - name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz"; - sha512 = "dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA=="; - }; - } - { - name = "_babel_helper_replace_supers___helper_replace_supers_7.16.5.tgz"; - path = fetchurl { - name = "_babel_helper_replace_supers___helper_replace_supers_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.5.tgz"; - sha512 = "ao3seGVa/FZCMCCNDuBcqnBFSbdr8N2EW35mzojx3TwfIbdPmNK+JV6+2d5bR0Z71W5ocLnQp9en/cTF7pBJiQ=="; - }; - } - { - name = "_babel_helper_replace_supers___helper_replace_supers_7.18.9.tgz"; - path = fetchurl { - name = "_babel_helper_replace_supers___helper_replace_supers_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz"; - sha512 = "dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ=="; - }; - } - { - name = "_babel_helper_simple_access___helper_simple_access_7.16.0.tgz"; - path = fetchurl { - name = "_babel_helper_simple_access___helper_simple_access_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz"; - sha512 = "o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw=="; - }; - } - { - name = "_babel_helper_simple_access___helper_simple_access_7.18.6.tgz"; - path = fetchurl { - name = "_babel_helper_simple_access___helper_simple_access_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz"; - sha512 = "iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g=="; - }; - } - { - name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.16.0.tgz"; - path = fetchurl { - name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz"; - sha512 = "+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw=="; - }; - } - { - name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.18.9.tgz"; - path = fetchurl { - name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz"; - sha512 = "imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw=="; - }; - } - { - name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.16.0.tgz"; - path = fetchurl { - name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz"; - sha512 = "0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw=="; - }; - } - { - name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.18.6.tgz"; - path = fetchurl { - name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz"; - sha512 = "bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA=="; - }; - } - { - name = "_babel_helper_string_parser___helper_string_parser_7.18.10.tgz"; - path = fetchurl { - name = "_babel_helper_string_parser___helper_string_parser_7.18.10.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz"; - sha512 = "XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw=="; - }; - } - { - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.15.7.tgz"; - path = fetchurl { - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.15.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz"; - sha512 = "K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="; - }; - } - { - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.18.6.tgz"; - path = fetchurl { - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz"; - sha512 = "MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g=="; - }; - } - { - name = "_babel_helper_validator_option___helper_validator_option_7.14.5.tgz"; - path = fetchurl { - name = "_babel_helper_validator_option___helper_validator_option_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz"; - sha512 = "OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow=="; - }; - } - { - name = "_babel_helper_validator_option___helper_validator_option_7.18.6.tgz"; - path = fetchurl { - name = "_babel_helper_validator_option___helper_validator_option_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz"; - sha512 = "XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw=="; - }; - } - { - name = "_babel_helper_wrap_function___helper_wrap_function_7.16.5.tgz"; - path = fetchurl { - name = "_babel_helper_wrap_function___helper_wrap_function_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.16.5.tgz"; - sha512 = "2J2pmLBqUqVdJw78U0KPNdeE2qeuIyKoG4mKV7wAq3mc4jJG282UgjZw4ZYDnqiWQuS3Y3IYdF/AQ6CpyBV3VA=="; - }; - } - { - name = "_babel_helper_wrap_function___helper_wrap_function_7.18.10.tgz"; - path = fetchurl { - name = "_babel_helper_wrap_function___helper_wrap_function_7.18.10.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.18.10.tgz"; - sha512 = "95NLBP59VWdfK2lyLKe6eTMq9xg+yWKzxzxbJ1wcYNi1Auz200+83fMDADjRxBvc2QQor5zja2yTQzXGhk2GtQ=="; - }; - } - { - name = "_babel_helpers___helpers_7.16.5.tgz"; - path = fetchurl { - name = "_babel_helpers___helpers_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.16.5.tgz"; - sha512 = "TLgi6Lh71vvMZGEkFuIxzaPsyeYCHQ5jJOOX1f0xXn0uciFuE8cEk0wyBquMcCxBXZ5BJhE2aUB7pnWTD150Tw=="; - }; - } - { - name = "_babel_helpers___helpers_7.18.9.tgz"; - path = fetchurl { - name = "_babel_helpers___helpers_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.9.tgz"; - sha512 = "Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ=="; - }; - } - { - name = "_babel_highlight___highlight_7.16.0.tgz"; - path = fetchurl { - name = "_babel_highlight___highlight_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.0.tgz"; - sha512 = "t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g=="; - }; - } - { - name = "_babel_highlight___highlight_7.18.6.tgz"; - path = fetchurl { - name = "_babel_highlight___highlight_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz"; - sha512 = "u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="; - }; - } - { - name = "_babel_parser___parser_7.16.6.tgz"; - path = fetchurl { - name = "_babel_parser___parser_7.16.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.6.tgz"; - sha512 = "Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ=="; - }; - } - { - name = "_babel_parser___parser_7.18.10.tgz"; - path = fetchurl { - name = "_babel_parser___parser_7.18.10.tgz"; - url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.10.tgz"; - sha512 = "TYk3OA0HKL6qNryUayb5UUEhM/rkOQozIBEA5ITXh5DWrSp0TlUQXMyZmnWxG/DizSWBeeQ0Zbc5z8UGaaqoeg=="; - }; - } - { - name = "_babel_plugin_bugfix_safari_id_destructuring_collision_in_function_expression___plugin_bugfix_safari_id_destructuring_collision_in_function_expression_7.16.2.tgz"; - path = fetchurl { - name = "_babel_plugin_bugfix_safari_id_destructuring_collision_in_function_expression___plugin_bugfix_safari_id_destructuring_collision_in_function_expression_7.16.2.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2.tgz"; - sha512 = "h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg=="; - }; - } - { - name = "_babel_plugin_bugfix_safari_id_destructuring_collision_in_function_expression___plugin_bugfix_safari_id_destructuring_collision_in_function_expression_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_bugfix_safari_id_destructuring_collision_in_function_expression___plugin_bugfix_safari_id_destructuring_collision_in_function_expression_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz"; - sha512 = "Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ=="; - }; - } - { - name = "_babel_plugin_bugfix_v8_spread_parameters_in_optional_chaining___plugin_bugfix_v8_spread_parameters_in_optional_chaining_7.16.0.tgz"; - path = fetchurl { - name = "_babel_plugin_bugfix_v8_spread_parameters_in_optional_chaining___plugin_bugfix_v8_spread_parameters_in_optional_chaining_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0.tgz"; - sha512 = "4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA=="; - }; - } - { - name = "_babel_plugin_bugfix_v8_spread_parameters_in_optional_chaining___plugin_bugfix_v8_spread_parameters_in_optional_chaining_7.18.9.tgz"; - path = fetchurl { - name = "_babel_plugin_bugfix_v8_spread_parameters_in_optional_chaining___plugin_bugfix_v8_spread_parameters_in_optional_chaining_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz"; - sha512 = "AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg=="; - }; - } - { - name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.5.tgz"; - sha512 = "C/FX+3HNLV6sz7AqbTQqEo1L9/kfrKjxcVtgyBCmvIgOjvuBVUWooDoi7trsLxOzCEo5FccjRvKHkfDsJFZlfA=="; - }; - } - { - name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.18.10.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.18.10.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.10.tgz"; - sha512 = "1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew=="; - }; - } - { - name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.5.tgz"; - sha512 = "pJD3HjgRv83s5dv1sTnDbZOaTjghKEz8KUn1Kbh2eAIRhGuyQ1XSeI4xVXU3UlIEVA3DAyIdxqT1eRn7Wcn55A=="; - }; - } - { - name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz"; - sha512 = "cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ=="; - }; - } - { - name = "_babel_plugin_proposal_class_static_block___plugin_proposal_class_static_block_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_class_static_block___plugin_proposal_class_static_block_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.5.tgz"; - sha512 = "EEFzuLZcm/rNJ8Q5krK+FRKdVkd6FjfzT9tuSZql9sQn64K0hHA2KLJ0DqVot9/iV6+SsuadC5yI39zWnm+nmQ=="; - }; - } - { - name = "_babel_plugin_proposal_class_static_block___plugin_proposal_class_static_block_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_class_static_block___plugin_proposal_class_static_block_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz"; - sha512 = "+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw=="; - }; - } - { - name = "_babel_plugin_proposal_decorators___plugin_proposal_decorators_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_decorators___plugin_proposal_decorators_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.16.5.tgz"; - sha512 = "XAiZll5oCdp2Dd2RbXA3LVPlFyIRhhcQy+G34p9ePpl6mjFkbqHAYHovyw2j5mqUrlBf0/+MtOIJ3JGYtz8qaw=="; - }; - } - { - name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.5.tgz"; - sha512 = "P05/SJZTTvHz79LNYTF8ff5xXge0kk5sIIWAypcWgX4BTRUgyHc8wRxJ/Hk+mU0KXldgOOslKaeqnhthcDJCJQ=="; - }; - } - { - name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz"; - sha512 = "1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw=="; - }; - } - { - name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.5.tgz"; - sha512 = "i+sltzEShH1vsVydvNaTRsgvq2vZsfyrd7K7vPLUU/KgS0D5yZMe6uipM0+izminnkKrEfdUnz7CxMRb6oHZWw=="; - }; - } - { - name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.18.9.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz"; - sha512 = "k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA=="; - }; - } - { - name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.5.tgz"; - sha512 = "QQJueTFa0y9E4qHANqIvMsuxM/qcLQmKttBACtPCQzGUEizsXDACGonlPiSwynHfOa3vNw0FPMVvQzbuXwh4SQ=="; - }; - } - { - name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz"; - sha512 = "lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ=="; - }; - } - { - name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.5.tgz"; - sha512 = "xqibl7ISO2vjuQM+MzR3rkd0zfNWltk7n9QhaD8ghMmMceVguYrNDt7MikRyj4J4v3QehpnrU8RYLnC7z/gZLA=="; - }; - } - { - name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.18.9.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz"; - sha512 = "128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q=="; - }; - } - { - name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.5.tgz"; - sha512 = "YwMsTp/oOviSBhrjwi0vzCUycseCYwoXnLiXIL3YNjHSMBHicGTz7GjVU/IGgz4DtOEXBdCNG72pvCX22ehfqg=="; - }; - } - { - name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz"; - sha512 = "wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA=="; - }; - } - { - name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.5.tgz"; - sha512 = "DvB9l/TcsCRvsIV9v4jxR/jVP45cslTVC0PMVHvaJhhNuhn2Y1SOhCSFlPK777qLB5wb8rVDaNoqMTyOqtY5Iw=="; - }; - } - { - name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz"; - sha512 = "ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q=="; - }; - } - { - name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.5.tgz"; - sha512 = "UEd6KpChoyPhCoE840KRHOlGhEZFutdPDMGj+0I56yuTTOaT51GzmnEl/0uT41fB/vD2nT+Pci2KjezyE3HmUw=="; - }; - } - { - name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.18.9.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz"; - sha512 = "kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q=="; - }; - } - { - name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.5.tgz"; - sha512 = "ihCMxY1Iljmx4bWy/PIMJGXN4NS4oUj1MKynwO07kiKms23pNvIn1DMB92DNB2R0EA882sw0VXIelYGdtF7xEQ=="; - }; - } - { - name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz"; - sha512 = "Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw=="; - }; - } - { - name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.5.tgz"; - sha512 = "kzdHgnaXRonttiTfKYnSVafbWngPPr2qKw9BWYBESl91W54e+9R5pP70LtWxV56g0f05f/SQrwHYkfvbwcdQ/A=="; - }; - } - { - name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.18.9.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz"; - sha512 = "v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w=="; - }; - } - { - name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.5.tgz"; - sha512 = "+yFMO4BGT3sgzXo+lrq7orX5mAZt57DwUK6seqII6AcJnJOIhBJ8pzKH47/ql/d426uQ7YhN8DpUFirQzqYSUA=="; - }; - } - { - name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz"; - sha512 = "nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA=="; - }; - } - { - name = "_babel_plugin_proposal_private_property_in_object___plugin_proposal_private_property_in_object_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_private_property_in_object___plugin_proposal_private_property_in_object_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.5.tgz"; - sha512 = "+YGh5Wbw0NH3y/E5YMu6ci5qTDmAEVNoZ3I54aB6nVEOZ5BQ7QJlwKq5pYVucQilMByGn/bvX0af+uNaPRCabA=="; - }; - } - { - name = "_babel_plugin_proposal_private_property_in_object___plugin_proposal_private_property_in_object_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_private_property_in_object___plugin_proposal_private_property_in_object_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz"; - sha512 = "9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw=="; - }; - } - { - name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.5.tgz"; - sha512 = "s5sKtlKQyFSatt781HQwv1hoM5BQ9qRH30r+dK56OLDsHmV74mzwJNX7R1yMuE7VZKG5O6q/gmOGSAO6ikTudg=="; - }; - } - { - name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz"; - sha512 = "2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w=="; - }; - } - { - name = "_babel_plugin_syntax_async_generators___plugin_syntax_async_generators_7.8.4.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_async_generators___plugin_syntax_async_generators_7.8.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"; - sha512 = "tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="; - }; - } - { - name = "_babel_plugin_syntax_bigint___plugin_syntax_bigint_7.8.3.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_bigint___plugin_syntax_bigint_7.8.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz"; - sha512 = "wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="; - }; - } - { - name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.12.13.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.12.13.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"; - sha512 = "fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="; - }; - } - { - name = "_babel_plugin_syntax_class_static_block___plugin_syntax_class_static_block_7.14.5.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_class_static_block___plugin_syntax_class_static_block_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz"; - sha512 = "b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw=="; - }; - } - { - name = "_babel_plugin_syntax_decorators___plugin_syntax_decorators_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_decorators___plugin_syntax_decorators_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.16.5.tgz"; - sha512 = "3CbYTXfflvyy8O819uhZcZSMedZG4J8yS/NLTc/8T24M9ke1GssTGvg8VZu3Yn2LU5IyQSv1CmPq0a9JWHXJwg=="; - }; - } - { - name = "_babel_plugin_syntax_dynamic_import___plugin_syntax_dynamic_import_7.8.3.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_dynamic_import___plugin_syntax_dynamic_import_7.8.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz"; - sha512 = "5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ=="; - }; - } - { - name = "_babel_plugin_syntax_export_namespace_from___plugin_syntax_export_namespace_from_7.8.3.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_export_namespace_from___plugin_syntax_export_namespace_from_7.8.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz"; - sha512 = "MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q=="; - }; - } - { - name = "_babel_plugin_syntax_flow___plugin_syntax_flow_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_flow___plugin_syntax_flow_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.16.5.tgz"; - sha512 = "Nrx+7EAJx1BieBQseZa2pavVH2Rp7hADK2xn7coYqVbWRu9C2OFizYcsKo6TrrqJkJl+qF/+Qqzrk/+XDu4GnA=="; - }; - } - { - name = "_babel_plugin_syntax_import_assertions___plugin_syntax_import_assertions_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_import_assertions___plugin_syntax_import_assertions_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz"; - sha512 = "/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ=="; - }; - } - { - name = "_babel_plugin_syntax_import_meta___plugin_syntax_import_meta_7.10.4.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_import_meta___plugin_syntax_import_meta_7.10.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz"; - sha512 = "Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g=="; - }; - } - { - name = "_babel_plugin_syntax_json_strings___plugin_syntax_json_strings_7.8.3.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_json_strings___plugin_syntax_json_strings_7.8.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"; - sha512 = "lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA=="; - }; - } - { - name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.16.7.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.16.7.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz"; - sha512 = "Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q=="; - }; - } - { - name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.5.tgz"; - sha512 = "42OGssv9NPk4QHKVgIHlzeLgPOW5rGgfV5jzG90AhcXXIv6hu/eqj63w4VgvRxdvZY3AlYeDgPiSJ3BqAd1Y6Q=="; - }; - } - { - name = "_babel_plugin_syntax_logical_assignment_operators___plugin_syntax_logical_assignment_operators_7.10.4.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_logical_assignment_operators___plugin_syntax_logical_assignment_operators_7.10.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"; - sha512 = "d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig=="; - }; - } - { - name = "_babel_plugin_syntax_nullish_coalescing_operator___plugin_syntax_nullish_coalescing_operator_7.8.3.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_nullish_coalescing_operator___plugin_syntax_nullish_coalescing_operator_7.8.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"; - sha512 = "aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ=="; - }; - } - { - name = "_babel_plugin_syntax_numeric_separator___plugin_syntax_numeric_separator_7.10.4.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_numeric_separator___plugin_syntax_numeric_separator_7.10.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"; - sha512 = "9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug=="; - }; - } - { - name = "_babel_plugin_syntax_object_rest_spread___plugin_syntax_object_rest_spread_7.8.3.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_object_rest_spread___plugin_syntax_object_rest_spread_7.8.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"; - sha512 = "XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="; - }; - } - { - name = "_babel_plugin_syntax_optional_catch_binding___plugin_syntax_optional_catch_binding_7.8.3.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_optional_catch_binding___plugin_syntax_optional_catch_binding_7.8.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"; - sha512 = "6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q=="; - }; - } - { - name = "_babel_plugin_syntax_optional_chaining___plugin_syntax_optional_chaining_7.8.3.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_optional_chaining___plugin_syntax_optional_chaining_7.8.3.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"; - sha512 = "KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="; - }; - } - { - name = "_babel_plugin_syntax_private_property_in_object___plugin_syntax_private_property_in_object_7.14.5.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_private_property_in_object___plugin_syntax_private_property_in_object_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz"; - sha512 = "0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg=="; - }; - } - { - name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.14.5.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.14.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"; - sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; - }; - } - { - name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.5.tgz"; - sha512 = "/d4//lZ1Vqb4mZ5xTep3dDK888j7BGM/iKqBmndBaoYAFPlPKrGU608VVBz5JeyAb6YQDjRu1UKqj86UhwWVgw=="; - }; - } - { - name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz"; - sha512 = "mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA=="; - }; - } - { - name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.5.tgz"; - sha512 = "8bTHiiZyMOyfZFULjsCnYOWG059FVMes0iljEHSfARhNgFfpsqE92OrCffv3veSw9rwMkYcFe9bj0ZoXU2IGtQ=="; - }; - } - { - name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz"; - sha512 = "9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ=="; - }; - } - { - name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.5.tgz"; - sha512 = "TMXgfioJnkXU+XRoj7P2ED7rUm5jbnDWwlCuFVTpQboMfbSya5WrmubNBAMlk7KXvywpo8rd8WuYZkis1o2H8w=="; - }; - } - { - name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz"; - sha512 = "ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag=="; - }; - } - { - name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.5.tgz"; - sha512 = "BxmIyKLjUGksJ99+hJyL/HIxLIGnLKtw772zYDER7UuycDZ+Xvzs98ZQw6NGgM2ss4/hlFAaGiZmMNKvValEjw=="; - }; - } - { - name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz"; - sha512 = "ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ=="; - }; - } - { - name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.5.tgz"; - sha512 = "JxjSPNZSiOtmxjX7PBRBeRJTUKTyJ607YUYeT0QJCNdsedOe+/rXITjP08eG8xUpsLfPirgzdCFN+h0w6RI+pQ=="; - }; - } - { - name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.18.9.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz"; - sha512 = "5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw=="; - }; - } - { - name = "_babel_plugin_transform_classes___plugin_transform_classes_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_classes___plugin_transform_classes_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.5.tgz"; - sha512 = "DzJ1vYf/7TaCYy57J3SJ9rV+JEuvmlnvvyvYKFbk5u46oQbBvuB9/0w+YsVsxkOv8zVWKpDmUoj4T5ILHoXevA=="; - }; - } - { - name = "_babel_plugin_transform_classes___plugin_transform_classes_7.18.9.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_classes___plugin_transform_classes_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.9.tgz"; - sha512 = "EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g=="; - }; - } - { - name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.5.tgz"; - sha512 = "n1+O7xtU5lSLraRzX88CNcpl7vtGdPakKzww74bVwpAIRgz9JVLJJpOLb0uYqcOaXVM0TL6X0RVeIJGD2CnCkg=="; - }; - } - { - name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.18.9.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz"; - sha512 = "+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw=="; - }; - } - { - name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.5.tgz"; - sha512 = "GuRVAsjq+c9YPK6NeTkRLWyQskDC099XkBSVO+6QzbnOnH2d/4mBVXYStaPrZD3dFRfg00I6BFJ9Atsjfs8mlg=="; - }; - } - { - name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.18.9.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.9.tgz"; - sha512 = "p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA=="; - }; - } - { - name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.5.tgz"; - sha512 = "iQiEMt8Q4/5aRGHpGVK2Zc7a6mx7qEAO7qehgSug3SDImnuMzgmm/wtJALXaz25zUj1PmnNHtShjFgk4PDx4nw=="; - }; - } - { - name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz"; - sha512 = "6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg=="; - }; - } - { - name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.5.tgz"; - sha512 = "81tijpDg2a6I1Yhj4aWY1l3O1J4Cg/Pd7LfvuaH2VVInAkXtzibz9+zSPdUM1WvuUi128ksstAP0hM5w48vQgg=="; - }; - } - { - name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.18.9.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz"; - sha512 = "d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw=="; - }; - } - { - name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.5.tgz"; - sha512 = "12rba2HwemQPa7BLIKCzm1pT2/RuQHtSFHdNl41cFiC6oi4tcrp7gjB07pxQvFpcADojQywSjblQth6gJyE6CA=="; - }; - } - { - name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz"; - sha512 = "wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw=="; - }; - } - { - name = "_babel_plugin_transform_flow_strip_types___plugin_transform_flow_strip_types_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_flow_strip_types___plugin_transform_flow_strip_types_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.16.5.tgz"; - sha512 = "skE02E/MptkZdBS4HwoRhjWXqeKQj0BWKEAPfPC+8R4/f6bjQqQ9Nftv/+HkxWwnVxh/E2NV9TNfzLN5H/oiBw=="; - }; - } - { - name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.5.tgz"; - sha512 = "+DpCAJFPAvViR17PIMi9x2AE34dll5wNlXO43wagAX2YcRGgEVHCNFC4azG85b4YyyFarvkc/iD5NPrz4Oneqw=="; - }; - } - { - name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.18.8.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.18.8.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz"; - sha512 = "yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ=="; - }; - } - { - name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.5.tgz"; - sha512 = "Fuec/KPSpVLbGo6z1RPw4EE1X+z9gZk1uQmnYy7v4xr4TO9p41v1AoUuXEtyqAI7H+xNJYSICzRqZBhDEkd3kQ=="; - }; - } - { - name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.18.9.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz"; - sha512 = "WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ=="; - }; - } - { - name = "_babel_plugin_transform_literals___plugin_transform_literals_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_literals___plugin_transform_literals_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.5.tgz"; - sha512 = "B1j9C/IfvshnPcklsc93AVLTrNVa69iSqztylZH6qnmiAsDDOmmjEYqOm3Ts2lGSgTSywnBNiqC949VdD0/gfw=="; - }; - } - { - name = "_babel_plugin_transform_literals___plugin_transform_literals_7.18.9.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_literals___plugin_transform_literals_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz"; - sha512 = "IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg=="; - }; - } - { - name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.5.tgz"; - sha512 = "d57i3vPHWgIde/9Y8W/xSFUndhvhZN5Wu2TjRrN1MVz5KzdUihKnfDVlfP1U7mS5DNj/WHHhaE4/tTi4hIyHwQ=="; - }; - } - { - name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz"; - sha512 = "qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA=="; - }; - } - { - name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.5.tgz"; - sha512 = "oHI15S/hdJuSCfnwIz+4lm6wu/wBn7oJ8+QrkzPPwSFGXk8kgdI/AIKcbR/XnD1nQVMg/i6eNaXpszbGuwYDRQ=="; - }; - } - { - name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz"; - sha512 = "Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg=="; - }; - } - { - name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.5.tgz"; - sha512 = "ABhUkxvoQyqhCWyb8xXtfwqNMJD7tx+irIRnUh6lmyFud7Jln1WzONXKlax1fg/ey178EXbs4bSGNd6PngO+SQ=="; - }; - } - { - name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz"; - sha512 = "Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q=="; - }; - } - { - name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.5.tgz"; - sha512 = "53gmLdScNN28XpjEVIm7LbWnD/b/TpbwKbLk6KV4KqC9WyU6rq1jnNmVG6UgAdQZVVGZVoik3DqHNxk4/EvrjA=="; - }; - } - { - name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.18.9.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.9.tgz"; - sha512 = "zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A=="; - }; - } - { - name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.5.tgz"; - sha512 = "qTFnpxHMoenNHkS3VoWRdwrcJ3FhX567GvDA3hRZKF0Dj8Fmg0UzySZp3AP2mShl/bzcywb/UWAMQIjA1bhXvw=="; - }; - } - { - name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz"; - sha512 = "dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ=="; - }; - } - { - name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.5.tgz"; - sha512 = "/wqGDgvFUeKELW6ex6QB7dLVRkd5ehjw34tpXu1nhKC0sFfmaLabIswnpf8JgDyV2NeDmZiwoOb0rAmxciNfjA=="; - }; - } - { - name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.18.6.tgz"; - sha512 = "UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg=="; - }; - } - { - name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.5.tgz"; - sha512 = "ZaIrnXF08ZC8jnKR4/5g7YakGVL6go6V9ql6Jl3ecO8PQaQqFE74CuM384kezju7Z9nGCCA20BqZaR1tJ/WvHg=="; - }; - } - { - name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz"; - sha512 = "DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw=="; - }; - } - { - name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.5.tgz"; - sha512 = "tded+yZEXuxt9Jdtkc1RraW1zMF/GalVxaVVxh41IYwirdRgyAxxxCKZ9XB7LxZqmsjfjALxupNE1MIz9KH+Zg=="; - }; - } - { - name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz"; - sha512 = "uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA=="; - }; - } - { - name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.5.tgz"; - sha512 = "B3O6AL5oPop1jAVg8CV+haeUte9oFuY85zu0jwnRNZZi3tVAbJriu5tag/oaO2kGaQM/7q7aGPBlTI5/sr9enA=="; - }; - } - { - name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.18.8.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.18.8.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz"; - sha512 = "ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg=="; - }; - } - { - name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.5.tgz"; - sha512 = "+IRcVW71VdF9pEH/2R/Apab4a19LVvdVsr/gEeotH00vSDVlKD+XgfSIw+cgGWsjDB/ziqGv/pGoQZBIiQVXHg=="; - }; - } - { - name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz"; - sha512 = "cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg=="; - }; - } - { - name = "_babel_plugin_transform_react_constant_elements___plugin_transform_react_constant_elements_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_react_constant_elements___plugin_transform_react_constant_elements_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.16.5.tgz"; - sha512 = "fdc1s5npHMZ9A+w9bYbrZu4499WyYPVaTTsRO8bU0GJcMuK4ejIX4lyjnpvi+YGLK/EhFQxWszqylO0vaMciFw=="; - }; - } - { - name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.5.tgz"; - sha512 = "dHYCOnzSsXFz8UcdNQIHGvg94qPL/teF7CCiCEMRxmA1G2p5Mq4JnKVowCDxYfiQ9D7RstaAp9kwaSI+sXbnhw=="; - }; - } - { - name = "_babel_plugin_transform_react_jsx_development___plugin_transform_react_jsx_development_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_react_jsx_development___plugin_transform_react_jsx_development_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.5.tgz"; - sha512 = "uQSLacMZSGLCxOw20dzo1dmLlKkd+DsayoV54q3MHXhbqgPzoiGerZQgNPl/Ro8/OcXV2ugfnkx+rxdS0sN5Uw=="; - }; - } - { - name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.16.5.tgz"; - sha512 = "+arLIz1d7kmwX0fKxTxbnoeG85ONSnLpvdODa4P3pc1sS7CV1hfmtYWufkW/oYsPnkDrEeQFxhUWcFnrXW7jQQ=="; - }; - } - { - name = "_babel_plugin_transform_react_pure_annotations___plugin_transform_react_pure_annotations_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_react_pure_annotations___plugin_transform_react_pure_annotations_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.5.tgz"; - sha512 = "0nYU30hCxnCVCbRjSy9ahlhWZ2Sn6khbY4FqR91W+2RbSqkWEbVu2gXh45EqNy4Bq7sRU+H4i0/6YKwOSzh16A=="; - }; - } - { - name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.5.tgz"; - sha512 = "2z+it2eVWU8TtQQRauvGUqZwLy4+7rTfo6wO4npr+fvvN1SW30ZF3O/ZRCNmTuu4F5MIP8OJhXAhRV5QMJOuYg=="; - }; - } - { - name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz"; - sha512 = "poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ=="; - }; - } - { - name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.5.tgz"; - sha512 = "aIB16u8lNcf7drkhXJRoggOxSTUAuihTSTfAcpynowGJOZiGf+Yvi7RuTwFzVYSYPmWyARsPqUGoZWWWxLiknw=="; - }; - } - { - name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz"; - sha512 = "oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA=="; - }; - } - { - name = "_babel_plugin_transform_runtime___plugin_transform_runtime_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_runtime___plugin_transform_runtime_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.5.tgz"; - sha512 = "gxpfS8XQWDbQ8oP5NcmpXxtEgCJkbO+W9VhZlOhr0xPyVaRjAQPOv7ZDj9fg0d5s9+NiVvMCE6gbkEkcsxwGRw=="; - }; - } - { - name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.5.tgz"; - sha512 = "ZbuWVcY+MAXJuuW7qDoCwoxDUNClfZxoo7/4swVbOW1s/qYLOMHlm9YRWMsxMFuLs44eXsv4op1vAaBaBaDMVg=="; - }; - } - { - name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz"; - sha512 = "eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw=="; - }; - } - { - name = "_babel_plugin_transform_spread___plugin_transform_spread_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_spread___plugin_transform_spread_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.5.tgz"; - sha512 = "5d6l/cnG7Lw4tGHEoga4xSkYp1euP7LAtrah1h1PgJ3JY7yNsjybsxQAnVK4JbtReZ/8z6ASVmd3QhYYKLaKZw=="; - }; - } - { - name = "_babel_plugin_transform_spread___plugin_transform_spread_7.18.9.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_spread___plugin_transform_spread_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.9.tgz"; - sha512 = "39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA=="; - }; - } - { - name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.5.tgz"; - sha512 = "usYsuO1ID2LXxzuUxifgWtJemP7wL2uZtyrTVM4PKqsmJycdS4U4mGovL5xXkfUheds10Dd2PjoQLXw6zCsCbg=="; - }; - } - { - name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz"; - sha512 = "kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q=="; - }; - } - { - name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.5.tgz"; - sha512 = "gnyKy9RyFhkovex4BjKWL3BVYzUDG6zC0gba7VMLbQoDuqMfJ1SDXs8k/XK41Mmt1Hyp4qNAvGFb9hKzdCqBRQ=="; - }; - } - { - name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.18.9.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz"; - sha512 = "S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA=="; - }; - } - { - name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.5.tgz"; - sha512 = "ldxCkW180qbrvyCVDzAUZqB0TAeF8W/vGJoRcaf75awm6By+PxfJKvuqVAnq8N9wz5Xa6mSpM19OfVKKVmGHSQ=="; - }; - } - { - name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.18.9.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz"; - sha512 = "SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw=="; - }; - } - { - name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.16.1.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.16.1.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.1.tgz"; - sha512 = "NO4XoryBng06jjw/qWEU2LhcLJr1tWkhpMam/H4eas/CDKMX/b2/Ylb6EI256Y7+FVPCawwSM1rrJNOpDiz+Lg=="; - }; - } - { - name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.5.tgz"; - sha512 = "shiCBHTIIChGLdyojsKQjoAyB8MBwat25lKM7MJjbe1hE0bgIppD+LX9afr41lLHOhqceqeWl4FkLp+Bgn9o1Q=="; - }; - } - { - name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.18.10.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.18.10.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz"; - sha512 = "kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ=="; - }; - } - { - name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.16.5.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.5.tgz"; - sha512 = "GTJ4IW012tiPEMMubd7sD07iU9O/LOo8Q/oU4xNhcaq0Xn8+6TcUQaHtC8YxySo1T+ErQ8RaWogIEeFhKGNPzw=="; - }; - } - { - name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.18.6.tgz"; - path = fetchurl { - name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.18.6.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz"; - sha512 = "gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA=="; - }; - } - { - name = "_babel_preset_env___preset_env_7.18.10.tgz"; - path = fetchurl { - name = "_babel_preset_env___preset_env_7.18.10.tgz"; - url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.18.10.tgz"; - sha512 = "wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA=="; - }; - } - { - name = "_babel_preset_env___preset_env_7.16.5.tgz"; - path = fetchurl { - name = "_babel_preset_env___preset_env_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.16.5.tgz"; - sha512 = "MiJJW5pwsktG61NDxpZ4oJ1CKxM1ncam9bzRtx9g40/WkLRkxFP6mhpkYV0/DxcciqoiHicx291+eUQrXb/SfQ=="; - }; - } - { - name = "_babel_preset_modules___preset_modules_0.1.5.tgz"; - path = fetchurl { - name = "_babel_preset_modules___preset_modules_0.1.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz"; - sha512 = "A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA=="; - }; - } - { - name = "_babel_preset_react___preset_react_7.16.5.tgz"; - path = fetchurl { - name = "_babel_preset_react___preset_react_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.16.5.tgz"; - sha512 = "3kzUOQeaxY/2vhPDS7CX/KGEGu/1bOYGvdRDJ2U5yjEz5o5jmIeTPLoiQBPGjfhPascLuW5OlMiPzwOOuB6txg=="; - }; - } - { - name = "_babel_preset_typescript___preset_typescript_7.16.5.tgz"; - path = fetchurl { - name = "_babel_preset_typescript___preset_typescript_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.16.5.tgz"; - sha512 = "lmAWRoJ9iOSvs3DqOndQpj8XqXkzaiQs50VG/zESiI9D3eoZhGriU675xNCr0UwvsuXrhMAGvyk1w+EVWF3u8Q=="; - }; - } - { - name = "_babel_runtime_corejs3___runtime_corejs3_7.16.5.tgz"; - path = fetchurl { - name = "_babel_runtime_corejs3___runtime_corejs3_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.16.5.tgz"; - sha512 = "F1pMwvTiUNSAM8mc45kccMQxj31x3y3P+tA/X8hKNWp3/hUsxdGxZ3D3H8JIkxtfA8qGkaBTKvcmvStaYseAFw=="; - }; - } - { - name = "_babel_runtime___runtime_7.18.9.tgz"; - path = fetchurl { - name = "_babel_runtime___runtime_7.18.9.tgz"; - url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.9.tgz"; - sha512 = "lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw=="; - }; - } - { - name = "_babel_runtime___runtime_7.17.0.tgz"; - path = fetchurl { - name = "_babel_runtime___runtime_7.17.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.0.tgz"; - sha512 = "etcO/ohMNaNA2UBdaXBBSX/3aEzFMRrVfaPv8Ptc0k+cWpWW0QFiGZ2XnVqQZI1Cf734LbPGmqBKWESfW4x/dQ=="; - }; - } - { - name = "_babel_runtime___runtime_7.21.0.tgz"; - path = fetchurl { - name = "_babel_runtime___runtime_7.21.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz"; - sha512 = "xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw=="; - }; - } - { - name = "_babel_template___template_7.16.0.tgz"; - path = fetchurl { - name = "_babel_template___template_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/template/-/template-7.16.0.tgz"; - sha512 = "MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A=="; - }; - } - { - name = "_babel_template___template_7.18.10.tgz"; - path = fetchurl { - name = "_babel_template___template_7.18.10.tgz"; - url = "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz"; - sha512 = "TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA=="; - }; - } - { - name = "_babel_traverse___traverse_7.16.5.tgz"; - path = fetchurl { - name = "_babel_traverse___traverse_7.16.5.tgz"; - url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.16.5.tgz"; - sha512 = "FOCODAzqUMROikDYLYxl4nmwiLlu85rNqBML/A5hKRVXG2LV8d0iMqgPzdYTcIpjZEBB7D6UDU9vxRZiriASdQ=="; - }; - } - { - name = "_babel_traverse___traverse_7.18.10.tgz"; - path = fetchurl { - name = "_babel_traverse___traverse_7.18.10.tgz"; - url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.10.tgz"; - sha512 = "J7ycxg0/K9XCtLyHf0cz2DqDihonJeIo+z+HEdRe9YuT8TY4A66i+Ab2/xZCEW7Ro60bPCBBfqqboHSamoV3+g=="; - }; - } - { - name = "_babel_types___types_7.16.0.tgz"; - path = fetchurl { - name = "_babel_types___types_7.16.0.tgz"; - url = "https://registry.yarnpkg.com/@babel/types/-/types-7.16.0.tgz"; - sha512 = "PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg=="; - }; - } - { - name = "_babel_types___types_7.18.10.tgz"; - path = fetchurl { - name = "_babel_types___types_7.18.10.tgz"; - url = "https://registry.yarnpkg.com/@babel/types/-/types-7.18.10.tgz"; - sha512 = "MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ=="; - }; - } - { - name = "_bcoe_v8_coverage___v8_coverage_0.2.3.tgz"; - path = fetchurl { - name = "_bcoe_v8_coverage___v8_coverage_0.2.3.tgz"; - url = "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz"; - sha512 = "0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="; - }; - } - { - name = "_csstools_normalize.css___normalize.css_12.0.0.tgz"; - path = fetchurl { - name = "_csstools_normalize.css___normalize.css_12.0.0.tgz"; - url = "https://registry.yarnpkg.com/@csstools/normalize.css/-/normalize.css-12.0.0.tgz"; - sha512 = "M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg=="; - }; - } - { - name = "_csstools_postcss_cascade_layers___postcss_cascade_layers_1.0.5.tgz"; - path = fetchurl { - name = "_csstools_postcss_cascade_layers___postcss_cascade_layers_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.0.5.tgz"; - sha512 = "Id/9wBT7FkgFzdEpiEWrsVd4ltDxN0rI0QS0SChbeQiSuux3z21SJCRLu6h2cvCEUmaRi+VD0mHFj+GJD4GFnw=="; - }; - } - { - name = "_csstools_postcss_color_function___postcss_color_function_1.1.1.tgz"; - path = fetchurl { - name = "_csstools_postcss_color_function___postcss_color_function_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz"; - sha512 = "Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw=="; - }; - } - { - name = "_csstools_postcss_font_format_keywords___postcss_font_format_keywords_1.0.1.tgz"; - path = fetchurl { - name = "_csstools_postcss_font_format_keywords___postcss_font_format_keywords_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz"; - sha512 = "ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg=="; - }; - } - { - name = "_csstools_postcss_hwb_function___postcss_hwb_function_1.0.2.tgz"; - path = fetchurl { - name = "_csstools_postcss_hwb_function___postcss_hwb_function_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz"; - sha512 = "YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w=="; - }; - } - { - name = "_csstools_postcss_ic_unit___postcss_ic_unit_1.0.1.tgz"; - path = fetchurl { - name = "_csstools_postcss_ic_unit___postcss_ic_unit_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz"; - sha512 = "Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw=="; - }; - } - { - name = "_csstools_postcss_is_pseudo_class___postcss_is_pseudo_class_2.0.7.tgz"; - path = fetchurl { - name = "_csstools_postcss_is_pseudo_class___postcss_is_pseudo_class_2.0.7.tgz"; - url = "https://registry.yarnpkg.com/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz"; - sha512 = "7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA=="; - }; - } - { - name = "_csstools_postcss_normalize_display_values___postcss_normalize_display_values_1.0.1.tgz"; - path = fetchurl { - name = "_csstools_postcss_normalize_display_values___postcss_normalize_display_values_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz"; - sha512 = "jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw=="; - }; - } - { - name = "_csstools_postcss_oklab_function___postcss_oklab_function_1.1.1.tgz"; - path = fetchurl { - name = "_csstools_postcss_oklab_function___postcss_oklab_function_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz"; - sha512 = "nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA=="; - }; - } - { - name = "_csstools_postcss_progressive_custom_properties___postcss_progressive_custom_properties_1.3.0.tgz"; - path = fetchurl { - name = "_csstools_postcss_progressive_custom_properties___postcss_progressive_custom_properties_1.3.0.tgz"; - url = "https://registry.yarnpkg.com/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz"; - sha512 = "ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA=="; - }; - } - { - name = "_csstools_postcss_stepped_value_functions___postcss_stepped_value_functions_1.0.1.tgz"; - path = fetchurl { - name = "_csstools_postcss_stepped_value_functions___postcss_stepped_value_functions_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz"; - sha512 = "dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ=="; - }; - } - { - name = "_csstools_postcss_trigonometric_functions___postcss_trigonometric_functions_1.0.2.tgz"; - path = fetchurl { - name = "_csstools_postcss_trigonometric_functions___postcss_trigonometric_functions_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz"; - sha512 = "woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og=="; - }; - } - { - name = "_csstools_postcss_unset_value___postcss_unset_value_1.0.2.tgz"; - path = fetchurl { - name = "_csstools_postcss_unset_value___postcss_unset_value_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz"; - sha512 = "c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g=="; - }; - } - { - name = "_csstools_selector_specificity___selector_specificity_2.0.2.tgz"; - path = fetchurl { - name = "_csstools_selector_specificity___selector_specificity_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-2.0.2.tgz"; - sha512 = "IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg=="; - }; - } - { - name = "_emotion_babel_plugin___babel_plugin_11.7.2.tgz"; - path = fetchurl { - name = "_emotion_babel_plugin___babel_plugin_11.7.2.tgz"; - url = "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.7.2.tgz"; - sha512 = "6mGSCWi9UzXut/ZAN6lGFu33wGR3SJisNl3c0tvlmb8XChH1b2SUvxvnOh7hvLpqyRdHHU9AiazV3Cwbk5SXKQ=="; - }; - } - { - name = "_emotion_cache___cache_11.7.1.tgz"; - path = fetchurl { - name = "_emotion_cache___cache_11.7.1.tgz"; - url = "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.7.1.tgz"; - sha512 = "r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A=="; - }; - } - { - name = "_emotion_hash___hash_0.8.0.tgz"; - path = fetchurl { - name = "_emotion_hash___hash_0.8.0.tgz"; - url = "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz"; - sha512 = "kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="; - }; - } - { - name = "_emotion_is_prop_valid___is_prop_valid_1.1.1.tgz"; - path = fetchurl { - name = "_emotion_is_prop_valid___is_prop_valid_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.1.1.tgz"; - sha512 = "bW1Tos67CZkOURLc0OalnfxtSXQJMrAMV0jZTVGJUPSOd4qgjF3+tTD5CwJM13PHA8cltGW1WGbbvV9NpvUZPw=="; - }; - } - { - name = "_emotion_memoize___memoize_0.7.5.tgz"; - path = fetchurl { - name = "_emotion_memoize___memoize_0.7.5.tgz"; - url = "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.5.tgz"; - sha512 = "igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ=="; - }; - } - { - name = "_emotion_react___react_11.7.1.tgz"; - path = fetchurl { - name = "_emotion_react___react_11.7.1.tgz"; - url = "https://registry.yarnpkg.com/@emotion/react/-/react-11.7.1.tgz"; - sha512 = "DV2Xe3yhkF1yT4uAUoJcYL1AmrnO5SVsdfvu+fBuS7IbByDeTVx9+wFmvx9Idzv7/78+9Mgx2Hcmr7Fex3tIyw=="; - }; - } - { - name = "_emotion_serialize___serialize_1.0.2.tgz"; - path = fetchurl { - name = "_emotion_serialize___serialize_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.0.2.tgz"; - sha512 = "95MgNJ9+/ajxU7QIAruiOAdYNjxZX7G2mhgrtDWswA21VviYIRP1R5QilZ/bDY42xiKsaktP4egJb3QdYQZi1A=="; - }; - } - { - name = "_emotion_sheet___sheet_1.1.0.tgz"; - path = fetchurl { - name = "_emotion_sheet___sheet_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.1.0.tgz"; - sha512 = "u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g=="; - }; - } - { - name = "_emotion_styled___styled_11.6.0.tgz"; - path = fetchurl { - name = "_emotion_styled___styled_11.6.0.tgz"; - url = "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.6.0.tgz"; - sha512 = "mxVtVyIOTmCAkFbwIp+nCjTXJNgcz4VWkOYQro87jE2QBTydnkiYusMrRGFtzuruiGK4dDaNORk4gH049iiQuw=="; - }; - } - { - name = "_emotion_unitless___unitless_0.7.5.tgz"; - path = fetchurl { - name = "_emotion_unitless___unitless_0.7.5.tgz"; - url = "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz"; - sha512 = "OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="; - }; - } - { - name = "_emotion_utils___utils_1.0.0.tgz"; - path = fetchurl { - name = "_emotion_utils___utils_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.0.0.tgz"; - sha512 = "mQC2b3XLDs6QCW+pDQDiyO/EdGZYOygE8s5N5rrzjSI4M3IejPE/JPndCBwRT9z982aqQNi6beWs1UeayrQxxA=="; - }; - } - { - name = "_emotion_weak_memoize___weak_memoize_0.2.5.tgz"; - path = fetchurl { - name = "_emotion_weak_memoize___weak_memoize_0.2.5.tgz"; - url = "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz"; - sha512 = "6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA=="; - }; - } - { - name = "_eslint_eslintrc___eslintrc_1.4.1.tgz"; - path = fetchurl { - name = "_eslint_eslintrc___eslintrc_1.4.1.tgz"; - url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.4.1.tgz"; - sha512 = "XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA=="; - }; - } - { - name = "_humanwhocodes_config_array___config_array_0.11.8.tgz"; - path = fetchurl { - name = "_humanwhocodes_config_array___config_array_0.11.8.tgz"; - url = "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz"; - sha512 = "UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g=="; - }; - } - { - name = "_humanwhocodes_module_importer___module_importer_1.0.1.tgz"; - path = fetchurl { - name = "_humanwhocodes_module_importer___module_importer_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"; - sha512 = "bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="; - }; - } - { - name = "_humanwhocodes_object_schema___object_schema_1.2.1.tgz"; - path = fetchurl { - name = "_humanwhocodes_object_schema___object_schema_1.2.1.tgz"; - url = "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"; - sha512 = "ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="; - }; - } - { - name = "_istanbuljs_load_nyc_config___load_nyc_config_1.1.0.tgz"; - path = fetchurl { - name = "_istanbuljs_load_nyc_config___load_nyc_config_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz"; - sha512 = "VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ=="; - }; - } - { - name = "_istanbuljs_schema___schema_0.1.3.tgz"; - path = fetchurl { - name = "_istanbuljs_schema___schema_0.1.3.tgz"; - url = "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz"; - sha512 = "ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="; - }; - } - { - name = "_jest_console___console_27.5.1.tgz"; - path = fetchurl { - name = "_jest_console___console_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/@jest/console/-/console-27.5.1.tgz"; - sha512 = "kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg=="; - }; - } - { - name = "_jest_console___console_28.1.3.tgz"; - path = fetchurl { - name = "_jest_console___console_28.1.3.tgz"; - url = "https://registry.yarnpkg.com/@jest/console/-/console-28.1.3.tgz"; - sha512 = "QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw=="; - }; - } - { - name = "_jest_core___core_27.5.1.tgz"; - path = fetchurl { - name = "_jest_core___core_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/@jest/core/-/core-27.5.1.tgz"; - sha512 = "AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ=="; - }; - } - { - name = "_jest_environment___environment_27.5.1.tgz"; - path = fetchurl { - name = "_jest_environment___environment_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/@jest/environment/-/environment-27.5.1.tgz"; - sha512 = "/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA=="; - }; - } - { - name = "_jest_fake_timers___fake_timers_27.5.1.tgz"; - path = fetchurl { - name = "_jest_fake_timers___fake_timers_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz"; - sha512 = "/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ=="; - }; - } - { - name = "_jest_globals___globals_27.5.1.tgz"; - path = fetchurl { - name = "_jest_globals___globals_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/@jest/globals/-/globals-27.5.1.tgz"; - sha512 = "ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q=="; - }; - } - { - name = "_jest_reporters___reporters_27.5.1.tgz"; - path = fetchurl { - name = "_jest_reporters___reporters_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.5.1.tgz"; - sha512 = "cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw=="; - }; - } - { - name = "_jest_schemas___schemas_28.1.3.tgz"; - path = fetchurl { - name = "_jest_schemas___schemas_28.1.3.tgz"; - url = "https://registry.yarnpkg.com/@jest/schemas/-/schemas-28.1.3.tgz"; - sha512 = "/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg=="; - }; - } - { - name = "_jest_source_map___source_map_27.5.1.tgz"; - path = fetchurl { - name = "_jest_source_map___source_map_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.5.1.tgz"; - sha512 = "y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg=="; - }; - } - { - name = "_jest_test_result___test_result_27.5.1.tgz"; - path = fetchurl { - name = "_jest_test_result___test_result_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.5.1.tgz"; - sha512 = "EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag=="; - }; - } - { - name = "_jest_test_result___test_result_28.1.3.tgz"; - path = fetchurl { - name = "_jest_test_result___test_result_28.1.3.tgz"; - url = "https://registry.yarnpkg.com/@jest/test-result/-/test-result-28.1.3.tgz"; - sha512 = "kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg=="; - }; - } - { - name = "_jest_test_sequencer___test_sequencer_27.5.1.tgz"; - path = fetchurl { - name = "_jest_test_sequencer___test_sequencer_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz"; - sha512 = "LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ=="; - }; - } - { - name = "_jest_transform___transform_27.5.1.tgz"; - path = fetchurl { - name = "_jest_transform___transform_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/@jest/transform/-/transform-27.5.1.tgz"; - sha512 = "ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw=="; - }; - } - { - name = "_jest_types___types_26.6.2.tgz"; - path = fetchurl { - name = "_jest_types___types_26.6.2.tgz"; - url = "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz"; - sha512 = "fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ=="; - }; - } - { - name = "_jest_types___types_27.4.2.tgz"; - path = fetchurl { - name = "_jest_types___types_27.4.2.tgz"; - url = "https://registry.yarnpkg.com/@jest/types/-/types-27.4.2.tgz"; - sha512 = "j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg=="; - }; - } - { - name = "_jest_types___types_27.5.1.tgz"; - path = fetchurl { - name = "_jest_types___types_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/@jest/types/-/types-27.5.1.tgz"; - sha512 = "Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw=="; - }; - } - { - name = "_jest_types___types_28.1.3.tgz"; - path = fetchurl { - name = "_jest_types___types_28.1.3.tgz"; - url = "https://registry.yarnpkg.com/@jest/types/-/types-28.1.3.tgz"; - sha512 = "RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ=="; - }; - } - { - name = "_jridgewell_gen_mapping___gen_mapping_0.1.1.tgz"; - path = fetchurl { - name = "_jridgewell_gen_mapping___gen_mapping_0.1.1.tgz"; - url = "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"; - sha512 = "sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w=="; - }; - } - { - name = "_jridgewell_gen_mapping___gen_mapping_0.3.2.tgz"; - path = fetchurl { - name = "_jridgewell_gen_mapping___gen_mapping_0.3.2.tgz"; - url = "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz"; - sha512 = "mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A=="; - }; - } - { - name = "_jridgewell_resolve_uri___resolve_uri_3.1.0.tgz"; - path = fetchurl { - name = "_jridgewell_resolve_uri___resolve_uri_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"; - sha512 = "F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="; - }; - } - { - name = "_jridgewell_set_array___set_array_1.1.2.tgz"; - path = fetchurl { - name = "_jridgewell_set_array___set_array_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz"; - sha512 = "xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="; - }; - } - { - name = "_jridgewell_source_map___source_map_0.3.2.tgz"; - path = fetchurl { - name = "_jridgewell_source_map___source_map_0.3.2.tgz"; - url = "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.2.tgz"; - sha512 = "m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw=="; - }; - } - { - name = "_jridgewell_sourcemap_codec___sourcemap_codec_1.4.14.tgz"; - path = fetchurl { - name = "_jridgewell_sourcemap_codec___sourcemap_codec_1.4.14.tgz"; - url = "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"; - sha512 = "XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="; - }; - } - { - name = "_jridgewell_trace_mapping___trace_mapping_0.3.14.tgz"; - path = fetchurl { - name = "_jridgewell_trace_mapping___trace_mapping_0.3.14.tgz"; - url = "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz"; - sha512 = "bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ=="; - }; - } - { - name = "_leichtgewicht_ip_codec___ip_codec_2.0.4.tgz"; - path = fetchurl { - name = "_leichtgewicht_ip_codec___ip_codec_2.0.4.tgz"; - url = "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz"; - sha512 = "Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A=="; - }; - } - { - name = "_material_ui_core___core_4.12.3.tgz"; - path = fetchurl { - name = "_material_ui_core___core_4.12.3.tgz"; - url = "https://registry.yarnpkg.com/@material-ui/core/-/core-4.12.3.tgz"; - sha512 = "sdpgI/PL56QVsEJldwEe4FFaFTLUqN+rd7sSZiRCdx2E/C7z5yK0y/khAWVBH24tXwto7I1hCzNWfJGZIYJKnw=="; - }; - } - { - name = "_material_ui_icons___icons_4.11.2.tgz"; - path = fetchurl { - name = "_material_ui_icons___icons_4.11.2.tgz"; - url = "https://registry.yarnpkg.com/@material-ui/icons/-/icons-4.11.2.tgz"; - sha512 = "fQNsKX2TxBmqIGJCSi3tGTO/gZ+eJgWmMJkgDiOfyNaunNaxcklJQFaFogYcFl0qFuaEz1qaXYXboa/bUXVSOQ=="; - }; - } - { - name = "_material_ui_styles___styles_4.11.4.tgz"; - path = fetchurl { - name = "_material_ui_styles___styles_4.11.4.tgz"; - url = "https://registry.yarnpkg.com/@material-ui/styles/-/styles-4.11.4.tgz"; - sha512 = "KNTIZcnj/zprG5LW0Sao7zw+yG3O35pviHzejMdcSGCdWbiO8qzRgOYL8JAxAsWBKOKYwVZxXtHWaB5T2Kvxew=="; - }; - } - { - name = "_material_ui_system___system_4.12.1.tgz"; - path = fetchurl { - name = "_material_ui_system___system_4.12.1.tgz"; - url = "https://registry.yarnpkg.com/@material-ui/system/-/system-4.12.1.tgz"; - sha512 = "lUdzs4q9kEXZGhbN7BptyiS1rLNHe6kG9o8Y307HCvF4sQxbCgpL2qi+gUk+yI8a2DNk48gISEQxoxpgph0xIw=="; - }; - } - { - name = "_material_ui_types___types_5.1.0.tgz"; - path = fetchurl { - name = "_material_ui_types___types_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/@material-ui/types/-/types-5.1.0.tgz"; - sha512 = "7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A=="; - }; - } - { - name = "_material_ui_utils___utils_4.11.2.tgz"; - path = fetchurl { - name = "_material_ui_utils___utils_4.11.2.tgz"; - url = "https://registry.yarnpkg.com/@material-ui/utils/-/utils-4.11.2.tgz"; - sha512 = "Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA=="; - }; - } - { - name = "_mui_base___base_5.0.0_alpha.67.tgz"; - path = fetchurl { - name = "_mui_base___base_5.0.0_alpha.67.tgz"; - url = "https://registry.yarnpkg.com/@mui/base/-/base-5.0.0-alpha.67.tgz"; - sha512 = "yK2++NivZUitAVpheMc5QVuwrVCphrTw85L6qjKcvnSpB8wmVYne58CY2vzMCNEuHkuHG2jccq9/JlRZFGAanw=="; - }; - } - { - name = "_mui_icons_material___icons_material_5.3.1.tgz"; - path = fetchurl { - name = "_mui_icons_material___icons_material_5.3.1.tgz"; - url = "https://registry.yarnpkg.com/@mui/icons-material/-/icons-material-5.3.1.tgz"; - sha512 = "8zBWCaE8DHjIGZhGgMod92p6Rm38EhXrS+cZtaV0+jOTMeWh7z+mvswXzb/rVKc0ZYqw6mQYBcn2uEs2yclI9w=="; - }; - } - { - name = "_mui_material___material_5.4.0.tgz"; - path = fetchurl { - name = "_mui_material___material_5.4.0.tgz"; - url = "https://registry.yarnpkg.com/@mui/material/-/material-5.4.0.tgz"; - sha512 = "vfBIAMsRNWI/A4p/eP01MjqhSACwxRGYp/2Yi7WAU64PpI/TXR4b9SRl+XJMMJXVC7+abu4E3hTdF3oqwMCSYA=="; - }; - } - { - name = "_mui_private_theming___private_theming_5.3.0.tgz"; - path = fetchurl { - name = "_mui_private_theming___private_theming_5.3.0.tgz"; - url = "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-5.3.0.tgz"; - sha512 = "EBobUEyM9fMnteKrVPp8pTMUh81xXakyfdpkoh7Y19q9JpD2eh7QGAQVJVj0JBFlcUJD60NIE4K8rdokrRmLwg=="; - }; - } - { - name = "_mui_styled_engine___styled_engine_5.3.0.tgz"; - path = fetchurl { - name = "_mui_styled_engine___styled_engine_5.3.0.tgz"; - url = "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-5.3.0.tgz"; - sha512 = "I4YemFy9WnCLUdZ5T+6egpzc8e7Jq/uh9AJ3QInZHbyNu/9I2SWvNn7vHjWOT/D8Y8LMzIOhu5WwZbzjez7YRw=="; - }; - } - { - name = "_mui_system___system_5.4.0.tgz"; - path = fetchurl { - name = "_mui_system___system_5.4.0.tgz"; - url = "https://registry.yarnpkg.com/@mui/system/-/system-5.4.0.tgz"; - sha512 = "LX7g5gK5yCwiueSUVG73uVNc0yeHjsWUIFLrnPjP3m+J7O38RkPqyao5nZahhaSL1PGNbR9+zfkxljXthO9QqA=="; - }; - } - { - name = "_mui_types___types_7.1.0.tgz"; - path = fetchurl { - name = "_mui_types___types_7.1.0.tgz"; - url = "https://registry.yarnpkg.com/@mui/types/-/types-7.1.0.tgz"; - sha512 = "Hh7ALdq/GjfIwLvqH3XftuY3bcKhupktTm+S6qRIDGOtPtRuq2L21VWzOK4p7kblirK0XgGVH5BLwa6u8z/6QQ=="; - }; - } - { - name = "_mui_utils___utils_5.3.0.tgz"; - path = fetchurl { - name = "_mui_utils___utils_5.3.0.tgz"; - url = "https://registry.yarnpkg.com/@mui/utils/-/utils-5.3.0.tgz"; - sha512 = "O/E9IQKPMg0OrN7+gkn7Ga5o5WA2iXQGdyqNBFPNrYzxOvwzsEtM5K7MtTCGGYKFe8mhTRM0ZOjh5OM0dglw+Q=="; - }; - } - { - name = "_nodelib_fs.scandir___fs.scandir_2.1.5.tgz"; - path = fetchurl { - name = "_nodelib_fs.scandir___fs.scandir_2.1.5.tgz"; - url = "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"; - sha512 = "vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="; - }; - } - { - name = "_nodelib_fs.stat___fs.stat_2.0.5.tgz"; - path = fetchurl { - name = "_nodelib_fs.stat___fs.stat_2.0.5.tgz"; - url = "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"; - sha512 = "RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="; - }; - } - { - name = "_nodelib_fs.walk___fs.walk_1.2.8.tgz"; - path = fetchurl { - name = "_nodelib_fs.walk___fs.walk_1.2.8.tgz"; - url = "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"; - sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; - }; - } - { - name = "_pmmmwh_react_refresh_webpack_plugin___react_refresh_webpack_plugin_0.5.7.tgz"; - path = fetchurl { - name = "_pmmmwh_react_refresh_webpack_plugin___react_refresh_webpack_plugin_0.5.7.tgz"; - url = "https://registry.yarnpkg.com/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.7.tgz"; - sha512 = "bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q=="; - }; - } - { - name = "_popperjs_core___core_2.11.2.tgz"; - path = fetchurl { - name = "_popperjs_core___core_2.11.2.tgz"; - url = "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.2.tgz"; - sha512 = "92FRmppjjqz29VMJ2dn+xdyXZBrMlE42AV6Kq6BwjWV7CNUW1hs2FtxSNLQE+gJhaZ6AAmYuO9y8dshhcBl7vA=="; - }; - } - { - name = "_redux_saga_core___core_1.1.3.tgz"; - path = fetchurl { - name = "_redux_saga_core___core_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/@redux-saga/core/-/core-1.1.3.tgz"; - sha512 = "8tInBftak8TPzE6X13ABmEtRJGjtK17w7VUs7qV17S8hCO5S3+aUTWZ/DBsBJPdE8Z5jOPwYALyvofgq1Ws+kg=="; - }; - } - { - name = "_redux_saga_deferred___deferred_1.1.2.tgz"; - path = fetchurl { - name = "_redux_saga_deferred___deferred_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/@redux-saga/deferred/-/deferred-1.1.2.tgz"; - sha512 = "908rDLHFN2UUzt2jb4uOzj6afpjgJe3MjICaUNO3bvkV/kN/cNeI9PMr8BsFXB/MR8WTAZQq/PlTq8Kww3TBSQ=="; - }; - } - { - name = "_redux_saga_delay_p___delay_p_1.1.2.tgz"; - path = fetchurl { - name = "_redux_saga_delay_p___delay_p_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/@redux-saga/delay-p/-/delay-p-1.1.2.tgz"; - sha512 = "ojc+1IoC6OP65Ts5+ZHbEYdrohmIw1j9P7HS9MOJezqMYtCDgpkoqB5enAAZrNtnbSL6gVCWPHaoaTY5KeO0/g=="; - }; - } - { - name = "_redux_saga_is___is_1.1.2.tgz"; - path = fetchurl { - name = "_redux_saga_is___is_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/@redux-saga/is/-/is-1.1.2.tgz"; - sha512 = "OLbunKVsCVNTKEf2cH4TYyNbbPgvmZ52iaxBD4I1fTif4+MTXMa4/Z07L83zW/hTCXwpSZvXogqMqLfex2Tg6w=="; - }; - } - { - name = "_redux_saga_symbols___symbols_1.1.2.tgz"; - path = fetchurl { - name = "_redux_saga_symbols___symbols_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/@redux-saga/symbols/-/symbols-1.1.2.tgz"; - sha512 = "EfdGnF423glv3uMwLsGAtE6bg+R9MdqlHEzExnfagXPrIiuxwr3bdiAwz3gi+PsrQ3yBlaBpfGLtDG8rf3LgQQ=="; - }; - } - { - name = "_redux_saga_types___types_1.1.0.tgz"; - path = fetchurl { - name = "_redux_saga_types___types_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/@redux-saga/types/-/types-1.1.0.tgz"; - sha512 = "afmTuJrylUU/0OtqzaRkbyYFFNgCF73Bvel/sw90pvGrWIZ+vyoIJqA6eMSoA6+nb443kTmulmBtC9NerXboNg=="; - }; - } - { - name = "_rollup_plugin_babel___plugin_babel_5.3.1.tgz"; - path = fetchurl { - name = "_rollup_plugin_babel___plugin_babel_5.3.1.tgz"; - url = "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz"; - sha512 = "WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q=="; - }; - } - { - name = "_rollup_plugin_node_resolve___plugin_node_resolve_11.2.1.tgz"; - path = fetchurl { - name = "_rollup_plugin_node_resolve___plugin_node_resolve_11.2.1.tgz"; - url = "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz"; - sha512 = "yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg=="; - }; - } - { - name = "_rollup_plugin_replace___plugin_replace_2.4.2.tgz"; - path = fetchurl { - name = "_rollup_plugin_replace___plugin_replace_2.4.2.tgz"; - url = "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz"; - sha512 = "IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg=="; - }; - } - { - name = "_rollup_pluginutils___pluginutils_3.1.0.tgz"; - path = fetchurl { - name = "_rollup_pluginutils___pluginutils_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz"; - sha512 = "GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg=="; - }; - } - { - name = "_rushstack_eslint_patch___eslint_patch_1.1.4.tgz"; - path = fetchurl { - name = "_rushstack_eslint_patch___eslint_patch_1.1.4.tgz"; - url = "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.1.4.tgz"; - sha512 = "LwzQKA4vzIct1zNZzBmRKI9QuNpLgTQMEjsQLf3BXuGYb3QPTP4Yjf6mkdX+X1mYttZ808QpOwAzZjv28kq7DA=="; - }; - } - { - name = "_sinclair_typebox___typebox_0.24.26.tgz"; - path = fetchurl { - name = "_sinclair_typebox___typebox_0.24.26.tgz"; - url = "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.24.26.tgz"; - sha512 = "1ZVIyyS1NXDRVT8GjWD5jULjhDyM3IsIHef2VGUMdnWOlX2tkPjyEX/7K0TGSH2S8EaPhp1ylFdjSjUGQ+gecg=="; - }; - } - { - name = "_sinonjs_commons___commons_1.8.3.tgz"; - path = fetchurl { - name = "_sinonjs_commons___commons_1.8.3.tgz"; - url = "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz"; - sha512 = "xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ=="; - }; - } - { - name = "_sinonjs_fake_timers___fake_timers_8.1.0.tgz"; - path = fetchurl { - name = "_sinonjs_fake_timers___fake_timers_8.1.0.tgz"; - url = "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz"; - sha512 = "OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg=="; - }; - } - { - name = "_surma_rollup_plugin_off_main_thread___rollup_plugin_off_main_thread_2.2.3.tgz"; - path = fetchurl { - name = "_surma_rollup_plugin_off_main_thread___rollup_plugin_off_main_thread_2.2.3.tgz"; - url = "https://registry.yarnpkg.com/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz"; - sha512 = "lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ=="; - }; - } - { - name = "_svgr_babel_plugin_add_jsx_attribute___babel_plugin_add_jsx_attribute_5.4.0.tgz"; - path = fetchurl { - name = "_svgr_babel_plugin_add_jsx_attribute___babel_plugin_add_jsx_attribute_5.4.0.tgz"; - url = "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz"; - sha512 = "ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg=="; - }; - } - { - name = "_svgr_babel_plugin_remove_jsx_attribute___babel_plugin_remove_jsx_attribute_5.4.0.tgz"; - path = fetchurl { - name = "_svgr_babel_plugin_remove_jsx_attribute___babel_plugin_remove_jsx_attribute_5.4.0.tgz"; - url = "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz"; - sha512 = "yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg=="; - }; - } - { - name = "_svgr_babel_plugin_remove_jsx_empty_expression___babel_plugin_remove_jsx_empty_expression_5.0.1.tgz"; - path = fetchurl { - name = "_svgr_babel_plugin_remove_jsx_empty_expression___babel_plugin_remove_jsx_empty_expression_5.0.1.tgz"; - url = "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz"; - sha512 = "LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA=="; - }; - } - { - name = "_svgr_babel_plugin_replace_jsx_attribute_value___babel_plugin_replace_jsx_attribute_value_5.0.1.tgz"; - path = fetchurl { - name = "_svgr_babel_plugin_replace_jsx_attribute_value___babel_plugin_replace_jsx_attribute_value_5.0.1.tgz"; - url = "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz"; - sha512 = "PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ=="; - }; - } - { - name = "_svgr_babel_plugin_svg_dynamic_title___babel_plugin_svg_dynamic_title_5.4.0.tgz"; - path = fetchurl { - name = "_svgr_babel_plugin_svg_dynamic_title___babel_plugin_svg_dynamic_title_5.4.0.tgz"; - url = "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz"; - sha512 = "zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg=="; - }; - } - { - name = "_svgr_babel_plugin_svg_em_dimensions___babel_plugin_svg_em_dimensions_5.4.0.tgz"; - path = fetchurl { - name = "_svgr_babel_plugin_svg_em_dimensions___babel_plugin_svg_em_dimensions_5.4.0.tgz"; - url = "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz"; - sha512 = "cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw=="; - }; - } - { - name = "_svgr_babel_plugin_transform_react_native_svg___babel_plugin_transform_react_native_svg_5.4.0.tgz"; - path = fetchurl { - name = "_svgr_babel_plugin_transform_react_native_svg___babel_plugin_transform_react_native_svg_5.4.0.tgz"; - url = "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz"; - sha512 = "3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q=="; - }; - } - { - name = "_svgr_babel_plugin_transform_svg_component___babel_plugin_transform_svg_component_5.5.0.tgz"; - path = fetchurl { - name = "_svgr_babel_plugin_transform_svg_component___babel_plugin_transform_svg_component_5.5.0.tgz"; - url = "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz"; - sha512 = "q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ=="; - }; - } - { - name = "_svgr_babel_preset___babel_preset_5.5.0.tgz"; - path = fetchurl { - name = "_svgr_babel_preset___babel_preset_5.5.0.tgz"; - url = "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-5.5.0.tgz"; - sha512 = "4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig=="; - }; - } - { - name = "_svgr_core___core_5.5.0.tgz"; - path = fetchurl { - name = "_svgr_core___core_5.5.0.tgz"; - url = "https://registry.yarnpkg.com/@svgr/core/-/core-5.5.0.tgz"; - sha512 = "q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ=="; - }; - } - { - name = "_svgr_hast_util_to_babel_ast___hast_util_to_babel_ast_5.5.0.tgz"; - path = fetchurl { - name = "_svgr_hast_util_to_babel_ast___hast_util_to_babel_ast_5.5.0.tgz"; - url = "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz"; - sha512 = "cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ=="; - }; - } - { - name = "_svgr_plugin_jsx___plugin_jsx_5.5.0.tgz"; - path = fetchurl { - name = "_svgr_plugin_jsx___plugin_jsx_5.5.0.tgz"; - url = "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz"; - sha512 = "V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA=="; - }; - } - { - name = "_svgr_plugin_svgo___plugin_svgo_5.5.0.tgz"; - path = fetchurl { - name = "_svgr_plugin_svgo___plugin_svgo_5.5.0.tgz"; - url = "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz"; - sha512 = "r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ=="; - }; - } - { - name = "_svgr_webpack___webpack_5.5.0.tgz"; - path = fetchurl { - name = "_svgr_webpack___webpack_5.5.0.tgz"; - url = "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-5.5.0.tgz"; - sha512 = "DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g=="; - }; - } - { - name = "_testing_library_dom___dom_7.31.2.tgz"; - path = fetchurl { - name = "_testing_library_dom___dom_7.31.2.tgz"; - url = "https://registry.yarnpkg.com/@testing-library/dom/-/dom-7.31.2.tgz"; - sha512 = "3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ=="; - }; - } - { - name = "_testing_library_jest_dom___jest_dom_5.16.5.tgz"; - path = fetchurl { - name = "_testing_library_jest_dom___jest_dom_5.16.5.tgz"; - url = "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.16.5.tgz"; - sha512 = "N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA=="; - }; - } - { - name = "_testing_library_react___react_11.2.7.tgz"; - path = fetchurl { - name = "_testing_library_react___react_11.2.7.tgz"; - url = "https://registry.yarnpkg.com/@testing-library/react/-/react-11.2.7.tgz"; - sha512 = "tzRNp7pzd5QmbtXNG/mhdcl7Awfu/Iz1RaVHY75zTdOkmHCuzMhRL83gWHSgOAcjS3CCbyfwUHMZgRJb4kAfpA=="; - }; - } - { - name = "_testing_library_user_event___user_event_14.4.3.tgz"; - path = fetchurl { - name = "_testing_library_user_event___user_event_14.4.3.tgz"; - url = "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-14.4.3.tgz"; - sha512 = "kCUc5MEwaEMakkO5x7aoD+DLi02ehmEM2QCGWvNqAS1dV/fAvORWEjnjsEIvml59M7Y5kCkWN6fCCyPOe8OL6Q=="; - }; - } - { - name = "_tootallnate_once___once_1.1.2.tgz"; - path = fetchurl { - name = "_tootallnate_once___once_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz"; - sha512 = "RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw=="; - }; - } - { - name = "_trysound_sax___sax_0.2.0.tgz"; - path = fetchurl { - name = "_trysound_sax___sax_0.2.0.tgz"; - url = "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz"; - sha512 = "L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="; - }; - } - { - name = "_types_aria_query___aria_query_4.2.2.tgz"; - path = fetchurl { - name = "_types_aria_query___aria_query_4.2.2.tgz"; - url = "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-4.2.2.tgz"; - sha512 = "HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig=="; - }; - } - { - name = "_types_babel__core___babel__core_7.1.17.tgz"; - path = fetchurl { - name = "_types_babel__core___babel__core_7.1.17.tgz"; - url = "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.17.tgz"; - sha512 = "6zzkezS9QEIL8yCBvXWxPTJPNuMeECJVxSOhxNY/jfq9LxOTHivaYTqr37n9LknWWRTIkzqH2UilS5QFvfa90A=="; - }; - } - { - name = "_types_babel__core___babel__core_7.1.19.tgz"; - path = fetchurl { - name = "_types_babel__core___babel__core_7.1.19.tgz"; - url = "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.19.tgz"; - sha512 = "WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw=="; - }; - } - { - name = "_types_babel__generator___babel__generator_7.6.3.tgz"; - path = fetchurl { - name = "_types_babel__generator___babel__generator_7.6.3.tgz"; - url = "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.3.tgz"; - sha512 = "/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA=="; - }; - } - { - name = "_types_babel__template___babel__template_7.4.1.tgz"; - path = fetchurl { - name = "_types_babel__template___babel__template_7.4.1.tgz"; - url = "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz"; - sha512 = "azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g=="; - }; - } - { - name = "_types_babel__traverse___babel__traverse_7.14.2.tgz"; - path = fetchurl { - name = "_types_babel__traverse___babel__traverse_7.14.2.tgz"; - url = "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz"; - sha512 = "K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA=="; - }; - } - { - name = "_types_body_parser___body_parser_1.19.2.tgz"; - path = fetchurl { - name = "_types_body_parser___body_parser_1.19.2.tgz"; - url = "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.2.tgz"; - sha512 = "ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g=="; - }; - } - { - name = "_types_bonjour___bonjour_3.5.10.tgz"; - path = fetchurl { - name = "_types_bonjour___bonjour_3.5.10.tgz"; - url = "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.10.tgz"; - sha512 = "p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw=="; - }; - } - { - name = "_types_connect_history_api_fallback___connect_history_api_fallback_1.3.5.tgz"; - path = fetchurl { - name = "_types_connect_history_api_fallback___connect_history_api_fallback_1.3.5.tgz"; - url = "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz"; - sha512 = "h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw=="; - }; - } - { - name = "_types_connect___connect_3.4.35.tgz"; - path = fetchurl { - name = "_types_connect___connect_3.4.35.tgz"; - url = "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz"; - sha512 = "cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ=="; - }; - } - { - name = "_types_eslint_scope___eslint_scope_3.7.4.tgz"; - path = fetchurl { - name = "_types_eslint_scope___eslint_scope_3.7.4.tgz"; - url = "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.4.tgz"; - sha512 = "9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA=="; - }; - } - { - name = "_types_eslint___eslint_8.4.5.tgz"; - path = fetchurl { - name = "_types_eslint___eslint_8.4.5.tgz"; - url = "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.4.5.tgz"; - sha512 = "dhsC09y1gpJWnK+Ff4SGvCuSnk9DaU0BJZSzOwa6GVSg65XtTugLBITDAAzRU5duGBoXBHpdR/9jHGxJjNflJQ=="; - }; - } - { - name = "_types_estree___estree_0.0.50.tgz"; - path = fetchurl { - name = "_types_estree___estree_0.0.50.tgz"; - url = "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.50.tgz"; - sha512 = "C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw=="; - }; - } - { - name = "_types_estree___estree_0.0.39.tgz"; - path = fetchurl { - name = "_types_estree___estree_0.0.39.tgz"; - url = "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz"; - sha512 = "EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw=="; - }; - } - { - name = "_types_estree___estree_0.0.51.tgz"; - path = fetchurl { - name = "_types_estree___estree_0.0.51.tgz"; - url = "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.51.tgz"; - sha512 = "CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ=="; - }; - } - { - name = "_types_express_serve_static_core___express_serve_static_core_4.17.30.tgz"; - path = fetchurl { - name = "_types_express_serve_static_core___express_serve_static_core_4.17.30.tgz"; - url = "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.30.tgz"; - sha512 = "gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ=="; - }; - } - { - name = "_types_express___express_4.17.13.tgz"; - path = fetchurl { - name = "_types_express___express_4.17.13.tgz"; - url = "https://registry.yarnpkg.com/@types/express/-/express-4.17.13.tgz"; - sha512 = "6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA=="; - }; - } - { - name = "_types_graceful_fs___graceful_fs_4.1.5.tgz"; - path = fetchurl { - name = "_types_graceful_fs___graceful_fs_4.1.5.tgz"; - url = "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz"; - sha512 = "anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw=="; - }; - } - { - name = "_types_hoist_non_react_statics___hoist_non_react_statics_3.3.1.tgz"; - path = fetchurl { - name = "_types_hoist_non_react_statics___hoist_non_react_statics_3.3.1.tgz"; - url = "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz"; - sha512 = "iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA=="; - }; - } - { - name = "_types_html_minifier_terser___html_minifier_terser_6.1.0.tgz"; - path = fetchurl { - name = "_types_html_minifier_terser___html_minifier_terser_6.1.0.tgz"; - url = "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz"; - sha512 = "oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg=="; - }; - } - { - name = "_types_http_proxy___http_proxy_1.17.9.tgz"; - path = fetchurl { - name = "_types_http_proxy___http_proxy_1.17.9.tgz"; - url = "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.9.tgz"; - sha512 = "QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw=="; - }; - } - { - name = "_types_istanbul_lib_coverage___istanbul_lib_coverage_2.0.3.tgz"; - path = fetchurl { - name = "_types_istanbul_lib_coverage___istanbul_lib_coverage_2.0.3.tgz"; - url = "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz"; - sha512 = "sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw=="; - }; - } - { - name = "_types_istanbul_lib_report___istanbul_lib_report_3.0.0.tgz"; - path = fetchurl { - name = "_types_istanbul_lib_report___istanbul_lib_report_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"; - sha512 = "plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg=="; - }; - } - { - name = "_types_istanbul_reports___istanbul_reports_3.0.1.tgz"; - path = fetchurl { - name = "_types_istanbul_reports___istanbul_reports_3.0.1.tgz"; - url = "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz"; - sha512 = "c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw=="; - }; - } - { - name = "_types_jest___jest_27.0.3.tgz"; - path = fetchurl { - name = "_types_jest___jest_27.0.3.tgz"; - url = "https://registry.yarnpkg.com/@types/jest/-/jest-27.0.3.tgz"; - sha512 = "cmmwv9t7gBYt7hNKH5Spu7Kuu/DotGa+Ff+JGRKZ4db5eh8PnKS4LuebJ3YLUoyOyIHraTGyULn23YtEAm0VSg=="; - }; - } - { - name = "_types_json_schema___json_schema_7.0.9.tgz"; - path = fetchurl { - name = "_types_json_schema___json_schema_7.0.9.tgz"; - url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz"; - sha512 = "qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ=="; - }; - } - { - name = "_types_json_schema___json_schema_7.0.11.tgz"; - path = fetchurl { - name = "_types_json_schema___json_schema_7.0.11.tgz"; - url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz"; - sha512 = "wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ=="; - }; - } - { - name = "_types_json5___json5_0.0.29.tgz"; - path = fetchurl { - name = "_types_json5___json5_0.0.29.tgz"; - url = "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz"; - sha1 = "7ihweulOEdK4J7y+UnC86n8+ce4="; - }; - } - { - name = "_types_mime___mime_3.0.0.tgz"; - path = fetchurl { - name = "_types_mime___mime_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.0.tgz"; - sha512 = "fccbsHKqFDXClBZTDLA43zl0+TbxyIwyzIzwwhvoJvhNjOErCdeX2xJbURimv2EbSVUGav001PaCJg4mZxMl4w=="; - }; - } - { - name = "_types_node___node_17.0.0.tgz"; - path = fetchurl { - name = "_types_node___node_17.0.0.tgz"; - url = "https://registry.yarnpkg.com/@types/node/-/node-17.0.0.tgz"; - sha512 = "eMhwJXc931Ihh4tkU+Y7GiLzT/y/DBNpNtr4yU9O2w3SYBsr9NaOPhQlLKRmoWtI54uNwuo0IOUFQjVOTZYRvw=="; - }; - } - { - name = "_types_parse_json___parse_json_4.0.0.tgz"; - path = fetchurl { - name = "_types_parse_json___parse_json_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz"; - sha512 = "//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="; - }; - } - { - name = "_types_prettier___prettier_2.6.4.tgz"; - path = fetchurl { - name = "_types_prettier___prettier_2.6.4.tgz"; - url = "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.4.tgz"; - sha512 = "fOwvpvQYStpb/zHMx0Cauwywu9yLDmzWiiQBC7gJyq5tYLUXFZvDG7VK1B7WBxxjBJNKFOZ0zLoOQn8vmATbhw=="; - }; - } - { - name = "_types_prop_types___prop_types_15.7.4.tgz"; - path = fetchurl { - name = "_types_prop_types___prop_types_15.7.4.tgz"; - url = "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz"; - sha512 = "rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ=="; - }; - } - { - name = "_types_q___q_1.5.5.tgz"; - path = fetchurl { - name = "_types_q___q_1.5.5.tgz"; - url = "https://registry.yarnpkg.com/@types/q/-/q-1.5.5.tgz"; - sha512 = "L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ=="; - }; - } - { - name = "_types_qs___qs_6.9.7.tgz"; - path = fetchurl { - name = "_types_qs___qs_6.9.7.tgz"; - url = "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz"; - sha512 = "FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw=="; - }; - } - { - name = "_types_range_parser___range_parser_1.2.4.tgz"; - path = fetchurl { - name = "_types_range_parser___range_parser_1.2.4.tgz"; - url = "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz"; - sha512 = "EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="; - }; - } - { - name = "_types_react_is___react_is_17.0.3.tgz"; - path = fetchurl { - name = "_types_react_is___react_is_17.0.3.tgz"; - url = "https://registry.yarnpkg.com/@types/react-is/-/react-is-17.0.3.tgz"; - sha512 = "aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw=="; - }; - } - { - name = "_types_react_redux___react_redux_7.1.20.tgz"; - path = fetchurl { - name = "_types_react_redux___react_redux_7.1.20.tgz"; - url = "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.20.tgz"; - sha512 = "q42es4c8iIeTgcnB+yJgRTTzftv3eYYvCZOh1Ckn2eX/3o5TdsQYKUWpLoLuGlcY/p+VAhV9IOEZJcWk/vfkXw=="; - }; - } - { - name = "_types_react_transition_group___react_transition_group_4.4.4.tgz"; - path = fetchurl { - name = "_types_react_transition_group___react_transition_group_4.4.4.tgz"; - url = "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.4.tgz"; - sha512 = "7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug=="; - }; - } - { - name = "_types_react___react_17.0.37.tgz"; - path = fetchurl { - name = "_types_react___react_17.0.37.tgz"; - url = "https://registry.yarnpkg.com/@types/react/-/react-17.0.37.tgz"; - sha512 = "2FS1oTqBGcH/s0E+CjrCCR9+JMpsu9b69RTFO+40ua43ZqP5MmQ4iUde/dMjWR909KxZwmOQIFq6AV6NjEG5xg=="; - }; - } - { - name = "_types_resolve___resolve_1.17.1.tgz"; - path = fetchurl { - name = "_types_resolve___resolve_1.17.1.tgz"; - url = "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz"; - sha512 = "yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw=="; - }; - } - { - name = "_types_retry___retry_0.12.0.tgz"; - path = fetchurl { - name = "_types_retry___retry_0.12.0.tgz"; - url = "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz"; - sha512 = "wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA=="; - }; - } - { - name = "_types_scheduler___scheduler_0.16.2.tgz"; - path = fetchurl { - name = "_types_scheduler___scheduler_0.16.2.tgz"; - url = "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz"; - sha512 = "hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="; - }; - } - { - name = "_types_serve_index___serve_index_1.9.1.tgz"; - path = fetchurl { - name = "_types_serve_index___serve_index_1.9.1.tgz"; - url = "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.1.tgz"; - sha512 = "d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg=="; - }; - } - { - name = "_types_serve_static___serve_static_1.15.0.tgz"; - path = fetchurl { - name = "_types_serve_static___serve_static_1.15.0.tgz"; - url = "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.0.tgz"; - sha512 = "z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg=="; - }; - } - { - name = "_types_sockjs___sockjs_0.3.33.tgz"; - path = fetchurl { - name = "_types_sockjs___sockjs_0.3.33.tgz"; - url = "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.33.tgz"; - sha512 = "f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw=="; - }; - } - { - name = "_types_stack_utils___stack_utils_2.0.1.tgz"; - path = fetchurl { - name = "_types_stack_utils___stack_utils_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz"; - sha512 = "Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw=="; - }; - } - { - name = "_types_testing_library__jest_dom___testing_library__jest_dom_5.14.2.tgz"; - path = fetchurl { - name = "_types_testing_library__jest_dom___testing_library__jest_dom_5.14.2.tgz"; - url = "https://registry.yarnpkg.com/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.2.tgz"; - sha512 = "vehbtyHUShPxIa9SioxDwCvgxukDMH//icJG90sXQBUm5lJOHLT5kNeU9tnivhnA/TkOFMzGIXN2cTc4hY8/kg=="; - }; - } - { - name = "_types_trusted_types___trusted_types_2.0.2.tgz"; - path = fetchurl { - name = "_types_trusted_types___trusted_types_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.2.tgz"; - sha512 = "F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg=="; - }; - } - { - name = "_types_ws___ws_8.5.3.tgz"; - path = fetchurl { - name = "_types_ws___ws_8.5.3.tgz"; - url = "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.3.tgz"; - sha512 = "6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w=="; - }; - } - { - name = "_types_yargs_parser___yargs_parser_20.2.1.tgz"; - path = fetchurl { - name = "_types_yargs_parser___yargs_parser_20.2.1.tgz"; - url = "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz"; - sha512 = "7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw=="; - }; - } - { - name = "_types_yargs___yargs_15.0.14.tgz"; - path = fetchurl { - name = "_types_yargs___yargs_15.0.14.tgz"; - url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.14.tgz"; - sha512 = "yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ=="; - }; - } - { - name = "_types_yargs___yargs_16.0.4.tgz"; - path = fetchurl { - name = "_types_yargs___yargs_16.0.4.tgz"; - url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz"; - sha512 = "T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw=="; - }; - } - { - name = "_types_yargs___yargs_17.0.10.tgz"; - path = fetchurl { - name = "_types_yargs___yargs_17.0.10.tgz"; - url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.10.tgz"; - sha512 = "gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA=="; - }; - } - { - name = "_typescript_eslint_eslint_plugin___eslint_plugin_5.32.0.tgz"; - path = fetchurl { - name = "_typescript_eslint_eslint_plugin___eslint_plugin_5.32.0.tgz"; - url = "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.32.0.tgz"; - sha512 = "CHLuz5Uz7bHP2WgVlvoZGhf0BvFakBJKAD/43Ty0emn4wXWv5k01ND0C0fHcl/Im8Td2y/7h44E9pca9qAu2ew=="; - }; - } - { - name = "_typescript_eslint_experimental_utils___experimental_utils_5.32.0.tgz"; - path = fetchurl { - name = "_typescript_eslint_experimental_utils___experimental_utils_5.32.0.tgz"; - url = "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.32.0.tgz"; - sha512 = "/x72MkqLAoOQSOHFxdm17irJ1PNDWtdrMmfacaYniGT26nibak8vxEf9xmoVE+yTYL8N77I2icPtw89Yx6HvNg=="; - }; - } - { - name = "_typescript_eslint_parser___parser_5.32.0.tgz"; - path = fetchurl { - name = "_typescript_eslint_parser___parser_5.32.0.tgz"; - url = "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.32.0.tgz"; - sha512 = "IxRtsehdGV9GFQ35IGm5oKKR2OGcazUoiNBxhRV160iF9FoyuXxjY+rIqs1gfnd+4eL98OjeGnMpE7RF/NBb3A=="; - }; - } - { - name = "_typescript_eslint_scope_manager___scope_manager_5.32.0.tgz"; - path = fetchurl { - name = "_typescript_eslint_scope_manager___scope_manager_5.32.0.tgz"; - url = "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.32.0.tgz"; - sha512 = "KyAE+tUON0D7tNz92p1uetRqVJiiAkeluvwvZOqBmW9z2XApmk5WSMV9FrzOroAcVxJZB3GfUwVKr98Dr/OjOg=="; - }; - } - { - name = "_typescript_eslint_type_utils___type_utils_5.32.0.tgz"; - path = fetchurl { - name = "_typescript_eslint_type_utils___type_utils_5.32.0.tgz"; - url = "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.32.0.tgz"; - sha512 = "0gSsIhFDduBz3QcHJIp3qRCvVYbqzHg8D6bHFsDMrm0rURYDj+skBK2zmYebdCp+4nrd9VWd13egvhYFJj/wZg=="; - }; - } - { - name = "_typescript_eslint_types___types_5.32.0.tgz"; - path = fetchurl { - name = "_typescript_eslint_types___types_5.32.0.tgz"; - url = "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.32.0.tgz"; - sha512 = "EBUKs68DOcT/EjGfzywp+f8wG9Zw6gj6BjWu7KV/IYllqKJFPlZlLSYw/PTvVyiRw50t6wVbgv4p9uE2h6sZrQ=="; - }; - } - { - name = "_typescript_eslint_typescript_estree___typescript_estree_5.32.0.tgz"; - path = fetchurl { - name = "_typescript_eslint_typescript_estree___typescript_estree_5.32.0.tgz"; - url = "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.32.0.tgz"; - sha512 = "ZVAUkvPk3ITGtCLU5J4atCw9RTxK+SRc6hXqLtllC2sGSeMFWN+YwbiJR9CFrSFJ3w4SJfcWtDwNb/DmUIHdhg=="; - }; - } - { - name = "_typescript_eslint_utils___utils_5.32.0.tgz"; - path = fetchurl { - name = "_typescript_eslint_utils___utils_5.32.0.tgz"; - url = "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.32.0.tgz"; - sha512 = "W7lYIAI5Zlc5K082dGR27Fczjb3Q57ECcXefKU/f0ajM5ToM0P+N9NmJWip8GmGu/g6QISNT+K6KYB+iSHjXCQ=="; - }; - } - { - name = "_typescript_eslint_visitor_keys___visitor_keys_5.32.0.tgz"; - path = fetchurl { - name = "_typescript_eslint_visitor_keys___visitor_keys_5.32.0.tgz"; - url = "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.32.0.tgz"; - sha512 = "S54xOHZgfThiZ38/ZGTgB2rqx51CMJ5MCfVT2IplK4Q7hgzGfe0nLzLCcenDnc/cSjP568hdeKfeDcBgqNHD/g=="; - }; - } - { - name = "_webassemblyjs_ast___ast_1.11.1.tgz"; - path = fetchurl { - name = "_webassemblyjs_ast___ast_1.11.1.tgz"; - url = "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.1.tgz"; - sha512 = "ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw=="; - }; - } - { - name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.11.1.tgz"; - path = fetchurl { - name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.11.1.tgz"; - url = "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz"; - sha512 = "iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ=="; - }; - } - { - name = "_webassemblyjs_helper_api_error___helper_api_error_1.11.1.tgz"; - path = fetchurl { - name = "_webassemblyjs_helper_api_error___helper_api_error_1.11.1.tgz"; - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz"; - sha512 = "RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg=="; - }; - } - { - name = "_webassemblyjs_helper_buffer___helper_buffer_1.11.1.tgz"; - path = fetchurl { - name = "_webassemblyjs_helper_buffer___helper_buffer_1.11.1.tgz"; - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz"; - sha512 = "gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA=="; - }; - } - { - name = "_webassemblyjs_helper_numbers___helper_numbers_1.11.1.tgz"; - path = fetchurl { - name = "_webassemblyjs_helper_numbers___helper_numbers_1.11.1.tgz"; - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz"; - sha512 = "vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ=="; - }; - } - { - name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.11.1.tgz"; - path = fetchurl { - name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.11.1.tgz"; - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz"; - sha512 = "PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q=="; - }; - } - { - name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.11.1.tgz"; - path = fetchurl { - name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.11.1.tgz"; - url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz"; - sha512 = "10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg=="; - }; - } - { - name = "_webassemblyjs_ieee754___ieee754_1.11.1.tgz"; - path = fetchurl { - name = "_webassemblyjs_ieee754___ieee754_1.11.1.tgz"; - url = "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz"; - sha512 = "hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ=="; - }; - } - { - name = "_webassemblyjs_leb128___leb128_1.11.1.tgz"; - path = fetchurl { - name = "_webassemblyjs_leb128___leb128_1.11.1.tgz"; - url = "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.1.tgz"; - sha512 = "BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw=="; - }; - } - { - name = "_webassemblyjs_utf8___utf8_1.11.1.tgz"; - path = fetchurl { - name = "_webassemblyjs_utf8___utf8_1.11.1.tgz"; - url = "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.1.tgz"; - sha512 = "9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ=="; - }; - } - { - name = "_webassemblyjs_wasm_edit___wasm_edit_1.11.1.tgz"; - path = fetchurl { - name = "_webassemblyjs_wasm_edit___wasm_edit_1.11.1.tgz"; - url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz"; - sha512 = "g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA=="; - }; - } - { - name = "_webassemblyjs_wasm_gen___wasm_gen_1.11.1.tgz"; - path = fetchurl { - name = "_webassemblyjs_wasm_gen___wasm_gen_1.11.1.tgz"; - url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz"; - sha512 = "F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA=="; - }; - } - { - name = "_webassemblyjs_wasm_opt___wasm_opt_1.11.1.tgz"; - path = fetchurl { - name = "_webassemblyjs_wasm_opt___wasm_opt_1.11.1.tgz"; - url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz"; - sha512 = "VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw=="; - }; - } - { - name = "_webassemblyjs_wasm_parser___wasm_parser_1.11.1.tgz"; - path = fetchurl { - name = "_webassemblyjs_wasm_parser___wasm_parser_1.11.1.tgz"; - url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz"; - sha512 = "rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA=="; - }; - } - { - name = "_webassemblyjs_wast_printer___wast_printer_1.11.1.tgz"; - path = fetchurl { - name = "_webassemblyjs_wast_printer___wast_printer_1.11.1.tgz"; - url = "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz"; - sha512 = "IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg=="; - }; - } - { - name = "_xtuc_ieee754___ieee754_1.2.0.tgz"; - path = fetchurl { - name = "_xtuc_ieee754___ieee754_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz"; - sha512 = "DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA=="; - }; - } - { - name = "_xtuc_long___long_4.2.2.tgz"; - path = fetchurl { - name = "_xtuc_long___long_4.2.2.tgz"; - url = "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz"; - sha512 = "NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ=="; - }; - } - { - name = "abab___abab_2.0.5.tgz"; - path = fetchurl { - name = "abab___abab_2.0.5.tgz"; - url = "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz"; - sha512 = "9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q=="; - }; - } - { - name = "accepts___accepts_1.3.7.tgz"; - path = fetchurl { - name = "accepts___accepts_1.3.7.tgz"; - url = "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz"; - sha512 = "Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="; - }; - } - { - name = "accepts___accepts_1.3.8.tgz"; - path = fetchurl { - name = "accepts___accepts_1.3.8.tgz"; - url = "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz"; - sha512 = "PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw=="; - }; - } - { - name = "acorn_globals___acorn_globals_6.0.0.tgz"; - path = fetchurl { - name = "acorn_globals___acorn_globals_6.0.0.tgz"; - url = "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz"; - sha512 = "ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg=="; - }; - } - { - name = "acorn_import_assertions___acorn_import_assertions_1.8.0.tgz"; - path = fetchurl { - name = "acorn_import_assertions___acorn_import_assertions_1.8.0.tgz"; - url = "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz"; - sha512 = "m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw=="; - }; - } - { - name = "acorn_jsx___acorn_jsx_5.3.2.tgz"; - path = fetchurl { - name = "acorn_jsx___acorn_jsx_5.3.2.tgz"; - url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz"; - sha512 = "rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="; - }; - } - { - name = "acorn_node___acorn_node_1.8.2.tgz"; - path = fetchurl { - name = "acorn_node___acorn_node_1.8.2.tgz"; - url = "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz"; - sha512 = "8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A=="; - }; - } - { - name = "acorn_walk___acorn_walk_7.2.0.tgz"; - path = fetchurl { - name = "acorn_walk___acorn_walk_7.2.0.tgz"; - url = "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz"; - sha512 = "OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA=="; - }; - } - { - name = "acorn___acorn_7.4.1.tgz"; - path = fetchurl { - name = "acorn___acorn_7.4.1.tgz"; - url = "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz"; - sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; - }; - } - { - name = "acorn___acorn_8.6.0.tgz"; - path = fetchurl { - name = "acorn___acorn_8.6.0.tgz"; - url = "https://registry.yarnpkg.com/acorn/-/acorn-8.6.0.tgz"; - sha512 = "U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw=="; - }; - } - { - name = "acorn___acorn_8.8.0.tgz"; - path = fetchurl { - name = "acorn___acorn_8.8.0.tgz"; - url = "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz"; - sha512 = "QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w=="; - }; - } - { - name = "address___address_1.1.2.tgz"; - path = fetchurl { - name = "address___address_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz"; - sha512 = "aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA=="; - }; - } - { - name = "address___address_1.2.0.tgz"; - path = fetchurl { - name = "address___address_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/address/-/address-1.2.0.tgz"; - sha512 = "tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig=="; - }; - } - { - name = "adjust_sourcemap_loader___adjust_sourcemap_loader_4.0.0.tgz"; - path = fetchurl { - name = "adjust_sourcemap_loader___adjust_sourcemap_loader_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz"; - sha512 = "OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A=="; - }; - } - { - name = "agent_base___agent_base_6.0.2.tgz"; - path = fetchurl { - name = "agent_base___agent_base_6.0.2.tgz"; - url = "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz"; - sha512 = "RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="; - }; - } - { - name = "ajv_formats___ajv_formats_2.1.1.tgz"; - path = fetchurl { - name = "ajv_formats___ajv_formats_2.1.1.tgz"; - url = "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz"; - sha512 = "Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA=="; - }; - } - { - name = "ajv_keywords___ajv_keywords_3.5.2.tgz"; - path = fetchurl { - name = "ajv_keywords___ajv_keywords_3.5.2.tgz"; - url = "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz"; - sha512 = "5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="; - }; - } - { - name = "ajv_keywords___ajv_keywords_5.1.0.tgz"; - path = fetchurl { - name = "ajv_keywords___ajv_keywords_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz"; - sha512 = "YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw=="; - }; - } - { - name = "ajv___ajv_6.12.6.tgz"; - path = fetchurl { - name = "ajv___ajv_6.12.6.tgz"; - url = "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz"; - sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; - }; - } - { - name = "ajv___ajv_8.11.0.tgz"; - path = fetchurl { - name = "ajv___ajv_8.11.0.tgz"; - url = "https://registry.yarnpkg.com/ajv/-/ajv-8.11.0.tgz"; - sha512 = "wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg=="; - }; - } - { - name = "ansi_escapes___ansi_escapes_4.3.2.tgz"; - path = fetchurl { - name = "ansi_escapes___ansi_escapes_4.3.2.tgz"; - url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz"; - sha512 = "gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="; - }; - } - { - name = "ansi_html_community___ansi_html_community_0.0.8.tgz"; - path = fetchurl { - name = "ansi_html_community___ansi_html_community_0.0.8.tgz"; - url = "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz"; - sha512 = "1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw=="; - }; - } - { - name = "ansi_regex___ansi_regex_5.0.1.tgz"; - path = fetchurl { - name = "ansi_regex___ansi_regex_5.0.1.tgz"; - url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz"; - sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; - }; - } - { - name = "ansi_regex___ansi_regex_6.0.1.tgz"; - path = fetchurl { - name = "ansi_regex___ansi_regex_6.0.1.tgz"; - url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz"; - sha512 = "n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA=="; - }; - } - { - name = "ansi_styles___ansi_styles_3.2.1.tgz"; - path = fetchurl { - name = "ansi_styles___ansi_styles_3.2.1.tgz"; - url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz"; - sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; - }; - } - { - name = "ansi_styles___ansi_styles_4.3.0.tgz"; - path = fetchurl { - name = "ansi_styles___ansi_styles_4.3.0.tgz"; - url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz"; - sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; - }; - } - { - name = "ansi_styles___ansi_styles_5.2.0.tgz"; - path = fetchurl { - name = "ansi_styles___ansi_styles_5.2.0.tgz"; - url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz"; - sha512 = "Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="; - }; - } - { - name = "anymatch___anymatch_3.1.2.tgz"; - path = fetchurl { - name = "anymatch___anymatch_3.1.2.tgz"; - url = "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz"; - sha512 = "P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="; - }; - } - { - name = "arg___arg_5.0.2.tgz"; - path = fetchurl { - name = "arg___arg_5.0.2.tgz"; - url = "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz"; - sha512 = "PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="; - }; - } - { - name = "argparse___argparse_1.0.10.tgz"; - path = fetchurl { - name = "argparse___argparse_1.0.10.tgz"; - url = "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz"; - sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="; - }; - } - { - name = "argparse___argparse_2.0.1.tgz"; - path = fetchurl { - name = "argparse___argparse_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz"; - sha512 = "8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="; - }; - } - { - name = "aria_query___aria_query_4.2.2.tgz"; - path = fetchurl { - name = "aria_query___aria_query_4.2.2.tgz"; - url = "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz"; - sha512 = "o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA=="; - }; - } - { - name = "aria_query___aria_query_5.0.0.tgz"; - path = fetchurl { - name = "aria_query___aria_query_5.0.0.tgz"; - url = "https://registry.yarnpkg.com/aria-query/-/aria-query-5.0.0.tgz"; - sha512 = "V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg=="; - }; - } - { - name = "array_flatten___array_flatten_1.1.1.tgz"; - path = fetchurl { - name = "array_flatten___array_flatten_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz"; - sha1 = "ml9pkFGx5wczKPKgCJaLZOopVdI="; - }; - } - { - name = "array_flatten___array_flatten_2.1.2.tgz"; - path = fetchurl { - name = "array_flatten___array_flatten_2.1.2.tgz"; - url = "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz"; - sha512 = "hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ=="; - }; - } - { - name = "array_includes___array_includes_3.1.4.tgz"; - path = fetchurl { - name = "array_includes___array_includes_3.1.4.tgz"; - url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.4.tgz"; - sha512 = "ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw=="; - }; - } - { - name = "array_includes___array_includes_3.1.5.tgz"; - path = fetchurl { - name = "array_includes___array_includes_3.1.5.tgz"; - url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.5.tgz"; - sha512 = "iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ=="; - }; - } - { - name = "array_union___array_union_2.1.0.tgz"; - path = fetchurl { - name = "array_union___array_union_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz"; - sha512 = "HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="; - }; - } - { - name = "array.prototype.flat___array.prototype.flat_1.2.5.tgz"; - path = fetchurl { - name = "array.prototype.flat___array.prototype.flat_1.2.5.tgz"; - url = "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz"; - sha512 = "KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg=="; - }; - } - { - name = "array.prototype.flatmap___array.prototype.flatmap_1.3.0.tgz"; - path = fetchurl { - name = "array.prototype.flatmap___array.prototype.flatmap_1.3.0.tgz"; - url = "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz"; - sha512 = "PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg=="; - }; - } - { - name = "array.prototype.foreach___array.prototype.foreach_1.0.2.tgz"; - path = fetchurl { - name = "array.prototype.foreach___array.prototype.foreach_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/array.prototype.foreach/-/array.prototype.foreach-1.0.2.tgz"; - sha512 = "gCOgyBKIaFL5hekfQLhsNmF0TY4Y5JdtOyFKtbSpL72oiCAZ9Zi7TFvcfSsM1LnBFMog1RYVJF0PHgtnY+U5nA=="; - }; - } - { - name = "asap___asap_2.0.6.tgz"; - path = fetchurl { - name = "asap___asap_2.0.6.tgz"; - url = "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz"; - sha1 = "5QNHYR1+aQlDIIu9r+vLwvuGbUY="; - }; - } - { - name = "ast_types_flow___ast_types_flow_0.0.7.tgz"; - path = fetchurl { - name = "ast_types_flow___ast_types_flow_0.0.7.tgz"; - url = "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz"; - sha1 = "9wtzXGvKGlycItmCw+Oef+ujva0="; - }; - } - { - name = "async___async_3.2.4.tgz"; - path = fetchurl { - name = "async___async_3.2.4.tgz"; - url = "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz"; - sha512 = "iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ=="; - }; - } - { - name = "asynckit___asynckit_0.4.0.tgz"; - path = fetchurl { - name = "asynckit___asynckit_0.4.0.tgz"; - url = "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz"; - sha1 = "x57Zf380y48robyXkLzDZkdLS3k="; - }; - } - { - name = "at_least_node___at_least_node_1.0.0.tgz"; - path = fetchurl { - name = "at_least_node___at_least_node_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz"; - sha512 = "+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg=="; - }; - } - { - name = "attr_accept___attr_accept_2.2.2.tgz"; - path = fetchurl { - name = "attr_accept___attr_accept_2.2.2.tgz"; - url = "https://registry.yarnpkg.com/attr-accept/-/attr-accept-2.2.2.tgz"; - sha512 = "7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg=="; - }; - } - { - name = "autoprefixer___autoprefixer_10.4.8.tgz"; - path = fetchurl { - name = "autoprefixer___autoprefixer_10.4.8.tgz"; - url = "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.8.tgz"; - sha512 = "75Jr6Q/XpTqEf6D2ltS5uMewJIx5irCU1oBYJrWjFenq/m12WRRrz6g15L1EIoYvPLXTbEry7rDOwrcYNj77xw=="; - }; - } - { - name = "autosuggest_highlight___autosuggest_highlight_3.2.0.tgz"; - path = fetchurl { - name = "autosuggest_highlight___autosuggest_highlight_3.2.0.tgz"; - url = "https://registry.yarnpkg.com/autosuggest-highlight/-/autosuggest-highlight-3.2.0.tgz"; - sha512 = "BI38Ju70l3XP7c/eZHOhEy1eUK0Bpweepcr+/ru1e0LOK2nWdEl8HysyNwibfNqcLFSNZ9t2Jcv3pjiSB+UG1Q=="; - }; - } - { - name = "axe_core___axe_core_4.4.3.tgz"; - path = fetchurl { - name = "axe_core___axe_core_4.4.3.tgz"; - url = "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.3.tgz"; - sha512 = "32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w=="; - }; - } - { - name = "axobject_query___axobject_query_2.2.0.tgz"; - path = fetchurl { - name = "axobject_query___axobject_query_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz"; - sha512 = "Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA=="; - }; - } - { - name = "babel_jest___babel_jest_27.5.1.tgz"; - path = fetchurl { - name = "babel_jest___babel_jest_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.5.1.tgz"; - sha512 = "cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg=="; - }; - } - { - name = "babel_loader___babel_loader_8.2.5.tgz"; - path = fetchurl { - name = "babel_loader___babel_loader_8.2.5.tgz"; - url = "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.5.tgz"; - sha512 = "OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ=="; - }; - } - { - name = "babel_plugin_dynamic_import_node___babel_plugin_dynamic_import_node_2.3.3.tgz"; - path = fetchurl { - name = "babel_plugin_dynamic_import_node___babel_plugin_dynamic_import_node_2.3.3.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz"; - sha512 = "jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ=="; - }; - } - { - name = "babel_plugin_istanbul___babel_plugin_istanbul_6.1.1.tgz"; - path = fetchurl { - name = "babel_plugin_istanbul___babel_plugin_istanbul_6.1.1.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz"; - sha512 = "Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA=="; - }; - } - { - name = "babel_plugin_jest_hoist___babel_plugin_jest_hoist_27.5.1.tgz"; - path = fetchurl { - name = "babel_plugin_jest_hoist___babel_plugin_jest_hoist_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz"; - sha512 = "50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ=="; - }; - } - { - name = "babel_plugin_macros___babel_plugin_macros_2.8.0.tgz"; - path = fetchurl { - name = "babel_plugin_macros___babel_plugin_macros_2.8.0.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz"; - sha512 = "SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg=="; - }; - } - { - name = "babel_plugin_macros___babel_plugin_macros_3.1.0.tgz"; - path = fetchurl { - name = "babel_plugin_macros___babel_plugin_macros_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz"; - sha512 = "Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg=="; - }; - } - { - name = "babel_plugin_named_asset_import___babel_plugin_named_asset_import_0.3.8.tgz"; - path = fetchurl { - name = "babel_plugin_named_asset_import___babel_plugin_named_asset_import_0.3.8.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz"; - sha512 = "WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q=="; - }; - } - { - name = "babel_plugin_polyfill_corejs2___babel_plugin_polyfill_corejs2_0.3.0.tgz"; - path = fetchurl { - name = "babel_plugin_polyfill_corejs2___babel_plugin_polyfill_corejs2_0.3.0.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.0.tgz"; - sha512 = "wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA=="; - }; - } - { - name = "babel_plugin_polyfill_corejs2___babel_plugin_polyfill_corejs2_0.3.2.tgz"; - path = fetchurl { - name = "babel_plugin_polyfill_corejs2___babel_plugin_polyfill_corejs2_0.3.2.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.2.tgz"; - sha512 = "LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q=="; - }; - } - { - name = "babel_plugin_polyfill_corejs3___babel_plugin_polyfill_corejs3_0.4.0.tgz"; - path = fetchurl { - name = "babel_plugin_polyfill_corejs3___babel_plugin_polyfill_corejs3_0.4.0.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.4.0.tgz"; - sha512 = "YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw=="; - }; - } - { - name = "babel_plugin_polyfill_corejs3___babel_plugin_polyfill_corejs3_0.5.3.tgz"; - path = fetchurl { - name = "babel_plugin_polyfill_corejs3___babel_plugin_polyfill_corejs3_0.5.3.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.3.tgz"; - sha512 = "zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw=="; - }; - } - { - name = "babel_plugin_polyfill_regenerator___babel_plugin_polyfill_regenerator_0.3.0.tgz"; - path = fetchurl { - name = "babel_plugin_polyfill_regenerator___babel_plugin_polyfill_regenerator_0.3.0.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.0.tgz"; - sha512 = "dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg=="; - }; - } - { - name = "babel_plugin_polyfill_regenerator___babel_plugin_polyfill_regenerator_0.4.0.tgz"; - path = fetchurl { - name = "babel_plugin_polyfill_regenerator___babel_plugin_polyfill_regenerator_0.4.0.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.0.tgz"; - sha512 = "RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw=="; - }; - } - { - name = "babel_plugin_transform_react_remove_prop_types___babel_plugin_transform_react_remove_prop_types_0.4.24.tgz"; - path = fetchurl { - name = "babel_plugin_transform_react_remove_prop_types___babel_plugin_transform_react_remove_prop_types_0.4.24.tgz"; - url = "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz"; - sha512 = "eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA=="; - }; - } - { - name = "babel_preset_current_node_syntax___babel_preset_current_node_syntax_1.0.1.tgz"; - path = fetchurl { - name = "babel_preset_current_node_syntax___babel_preset_current_node_syntax_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz"; - sha512 = "M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ=="; - }; - } - { - name = "babel_preset_jest___babel_preset_jest_27.5.1.tgz"; - path = fetchurl { - name = "babel_preset_jest___babel_preset_jest_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz"; - sha512 = "Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag=="; - }; - } - { - name = "babel_preset_react_app___babel_preset_react_app_10.0.1.tgz"; - path = fetchurl { - name = "babel_preset_react_app___babel_preset_react_app_10.0.1.tgz"; - url = "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz"; - sha512 = "b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg=="; - }; - } - { - name = "balanced_match___balanced_match_1.0.2.tgz"; - path = fetchurl { - name = "balanced_match___balanced_match_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz"; - sha512 = "3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="; - }; - } - { - name = "batch___batch_0.6.1.tgz"; - path = fetchurl { - name = "batch___batch_0.6.1.tgz"; - url = "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz"; - sha1 = "3DQxT05nkxgJP8dgJyUl+UvyXBY="; - }; - } - { - name = "bfj___bfj_7.0.2.tgz"; - path = fetchurl { - name = "bfj___bfj_7.0.2.tgz"; - url = "https://registry.yarnpkg.com/bfj/-/bfj-7.0.2.tgz"; - sha512 = "+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw=="; - }; - } - { - name = "big_integer___big_integer_1.6.51.tgz"; - path = fetchurl { - name = "big_integer___big_integer_1.6.51.tgz"; - url = "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz"; - sha512 = "GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg=="; - }; - } - { - name = "big.js___big.js_5.2.2.tgz"; - path = fetchurl { - name = "big.js___big.js_5.2.2.tgz"; - url = "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz"; - sha512 = "vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="; - }; - } - { - name = "binary_extensions___binary_extensions_2.2.0.tgz"; - path = fetchurl { - name = "binary_extensions___binary_extensions_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz"; - sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="; - }; - } - { - name = "bluebird___bluebird_3.7.2.tgz"; - path = fetchurl { - name = "bluebird___bluebird_3.7.2.tgz"; - url = "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz"; - sha512 = "XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="; - }; - } - { - name = "body_parser___body_parser_1.20.0.tgz"; - path = fetchurl { - name = "body_parser___body_parser_1.20.0.tgz"; - url = "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.0.tgz"; - sha512 = "DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg=="; - }; - } - { - name = "bonjour_service___bonjour_service_1.0.13.tgz"; - path = fetchurl { - name = "bonjour_service___bonjour_service_1.0.13.tgz"; - url = "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.0.13.tgz"; - sha512 = "LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA=="; - }; - } - { - name = "boolbase___boolbase_1.0.0.tgz"; - path = fetchurl { - name = "boolbase___boolbase_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz"; - sha1 = "aN/1++YMUes3cl6p4+0xDcwed24="; - }; - } - { - name = "brace_expansion___brace_expansion_1.1.11.tgz"; - path = fetchurl { - name = "brace_expansion___brace_expansion_1.1.11.tgz"; - url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz"; - sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; - }; - } - { - name = "brace_expansion___brace_expansion_2.0.1.tgz"; - path = fetchurl { - name = "brace_expansion___brace_expansion_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz"; - sha512 = "XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="; - }; - } - { - name = "braces___braces_3.0.2.tgz"; - path = fetchurl { - name = "braces___braces_3.0.2.tgz"; - url = "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz"; - sha512 = "b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="; - }; - } - { - name = "broadcast_channel___broadcast_channel_3.7.0.tgz"; - path = fetchurl { - name = "broadcast_channel___broadcast_channel_3.7.0.tgz"; - url = "https://registry.yarnpkg.com/broadcast-channel/-/broadcast-channel-3.7.0.tgz"; - sha512 = "cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg=="; - }; - } - { - name = "browser_process_hrtime___browser_process_hrtime_1.0.0.tgz"; - path = fetchurl { - name = "browser_process_hrtime___browser_process_hrtime_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz"; - sha512 = "9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="; - }; - } - { - name = "browserslist___browserslist_4.19.1.tgz"; - path = fetchurl { - name = "browserslist___browserslist_4.19.1.tgz"; - url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.19.1.tgz"; - sha512 = "u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A=="; - }; - } - { - name = "browserslist___browserslist_4.21.3.tgz"; - path = fetchurl { - name = "browserslist___browserslist_4.21.3.tgz"; - url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.3.tgz"; - sha512 = "898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ=="; - }; - } - { - name = "bser___bser_2.1.1.tgz"; - path = fetchurl { - name = "bser___bser_2.1.1.tgz"; - url = "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz"; - sha512 = "gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ=="; - }; - } - { - name = "buffer_from___buffer_from_1.1.2.tgz"; - path = fetchurl { - name = "buffer_from___buffer_from_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz"; - sha512 = "E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="; - }; - } - { - name = "builtin_modules___builtin_modules_3.2.0.tgz"; - path = fetchurl { - name = "builtin_modules___builtin_modules_3.2.0.tgz"; - url = "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.2.0.tgz"; - sha512 = "lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA=="; - }; - } - { - name = "bytes___bytes_3.0.0.tgz"; - path = fetchurl { - name = "bytes___bytes_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz"; - sha1 = "0ygVQE1olpn4Wk6k+odV3ROpYEg="; - }; - } - { - name = "bytes___bytes_3.1.2.tgz"; - path = fetchurl { - name = "bytes___bytes_3.1.2.tgz"; - url = "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz"; - sha512 = "/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="; - }; - } - { - name = "call_bind___call_bind_1.0.2.tgz"; - path = fetchurl { - name = "call_bind___call_bind_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz"; - sha512 = "7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="; - }; - } - { - name = "callsites___callsites_3.1.0.tgz"; - path = fetchurl { - name = "callsites___callsites_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz"; - sha512 = "P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="; - }; - } - { - name = "camel_case___camel_case_4.1.2.tgz"; - path = fetchurl { - name = "camel_case___camel_case_4.1.2.tgz"; - url = "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz"; - sha512 = "gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw=="; - }; - } - { - name = "camelcase_css___camelcase_css_2.0.1.tgz"; - path = fetchurl { - name = "camelcase_css___camelcase_css_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz"; - sha512 = "QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA=="; - }; - } - { - name = "camelcase___camelcase_5.3.1.tgz"; - path = fetchurl { - name = "camelcase___camelcase_5.3.1.tgz"; - url = "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz"; - sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; - }; - } - { - name = "camelcase___camelcase_6.2.1.tgz"; - path = fetchurl { - name = "camelcase___camelcase_6.2.1.tgz"; - url = "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.1.tgz"; - sha512 = "tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA=="; - }; - } - { - name = "camelcase___camelcase_6.3.0.tgz"; - path = fetchurl { - name = "camelcase___camelcase_6.3.0.tgz"; - url = "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz"; - sha512 = "Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="; - }; - } - { - name = "caniuse_api___caniuse_api_3.0.0.tgz"; - path = fetchurl { - name = "caniuse_api___caniuse_api_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz"; - sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; - }; - } - { - name = "caniuse_lite___caniuse_lite_1.0.30001287.tgz"; - path = fetchurl { - name = "caniuse_lite___caniuse_lite_1.0.30001287.tgz"; - url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001287.tgz"; - sha512 = "4udbs9bc0hfNrcje++AxBuc6PfLNHwh3PO9kbwnfCQWyqtlzg3py0YgFu8jyRTTo85VAz4U+VLxSlID09vNtWA=="; - }; - } - { - name = "caniuse_lite___caniuse_lite_1.0.30001373.tgz"; - path = fetchurl { - name = "caniuse_lite___caniuse_lite_1.0.30001373.tgz"; - url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001373.tgz"; - sha512 = "pJYArGHrPp3TUqQzFYRmP/lwJlj8RCbVe3Gd3eJQkAV8SAC6b19XS9BjMvRdvaS8RMkaTN8ZhoHP6S1y8zzwEQ=="; - }; - } - { - name = "case_sensitive_paths_webpack_plugin___case_sensitive_paths_webpack_plugin_2.4.0.tgz"; - path = fetchurl { - name = "case_sensitive_paths_webpack_plugin___case_sensitive_paths_webpack_plugin_2.4.0.tgz"; - url = "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz"; - sha512 = "roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw=="; - }; - } - { - name = "chalk___chalk_2.4.2.tgz"; - path = fetchurl { - name = "chalk___chalk_2.4.2.tgz"; - url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz"; - sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; - }; - } - { - name = "chalk___chalk_3.0.0.tgz"; - path = fetchurl { - name = "chalk___chalk_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz"; - sha512 = "4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg=="; - }; - } - { - name = "chalk___chalk_4.1.2.tgz"; - path = fetchurl { - name = "chalk___chalk_4.1.2.tgz"; - url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz"; - sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="; - }; - } - { - name = "char_regex___char_regex_1.0.2.tgz"; - path = fetchurl { - name = "char_regex___char_regex_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz"; - sha512 = "kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw=="; - }; - } - { - name = "char_regex___char_regex_2.0.1.tgz"; - path = fetchurl { - name = "char_regex___char_regex_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/char-regex/-/char-regex-2.0.1.tgz"; - sha512 = "oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw=="; - }; - } - { - name = "check_types___check_types_11.1.2.tgz"; - path = fetchurl { - name = "check_types___check_types_11.1.2.tgz"; - url = "https://registry.yarnpkg.com/check-types/-/check-types-11.1.2.tgz"; - sha512 = "tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ=="; - }; - } - { - name = "chokidar___chokidar_3.5.3.tgz"; - path = fetchurl { - name = "chokidar___chokidar_3.5.3.tgz"; - url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz"; - sha512 = "Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw=="; - }; - } - { - name = "chrome_trace_event___chrome_trace_event_1.0.3.tgz"; - path = fetchurl { - name = "chrome_trace_event___chrome_trace_event_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz"; - sha512 = "p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg=="; - }; - } - { - name = "ci_info___ci_info_3.3.2.tgz"; - path = fetchurl { - name = "ci_info___ci_info_3.3.2.tgz"; - url = "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.2.tgz"; - sha512 = "xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg=="; - }; - } - { - name = "cjs_module_lexer___cjs_module_lexer_1.2.2.tgz"; - path = fetchurl { - name = "cjs_module_lexer___cjs_module_lexer_1.2.2.tgz"; - url = "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz"; - sha512 = "cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA=="; - }; - } - { - name = "classnames___classnames_2.2.6.tgz"; - path = fetchurl { - name = "classnames___classnames_2.2.6.tgz"; - url = "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz"; - sha512 = "JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q=="; - }; - } - { - name = "classnames___classnames_2.3.1.tgz"; - path = fetchurl { - name = "classnames___classnames_2.3.1.tgz"; - url = "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz"; - sha512 = "OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA=="; - }; - } - { - name = "clean_css___clean_css_5.3.1.tgz"; - path = fetchurl { - name = "clean_css___clean_css_5.3.1.tgz"; - url = "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.1.tgz"; - sha512 = "lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg=="; - }; - } - { - name = "cliui___cliui_7.0.4.tgz"; - path = fetchurl { - name = "cliui___cliui_7.0.4.tgz"; - url = "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz"; - sha512 = "OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ=="; - }; - } - { - name = "clsx___clsx_1.1.1.tgz"; - path = fetchurl { - name = "clsx___clsx_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz"; - sha512 = "6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA=="; - }; - } - { - name = "co___co_4.6.0.tgz"; - path = fetchurl { - name = "co___co_4.6.0.tgz"; - url = "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz"; - sha1 = "bqa989hTrlTMuOR7+gvz+QMfsYQ="; - }; - } - { - name = "coa___coa_2.0.2.tgz"; - path = fetchurl { - name = "coa___coa_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz"; - sha512 = "q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA=="; - }; - } - { - name = "collect_v8_coverage___collect_v8_coverage_1.0.1.tgz"; - path = fetchurl { - name = "collect_v8_coverage___collect_v8_coverage_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz"; - sha512 = "iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg=="; - }; - } - { - name = "color_convert___color_convert_1.9.3.tgz"; - path = fetchurl { - name = "color_convert___color_convert_1.9.3.tgz"; - url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz"; - sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; - }; - } - { - name = "color_convert___color_convert_2.0.1.tgz"; - path = fetchurl { - name = "color_convert___color_convert_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz"; - sha512 = "RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="; - }; - } - { - name = "color_name___color_name_1.1.3.tgz"; - path = fetchurl { - name = "color_name___color_name_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz"; - sha1 = "p9BVi9icQveV3UIyj3QIMcpTvCU="; - }; - } - { - name = "color_name___color_name_1.1.4.tgz"; - path = fetchurl { - name = "color_name___color_name_1.1.4.tgz"; - url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz"; - sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; - }; - } - { - name = "colord___colord_2.9.2.tgz"; - path = fetchurl { - name = "colord___colord_2.9.2.tgz"; - url = "https://registry.yarnpkg.com/colord/-/colord-2.9.2.tgz"; - sha512 = "Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ=="; - }; - } - { - name = "colorette___colorette_2.0.19.tgz"; - path = fetchurl { - name = "colorette___colorette_2.0.19.tgz"; - url = "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz"; - sha512 = "3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ=="; - }; - } - { - name = "combined_stream___combined_stream_1.0.8.tgz"; - path = fetchurl { - name = "combined_stream___combined_stream_1.0.8.tgz"; - url = "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz"; - sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; - }; - } - { - name = "commander___commander_2.20.3.tgz"; - path = fetchurl { - name = "commander___commander_2.20.3.tgz"; - url = "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz"; - sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="; - }; - } - { - name = "commander___commander_7.2.0.tgz"; - path = fetchurl { - name = "commander___commander_7.2.0.tgz"; - url = "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz"; - sha512 = "QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="; - }; - } - { - name = "commander___commander_8.3.0.tgz"; - path = fetchurl { - name = "commander___commander_8.3.0.tgz"; - url = "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz"; - sha512 = "OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="; - }; - } - { - name = "common_path_prefix___common_path_prefix_3.0.0.tgz"; - path = fetchurl { - name = "common_path_prefix___common_path_prefix_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-3.0.0.tgz"; - sha512 = "QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w=="; - }; - } - { - name = "common_tags___common_tags_1.8.2.tgz"; - path = fetchurl { - name = "common_tags___common_tags_1.8.2.tgz"; - url = "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.2.tgz"; - sha512 = "gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA=="; - }; - } - { - name = "commondir___commondir_1.0.1.tgz"; - path = fetchurl { - name = "commondir___commondir_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz"; - sha1 = "3dgA2gxmEnOTzKWVDqloo6rxJTs="; - }; - } - { - name = "compressible___compressible_2.0.18.tgz"; - path = fetchurl { - name = "compressible___compressible_2.0.18.tgz"; - url = "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz"; - sha512 = "AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg=="; - }; - } - { - name = "compression___compression_1.7.4.tgz"; - path = fetchurl { - name = "compression___compression_1.7.4.tgz"; - url = "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz"; - sha512 = "jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ=="; - }; - } - { - name = "compute_scroll_into_view___compute_scroll_into_view_1.0.17.tgz"; - path = fetchurl { - name = "compute_scroll_into_view___compute_scroll_into_view_1.0.17.tgz"; - url = "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz"; - sha512 = "j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg=="; - }; - } - { - name = "concat_map___concat_map_0.0.1.tgz"; - path = fetchurl { - name = "concat_map___concat_map_0.0.1.tgz"; - url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz"; - sha1 = "2Klr13/Wjfd5OnMDajug1UBdR3s="; - }; - } - { - name = "confusing_browser_globals___confusing_browser_globals_1.0.11.tgz"; - path = fetchurl { - name = "confusing_browser_globals___confusing_browser_globals_1.0.11.tgz"; - url = "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz"; - sha512 = "JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA=="; - }; - } - { - name = "connect_history_api_fallback___connect_history_api_fallback_2.0.0.tgz"; - path = fetchurl { - name = "connect_history_api_fallback___connect_history_api_fallback_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz"; - sha512 = "U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA=="; - }; - } - { - name = "connected_react_router___connected_react_router_6.9.2.tgz"; - path = fetchurl { - name = "connected_react_router___connected_react_router_6.9.2.tgz"; - url = "https://registry.yarnpkg.com/connected-react-router/-/connected-react-router-6.9.2.tgz"; - sha512 = "bE8kNBiZv9Mivp7pYn9JvLH5ItTjLl45kk1/Vha0rmAK9I/ETb5JPJrAm0h2KCG9qLfv7vqU3Jo4UUDo0oJnQg=="; - }; - } - { - name = "content_disposition___content_disposition_0.5.4.tgz"; - path = fetchurl { - name = "content_disposition___content_disposition_0.5.4.tgz"; - url = "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz"; - sha512 = "FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ=="; - }; - } - { - name = "content_type___content_type_1.0.4.tgz"; - path = fetchurl { - name = "content_type___content_type_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz"; - sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="; - }; - } - { - name = "convert_source_map___convert_source_map_1.8.0.tgz"; - path = fetchurl { - name = "convert_source_map___convert_source_map_1.8.0.tgz"; - url = "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz"; - sha512 = "+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA=="; - }; - } - { - name = "cookie_signature___cookie_signature_1.0.6.tgz"; - path = fetchurl { - name = "cookie_signature___cookie_signature_1.0.6.tgz"; - url = "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz"; - sha1 = "4wOogrNCzD7oylE6eZmXNNqzriw="; - }; - } - { - name = "cookie___cookie_0.5.0.tgz"; - path = fetchurl { - name = "cookie___cookie_0.5.0.tgz"; - url = "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz"; - sha512 = "YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw=="; - }; - } - { - name = "core_js_compat___core_js_compat_3.20.0.tgz"; - path = fetchurl { - name = "core_js_compat___core_js_compat_3.20.0.tgz"; - url = "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.20.0.tgz"; - sha512 = "relrah5h+sslXssTTOkvqcC/6RURifB0W5yhYBdBkaPYa5/2KBMiog3XiD+s3TwEHWxInWVv4Jx2/Lw0vng+IQ=="; - }; - } - { - name = "core_js_compat___core_js_compat_3.24.1.tgz"; - path = fetchurl { - name = "core_js_compat___core_js_compat_3.24.1.tgz"; - url = "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.24.1.tgz"; - sha512 = "XhdNAGeRnTpp8xbD+sR/HFDK9CbeeeqXT6TuofXh3urqEevzkWmLRgrVoykodsw8okqo2pu1BOmuCKrHx63zdw=="; - }; - } - { - name = "core_js_pure___core_js_pure_3.20.0.tgz"; - path = fetchurl { - name = "core_js_pure___core_js_pure_3.20.0.tgz"; - url = "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.20.0.tgz"; - sha512 = "qsrbIwWSEEYOM7z616jAVgwhuDDtPLwZSpUsU3vyUkHYqKTf/uwOJBZg2V7lMurYWkpVlaVOxBrfX0Q3ppvjfg=="; - }; - } - { - name = "core_js_pure___core_js_pure_3.24.1.tgz"; - path = fetchurl { - name = "core_js_pure___core_js_pure_3.24.1.tgz"; - url = "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.24.1.tgz"; - sha512 = "r1nJk41QLLPyozHUUPmILCEMtMw24NG4oWK6RbsDdjzQgg9ZvrUsPBj1MnG0wXXp1DCDU6j+wUvEmBSrtRbLXg=="; - }; - } - { - name = "core_js___core_js_3.24.1.tgz"; - path = fetchurl { - name = "core_js___core_js_3.24.1.tgz"; - url = "https://registry.yarnpkg.com/core-js/-/core-js-3.24.1.tgz"; - sha512 = "0QTBSYSUZ6Gq21utGzkfITDylE8jWC9Ne1D2MrhvlsZBI1x39OdDIVbzSqtgMndIy6BlHxBXpMGqzZmnztg2rg=="; - }; - } - { - name = "core_util_is___core_util_is_1.0.3.tgz"; - path = fetchurl { - name = "core_util_is___core_util_is_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz"; - sha512 = "ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="; - }; - } - { - name = "cosmiconfig___cosmiconfig_6.0.0.tgz"; - path = fetchurl { - name = "cosmiconfig___cosmiconfig_6.0.0.tgz"; - url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz"; - sha512 = "xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg=="; - }; - } - { - name = "cosmiconfig___cosmiconfig_7.0.1.tgz"; - path = fetchurl { - name = "cosmiconfig___cosmiconfig_7.0.1.tgz"; - url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz"; - sha512 = "a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ=="; - }; - } - { - name = "cross_fetch___cross_fetch_3.1.5.tgz"; - path = fetchurl { - name = "cross_fetch___cross_fetch_3.1.5.tgz"; - url = "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz"; - sha512 = "lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw=="; - }; - } - { - name = "cross_spawn___cross_spawn_7.0.3.tgz"; - path = fetchurl { - name = "cross_spawn___cross_spawn_7.0.3.tgz"; - url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz"; - sha512 = "iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="; - }; - } - { - name = "crypto_random_string___crypto_random_string_2.0.0.tgz"; - path = fetchurl { - name = "crypto_random_string___crypto_random_string_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz"; - sha512 = "v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA=="; - }; - } - { - name = "css_blank_pseudo___css_blank_pseudo_3.0.3.tgz"; - path = fetchurl { - name = "css_blank_pseudo___css_blank_pseudo_3.0.3.tgz"; - url = "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz"; - sha512 = "VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ=="; - }; - } - { - name = "css_declaration_sorter___css_declaration_sorter_6.3.0.tgz"; - path = fetchurl { - name = "css_declaration_sorter___css_declaration_sorter_6.3.0.tgz"; - url = "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.3.0.tgz"; - sha512 = "OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og=="; - }; - } - { - name = "css_has_pseudo___css_has_pseudo_3.0.4.tgz"; - path = fetchurl { - name = "css_has_pseudo___css_has_pseudo_3.0.4.tgz"; - url = "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz"; - sha512 = "Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw=="; - }; - } - { - name = "css_loader___css_loader_6.7.1.tgz"; - path = fetchurl { - name = "css_loader___css_loader_6.7.1.tgz"; - url = "https://registry.yarnpkg.com/css-loader/-/css-loader-6.7.1.tgz"; - sha512 = "yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw=="; - }; - } - { - name = "css_mediaquery___css_mediaquery_0.1.2.tgz"; - path = fetchurl { - name = "css_mediaquery___css_mediaquery_0.1.2.tgz"; - url = "https://registry.yarnpkg.com/css-mediaquery/-/css-mediaquery-0.1.2.tgz"; - sha1 = "aiw3NEkoYYYxxUvTPO3TAdoYvqA="; - }; - } - { - name = "css_minimizer_webpack_plugin___css_minimizer_webpack_plugin_3.4.1.tgz"; - path = fetchurl { - name = "css_minimizer_webpack_plugin___css_minimizer_webpack_plugin_3.4.1.tgz"; - url = "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz"; - sha512 = "1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q=="; - }; - } - { - name = "css_prefers_color_scheme___css_prefers_color_scheme_6.0.3.tgz"; - path = fetchurl { - name = "css_prefers_color_scheme___css_prefers_color_scheme_6.0.3.tgz"; - url = "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz"; - sha512 = "4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA=="; - }; - } - { - name = "css_select_base_adapter___css_select_base_adapter_0.1.1.tgz"; - path = fetchurl { - name = "css_select_base_adapter___css_select_base_adapter_0.1.1.tgz"; - url = "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz"; - sha512 = "jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w=="; - }; - } - { - name = "css_select___css_select_2.1.0.tgz"; - path = fetchurl { - name = "css_select___css_select_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz"; - sha512 = "Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ=="; - }; - } - { - name = "css_select___css_select_4.2.0.tgz"; - path = fetchurl { - name = "css_select___css_select_4.2.0.tgz"; - url = "https://registry.yarnpkg.com/css-select/-/css-select-4.2.0.tgz"; - sha512 = "6YVG6hsH9yIb/si3Th/is8Pex7qnVHO6t7q7U6TIUnkQASGbS8tnUDBftnPynLNnuUl/r2+PTd0ekiiq7R0zJw=="; - }; - } - { - name = "css_tree___css_tree_1.0.0_alpha.37.tgz"; - path = fetchurl { - name = "css_tree___css_tree_1.0.0_alpha.37.tgz"; - url = "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz"; - sha512 = "DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg=="; - }; - } - { - name = "css_tree___css_tree_1.1.3.tgz"; - path = fetchurl { - name = "css_tree___css_tree_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz"; - sha512 = "tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q=="; - }; - } - { - name = "css_vendor___css_vendor_2.0.8.tgz"; - path = fetchurl { - name = "css_vendor___css_vendor_2.0.8.tgz"; - url = "https://registry.yarnpkg.com/css-vendor/-/css-vendor-2.0.8.tgz"; - sha512 = "x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ=="; - }; - } - { - name = "css_what___css_what_3.4.2.tgz"; - path = fetchurl { - name = "css_what___css_what_3.4.2.tgz"; - url = "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz"; - sha512 = "ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ=="; - }; - } - { - name = "css_what___css_what_5.1.0.tgz"; - path = fetchurl { - name = "css_what___css_what_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/css-what/-/css-what-5.1.0.tgz"; - sha512 = "arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw=="; - }; - } - { - name = "css.escape___css.escape_1.5.1.tgz"; - path = fetchurl { - name = "css.escape___css.escape_1.5.1.tgz"; - url = "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz"; - sha1 = "QuJ9T6BK4y+TGktNQZH6nN3ul8s="; - }; - } - { - name = "cssdb___cssdb_6.6.3.tgz"; - path = fetchurl { - name = "cssdb___cssdb_6.6.3.tgz"; - url = "https://registry.yarnpkg.com/cssdb/-/cssdb-6.6.3.tgz"; - sha512 = "7GDvDSmE+20+WcSMhP17Q1EVWUrLlbxxpMDqG731n8P99JhnQZHR9YvtjPvEHfjFUjvQJvdpKCjlKOX+xe4UVA=="; - }; - } - { - name = "cssesc___cssesc_3.0.0.tgz"; - path = fetchurl { - name = "cssesc___cssesc_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz"; - sha512 = "/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="; - }; - } - { - name = "cssnano_preset_default___cssnano_preset_default_5.2.12.tgz"; - path = fetchurl { - name = "cssnano_preset_default___cssnano_preset_default_5.2.12.tgz"; - url = "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.12.tgz"; - sha512 = "OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew=="; - }; - } - { - name = "cssnano_utils___cssnano_utils_3.1.0.tgz"; - path = fetchurl { - name = "cssnano_utils___cssnano_utils_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-3.1.0.tgz"; - sha512 = "JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA=="; - }; - } - { - name = "cssnano___cssnano_5.1.12.tgz"; - path = fetchurl { - name = "cssnano___cssnano_5.1.12.tgz"; - url = "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.12.tgz"; - sha512 = "TgvArbEZu0lk/dvg2ja+B7kYoD7BBCmn3+k58xD0qjrGHsFzXY/wKTo9M5egcUCabPol05e/PVoIu79s2JN4WQ=="; - }; - } - { - name = "csso___csso_4.2.0.tgz"; - path = fetchurl { - name = "csso___csso_4.2.0.tgz"; - url = "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz"; - sha512 = "wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA=="; - }; - } - { - name = "cssom___cssom_0.4.4.tgz"; - path = fetchurl { - name = "cssom___cssom_0.4.4.tgz"; - url = "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz"; - sha512 = "p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw=="; - }; - } - { - name = "cssom___cssom_0.3.8.tgz"; - path = fetchurl { - name = "cssom___cssom_0.3.8.tgz"; - url = "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz"; - sha512 = "b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg=="; - }; - } - { - name = "cssstyle___cssstyle_2.3.0.tgz"; - path = fetchurl { - name = "cssstyle___cssstyle_2.3.0.tgz"; - url = "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz"; - sha512 = "AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A=="; - }; - } - { - name = "csstype___csstype_2.6.19.tgz"; - path = fetchurl { - name = "csstype___csstype_2.6.19.tgz"; - url = "https://registry.yarnpkg.com/csstype/-/csstype-2.6.19.tgz"; - sha512 = "ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ=="; - }; - } - { - name = "csstype___csstype_3.0.10.tgz"; - path = fetchurl { - name = "csstype___csstype_3.0.10.tgz"; - url = "https://registry.yarnpkg.com/csstype/-/csstype-3.0.10.tgz"; - sha512 = "2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA=="; - }; - } - { - name = "damerau_levenshtein___damerau_levenshtein_1.0.8.tgz"; - path = fetchurl { - name = "damerau_levenshtein___damerau_levenshtein_1.0.8.tgz"; - url = "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz"; - sha512 = "sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA=="; - }; - } - { - name = "data_urls___data_urls_2.0.0.tgz"; - path = fetchurl { - name = "data_urls___data_urls_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz"; - sha512 = "X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ=="; - }; - } - { - name = "date_fns___date_fns_1.30.1.tgz"; - path = fetchurl { - name = "date_fns___date_fns_1.30.1.tgz"; - url = "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz"; - sha512 = "hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw=="; - }; - } - { - name = "date_fns___date_fns_2.28.0.tgz"; - path = fetchurl { - name = "date_fns___date_fns_2.28.0.tgz"; - url = "https://registry.yarnpkg.com/date-fns/-/date-fns-2.28.0.tgz"; - sha512 = "8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw=="; - }; - } - { - name = "debug___debug_2.6.9.tgz"; - path = fetchurl { - name = "debug___debug_2.6.9.tgz"; - url = "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz"; - sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; - }; - } - { - name = "debug___debug_4.3.4.tgz"; - path = fetchurl { - name = "debug___debug_4.3.4.tgz"; - url = "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz"; - sha512 = "PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="; - }; - } - { - name = "debug___debug_3.2.7.tgz"; - path = fetchurl { - name = "debug___debug_3.2.7.tgz"; - url = "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz"; - sha512 = "CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="; - }; - } - { - name = "decimal.js___decimal.js_10.3.1.tgz"; - path = fetchurl { - name = "decimal.js___decimal.js_10.3.1.tgz"; - url = "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz"; - sha512 = "V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ=="; - }; - } - { - name = "decode_uri_component___decode_uri_component_0.2.2.tgz"; - path = fetchurl { - name = "decode_uri_component___decode_uri_component_0.2.2.tgz"; - url = "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz"; - sha512 = "FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ=="; - }; - } - { - name = "dedent___dedent_0.7.0.tgz"; - path = fetchurl { - name = "dedent___dedent_0.7.0.tgz"; - url = "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz"; - sha1 = "JJXduvbrh0q7Dhvp3yLS5aVEMmw="; - }; - } - { - name = "deep_is___deep_is_0.1.4.tgz"; - path = fetchurl { - name = "deep_is___deep_is_0.1.4.tgz"; - url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz"; - sha512 = "oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="; - }; - } - { - name = "deepmerge___deepmerge_4.2.2.tgz"; - path = fetchurl { - name = "deepmerge___deepmerge_4.2.2.tgz"; - url = "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz"; - sha512 = "FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="; - }; - } - { - name = "default_gateway___default_gateway_6.0.3.tgz"; - path = fetchurl { - name = "default_gateway___default_gateway_6.0.3.tgz"; - url = "https://registry.yarnpkg.com/default-gateway/-/default-gateway-6.0.3.tgz"; - sha512 = "fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg=="; - }; - } - { - name = "define_lazy_prop___define_lazy_prop_2.0.0.tgz"; - path = fetchurl { - name = "define_lazy_prop___define_lazy_prop_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz"; - sha512 = "Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og=="; - }; - } - { - name = "define_properties___define_properties_1.1.3.tgz"; - path = fetchurl { - name = "define_properties___define_properties_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz"; - sha512 = "3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ=="; - }; - } - { - name = "define_properties___define_properties_1.1.4.tgz"; - path = fetchurl { - name = "define_properties___define_properties_1.1.4.tgz"; - url = "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz"; - sha512 = "uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA=="; - }; - } - { - name = "defined___defined_1.0.0.tgz"; - path = fetchurl { - name = "defined___defined_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz"; - sha512 = "Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ=="; - }; - } - { - name = "delayed_stream___delayed_stream_1.0.0.tgz"; - path = fetchurl { - name = "delayed_stream___delayed_stream_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz"; - sha1 = "3zrhmayt+31ECqrgsp4icrJOxhk="; - }; - } - { - name = "depd___depd_2.0.0.tgz"; - path = fetchurl { - name = "depd___depd_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz"; - sha512 = "g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="; - }; - } - { - name = "depd___depd_1.1.2.tgz"; - path = fetchurl { - name = "depd___depd_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz"; - sha1 = "m81S4UwJd2PnSbJ0xDRu0uVgtak="; - }; - } - { - name = "destroy___destroy_1.2.0.tgz"; - path = fetchurl { - name = "destroy___destroy_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz"; - sha512 = "2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="; - }; - } - { - name = "detect_newline___detect_newline_3.1.0.tgz"; - path = fetchurl { - name = "detect_newline___detect_newline_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz"; - sha512 = "TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA=="; - }; - } - { - name = "detect_node___detect_node_2.1.0.tgz"; - path = fetchurl { - name = "detect_node___detect_node_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz"; - sha512 = "T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g=="; - }; - } - { - name = "detect_port_alt___detect_port_alt_1.1.6.tgz"; - path = fetchurl { - name = "detect_port_alt___detect_port_alt_1.1.6.tgz"; - url = "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz"; - sha512 = "5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q=="; - }; - } - { - name = "detective___detective_5.2.1.tgz"; - path = fetchurl { - name = "detective___detective_5.2.1.tgz"; - url = "https://registry.yarnpkg.com/detective/-/detective-5.2.1.tgz"; - sha512 = "v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw=="; - }; - } - { - name = "diacritic___diacritic_0.0.2.tgz"; - path = fetchurl { - name = "diacritic___diacritic_0.0.2.tgz"; - url = "https://registry.yarnpkg.com/diacritic/-/diacritic-0.0.2.tgz"; - sha1 = "/CqIe1pbwKCoVPthTHwvIJBh7gQ="; - }; - } - { - name = "didyoumean___didyoumean_1.2.2.tgz"; - path = fetchurl { - name = "didyoumean___didyoumean_1.2.2.tgz"; - url = "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz"; - sha512 = "gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw=="; - }; - } - { - name = "diff_sequences___diff_sequences_27.4.0.tgz"; - path = fetchurl { - name = "diff_sequences___diff_sequences_27.4.0.tgz"; - url = "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.4.0.tgz"; - sha512 = "YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww=="; - }; - } - { - name = "diff_sequences___diff_sequences_27.5.1.tgz"; - path = fetchurl { - name = "diff_sequences___diff_sequences_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.5.1.tgz"; - sha512 = "k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ=="; - }; - } - { - name = "dir_glob___dir_glob_3.0.1.tgz"; - path = fetchurl { - name = "dir_glob___dir_glob_3.0.1.tgz"; - url = "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz"; - sha512 = "WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA=="; - }; - } - { - name = "dlv___dlv_1.1.3.tgz"; - path = fetchurl { - name = "dlv___dlv_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz"; - sha512 = "+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA=="; - }; - } - { - name = "dns_equal___dns_equal_1.0.0.tgz"; - path = fetchurl { - name = "dns_equal___dns_equal_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz"; - sha1 = "s55/HabrCnW6nBcySzR1PEfgZU0="; - }; - } - { - name = "dns_packet___dns_packet_5.4.0.tgz"; - path = fetchurl { - name = "dns_packet___dns_packet_5.4.0.tgz"; - url = "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.4.0.tgz"; - sha512 = "EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g=="; - }; - } - { - name = "doctrine___doctrine_2.1.0.tgz"; - path = fetchurl { - name = "doctrine___doctrine_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz"; - sha512 = "35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw=="; - }; - } - { - name = "doctrine___doctrine_3.0.0.tgz"; - path = fetchurl { - name = "doctrine___doctrine_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz"; - sha512 = "yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="; - }; - } - { - name = "dom_accessibility_api___dom_accessibility_api_0.5.10.tgz"; - path = fetchurl { - name = "dom_accessibility_api___dom_accessibility_api_0.5.10.tgz"; - url = "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.10.tgz"; - sha512 = "Xu9mD0UjrJisTmv7lmVSDMagQcU9R5hwAbxsaAE/35XPnPLJobbuREfV/rraiSaEj/UOvgrzQs66zyTWTlyd+g=="; - }; - } - { - name = "dom_converter___dom_converter_0.2.0.tgz"; - path = fetchurl { - name = "dom_converter___dom_converter_0.2.0.tgz"; - url = "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz"; - sha512 = "gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA=="; - }; - } - { - name = "dom_helpers___dom_helpers_5.2.1.tgz"; - path = fetchurl { - name = "dom_helpers___dom_helpers_5.2.1.tgz"; - url = "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz"; - sha512 = "nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA=="; - }; - } - { - name = "dom_serializer___dom_serializer_0.2.2.tgz"; - path = fetchurl { - name = "dom_serializer___dom_serializer_0.2.2.tgz"; - url = "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz"; - sha512 = "2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g=="; - }; - } - { - name = "dom_serializer___dom_serializer_1.3.2.tgz"; - path = fetchurl { - name = "dom_serializer___dom_serializer_1.3.2.tgz"; - url = "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.3.2.tgz"; - sha512 = "5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig=="; - }; - } - { - name = "domelementtype___domelementtype_1.3.1.tgz"; - path = fetchurl { - name = "domelementtype___domelementtype_1.3.1.tgz"; - url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz"; - sha512 = "BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="; - }; - } - { - name = "domelementtype___domelementtype_2.2.0.tgz"; - path = fetchurl { - name = "domelementtype___domelementtype_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz"; - sha512 = "DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A=="; - }; - } - { - name = "domexception___domexception_2.0.1.tgz"; - path = fetchurl { - name = "domexception___domexception_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz"; - sha512 = "yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg=="; - }; - } - { - name = "domhandler___domhandler_4.3.0.tgz"; - path = fetchurl { - name = "domhandler___domhandler_4.3.0.tgz"; - url = "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.0.tgz"; - sha512 = "fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g=="; - }; - } - { - name = "domutils___domutils_1.7.0.tgz"; - path = fetchurl { - name = "domutils___domutils_1.7.0.tgz"; - url = "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz"; - sha512 = "Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg=="; - }; - } - { - name = "domutils___domutils_2.8.0.tgz"; - path = fetchurl { - name = "domutils___domutils_2.8.0.tgz"; - url = "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz"; - sha512 = "w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A=="; - }; - } - { - name = "dot_case___dot_case_3.0.4.tgz"; - path = fetchurl { - name = "dot_case___dot_case_3.0.4.tgz"; - url = "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz"; - sha512 = "Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w=="; - }; - } - { - name = "dotenv_expand___dotenv_expand_5.1.0.tgz"; - path = fetchurl { - name = "dotenv_expand___dotenv_expand_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz"; - sha512 = "YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA=="; - }; - } - { - name = "dotenv___dotenv_10.0.0.tgz"; - path = fetchurl { - name = "dotenv___dotenv_10.0.0.tgz"; - url = "https://registry.yarnpkg.com/dotenv/-/dotenv-10.0.0.tgz"; - sha512 = "rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q=="; - }; - } - { - name = "downshift___downshift_3.2.7.tgz"; - path = fetchurl { - name = "downshift___downshift_3.2.7.tgz"; - url = "https://registry.yarnpkg.com/downshift/-/downshift-3.2.7.tgz"; - sha512 = "mbUO9ZFhMGtksIeVWRFFjNOPN237VsUqZSEYi0VS0Wj38XNLzpgOBTUcUjdjFeB8KVgmrcRa6GGFkTbACpG6FA=="; - }; - } - { - name = "duplexer___duplexer_0.1.2.tgz"; - path = fetchurl { - name = "duplexer___duplexer_0.1.2.tgz"; - url = "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz"; - sha512 = "jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg=="; - }; - } - { - name = "ee_first___ee_first_1.1.1.tgz"; - path = fetchurl { - name = "ee_first___ee_first_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz"; - sha1 = "WQxhFWsK4vTwJVcyoViyZrxWsh0="; - }; - } - { - name = "ejs___ejs_3.1.8.tgz"; - path = fetchurl { - name = "ejs___ejs_3.1.8.tgz"; - url = "https://registry.yarnpkg.com/ejs/-/ejs-3.1.8.tgz"; - sha512 = "/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ=="; - }; - } - { - name = "electron_to_chromium___electron_to_chromium_1.4.24.tgz"; - path = fetchurl { - name = "electron_to_chromium___electron_to_chromium_1.4.24.tgz"; - url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.24.tgz"; - sha512 = "erwx5r69B/WFfFuF2jcNN0817BfDBdC4765kQ6WltOMuwsimlQo3JTEq0Cle+wpHralwdeX3OfAtw/mHxPK0Wg=="; - }; - } - { - name = "electron_to_chromium___electron_to_chromium_1.4.208.tgz"; - path = fetchurl { - name = "electron_to_chromium___electron_to_chromium_1.4.208.tgz"; - url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.208.tgz"; - sha512 = "diMr4t69FigAGUk2KovP0bygEtN/9AkqEVkzjEp0cu+zFFbZMVvwACpTTfuj1mAmFR5kNoSW8wGKDFWIvmThiQ=="; - }; - } - { - name = "emittery___emittery_0.10.2.tgz"; - path = fetchurl { - name = "emittery___emittery_0.10.2.tgz"; - url = "https://registry.yarnpkg.com/emittery/-/emittery-0.10.2.tgz"; - sha512 = "aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw=="; - }; - } - { - name = "emittery___emittery_0.8.1.tgz"; - path = fetchurl { - name = "emittery___emittery_0.8.1.tgz"; - url = "https://registry.yarnpkg.com/emittery/-/emittery-0.8.1.tgz"; - sha512 = "uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg=="; - }; - } - { - name = "emoji_regex___emoji_regex_8.0.0.tgz"; - path = fetchurl { - name = "emoji_regex___emoji_regex_8.0.0.tgz"; - url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz"; - sha512 = "MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="; - }; - } - { - name = "emoji_regex___emoji_regex_9.2.2.tgz"; - path = fetchurl { - name = "emoji_regex___emoji_regex_9.2.2.tgz"; - url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz"; - sha512 = "L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="; - }; - } - { - name = "emojis_list___emojis_list_3.0.0.tgz"; - path = fetchurl { - name = "emojis_list___emojis_list_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz"; - sha512 = "/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q=="; - }; - } - { - name = "encodeurl___encodeurl_1.0.2.tgz"; - path = fetchurl { - name = "encodeurl___encodeurl_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz"; - sha1 = "rT/0yG7C0CkyL1oCw6mmBslbP1k="; - }; - } - { - name = "enhanced_resolve___enhanced_resolve_5.10.0.tgz"; - path = fetchurl { - name = "enhanced_resolve___enhanced_resolve_5.10.0.tgz"; - url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz"; - sha512 = "T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ=="; - }; - } - { - name = "entities___entities_2.2.0.tgz"; - path = fetchurl { - name = "entities___entities_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz"; - sha512 = "p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="; - }; - } - { - name = "error_ex___error_ex_1.3.2.tgz"; - path = fetchurl { - name = "error_ex___error_ex_1.3.2.tgz"; - url = "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz"; - sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; - }; - } - { - name = "error_stack_parser___error_stack_parser_2.0.6.tgz"; - path = fetchurl { - name = "error_stack_parser___error_stack_parser_2.0.6.tgz"; - url = "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.0.6.tgz"; - sha512 = "d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ=="; - }; - } - { - name = "es_abstract___es_abstract_1.19.1.tgz"; - path = fetchurl { - name = "es_abstract___es_abstract_1.19.1.tgz"; - url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.1.tgz"; - sha512 = "2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w=="; - }; - } - { - name = "es_abstract___es_abstract_1.20.1.tgz"; - path = fetchurl { - name = "es_abstract___es_abstract_1.20.1.tgz"; - url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.1.tgz"; - sha512 = "WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA=="; - }; - } - { - name = "es_array_method_boxes_properly___es_array_method_boxes_properly_1.0.0.tgz"; - path = fetchurl { - name = "es_array_method_boxes_properly___es_array_method_boxes_properly_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz"; - sha512 = "wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA=="; - }; - } - { - name = "es_module_lexer___es_module_lexer_0.9.3.tgz"; - path = fetchurl { - name = "es_module_lexer___es_module_lexer_0.9.3.tgz"; - url = "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz"; - sha512 = "1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ=="; - }; - } - { - name = "es_shim_unscopables___es_shim_unscopables_1.0.0.tgz"; - path = fetchurl { - name = "es_shim_unscopables___es_shim_unscopables_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz"; - sha512 = "Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w=="; - }; - } - { - name = "es_to_primitive___es_to_primitive_1.2.1.tgz"; - path = fetchurl { - name = "es_to_primitive___es_to_primitive_1.2.1.tgz"; - url = "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz"; - sha512 = "QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="; - }; - } - { - name = "escalade___escalade_3.1.1.tgz"; - path = fetchurl { - name = "escalade___escalade_3.1.1.tgz"; - url = "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz"; - sha512 = "k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="; - }; - } - { - name = "escape_html___escape_html_1.0.3.tgz"; - path = fetchurl { - name = "escape_html___escape_html_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz"; - sha1 = "Aljq5NPQwJdN4cFpGI7wBR0dGYg="; - }; - } - { - name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; - path = fetchurl { - name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; - sha1 = "G2HAViGQqN/2rjuyzwIAyhMLhtQ="; - }; - } - { - name = "escape_string_regexp___escape_string_regexp_2.0.0.tgz"; - path = fetchurl { - name = "escape_string_regexp___escape_string_regexp_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz"; - sha512 = "UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w=="; - }; - } - { - name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz"; - path = fetchurl { - name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"; - sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="; - }; - } - { - name = "escodegen___escodegen_2.0.0.tgz"; - path = fetchurl { - name = "escodegen___escodegen_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz"; - sha512 = "mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw=="; - }; - } - { - name = "eslint_config_prettier___eslint_config_prettier_8.3.0.tgz"; - path = fetchurl { - name = "eslint_config_prettier___eslint_config_prettier_8.3.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz"; - sha512 = "BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew=="; - }; - } - { - name = "eslint_config_react_app___eslint_config_react_app_7.0.1.tgz"; - path = fetchurl { - name = "eslint_config_react_app___eslint_config_react_app_7.0.1.tgz"; - url = "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz"; - sha512 = "K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA=="; - }; - } - { - name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.6.tgz"; - path = fetchurl { - name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.6.tgz"; - url = "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz"; - sha512 = "0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw=="; - }; - } - { - name = "eslint_module_utils___eslint_module_utils_2.7.3.tgz"; - path = fetchurl { - name = "eslint_module_utils___eslint_module_utils_2.7.3.tgz"; - url = "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz"; - sha512 = "088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ=="; - }; - } - { - name = "eslint_plugin_flowtype___eslint_plugin_flowtype_8.0.3.tgz"; - path = fetchurl { - name = "eslint_plugin_flowtype___eslint_plugin_flowtype_8.0.3.tgz"; - url = "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz"; - sha512 = "dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ=="; - }; - } - { - name = "eslint_plugin_import___eslint_plugin_import_2.26.0.tgz"; - path = fetchurl { - name = "eslint_plugin_import___eslint_plugin_import_2.26.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz"; - sha512 = "hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA=="; - }; - } - { - name = "eslint_plugin_jest___eslint_plugin_jest_25.7.0.tgz"; - path = fetchurl { - name = "eslint_plugin_jest___eslint_plugin_jest_25.7.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz"; - sha512 = "PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ=="; - }; - } - { - name = "eslint_plugin_jsx_a11y___eslint_plugin_jsx_a11y_6.6.1.tgz"; - path = fetchurl { - name = "eslint_plugin_jsx_a11y___eslint_plugin_jsx_a11y_6.6.1.tgz"; - url = "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz"; - sha512 = "sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q=="; - }; - } - { - name = "eslint_plugin_prettier___eslint_plugin_prettier_4.2.1.tgz"; - path = fetchurl { - name = "eslint_plugin_prettier___eslint_plugin_prettier_4.2.1.tgz"; - url = "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz"; - sha512 = "f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ=="; - }; - } - { - name = "eslint_plugin_react_hooks___eslint_plugin_react_hooks_4.6.0.tgz"; - path = fetchurl { - name = "eslint_plugin_react_hooks___eslint_plugin_react_hooks_4.6.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz"; - sha512 = "oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g=="; - }; - } - { - name = "eslint_plugin_react___eslint_plugin_react_7.30.1.tgz"; - path = fetchurl { - name = "eslint_plugin_react___eslint_plugin_react_7.30.1.tgz"; - url = "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.30.1.tgz"; - sha512 = "NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg=="; - }; - } - { - name = "eslint_plugin_testing_library___eslint_plugin_testing_library_5.6.0.tgz"; - path = fetchurl { - name = "eslint_plugin_testing_library___eslint_plugin_testing_library_5.6.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.6.0.tgz"; - sha512 = "y63TRzPhGCMNsnUwMGJU1MFWc/3GvYw+nzobp9QiyNTTKsgAt5RKAOT1I34+XqVBpX1lC8bScoOjCkP7iRv0Mw=="; - }; - } - { - name = "eslint_scope___eslint_scope_5.1.1.tgz"; - path = fetchurl { - name = "eslint_scope___eslint_scope_5.1.1.tgz"; - url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz"; - sha512 = "2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="; - }; - } - { - name = "eslint_scope___eslint_scope_7.1.1.tgz"; - path = fetchurl { - name = "eslint_scope___eslint_scope_7.1.1.tgz"; - url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz"; - sha512 = "QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw=="; - }; - } - { - name = "eslint_utils___eslint_utils_3.0.0.tgz"; - path = fetchurl { - name = "eslint_utils___eslint_utils_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz"; - sha512 = "uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA=="; - }; - } - { - name = "eslint_visitor_keys___eslint_visitor_keys_2.1.0.tgz"; - path = fetchurl { - name = "eslint_visitor_keys___eslint_visitor_keys_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"; - sha512 = "0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw=="; - }; - } - { - name = "eslint_visitor_keys___eslint_visitor_keys_3.3.0.tgz"; - path = fetchurl { - name = "eslint_visitor_keys___eslint_visitor_keys_3.3.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz"; - sha512 = "mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA=="; - }; - } - { - name = "eslint_webpack_plugin___eslint_webpack_plugin_3.2.0.tgz"; - path = fetchurl { - name = "eslint_webpack_plugin___eslint_webpack_plugin_3.2.0.tgz"; - url = "https://registry.yarnpkg.com/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz"; - sha512 = "avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w=="; - }; - } - { - name = "eslint___eslint_8.32.0.tgz"; - path = fetchurl { - name = "eslint___eslint_8.32.0.tgz"; - url = "https://registry.yarnpkg.com/eslint/-/eslint-8.32.0.tgz"; - sha512 = "nETVXpnthqKPFyuY2FNjz/bEd6nbosRgKbkgS/y1C7LJop96gYHWpiguLecMHQ2XCPxn77DS0P+68WzG6vkZSQ=="; - }; - } - { - name = "espree___espree_9.4.1.tgz"; - path = fetchurl { - name = "espree___espree_9.4.1.tgz"; - url = "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz"; - sha512 = "XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg=="; - }; - } - { - name = "esprima___esprima_4.0.1.tgz"; - path = fetchurl { - name = "esprima___esprima_4.0.1.tgz"; - url = "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz"; - sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; - }; - } - { - name = "esquery___esquery_1.4.0.tgz"; - path = fetchurl { - name = "esquery___esquery_1.4.0.tgz"; - url = "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz"; - sha512 = "cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w=="; - }; - } - { - name = "esrecurse___esrecurse_4.3.0.tgz"; - path = fetchurl { - name = "esrecurse___esrecurse_4.3.0.tgz"; - url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz"; - sha512 = "KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="; - }; - } - { - name = "estraverse___estraverse_4.3.0.tgz"; - path = fetchurl { - name = "estraverse___estraverse_4.3.0.tgz"; - url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz"; - sha512 = "39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="; - }; - } - { - name = "estraverse___estraverse_5.3.0.tgz"; - path = fetchurl { - name = "estraverse___estraverse_5.3.0.tgz"; - url = "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz"; - sha512 = "MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="; - }; - } - { - name = "estree_walker___estree_walker_1.0.1.tgz"; - path = fetchurl { - name = "estree_walker___estree_walker_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz"; - sha512 = "1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg=="; - }; - } - { - name = "esutils___esutils_2.0.3.tgz"; - path = fetchurl { - name = "esutils___esutils_2.0.3.tgz"; - url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz"; - sha512 = "kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="; - }; - } - { - name = "etag___etag_1.8.1.tgz"; - path = fetchurl { - name = "etag___etag_1.8.1.tgz"; - url = "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz"; - sha1 = "Qa4u62XvpiJorr/qg6x9eSmbCIc="; - }; - } - { - name = "eventemitter3___eventemitter3_3.1.2.tgz"; - path = fetchurl { - name = "eventemitter3___eventemitter3_3.1.2.tgz"; - url = "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz"; - sha512 = "tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q=="; - }; - } - { - name = "eventemitter3___eventemitter3_4.0.7.tgz"; - path = fetchurl { - name = "eventemitter3___eventemitter3_4.0.7.tgz"; - url = "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz"; - sha512 = "8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="; - }; - } - { - name = "events___events_3.3.0.tgz"; - path = fetchurl { - name = "events___events_3.3.0.tgz"; - url = "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz"; - sha512 = "mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="; - }; - } - { - name = "execa___execa_5.1.1.tgz"; - path = fetchurl { - name = "execa___execa_5.1.1.tgz"; - url = "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz"; - sha512 = "8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg=="; - }; - } - { - name = "exit___exit_0.1.2.tgz"; - path = fetchurl { - name = "exit___exit_0.1.2.tgz"; - url = "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz"; - sha1 = "BjJjj42HfMghB9MKD/8aF8uhzQw="; - }; - } - { - name = "expect___expect_27.5.1.tgz"; - path = fetchurl { - name = "expect___expect_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/expect/-/expect-27.5.1.tgz"; - sha512 = "E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw=="; - }; - } - { - name = "express___express_4.18.1.tgz"; - path = fetchurl { - name = "express___express_4.18.1.tgz"; - url = "https://registry.yarnpkg.com/express/-/express-4.18.1.tgz"; - sha512 = "zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q=="; - }; - } - { - name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz"; - path = fetchurl { - name = "fast_deep_equal___fast_deep_equal_3.1.3.tgz"; - url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"; - sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; - }; - } - { - name = "fast_diff___fast_diff_1.2.0.tgz"; - path = fetchurl { - name = "fast_diff___fast_diff_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz"; - sha512 = "xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w=="; - }; - } - { - name = "fast_glob___fast_glob_3.2.11.tgz"; - path = fetchurl { - name = "fast_glob___fast_glob_3.2.11.tgz"; - url = "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz"; - sha512 = "xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew=="; - }; - } - { - name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz"; - path = fetchurl { - name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; - sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; - }; - } - { - name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; - path = fetchurl { - name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; - url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; - sha1 = "PYpcZog6FqMMqGQ+hR8Zuqd5eRc="; - }; - } - { - name = "fastq___fastq_1.13.0.tgz"; - path = fetchurl { - name = "fastq___fastq_1.13.0.tgz"; - url = "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz"; - sha512 = "YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw=="; - }; - } - { - name = "faye_websocket___faye_websocket_0.11.4.tgz"; - path = fetchurl { - name = "faye_websocket___faye_websocket_0.11.4.tgz"; - url = "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz"; - sha512 = "CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g=="; - }; - } - { - name = "fb_watchman___fb_watchman_2.0.1.tgz"; - path = fetchurl { - name = "fb_watchman___fb_watchman_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz"; - sha512 = "DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg=="; - }; - } - { - name = "file_entry_cache___file_entry_cache_6.0.1.tgz"; - path = fetchurl { - name = "file_entry_cache___file_entry_cache_6.0.1.tgz"; - url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz"; - sha512 = "7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg=="; - }; - } - { - name = "file_loader___file_loader_6.2.0.tgz"; - path = fetchurl { - name = "file_loader___file_loader_6.2.0.tgz"; - url = "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz"; - sha512 = "qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw=="; - }; - } - { - name = "file_selector___file_selector_0.1.19.tgz"; - path = fetchurl { - name = "file_selector___file_selector_0.1.19.tgz"; - url = "https://registry.yarnpkg.com/file-selector/-/file-selector-0.1.19.tgz"; - sha512 = "kCWw3+Aai8Uox+5tHCNgMFaUdgidxvMnLWO6fM5sZ0hA2wlHP5/DHGF0ECe84BiB95qdJbKNEJhWKVDvMN+JDQ=="; - }; - } - { - name = "filelist___filelist_1.0.4.tgz"; - path = fetchurl { - name = "filelist___filelist_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz"; - sha512 = "w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q=="; - }; - } - { - name = "filesize___filesize_8.0.7.tgz"; - path = fetchurl { - name = "filesize___filesize_8.0.7.tgz"; - url = "https://registry.yarnpkg.com/filesize/-/filesize-8.0.7.tgz"; - sha512 = "pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ=="; - }; - } - { - name = "fill_range___fill_range_7.0.1.tgz"; - path = fetchurl { - name = "fill_range___fill_range_7.0.1.tgz"; - url = "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz"; - sha512 = "qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ=="; - }; - } - { - name = "filter_obj___filter_obj_1.1.0.tgz"; - path = fetchurl { - name = "filter_obj___filter_obj_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/filter-obj/-/filter-obj-1.1.0.tgz"; - sha512 = "8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ=="; - }; - } - { - name = "final_form_arrays___final_form_arrays_3.0.2.tgz"; - path = fetchurl { - name = "final_form_arrays___final_form_arrays_3.0.2.tgz"; - url = "https://registry.yarnpkg.com/final-form-arrays/-/final-form-arrays-3.0.2.tgz"; - sha512 = "TfO8aZNz3RrsZCDx8GHMQcyztDNpGxSSi9w4wpSNKlmv2PfFWVVM8P7Yj5tj4n0OWax+x5YwTLhT5BnqSlCi+w=="; - }; - } - { - name = "final_form___final_form_4.20.6.tgz"; - path = fetchurl { - name = "final_form___final_form_4.20.6.tgz"; - url = "https://registry.yarnpkg.com/final-form/-/final-form-4.20.6.tgz"; - sha512 = "fCdwIj49KOaFfDRlXB57Eo+GghIMZQWrA9TakQI3C9uQxHwaFHXqZSNRlUdfnQmNNeySwGOaGPZCvjy58hyv4w=="; - }; - } - { - name = "finalhandler___finalhandler_1.2.0.tgz"; - path = fetchurl { - name = "finalhandler___finalhandler_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz"; - sha512 = "5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg=="; - }; - } - { - name = "find_cache_dir___find_cache_dir_3.3.2.tgz"; - path = fetchurl { - name = "find_cache_dir___find_cache_dir_3.3.2.tgz"; - url = "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz"; - sha512 = "wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig=="; - }; - } - { - name = "find_root___find_root_1.1.0.tgz"; - path = fetchurl { - name = "find_root___find_root_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz"; - sha512 = "NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng=="; - }; - } - { - name = "find_up___find_up_2.1.0.tgz"; - path = fetchurl { - name = "find_up___find_up_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz"; - sha1 = "RdG35QbHF93UgndaK3eSCjwMV6c="; - }; - } - { - name = "find_up___find_up_3.0.0.tgz"; - path = fetchurl { - name = "find_up___find_up_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz"; - sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg=="; - }; - } - { - name = "find_up___find_up_4.1.0.tgz"; - path = fetchurl { - name = "find_up___find_up_4.1.0.tgz"; - url = "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz"; - sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="; - }; - } - { - name = "find_up___find_up_5.0.0.tgz"; - path = fetchurl { - name = "find_up___find_up_5.0.0.tgz"; - url = "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz"; - sha512 = "78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="; - }; - } - { - name = "flat_cache___flat_cache_3.0.4.tgz"; - path = fetchurl { - name = "flat_cache___flat_cache_3.0.4.tgz"; - url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz"; - sha512 = "dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg=="; - }; - } - { - name = "flatted___flatted_3.2.4.tgz"; - path = fetchurl { - name = "flatted___flatted_3.2.4.tgz"; - url = "https://registry.yarnpkg.com/flatted/-/flatted-3.2.4.tgz"; - sha512 = "8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw=="; - }; - } - { - name = "follow_redirects___follow_redirects_1.14.8.tgz"; - path = fetchurl { - name = "follow_redirects___follow_redirects_1.14.8.tgz"; - url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.8.tgz"; - sha512 = "1x0S9UVJHsQprFcEC/qnNzBLcIxsjAV905f/UkQxbclCsoTWlacCNOpQa/anodLl2uaEKFhfWOvM2Qg77+15zA=="; - }; - } - { - name = "fork_ts_checker_webpack_plugin___fork_ts_checker_webpack_plugin_6.5.2.tgz"; - path = fetchurl { - name = "fork_ts_checker_webpack_plugin___fork_ts_checker_webpack_plugin_6.5.2.tgz"; - url = "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz"; - sha512 = "m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA=="; - }; - } - { - name = "form_data___form_data_3.0.1.tgz"; - path = fetchurl { - name = "form_data___form_data_3.0.1.tgz"; - url = "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz"; - sha512 = "RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg=="; - }; - } - { - name = "forwarded___forwarded_0.2.0.tgz"; - path = fetchurl { - name = "forwarded___forwarded_0.2.0.tgz"; - url = "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz"; - sha512 = "buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="; - }; - } - { - name = "fraction.js___fraction.js_4.2.0.tgz"; - path = fetchurl { - name = "fraction.js___fraction.js_4.2.0.tgz"; - url = "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz"; - sha512 = "MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA=="; - }; - } - { - name = "fresh___fresh_0.5.2.tgz"; - path = fetchurl { - name = "fresh___fresh_0.5.2.tgz"; - url = "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz"; - sha1 = "PYyt2Q2XZWn6g1qx+OSyOhBWBac="; - }; - } - { - name = "fs_extra___fs_extra_10.1.0.tgz"; - path = fetchurl { - name = "fs_extra___fs_extra_10.1.0.tgz"; - url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz"; - sha512 = "oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ=="; - }; - } - { - name = "fs_extra___fs_extra_9.1.0.tgz"; - path = fetchurl { - name = "fs_extra___fs_extra_9.1.0.tgz"; - url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz"; - sha512 = "hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ=="; - }; - } - { - name = "fs_monkey___fs_monkey_1.0.3.tgz"; - path = fetchurl { - name = "fs_monkey___fs_monkey_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.3.tgz"; - sha512 = "cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q=="; - }; - } - { - name = "fs.realpath___fs.realpath_1.0.0.tgz"; - path = fetchurl { - name = "fs.realpath___fs.realpath_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz"; - sha1 = "FQStJSMVjKpA20onh8sBQRmU6k8="; - }; - } - { - name = "fsevents___fsevents_2.3.2.tgz"; - path = fetchurl { - name = "fsevents___fsevents_2.3.2.tgz"; - url = "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz"; - sha512 = "xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="; - }; - } - { - name = "function_bind___function_bind_1.1.1.tgz"; - path = fetchurl { - name = "function_bind___function_bind_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz"; - sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="; - }; - } - { - name = "function.prototype.name___function.prototype.name_1.1.5.tgz"; - path = fetchurl { - name = "function.prototype.name___function.prototype.name_1.1.5.tgz"; - url = "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz"; - sha512 = "uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA=="; - }; - } - { - name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz"; - path = fetchurl { - name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"; - sha1 = "GwqzvVU7Kg1jmdKcDj6gslIHgyc="; - }; - } - { - name = "functions_have_names___functions_have_names_1.2.3.tgz"; - path = fetchurl { - name = "functions_have_names___functions_have_names_1.2.3.tgz"; - url = "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz"; - sha512 = "xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ=="; - }; - } - { - name = "gensync___gensync_1.0.0_beta.2.tgz"; - path = fetchurl { - name = "gensync___gensync_1.0.0_beta.2.tgz"; - url = "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz"; - sha512 = "3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="; - }; - } - { - name = "get_caller_file___get_caller_file_2.0.5.tgz"; - path = fetchurl { - name = "get_caller_file___get_caller_file_2.0.5.tgz"; - url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz"; - sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; - }; - } - { - name = "get_intrinsic___get_intrinsic_1.1.1.tgz"; - path = fetchurl { - name = "get_intrinsic___get_intrinsic_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz"; - sha512 = "kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q=="; - }; - } - { - name = "get_own_enumerable_property_symbols___get_own_enumerable_property_symbols_3.0.2.tgz"; - path = fetchurl { - name = "get_own_enumerable_property_symbols___get_own_enumerable_property_symbols_3.0.2.tgz"; - url = "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz"; - sha512 = "I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g=="; - }; - } - { - name = "get_package_type___get_package_type_0.1.0.tgz"; - path = fetchurl { - name = "get_package_type___get_package_type_0.1.0.tgz"; - url = "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz"; - sha512 = "pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q=="; - }; - } - { - name = "get_stream___get_stream_6.0.1.tgz"; - path = fetchurl { - name = "get_stream___get_stream_6.0.1.tgz"; - url = "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz"; - sha512 = "ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg=="; - }; - } - { - name = "get_symbol_description___get_symbol_description_1.0.0.tgz"; - path = fetchurl { - name = "get_symbol_description___get_symbol_description_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz"; - sha512 = "2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw=="; - }; - } - { - name = "glob_parent___glob_parent_5.1.2.tgz"; - path = fetchurl { - name = "glob_parent___glob_parent_5.1.2.tgz"; - url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz"; - sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="; - }; - } - { - name = "glob_parent___glob_parent_6.0.2.tgz"; - path = fetchurl { - name = "glob_parent___glob_parent_6.0.2.tgz"; - url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz"; - sha512 = "XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="; - }; - } - { - name = "glob_to_regexp___glob_to_regexp_0.4.1.tgz"; - path = fetchurl { - name = "glob_to_regexp___glob_to_regexp_0.4.1.tgz"; - url = "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz"; - sha512 = "lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw=="; - }; - } - { - name = "glob___glob_7.2.0.tgz"; - path = fetchurl { - name = "glob___glob_7.2.0.tgz"; - url = "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz"; - sha512 = "lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q=="; - }; - } - { - name = "global_modules___global_modules_2.0.0.tgz"; - path = fetchurl { - name = "global_modules___global_modules_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz"; - sha512 = "NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A=="; - }; - } - { - name = "global_prefix___global_prefix_3.0.0.tgz"; - path = fetchurl { - name = "global_prefix___global_prefix_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz"; - sha512 = "awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg=="; - }; - } - { - name = "globals___globals_11.12.0.tgz"; - path = fetchurl { - name = "globals___globals_11.12.0.tgz"; - url = "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz"; - sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; - }; - } - { - name = "globals___globals_13.19.0.tgz"; - path = fetchurl { - name = "globals___globals_13.19.0.tgz"; - url = "https://registry.yarnpkg.com/globals/-/globals-13.19.0.tgz"; - sha512 = "dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ=="; - }; - } - { - name = "globby___globby_11.1.0.tgz"; - path = fetchurl { - name = "globby___globby_11.1.0.tgz"; - url = "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz"; - sha512 = "jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="; - }; - } - { - name = "graceful_fs___graceful_fs_4.2.8.tgz"; - path = fetchurl { - name = "graceful_fs___graceful_fs_4.2.8.tgz"; - url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz"; - sha512 = "qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg=="; - }; - } - { - name = "graceful_fs___graceful_fs_4.2.10.tgz"; - path = fetchurl { - name = "graceful_fs___graceful_fs_4.2.10.tgz"; - url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz"; - sha512 = "9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="; - }; - } - { - name = "grapheme_splitter___grapheme_splitter_1.0.4.tgz"; - path = fetchurl { - name = "grapheme_splitter___grapheme_splitter_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz"; - sha512 = "bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="; - }; - } - { - name = "gzip_size___gzip_size_6.0.0.tgz"; - path = fetchurl { - name = "gzip_size___gzip_size_6.0.0.tgz"; - url = "https://registry.yarnpkg.com/gzip-size/-/gzip-size-6.0.0.tgz"; - sha512 = "ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q=="; - }; - } - { - name = "handle_thing___handle_thing_2.0.1.tgz"; - path = fetchurl { - name = "handle_thing___handle_thing_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz"; - sha512 = "9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg=="; - }; - } - { - name = "harmony_reflect___harmony_reflect_1.6.2.tgz"; - path = fetchurl { - name = "harmony_reflect___harmony_reflect_1.6.2.tgz"; - url = "https://registry.yarnpkg.com/harmony-reflect/-/harmony-reflect-1.6.2.tgz"; - sha512 = "HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g=="; - }; - } - { - name = "has_bigints___has_bigints_1.0.1.tgz"; - path = fetchurl { - name = "has_bigints___has_bigints_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz"; - sha512 = "LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA=="; - }; - } - { - name = "has_bigints___has_bigints_1.0.2.tgz"; - path = fetchurl { - name = "has_bigints___has_bigints_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz"; - sha512 = "tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ=="; - }; - } - { - name = "has_flag___has_flag_3.0.0.tgz"; - path = fetchurl { - name = "has_flag___has_flag_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz"; - sha1 = "tdRU3CGZriJWmfNGfloH87lVuv0="; - }; - } - { - name = "has_flag___has_flag_4.0.0.tgz"; - path = fetchurl { - name = "has_flag___has_flag_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz"; - sha512 = "EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="; - }; - } - { - name = "has_property_descriptors___has_property_descriptors_1.0.0.tgz"; - path = fetchurl { - name = "has_property_descriptors___has_property_descriptors_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz"; - sha512 = "62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ=="; - }; - } - { - name = "has_symbols___has_symbols_1.0.2.tgz"; - path = fetchurl { - name = "has_symbols___has_symbols_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz"; - sha512 = "chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="; - }; - } - { - name = "has_symbols___has_symbols_1.0.3.tgz"; - path = fetchurl { - name = "has_symbols___has_symbols_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz"; - sha512 = "l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="; - }; - } - { - name = "has_tostringtag___has_tostringtag_1.0.0.tgz"; - path = fetchurl { - name = "has_tostringtag___has_tostringtag_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz"; - sha512 = "kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ=="; - }; - } - { - name = "has___has_1.0.3.tgz"; - path = fetchurl { - name = "has___has_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz"; - sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; - }; - } - { - name = "he___he_1.2.0.tgz"; - path = fetchurl { - name = "he___he_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz"; - sha512 = "F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="; - }; - } - { - name = "history___history_4.10.1.tgz"; - path = fetchurl { - name = "history___history_4.10.1.tgz"; - url = "https://registry.yarnpkg.com/history/-/history-4.10.1.tgz"; - sha512 = "36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew=="; - }; - } - { - name = "hoist_non_react_statics___hoist_non_react_statics_3.3.2.tgz"; - path = fetchurl { - name = "hoist_non_react_statics___hoist_non_react_statics_3.3.2.tgz"; - url = "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz"; - sha512 = "/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw=="; - }; - } - { - name = "hoopy___hoopy_0.1.4.tgz"; - path = fetchurl { - name = "hoopy___hoopy_0.1.4.tgz"; - url = "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz"; - sha512 = "HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ=="; - }; - } - { - name = "hpack.js___hpack.js_2.1.6.tgz"; - path = fetchurl { - name = "hpack.js___hpack.js_2.1.6.tgz"; - url = "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz"; - sha1 = "h3dMCUnlE/QuhFdbPEVoH63ioLI="; - }; - } - { - name = "html_encoding_sniffer___html_encoding_sniffer_2.0.1.tgz"; - path = fetchurl { - name = "html_encoding_sniffer___html_encoding_sniffer_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz"; - sha512 = "D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ=="; - }; - } - { - name = "html_entities___html_entities_2.3.3.tgz"; - path = fetchurl { - name = "html_entities___html_entities_2.3.3.tgz"; - url = "https://registry.yarnpkg.com/html-entities/-/html-entities-2.3.3.tgz"; - sha512 = "DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA=="; - }; - } - { - name = "html_escaper___html_escaper_2.0.2.tgz"; - path = fetchurl { - name = "html_escaper___html_escaper_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz"; - sha512 = "H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg=="; - }; - } - { - name = "html_minifier_terser___html_minifier_terser_6.1.0.tgz"; - path = fetchurl { - name = "html_minifier_terser___html_minifier_terser_6.1.0.tgz"; - url = "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz"; - sha512 = "YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw=="; - }; - } - { - name = "html_webpack_plugin___html_webpack_plugin_5.5.0.tgz"; - path = fetchurl { - name = "html_webpack_plugin___html_webpack_plugin_5.5.0.tgz"; - url = "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz"; - sha512 = "sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw=="; - }; - } - { - name = "htmlparser2___htmlparser2_6.1.0.tgz"; - path = fetchurl { - name = "htmlparser2___htmlparser2_6.1.0.tgz"; - url = "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz"; - sha512 = "gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A=="; - }; - } - { - name = "http_deceiver___http_deceiver_1.2.7.tgz"; - path = fetchurl { - name = "http_deceiver___http_deceiver_1.2.7.tgz"; - url = "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz"; - sha1 = "+nFolEq5pRnTN8sL7HKE3D5yPYc="; - }; - } - { - name = "http_errors___http_errors_2.0.0.tgz"; - path = fetchurl { - name = "http_errors___http_errors_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz"; - sha512 = "FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ=="; - }; - } - { - name = "http_errors___http_errors_1.6.3.tgz"; - path = fetchurl { - name = "http_errors___http_errors_1.6.3.tgz"; - url = "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz"; - sha1 = "i1VoC7S+KDoLW/TqLjhYC+HZMg0="; - }; - } - { - name = "http_parser_js___http_parser_js_0.5.5.tgz"; - path = fetchurl { - name = "http_parser_js___http_parser_js_0.5.5.tgz"; - url = "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.5.tgz"; - sha512 = "x+JVEkO2PoM8qqpbPbOL3cqHPwerep7OwzK7Ay+sMQjKzaKCqWvjoXm5tqMP9tXWWTnTzAjIhXg+J99XYuPhPA=="; - }; - } - { - name = "http_proxy_agent___http_proxy_agent_4.0.1.tgz"; - path = fetchurl { - name = "http_proxy_agent___http_proxy_agent_4.0.1.tgz"; - url = "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz"; - sha512 = "k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg=="; - }; - } - { - name = "http_proxy_middleware___http_proxy_middleware_2.0.6.tgz"; - path = fetchurl { - name = "http_proxy_middleware___http_proxy_middleware_2.0.6.tgz"; - url = "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz"; - sha512 = "ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw=="; - }; - } - { - name = "http_proxy___http_proxy_1.18.1.tgz"; - path = fetchurl { - name = "http_proxy___http_proxy_1.18.1.tgz"; - url = "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz"; - sha512 = "7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ=="; - }; - } - { - name = "https_proxy_agent___https_proxy_agent_5.0.0.tgz"; - path = fetchurl { - name = "https_proxy_agent___https_proxy_agent_5.0.0.tgz"; - url = "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz"; - sha512 = "EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA=="; - }; - } - { - name = "human_signals___human_signals_2.1.0.tgz"; - path = fetchurl { - name = "human_signals___human_signals_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz"; - sha512 = "B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="; - }; - } - { - name = "hyphenate_style_name___hyphenate_style_name_1.0.4.tgz"; - path = fetchurl { - name = "hyphenate_style_name___hyphenate_style_name_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz"; - sha512 = "ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ=="; - }; - } - { - name = "iconv_lite___iconv_lite_0.4.24.tgz"; - path = fetchurl { - name = "iconv_lite___iconv_lite_0.4.24.tgz"; - url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz"; - sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; - }; - } - { - name = "iconv_lite___iconv_lite_0.6.3.tgz"; - path = fetchurl { - name = "iconv_lite___iconv_lite_0.6.3.tgz"; - url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz"; - sha512 = "4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="; - }; - } - { - name = "icss_utils___icss_utils_5.1.0.tgz"; - path = fetchurl { - name = "icss_utils___icss_utils_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz"; - sha512 = "soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA=="; - }; - } - { - name = "idb___idb_7.0.2.tgz"; - path = fetchurl { - name = "idb___idb_7.0.2.tgz"; - url = "https://registry.yarnpkg.com/idb/-/idb-7.0.2.tgz"; - sha512 = "jjKrT1EnyZewQ/gCBb/eyiYrhGzws2FeY92Yx8qT9S9GeQAmo4JFVIiWRIfKW/6Ob9A+UDAOW9j9jn58fy2HIg=="; - }; - } - { - name = "identity_obj_proxy___identity_obj_proxy_3.0.0.tgz"; - path = fetchurl { - name = "identity_obj_proxy___identity_obj_proxy_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz"; - sha512 = "00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA=="; - }; - } - { - name = "ignore___ignore_5.2.0.tgz"; - path = fetchurl { - name = "ignore___ignore_5.2.0.tgz"; - url = "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz"; - sha512 = "CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ=="; - }; - } - { - name = "immer___immer_9.0.15.tgz"; - path = fetchurl { - name = "immer___immer_9.0.15.tgz"; - url = "https://registry.yarnpkg.com/immer/-/immer-9.0.15.tgz"; - sha512 = "2eB/sswms9AEUSkOm4SbV5Y7Vmt/bKRwByd52jfLkW4OLYeaTP3EEiJ9agqU0O/tq6Dk62Zfj+TJSqfm1rLVGQ=="; - }; - } - { - name = "immutable___immutable_4.0.0.tgz"; - path = fetchurl { - name = "immutable___immutable_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/immutable/-/immutable-4.0.0.tgz"; - sha512 = "zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw=="; - }; - } - { - name = "import_fresh___import_fresh_3.3.0.tgz"; - path = fetchurl { - name = "import_fresh___import_fresh_3.3.0.tgz"; - url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz"; - sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="; - }; - } - { - name = "import_local___import_local_3.0.3.tgz"; - path = fetchurl { - name = "import_local___import_local_3.0.3.tgz"; - url = "https://registry.yarnpkg.com/import-local/-/import-local-3.0.3.tgz"; - sha512 = "bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA=="; - }; - } - { - name = "imurmurhash___imurmurhash_0.1.4.tgz"; - path = fetchurl { - name = "imurmurhash___imurmurhash_0.1.4.tgz"; - url = "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz"; - sha1 = "khi5srkoojixPcT7a21XbyMUU+o="; - }; - } - { - name = "indent_string___indent_string_4.0.0.tgz"; - path = fetchurl { - name = "indent_string___indent_string_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz"; - sha512 = "EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="; - }; - } - { - name = "inflection___inflection_1.12.0.tgz"; - path = fetchurl { - name = "inflection___inflection_1.12.0.tgz"; - url = "https://registry.yarnpkg.com/inflection/-/inflection-1.12.0.tgz"; - sha512 = "lRy4DxuIFWXlJU7ed8UiTJOSTqStqYdEb4CEbtXfNbkdj3nH1L+reUWiE10VWcJS2yR7tge8Z74pJjtBjNwj0w=="; - }; - } - { - name = "inflection___inflection_1.13.1.tgz"; - path = fetchurl { - name = "inflection___inflection_1.13.1.tgz"; - url = "https://registry.yarnpkg.com/inflection/-/inflection-1.13.1.tgz"; - sha512 = "dldYtl2WlN0QDkIDtg8+xFwOS2Tbmp12t1cHa5/YClU6ZQjTFm7B66UcVbh9NQB+HvT5BAd2t5+yKsBkw5pcqA=="; - }; - } - { - name = "inflight___inflight_1.0.6.tgz"; - path = fetchurl { - name = "inflight___inflight_1.0.6.tgz"; - url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz"; - sha1 = "Sb1jMdfQLQwJvJEKEHW6gWW1bfk="; - }; - } - { - name = "inherits___inherits_2.0.4.tgz"; - path = fetchurl { - name = "inherits___inherits_2.0.4.tgz"; - url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz"; - sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; - }; - } - { - name = "inherits___inherits_2.0.3.tgz"; - path = fetchurl { - name = "inherits___inherits_2.0.3.tgz"; - url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz"; - sha1 = "Yzwsg+PaQqUC9SRmAiSA9CCCYd4="; - }; - } - { - name = "ini___ini_1.3.8.tgz"; - path = fetchurl { - name = "ini___ini_1.3.8.tgz"; - url = "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz"; - sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="; - }; - } - { - name = "internal_slot___internal_slot_1.0.3.tgz"; - path = fetchurl { - name = "internal_slot___internal_slot_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz"; - sha512 = "O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA=="; - }; - } - { - name = "ipaddr.js___ipaddr.js_1.9.1.tgz"; - path = fetchurl { - name = "ipaddr.js___ipaddr.js_1.9.1.tgz"; - url = "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz"; - sha512 = "0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="; - }; - } - { - name = "ipaddr.js___ipaddr.js_2.0.1.tgz"; - path = fetchurl { - name = "ipaddr.js___ipaddr.js_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.0.1.tgz"; - sha512 = "1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng=="; - }; - } - { - name = "is_arrayish___is_arrayish_0.2.1.tgz"; - path = fetchurl { - name = "is_arrayish___is_arrayish_0.2.1.tgz"; - url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz"; - sha1 = "d8mYQFJ6qOyxqLppe4BkWnqSap0="; - }; - } - { - name = "is_bigint___is_bigint_1.0.4.tgz"; - path = fetchurl { - name = "is_bigint___is_bigint_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz"; - sha512 = "zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg=="; - }; - } - { - name = "is_binary_path___is_binary_path_2.1.0.tgz"; - path = fetchurl { - name = "is_binary_path___is_binary_path_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz"; - sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; - }; - } - { - name = "is_boolean_object___is_boolean_object_1.1.2.tgz"; - path = fetchurl { - name = "is_boolean_object___is_boolean_object_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz"; - sha512 = "gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA=="; - }; - } - { - name = "is_callable___is_callable_1.2.4.tgz"; - path = fetchurl { - name = "is_callable___is_callable_1.2.4.tgz"; - url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz"; - sha512 = "nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w=="; - }; - } - { - name = "is_core_module___is_core_module_2.8.0.tgz"; - path = fetchurl { - name = "is_core_module___is_core_module_2.8.0.tgz"; - url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.8.0.tgz"; - sha512 = "vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw=="; - }; - } - { - name = "is_core_module___is_core_module_2.9.0.tgz"; - path = fetchurl { - name = "is_core_module___is_core_module_2.9.0.tgz"; - url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz"; - sha512 = "+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A=="; - }; - } - { - name = "is_date_object___is_date_object_1.0.5.tgz"; - path = fetchurl { - name = "is_date_object___is_date_object_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz"; - sha512 = "9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ=="; - }; - } - { - name = "is_docker___is_docker_2.2.1.tgz"; - path = fetchurl { - name = "is_docker___is_docker_2.2.1.tgz"; - url = "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz"; - sha512 = "F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ=="; - }; - } - { - name = "is_extglob___is_extglob_2.1.1.tgz"; - path = fetchurl { - name = "is_extglob___is_extglob_2.1.1.tgz"; - url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz"; - sha1 = "qIwCU1eR8C7TfHahueqXc8gz+MI="; - }; - } - { - name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz"; - path = fetchurl { - name = "is_fullwidth_code_point___is_fullwidth_code_point_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"; - sha512 = "zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="; - }; - } - { - name = "is_generator_fn___is_generator_fn_2.1.0.tgz"; - path = fetchurl { - name = "is_generator_fn___is_generator_fn_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz"; - sha512 = "cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ=="; - }; - } - { - name = "is_glob___is_glob_4.0.3.tgz"; - path = fetchurl { - name = "is_glob___is_glob_4.0.3.tgz"; - url = "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz"; - sha512 = "xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="; - }; - } - { - name = "is_in_browser___is_in_browser_1.1.3.tgz"; - path = fetchurl { - name = "is_in_browser___is_in_browser_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/is-in-browser/-/is-in-browser-1.1.3.tgz"; - sha1 = "Vv9NtoOgeMYILrldrX3GLh0E+DU="; - }; - } - { - name = "is_module___is_module_1.0.0.tgz"; - path = fetchurl { - name = "is_module___is_module_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz"; - sha1 = "Mlj7afeMFNW4FdZkM2tM/7ZEFZE="; - }; - } - { - name = "is_negative_zero___is_negative_zero_2.0.2.tgz"; - path = fetchurl { - name = "is_negative_zero___is_negative_zero_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz"; - sha512 = "dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA=="; - }; - } - { - name = "is_number_object___is_number_object_1.0.6.tgz"; - path = fetchurl { - name = "is_number_object___is_number_object_1.0.6.tgz"; - url = "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz"; - sha512 = "bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g=="; - }; - } - { - name = "is_number___is_number_7.0.0.tgz"; - path = fetchurl { - name = "is_number___is_number_7.0.0.tgz"; - url = "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz"; - sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; - }; - } - { - name = "is_obj___is_obj_1.0.1.tgz"; - path = fetchurl { - name = "is_obj___is_obj_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz"; - sha1 = "PkcprB9f3gJc19g6iW2rn09n2w8="; - }; - } - { - name = "is_path_inside___is_path_inside_3.0.3.tgz"; - path = fetchurl { - name = "is_path_inside___is_path_inside_3.0.3.tgz"; - url = "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz"; - sha512 = "Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="; - }; - } - { - name = "is_plain_obj___is_plain_obj_3.0.0.tgz"; - path = fetchurl { - name = "is_plain_obj___is_plain_obj_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz"; - sha512 = "gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA=="; - }; - } - { - name = "is_potential_custom_element_name___is_potential_custom_element_name_1.0.1.tgz"; - path = fetchurl { - name = "is_potential_custom_element_name___is_potential_custom_element_name_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz"; - sha512 = "bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ=="; - }; - } - { - name = "is_regex___is_regex_1.1.4.tgz"; - path = fetchurl { - name = "is_regex___is_regex_1.1.4.tgz"; - url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz"; - sha512 = "kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg=="; - }; - } - { - name = "is_regexp___is_regexp_1.0.0.tgz"; - path = fetchurl { - name = "is_regexp___is_regexp_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz"; - sha1 = "/S2INUXEa6xaYz57mgnof6LLUGk="; - }; - } - { - name = "is_root___is_root_2.1.0.tgz"; - path = fetchurl { - name = "is_root___is_root_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz"; - sha512 = "AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg=="; - }; - } - { - name = "is_shared_array_buffer___is_shared_array_buffer_1.0.1.tgz"; - path = fetchurl { - name = "is_shared_array_buffer___is_shared_array_buffer_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz"; - sha512 = "IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA=="; - }; - } - { - name = "is_shared_array_buffer___is_shared_array_buffer_1.0.2.tgz"; - path = fetchurl { - name = "is_shared_array_buffer___is_shared_array_buffer_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz"; - sha512 = "sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA=="; - }; - } - { - name = "is_stream___is_stream_2.0.1.tgz"; - path = fetchurl { - name = "is_stream___is_stream_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz"; - sha512 = "hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="; - }; - } - { - name = "is_string___is_string_1.0.7.tgz"; - path = fetchurl { - name = "is_string___is_string_1.0.7.tgz"; - url = "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz"; - sha512 = "tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg=="; - }; - } - { - name = "is_symbol___is_symbol_1.0.4.tgz"; - path = fetchurl { - name = "is_symbol___is_symbol_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz"; - sha512 = "C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="; - }; - } - { - name = "is_typedarray___is_typedarray_1.0.0.tgz"; - path = fetchurl { - name = "is_typedarray___is_typedarray_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz"; - sha1 = "5HnICFjfDBsR3dppQPlgEfzaSpo="; - }; - } - { - name = "is_weakref___is_weakref_1.0.2.tgz"; - path = fetchurl { - name = "is_weakref___is_weakref_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz"; - sha512 = "qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ=="; - }; - } - { - name = "is_wsl___is_wsl_2.2.0.tgz"; - path = fetchurl { - name = "is_wsl___is_wsl_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz"; - sha512 = "fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww=="; - }; - } - { - name = "isarray___isarray_0.0.1.tgz"; - path = fetchurl { - name = "isarray___isarray_0.0.1.tgz"; - url = "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz"; - sha1 = "ihis/Kmo9Bd+Cav8YDiTmwXR7t8="; - }; - } - { - name = "isarray___isarray_1.0.0.tgz"; - path = fetchurl { - name = "isarray___isarray_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz"; - sha1 = "u5NdSFgsuhaMBoNJV6VKPgcSTxE="; - }; - } - { - name = "isexe___isexe_2.0.0.tgz"; - path = fetchurl { - name = "isexe___isexe_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz"; - sha1 = "6PvzdNxVb/iUehDcsFctYz8s+hA="; - }; - } - { - name = "istanbul_lib_coverage___istanbul_lib_coverage_3.2.0.tgz"; - path = fetchurl { - name = "istanbul_lib_coverage___istanbul_lib_coverage_3.2.0.tgz"; - url = "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz"; - sha512 = "eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw=="; - }; - } - { - name = "istanbul_lib_instrument___istanbul_lib_instrument_5.1.0.tgz"; - path = fetchurl { - name = "istanbul_lib_instrument___istanbul_lib_instrument_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz"; - sha512 = "czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q=="; - }; - } - { - name = "istanbul_lib_instrument___istanbul_lib_instrument_5.2.0.tgz"; - path = fetchurl { - name = "istanbul_lib_instrument___istanbul_lib_instrument_5.2.0.tgz"; - url = "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz"; - sha512 = "6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A=="; - }; - } - { - name = "istanbul_lib_report___istanbul_lib_report_3.0.0.tgz"; - path = fetchurl { - name = "istanbul_lib_report___istanbul_lib_report_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"; - sha512 = "wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw=="; - }; - } - { - name = "istanbul_lib_source_maps___istanbul_lib_source_maps_4.0.1.tgz"; - path = fetchurl { - name = "istanbul_lib_source_maps___istanbul_lib_source_maps_4.0.1.tgz"; - url = "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz"; - sha512 = "n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw=="; - }; - } - { - name = "istanbul_reports___istanbul_reports_3.1.5.tgz"; - path = fetchurl { - name = "istanbul_reports___istanbul_reports_3.1.5.tgz"; - url = "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.5.tgz"; - sha512 = "nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w=="; - }; - } - { - name = "jake___jake_10.8.5.tgz"; - path = fetchurl { - name = "jake___jake_10.8.5.tgz"; - url = "https://registry.yarnpkg.com/jake/-/jake-10.8.5.tgz"; - sha512 = "sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw=="; - }; - } - { - name = "jest_changed_files___jest_changed_files_27.5.1.tgz"; - path = fetchurl { - name = "jest_changed_files___jest_changed_files_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-27.5.1.tgz"; - sha512 = "buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw=="; - }; - } - { - name = "jest_circus___jest_circus_27.5.1.tgz"; - path = fetchurl { - name = "jest_circus___jest_circus_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.5.1.tgz"; - sha512 = "D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw=="; - }; - } - { - name = "jest_cli___jest_cli_27.5.1.tgz"; - path = fetchurl { - name = "jest_cli___jest_cli_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.5.1.tgz"; - sha512 = "Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw=="; - }; - } - { - name = "jest_config___jest_config_27.5.1.tgz"; - path = fetchurl { - name = "jest_config___jest_config_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-config/-/jest-config-27.5.1.tgz"; - sha512 = "5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA=="; - }; - } - { - name = "jest_diff___jest_diff_27.4.2.tgz"; - path = fetchurl { - name = "jest_diff___jest_diff_27.4.2.tgz"; - url = "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.4.2.tgz"; - sha512 = "ujc9ToyUZDh9KcqvQDkk/gkbf6zSaeEg9AiBxtttXW59H/AcqEYp1ciXAtJp+jXWva5nAf/ePtSsgWwE5mqp4Q=="; - }; - } - { - name = "jest_diff___jest_diff_27.5.1.tgz"; - path = fetchurl { - name = "jest_diff___jest_diff_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.5.1.tgz"; - sha512 = "m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw=="; - }; - } - { - name = "jest_docblock___jest_docblock_27.5.1.tgz"; - path = fetchurl { - name = "jest_docblock___jest_docblock_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-27.5.1.tgz"; - sha512 = "rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ=="; - }; - } - { - name = "jest_each___jest_each_27.5.1.tgz"; - path = fetchurl { - name = "jest_each___jest_each_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-each/-/jest-each-27.5.1.tgz"; - sha512 = "1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ=="; - }; - } - { - name = "jest_environment_jsdom___jest_environment_jsdom_27.5.1.tgz"; - path = fetchurl { - name = "jest_environment_jsdom___jest_environment_jsdom_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz"; - sha512 = "TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw=="; - }; - } - { - name = "jest_environment_node___jest_environment_node_27.5.1.tgz"; - path = fetchurl { - name = "jest_environment_node___jest_environment_node_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.5.1.tgz"; - sha512 = "Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw=="; - }; - } - { - name = "jest_fetch_mock___jest_fetch_mock_3.0.3.tgz"; - path = fetchurl { - name = "jest_fetch_mock___jest_fetch_mock_3.0.3.tgz"; - url = "https://registry.yarnpkg.com/jest-fetch-mock/-/jest-fetch-mock-3.0.3.tgz"; - sha512 = "Ux1nWprtLrdrH4XwE7O7InRY6psIi3GOsqNESJgMJ+M5cv4A8Lh7SN9d2V2kKRZ8ebAfcd1LNyZguAOb6JiDqw=="; - }; - } - { - name = "jest_get_type___jest_get_type_27.4.0.tgz"; - path = fetchurl { - name = "jest_get_type___jest_get_type_27.4.0.tgz"; - url = "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.4.0.tgz"; - sha512 = "tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ=="; - }; - } - { - name = "jest_get_type___jest_get_type_27.5.1.tgz"; - path = fetchurl { - name = "jest_get_type___jest_get_type_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.5.1.tgz"; - sha512 = "2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw=="; - }; - } - { - name = "jest_haste_map___jest_haste_map_27.5.1.tgz"; - path = fetchurl { - name = "jest_haste_map___jest_haste_map_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz"; - sha512 = "7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng=="; - }; - } - { - name = "jest_jasmine2___jest_jasmine2_27.5.1.tgz"; - path = fetchurl { - name = "jest_jasmine2___jest_jasmine2_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz"; - sha512 = "jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ=="; - }; - } - { - name = "jest_leak_detector___jest_leak_detector_27.5.1.tgz"; - path = fetchurl { - name = "jest_leak_detector___jest_leak_detector_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz"; - sha512 = "POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ=="; - }; - } - { - name = "jest_matcher_utils___jest_matcher_utils_27.5.1.tgz"; - path = fetchurl { - name = "jest_matcher_utils___jest_matcher_utils_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz"; - sha512 = "z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw=="; - }; - } - { - name = "jest_message_util___jest_message_util_27.5.1.tgz"; - path = fetchurl { - name = "jest_message_util___jest_message_util_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.5.1.tgz"; - sha512 = "rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g=="; - }; - } - { - name = "jest_message_util___jest_message_util_28.1.3.tgz"; - path = fetchurl { - name = "jest_message_util___jest_message_util_28.1.3.tgz"; - url = "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-28.1.3.tgz"; - sha512 = "PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g=="; - }; - } - { - name = "jest_mock___jest_mock_27.5.1.tgz"; - path = fetchurl { - name = "jest_mock___jest_mock_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.5.1.tgz"; - sha512 = "K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og=="; - }; - } - { - name = "jest_pnp_resolver___jest_pnp_resolver_1.2.2.tgz"; - path = fetchurl { - name = "jest_pnp_resolver___jest_pnp_resolver_1.2.2.tgz"; - url = "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz"; - sha512 = "olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w=="; - }; - } - { - name = "jest_regex_util___jest_regex_util_27.5.1.tgz"; - path = fetchurl { - name = "jest_regex_util___jest_regex_util_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz"; - sha512 = "4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg=="; - }; - } - { - name = "jest_regex_util___jest_regex_util_28.0.2.tgz"; - path = fetchurl { - name = "jest_regex_util___jest_regex_util_28.0.2.tgz"; - url = "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-28.0.2.tgz"; - sha512 = "4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw=="; - }; - } - { - name = "jest_resolve_dependencies___jest_resolve_dependencies_27.5.1.tgz"; - path = fetchurl { - name = "jest_resolve_dependencies___jest_resolve_dependencies_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz"; - sha512 = "QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg=="; - }; - } - { - name = "jest_resolve___jest_resolve_27.5.1.tgz"; - path = fetchurl { - name = "jest_resolve___jest_resolve_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.5.1.tgz"; - sha512 = "FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw=="; - }; - } - { - name = "jest_runner___jest_runner_27.5.1.tgz"; - path = fetchurl { - name = "jest_runner___jest_runner_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.5.1.tgz"; - sha512 = "g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ=="; - }; - } - { - name = "jest_runtime___jest_runtime_27.5.1.tgz"; - path = fetchurl { - name = "jest_runtime___jest_runtime_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.5.1.tgz"; - sha512 = "o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A=="; - }; - } - { - name = "jest_serializer___jest_serializer_27.5.1.tgz"; - path = fetchurl { - name = "jest_serializer___jest_serializer_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.5.1.tgz"; - sha512 = "jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w=="; - }; - } - { - name = "jest_snapshot___jest_snapshot_27.5.1.tgz"; - path = fetchurl { - name = "jest_snapshot___jest_snapshot_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz"; - sha512 = "yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA=="; - }; - } - { - name = "jest_util___jest_util_27.5.1.tgz"; - path = fetchurl { - name = "jest_util___jest_util_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-util/-/jest-util-27.5.1.tgz"; - sha512 = "Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw=="; - }; - } - { - name = "jest_util___jest_util_28.1.3.tgz"; - path = fetchurl { - name = "jest_util___jest_util_28.1.3.tgz"; - url = "https://registry.yarnpkg.com/jest-util/-/jest-util-28.1.3.tgz"; - sha512 = "XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ=="; - }; - } - { - name = "jest_validate___jest_validate_27.5.1.tgz"; - path = fetchurl { - name = "jest_validate___jest_validate_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-validate/-/jest-validate-27.5.1.tgz"; - sha512 = "thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ=="; - }; - } - { - name = "jest_watch_typeahead___jest_watch_typeahead_1.1.0.tgz"; - path = fetchurl { - name = "jest_watch_typeahead___jest_watch_typeahead_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz"; - sha512 = "Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw=="; - }; - } - { - name = "jest_watcher___jest_watcher_27.5.1.tgz"; - path = fetchurl { - name = "jest_watcher___jest_watcher_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.5.1.tgz"; - sha512 = "z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw=="; - }; - } - { - name = "jest_watcher___jest_watcher_28.1.3.tgz"; - path = fetchurl { - name = "jest_watcher___jest_watcher_28.1.3.tgz"; - url = "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-28.1.3.tgz"; - sha512 = "t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g=="; - }; - } - { - name = "jest_worker___jest_worker_26.6.2.tgz"; - path = fetchurl { - name = "jest_worker___jest_worker_26.6.2.tgz"; - url = "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz"; - sha512 = "KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ=="; - }; - } - { - name = "jest_worker___jest_worker_27.5.1.tgz"; - path = fetchurl { - name = "jest_worker___jest_worker_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz"; - sha512 = "7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg=="; - }; - } - { - name = "jest_worker___jest_worker_28.1.3.tgz"; - path = fetchurl { - name = "jest_worker___jest_worker_28.1.3.tgz"; - url = "https://registry.yarnpkg.com/jest-worker/-/jest-worker-28.1.3.tgz"; - sha512 = "CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g=="; - }; - } - { - name = "jest___jest_27.5.1.tgz"; - path = fetchurl { - name = "jest___jest_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/jest/-/jest-27.5.1.tgz"; - sha512 = "Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ=="; - }; - } - { - name = "js_sdsl___js_sdsl_4.2.0.tgz"; - path = fetchurl { - name = "js_sdsl___js_sdsl_4.2.0.tgz"; - url = "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.2.0.tgz"; - sha512 = "dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ=="; - }; - } - { - name = "js_sha3___js_sha3_0.8.0.tgz"; - path = fetchurl { - name = "js_sha3___js_sha3_0.8.0.tgz"; - url = "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz"; - sha512 = "gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q=="; - }; - } - { - name = "js_tokens___js_tokens_4.0.0.tgz"; - path = fetchurl { - name = "js_tokens___js_tokens_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz"; - sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; - }; - } - { - name = "js_yaml___js_yaml_3.14.1.tgz"; - path = fetchurl { - name = "js_yaml___js_yaml_3.14.1.tgz"; - url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz"; - sha512 = "okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g=="; - }; - } - { - name = "js_yaml___js_yaml_4.1.0.tgz"; - path = fetchurl { - name = "js_yaml___js_yaml_4.1.0.tgz"; - url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz"; - sha512 = "wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="; - }; - } - { - name = "jsdom___jsdom_16.7.0.tgz"; - path = fetchurl { - name = "jsdom___jsdom_16.7.0.tgz"; - url = "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz"; - sha512 = "u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw=="; - }; - } - { - name = "jsesc___jsesc_2.5.2.tgz"; - path = fetchurl { - name = "jsesc___jsesc_2.5.2.tgz"; - url = "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz"; - sha512 = "OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="; - }; - } - { - name = "jsesc___jsesc_0.5.0.tgz"; - path = fetchurl { - name = "jsesc___jsesc_0.5.0.tgz"; - url = "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz"; - sha1 = "597mbjXW/Bb3EP6R1c9p9w8IkR0="; - }; - } - { - name = "json_parse_even_better_errors___json_parse_even_better_errors_2.3.1.tgz"; - path = fetchurl { - name = "json_parse_even_better_errors___json_parse_even_better_errors_2.3.1.tgz"; - url = "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz"; - sha512 = "xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="; - }; - } - { - name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; - path = fetchurl { - name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; - url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; - sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; - }; - } - { - name = "json_schema_traverse___json_schema_traverse_1.0.0.tgz"; - path = fetchurl { - name = "json_schema_traverse___json_schema_traverse_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"; - sha512 = "NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="; - }; - } - { - name = "json_schema___json_schema_0.4.0.tgz"; - path = fetchurl { - name = "json_schema___json_schema_0.4.0.tgz"; - url = "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz"; - sha512 = "es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA=="; - }; - } - { - name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; - path = fetchurl { - name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; - sha1 = "nbe1lJatPzz+8wp1FC0tkwrXJlE="; - }; - } - { - name = "json5___json5_1.0.2.tgz"; - path = fetchurl { - name = "json5___json5_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz"; - sha512 = "g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA=="; - }; - } - { - name = "json5___json5_2.2.1.tgz"; - path = fetchurl { - name = "json5___json5_2.2.1.tgz"; - url = "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz"; - sha512 = "1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA=="; - }; - } - { - name = "jsonexport___jsonexport_2.5.2.tgz"; - path = fetchurl { - name = "jsonexport___jsonexport_2.5.2.tgz"; - url = "https://registry.yarnpkg.com/jsonexport/-/jsonexport-2.5.2.tgz"; - sha512 = "4joNLCxxUAmS22GN3GA5os/MYFnq8oqXOKvoCymmcT0MPz/QPZ5eA+Fh5sIPxUji45RKq8DdQ1yoKq91p4E9VA=="; - }; - } - { - name = "jsonexport___jsonexport_3.2.0.tgz"; - path = fetchurl { - name = "jsonexport___jsonexport_3.2.0.tgz"; - url = "https://registry.yarnpkg.com/jsonexport/-/jsonexport-3.2.0.tgz"; - sha512 = "GbO9ugb0YTZatPd/hqCGR0FSwbr82H6OzG04yzdrG7XOe4QZ0jhQ+kOsB29zqkzoYJLmLxbbrFiuwbQu891XnQ=="; - }; - } - { - name = "jsonfile___jsonfile_6.1.0.tgz"; - path = fetchurl { - name = "jsonfile___jsonfile_6.1.0.tgz"; - url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz"; - sha512 = "5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ=="; - }; - } - { - name = "jsonpointer___jsonpointer_5.0.1.tgz"; - path = fetchurl { - name = "jsonpointer___jsonpointer_5.0.1.tgz"; - url = "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.1.tgz"; - sha512 = "p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ=="; - }; - } - { - name = "jss_plugin_camel_case___jss_plugin_camel_case_10.9.0.tgz"; - path = fetchurl { - name = "jss_plugin_camel_case___jss_plugin_camel_case_10.9.0.tgz"; - url = "https://registry.yarnpkg.com/jss-plugin-camel-case/-/jss-plugin-camel-case-10.9.0.tgz"; - sha512 = "UH6uPpnDk413/r/2Olmw4+y54yEF2lRIV8XIZyuYpgPYTITLlPOsq6XB9qeqv+75SQSg3KLocq5jUBXW8qWWww=="; - }; - } - { - name = "jss_plugin_default_unit___jss_plugin_default_unit_10.9.0.tgz"; - path = fetchurl { - name = "jss_plugin_default_unit___jss_plugin_default_unit_10.9.0.tgz"; - url = "https://registry.yarnpkg.com/jss-plugin-default-unit/-/jss-plugin-default-unit-10.9.0.tgz"; - sha512 = "7Ju4Q9wJ/MZPsxfu4T84mzdn7pLHWeqoGd/D8O3eDNNJ93Xc8PxnLmV8s8ZPNRYkLdxZqKtm1nPQ0BM4JRlq2w=="; - }; - } - { - name = "jss_plugin_global___jss_plugin_global_10.9.0.tgz"; - path = fetchurl { - name = "jss_plugin_global___jss_plugin_global_10.9.0.tgz"; - url = "https://registry.yarnpkg.com/jss-plugin-global/-/jss-plugin-global-10.9.0.tgz"; - sha512 = "4G8PHNJ0x6nwAFsEzcuVDiBlyMsj2y3VjmFAx/uHk/R/gzJV+yRHICjT4MKGGu1cJq2hfowFWCyrr/Gg37FbgQ=="; - }; - } - { - name = "jss_plugin_nested___jss_plugin_nested_10.9.0.tgz"; - path = fetchurl { - name = "jss_plugin_nested___jss_plugin_nested_10.9.0.tgz"; - url = "https://registry.yarnpkg.com/jss-plugin-nested/-/jss-plugin-nested-10.9.0.tgz"; - sha512 = "2UJnDrfCZpMYcpPYR16oZB7VAC6b/1QLsRiAutOt7wJaaqwCBvNsosLEu/fUyKNQNGdvg2PPJFDO5AX7dwxtoA=="; - }; - } - { - name = "jss_plugin_props_sort___jss_plugin_props_sort_10.9.0.tgz"; - path = fetchurl { - name = "jss_plugin_props_sort___jss_plugin_props_sort_10.9.0.tgz"; - url = "https://registry.yarnpkg.com/jss-plugin-props-sort/-/jss-plugin-props-sort-10.9.0.tgz"; - sha512 = "7A76HI8bzwqrsMOJTWKx/uD5v+U8piLnp5bvru7g/3ZEQOu1+PjHvv7bFdNO3DwNPC9oM0a//KwIJsIcDCjDzw=="; - }; - } - { - name = "jss_plugin_rule_value_function___jss_plugin_rule_value_function_10.9.0.tgz"; - path = fetchurl { - name = "jss_plugin_rule_value_function___jss_plugin_rule_value_function_10.9.0.tgz"; - url = "https://registry.yarnpkg.com/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.9.0.tgz"; - sha512 = "IHJv6YrEf8pRzkY207cPmdbBstBaE+z8pazhPShfz0tZSDtRdQua5jjg6NMz3IbTasVx9FdnmptxPqSWL5tyJg=="; - }; - } - { - name = "jss_plugin_vendor_prefixer___jss_plugin_vendor_prefixer_10.9.0.tgz"; - path = fetchurl { - name = "jss_plugin_vendor_prefixer___jss_plugin_vendor_prefixer_10.9.0.tgz"; - url = "https://registry.yarnpkg.com/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.9.0.tgz"; - sha512 = "MbvsaXP7iiVdYVSEoi+blrW+AYnTDvHTW6I6zqi7JcwXdc6I9Kbm234nEblayhF38EftoenbM+5218pidmC5gA=="; - }; - } - { - name = "jss___jss_10.9.0.tgz"; - path = fetchurl { - name = "jss___jss_10.9.0.tgz"; - url = "https://registry.yarnpkg.com/jss/-/jss-10.9.0.tgz"; - sha512 = "YpzpreB6kUunQBbrlArlsMpXYyndt9JATbt95tajx0t4MTJJcCJdd4hdNpHmOIDiUJrF/oX5wtVFrS3uofWfGw=="; - }; - } - { - name = "jsx_ast_utils___jsx_ast_utils_3.2.1.tgz"; - path = fetchurl { - name = "jsx_ast_utils___jsx_ast_utils_3.2.1.tgz"; - url = "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz"; - sha512 = "uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA=="; - }; - } - { - name = "jsx_ast_utils___jsx_ast_utils_3.3.2.tgz"; - path = fetchurl { - name = "jsx_ast_utils___jsx_ast_utils_3.3.2.tgz"; - url = "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.2.tgz"; - sha512 = "4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q=="; - }; - } - { - name = "kind_of___kind_of_6.0.3.tgz"; - path = fetchurl { - name = "kind_of___kind_of_6.0.3.tgz"; - url = "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz"; - sha512 = "dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="; - }; - } - { - name = "kleur___kleur_3.0.3.tgz"; - path = fetchurl { - name = "kleur___kleur_3.0.3.tgz"; - url = "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz"; - sha512 = "eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w=="; - }; - } - { - name = "klona___klona_2.0.5.tgz"; - path = fetchurl { - name = "klona___klona_2.0.5.tgz"; - url = "https://registry.yarnpkg.com/klona/-/klona-2.0.5.tgz"; - sha512 = "pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ=="; - }; - } - { - name = "language_subtag_registry___language_subtag_registry_0.3.21.tgz"; - path = fetchurl { - name = "language_subtag_registry___language_subtag_registry_0.3.21.tgz"; - url = "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz"; - sha512 = "L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg=="; - }; - } - { - name = "language_tags___language_tags_1.0.5.tgz"; - path = fetchurl { - name = "language_tags___language_tags_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz"; - sha1 = "0yHbxNowuovzAk4ED6XBRmH5GTo="; - }; - } - { - name = "leven___leven_3.1.0.tgz"; - path = fetchurl { - name = "leven___leven_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz"; - sha512 = "qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A=="; - }; - } - { - name = "levn___levn_0.4.1.tgz"; - path = fetchurl { - name = "levn___levn_0.4.1.tgz"; - url = "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz"; - sha512 = "+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="; - }; - } - { - name = "levn___levn_0.3.0.tgz"; - path = fetchurl { - name = "levn___levn_0.3.0.tgz"; - url = "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz"; - sha1 = "OwmSTt+fCDwEkP3UwLxEIeBHZO4="; - }; - } - { - name = "lilconfig___lilconfig_2.0.6.tgz"; - path = fetchurl { - name = "lilconfig___lilconfig_2.0.6.tgz"; - url = "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.6.tgz"; - sha512 = "9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg=="; - }; - } - { - name = "lines_and_columns___lines_and_columns_1.2.4.tgz"; - path = fetchurl { - name = "lines_and_columns___lines_and_columns_1.2.4.tgz"; - url = "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz"; - sha512 = "7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="; - }; - } - { - name = "loader_runner___loader_runner_4.3.0.tgz"; - path = fetchurl { - name = "loader_runner___loader_runner_4.3.0.tgz"; - url = "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz"; - sha512 = "3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg=="; - }; - } - { - name = "loader_utils___loader_utils_2.0.4.tgz"; - path = fetchurl { - name = "loader_utils___loader_utils_2.0.4.tgz"; - url = "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz"; - sha512 = "xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw=="; - }; - } - { - name = "loader_utils___loader_utils_3.2.0.tgz"; - path = fetchurl { - name = "loader_utils___loader_utils_3.2.0.tgz"; - url = "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.2.0.tgz"; - sha512 = "HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ=="; - }; - } - { - name = "locate_path___locate_path_2.0.0.tgz"; - path = fetchurl { - name = "locate_path___locate_path_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz"; - sha1 = "K1aLJl7slExtnA3pw9u7ygNUzY4="; - }; - } - { - name = "locate_path___locate_path_3.0.0.tgz"; - path = fetchurl { - name = "locate_path___locate_path_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz"; - sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A=="; - }; - } - { - name = "locate_path___locate_path_5.0.0.tgz"; - path = fetchurl { - name = "locate_path___locate_path_5.0.0.tgz"; - url = "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz"; - sha512 = "t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="; - }; - } - { - name = "locate_path___locate_path_6.0.0.tgz"; - path = fetchurl { - name = "locate_path___locate_path_6.0.0.tgz"; - url = "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz"; - sha512 = "iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="; - }; - } - { - name = "lodash.debounce___lodash.debounce_4.0.8.tgz"; - path = fetchurl { - name = "lodash.debounce___lodash.debounce_4.0.8.tgz"; - url = "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz"; - sha1 = "gteb/zCmfEAF/9XiUVMArZyk168="; - }; - } - { - name = "lodash.isequalwith___lodash.isequalwith_4.4.0.tgz"; - path = fetchurl { - name = "lodash.isequalwith___lodash.isequalwith_4.4.0.tgz"; - url = "https://registry.yarnpkg.com/lodash.isequalwith/-/lodash.isequalwith-4.4.0.tgz"; - sha1 = "Jmcm3dUo+FTyH06pigZWBuD7xrA="; - }; - } - { - name = "lodash.memoize___lodash.memoize_4.1.2.tgz"; - path = fetchurl { - name = "lodash.memoize___lodash.memoize_4.1.2.tgz"; - url = "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz"; - sha1 = "vMbEmkKihA7Zl/Mj6tpezRguC/4="; - }; - } - { - name = "lodash.merge___lodash.merge_4.6.2.tgz"; - path = fetchurl { - name = "lodash.merge___lodash.merge_4.6.2.tgz"; - url = "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz"; - sha512 = "0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="; - }; - } - { - name = "lodash.sortby___lodash.sortby_4.7.0.tgz"; - path = fetchurl { - name = "lodash.sortby___lodash.sortby_4.7.0.tgz"; - url = "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz"; - sha512 = "HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA=="; - }; - } - { - name = "lodash.uniq___lodash.uniq_4.5.0.tgz"; - path = fetchurl { - name = "lodash.uniq___lodash.uniq_4.5.0.tgz"; - url = "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz"; - sha1 = "0CJTc662Uq3BvILklFM5qEJ1R3M="; - }; - } - { - name = "lodash___lodash_4.17.21.tgz"; - path = fetchurl { - name = "lodash___lodash_4.17.21.tgz"; - url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz"; - sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="; - }; - } - { - name = "loose_envify___loose_envify_1.4.0.tgz"; - path = fetchurl { - name = "loose_envify___loose_envify_1.4.0.tgz"; - url = "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz"; - sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="; - }; - } - { - name = "lower_case___lower_case_2.0.2.tgz"; - path = fetchurl { - name = "lower_case___lower_case_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz"; - sha512 = "7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg=="; - }; - } - { - name = "lru_cache___lru_cache_6.0.0.tgz"; - path = fetchurl { - name = "lru_cache___lru_cache_6.0.0.tgz"; - url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz"; - sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; - }; - } - { - name = "lz_string___lz_string_1.4.4.tgz"; - path = fetchurl { - name = "lz_string___lz_string_1.4.4.tgz"; - url = "https://registry.yarnpkg.com/lz-string/-/lz-string-1.4.4.tgz"; - sha1 = "wNjq82BZ9wV5bh40SBHPTEmNOiY="; - }; - } - { - name = "magic_string___magic_string_0.25.7.tgz"; - path = fetchurl { - name = "magic_string___magic_string_0.25.7.tgz"; - url = "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz"; - sha512 = "4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA=="; - }; - } - { - name = "make_dir___make_dir_3.1.0.tgz"; - path = fetchurl { - name = "make_dir___make_dir_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz"; - sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="; - }; - } - { - name = "makeerror___makeerror_1.0.12.tgz"; - path = fetchurl { - name = "makeerror___makeerror_1.0.12.tgz"; - url = "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz"; - sha512 = "JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg=="; - }; - } - { - name = "match_sorter___match_sorter_6.3.1.tgz"; - path = fetchurl { - name = "match_sorter___match_sorter_6.3.1.tgz"; - url = "https://registry.yarnpkg.com/match-sorter/-/match-sorter-6.3.1.tgz"; - sha512 = "mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw=="; - }; - } - { - name = "mdn_data___mdn_data_2.0.14.tgz"; - path = fetchurl { - name = "mdn_data___mdn_data_2.0.14.tgz"; - url = "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz"; - sha512 = "dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow=="; - }; - } - { - name = "mdn_data___mdn_data_2.0.4.tgz"; - path = fetchurl { - name = "mdn_data___mdn_data_2.0.4.tgz"; - url = "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz"; - sha512 = "iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA=="; - }; - } - { - name = "media_typer___media_typer_0.3.0.tgz"; - path = fetchurl { - name = "media_typer___media_typer_0.3.0.tgz"; - url = "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz"; - sha1 = "hxDXrwqmJvj/+hzgAWhUUmMlV0g="; - }; - } - { - name = "memfs___memfs_3.4.7.tgz"; - path = fetchurl { - name = "memfs___memfs_3.4.7.tgz"; - url = "https://registry.yarnpkg.com/memfs/-/memfs-3.4.7.tgz"; - sha512 = "ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw=="; - }; - } - { - name = "merge_descriptors___merge_descriptors_1.0.1.tgz"; - path = fetchurl { - name = "merge_descriptors___merge_descriptors_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz"; - sha1 = "sAqqVW3YtEVoFQ7J0blT8/kMu2E="; - }; - } - { - name = "merge_stream___merge_stream_2.0.0.tgz"; - path = fetchurl { - name = "merge_stream___merge_stream_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz"; - sha512 = "abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="; - }; - } - { - name = "merge2___merge2_1.4.1.tgz"; - path = fetchurl { - name = "merge2___merge2_1.4.1.tgz"; - url = "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz"; - sha512 = "8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="; - }; - } - { - name = "methods___methods_1.1.2.tgz"; - path = fetchurl { - name = "methods___methods_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz"; - sha1 = "VSmk1nZUE07cxSZmVoNbD4Ua/O4="; - }; - } - { - name = "micromatch___micromatch_4.0.4.tgz"; - path = fetchurl { - name = "micromatch___micromatch_4.0.4.tgz"; - url = "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz"; - sha512 = "pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg=="; - }; - } - { - name = "micromatch___micromatch_4.0.5.tgz"; - path = fetchurl { - name = "micromatch___micromatch_4.0.5.tgz"; - url = "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz"; - sha512 = "DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA=="; - }; - } - { - name = "microseconds___microseconds_0.2.0.tgz"; - path = fetchurl { - name = "microseconds___microseconds_0.2.0.tgz"; - url = "https://registry.yarnpkg.com/microseconds/-/microseconds-0.2.0.tgz"; - sha512 = "n7DHHMjR1avBbSpsTBj6fmMGh2AGrifVV4e+WYc3Q9lO+xnSZ3NyhcBND3vzzatt05LFhoKFRxrIyklmLlUtyA=="; - }; - } - { - name = "mime_db___mime_db_1.51.0.tgz"; - path = fetchurl { - name = "mime_db___mime_db_1.51.0.tgz"; - url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.51.0.tgz"; - sha512 = "5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g=="; - }; - } - { - name = "mime_db___mime_db_1.52.0.tgz"; - path = fetchurl { - name = "mime_db___mime_db_1.52.0.tgz"; - url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz"; - sha512 = "sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="; - }; - } - { - name = "mime_types___mime_types_2.1.34.tgz"; - path = fetchurl { - name = "mime_types___mime_types_2.1.34.tgz"; - url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.34.tgz"; - sha512 = "6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A=="; - }; - } - { - name = "mime_types___mime_types_2.1.35.tgz"; - path = fetchurl { - name = "mime_types___mime_types_2.1.35.tgz"; - url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz"; - sha512 = "ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="; - }; - } - { - name = "mime___mime_1.6.0.tgz"; - path = fetchurl { - name = "mime___mime_1.6.0.tgz"; - url = "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz"; - sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="; - }; - } - { - name = "mimic_fn___mimic_fn_2.1.0.tgz"; - path = fetchurl { - name = "mimic_fn___mimic_fn_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz"; - sha512 = "OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="; - }; - } - { - name = "min_indent___min_indent_1.0.1.tgz"; - path = fetchurl { - name = "min_indent___min_indent_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz"; - sha512 = "I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg=="; - }; - } - { - name = "mini_create_react_context___mini_create_react_context_0.4.1.tgz"; - path = fetchurl { - name = "mini_create_react_context___mini_create_react_context_0.4.1.tgz"; - url = "https://registry.yarnpkg.com/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz"; - sha512 = "YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ=="; - }; - } - { - name = "mini_css_extract_plugin___mini_css_extract_plugin_2.6.1.tgz"; - path = fetchurl { - name = "mini_css_extract_plugin___mini_css_extract_plugin_2.6.1.tgz"; - url = "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz"; - sha512 = "wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg=="; - }; - } - { - name = "minimalistic_assert___minimalistic_assert_1.0.1.tgz"; - path = fetchurl { - name = "minimalistic_assert___minimalistic_assert_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz"; - sha512 = "UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="; - }; - } - { - name = "minimatch___minimatch_3.0.4.tgz"; - path = fetchurl { - name = "minimatch___minimatch_3.0.4.tgz"; - url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz"; - sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; - }; - } - { - name = "minimatch___minimatch_3.1.2.tgz"; - path = fetchurl { - name = "minimatch___minimatch_3.1.2.tgz"; - url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz"; - sha512 = "J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="; - }; - } - { - name = "minimatch___minimatch_5.1.0.tgz"; - path = fetchurl { - name = "minimatch___minimatch_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.0.tgz"; - sha512 = "9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg=="; - }; - } - { - name = "minimist___minimist_1.2.7.tgz"; - path = fetchurl { - name = "minimist___minimist_1.2.7.tgz"; - url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz"; - sha512 = "bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="; - }; - } - { - name = "mkdirp___mkdirp_0.5.5.tgz"; - path = fetchurl { - name = "mkdirp___mkdirp_0.5.5.tgz"; - url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz"; - sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; - }; - } - { - name = "ms___ms_2.0.0.tgz"; - path = fetchurl { - name = "ms___ms_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz"; - sha1 = "VgiurfwAvmwpAd9fmGF4jeDVl8g="; - }; - } - { - name = "ms___ms_2.1.2.tgz"; - path = fetchurl { - name = "ms___ms_2.1.2.tgz"; - url = "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz"; - sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; - }; - } - { - name = "ms___ms_2.1.3.tgz"; - path = fetchurl { - name = "ms___ms_2.1.3.tgz"; - url = "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz"; - sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; - }; - } - { - name = "multicast_dns___multicast_dns_7.2.5.tgz"; - path = fetchurl { - name = "multicast_dns___multicast_dns_7.2.5.tgz"; - url = "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-7.2.5.tgz"; - sha512 = "2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg=="; - }; - } - { - name = "nano_time___nano_time_1.0.0.tgz"; - path = fetchurl { - name = "nano_time___nano_time_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/nano-time/-/nano-time-1.0.0.tgz"; - sha512 = "flnngywOoQ0lLQOTRNexn2gGSNuM9bKj9RZAWSzhQ+UJYaAFG9bac4DW9VHjUAzrOaIcajHybCTHe/bkvozQqA=="; - }; - } - { - name = "nanoid___nanoid_3.3.4.tgz"; - path = fetchurl { - name = "nanoid___nanoid_3.3.4.tgz"; - url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz"; - sha512 = "MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw=="; - }; - } - { - name = "natural_compare___natural_compare_1.4.0.tgz"; - path = fetchurl { - name = "natural_compare___natural_compare_1.4.0.tgz"; - url = "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz"; - sha1 = "Sr6/7tdUHywnrPspvbvRXI1bpPc="; - }; - } - { - name = "negotiator___negotiator_0.6.2.tgz"; - path = fetchurl { - name = "negotiator___negotiator_0.6.2.tgz"; - url = "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz"; - sha512 = "hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw=="; - }; - } - { - name = "negotiator___negotiator_0.6.3.tgz"; - path = fetchurl { - name = "negotiator___negotiator_0.6.3.tgz"; - url = "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz"; - sha512 = "+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="; - }; - } - { - name = "neo_async___neo_async_2.6.2.tgz"; - path = fetchurl { - name = "neo_async___neo_async_2.6.2.tgz"; - url = "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz"; - sha512 = "Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="; - }; - } - { - name = "no_case___no_case_3.0.4.tgz"; - path = fetchurl { - name = "no_case___no_case_3.0.4.tgz"; - url = "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz"; - sha512 = "fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg=="; - }; - } - { - name = "node_fetch___node_fetch_2.6.7.tgz"; - path = fetchurl { - name = "node_fetch___node_fetch_2.6.7.tgz"; - url = "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz"; - sha512 = "ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ=="; - }; - } - { - name = "node_forge___node_forge_1.3.1.tgz"; - path = fetchurl { - name = "node_forge___node_forge_1.3.1.tgz"; - url = "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz"; - sha512 = "dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA=="; - }; - } - { - name = "node_int64___node_int64_0.4.0.tgz"; - path = fetchurl { - name = "node_int64___node_int64_0.4.0.tgz"; - url = "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz"; - sha1 = "h6kGXNs1XTGC2PlM4RGIuCXGijs="; - }; - } - { - name = "node_polyglot___node_polyglot_2.4.2.tgz"; - path = fetchurl { - name = "node_polyglot___node_polyglot_2.4.2.tgz"; - url = "https://registry.yarnpkg.com/node-polyglot/-/node-polyglot-2.4.2.tgz"; - sha512 = "AgTVpQ32BQ5XPI+tFHJ9bCYxWwSLvtmEodX8ooftFhEuyCgBG6ijWulIVb7pH3THigtgvc9uLiPn0IO51KHpkg=="; - }; - } - { - name = "node_releases___node_releases_2.0.1.tgz"; - path = fetchurl { - name = "node_releases___node_releases_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.1.tgz"; - sha512 = "CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA=="; - }; - } - { - name = "node_releases___node_releases_2.0.6.tgz"; - path = fetchurl { - name = "node_releases___node_releases_2.0.6.tgz"; - url = "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz"; - sha512 = "PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg=="; - }; - } - { - name = "normalize_path___normalize_path_3.0.0.tgz"; - path = fetchurl { - name = "normalize_path___normalize_path_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz"; - sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="; - }; - } - { - name = "normalize_range___normalize_range_0.1.2.tgz"; - path = fetchurl { - name = "normalize_range___normalize_range_0.1.2.tgz"; - url = "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz"; - sha1 = "LRDAa9/TEuqXd2laTShDlFa3WUI="; - }; - } - { - name = "normalize_url___normalize_url_6.1.0.tgz"; - path = fetchurl { - name = "normalize_url___normalize_url_6.1.0.tgz"; - url = "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz"; - sha512 = "DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A=="; - }; - } - { - name = "npm_run_path___npm_run_path_4.0.1.tgz"; - path = fetchurl { - name = "npm_run_path___npm_run_path_4.0.1.tgz"; - url = "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz"; - sha512 = "S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="; - }; - } - { - name = "nth_check___nth_check_1.0.2.tgz"; - path = fetchurl { - name = "nth_check___nth_check_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz"; - sha512 = "WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg=="; - }; - } - { - name = "nth_check___nth_check_2.0.1.tgz"; - path = fetchurl { - name = "nth_check___nth_check_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.1.tgz"; - sha512 = "it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w=="; - }; - } - { - name = "nwsapi___nwsapi_2.2.0.tgz"; - path = fetchurl { - name = "nwsapi___nwsapi_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz"; - sha512 = "h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ=="; - }; - } - { - name = "object_assign___object_assign_4.1.1.tgz"; - path = fetchurl { - name = "object_assign___object_assign_4.1.1.tgz"; - url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz"; - sha1 = "IQmtx5ZYh8/AXLvUQsrIv7s2CGM="; - }; - } - { - name = "object_hash___object_hash_3.0.0.tgz"; - path = fetchurl { - name = "object_hash___object_hash_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz"; - sha512 = "RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw=="; - }; - } - { - name = "object_inspect___object_inspect_1.11.1.tgz"; - path = fetchurl { - name = "object_inspect___object_inspect_1.11.1.tgz"; - url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.1.tgz"; - sha512 = "If7BjFlpkzzBeV1cqgT3OSWT3azyoxDGajR+iGnFBfVV2EWyDyWaZZW2ERDjUaY2QM8i5jI3Sj7mhsM4DDAqWA=="; - }; - } - { - name = "object_inspect___object_inspect_1.12.2.tgz"; - path = fetchurl { - name = "object_inspect___object_inspect_1.12.2.tgz"; - url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz"; - sha512 = "z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ=="; - }; - } - { - name = "object_keys___object_keys_1.1.1.tgz"; - path = fetchurl { - name = "object_keys___object_keys_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz"; - sha512 = "NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="; - }; - } - { - name = "object.assign___object.assign_4.1.2.tgz"; - path = fetchurl { - name = "object.assign___object.assign_4.1.2.tgz"; - url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz"; - sha512 = "ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ=="; - }; - } - { - name = "object.entries___object.entries_1.1.5.tgz"; - path = fetchurl { - name = "object.entries___object.entries_1.1.5.tgz"; - url = "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz"; - sha512 = "TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g=="; - }; - } - { - name = "object.fromentries___object.fromentries_2.0.5.tgz"; - path = fetchurl { - name = "object.fromentries___object.fromentries_2.0.5.tgz"; - url = "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz"; - sha512 = "CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw=="; - }; - } - { - name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.3.tgz"; - path = fetchurl { - name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.3.tgz"; - url = "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz"; - sha512 = "VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw=="; - }; - } - { - name = "object.hasown___object.hasown_1.1.1.tgz"; - path = fetchurl { - name = "object.hasown___object.hasown_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.1.tgz"; - sha512 = "LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A=="; - }; - } - { - name = "object.values___object.values_1.1.5.tgz"; - path = fetchurl { - name = "object.values___object.values_1.1.5.tgz"; - url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz"; - sha512 = "QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg=="; - }; - } - { - name = "oblivious_set___oblivious_set_1.0.0.tgz"; - path = fetchurl { - name = "oblivious_set___oblivious_set_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/oblivious-set/-/oblivious-set-1.0.0.tgz"; - sha512 = "z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw=="; - }; - } - { - name = "obuf___obuf_1.1.2.tgz"; - path = fetchurl { - name = "obuf___obuf_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz"; - sha512 = "PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg=="; - }; - } - { - name = "on_finished___on_finished_2.4.1.tgz"; - path = fetchurl { - name = "on_finished___on_finished_2.4.1.tgz"; - url = "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz"; - sha512 = "oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg=="; - }; - } - { - name = "on_headers___on_headers_1.0.2.tgz"; - path = fetchurl { - name = "on_headers___on_headers_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz"; - sha512 = "pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA=="; - }; - } - { - name = "once___once_1.4.0.tgz"; - path = fetchurl { - name = "once___once_1.4.0.tgz"; - url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz"; - sha1 = "WDsap3WWHUsROsF9nFC6753Xa9E="; - }; - } - { - name = "onetime___onetime_5.1.2.tgz"; - path = fetchurl { - name = "onetime___onetime_5.1.2.tgz"; - url = "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz"; - sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="; - }; - } - { - name = "open___open_8.4.0.tgz"; - path = fetchurl { - name = "open___open_8.4.0.tgz"; - url = "https://registry.yarnpkg.com/open/-/open-8.4.0.tgz"; - sha512 = "XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q=="; - }; - } - { - name = "optionator___optionator_0.8.3.tgz"; - path = fetchurl { - name = "optionator___optionator_0.8.3.tgz"; - url = "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz"; - sha512 = "+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA=="; - }; - } - { - name = "optionator___optionator_0.9.1.tgz"; - path = fetchurl { - name = "optionator___optionator_0.9.1.tgz"; - url = "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz"; - sha512 = "74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw=="; - }; - } - { - name = "p_limit___p_limit_1.3.0.tgz"; - path = fetchurl { - name = "p_limit___p_limit_1.3.0.tgz"; - url = "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz"; - sha512 = "vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q=="; - }; - } - { - name = "p_limit___p_limit_2.3.0.tgz"; - path = fetchurl { - name = "p_limit___p_limit_2.3.0.tgz"; - url = "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz"; - sha512 = "//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="; - }; - } - { - name = "p_limit___p_limit_3.1.0.tgz"; - path = fetchurl { - name = "p_limit___p_limit_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz"; - sha512 = "TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="; - }; - } - { - name = "p_locate___p_locate_2.0.0.tgz"; - path = fetchurl { - name = "p_locate___p_locate_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz"; - sha1 = "IKAQOyIqcMj9OcwuWAaA893l7EM="; - }; - } - { - name = "p_locate___p_locate_3.0.0.tgz"; - path = fetchurl { - name = "p_locate___p_locate_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz"; - sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ=="; - }; - } - { - name = "p_locate___p_locate_4.1.0.tgz"; - path = fetchurl { - name = "p_locate___p_locate_4.1.0.tgz"; - url = "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz"; - sha512 = "R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="; - }; - } - { - name = "p_locate___p_locate_5.0.0.tgz"; - path = fetchurl { - name = "p_locate___p_locate_5.0.0.tgz"; - url = "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz"; - sha512 = "LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="; - }; - } - { - name = "p_retry___p_retry_4.6.2.tgz"; - path = fetchurl { - name = "p_retry___p_retry_4.6.2.tgz"; - url = "https://registry.yarnpkg.com/p-retry/-/p-retry-4.6.2.tgz"; - sha512 = "312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ=="; - }; - } - { - name = "p_try___p_try_1.0.0.tgz"; - path = fetchurl { - name = "p_try___p_try_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz"; - sha1 = "y8ec26+P1CKOE/Yh8rGiN8GyB7M="; - }; - } - { - name = "p_try___p_try_2.2.0.tgz"; - path = fetchurl { - name = "p_try___p_try_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz"; - sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="; - }; - } - { - name = "papaparse___papaparse_5.3.1.tgz"; - path = fetchurl { - name = "papaparse___papaparse_5.3.1.tgz"; - url = "https://registry.yarnpkg.com/papaparse/-/papaparse-5.3.1.tgz"; - sha512 = "Dbt2yjLJrCwH2sRqKFFJaN5XgIASO9YOFeFP8rIBRG2Ain8mqk5r1M6DkfvqEVozVcz3r3HaUGw253hA1nLIcA=="; - }; - } - { - name = "param_case___param_case_3.0.4.tgz"; - path = fetchurl { - name = "param_case___param_case_3.0.4.tgz"; - url = "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz"; - sha512 = "RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A=="; - }; - } - { - name = "parent_module___parent_module_1.0.1.tgz"; - path = fetchurl { - name = "parent_module___parent_module_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz"; - sha512 = "GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="; - }; - } - { - name = "parse_json___parse_json_5.2.0.tgz"; - path = fetchurl { - name = "parse_json___parse_json_5.2.0.tgz"; - url = "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz"; - sha512 = "ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="; - }; - } - { - name = "parse5___parse5_6.0.1.tgz"; - path = fetchurl { - name = "parse5___parse5_6.0.1.tgz"; - url = "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz"; - sha512 = "Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw=="; - }; - } - { - name = "parseurl___parseurl_1.3.3.tgz"; - path = fetchurl { - name = "parseurl___parseurl_1.3.3.tgz"; - url = "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz"; - sha512 = "CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="; - }; - } - { - name = "pascal_case___pascal_case_3.1.2.tgz"; - path = fetchurl { - name = "pascal_case___pascal_case_3.1.2.tgz"; - url = "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz"; - sha512 = "uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g=="; - }; - } - { - name = "path_exists___path_exists_3.0.0.tgz"; - path = fetchurl { - name = "path_exists___path_exists_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz"; - sha1 = "zg6+ql94yxiSXqfYENe1mwEP1RU="; - }; - } - { - name = "path_exists___path_exists_4.0.0.tgz"; - path = fetchurl { - name = "path_exists___path_exists_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz"; - sha512 = "ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="; - }; - } - { - name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; - path = fetchurl { - name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; - sha1 = "F0uSaHNVNP+8es5r9TpanhtcX18="; - }; - } - { - name = "path_key___path_key_3.1.1.tgz"; - path = fetchurl { - name = "path_key___path_key_3.1.1.tgz"; - url = "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz"; - sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="; - }; - } - { - name = "path_parse___path_parse_1.0.7.tgz"; - path = fetchurl { - name = "path_parse___path_parse_1.0.7.tgz"; - url = "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz"; - sha512 = "LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="; - }; - } - { - name = "path_to_regexp___path_to_regexp_0.1.7.tgz"; - path = fetchurl { - name = "path_to_regexp___path_to_regexp_0.1.7.tgz"; - url = "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz"; - sha1 = "32BBeABfUi8V60SQ5yR6G/qmf4w="; - }; - } - { - name = "path_to_regexp___path_to_regexp_1.8.0.tgz"; - path = fetchurl { - name = "path_to_regexp___path_to_regexp_1.8.0.tgz"; - url = "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz"; - sha512 = "n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA=="; - }; - } - { - name = "path_type___path_type_4.0.0.tgz"; - path = fetchurl { - name = "path_type___path_type_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz"; - sha512 = "gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="; - }; - } - { - name = "performance_now___performance_now_2.1.0.tgz"; - path = fetchurl { - name = "performance_now___performance_now_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz"; - sha1 = "Ywn04OX6kT7BxpMHrjZLSzd8nns="; - }; - } - { - name = "picocolors___picocolors_0.2.1.tgz"; - path = fetchurl { - name = "picocolors___picocolors_0.2.1.tgz"; - url = "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz"; - sha512 = "cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA=="; - }; - } - { - name = "picocolors___picocolors_1.0.0.tgz"; - path = fetchurl { - name = "picocolors___picocolors_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz"; - sha512 = "1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="; - }; - } - { - name = "picomatch___picomatch_2.3.0.tgz"; - path = fetchurl { - name = "picomatch___picomatch_2.3.0.tgz"; - url = "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz"; - sha512 = "lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw=="; - }; - } - { - name = "picomatch___picomatch_2.3.1.tgz"; - path = fetchurl { - name = "picomatch___picomatch_2.3.1.tgz"; - url = "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz"; - sha512 = "JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="; - }; - } - { - name = "pify___pify_2.3.0.tgz"; - path = fetchurl { - name = "pify___pify_2.3.0.tgz"; - url = "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz"; - sha512 = "udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog=="; - }; - } - { - name = "pirates___pirates_4.0.5.tgz"; - path = fetchurl { - name = "pirates___pirates_4.0.5.tgz"; - url = "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz"; - sha512 = "8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ=="; - }; - } - { - name = "pkg_dir___pkg_dir_4.2.0.tgz"; - path = fetchurl { - name = "pkg_dir___pkg_dir_4.2.0.tgz"; - url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz"; - sha512 = "HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ=="; - }; - } - { - name = "pkg_up___pkg_up_3.1.0.tgz"; - path = fetchurl { - name = "pkg_up___pkg_up_3.1.0.tgz"; - url = "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz"; - sha512 = "nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA=="; - }; - } - { - name = "popper.js___popper.js_1.16.1_lts.tgz"; - path = fetchurl { - name = "popper.js___popper.js_1.16.1_lts.tgz"; - url = "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1-lts.tgz"; - sha512 = "Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA=="; - }; - } - { - name = "postcss_attribute_case_insensitive___postcss_attribute_case_insensitive_5.0.2.tgz"; - path = fetchurl { - name = "postcss_attribute_case_insensitive___postcss_attribute_case_insensitive_5.0.2.tgz"; - url = "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz"; - sha512 = "XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ=="; - }; - } - { - name = "postcss_browser_comments___postcss_browser_comments_4.0.0.tgz"; - path = fetchurl { - name = "postcss_browser_comments___postcss_browser_comments_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz"; - sha512 = "X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg=="; - }; - } - { - name = "postcss_calc___postcss_calc_8.2.4.tgz"; - path = fetchurl { - name = "postcss_calc___postcss_calc_8.2.4.tgz"; - url = "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.2.4.tgz"; - sha512 = "SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q=="; - }; - } - { - name = "postcss_clamp___postcss_clamp_4.1.0.tgz"; - path = fetchurl { - name = "postcss_clamp___postcss_clamp_4.1.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-clamp/-/postcss-clamp-4.1.0.tgz"; - sha512 = "ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow=="; - }; - } - { - name = "postcss_color_functional_notation___postcss_color_functional_notation_4.2.4.tgz"; - path = fetchurl { - name = "postcss_color_functional_notation___postcss_color_functional_notation_4.2.4.tgz"; - url = "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz"; - sha512 = "2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg=="; - }; - } - { - name = "postcss_color_hex_alpha___postcss_color_hex_alpha_8.0.4.tgz"; - path = fetchurl { - name = "postcss_color_hex_alpha___postcss_color_hex_alpha_8.0.4.tgz"; - url = "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz"; - sha512 = "nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ=="; - }; - } - { - name = "postcss_color_rebeccapurple___postcss_color_rebeccapurple_7.1.1.tgz"; - path = fetchurl { - name = "postcss_color_rebeccapurple___postcss_color_rebeccapurple_7.1.1.tgz"; - url = "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz"; - sha512 = "pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg=="; - }; - } - { - name = "postcss_colormin___postcss_colormin_5.3.0.tgz"; - path = fetchurl { - name = "postcss_colormin___postcss_colormin_5.3.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.0.tgz"; - sha512 = "WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg=="; - }; - } - { - name = "postcss_convert_values___postcss_convert_values_5.1.2.tgz"; - path = fetchurl { - name = "postcss_convert_values___postcss_convert_values_5.1.2.tgz"; - url = "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.2.tgz"; - sha512 = "c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g=="; - }; - } - { - name = "postcss_custom_media___postcss_custom_media_8.0.2.tgz"; - path = fetchurl { - name = "postcss_custom_media___postcss_custom_media_8.0.2.tgz"; - url = "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz"; - sha512 = "7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg=="; - }; - } - { - name = "postcss_custom_properties___postcss_custom_properties_12.1.8.tgz"; - path = fetchurl { - name = "postcss_custom_properties___postcss_custom_properties_12.1.8.tgz"; - url = "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-12.1.8.tgz"; - sha512 = "8rbj8kVu00RQh2fQF81oBqtduiANu4MIxhyf0HbbStgPtnFlWn0yiaYTpLHrPnJbffVY1s9apWsIoVZcc68FxA=="; - }; - } - { - name = "postcss_custom_selectors___postcss_custom_selectors_6.0.3.tgz"; - path = fetchurl { - name = "postcss_custom_selectors___postcss_custom_selectors_6.0.3.tgz"; - url = "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz"; - sha512 = "fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg=="; - }; - } - { - name = "postcss_dir_pseudo_class___postcss_dir_pseudo_class_6.0.5.tgz"; - path = fetchurl { - name = "postcss_dir_pseudo_class___postcss_dir_pseudo_class_6.0.5.tgz"; - url = "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz"; - sha512 = "eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA=="; - }; - } - { - name = "postcss_discard_comments___postcss_discard_comments_5.1.2.tgz"; - path = fetchurl { - name = "postcss_discard_comments___postcss_discard_comments_5.1.2.tgz"; - url = "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz"; - sha512 = "+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ=="; - }; - } - { - name = "postcss_discard_duplicates___postcss_discard_duplicates_5.1.0.tgz"; - path = fetchurl { - name = "postcss_discard_duplicates___postcss_discard_duplicates_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz"; - sha512 = "zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw=="; - }; - } - { - name = "postcss_discard_empty___postcss_discard_empty_5.1.1.tgz"; - path = fetchurl { - name = "postcss_discard_empty___postcss_discard_empty_5.1.1.tgz"; - url = "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz"; - sha512 = "zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A=="; - }; - } - { - name = "postcss_discard_overridden___postcss_discard_overridden_5.1.0.tgz"; - path = fetchurl { - name = "postcss_discard_overridden___postcss_discard_overridden_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz"; - sha512 = "21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw=="; - }; - } - { - name = "postcss_double_position_gradients___postcss_double_position_gradients_3.1.2.tgz"; - path = fetchurl { - name = "postcss_double_position_gradients___postcss_double_position_gradients_3.1.2.tgz"; - url = "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz"; - sha512 = "GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ=="; - }; - } - { - name = "postcss_env_function___postcss_env_function_4.0.6.tgz"; - path = fetchurl { - name = "postcss_env_function___postcss_env_function_4.0.6.tgz"; - url = "https://registry.yarnpkg.com/postcss-env-function/-/postcss-env-function-4.0.6.tgz"; - sha512 = "kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA=="; - }; - } - { - name = "postcss_flexbugs_fixes___postcss_flexbugs_fixes_5.0.2.tgz"; - path = fetchurl { - name = "postcss_flexbugs_fixes___postcss_flexbugs_fixes_5.0.2.tgz"; - url = "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz"; - sha512 = "18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ=="; - }; - } - { - name = "postcss_focus_visible___postcss_focus_visible_6.0.4.tgz"; - path = fetchurl { - name = "postcss_focus_visible___postcss_focus_visible_6.0.4.tgz"; - url = "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz"; - sha512 = "QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw=="; - }; - } - { - name = "postcss_focus_within___postcss_focus_within_5.0.4.tgz"; - path = fetchurl { - name = "postcss_focus_within___postcss_focus_within_5.0.4.tgz"; - url = "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz"; - sha512 = "vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ=="; - }; - } - { - name = "postcss_font_variant___postcss_font_variant_5.0.0.tgz"; - path = fetchurl { - name = "postcss_font_variant___postcss_font_variant_5.0.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz"; - sha512 = "1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA=="; - }; - } - { - name = "postcss_gap_properties___postcss_gap_properties_3.0.5.tgz"; - path = fetchurl { - name = "postcss_gap_properties___postcss_gap_properties_3.0.5.tgz"; - url = "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz"; - sha512 = "IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg=="; - }; - } - { - name = "postcss_image_set_function___postcss_image_set_function_4.0.7.tgz"; - path = fetchurl { - name = "postcss_image_set_function___postcss_image_set_function_4.0.7.tgz"; - url = "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz"; - sha512 = "9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw=="; - }; - } - { - name = "postcss_import___postcss_import_14.1.0.tgz"; - path = fetchurl { - name = "postcss_import___postcss_import_14.1.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-import/-/postcss-import-14.1.0.tgz"; - sha512 = "flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw=="; - }; - } - { - name = "postcss_initial___postcss_initial_4.0.1.tgz"; - path = fetchurl { - name = "postcss_initial___postcss_initial_4.0.1.tgz"; - url = "https://registry.yarnpkg.com/postcss-initial/-/postcss-initial-4.0.1.tgz"; - sha512 = "0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ=="; - }; - } - { - name = "postcss_js___postcss_js_4.0.0.tgz"; - path = fetchurl { - name = "postcss_js___postcss_js_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.0.tgz"; - sha512 = "77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ=="; - }; - } - { - name = "postcss_lab_function___postcss_lab_function_4.2.1.tgz"; - path = fetchurl { - name = "postcss_lab_function___postcss_lab_function_4.2.1.tgz"; - url = "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz"; - sha512 = "xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w=="; - }; - } - { - name = "postcss_load_config___postcss_load_config_3.1.4.tgz"; - path = fetchurl { - name = "postcss_load_config___postcss_load_config_3.1.4.tgz"; - url = "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz"; - sha512 = "6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg=="; - }; - } - { - name = "postcss_loader___postcss_loader_6.2.1.tgz"; - path = fetchurl { - name = "postcss_loader___postcss_loader_6.2.1.tgz"; - url = "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-6.2.1.tgz"; - sha512 = "WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q=="; - }; - } - { - name = "postcss_logical___postcss_logical_5.0.4.tgz"; - path = fetchurl { - name = "postcss_logical___postcss_logical_5.0.4.tgz"; - url = "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-5.0.4.tgz"; - sha512 = "RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g=="; - }; - } - { - name = "postcss_media_minmax___postcss_media_minmax_5.0.0.tgz"; - path = fetchurl { - name = "postcss_media_minmax___postcss_media_minmax_5.0.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz"; - sha512 = "yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ=="; - }; - } - { - name = "postcss_merge_longhand___postcss_merge_longhand_5.1.6.tgz"; - path = fetchurl { - name = "postcss_merge_longhand___postcss_merge_longhand_5.1.6.tgz"; - url = "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.1.6.tgz"; - sha512 = "6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw=="; - }; - } - { - name = "postcss_merge_rules___postcss_merge_rules_5.1.2.tgz"; - path = fetchurl { - name = "postcss_merge_rules___postcss_merge_rules_5.1.2.tgz"; - url = "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.2.tgz"; - sha512 = "zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ=="; - }; - } - { - name = "postcss_minify_font_values___postcss_minify_font_values_5.1.0.tgz"; - path = fetchurl { - name = "postcss_minify_font_values___postcss_minify_font_values_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz"; - sha512 = "el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA=="; - }; - } - { - name = "postcss_minify_gradients___postcss_minify_gradients_5.1.1.tgz"; - path = fetchurl { - name = "postcss_minify_gradients___postcss_minify_gradients_5.1.1.tgz"; - url = "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz"; - sha512 = "VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw=="; - }; - } - { - name = "postcss_minify_params___postcss_minify_params_5.1.3.tgz"; - path = fetchurl { - name = "postcss_minify_params___postcss_minify_params_5.1.3.tgz"; - url = "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.1.3.tgz"; - sha512 = "bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg=="; - }; - } - { - name = "postcss_minify_selectors___postcss_minify_selectors_5.2.1.tgz"; - path = fetchurl { - name = "postcss_minify_selectors___postcss_minify_selectors_5.2.1.tgz"; - url = "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz"; - sha512 = "nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg=="; - }; - } - { - name = "postcss_modules_extract_imports___postcss_modules_extract_imports_3.0.0.tgz"; - path = fetchurl { - name = "postcss_modules_extract_imports___postcss_modules_extract_imports_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz"; - sha512 = "bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw=="; - }; - } - { - name = "postcss_modules_local_by_default___postcss_modules_local_by_default_4.0.0.tgz"; - path = fetchurl { - name = "postcss_modules_local_by_default___postcss_modules_local_by_default_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz"; - sha512 = "sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ=="; - }; - } - { - name = "postcss_modules_scope___postcss_modules_scope_3.0.0.tgz"; - path = fetchurl { - name = "postcss_modules_scope___postcss_modules_scope_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz"; - sha512 = "hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg=="; - }; - } - { - name = "postcss_modules_values___postcss_modules_values_4.0.0.tgz"; - path = fetchurl { - name = "postcss_modules_values___postcss_modules_values_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz"; - sha512 = "RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ=="; - }; - } - { - name = "postcss_nested___postcss_nested_5.0.6.tgz"; - path = fetchurl { - name = "postcss_nested___postcss_nested_5.0.6.tgz"; - url = "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-5.0.6.tgz"; - sha512 = "rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA=="; - }; - } - { - name = "postcss_nesting___postcss_nesting_10.1.10.tgz"; - path = fetchurl { - name = "postcss_nesting___postcss_nesting_10.1.10.tgz"; - url = "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-10.1.10.tgz"; - sha512 = "lqd7LXCq0gWc0wKXtoKDru5wEUNjm3OryLVNRZ8OnW8km6fSNUuFrjEhU3nklxXE2jvd4qrox566acgh+xQt8w=="; - }; - } - { - name = "postcss_normalize_charset___postcss_normalize_charset_5.1.0.tgz"; - path = fetchurl { - name = "postcss_normalize_charset___postcss_normalize_charset_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz"; - sha512 = "mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg=="; - }; - } - { - name = "postcss_normalize_display_values___postcss_normalize_display_values_5.1.0.tgz"; - path = fetchurl { - name = "postcss_normalize_display_values___postcss_normalize_display_values_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz"; - sha512 = "WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA=="; - }; - } - { - name = "postcss_normalize_positions___postcss_normalize_positions_5.1.1.tgz"; - path = fetchurl { - name = "postcss_normalize_positions___postcss_normalize_positions_5.1.1.tgz"; - url = "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz"; - sha512 = "6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg=="; - }; - } - { - name = "postcss_normalize_repeat_style___postcss_normalize_repeat_style_5.1.1.tgz"; - path = fetchurl { - name = "postcss_normalize_repeat_style___postcss_normalize_repeat_style_5.1.1.tgz"; - url = "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz"; - sha512 = "mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g=="; - }; - } - { - name = "postcss_normalize_string___postcss_normalize_string_5.1.0.tgz"; - path = fetchurl { - name = "postcss_normalize_string___postcss_normalize_string_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz"; - sha512 = "oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w=="; - }; - } - { - name = "postcss_normalize_timing_functions___postcss_normalize_timing_functions_5.1.0.tgz"; - path = fetchurl { - name = "postcss_normalize_timing_functions___postcss_normalize_timing_functions_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz"; - sha512 = "DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg=="; - }; - } - { - name = "postcss_normalize_unicode___postcss_normalize_unicode_5.1.0.tgz"; - path = fetchurl { - name = "postcss_normalize_unicode___postcss_normalize_unicode_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.0.tgz"; - sha512 = "J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ=="; - }; - } - { - name = "postcss_normalize_url___postcss_normalize_url_5.1.0.tgz"; - path = fetchurl { - name = "postcss_normalize_url___postcss_normalize_url_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz"; - sha512 = "5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew=="; - }; - } - { - name = "postcss_normalize_whitespace___postcss_normalize_whitespace_5.1.1.tgz"; - path = fetchurl { - name = "postcss_normalize_whitespace___postcss_normalize_whitespace_5.1.1.tgz"; - url = "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz"; - sha512 = "83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA=="; - }; - } - { - name = "postcss_normalize___postcss_normalize_10.0.1.tgz"; - path = fetchurl { - name = "postcss_normalize___postcss_normalize_10.0.1.tgz"; - url = "https://registry.yarnpkg.com/postcss-normalize/-/postcss-normalize-10.0.1.tgz"; - sha512 = "+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA=="; - }; - } - { - name = "postcss_opacity_percentage___postcss_opacity_percentage_1.1.2.tgz"; - path = fetchurl { - name = "postcss_opacity_percentage___postcss_opacity_percentage_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.2.tgz"; - sha512 = "lyUfF7miG+yewZ8EAk9XUBIlrHyUE6fijnesuz+Mj5zrIHIEw6KcIZSOk/elVMqzLvREmXB83Zi/5QpNRYd47w=="; - }; - } - { - name = "postcss_ordered_values___postcss_ordered_values_5.1.3.tgz"; - path = fetchurl { - name = "postcss_ordered_values___postcss_ordered_values_5.1.3.tgz"; - url = "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz"; - sha512 = "9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ=="; - }; - } - { - name = "postcss_overflow_shorthand___postcss_overflow_shorthand_3.0.4.tgz"; - path = fetchurl { - name = "postcss_overflow_shorthand___postcss_overflow_shorthand_3.0.4.tgz"; - url = "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz"; - sha512 = "otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A=="; - }; - } - { - name = "postcss_page_break___postcss_page_break_3.0.4.tgz"; - path = fetchurl { - name = "postcss_page_break___postcss_page_break_3.0.4.tgz"; - url = "https://registry.yarnpkg.com/postcss-page-break/-/postcss-page-break-3.0.4.tgz"; - sha512 = "1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ=="; - }; - } - { - name = "postcss_place___postcss_place_7.0.5.tgz"; - path = fetchurl { - name = "postcss_place___postcss_place_7.0.5.tgz"; - url = "https://registry.yarnpkg.com/postcss-place/-/postcss-place-7.0.5.tgz"; - sha512 = "wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g=="; - }; - } - { - name = "postcss_preset_env___postcss_preset_env_7.7.2.tgz"; - path = fetchurl { - name = "postcss_preset_env___postcss_preset_env_7.7.2.tgz"; - url = "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-7.7.2.tgz"; - sha512 = "1q0ih7EDsZmCb/FMDRvosna7Gsbdx8CvYO5hYT120hcp2ZAuOHpSzibujZ4JpIUcAC02PG6b+eftxqjTFh5BNA=="; - }; - } - { - name = "postcss_pseudo_class_any_link___postcss_pseudo_class_any_link_7.1.6.tgz"; - path = fetchurl { - name = "postcss_pseudo_class_any_link___postcss_pseudo_class_any_link_7.1.6.tgz"; - url = "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz"; - sha512 = "9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w=="; - }; - } - { - name = "postcss_reduce_initial___postcss_reduce_initial_5.1.0.tgz"; - path = fetchurl { - name = "postcss_reduce_initial___postcss_reduce_initial_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.0.tgz"; - sha512 = "5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw=="; - }; - } - { - name = "postcss_reduce_transforms___postcss_reduce_transforms_5.1.0.tgz"; - path = fetchurl { - name = "postcss_reduce_transforms___postcss_reduce_transforms_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz"; - sha512 = "2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ=="; - }; - } - { - name = "postcss_replace_overflow_wrap___postcss_replace_overflow_wrap_4.0.0.tgz"; - path = fetchurl { - name = "postcss_replace_overflow_wrap___postcss_replace_overflow_wrap_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz"; - sha512 = "KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw=="; - }; - } - { - name = "postcss_selector_not___postcss_selector_not_6.0.1.tgz"; - path = fetchurl { - name = "postcss_selector_not___postcss_selector_not_6.0.1.tgz"; - url = "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz"; - sha512 = "1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ=="; - }; - } - { - name = "postcss_selector_parser___postcss_selector_parser_6.0.10.tgz"; - path = fetchurl { - name = "postcss_selector_parser___postcss_selector_parser_6.0.10.tgz"; - url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz"; - sha512 = "IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w=="; - }; - } - { - name = "postcss_selector_parser___postcss_selector_parser_6.0.7.tgz"; - path = fetchurl { - name = "postcss_selector_parser___postcss_selector_parser_6.0.7.tgz"; - url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.7.tgz"; - sha512 = "U+b/Deoi4I/UmE6KOVPpnhS7I7AYdKbhGcat+qTQ27gycvaACvNEw11ba6RrkwVmDVRW7sigWgLj4/KbbJjeDA=="; - }; - } - { - name = "postcss_svgo___postcss_svgo_5.1.0.tgz"; - path = fetchurl { - name = "postcss_svgo___postcss_svgo_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.1.0.tgz"; - sha512 = "D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA=="; - }; - } - { - name = "postcss_unique_selectors___postcss_unique_selectors_5.1.1.tgz"; - path = fetchurl { - name = "postcss_unique_selectors___postcss_unique_selectors_5.1.1.tgz"; - url = "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz"; - sha512 = "5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA=="; - }; - } - { - name = "postcss_value_parser___postcss_value_parser_4.2.0.tgz"; - path = fetchurl { - name = "postcss_value_parser___postcss_value_parser_4.2.0.tgz"; - url = "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz"; - sha512 = "1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="; - }; - } - { - name = "postcss___postcss_7.0.39.tgz"; - path = fetchurl { - name = "postcss___postcss_7.0.39.tgz"; - url = "https://registry.yarnpkg.com/postcss/-/postcss-7.0.39.tgz"; - sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; - }; - } - { - name = "postcss___postcss_8.4.14.tgz"; - path = fetchurl { - name = "postcss___postcss_8.4.14.tgz"; - url = "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz"; - sha512 = "E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig=="; - }; - } - { - name = "prelude_ls___prelude_ls_1.2.1.tgz"; - path = fetchurl { - name = "prelude_ls___prelude_ls_1.2.1.tgz"; - url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz"; - sha512 = "vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="; - }; - } - { - name = "prelude_ls___prelude_ls_1.1.2.tgz"; - path = fetchurl { - name = "prelude_ls___prelude_ls_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz"; - sha1 = "IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ="; - }; - } - { - name = "prettier_linter_helpers___prettier_linter_helpers_1.0.0.tgz"; - path = fetchurl { - name = "prettier_linter_helpers___prettier_linter_helpers_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz"; - sha512 = "GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w=="; - }; - } - { - name = "prettier___prettier_2.5.1.tgz"; - path = fetchurl { - name = "prettier___prettier_2.5.1.tgz"; - url = "https://registry.yarnpkg.com/prettier/-/prettier-2.5.1.tgz"; - sha512 = "vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg=="; - }; - } - { - name = "pretty_bytes___pretty_bytes_5.6.0.tgz"; - path = fetchurl { - name = "pretty_bytes___pretty_bytes_5.6.0.tgz"; - url = "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz"; - sha512 = "FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg=="; - }; - } - { - name = "pretty_error___pretty_error_4.0.0.tgz"; - path = fetchurl { - name = "pretty_error___pretty_error_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/pretty-error/-/pretty-error-4.0.0.tgz"; - sha512 = "AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw=="; - }; - } - { - name = "pretty_format___pretty_format_26.6.2.tgz"; - path = fetchurl { - name = "pretty_format___pretty_format_26.6.2.tgz"; - url = "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz"; - sha512 = "7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg=="; - }; - } - { - name = "pretty_format___pretty_format_27.4.2.tgz"; - path = fetchurl { - name = "pretty_format___pretty_format_27.4.2.tgz"; - url = "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.4.2.tgz"; - sha512 = "p0wNtJ9oLuvgOQDEIZ9zQjZffK7KtyR6Si0jnXULIDwrlNF8Cuir3AZP0hHv0jmKuNN/edOnbMjnzd4uTcmWiw=="; - }; - } - { - name = "pretty_format___pretty_format_27.5.1.tgz"; - path = fetchurl { - name = "pretty_format___pretty_format_27.5.1.tgz"; - url = "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz"; - sha512 = "Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ=="; - }; - } - { - name = "pretty_format___pretty_format_28.1.3.tgz"; - path = fetchurl { - name = "pretty_format___pretty_format_28.1.3.tgz"; - url = "https://registry.yarnpkg.com/pretty-format/-/pretty-format-28.1.3.tgz"; - sha512 = "8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q=="; - }; - } - { - name = "process_nextick_args___process_nextick_args_2.0.1.tgz"; - path = fetchurl { - name = "process_nextick_args___process_nextick_args_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; - sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; - }; - } - { - name = "promise_polyfill___promise_polyfill_8.2.1.tgz"; - path = fetchurl { - name = "promise_polyfill___promise_polyfill_8.2.1.tgz"; - url = "https://registry.yarnpkg.com/promise-polyfill/-/promise-polyfill-8.2.1.tgz"; - sha512 = "3p9zj0cEHbp7NVUxEYUWjQlffXqnXaZIMPkAO7HhFh8u5636xLRDHOUo2vpWSK0T2mqm6fKLXYn1KP6PAZ2gKg=="; - }; - } - { - name = "promise___promise_8.1.0.tgz"; - path = fetchurl { - name = "promise___promise_8.1.0.tgz"; - url = "https://registry.yarnpkg.com/promise/-/promise-8.1.0.tgz"; - sha512 = "W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q=="; - }; - } - { - name = "prompts___prompts_2.4.2.tgz"; - path = fetchurl { - name = "prompts___prompts_2.4.2.tgz"; - url = "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz"; - sha512 = "NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q=="; - }; - } - { - name = "prop_types___prop_types_15.7.2.tgz"; - path = fetchurl { - name = "prop_types___prop_types_15.7.2.tgz"; - url = "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz"; - sha512 = "8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ=="; - }; - } - { - name = "prop_types___prop_types_15.8.1.tgz"; - path = fetchurl { - name = "prop_types___prop_types_15.8.1.tgz"; - url = "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz"; - sha512 = "oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg=="; - }; - } - { - name = "proxy_addr___proxy_addr_2.0.7.tgz"; - path = fetchurl { - name = "proxy_addr___proxy_addr_2.0.7.tgz"; - url = "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz"; - sha512 = "llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg=="; - }; - } - { - name = "psl___psl_1.8.0.tgz"; - path = fetchurl { - name = "psl___psl_1.8.0.tgz"; - url = "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz"; - sha512 = "RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ=="; - }; - } - { - name = "punycode___punycode_2.1.1.tgz"; - path = fetchurl { - name = "punycode___punycode_2.1.1.tgz"; - url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz"; - sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; - }; - } - { - name = "q___q_1.5.1.tgz"; - path = fetchurl { - name = "q___q_1.5.1.tgz"; - url = "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz"; - sha1 = "fjL3W0E4EpHQRhHxvxQQmsAGUdc="; - }; - } - { - name = "qs___qs_6.10.3.tgz"; - path = fetchurl { - name = "qs___qs_6.10.3.tgz"; - url = "https://registry.yarnpkg.com/qs/-/qs-6.10.3.tgz"; - sha512 = "wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ=="; - }; - } - { - name = "query_string___query_string_5.1.1.tgz"; - path = fetchurl { - name = "query_string___query_string_5.1.1.tgz"; - url = "https://registry.yarnpkg.com/query-string/-/query-string-5.1.1.tgz"; - sha512 = "gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw=="; - }; - } - { - name = "query_string___query_string_7.1.1.tgz"; - path = fetchurl { - name = "query_string___query_string_7.1.1.tgz"; - url = "https://registry.yarnpkg.com/query-string/-/query-string-7.1.1.tgz"; - sha512 = "MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w=="; - }; - } - { - name = "queue_microtask___queue_microtask_1.2.3.tgz"; - path = fetchurl { - name = "queue_microtask___queue_microtask_1.2.3.tgz"; - url = "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz"; - sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="; - }; - } - { - name = "quick_lru___quick_lru_5.1.1.tgz"; - path = fetchurl { - name = "quick_lru___quick_lru_5.1.1.tgz"; - url = "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz"; - sha512 = "WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA=="; - }; - } - { - name = "ra_core___ra_core_3.19.7.tgz"; - path = fetchurl { - name = "ra_core___ra_core_3.19.7.tgz"; - url = "https://registry.yarnpkg.com/ra-core/-/ra-core-3.19.7.tgz"; - sha512 = "ar85cQ7vtIIrb6Ijj8Om+IkuB4i4uuoMcfvDgLxaNOEyImq+n3osVHi93FkZKpdZAHQ9qKnkN83SODhoRdaGfg=="; - }; - } - { - name = "ra_core___ra_core_4.2.0.tgz"; - path = fetchurl { - name = "ra_core___ra_core_4.2.0.tgz"; - url = "https://registry.yarnpkg.com/ra-core/-/ra-core-4.2.0.tgz"; - sha512 = "m6Ep7W84V/flIWpv/zPVfTqmvwduaxIO8zZlIUoXg1kPXRTSZH/EcO1A1zcvMM/HflWLoJ2LcZ4sE5fz3Je/1w=="; - }; - } - { - name = "ra_i18n_polyglot___ra_i18n_polyglot_3.19.7.tgz"; - path = fetchurl { - name = "ra_i18n_polyglot___ra_i18n_polyglot_3.19.7.tgz"; - url = "https://registry.yarnpkg.com/ra-i18n-polyglot/-/ra-i18n-polyglot-3.19.7.tgz"; - sha512 = "aexuR6laKN2VcgRfxikD3zKZ2zpH3nIY9dkt4oEdpRci15PmxO1feahmM2dzFrswlSjAOQ8J8qi3pa1m7V51xw=="; - }; - } - { - name = "ra_language_chinese___ra_language_chinese_2.0.10.tgz"; - path = fetchurl { - name = "ra_language_chinese___ra_language_chinese_2.0.10.tgz"; - url = "https://registry.yarnpkg.com/ra-language-chinese/-/ra-language-chinese-2.0.10.tgz"; - sha512 = "k+X6XdkBEZnmpKIJZj9Lb77Lj8LCmterilJTj2ovp3i8/H/dLo9IujASfjFypjHnVUpN7Y63LT19kgPrS6+row=="; - }; - } - { - name = "ra_language_english___ra_language_english_3.19.7.tgz"; - path = fetchurl { - name = "ra_language_english___ra_language_english_3.19.7.tgz"; - url = "https://registry.yarnpkg.com/ra-language-english/-/ra-language-english-3.19.7.tgz"; - sha512 = "iqSWXaAOafzrh8uPlJG9Ey1fCCFFnGajynnHlZXh+E10pZ/ZDlIVZDpd7GAY1BxkKh5GPYRqNk+kDxCwXAG3fQ=="; - }; - } - { - name = "ra_language_french___ra_language_french_4.2.0.tgz"; - path = fetchurl { - name = "ra_language_french___ra_language_french_4.2.0.tgz"; - url = "https://registry.yarnpkg.com/ra-language-french/-/ra-language-french-4.2.0.tgz"; - sha512 = "kBDJgMTRet2pHNRZZ/7f+t70ZRXzDZwld6pGO0exP1V+5Grv45K3OWY/jolbmMJKAU34jMYUf/GIaw51Xub0Ag=="; - }; - } - { - name = "ra_language_german___ra_language_german_3.13.5.tgz"; - path = fetchurl { - name = "ra_language_german___ra_language_german_3.13.5.tgz"; - url = "https://registry.yarnpkg.com/ra-language-german/-/ra-language-german-3.13.5.tgz"; - sha512 = "dGWWJbIP5FUp0axoH+7sZj6011IgifEz55FLij3QSBI4ZusDdH/CL3l4oy+srUXFI+IzoXGGtQPJ7ax3p11cLQ=="; - }; - } - { - name = "ra_test___ra_test_3.19.4.tgz"; - path = fetchurl { - name = "ra_test___ra_test_3.19.4.tgz"; - url = "https://registry.yarnpkg.com/ra-test/-/ra-test-3.19.4.tgz"; - sha512 = "a2lP6X2dgyVEZgCuk0uevoa26DvZRPPqwbba2ORJpQ9hllbgjHuz0XlhoNe+cHF4k8buB9O3SurHS2c+s3VL0A=="; - }; - } - { - name = "ra_ui_materialui___ra_ui_materialui_3.19.7.tgz"; - path = fetchurl { - name = "ra_ui_materialui___ra_ui_materialui_3.19.7.tgz"; - url = "https://registry.yarnpkg.com/ra-ui-materialui/-/ra-ui-materialui-3.19.7.tgz"; - sha512 = "Ojuh5hGpwFnKxZldUCc4uTN56QQtkWTU8bqKkp9Jx9bcFhcilBCv5knD+/ApfkrQan2bKTSwR2gS1F5LiC4hAg=="; - }; - } - { - name = "raf___raf_3.4.1.tgz"; - path = fetchurl { - name = "raf___raf_3.4.1.tgz"; - url = "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz"; - sha512 = "Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA=="; - }; - } - { - name = "randombytes___randombytes_2.1.0.tgz"; - path = fetchurl { - name = "randombytes___randombytes_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz"; - sha512 = "vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ=="; - }; - } - { - name = "range_parser___range_parser_1.2.1.tgz"; - path = fetchurl { - name = "range_parser___range_parser_1.2.1.tgz"; - url = "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz"; - sha512 = "Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="; - }; - } - { - name = "raw_body___raw_body_2.5.1.tgz"; - path = fetchurl { - name = "raw_body___raw_body_2.5.1.tgz"; - url = "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz"; - sha512 = "qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig=="; - }; - } - { - name = "react_admin___react_admin_3.19.7.tgz"; - path = fetchurl { - name = "react_admin___react_admin_3.19.7.tgz"; - url = "https://registry.yarnpkg.com/react-admin/-/react-admin-3.19.7.tgz"; - sha512 = "LDNVYlyjVgtYWf1DrfjI+4SLVUFRxZUKhm16zK4iynAmvFQBKpnjg9VnAlaoSb98I0b86GiE0f69f90egmZvNg=="; - }; - } - { - name = "react_app_polyfill___react_app_polyfill_3.0.0.tgz"; - path = fetchurl { - name = "react_app_polyfill___react_app_polyfill_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz"; - sha512 = "sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w=="; - }; - } - { - name = "react_dev_utils___react_dev_utils_12.0.1.tgz"; - path = fetchurl { - name = "react_dev_utils___react_dev_utils_12.0.1.tgz"; - url = "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-12.0.1.tgz"; - sha512 = "84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ=="; - }; - } - { - name = "react_dom___react_dom_17.0.2.tgz"; - path = fetchurl { - name = "react_dom___react_dom_17.0.2.tgz"; - url = "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz"; - sha512 = "s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA=="; - }; - } - { - name = "react_dropzone___react_dropzone_10.2.2.tgz"; - path = fetchurl { - name = "react_dropzone___react_dropzone_10.2.2.tgz"; - url = "https://registry.yarnpkg.com/react-dropzone/-/react-dropzone-10.2.2.tgz"; - sha512 = "U5EKckXVt6IrEyhMMsgmHQiWTGLudhajPPG77KFSvgsMqNEHSyGpqWvOMc5+DhEah/vH4E1n+J5weBNLd5VtyA=="; - }; - } - { - name = "react_error_overlay___react_error_overlay_6.0.11.tgz"; - path = fetchurl { - name = "react_error_overlay___react_error_overlay_6.0.11.tgz"; - url = "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.11.tgz"; - sha512 = "/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg=="; - }; - } - { - name = "react_final_form_arrays___react_final_form_arrays_3.1.3.tgz"; - path = fetchurl { - name = "react_final_form_arrays___react_final_form_arrays_3.1.3.tgz"; - url = "https://registry.yarnpkg.com/react-final-form-arrays/-/react-final-form-arrays-3.1.3.tgz"; - sha512 = "dzBiLfbr9l1YRExARBpJ8uA/djBenCvFrbrsXjd362joDl3vT+WhmMKKr6HDQMJffjA8T4gZ3n5+G9M59yZfuQ=="; - }; - } - { - name = "react_final_form___react_final_form_6.5.7.tgz"; - path = fetchurl { - name = "react_final_form___react_final_form_6.5.7.tgz"; - url = "https://registry.yarnpkg.com/react-final-form/-/react-final-form-6.5.7.tgz"; - sha512 = "o7tvJXB+McGiXOILqIC8lnOcX4aLhIBiF/Xi9Qet35b7XOS8R7KL8HLRKTfnZWQJm6MCE15v1U0SFive0NcxyA=="; - }; - } - { - name = "react_is___react_is_16.13.1.tgz"; - path = fetchurl { - name = "react_is___react_is_16.13.1.tgz"; - url = "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz"; - sha512 = "24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="; - }; - } - { - name = "react_is___react_is_17.0.2.tgz"; - path = fetchurl { - name = "react_is___react_is_17.0.2.tgz"; - url = "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz"; - sha512 = "w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="; - }; - } - { - name = "react_is___react_is_18.2.0.tgz"; - path = fetchurl { - name = "react_is___react_is_18.2.0.tgz"; - url = "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz"; - sha512 = "xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="; - }; - } - { - name = "react_query___react_query_3.39.1.tgz"; - path = fetchurl { - name = "react_query___react_query_3.39.1.tgz"; - url = "https://registry.yarnpkg.com/react-query/-/react-query-3.39.1.tgz"; - sha512 = "qYKT1bavdDiQZbngWZyPotlBVzcBjDYEJg5RQLBa++5Ix5jjfbEYJmHSZRZD+USVHUSvl/ey9Hu+QfF1QAK80A=="; - }; - } - { - name = "react_redux___react_redux_7.2.6.tgz"; - path = fetchurl { - name = "react_redux___react_redux_7.2.6.tgz"; - url = "https://registry.yarnpkg.com/react-redux/-/react-redux-7.2.6.tgz"; - sha512 = "10RPdsz0UUrRL1NZE0ejTkucnclYSgXp5q+tB5SWx2qeG2ZJQJyymgAhwKy73yiL/13btfB6fPr+rgbMAaZIAQ=="; - }; - } - { - name = "react_refresh___react_refresh_0.11.0.tgz"; - path = fetchurl { - name = "react_refresh___react_refresh_0.11.0.tgz"; - url = "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.11.0.tgz"; - sha512 = "F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A=="; - }; - } - { - name = "react_router_dom___react_router_dom_5.3.0.tgz"; - path = fetchurl { - name = "react_router_dom___react_router_dom_5.3.0.tgz"; - url = "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-5.3.0.tgz"; - sha512 = "ObVBLjUZsphUUMVycibxgMdh5jJ1e3o+KpAZBVeHcNQZ4W+uUGGWsokurzlF4YOldQYRQL4y6yFRWM4m3svmuQ=="; - }; - } - { - name = "react_router___react_router_5.2.1.tgz"; - path = fetchurl { - name = "react_router___react_router_5.2.1.tgz"; - url = "https://registry.yarnpkg.com/react-router/-/react-router-5.2.1.tgz"; - sha512 = "lIboRiOtDLFdg1VTemMwud9vRVuOCZmUIT/7lUoZiSpPODiiH1UQlfXy+vPLC/7IWdFYnhRwAyNqA/+I7wnvKQ=="; - }; - } - { - name = "react_scripts___react_scripts_5.0.1.tgz"; - path = fetchurl { - name = "react_scripts___react_scripts_5.0.1.tgz"; - url = "https://registry.yarnpkg.com/react-scripts/-/react-scripts-5.0.1.tgz"; - sha512 = "8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ=="; - }; - } - { - name = "react_transition_group___react_transition_group_4.4.2.tgz"; - path = fetchurl { - name = "react_transition_group___react_transition_group_4.4.2.tgz"; - url = "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.2.tgz"; - sha512 = "/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg=="; - }; - } - { - name = "react___react_17.0.2.tgz"; - path = fetchurl { - name = "react___react_17.0.2.tgz"; - url = "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz"; - sha512 = "gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA=="; - }; - } - { - name = "read_cache___read_cache_1.0.0.tgz"; - path = fetchurl { - name = "read_cache___read_cache_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz"; - sha512 = "Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA=="; - }; - } - { - name = "readable_stream___readable_stream_2.3.7.tgz"; - path = fetchurl { - name = "readable_stream___readable_stream_2.3.7.tgz"; - url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz"; - sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="; - }; - } - { - name = "readable_stream___readable_stream_3.6.0.tgz"; - path = fetchurl { - name = "readable_stream___readable_stream_3.6.0.tgz"; - url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz"; - sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; - }; - } - { - name = "readdirp___readdirp_3.6.0.tgz"; - path = fetchurl { - name = "readdirp___readdirp_3.6.0.tgz"; - url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz"; - sha512 = "hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="; - }; - } - { - name = "recursive_readdir___recursive_readdir_2.2.2.tgz"; - path = fetchurl { - name = "recursive_readdir___recursive_readdir_2.2.2.tgz"; - url = "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz"; - sha512 = "nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg=="; - }; - } - { - name = "redent___redent_3.0.0.tgz"; - path = fetchurl { - name = "redent___redent_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz"; - sha512 = "6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg=="; - }; - } - { - name = "redux_saga___redux_saga_1.1.3.tgz"; - path = fetchurl { - name = "redux_saga___redux_saga_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/redux-saga/-/redux-saga-1.1.3.tgz"; - sha512 = "RkSn/z0mwaSa5/xH/hQLo8gNf4tlvT18qXDNvedihLcfzh+jMchDgaariQoehCpgRltEm4zHKJyINEz6aqswTw=="; - }; - } - { - name = "redux___redux_4.1.2.tgz"; - path = fetchurl { - name = "redux___redux_4.1.2.tgz"; - url = "https://registry.yarnpkg.com/redux/-/redux-4.1.2.tgz"; - sha512 = "SH8PglcebESbd/shgf6mii6EIoRM0zrQyjcuQ+ojmfxjTtE0z9Y8pa62iA/OJ58qjP6j27uyW4kUF4jl/jd6sw=="; - }; - } - { - name = "regenerate_unicode_properties___regenerate_unicode_properties_10.0.1.tgz"; - path = fetchurl { - name = "regenerate_unicode_properties___regenerate_unicode_properties_10.0.1.tgz"; - url = "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz"; - sha512 = "vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw=="; - }; - } - { - name = "regenerate_unicode_properties___regenerate_unicode_properties_9.0.0.tgz"; - path = fetchurl { - name = "regenerate_unicode_properties___regenerate_unicode_properties_9.0.0.tgz"; - url = "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz"; - sha512 = "3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA=="; - }; - } - { - name = "regenerate___regenerate_1.4.2.tgz"; - path = fetchurl { - name = "regenerate___regenerate_1.4.2.tgz"; - url = "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz"; - sha512 = "zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="; - }; - } - { - name = "regenerator_runtime___regenerator_runtime_0.13.11.tgz"; - path = fetchurl { - name = "regenerator_runtime___regenerator_runtime_0.13.11.tgz"; - url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz"; - sha512 = "kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="; - }; - } - { - name = "regenerator_runtime___regenerator_runtime_0.13.9.tgz"; - path = fetchurl { - name = "regenerator_runtime___regenerator_runtime_0.13.9.tgz"; - url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"; - sha512 = "p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="; - }; - } - { - name = "regenerator_transform___regenerator_transform_0.14.5.tgz"; - path = fetchurl { - name = "regenerator_transform___regenerator_transform_0.14.5.tgz"; - url = "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz"; - sha512 = "eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw=="; - }; - } - { - name = "regenerator_transform___regenerator_transform_0.15.0.tgz"; - path = fetchurl { - name = "regenerator_transform___regenerator_transform_0.15.0.tgz"; - url = "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.0.tgz"; - sha512 = "LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg=="; - }; - } - { - name = "regex_parser___regex_parser_2.2.11.tgz"; - path = fetchurl { - name = "regex_parser___regex_parser_2.2.11.tgz"; - url = "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.11.tgz"; - sha512 = "jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q=="; - }; - } - { - name = "regexp.prototype.flags___regexp.prototype.flags_1.3.1.tgz"; - path = fetchurl { - name = "regexp.prototype.flags___regexp.prototype.flags_1.3.1.tgz"; - url = "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz"; - sha512 = "JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA=="; - }; - } - { - name = "regexp.prototype.flags___regexp.prototype.flags_1.4.3.tgz"; - path = fetchurl { - name = "regexp.prototype.flags___regexp.prototype.flags_1.4.3.tgz"; - url = "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz"; - sha512 = "fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA=="; - }; - } - { - name = "regexpp___regexpp_3.2.0.tgz"; - path = fetchurl { - name = "regexpp___regexpp_3.2.0.tgz"; - url = "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz"; - sha512 = "pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg=="; - }; - } - { - name = "regexpu_core___regexpu_core_4.8.0.tgz"; - path = fetchurl { - name = "regexpu_core___regexpu_core_4.8.0.tgz"; - url = "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.8.0.tgz"; - sha512 = "1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg=="; - }; - } - { - name = "regexpu_core___regexpu_core_5.1.0.tgz"; - path = fetchurl { - name = "regexpu_core___regexpu_core_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.1.0.tgz"; - sha512 = "bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA=="; - }; - } - { - name = "regjsgen___regjsgen_0.5.2.tgz"; - path = fetchurl { - name = "regjsgen___regjsgen_0.5.2.tgz"; - url = "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz"; - sha512 = "OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A=="; - }; - } - { - name = "regjsgen___regjsgen_0.6.0.tgz"; - path = fetchurl { - name = "regjsgen___regjsgen_0.6.0.tgz"; - url = "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.6.0.tgz"; - sha512 = "ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA=="; - }; - } - { - name = "regjsparser___regjsparser_0.7.0.tgz"; - path = fetchurl { - name = "regjsparser___regjsparser_0.7.0.tgz"; - url = "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.7.0.tgz"; - sha512 = "A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ=="; - }; - } - { - name = "regjsparser___regjsparser_0.8.4.tgz"; - path = fetchurl { - name = "regjsparser___regjsparser_0.8.4.tgz"; - url = "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.8.4.tgz"; - sha512 = "J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA=="; - }; - } - { - name = "relateurl___relateurl_0.2.7.tgz"; - path = fetchurl { - name = "relateurl___relateurl_0.2.7.tgz"; - url = "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz"; - sha1 = "VNvzd+UUQKypCkzSdGANP/LYiKk="; - }; - } - { - name = "remove_accents___remove_accents_0.4.2.tgz"; - path = fetchurl { - name = "remove_accents___remove_accents_0.4.2.tgz"; - url = "https://registry.yarnpkg.com/remove-accents/-/remove-accents-0.4.2.tgz"; - sha512 = "7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA=="; - }; - } - { - name = "renderkid___renderkid_3.0.0.tgz"; - path = fetchurl { - name = "renderkid___renderkid_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/renderkid/-/renderkid-3.0.0.tgz"; - sha512 = "q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg=="; - }; - } - { - name = "require_directory___require_directory_2.1.1.tgz"; - path = fetchurl { - name = "require_directory___require_directory_2.1.1.tgz"; - url = "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz"; - sha1 = "jGStX9MNqxyXbiNE/+f3kqam30I="; - }; - } - { - name = "require_from_string___require_from_string_2.0.2.tgz"; - path = fetchurl { - name = "require_from_string___require_from_string_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz"; - sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="; - }; - } - { - name = "requires_port___requires_port_1.0.0.tgz"; - path = fetchurl { - name = "requires_port___requires_port_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz"; - sha1 = "kl0mAdOaxIXgkc8NpcbmlNw9yv8="; - }; - } - { - name = "reselect___reselect_3.0.1.tgz"; - path = fetchurl { - name = "reselect___reselect_3.0.1.tgz"; - url = "https://registry.yarnpkg.com/reselect/-/reselect-3.0.1.tgz"; - sha1 = "79qpjqdFEyTQkrKyFjpqHXqaIUc="; - }; - } - { - name = "resolve_cwd___resolve_cwd_3.0.0.tgz"; - path = fetchurl { - name = "resolve_cwd___resolve_cwd_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz"; - sha512 = "OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg=="; - }; - } - { - name = "resolve_from___resolve_from_4.0.0.tgz"; - path = fetchurl { - name = "resolve_from___resolve_from_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz"; - sha512 = "pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="; - }; - } - { - name = "resolve_from___resolve_from_5.0.0.tgz"; - path = fetchurl { - name = "resolve_from___resolve_from_5.0.0.tgz"; - url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz"; - sha512 = "qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="; - }; - } - { - name = "resolve_pathname___resolve_pathname_3.0.0.tgz"; - path = fetchurl { - name = "resolve_pathname___resolve_pathname_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz"; - sha512 = "C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng=="; - }; - } - { - name = "resolve_url_loader___resolve_url_loader_4.0.0.tgz"; - path = fetchurl { - name = "resolve_url_loader___resolve_url_loader_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz"; - sha512 = "05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA=="; - }; - } - { - name = "resolve.exports___resolve.exports_1.1.0.tgz"; - path = fetchurl { - name = "resolve.exports___resolve.exports_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz"; - sha512 = "J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ=="; - }; - } - { - name = "resolve___resolve_1.22.1.tgz"; - path = fetchurl { - name = "resolve___resolve_1.22.1.tgz"; - url = "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz"; - sha512 = "nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw=="; - }; - } - { - name = "resolve___resolve_1.20.0.tgz"; - path = fetchurl { - name = "resolve___resolve_1.20.0.tgz"; - url = "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz"; - sha512 = "wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A=="; - }; - } - { - name = "resolve___resolve_2.0.0_next.3.tgz"; - path = fetchurl { - name = "resolve___resolve_2.0.0_next.3.tgz"; - url = "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz"; - sha512 = "W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q=="; - }; - } - { - name = "retry___retry_0.13.1.tgz"; - path = fetchurl { - name = "retry___retry_0.13.1.tgz"; - url = "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz"; - sha512 = "XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg=="; - }; - } - { - name = "reusify___reusify_1.0.4.tgz"; - path = fetchurl { - name = "reusify___reusify_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz"; - sha512 = "U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="; - }; - } - { - name = "rimraf___rimraf_3.0.2.tgz"; - path = fetchurl { - name = "rimraf___rimraf_3.0.2.tgz"; - url = "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz"; - sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; - }; - } - { - name = "rollup_plugin_terser___rollup_plugin_terser_7.0.2.tgz"; - path = fetchurl { - name = "rollup_plugin_terser___rollup_plugin_terser_7.0.2.tgz"; - url = "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz"; - sha512 = "w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ=="; - }; - } - { - name = "rollup___rollup_2.77.2.tgz"; - path = fetchurl { - name = "rollup___rollup_2.77.2.tgz"; - url = "https://registry.yarnpkg.com/rollup/-/rollup-2.77.2.tgz"; - sha512 = "m/4YzYgLcpMQbxX3NmAqDvwLATZzxt8bIegO78FZLl+lAgKJBd1DRAOeEiZcKOIOPjxE6ewHWHNgGEalFXuz1g=="; - }; - } - { - name = "run_parallel___run_parallel_1.2.0.tgz"; - path = fetchurl { - name = "run_parallel___run_parallel_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz"; - sha512 = "5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="; - }; - } - { - name = "safe_buffer___safe_buffer_5.1.2.tgz"; - path = fetchurl { - name = "safe_buffer___safe_buffer_5.1.2.tgz"; - url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz"; - sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; - }; - } - { - name = "safe_buffer___safe_buffer_5.2.1.tgz"; - path = fetchurl { - name = "safe_buffer___safe_buffer_5.2.1.tgz"; - url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz"; - sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; - }; - } - { - name = "safer_buffer___safer_buffer_2.1.2.tgz"; - path = fetchurl { - name = "safer_buffer___safer_buffer_2.1.2.tgz"; - url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz"; - sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; - }; - } - { - name = "sanitize.css___sanitize.css_13.0.0.tgz"; - path = fetchurl { - name = "sanitize.css___sanitize.css_13.0.0.tgz"; - url = "https://registry.yarnpkg.com/sanitize.css/-/sanitize.css-13.0.0.tgz"; - sha512 = "ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA=="; - }; - } - { - name = "sass_loader___sass_loader_12.6.0.tgz"; - path = fetchurl { - name = "sass_loader___sass_loader_12.6.0.tgz"; - url = "https://registry.yarnpkg.com/sass-loader/-/sass-loader-12.6.0.tgz"; - sha512 = "oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA=="; - }; - } - { - name = "sax___sax_1.2.4.tgz"; - path = fetchurl { - name = "sax___sax_1.2.4.tgz"; - url = "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz"; - sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="; - }; - } - { - name = "saxes___saxes_5.0.1.tgz"; - path = fetchurl { - name = "saxes___saxes_5.0.1.tgz"; - url = "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz"; - sha512 = "5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw=="; - }; - } - { - name = "scheduler___scheduler_0.20.2.tgz"; - path = fetchurl { - name = "scheduler___scheduler_0.20.2.tgz"; - url = "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz"; - sha512 = "2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ=="; - }; - } - { - name = "schema_utils___schema_utils_2.7.0.tgz"; - path = fetchurl { - name = "schema_utils___schema_utils_2.7.0.tgz"; - url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz"; - sha512 = "0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A=="; - }; - } - { - name = "schema_utils___schema_utils_2.7.1.tgz"; - path = fetchurl { - name = "schema_utils___schema_utils_2.7.1.tgz"; - url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz"; - sha512 = "SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg=="; - }; - } - { - name = "schema_utils___schema_utils_3.1.1.tgz"; - path = fetchurl { - name = "schema_utils___schema_utils_3.1.1.tgz"; - url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz"; - sha512 = "Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw=="; - }; - } - { - name = "schema_utils___schema_utils_4.0.0.tgz"; - path = fetchurl { - name = "schema_utils___schema_utils_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.0.0.tgz"; - sha512 = "1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg=="; - }; - } - { - name = "seamless_immutable___seamless_immutable_7.1.4.tgz"; - path = fetchurl { - name = "seamless_immutable___seamless_immutable_7.1.4.tgz"; - url = "https://registry.yarnpkg.com/seamless-immutable/-/seamless-immutable-7.1.4.tgz"; - sha512 = "XiUO1QP4ki4E2PHegiGAlu6r82o5A+6tRh7IkGGTVg/h+UoeX4nFBeCGPOhb4CYjvkqsfm/TUtvOMYC1xmV30A=="; - }; - } - { - name = "select_hose___select_hose_2.0.0.tgz"; - path = fetchurl { - name = "select_hose___select_hose_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz"; - sha1 = "Yl2GWPhlr0Psliv8N2o3NZpJlMo="; - }; - } - { - name = "selfsigned___selfsigned_2.0.1.tgz"; - path = fetchurl { - name = "selfsigned___selfsigned_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.0.1.tgz"; - sha512 = "LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ=="; - }; - } - { - name = "semver___semver_7.0.0.tgz"; - path = fetchurl { - name = "semver___semver_7.0.0.tgz"; - url = "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz"; - sha512 = "+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="; - }; - } - { - name = "semver___semver_6.3.0.tgz"; - path = fetchurl { - name = "semver___semver_6.3.0.tgz"; - url = "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz"; - sha512 = "b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="; - }; - } - { - name = "semver___semver_7.3.5.tgz"; - path = fetchurl { - name = "semver___semver_7.3.5.tgz"; - url = "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz"; - sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; - }; - } - { - name = "semver___semver_7.3.7.tgz"; - path = fetchurl { - name = "semver___semver_7.3.7.tgz"; - url = "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz"; - sha512 = "QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g=="; - }; - } - { - name = "send___send_0.18.0.tgz"; - path = fetchurl { - name = "send___send_0.18.0.tgz"; - url = "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz"; - sha512 = "qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg=="; - }; - } - { - name = "serialize_javascript___serialize_javascript_4.0.0.tgz"; - path = fetchurl { - name = "serialize_javascript___serialize_javascript_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz"; - sha512 = "GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw=="; - }; - } - { - name = "serialize_javascript___serialize_javascript_6.0.0.tgz"; - path = fetchurl { - name = "serialize_javascript___serialize_javascript_6.0.0.tgz"; - url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz"; - sha512 = "Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag=="; - }; - } - { - name = "serve_index___serve_index_1.9.1.tgz"; - path = fetchurl { - name = "serve_index___serve_index_1.9.1.tgz"; - url = "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz"; - sha1 = "03aNabHn2C5c4FD/9bRTvqEqkjk="; - }; - } - { - name = "serve_static___serve_static_1.15.0.tgz"; - path = fetchurl { - name = "serve_static___serve_static_1.15.0.tgz"; - url = "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz"; - sha512 = "XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g=="; - }; - } - { - name = "setprototypeof___setprototypeof_1.1.0.tgz"; - path = fetchurl { - name = "setprototypeof___setprototypeof_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz"; - sha512 = "BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="; - }; - } - { - name = "setprototypeof___setprototypeof_1.2.0.tgz"; - path = fetchurl { - name = "setprototypeof___setprototypeof_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz"; - sha512 = "E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="; - }; - } - { - name = "shebang_command___shebang_command_2.0.0.tgz"; - path = fetchurl { - name = "shebang_command___shebang_command_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz"; - sha512 = "kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="; - }; - } - { - name = "shebang_regex___shebang_regex_3.0.0.tgz"; - path = fetchurl { - name = "shebang_regex___shebang_regex_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz"; - sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; - }; - } - { - name = "shell_quote___shell_quote_1.7.3.tgz"; - path = fetchurl { - name = "shell_quote___shell_quote_1.7.3.tgz"; - url = "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.3.tgz"; - sha512 = "Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw=="; - }; - } - { - name = "side_channel___side_channel_1.0.4.tgz"; - path = fetchurl { - name = "side_channel___side_channel_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz"; - sha512 = "q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="; - }; - } - { - name = "signal_exit___signal_exit_3.0.6.tgz"; - path = fetchurl { - name = "signal_exit___signal_exit_3.0.6.tgz"; - url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.6.tgz"; - sha512 = "sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ=="; - }; - } - { - name = "signal_exit___signal_exit_3.0.7.tgz"; - path = fetchurl { - name = "signal_exit___signal_exit_3.0.7.tgz"; - url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz"; - sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; - }; - } - { - name = "sisteransi___sisteransi_1.0.5.tgz"; - path = fetchurl { - name = "sisteransi___sisteransi_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz"; - sha512 = "bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="; - }; - } - { - name = "slash___slash_3.0.0.tgz"; - path = fetchurl { - name = "slash___slash_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz"; - sha512 = "g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="; - }; - } - { - name = "slash___slash_4.0.0.tgz"; - path = fetchurl { - name = "slash___slash_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz"; - sha512 = "3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew=="; - }; - } - { - name = "sockjs___sockjs_0.3.24.tgz"; - path = fetchurl { - name = "sockjs___sockjs_0.3.24.tgz"; - url = "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz"; - sha512 = "GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ=="; - }; - } - { - name = "source_list_map___source_list_map_2.0.1.tgz"; - path = fetchurl { - name = "source_list_map___source_list_map_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz"; - sha512 = "qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw=="; - }; - } - { - name = "source_map_js___source_map_js_1.0.1.tgz"; - path = fetchurl { - name = "source_map_js___source_map_js_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.1.tgz"; - sha512 = "4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA=="; - }; - } - { - name = "source_map_js___source_map_js_1.0.2.tgz"; - path = fetchurl { - name = "source_map_js___source_map_js_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz"; - sha512 = "R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="; - }; - } - { - name = "source_map_loader___source_map_loader_3.0.1.tgz"; - path = fetchurl { - name = "source_map_loader___source_map_loader_3.0.1.tgz"; - url = "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-3.0.1.tgz"; - sha512 = "Vp1UsfyPvgujKQzi4pyDiTOnE3E4H+yHvkVRN3c/9PJmQS4CQJExvcDvaX/D+RV+xQben9HJ56jMJS3CgUeWyA=="; - }; - } - { - name = "source_map_support___source_map_support_0.5.21.tgz"; - path = fetchurl { - name = "source_map_support___source_map_support_0.5.21.tgz"; - url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz"; - sha512 = "uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w=="; - }; - } - { - name = "source_map___source_map_0.6.1.tgz"; - path = fetchurl { - name = "source_map___source_map_0.6.1.tgz"; - url = "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz"; - sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="; - }; - } - { - name = "source_map___source_map_0.5.7.tgz"; - path = fetchurl { - name = "source_map___source_map_0.5.7.tgz"; - url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz"; - sha1 = "igOdLRAh0i0eoUyA2OpGi6LvP8w="; - }; - } - { - name = "source_map___source_map_0.7.3.tgz"; - path = fetchurl { - name = "source_map___source_map_0.7.3.tgz"; - url = "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz"; - sha512 = "CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="; - }; - } - { - name = "source_map___source_map_0.8.0_beta.0.tgz"; - path = fetchurl { - name = "source_map___source_map_0.8.0_beta.0.tgz"; - url = "https://registry.yarnpkg.com/source-map/-/source-map-0.8.0-beta.0.tgz"; - sha512 = "2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA=="; - }; - } - { - name = "sourcemap_codec___sourcemap_codec_1.4.8.tgz"; - path = fetchurl { - name = "sourcemap_codec___sourcemap_codec_1.4.8.tgz"; - url = "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz"; - sha512 = "9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA=="; - }; - } - { - name = "spdy_transport___spdy_transport_3.0.0.tgz"; - path = fetchurl { - name = "spdy_transport___spdy_transport_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz"; - sha512 = "hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw=="; - }; - } - { - name = "spdy___spdy_4.0.2.tgz"; - path = fetchurl { - name = "spdy___spdy_4.0.2.tgz"; - url = "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz"; - sha512 = "r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA=="; - }; - } - { - name = "split_on_first___split_on_first_1.1.0.tgz"; - path = fetchurl { - name = "split_on_first___split_on_first_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz"; - sha512 = "43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw=="; - }; - } - { - name = "sprintf_js___sprintf_js_1.0.3.tgz"; - path = fetchurl { - name = "sprintf_js___sprintf_js_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz"; - sha1 = "BOaSb2YolTVPPdAVIDYzuFcpfiw="; - }; - } - { - name = "stable___stable_0.1.8.tgz"; - path = fetchurl { - name = "stable___stable_0.1.8.tgz"; - url = "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz"; - sha512 = "ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w=="; - }; - } - { - name = "stack_utils___stack_utils_2.0.5.tgz"; - path = fetchurl { - name = "stack_utils___stack_utils_2.0.5.tgz"; - url = "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz"; - sha512 = "xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA=="; - }; - } - { - name = "stackframe___stackframe_1.2.0.tgz"; - path = fetchurl { - name = "stackframe___stackframe_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/stackframe/-/stackframe-1.2.0.tgz"; - sha512 = "GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA=="; - }; - } - { - name = "statuses___statuses_2.0.1.tgz"; - path = fetchurl { - name = "statuses___statuses_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz"; - sha512 = "RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="; - }; - } - { - name = "statuses___statuses_1.5.0.tgz"; - path = fetchurl { - name = "statuses___statuses_1.5.0.tgz"; - url = "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz"; - sha1 = "Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow="; - }; - } - { - name = "strict_uri_encode___strict_uri_encode_1.1.0.tgz"; - path = fetchurl { - name = "strict_uri_encode___strict_uri_encode_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz"; - sha1 = "J5siXfHVgrH1TmWt3UNS4Y+qBxM="; - }; - } - { - name = "strict_uri_encode___strict_uri_encode_2.0.0.tgz"; - path = fetchurl { - name = "strict_uri_encode___strict_uri_encode_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz"; - sha512 = "QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ=="; - }; - } - { - name = "string_length___string_length_4.0.2.tgz"; - path = fetchurl { - name = "string_length___string_length_4.0.2.tgz"; - url = "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz"; - sha512 = "+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ=="; - }; - } - { - name = "string_length___string_length_5.0.1.tgz"; - path = fetchurl { - name = "string_length___string_length_5.0.1.tgz"; - url = "https://registry.yarnpkg.com/string-length/-/string-length-5.0.1.tgz"; - sha512 = "9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow=="; - }; - } - { - name = "string_natural_compare___string_natural_compare_3.0.1.tgz"; - path = fetchurl { - name = "string_natural_compare___string_natural_compare_3.0.1.tgz"; - url = "https://registry.yarnpkg.com/string-natural-compare/-/string-natural-compare-3.0.1.tgz"; - sha512 = "n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw=="; - }; - } - { - name = "string_width___string_width_4.2.3.tgz"; - path = fetchurl { - name = "string_width___string_width_4.2.3.tgz"; - url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz"; - sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; - }; - } - { - name = "string.prototype.matchall___string.prototype.matchall_4.0.6.tgz"; - path = fetchurl { - name = "string.prototype.matchall___string.prototype.matchall_4.0.6.tgz"; - url = "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz"; - sha512 = "6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg=="; - }; - } - { - name = "string.prototype.matchall___string.prototype.matchall_4.0.7.tgz"; - path = fetchurl { - name = "string.prototype.matchall___string.prototype.matchall_4.0.7.tgz"; - url = "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz"; - sha512 = "f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg=="; - }; - } - { - name = "string.prototype.trim___string.prototype.trim_1.2.5.tgz"; - path = fetchurl { - name = "string.prototype.trim___string.prototype.trim_1.2.5.tgz"; - url = "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.5.tgz"; - sha512 = "Lnh17webJVsD6ECeovpVN17RlAKjmz4rF9S+8Y45CkMc/ufVpTkU3vZIyIC7sllQ1FCvObZnnCdNs/HXTUOTlg=="; - }; - } - { - name = "string.prototype.trimend___string.prototype.trimend_1.0.4.tgz"; - path = fetchurl { - name = "string.prototype.trimend___string.prototype.trimend_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz"; - sha512 = "y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A=="; - }; - } - { - name = "string.prototype.trimend___string.prototype.trimend_1.0.5.tgz"; - path = fetchurl { - name = "string.prototype.trimend___string.prototype.trimend_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz"; - sha512 = "I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog=="; - }; - } - { - name = "string.prototype.trimstart___string.prototype.trimstart_1.0.4.tgz"; - path = fetchurl { - name = "string.prototype.trimstart___string.prototype.trimstart_1.0.4.tgz"; - url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz"; - sha512 = "jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw=="; - }; - } - { - name = "string.prototype.trimstart___string.prototype.trimstart_1.0.5.tgz"; - path = fetchurl { - name = "string.prototype.trimstart___string.prototype.trimstart_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz"; - sha512 = "THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg=="; - }; - } - { - name = "string_decoder___string_decoder_1.3.0.tgz"; - path = fetchurl { - name = "string_decoder___string_decoder_1.3.0.tgz"; - url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz"; - sha512 = "hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="; - }; - } - { - name = "string_decoder___string_decoder_1.1.1.tgz"; - path = fetchurl { - name = "string_decoder___string_decoder_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz"; - sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; - }; - } - { - name = "stringify_object___stringify_object_3.3.0.tgz"; - path = fetchurl { - name = "stringify_object___stringify_object_3.3.0.tgz"; - url = "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz"; - sha512 = "rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw=="; - }; - } - { - name = "strip_ansi___strip_ansi_6.0.1.tgz"; - path = fetchurl { - name = "strip_ansi___strip_ansi_6.0.1.tgz"; - url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz"; - sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; - }; - } - { - name = "strip_ansi___strip_ansi_7.0.1.tgz"; - path = fetchurl { - name = "strip_ansi___strip_ansi_7.0.1.tgz"; - url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.0.1.tgz"; - sha512 = "cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw=="; - }; - } - { - name = "strip_bom___strip_bom_3.0.0.tgz"; - path = fetchurl { - name = "strip_bom___strip_bom_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz"; - sha1 = "IzTBjpx1n3vdVv3vfprj1YjmjtM="; - }; - } - { - name = "strip_bom___strip_bom_4.0.0.tgz"; - path = fetchurl { - name = "strip_bom___strip_bom_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz"; - sha512 = "3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w=="; - }; - } - { - name = "strip_comments___strip_comments_2.0.1.tgz"; - path = fetchurl { - name = "strip_comments___strip_comments_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/strip-comments/-/strip-comments-2.0.1.tgz"; - sha512 = "ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw=="; - }; - } - { - name = "strip_final_newline___strip_final_newline_2.0.0.tgz"; - path = fetchurl { - name = "strip_final_newline___strip_final_newline_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz"; - sha512 = "BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="; - }; - } - { - name = "strip_indent___strip_indent_3.0.0.tgz"; - path = fetchurl { - name = "strip_indent___strip_indent_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz"; - sha512 = "laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ=="; - }; - } - { - name = "strip_json_comments___strip_json_comments_3.1.1.tgz"; - path = fetchurl { - name = "strip_json_comments___strip_json_comments_3.1.1.tgz"; - url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz"; - sha512 = "6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="; - }; - } - { - name = "style_loader___style_loader_3.3.1.tgz"; - path = fetchurl { - name = "style_loader___style_loader_3.3.1.tgz"; - url = "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.1.tgz"; - sha512 = "GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ=="; - }; - } - { - name = "stylehacks___stylehacks_5.1.0.tgz"; - path = fetchurl { - name = "stylehacks___stylehacks_5.1.0.tgz"; - url = "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.1.0.tgz"; - sha512 = "SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q=="; - }; - } - { - name = "stylis___stylis_4.0.13.tgz"; - path = fetchurl { - name = "stylis___stylis_4.0.13.tgz"; - url = "https://registry.yarnpkg.com/stylis/-/stylis-4.0.13.tgz"; - sha512 = "xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag=="; - }; - } - { - name = "supports_color___supports_color_5.5.0.tgz"; - path = fetchurl { - name = "supports_color___supports_color_5.5.0.tgz"; - url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; - sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; - }; - } - { - name = "supports_color___supports_color_7.2.0.tgz"; - path = fetchurl { - name = "supports_color___supports_color_7.2.0.tgz"; - url = "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz"; - sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="; - }; - } - { - name = "supports_color___supports_color_8.1.1.tgz"; - path = fetchurl { - name = "supports_color___supports_color_8.1.1.tgz"; - url = "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz"; - sha512 = "MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="; - }; - } - { - name = "supports_hyperlinks___supports_hyperlinks_2.2.0.tgz"; - path = fetchurl { - name = "supports_hyperlinks___supports_hyperlinks_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz"; - sha512 = "6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ=="; - }; - } - { - name = "supports_preserve_symlinks_flag___supports_preserve_symlinks_flag_1.0.0.tgz"; - path = fetchurl { - name = "supports_preserve_symlinks_flag___supports_preserve_symlinks_flag_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"; - sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="; - }; - } - { - name = "svg_parser___svg_parser_2.0.4.tgz"; - path = fetchurl { - name = "svg_parser___svg_parser_2.0.4.tgz"; - url = "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz"; - sha512 = "e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ=="; - }; - } - { - name = "svgo___svgo_1.3.2.tgz"; - path = fetchurl { - name = "svgo___svgo_1.3.2.tgz"; - url = "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz"; - sha512 = "yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw=="; - }; - } - { - name = "svgo___svgo_2.8.0.tgz"; - path = fetchurl { - name = "svgo___svgo_2.8.0.tgz"; - url = "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz"; - sha512 = "+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg=="; - }; - } - { - name = "symbol_tree___symbol_tree_3.2.4.tgz"; - path = fetchurl { - name = "symbol_tree___symbol_tree_3.2.4.tgz"; - url = "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz"; - sha512 = "9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="; - }; - } - { - name = "tailwindcss___tailwindcss_3.1.7.tgz"; - path = fetchurl { - name = "tailwindcss___tailwindcss_3.1.7.tgz"; - url = "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.1.7.tgz"; - sha512 = "r7mgumZ3k0InfVPpGWcX8X/Ut4xBfv+1O/+C73ar/m01LxGVzWvPxF/w6xIUPEztrCoz7axfx0SMdh8FH8ZvRQ=="; - }; - } - { - name = "tapable___tapable_1.1.3.tgz"; - path = fetchurl { - name = "tapable___tapable_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz"; - sha512 = "4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA=="; - }; - } - { - name = "tapable___tapable_2.2.1.tgz"; - path = fetchurl { - name = "tapable___tapable_2.2.1.tgz"; - url = "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz"; - sha512 = "GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ=="; - }; - } - { - name = "temp_dir___temp_dir_2.0.0.tgz"; - path = fetchurl { - name = "temp_dir___temp_dir_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz"; - sha512 = "aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg=="; - }; - } - { - name = "tempy___tempy_0.6.0.tgz"; - path = fetchurl { - name = "tempy___tempy_0.6.0.tgz"; - url = "https://registry.yarnpkg.com/tempy/-/tempy-0.6.0.tgz"; - sha512 = "G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw=="; - }; - } - { - name = "terminal_link___terminal_link_2.1.1.tgz"; - path = fetchurl { - name = "terminal_link___terminal_link_2.1.1.tgz"; - url = "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz"; - sha512 = "un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ=="; - }; - } - { - name = "terser_webpack_plugin___terser_webpack_plugin_5.3.3.tgz"; - path = fetchurl { - name = "terser_webpack_plugin___terser_webpack_plugin_5.3.3.tgz"; - url = "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.3.tgz"; - sha512 = "Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ=="; - }; - } - { - name = "terser___terser_5.14.2.tgz"; - path = fetchurl { - name = "terser___terser_5.14.2.tgz"; - url = "https://registry.yarnpkg.com/terser/-/terser-5.14.2.tgz"; - sha512 = "oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA=="; - }; - } - { - name = "test_exclude___test_exclude_6.0.0.tgz"; - path = fetchurl { - name = "test_exclude___test_exclude_6.0.0.tgz"; - url = "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz"; - sha512 = "cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w=="; - }; - } - { - name = "text_table___text_table_0.2.0.tgz"; - path = fetchurl { - name = "text_table___text_table_0.2.0.tgz"; - url = "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz"; - sha1 = "f17oI66AUgfACvLfSoTsP8+lcLQ="; - }; - } - { - name = "throat___throat_6.0.1.tgz"; - path = fetchurl { - name = "throat___throat_6.0.1.tgz"; - url = "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz"; - sha512 = "8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w=="; - }; - } - { - name = "thunky___thunky_1.1.0.tgz"; - path = fetchurl { - name = "thunky___thunky_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz"; - sha512 = "eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA=="; - }; - } - { - name = "tiny_invariant___tiny_invariant_1.2.0.tgz"; - path = fetchurl { - name = "tiny_invariant___tiny_invariant_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.2.0.tgz"; - sha512 = "1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg=="; - }; - } - { - name = "tiny_warning___tiny_warning_1.0.3.tgz"; - path = fetchurl { - name = "tiny_warning___tiny_warning_1.0.3.tgz"; - url = "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz"; - sha512 = "lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA=="; - }; - } - { - name = "tmpl___tmpl_1.0.5.tgz"; - path = fetchurl { - name = "tmpl___tmpl_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz"; - sha512 = "3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw=="; - }; - } - { - name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; - path = fetchurl { - name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; - sha1 = "3F5pjL0HkmW8c+A3doGk5Og/YW4="; - }; - } - { - name = "to_regex_range___to_regex_range_5.0.1.tgz"; - path = fetchurl { - name = "to_regex_range___to_regex_range_5.0.1.tgz"; - url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz"; - sha512 = "65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="; - }; - } - { - name = "toidentifier___toidentifier_1.0.1.tgz"; - path = fetchurl { - name = "toidentifier___toidentifier_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz"; - sha512 = "o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="; - }; - } - { - name = "tough_cookie___tough_cookie_4.0.0.tgz"; - path = fetchurl { - name = "tough_cookie___tough_cookie_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz"; - sha512 = "tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg=="; - }; - } - { - name = "tr46___tr46_1.0.1.tgz"; - path = fetchurl { - name = "tr46___tr46_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz"; - sha512 = "dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA=="; - }; - } - { - name = "tr46___tr46_2.1.0.tgz"; - path = fetchurl { - name = "tr46___tr46_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz"; - sha512 = "15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw=="; - }; - } - { - name = "tr46___tr46_0.0.3.tgz"; - path = fetchurl { - name = "tr46___tr46_0.0.3.tgz"; - url = "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz"; - sha1 = "gYT9NH2snNwYWZLzpmIuFLnZq2o="; - }; - } - { - name = "tryer___tryer_1.0.1.tgz"; - path = fetchurl { - name = "tryer___tryer_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/tryer/-/tryer-1.0.1.tgz"; - sha512 = "c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA=="; - }; - } - { - name = "tsconfig_paths___tsconfig_paths_3.14.1.tgz"; - path = fetchurl { - name = "tsconfig_paths___tsconfig_paths_3.14.1.tgz"; - url = "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz"; - sha512 = "fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ=="; - }; - } - { - name = "tslib___tslib_1.14.1.tgz"; - path = fetchurl { - name = "tslib___tslib_1.14.1.tgz"; - url = "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz"; - sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="; - }; - } - { - name = "tslib___tslib_2.3.1.tgz"; - path = fetchurl { - name = "tslib___tslib_2.3.1.tgz"; - url = "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz"; - sha512 = "77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="; - }; - } - { - name = "tsutils___tsutils_3.21.0.tgz"; - path = fetchurl { - name = "tsutils___tsutils_3.21.0.tgz"; - url = "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz"; - sha512 = "mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA=="; - }; - } - { - name = "type_check___type_check_0.4.0.tgz"; - path = fetchurl { - name = "type_check___type_check_0.4.0.tgz"; - url = "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz"; - sha512 = "XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="; - }; - } - { - name = "type_check___type_check_0.3.2.tgz"; - path = fetchurl { - name = "type_check___type_check_0.3.2.tgz"; - url = "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz"; - sha1 = "WITKtRLPHTVeP7eE8wgEsrUg23I="; - }; - } - { - name = "type_detect___type_detect_4.0.8.tgz"; - path = fetchurl { - name = "type_detect___type_detect_4.0.8.tgz"; - url = "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz"; - sha512 = "0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="; - }; - } - { - name = "type_fest___type_fest_0.16.0.tgz"; - path = fetchurl { - name = "type_fest___type_fest_0.16.0.tgz"; - url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.16.0.tgz"; - sha512 = "eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg=="; - }; - } - { - name = "type_fest___type_fest_0.20.2.tgz"; - path = fetchurl { - name = "type_fest___type_fest_0.20.2.tgz"; - url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz"; - sha512 = "Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="; - }; - } - { - name = "type_fest___type_fest_0.21.3.tgz"; - path = fetchurl { - name = "type_fest___type_fest_0.21.3.tgz"; - url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz"; - sha512 = "t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="; - }; - } - { - name = "type_is___type_is_1.6.18.tgz"; - path = fetchurl { - name = "type_is___type_is_1.6.18.tgz"; - url = "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz"; - sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; - }; - } - { - name = "typedarray_to_buffer___typedarray_to_buffer_3.1.5.tgz"; - path = fetchurl { - name = "typedarray_to_buffer___typedarray_to_buffer_3.1.5.tgz"; - url = "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz"; - sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; - }; - } - { - name = "typescript_compare___typescript_compare_0.0.2.tgz"; - path = fetchurl { - name = "typescript_compare___typescript_compare_0.0.2.tgz"; - url = "https://registry.yarnpkg.com/typescript-compare/-/typescript-compare-0.0.2.tgz"; - sha512 = "8ja4j7pMHkfLJQO2/8tut7ub+J3Lw2S3061eJLFQcvs3tsmJKp8KG5NtpLn7KcY2w08edF74BSVN7qJS0U6oHA=="; - }; - } - { - name = "typescript_logic___typescript_logic_0.0.0.tgz"; - path = fetchurl { - name = "typescript_logic___typescript_logic_0.0.0.tgz"; - url = "https://registry.yarnpkg.com/typescript-logic/-/typescript-logic-0.0.0.tgz"; - sha512 = "zXFars5LUkI3zP492ls0VskH3TtdeHCqu0i7/duGt60i5IGPIpAHE/DWo5FqJ6EjQ15YKXrt+AETjv60Dat34Q=="; - }; - } - { - name = "typescript_tuple___typescript_tuple_2.2.1.tgz"; - path = fetchurl { - name = "typescript_tuple___typescript_tuple_2.2.1.tgz"; - url = "https://registry.yarnpkg.com/typescript-tuple/-/typescript-tuple-2.2.1.tgz"; - sha512 = "Zcr0lbt8z5ZdEzERHAMAniTiIKerFCMgd7yjq1fPnDJ43et/k9twIFQMUYff9k5oXcsQ0WpvFcgzK2ZKASoW6Q=="; - }; - } - { - name = "unbox_primitive___unbox_primitive_1.0.1.tgz"; - path = fetchurl { - name = "unbox_primitive___unbox_primitive_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz"; - sha512 = "tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw=="; - }; - } - { - name = "unbox_primitive___unbox_primitive_1.0.2.tgz"; - path = fetchurl { - name = "unbox_primitive___unbox_primitive_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz"; - sha512 = "61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw=="; - }; - } - { - name = "unicode_canonical_property_names_ecmascript___unicode_canonical_property_names_ecmascript_2.0.0.tgz"; - path = fetchurl { - name = "unicode_canonical_property_names_ecmascript___unicode_canonical_property_names_ecmascript_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz"; - sha512 = "yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ=="; - }; - } - { - name = "unicode_match_property_ecmascript___unicode_match_property_ecmascript_2.0.0.tgz"; - path = fetchurl { - name = "unicode_match_property_ecmascript___unicode_match_property_ecmascript_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz"; - sha512 = "5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q=="; - }; - } - { - name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_2.0.0.tgz"; - path = fetchurl { - name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz"; - sha512 = "7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw=="; - }; - } - { - name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_2.0.0.tgz"; - path = fetchurl { - name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz"; - sha512 = "5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ=="; - }; - } - { - name = "unique_string___unique_string_2.0.0.tgz"; - path = fetchurl { - name = "unique_string___unique_string_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz"; - sha512 = "uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg=="; - }; - } - { - name = "universalify___universalify_0.1.2.tgz"; - path = fetchurl { - name = "universalify___universalify_0.1.2.tgz"; - url = "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz"; - sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="; - }; - } - { - name = "universalify___universalify_2.0.0.tgz"; - path = fetchurl { - name = "universalify___universalify_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz"; - sha512 = "hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ=="; - }; - } - { - name = "unload___unload_2.2.0.tgz"; - path = fetchurl { - name = "unload___unload_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/unload/-/unload-2.2.0.tgz"; - sha512 = "B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA=="; - }; - } - { - name = "unpipe___unpipe_1.0.0.tgz"; - path = fetchurl { - name = "unpipe___unpipe_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz"; - sha1 = "sr9O6FFKrmFltIF4KdIbLvSZBOw="; - }; - } - { - name = "unquote___unquote_1.1.1.tgz"; - path = fetchurl { - name = "unquote___unquote_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz"; - sha1 = "j97XMk7G6IoP+LkF58CYzcCG1UQ="; - }; - } - { - name = "upath___upath_1.2.0.tgz"; - path = fetchurl { - name = "upath___upath_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz"; - sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="; - }; - } - { - name = "update_browserslist_db___update_browserslist_db_1.0.5.tgz"; - path = fetchurl { - name = "update_browserslist_db___update_browserslist_db_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz"; - sha512 = "dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q=="; - }; - } - { - name = "uri_js___uri_js_4.4.1.tgz"; - path = fetchurl { - name = "uri_js___uri_js_4.4.1.tgz"; - url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz"; - sha512 = "7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="; - }; - } - { - name = "util_deprecate___util_deprecate_1.0.2.tgz"; - path = fetchurl { - name = "util_deprecate___util_deprecate_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz"; - sha1 = "RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="; - }; - } - { - name = "util.promisify___util.promisify_1.0.1.tgz"; - path = fetchurl { - name = "util.promisify___util.promisify_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz"; - sha512 = "g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA=="; - }; - } - { - name = "utila___utila_0.4.0.tgz"; - path = fetchurl { - name = "utila___utila_0.4.0.tgz"; - url = "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz"; - sha1 = "ihagXURWV6Oupe7MWxKk+lN5dyw="; - }; - } - { - name = "utils_merge___utils_merge_1.0.1.tgz"; - path = fetchurl { - name = "utils_merge___utils_merge_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz"; - sha1 = "n5VxD1CiZ5R7LMwSR0HBAoQn5xM="; - }; - } - { - name = "uuid___uuid_8.3.2.tgz"; - path = fetchurl { - name = "uuid___uuid_8.3.2.tgz"; - url = "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz"; - sha512 = "+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="; - }; - } - { - name = "v8_to_istanbul___v8_to_istanbul_8.1.1.tgz"; - path = fetchurl { - name = "v8_to_istanbul___v8_to_istanbul_8.1.1.tgz"; - url = "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz"; - sha512 = "FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w=="; - }; - } - { - name = "value_equal___value_equal_1.0.1.tgz"; - path = fetchurl { - name = "value_equal___value_equal_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz"; - sha512 = "NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw=="; - }; - } - { - name = "vary___vary_1.1.2.tgz"; - path = fetchurl { - name = "vary___vary_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz"; - sha1 = "IpnwLG3tMNSllhsLn3RSShj2NPw="; - }; - } - { - name = "w3c_hr_time___w3c_hr_time_1.0.2.tgz"; - path = fetchurl { - name = "w3c_hr_time___w3c_hr_time_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz"; - sha512 = "z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ=="; - }; - } - { - name = "w3c_xmlserializer___w3c_xmlserializer_2.0.0.tgz"; - path = fetchurl { - name = "w3c_xmlserializer___w3c_xmlserializer_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz"; - sha512 = "4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA=="; - }; - } - { - name = "walker___walker_1.0.8.tgz"; - path = fetchurl { - name = "walker___walker_1.0.8.tgz"; - url = "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz"; - sha512 = "ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ=="; - }; - } - { - name = "warning___warning_4.0.3.tgz"; - path = fetchurl { - name = "warning___warning_4.0.3.tgz"; - url = "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz"; - sha512 = "rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w=="; - }; - } - { - name = "watchpack___watchpack_2.4.0.tgz"; - path = fetchurl { - name = "watchpack___watchpack_2.4.0.tgz"; - url = "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz"; - sha512 = "Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg=="; - }; - } - { - name = "wbuf___wbuf_1.7.3.tgz"; - path = fetchurl { - name = "wbuf___wbuf_1.7.3.tgz"; - url = "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz"; - sha512 = "O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA=="; - }; - } - { - name = "webidl_conversions___webidl_conversions_3.0.1.tgz"; - path = fetchurl { - name = "webidl_conversions___webidl_conversions_3.0.1.tgz"; - url = "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz"; - sha1 = "JFNCdeKnvGvnvIZhHMFq4KVlSHE="; - }; - } - { - name = "webidl_conversions___webidl_conversions_4.0.2.tgz"; - path = fetchurl { - name = "webidl_conversions___webidl_conversions_4.0.2.tgz"; - url = "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz"; - sha512 = "YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="; - }; - } - { - name = "webidl_conversions___webidl_conversions_5.0.0.tgz"; - path = fetchurl { - name = "webidl_conversions___webidl_conversions_5.0.0.tgz"; - url = "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz"; - sha512 = "VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA=="; - }; - } - { - name = "webidl_conversions___webidl_conversions_6.1.0.tgz"; - path = fetchurl { - name = "webidl_conversions___webidl_conversions_6.1.0.tgz"; - url = "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz"; - sha512 = "qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w=="; - }; - } - { - name = "webpack_dev_middleware___webpack_dev_middleware_5.3.3.tgz"; - path = fetchurl { - name = "webpack_dev_middleware___webpack_dev_middleware_5.3.3.tgz"; - url = "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz"; - sha512 = "hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA=="; - }; - } - { - name = "webpack_dev_server___webpack_dev_server_4.9.3.tgz"; - path = fetchurl { - name = "webpack_dev_server___webpack_dev_server_4.9.3.tgz"; - url = "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.9.3.tgz"; - sha512 = "3qp/eoboZG5/6QgiZ3llN8TUzkSpYg1Ko9khWX1h40MIEUNS2mDoIa8aXsPfskER+GbTvs/IJZ1QTBBhhuetSw=="; - }; - } - { - name = "webpack_manifest_plugin___webpack_manifest_plugin_4.1.1.tgz"; - path = fetchurl { - name = "webpack_manifest_plugin___webpack_manifest_plugin_4.1.1.tgz"; - url = "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz"; - sha512 = "YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow=="; - }; - } - { - name = "webpack_sources___webpack_sources_1.4.3.tgz"; - path = fetchurl { - name = "webpack_sources___webpack_sources_1.4.3.tgz"; - url = "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz"; - sha512 = "lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ=="; - }; - } - { - name = "webpack_sources___webpack_sources_2.3.1.tgz"; - path = fetchurl { - name = "webpack_sources___webpack_sources_2.3.1.tgz"; - url = "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.3.1.tgz"; - sha512 = "y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA=="; - }; - } - { - name = "webpack_sources___webpack_sources_3.2.3.tgz"; - path = fetchurl { - name = "webpack_sources___webpack_sources_3.2.3.tgz"; - url = "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz"; - sha512 = "/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w=="; - }; - } - { - name = "webpack___webpack_5.74.0.tgz"; - path = fetchurl { - name = "webpack___webpack_5.74.0.tgz"; - url = "https://registry.yarnpkg.com/webpack/-/webpack-5.74.0.tgz"; - sha512 = "A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA=="; - }; - } - { - name = "websocket_driver___websocket_driver_0.7.4.tgz"; - path = fetchurl { - name = "websocket_driver___websocket_driver_0.7.4.tgz"; - url = "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz"; - sha512 = "b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg=="; - }; - } - { - name = "websocket_extensions___websocket_extensions_0.1.4.tgz"; - path = fetchurl { - name = "websocket_extensions___websocket_extensions_0.1.4.tgz"; - url = "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz"; - sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="; - }; - } - { - name = "whatwg_encoding___whatwg_encoding_1.0.5.tgz"; - path = fetchurl { - name = "whatwg_encoding___whatwg_encoding_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz"; - sha512 = "b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw=="; - }; - } - { - name = "whatwg_fetch___whatwg_fetch_3.6.2.tgz"; - path = fetchurl { - name = "whatwg_fetch___whatwg_fetch_3.6.2.tgz"; - url = "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz"; - sha512 = "bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA=="; - }; - } - { - name = "whatwg_mimetype___whatwg_mimetype_2.3.0.tgz"; - path = fetchurl { - name = "whatwg_mimetype___whatwg_mimetype_2.3.0.tgz"; - url = "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz"; - sha512 = "M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g=="; - }; - } - { - name = "whatwg_url___whatwg_url_5.0.0.tgz"; - path = fetchurl { - name = "whatwg_url___whatwg_url_5.0.0.tgz"; - url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz"; - sha1 = "lmRU6HZUYuN2RNNib2dCzotwll0="; - }; - } - { - name = "whatwg_url___whatwg_url_7.1.0.tgz"; - path = fetchurl { - name = "whatwg_url___whatwg_url_7.1.0.tgz"; - url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz"; - sha512 = "WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg=="; - }; - } - { - name = "whatwg_url___whatwg_url_8.7.0.tgz"; - path = fetchurl { - name = "whatwg_url___whatwg_url_8.7.0.tgz"; - url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz"; - sha512 = "gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg=="; - }; - } - { - name = "which_boxed_primitive___which_boxed_primitive_1.0.2.tgz"; - path = fetchurl { - name = "which_boxed_primitive___which_boxed_primitive_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"; - sha512 = "bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg=="; - }; - } - { - name = "which___which_1.3.1.tgz"; - path = fetchurl { - name = "which___which_1.3.1.tgz"; - url = "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz"; - sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="; - }; - } - { - name = "which___which_2.0.2.tgz"; - path = fetchurl { - name = "which___which_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz"; - sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="; - }; - } - { - name = "word_wrap___word_wrap_1.2.3.tgz"; - path = fetchurl { - name = "word_wrap___word_wrap_1.2.3.tgz"; - url = "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz"; - sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; - }; - } - { - name = "workbox_background_sync___workbox_background_sync_6.5.4.tgz"; - path = fetchurl { - name = "workbox_background_sync___workbox_background_sync_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-background-sync/-/workbox-background-sync-6.5.4.tgz"; - sha512 = "0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g=="; - }; - } - { - name = "workbox_broadcast_update___workbox_broadcast_update_6.5.4.tgz"; - path = fetchurl { - name = "workbox_broadcast_update___workbox_broadcast_update_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-broadcast-update/-/workbox-broadcast-update-6.5.4.tgz"; - sha512 = "I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw=="; - }; - } - { - name = "workbox_build___workbox_build_6.5.4.tgz"; - path = fetchurl { - name = "workbox_build___workbox_build_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-build/-/workbox-build-6.5.4.tgz"; - sha512 = "kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA=="; - }; - } - { - name = "workbox_cacheable_response___workbox_cacheable_response_6.5.4.tgz"; - path = fetchurl { - name = "workbox_cacheable_response___workbox_cacheable_response_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-cacheable-response/-/workbox-cacheable-response-6.5.4.tgz"; - sha512 = "DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug=="; - }; - } - { - name = "workbox_core___workbox_core_6.5.4.tgz"; - path = fetchurl { - name = "workbox_core___workbox_core_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-core/-/workbox-core-6.5.4.tgz"; - sha512 = "OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q=="; - }; - } - { - name = "workbox_expiration___workbox_expiration_6.5.4.tgz"; - path = fetchurl { - name = "workbox_expiration___workbox_expiration_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-expiration/-/workbox-expiration-6.5.4.tgz"; - sha512 = "jUP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ=="; - }; - } - { - name = "workbox_google_analytics___workbox_google_analytics_6.5.4.tgz"; - path = fetchurl { - name = "workbox_google_analytics___workbox_google_analytics_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-google-analytics/-/workbox-google-analytics-6.5.4.tgz"; - sha512 = "8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg=="; - }; - } - { - name = "workbox_navigation_preload___workbox_navigation_preload_6.5.4.tgz"; - path = fetchurl { - name = "workbox_navigation_preload___workbox_navigation_preload_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-navigation-preload/-/workbox-navigation-preload-6.5.4.tgz"; - sha512 = "IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng=="; - }; - } - { - name = "workbox_precaching___workbox_precaching_6.5.4.tgz"; - path = fetchurl { - name = "workbox_precaching___workbox_precaching_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-precaching/-/workbox-precaching-6.5.4.tgz"; - sha512 = "hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg=="; - }; - } - { - name = "workbox_range_requests___workbox_range_requests_6.5.4.tgz"; - path = fetchurl { - name = "workbox_range_requests___workbox_range_requests_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-range-requests/-/workbox-range-requests-6.5.4.tgz"; - sha512 = "Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg=="; - }; - } - { - name = "workbox_recipes___workbox_recipes_6.5.4.tgz"; - path = fetchurl { - name = "workbox_recipes___workbox_recipes_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-recipes/-/workbox-recipes-6.5.4.tgz"; - sha512 = "QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA=="; - }; - } - { - name = "workbox_routing___workbox_routing_6.5.4.tgz"; - path = fetchurl { - name = "workbox_routing___workbox_routing_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-routing/-/workbox-routing-6.5.4.tgz"; - sha512 = "apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg=="; - }; - } - { - name = "workbox_strategies___workbox_strategies_6.5.4.tgz"; - path = fetchurl { - name = "workbox_strategies___workbox_strategies_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-strategies/-/workbox-strategies-6.5.4.tgz"; - sha512 = "DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw=="; - }; - } - { - name = "workbox_streams___workbox_streams_6.5.4.tgz"; - path = fetchurl { - name = "workbox_streams___workbox_streams_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-streams/-/workbox-streams-6.5.4.tgz"; - sha512 = "FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg=="; - }; - } - { - name = "workbox_sw___workbox_sw_6.5.4.tgz"; - path = fetchurl { - name = "workbox_sw___workbox_sw_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-sw/-/workbox-sw-6.5.4.tgz"; - sha512 = "vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA=="; - }; - } - { - name = "workbox_webpack_plugin___workbox_webpack_plugin_6.5.4.tgz"; - path = fetchurl { - name = "workbox_webpack_plugin___workbox_webpack_plugin_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-webpack-plugin/-/workbox-webpack-plugin-6.5.4.tgz"; - sha512 = "LmWm/zoaahe0EGmMTrSLUi+BjyR3cdGEfU3fS6PN1zKFYbqAKuQ+Oy/27e4VSXsyIwAw8+QDfk1XHNGtZu9nQg=="; - }; - } - { - name = "workbox_window___workbox_window_6.5.4.tgz"; - path = fetchurl { - name = "workbox_window___workbox_window_6.5.4.tgz"; - url = "https://registry.yarnpkg.com/workbox-window/-/workbox-window-6.5.4.tgz"; - sha512 = "HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug=="; - }; - } - { - name = "wrap_ansi___wrap_ansi_7.0.0.tgz"; - path = fetchurl { - name = "wrap_ansi___wrap_ansi_7.0.0.tgz"; - url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz"; - sha512 = "YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q=="; - }; - } - { - name = "wrappy___wrappy_1.0.2.tgz"; - path = fetchurl { - name = "wrappy___wrappy_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz"; - sha1 = "tSQ9jz7BqjXxNkYFvA0QNuMKtp8="; - }; - } - { - name = "write_file_atomic___write_file_atomic_3.0.3.tgz"; - path = fetchurl { - name = "write_file_atomic___write_file_atomic_3.0.3.tgz"; - url = "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz"; - sha512 = "AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q=="; - }; - } - { - name = "ws___ws_7.5.6.tgz"; - path = fetchurl { - name = "ws___ws_7.5.6.tgz"; - url = "https://registry.yarnpkg.com/ws/-/ws-7.5.6.tgz"; - sha512 = "6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA=="; - }; - } - { - name = "ws___ws_8.8.1.tgz"; - path = fetchurl { - name = "ws___ws_8.8.1.tgz"; - url = "https://registry.yarnpkg.com/ws/-/ws-8.8.1.tgz"; - sha512 = "bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA=="; - }; - } - { - name = "xml_name_validator___xml_name_validator_3.0.0.tgz"; - path = fetchurl { - name = "xml_name_validator___xml_name_validator_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz"; - sha512 = "A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw=="; - }; - } - { - name = "xmlchars___xmlchars_2.2.0.tgz"; - path = fetchurl { - name = "xmlchars___xmlchars_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz"; - sha512 = "JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw=="; - }; - } - { - name = "xtend___xtend_4.0.2.tgz"; - path = fetchurl { - name = "xtend___xtend_4.0.2.tgz"; - url = "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz"; - sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; - }; - } - { - name = "y18n___y18n_5.0.8.tgz"; - path = fetchurl { - name = "y18n___y18n_5.0.8.tgz"; - url = "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz"; - sha512 = "0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA=="; - }; - } - { - name = "yallist___yallist_4.0.0.tgz"; - path = fetchurl { - name = "yallist___yallist_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz"; - sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="; - }; - } - { - name = "yaml___yaml_1.10.2.tgz"; - path = fetchurl { - name = "yaml___yaml_1.10.2.tgz"; - url = "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz"; - sha512 = "r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="; - }; - } - { - name = "yargs_parser___yargs_parser_20.2.9.tgz"; - path = fetchurl { - name = "yargs_parser___yargs_parser_20.2.9.tgz"; - url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz"; - sha512 = "y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="; - }; - } - { - name = "yargs___yargs_16.2.0.tgz"; - path = fetchurl { - name = "yargs___yargs_16.2.0.tgz"; - url = "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz"; - sha512 = "D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw=="; - }; - } - { - name = "yocto_queue___yocto_queue_0.1.0.tgz"; - path = fetchurl { - name = "yocto_queue___yocto_queue_0.1.0.tgz"; - url = "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz"; - sha512 = "rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="; - }; - } - ]; -} From 126edb794b30ef4c6153dc1df047166e07cc3538 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 14 Sep 2023 01:38:20 +0200 Subject: [PATCH 342/346] rust-cbindgen: 0.25.0 -> 0.26.0 https://github.com/mozilla/cbindgen/blob/v0.26.0/CHANGES --- pkgs/development/tools/rust/cbindgen/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/rust/cbindgen/default.nix b/pkgs/development/tools/rust/cbindgen/default.nix index 396b3f07b17e..2d351adf5ad1 100644 --- a/pkgs/development/tools/rust/cbindgen/default.nix +++ b/pkgs/development/tools/rust/cbindgen/default.nix @@ -9,16 +9,16 @@ rustPlatform.buildRustPackage rec { pname = "rust-cbindgen"; - version = "0.25.0"; + version = "0.26.0"; src = fetchFromGitHub { owner = "mozilla"; repo = "cbindgen"; rev = "v${version}"; - hash = "sha256-gljICr0abKEXxJfLCJN3L2OIwUvw/QoIC6T5C7pieEA="; + hash = "sha256-gyNZAuxpeOjuC+Rh9jAyHSBQRRYUlYoIrBKuCFg3Hao="; }; - cargoSha256 = "sha256-agBzn2MibM7158/QlLXI2HBBcYIe0p50rYSF1jBDF8U="; + cargoSha256 = "sha256-pdTxhECAZzBx5C01Yx7y/OGwhhAdlEDpqLBdvQcb8bc="; buildInputs = lib.optional stdenv.isDarwin Security; From f063e93d260513c5612b989508ed26f4a6cafe76 Mon Sep 17 00:00:00 2001 From: Yaya Date: Wed, 13 Sep 2023 12:17:34 +0000 Subject: [PATCH 343/346] snowflake: 2.5.1 -> 2.6.1 https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/tags/v2.6.1 --- pkgs/tools/networking/snowflake/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/snowflake/default.nix b/pkgs/tools/networking/snowflake/default.nix index 908166bb1542..f918363dc8b7 100644 --- a/pkgs/tools/networking/snowflake/default.nix +++ b/pkgs/tools/networking/snowflake/default.nix @@ -2,7 +2,7 @@ buildGoModule rec { pname = "snowflake"; - version = "2.5.1"; + version = "2.6.1"; src = fetchFromGitLab { domain = "gitlab.torproject.org"; @@ -10,10 +10,10 @@ buildGoModule rec { owner = "anti-censorship/pluggable-transports"; repo = "snowflake"; rev = "v${version}"; - sha256 = "sha256-r2NRIb6qbA1B5HlVNRqa9ongQpyiyPskhembPHX3Lgc="; + sha256 = "sha256-3gLcSZv8GpEio+yvPyBVVceb1nO0HzhpQKhEgf4nQvU="; }; - vendorHash = "sha256-dnfm4KiVD89bnHV7bfw5aXWHGdcH9JBdrtvuS6s8N5w="; + vendorHash = "sha256-MjxDB9fcPM6nIeGk6YvJOKXI/ThlMrxqJl9ROAREwXk="; meta = with lib; { description = "System to defeat internet censorship"; From c1d62de173c316426b817c48e104d810de60a8f8 Mon Sep 17 00:00:00 2001 From: Yaya Date: Wed, 13 Sep 2023 12:20:21 +0000 Subject: [PATCH 344/346] snowflake: add yayayayaka to maintainers --- pkgs/tools/networking/snowflake/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/snowflake/default.nix b/pkgs/tools/networking/snowflake/default.nix index f918363dc8b7..f51a6be9914d 100644 --- a/pkgs/tools/networking/snowflake/default.nix +++ b/pkgs/tools/networking/snowflake/default.nix @@ -19,7 +19,7 @@ buildGoModule rec { description = "System to defeat internet censorship"; homepage = "https://snowflake.torproject.org/"; changelog = "https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/raw/v${version}/ChangeLog"; - maintainers = with maintainers; [ lourkeur ]; + maintainers = with maintainers; [ lourkeur yayayayaka ]; license = licenses.bsd3; }; } From d6578bcc744788f0719b28884c9fe271025c1b94 Mon Sep 17 00:00:00 2001 From: Yureka Date: Thu, 14 Sep 2023 03:51:33 +0200 Subject: [PATCH 345/346] gst_all_1.gst-plugins-rs: check that system libwebp was linked (#254915) --- pkgs/development/libraries/gstreamer/rs/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/libraries/gstreamer/rs/default.nix b/pkgs/development/libraries/gstreamer/rs/default.nix index 50c2308d0811..e0d324936dd0 100644 --- a/pkgs/development/libraries/gstreamer/rs/default.nix +++ b/pkgs/development/libraries/gstreamer/rs/default.nix @@ -242,6 +242,14 @@ stdenv.mkDerivation rec { runHook postCheck ''; + doInstallCheck = (lib.elem "webp" selectedPlugins) && !stdenv.hostPlatform.isStatic && + stdenv.hostPlatform.parsed.kernel.execFormat == lib.systems.parse.execFormats.elf; + installCheckPhase = '' + runHook preInstallCheck + readelf -a $out/lib/gstreamer-1.0/libgstrswebp.so | grep -F 'Shared library: [libwebpdemux.so' + runHook postInstallCheck + ''; + passthru.updateScript = nix-update-script { # use numbered releases rather than gstreamer-* releases extraArgs = [ "--version-regex" "([0-9.]+)" ]; From e85841b10331a1218fd9dd64536d41f9f7eb160f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 14 Sep 2023 02:09:40 +0000 Subject: [PATCH 346/346] python310Packages.authheaders: 0.15.2 -> 0.15.3 --- pkgs/development/python-modules/authheaders/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/authheaders/default.nix b/pkgs/development/python-modules/authheaders/default.nix index 5ad2e29976a5..7d4a4075439e 100644 --- a/pkgs/development/python-modules/authheaders/default.nix +++ b/pkgs/development/python-modules/authheaders/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "authheaders"; - version = "0.15.2"; + version = "0.15.3"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "ValiMail"; repo = "authentication-headers"; rev = "refs/tags/${version}"; - hash = "sha256-vtLt7JUdLF0gBWgMzP65UAR6A9BnTech5n0alFErcSQ="; + hash = "sha256-96fCx5uN7yegTrCN+LSjtu4u3RL+dcxV/Puyo0eziI8="; }; propagatedBuildInputs = [